DeleteConfigurationResponse.fromJson constructor

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

Implementation

factory DeleteConfigurationResponse.fromJson(Map<String, dynamic> json) {
  return DeleteConfigurationResponse(
    arn: json['arn'] as String?,
    state: (json['state'] as String?)?.toConfigurationState(),
  );
}