CreditNoteItem constructor
CreditNoteItem({})
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;
}