SpaceProperty constructor

SpaceProperty({
  1. required String id,
  2. required String key,
  3. required dynamic value,
  4. Version? version,
  5. Space? space,
  6. GenericLinks? links,
  7. required SpacePropertyExpandable expandable,
})

Implementation

SpaceProperty(
    {required this.id,
    required this.key,
    required this.value,
    this.version,
    this.space,
    this.links,
    required this.expandable});