CreditNoteLines constructor

const CreditNoteLines({
  1. required List<CreditNoteLineItem> data,
  2. required bool hasMore,
  3. required String url,
})

CreditNoteLinesList

Line items that make up the credit note

Implementation

const CreditNoteLines({
  required this.data,
  required this.hasMore,
  required this.url,
});