UpdateUserProfileResult.fromJson constructor

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

Implementation

factory UpdateUserProfileResult.fromJson(Map<String, dynamic> json) {
  return UpdateUserProfileResult(
    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?,
  );
}