FFSearchReference constructor
FFSearchReference({
- FFParameter? appState,
- FFParameter? appConstant,
- FFApiEndpoint? apiEndpoint,
- FFCustomFunction? customFunction,
- FFCustomWidget? customWidget,
- FFCustomAction? customAction,
- String? widgetClass,
- FFParameter? widgetClassState,
- FFParameter? widgetClassParameter,
- bool? isPage,
- String? name,
- String? widgetClassName,
Implementation
factory FFSearchReference({
FFParameter? appState,
FFParameter? appConstant,
FFApiEndpoint? apiEndpoint,
FFCustomFunction? customFunction,
FFCustomWidget? customWidget,
FFCustomAction? customAction,
$core.String? widgetClass,
FFParameter? widgetClassState,
FFParameter? widgetClassParameter,
$core.bool? isPage,
$core.String? name,
$core.String? widgetClassName,
}) {
final result = create();
if (appState != null) result.appState = appState;
if (appConstant != null) result.appConstant = appConstant;
if (apiEndpoint != null) result.apiEndpoint = apiEndpoint;
if (customFunction != null) result.customFunction = customFunction;
if (customWidget != null) result.customWidget = customWidget;
if (customAction != null) result.customAction = customAction;
if (widgetClass != null) result.widgetClass = widgetClass;
if (widgetClassState != null) result.widgetClassState = widgetClassState;
if (widgetClassParameter != null)
result.widgetClassParameter = widgetClassParameter;
if (isPage != null) result.isPage = isPage;
if (name != null) result.name = name;
if (widgetClassName != null) result.widgetClassName = widgetClassName;
return result;
}