contentPaddingLeft method
Implementation
DefineMTextFieldModifier contentPaddingLeft(double value) {
final newPadding = EdgeInsets.only(
top: thisPadding?.top ?? 0,
bottom: thisPadding?.bottom ?? 0,
left: value,
right: thisPadding?.right ?? 0,
);
return this.copyWith(
decorationValue: (this.decorationValue ?? InputDecoration())
.copyWith(contentPadding: newPadding),
);
}