paddingStart method

Widget paddingStart(
  1. double space
)

Padding on start edge only. Is affected by whether the device is LTR or RTL:

LTR: Left edge RTL: Right edge

Implementation

Widget paddingStart(double space) => Padding(padding: EdgeInsetsDirectional.only(start: space), child: this);