Account constructor

Account({
  1. String? id,
  2. String? name,
  3. String? role,
  4. String? state,
  5. String? logoBase64,
})

Implementation

Account({
  this.id,
  this.name,
  this.role,
  this.state,
  this.logoBase64,
});