p64 method

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

Gives 64dp padding from all sides.

Implementation

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