pb method

FxAnimatedBox? pb([
  1. double value = 8.0
])
inherited

Creates EdgeInsets.only with Provided Value for Bottom Side

Implementation

T? pb([double value = 8.0]) {
  return _padIt(child: _childToPad, padding: EdgeInsets.only(bottom: value));
}