addToBottom method

EdgeInsets addToBottom(
  1. double value
)

Adds the specified value to the existing bottom padding

Implementation

EdgeInsets addToBottom(double value) => copyWith(bottom: bottom + value);