buttonPadding property

double buttonPadding

Implementation

double get buttonPadding {
  if (widget.padding.right - 12 < 0) {
    return 4;
  } else {
    return widget.padding.right - 12;
  }
}