LoraAdapterCatalogGetResult constructor

LoraAdapterCatalogGetResult({
  1. bool? found,
  2. LoraAdapterCatalogEntry? entry,
  3. 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;
}