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,
})

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,
});