DeviceDefinitionVersion.fromJson constructor
Implementation
factory DeviceDefinitionVersion.fromJson(Map<String, dynamic> json) {
return DeviceDefinitionVersion(
devices: (json['Devices'] as List?)
?.whereNotNull()
.map((e) => Device.fromJson(e as Map<String, dynamic>))
.toList(),
);
}