EdgeSpacing.all constructor

const EdgeSpacing.all(
  1. SpacingUnit value
)

Creates an EdgeSpacing with the same value for all edges.

Implementation

const EdgeSpacing.all(SpacingUnit value)
  : left = value,
    right = value,
    super(
      top: value,
      bottom: value,
    );