removePayment method

void removePayment(
  1. int index
)

Implementation

void removePayment(int index) {
  _payments.removeAt(index);
  notifyListeners();
}