Application constructor

Application({
  1. Attributes? attributes,
  2. String? createTime,
  3. String? description,
  4. String? displayName,
  5. String? name,
  6. Scope? scope,
  7. String? state,
  8. String? uid,
  9. String? updateTime,
})

Implementation

Application({
  this.attributes,
  this.createTime,
  this.description,
  this.displayName,
  this.name,
  this.scope,
  this.state,
  this.uid,
  this.updateTime,
});