NiceTokenInfo constructor

const NiceTokenInfo({
  1. required String id,
  2. required String name,
  3. String? prefix,
  4. DateTime? createdAt,
  5. DateTime? expiresAt,
  6. DateTime? lastUsed,
  7. List<String> scopes = const [],
})

Implementation

const NiceTokenInfo({
  required this.id,
  required this.name,
  this.prefix,
  this.createdAt,
  this.expiresAt,
  this.lastUsed,
  this.scopes = const [],
});