paddingEnd method

Widget paddingEnd(
  1. double space
)

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

LTR: Right edge RTL: Left edge

Implementation

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