toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final acceptsCashOnly = this.acceptsCashOnly;
final acceptsCreditCards = this.acceptsCreditCards;
final acceptsDebitCards = this.acceptsDebitCards;
final acceptsNfc = this.acceptsNfc;
return {
'acceptsCashOnly': ?acceptsCashOnly,
'acceptsCreditCards': ?acceptsCreditCards,
'acceptsDebitCards': ?acceptsDebitCards,
'acceptsNfc': ?acceptsNfc,
};
}