plus method

String plus(
  1. String value
)

Implementation

String plus(String value) {
  num count = num.tryParse(value) ?? errorDefault ?? 0;
  return (count + step).clamp(min, max ?? 99999999).toString();
}