padAll method

Padding padAll({
  1. double? value,
})

Implementation

Padding padAll({double? value}) => Padding(
      padding: EdgeInsets.all(value ?? kDefault10HorizontalSpace),
      child: this,
    );