validate method

  1. @override
void validate()

Implementation

@override
void validate() {
  if (merchant == null && customer == null) {
    throw InvalidPaymentBodyException('Unplan field is invalid');
  }
}