Invoice constructor

Invoice({
  1. String? client,
  2. String? clientEmail,
  3. double? amount,
  4. double? discount,
  5. String? backUrl,
  6. String? webhookUrl,
  7. PaymentMethod? mode,
  8. String? invoiceNumber,
  9. String? comment,
})

Implementation

Invoice(
    {this.client,
    this.clientEmail,
    this.amount,
    this.discount,
    this.backUrl,
    this.webhookUrl,
    this.mode,
    this.invoiceNumber,
    this.comment});