getLeftIconPaddingIfNeeded method
Implementation
Widget? getLeftIconPaddingIfNeeded() {
if (getLeftIcon() != null) {
return const SizedBox(width: 11);
} else {
return null;
}
}
Widget? getLeftIconPaddingIfNeeded() {
if (getLeftIcon() != null) {
return const SizedBox(width: 11);
} else {
return null;
}
}