FatooraInvoiceHashResponse constructor

const FatooraInvoiceHashResponse({
  1. required String? hashValue,
  2. required FatooraServiceResponse response,
  3. required ResponseStatus status,
})

Creates a new instance of FatooraInvoiceHashResponse.

  • status: The result status of the operation.
  • response: The full response from the Fatoora service.
  • hashValue: The resulting invoice hash, if applicable.

Implementation

const FatooraInvoiceHashResponse({
  required this.hashValue,
  required this.response,
  required this.status,
});