px64 method

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

Gives 64dp padding horizontally.

Implementation

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