Space.semiSmall constructor

const Space.semiSmall({
  1. double? crossAxisExtent,
  2. Color? color,
})

Creates a widget that takes a semiSmall amount of space in the direction of its parent.

The spacing value is defined in the global Spacing definition.

The crossAxisExtent must be either null or positive.

Implementation

const Space.semiSmall({
  this.crossAxisExtent,
  this.color,
})  : size = SpaceSize.semiSmall,
      mainAxisExtent = null;