padLeft function

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

Implementation

padLeft({double? v}) {
  return EdgeInsets.only(left: v??padding());
}