Apikey constructor

Apikey({
  1. required String apiKeyId,
  2. String? userId,
  3. required String companyId,
  4. required String roleId,
  5. required String token,
  6. String? name,
  7. String? expirationDateUtc,
  8. String? dateCreated,
  9. String? lastUpdated,
  10. String? active,
})

Returns a new Apikey instance.

Implementation

Apikey({
  required this.apiKeyId,
  this.userId,
  required this.companyId,
  required this.roleId,
  required this.token,
  this.name,
  this.expirationDateUtc,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});