PlatformChannelError.noOperationFoundError constructor

PlatformChannelError.noOperationFoundError(
  1. {required String operationId}
)

An error that indicates that no operation found with a given identifier.

Params:

  • operationId: the id of the operation.

Implementation

factory PlatformChannelError.noOperationFoundError({
  required String operationId,
}) {
  return PlatformChannelNoOperationFoundError(operationId);
}