Space.big constructor

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

Creates a widget that takes a big 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.big({
  this.crossAxisExtent,
  this.color,
})  : size = SpaceSize.big,
      mainAxisExtent = null;