PlatformChannelError.operationNullError constructor Null safety

PlatformChannelError.operationNullError(
  1. {String? operationId}
)

An error that indicates that an operation with the given identifier does not exist.

Params:

  • operationId: the id of the operation.

Implementation

factory PlatformChannelError.operationNullError({
  String? operationId,
}) {
  return PlatformChannelOperationNullError(operationId);
}