px24 method

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

Gives 24dp padding horizontally.

Implementation

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