CreditNoteItem constructor

CreditNoteItem({
  1. String? orderId,
  2. String? orderNumber,
  3. String? totalItem,
  4. String? subTotal,
  5. String? discount,
  6. String? grandTotal,
  7. StatusData? status,
  8. String? remarks,
  9. CreatedAtDateTime? createdAtDateTime,
  10. String? modifyBtnShow,
  11. String? placeByType,
  12. String? cnType,
})

Implementation

CreditNoteItem({
    String? orderId,
    String? orderNumber,
    String? totalItem,
    String? subTotal,
    String? discount,
    String? grandTotal,
    StatusData? status,
    String? remarks,
    CreatedAtDateTime? createdAtDateTime,
    String? modifyBtnShow,
    String? placeByType,
    String? cnType,}){
  _orderId = orderId;
  _orderNumber = orderNumber;
  _totalItem = totalItem;
  _subTotal = subTotal;
  _discount = discount;
  _grandTotal = grandTotal;
  _status = status;
  _remarks = remarks;
  _createdAtDateTime = createdAtDateTime;
  _modifyBtnShow = modifyBtnShow;
  _placeByType = placeByType;
  _cnType = cnType;
}