Token constructor

Token({
  1. bool? anonymous,
  2. String? clientId,
  3. String? displayText,
  4. String? etag,
  5. String? kind,
  6. bool? nativeApp,
  7. List<String>? scopes,
  8. String? userKey,
})

Implementation

Token({
  this.anonymous,
  this.clientId,
  this.displayText,
  this.etag,
  this.kind,
  this.nativeApp,
  this.scopes,
  this.userKey,
});