padRight function

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

Implementation

padRight({double? v}) {
  return EdgeInsets.only(right: v??padding());
}