po method

FxCard? po({
  1. double t = 0.0,
  2. double b = 0.0,
  3. double l = 0.0,
  4. double r = 0.0,
})
inherited

Creates EdgeInsets.only with Provided Value for right Side

Implementation

T? po({double t = 0.0, double b = 0.0, double l = 0.0, double r = 0.0}) {
  return _padIt(
      child: _childToPad,
      padding: EdgeInsets.only(bottom: b, left: l, right: r, top: t));
}