PlatformChannelUnknownError.fromJson constructor Null safety

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

Alternate constructor that creates a PlatformChannelUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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