padH method

Padding padH(
  1. double v, {
  2. Key? key,
})

see Padding

Implementation

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