drawableEndSpace property

EdgeInsets get drawableEndSpace

Implementation

EdgeInsets get drawableEndSpace {
  final isRTL = textDirection == TextDirection.rtl;
  final space = drawableEndPadding ?? 12;
  return EdgeInsets.only(
    left: !isRTL ? space : 0,
    right: isRTL ? space : 0,
  );
}