WebsitePage constructor
WebsitePage({
- RowVersion? rowVersion,
- WebsitePageId? id,
- String? displayName,
- String? path,
- ConfigurationId? configuration,
Implementation
factory WebsitePage({
$1.RowVersion? rowVersion,
$0.WebsitePageId? id,
$core.String? displayName,
$core.String? path,
$0.ConfigurationId? configuration,
}) {
final result = create();
if (rowVersion != null) result.rowVersion = rowVersion;
if (id != null) result.id = id;
if (displayName != null) result.displayName = displayName;
if (path != null) result.path = path;
if (configuration != null) result.configuration = configuration;
return result;
}