LoraAdapterCatalogGetResult constructor

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