CreateAPIKeyResponse constructor
CreateAPIKeyResponse({
- APIKey? apiKey,
Implementation
factory CreateAPIKeyResponse({
$2.APIKey? apiKey,
}) {
final _result = create();
if (apiKey != null) {
_result.apiKey = apiKey;
}
return _result;
}