toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final builtInVariable = this.builtInVariable;
  final changeStatus = this.changeStatus;
  final client = this.client;
  final customTemplate = this.customTemplate;
  final folder = this.folder;
  final gtagConfig = this.gtagConfig;
  final tag = this.tag;
  final transformation = this.transformation;
  final trigger = this.trigger;
  final variable = this.variable;
  final zone = this.zone;
  return {
    'builtInVariable': ?builtInVariable,
    'changeStatus': ?changeStatus,
    'client': ?client,
    'customTemplate': ?customTemplate,
    'folder': ?folder,
    'gtagConfig': ?gtagConfig,
    'tag': ?tag,
    'transformation': ?transformation,
    'trigger': ?trigger,
    'variable': ?variable,
    'zone': ?zone,
  };
}