PlatformChannelWrongOperationTypeError.fromJson constructor Null safety

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

Alternate constructor that creates a PlatformChannelWrongOperationTypeError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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