symmetric static method

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

Implementation

static EdgeInsets symmetric({double vertical = 0, double horizontal = 0}) {
  return FlexSpacing.only(
    top: vertical,
    right: horizontal,
    left: horizontal,
    bottom: vertical,
  );
}