symmetric static method

EdgeInsets symmetric({
  1. double? horizontal,
  2. double? vertical,
})

Returns EdgeInsets with symmetric horizontal and vertical

Implementation

static EdgeInsets symmetric({double? horizontal, double? vertical}) =>
    EdgeInsets.symmetric(
      horizontal: horizontal ?? 0,
      vertical: vertical ?? 0,
    );