LoraCompatibilityResult constructor
LoraCompatibilityResult({})
Implementation
factory LoraCompatibilityResult({
$core.bool? isCompatible,
$core.String? errorMessage,
$core.String? baseModelRequired,
$core.Iterable<$core.String>? warnings,
$core.int? errorCode,
}) {
final result = create();
if (isCompatible != null) result.isCompatible = isCompatible;
if (errorMessage != null) result.errorMessage = errorMessage;
if (baseModelRequired != null) result.baseModelRequired = baseModelRequired;
if (warnings != null) result.warnings.addAll(warnings);
if (errorCode != null) result.errorCode = errorCode;
return result;
}