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