DescribeConfigurationRecorderStatusResponse.fromJson constructor
Implementation
factory DescribeConfigurationRecorderStatusResponse.fromJson(
Map<String, dynamic> json) {
return DescribeConfigurationRecorderStatusResponse(
configurationRecordersStatus: (json['ConfigurationRecordersStatus']
as List?)
?.whereNotNull()
.map((e) =>
ConfigurationRecorderStatus.fromJson(e as Map<String, dynamic>))
.toList(),
);
}