PlatformChannelNoOperationFoundError.fromJson constructor Null safety

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

Alternate constructor that creates a PlatformChannelNoOperationFoundError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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