OpenRouterCreateApiKeyRequest.unlimited constructor

OpenRouterCreateApiKeyRequest.unlimited({
  1. required String name,
  2. String? creatorUserId,
  3. DateTime? expiresAt,
  4. bool? includeByokInLimit,
})

Implementation

factory OpenRouterCreateApiKeyRequest.unlimited({
  required String name,
  String? creatorUserId,
  DateTime? expiresAt,
  bool? includeByokInLimit,
}) => OpenRouterCreateApiKeyRequest(
  name: name,
  creatorUserId: creatorUserId,
  expiresAt: expiresAt,
  includeByokInLimit: includeByokInLimit,
);