Margin.all constructor

const Margin.all(
  1. double value
)

Creates a Margin with the same value on all sides.

Implementation

const Margin.all(double value)
    : top = value,
      right = value,
      bottom = value,
      left = value;