toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deliveryType = this.deliveryType;
  final dependencies = this.dependencies;
  final moduleType = this.moduleType;
  final name = this.name;
  final targeting = this.targeting;
  return {
    'deliveryType': ?deliveryType,
    'dependencies': ?dependencies,
    'moduleType': ?moduleType,
    'name': ?name,
    'targeting': ?targeting,
  };
}