PlatformChannelOperationAlreadyExistsError constructor Null safety

PlatformChannelOperationAlreadyExistsError(
  1. String operationId
)

Constructor that creates a PlatformChannelOperationAlreadyExistsError.

Params:

  • operationId: the id of the operation.

Implementation

factory PlatformChannelOperationAlreadyExistsError(String operationId) {
  return PlatformChannelOperationAlreadyExistsErrorImpl(operationId);
}