toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final freeLocalListingsEnabled = this.freeLocalListingsEnabled;
final instockServingVerificationState =
this.instockServingVerificationState;
final inventoryVerificationState = this.inventoryVerificationState;
final localInventoryAdsEnabled = this.localInventoryAdsEnabled;
final pickupServingVerificationState = this.pickupServingVerificationState;
final productPageType = this.productPageType;
final regionCode = this.regionCode;
return {
'freeLocalListingsEnabled': ?freeLocalListingsEnabled,
'instockServingVerificationState': ?instockServingVerificationState,
'inventoryVerificationState': ?inventoryVerificationState,
'localInventoryAdsEnabled': ?localInventoryAdsEnabled,
'pickupServingVerificationState': ?pickupServingVerificationState,
'productPageType': ?productPageType,
'regionCode': ?regionCode,
};
}