DeleteDeviceResponse.fromJson constructor
Implementation
factory DeleteDeviceResponse.fromJson(Map<String, dynamic> json) {
return DeleteDeviceResponse(
device: json['Device'] != null
? Device.fromJson(json['Device'] as Map<String, dynamic>)
: null,
);
}