p24 method

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

Gives 24dp padding from all sides.

Implementation

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