DescribeOperatingSystemsResponse.fromJson constructor
Implementation
factory DescribeOperatingSystemsResponse.fromJson(Map<String, dynamic> json) {
return DescribeOperatingSystemsResponse(
operatingSystems: (json['OperatingSystems'] as List?)
?.whereNotNull()
.map((e) => OperatingSystem.fromJson(e as Map<String, dynamic>))
.toList(),
);
}