DirectionalEdgeSpacing.all constructor

const DirectionalEdgeSpacing.all(
  1. SpacingUnit value
)

Creates a DirectionalEdgeSpacing with the same value for all edges.

Implementation

const DirectionalEdgeSpacing.all(SpacingUnit value)
  : this.only(
      start: value,
      end: value,
      top: value,
      bottom: value,
    );