UpdateConfigurationResponse.fromJson constructor
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,
);
}