mSymmetric static method

EdgeInsets mSymmetric({
  1. double v = 0.0,
  2. double h = 0.0,
})

EdgeInsets with custom symmetric v for vertical and h for horizontal value

Implementation

static EdgeInsets mSymmetric({double v = 0.0, double h = 0.0}) =>
    EdgeInsets.symmetric(
      vertical: v,
      horizontal: h,
    );