ApiKeyValidationResult constructor

const ApiKeyValidationResult({
  1. required bool isValid,
  2. List<String>? permissions,
  3. RateLimits? rateLimits,
  4. required String keyType,
  5. String? error,
  6. String? message,
  7. String? code,
  8. DeveloperInfo? developer,
  9. ApiKeyInfo? apiKey,
})

Implementation

const ApiKeyValidationResult({
  required this.isValid,
  this.permissions,
  this.rateLimits,
  required this.keyType,
  this.error,
  this.message,
  this.code,
  this.developer,
  this.apiKey,
});