symmetric static method

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

Implementation

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