Authorization constructor

Authorization({
  1. int? id,
  2. List<String>? scopes,
  3. String? token,
  4. AuthorizationApplication? app,
  5. String? note,
  6. String? noteUrl,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
  9. User? user,
})

Implementation

Authorization(
    {this.id,
    this.scopes,
    this.token,
    this.app,
    this.note,
    this.noteUrl,
    this.createdAt,
    this.updatedAt,
    this.user});