horizontal static method

EdgeInsets horizontal(
  1. double size
)

Returns an EdgeInsets with horizontal sides scaled by size.

Implementation

static EdgeInsets horizontal(double size) =>
    EdgeInsets.symmetric(horizontal: _scale(size));