setOneTimeBurnLimit method
Implementation
Future<OpenRouterManagedApiKey> setOneTimeBurnLimit(
String hash, {
required double limit,
String? name,
bool? disabled,
bool? includeByokInLimit,
}) => updateKey(
hash,
OpenRouterUpdateApiKeyRequest.oneTimeUseBurn(
name: name,
limit: limit,
disabled: disabled,
includeByokInLimit: includeByokInLimit,
),
);