ApiKey constructor

ApiKey({
  1. required String id,
  2. String? organizationId,
  3. required String name,
  4. String? rawKey,
})

Implementation

ApiKey({
  required this.id,
  this.organizationId,
  required this.name,
  this.rawKey,
});