px0 method

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

Gives 0 padding horizontally.

Implementation

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