DeviceDeregistrationError.fromJson constructor
Implementation
factory DeviceDeregistrationError.fromJson(Map<String, dynamic> json) =>
DeviceDeregistrationError(
deviceId: (json["deviceId"] as int),
errorMessage: json["errorMessage"] as String,
);