px4 method

Padding px4({
  1. Key? key,
})

Gives 4dp padding horizontally.

Implementation

Padding px4({Key? key}) => Padding(
      key: key,
      padding: const EdgeInsets.symmetric(horizontal: Vx.dp4),
      child: this,
    );