toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customer = this.customer;
  final name = this.name;
  final policyQuery = this.policyQuery;
  final setting = this.setting;
  final type = this.type;
  return {
    'customer': ?customer,
    'name': ?name,
    'policyQuery': ?policyQuery,
    'setting': ?setting,
    'type': ?type,
  };
}