UpdateConfigurationResponse.fromJson constructor

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

Implementation

factory UpdateConfigurationResponse.fromJson(Map<String, dynamic> json) {
  return UpdateConfigurationResponse(
    arn: json['arn'] as String?,
    latestRevision: json['latestRevision'] != null
        ? ConfigurationRevision.fromJson(
            json['latestRevision'] as Map<String, dynamic>)
        : null,
  );
}