Space class

Model for a Space

Implementers

Constructors

Space({required String id, required String name, required LinkMap links, List<Grid>? embeddedGrids, String? key, 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
Space.fromJson(Map<String, dynamic> json)
Deserializes json into a Space Object
factory

Properties

category String?
The category this space belongs to
final
embeddedGrids List<Grid>?
A List of Grids that are embedded in this Space
final
hashCode int
The hash code for this object.
no setteroverride
id String
Id of this space
final
key String?
The key of this space
final
Links for relevant actions for this Space
final
name String
Name of this space
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this Space into a json Map
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override