toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buyingMethod = this.buyingMethod;
  final costModel = this.costModel;
  final productCategory = this.productCategory;
  return {
    'buyingMethod': ?buyingMethod,
    'costModel': ?costModel,
    'productCategory': ?productCategory,
  };
}