TransferringInputDeviceSummary.fromJson constructor
Implementation
factory TransferringInputDeviceSummary.fromJson(Map<String, dynamic> json) {
return TransferringInputDeviceSummary(
id: json['id'] as String?,
message: json['message'] as String?,
targetCustomerId: json['targetCustomerId'] as String?,
transferType:
(json['transferType'] as String?)?.toInputDeviceTransferType(),
);
}