User constructor

User({
  1. String? accessState,
  2. List<String>? developerAccountPermissions,
  3. String? email,
  4. String? expirationTime,
  5. List<Grant>? grants,
  6. String? name,
  7. bool? partial,
})

Implementation

User({
  this.accessState,
  this.developerAccountPermissions,
  this.email,
  this.expirationTime,
  this.grants,
  this.name,
  this.partial,
});