paddingDirectional method
Implementation
Widget paddingDirectional({
double start = 0.0,
double top = 0.0,
double end = 0.0,
double bottom = 0.0,
}) {
return Padding(
padding: EdgeInsetsDirectional.only(
start: start,
top: top,
end: end,
bottom: bottom,
),
child: this,
);
}