Authorization constructor

Authorization({
  1. String? clientUserId,
  2. String? createTime,
  3. String? name,
  4. List<String>? scopes,
  5. String? state,
  6. String? updateTime,
})

Implementation

Authorization({
  this.clientUserId,
  this.createTime,
  this.name,
  this.scopes,
  this.state,
  this.updateTime,
});