toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final about = this.about;
final inStock = this.inStock;
final inventoryVerification = this.inventoryVerification;
final lfpLink = this.lfpLink;
final lsfType = this.lsfType;
final name = this.name;
final odo = this.odo;
final pickup = this.pickup;
final regionCode = this.regionCode;
return {
'about': ?about,
'inStock': ?inStock,
'inventoryVerification': ?inventoryVerification,
'lfpLink': ?lfpLink,
'lsfType': ?lsfType,
'name': ?name,
'odo': ?odo,
'pickup': ?pickup,
'regionCode': ?regionCode,
};
}