Margin.all constructor

const Margin.all(
  1. int value
)

Creates uniform margin on all sides.

Implementation

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