paddingSTEB method
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,
);
Padding paddingSTEB(
double start,
double top,
double end,
double bottom, {
Key? key,
}) => Padding(
key: key,
padding: EdgeInsetsDirectional.fromSTEB(start, top, end, bottom),
child: this,
);