padLTRB property

EdgeInsets get padLTRB

creates padding

1st element = Left

2nd element = Top

3rd element = Right

4th element = Bottom

Implementation

EdgeInsets get padLTRB {
  assert(this.length == 4, "List should have exactly 4 elements");
  return EdgeInsets.fromLTRB(this[0].toDouble(), this[1].toDouble(),
      this[2].toDouble(), this[3].toDouble());
}