padAll function

dynamic padAll({
  1. double? v,
})

Implementation

padAll({double? v}){
  return EdgeInsets.all(v??padding());
}