ListInputDeviceTransfersResponse.fromJson constructor
Implementation
factory ListInputDeviceTransfersResponse.fromJson(Map<String, dynamic> json) {
return ListInputDeviceTransfersResponse(
inputDeviceTransfers: (json['inputDeviceTransfers'] as List?)
?.whereNotNull()
.map((e) => TransferringInputDeviceSummary.fromJson(
e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}