m function

MarginAttribute m(
  1. double space
)

Margin all

Implementation

MarginAttribute m(double space) => MarginAttribute(
      left: space,
      right: space,
      top: space,
      bottom: space,
    );