PlatformChannelNullPointerError.fromJson constructor Null safety

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

Alternate constructor that creates a PlatformChannelNullPointerError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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