p0 method

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

Gives 0 padding from all sides.

Implementation

Padding p0({Key? key}) => Padding(
      key: key,
      padding: EdgeInsets.zero,
      child: this,
    );