UpdateUserProfileResult constructor

UpdateUserProfileResult({
  1. required String userArn,
  2. DateTime? createdTimestamp,
  3. String? displayName,
  4. String? emailAddress,
  5. DateTime? lastModifiedTimestamp,
  6. String? sshPublicKey,
})

Implementation

UpdateUserProfileResult({
  required this.userArn,
  this.createdTimestamp,
  this.displayName,
  this.emailAddress,
  this.lastModifiedTimestamp,
  this.sshPublicKey,
});