LoraAdapterCatalogGetResult constructor
LoraAdapterCatalogGetResult({
- bool? found,
- LoraAdapterCatalogEntry? entry,
- String? errorMessage,
Implementation
factory LoraAdapterCatalogGetResult({
$core.bool? found,
LoraAdapterCatalogEntry? entry,
$core.String? errorMessage,
}) {
final result = create();
if (found != null) result.found = found;
if (entry != null) result.entry = entry;
if (errorMessage != null) result.errorMessage = errorMessage;
return result;
}