CreateAdminApiKeyResponse constructor

const CreateAdminApiKeyResponse({
  1. required String keyId,
  2. required String key,
  3. required String name,
  4. required String createdAt,
  5. required String? expiresAt,
  6. required List<String> acls,
})

Implementation

const CreateAdminApiKeyResponse({
  required this.keyId,
  required this.key,
  required this.name,
  required this.createdAt,
  required this.expiresAt,
  required this.acls,
});