SpaceInfo constructor

const SpaceInfo({
  1. dynamic key,
  2. double size = 16,
  3. required String spaceId,
})

Implementation

const SpaceInfo({
  super.key,
  this.size = 16,
  required this.spaceId,
});