ticketsSet property
Set<TicketWeebi>
get
ticketsSet
Implementation
Set<TicketWeebi> get ticketsSet => {
TicketWeebi(
id: 1,
items: [
ItemCartWeebi(() => ArticleRetailOnTicket.dummyRetailOnTicket, 0)
],
taxe: TaxWeebi.noTax,
promo: 0.0,
comment: 'no comment',
received: 0,
date: DateTime(2020, 02, 02),
paymentType: PaymentType.nope,
ticketType: TicketType.spendDeferred,
contactId: 0,
status: true,
statusUpdateDate: DateTime.now(),
creationDate: DateTime.now(),
),
TicketWeebi(
id: 2,
items: [
ItemCartWeebi(() => ArticleRetailOnTicket.dummyRetailOnTicket, 0)
],
taxe: TaxWeebi.noTax,
promo: 0.0,
comment: 'no comment',
received: 0,
date: DateTime.now(),
paymentType: PaymentType.nope,
ticketType: TicketType.spendDeferred,
contactId: 0,
status: true,
statusUpdateDate: DateTime.now(),
creationDate: DateTime.now(),
discountAmount: 0),
TicketWeebi(
id: 3,
items: [],
taxe: TaxWeebi.noTax,
promo: 0.0,
comment: 'no comment',
received: 0,
date: DateTime.now(),
paymentType: PaymentType.nope,
ticketType: TicketType.spendDeferred,
contactId: 1,
status: true,
statusUpdateDate: DateTime.now(),
creationDate: DateTime.now(),
discountAmount: 0),
};