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