decrement method

void decrement()

Implementation

void decrement() {
  final currentValue = state.data ?? 0;
  setSuccess(currentValue - 1);
}