UserProfileSummary.fromJson constructor
Implementation
factory UserProfileSummary.fromJson(Map<String, dynamic> json) {
return UserProfileSummary(
displayName: json['displayName'] as String?,
emailAddress: json['emailAddress'] as String?,
sshPublicKey: json['sshPublicKey'] as String?,
userArn: json['userArn'] as String?,
);
}