paddingLTRB method

Padding paddingLTRB({
  1. double? left,
  2. double? right,
  3. double? top,
  4. double? bottom,
})

Implementation

Padding paddingLTRB(
        {double? left, double? right, double? top, double? bottom}) =>
    Padding(
      padding:
          EdgeInsets.fromLTRB(left ?? 0, top ?? 0, right ?? 0, bottom ?? 0),
      child: this,
    );