PlatformChannelError.operationAlreadyExistsError constructor

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

An error that indicates that an operation already exists with the given identifier.

Params:

  • operationId: the id of the operation.

Implementation

factory PlatformChannelError.operationAlreadyExistsError({
  required String operationId,
}) {
  return PlatformChannelOperationAlreadyExistsError(operationId);
}