rightPad property

EdgeInsets get rightPad

Implementation

EdgeInsets get rightPad {
  double baseValue = this.left > 0
      ? this.left
      : (this.right > 0 ? this.right : (top > 0 ? top : bottom));
  return copyWith(right: baseValue);
}