DescribeUserProfileResult.fromJson constructor

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

Implementation

factory DescribeUserProfileResult.fromJson(Map<String, dynamic> json) {
  return DescribeUserProfileResult(
    createdTimestamp:
        nonNullableTimeStampFromJson(json['createdTimestamp'] as Object),
    lastModifiedTimestamp:
        nonNullableTimeStampFromJson(json['lastModifiedTimestamp'] as Object),
    userArn: json['userArn'] as String,
    displayName: json['displayName'] as String?,
    emailAddress: json['emailAddress'] as String?,
    sshPublicKey: json['sshPublicKey'] as String?,
  );
}