SelfUserProfile.fromJson constructor
Implementation
factory SelfUserProfile.fromJson(Map<String, dynamic> json) {
return SelfUserProfile(
iamUserArn: json['IamUserArn'] as String?,
name: json['Name'] as String?,
sshPublicKey: json['SshPublicKey'] as String?,
sshUsername: json['SshUsername'] as String?,
);
}