DeviceInformationChangeError.signingUpdateError constructor Null safety

DeviceInformationChangeError.signingUpdateError(
  1. Map<String, dynamic> json
)

An error that indicates that an error occurred signing the device information target request.

Params:

  • json: contains the source for instance creation.

Implementation

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