paddingSTEB method

Padding paddingSTEB(
  1. double start,
  2. double top,
  3. double end,
  4. double bottom, {
  5. Key? key,
})

Implementation

Padding paddingSTEB(
  double start,
  double top,
  double end,
  double bottom, {
  Key? key,
}) => Padding(
  key: key,
  padding: EdgeInsetsDirectional.fromSTEB(start, top, end, bottom),
  child: this,
);