CreateGroupResponse.fromJson constructor

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

Implementation

factory CreateGroupResponse.fromJson(Map<String, dynamic> json) {
  return CreateGroupResponse(
    arn: json['Arn'] as String?,
    creationTimestamp: json['CreationTimestamp'] as String?,
    id: json['Id'] as String?,
    lastUpdatedTimestamp: json['LastUpdatedTimestamp'] as String?,
    latestVersion: json['LatestVersion'] as String?,
    latestVersionArn: json['LatestVersionArn'] as String?,
    name: json['Name'] as String?,
  );
}