PlatformChannelOperationAlreadyExistsError.fromJson constructor Null safety

PlatformChannelOperationAlreadyExistsError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a PlatformChannelOperationAlreadyExistsError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory PlatformChannelOperationAlreadyExistsError.fromJson(
  Map<String, dynamic> json,
) {
  return PlatformChannelOperationAlreadyExistsErrorImpl.fromJson(json);
}