PadLTRB constructor

const PadLTRB(
  1. double left,
  2. double top,
  3. double right,
  4. double bottom, {
  5. Key? key,
  6. Widget? child,
})

Provide LTRB values

Implementation

const PadLTRB(this.left, this.top, this.right, this.bottom,
    {Key? key, this.child})
    : super(key: key);