ContentCreateSpace constructor
ContentCreateSpace({
- int? id,
- String? name,
- Icon? icon,
- GlobalSpaceIdentifier? identifiers,
- ContentCreateSpaceDescription? description,
- Content? homepage,
- String? type,
- ContentCreateSpaceMetadata? metadata,
- List<
OperationCheckResult> ? operations, - List<
SpacePermission> ? permissions, - String? status,
- SpaceSettings? settings,
- Theme? theme,
- LookAndFeel? lookAndFeel,
- ContentCreateSpaceHistory? history,
- required String key,
- Map<
String, dynamic> ? links,
Implementation
ContentCreateSpace(
{this.id,
this.name,
this.icon,
this.identifiers,
this.description,
this.homepage,
this.type,
this.metadata,
List<OperationCheckResult>? operations,
List<SpacePermission>? permissions,
this.status,
this.settings,
this.theme,
this.lookAndFeel,
this.history,
required this.key,
this.links})
: operations = operations ?? [],
permissions = permissions ?? [];