UIContext constructor
UIContext({
- WebsiteId? websiteId,
- String? domain,
- String? path,
- bool? editMode,
- SearchObject? product,
Implementation
factory UIContext({
$0.WebsiteId? websiteId,
$core.String? domain,
$core.String? path,
$core.bool? editMode,
$4.SearchObject? product,
}) {
final result = create();
if (websiteId != null) result.websiteId = websiteId;
if (domain != null) result.domain = domain;
if (path != null) result.path = path;
if (editMode != null) result.editMode = editMode;
if (product != null) result.product = product;
return result;
}