toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final about = this.about;
final country = this.country;
final hostedLocalStorefrontActive = this.hostedLocalStorefrontActive;
final inventory = this.inventory;
final omnichannelExperience = this.omnichannelExperience;
final onDisplayToOrder = this.onDisplayToOrder;
final posDataProvider = this.posDataProvider;
final storePickupActive = this.storePickupActive;
return {
'about': ?about,
'country': ?country,
'hostedLocalStorefrontActive': ?hostedLocalStorefrontActive,
'inventory': ?inventory,
'omnichannelExperience': ?omnichannelExperience,
'onDisplayToOrder': ?onDisplayToOrder,
'posDataProvider': ?posDataProvider,
'storePickupActive': ?storePickupActive,
};
}