User constructor

User({
  1. String? createTime,
  2. String? customerServiceAccount,
  3. Map<String, String>? labels,
  4. String? name,
  5. String? state,
  6. List<StorageDirectoryMapping>? storageDirectoryMappings,
  7. String? updateTime,
  8. List<UserCredential>? userCredentials,
  9. String? username,
})

Implementation

User({
  this.createTime,
  this.customerServiceAccount,
  this.labels,
  this.name,
  this.state,
  this.storageDirectoryMappings,
  this.updateTime,
  this.userCredentials,
  this.username,
});