padSymmetric method

Padding padSymmetric({
  1. double v = 0.0,
  2. double h = 0.0,
  3. Key? key,
})

see Padding

Implementation

Padding padSymmetric({
  double v = 0.0,
  double h = 0.0,
  Key? key,
}) =>
    Padding(
      key: key,
      padding: EdgeInsets.symmetric(vertical: v, horizontal: h),
      child: this,
    );