WebsitePage constructor

WebsitePage({
  1. RowVersion? rowVersion,
  2. WebsitePageId? id,
  3. String? displayName,
  4. String? path,
  5. 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;
}