SharedSpace constructor

SharedSpace({
  1. required Uri realSpace,
  2. required String id,
  3. required String name,
  4. required LinkMap links,
  5. List<Grid>? embeddedGrids,
  6. String? key,
  7. String? category,
  8. Color? color,
  9. String? icon,
  10. String? iconSet,
})

Creates a new Space Model with a certain id and name gridUris is List<GridUri> pointing to the Grids contained in this Space realSpace points to the Uri of the actual Space

Implementation

SharedSpace({
  required this.realSpace,
  required super.id,
  required super.name,
  required super.links,
  super.embeddedGrids,
  super.key,
  super.category,
  super.color,
  super.icon,
  super.iconSet,
});