CreateApiKey constructor

CreateApiKey({
  1. required String name,
  2. required String organizationId,
  3. List<String> scopes = const [],
})

Returns a new CreateApiKey instance.

Implementation

CreateApiKey({
  required this.name,
  required this.organizationId,
  this.scopes = const [],
});