marginSym method

Widget marginSym({
  1. double h = 0,
  2. double v = 0,
})

Implementation

Widget marginSym({double h = 0, double v = 0}) => Container(
      margin: EdgeInsets.symmetric(horizontal: h, vertical: v),
      child: this,
    );