GetDevicePartitionsResponse constructor
GetDevicePartitionsResponse({
- Iterable<
GetDevicePartitionsResponse_Partition> ? partitions, - List<
int> ? deviceId,
Implementation
factory GetDevicePartitionsResponse({
$core.Iterable<GetDevicePartitionsResponse_Partition>? partitions,
$core.List<$core.int>? deviceId,
}) {
final _result = create();
if (partitions != null) {
_result.partitions.addAll(partitions);
}
if (deviceId != null) {
_result.deviceId = deviceId;
}
return _result;
}