PurchaseResponse.from constructor

PurchaseResponse.from({
  1. required int statusCode,
  2. required String reasonPhrase,
  3. required Map<String, String> headers,
  4. required Invoice? invoice,
})

Returns the new instance of PurchaseResponse based on arguments.

Implementation

PurchaseResponse.from({
  required int statusCode,
  required String reasonPhrase,
  required Map<String, String> headers,
  required this.invoice,
}) : super.from(
        status: Status.from(
          code: statusCode,
          reasonPhrase: reasonPhrase,
        ),
        headers: headers,
      );