PlatformChannelIllegalArgumentError.fromJson constructor Null safety

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

Alternate constructor that creates a PlatformChannelIllegalArgumentError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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