DescribeConfigurationRecorderStatusResponse.fromJson constructor

DescribeConfigurationRecorderStatusResponse.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}