DescribeConfigurationRevisionResponse.fromJson constructor

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

Implementation

factory DescribeConfigurationRevisionResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeConfigurationRevisionResponse(
    arn: json['arn'] as String?,
    creationTime: timeStampFromJson(json['creationTime']),
    description: json['description'] as String?,
    revision: json['revision'] as int?,
    serverProperties:
        _s.decodeNullableUint8List(json['serverProperties'] as String?),
  );
}