DeviceInformationChangeSigningError.fromJson constructor Null safety

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

Alternate constructor that creates a DeviceInformationChangeSigningError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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