Space constructor

Space({
  1. required String id,
  2. required String name,
  3. required LinkMap links,
  4. List<Grid>? embeddedGrids,
  5. String? key,
  6. String? category,
  7. Color? color,
  8. String? icon,
  9. 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

Implementation

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