px32 method

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

Gives 32dp padding horizontally.

Implementation

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