PaystackResponse.error constructor

PaystackResponse.error(
  1. String message
)

Implementation

factory PaystackResponse.error(String message) {
  return PaystackResponse(code: '01', message: message, reference: null);
}