pr method

FxBox? pr([
  1. double value = 8.0
])
inherited

Creates EdgeInsets.only with Provided Value for Right Side

Implementation

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