py16 method

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

Gives 16dp padding vertically.

Implementation

Padding py16({Key? key}) => Padding(
      key: key,
      padding: const EdgeInsets.symmetric(vertical: Vx.dp16),
      child: this,
    );