EdgeSpacingGeometry constructor

const EdgeSpacingGeometry({
  1. SpacingUnit top = SpacingUnit.zero,
  2. SpacingUnit bottom = SpacingUnit.zero,
})

Creates an edge spacing geometry with optional top and bottom spacing.

Defaults to zero spacing if not specified.

Implementation

const EdgeSpacingGeometry({
  this.top = SpacingUnit.zero,
  this.bottom = SpacingUnit.zero,
});