SpaceNameWidget constructor

const SpaceNameWidget({
  1. dynamic key,
  2. required String spaceId,
  3. bool brackets = true,
  4. bool underline = false,
})

Implementation

const SpaceNameWidget({
  super.key,
  required this.spaceId,
  this.brackets = true,
  this.underline = false,
});