sliverPadOnly method

SliverPadding sliverPadOnly({
  1. double l = 0.0,
  2. double t = 0.0,
  3. double r = 0.0,
  4. double b = 0.0,
  5. Key? key,
})

Implementation

SliverPadding sliverPadOnly({
  double l = 0.0,
  double t = 0.0,
  double r = 0.0,
  double b = 0.0,
  Key? key,
}) =>
    SliverPadding(
      key: key,
      padding: EdgeInsets.only(left: l, top: t, right: r, bottom: b),
      sliver: this,
    );