PinChangeDeviceProtectionError.fromJson constructor Null safety

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

Alternate constructor that creates a PinChangeDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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