validate method

  1. @override
void validate()

Implementation

@override
void validate() {
  if (scheduled == null && repeat == null) {
    throw InvalidPaymentBodyException(
        'Plan needs either repeat or scheduled');
  }
}