toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final activeViewConfig = this.activeViewConfig;
  final customVariables = this.customVariables;
  final displayName = this.displayName;
  final floodlightGroupId = this.floodlightGroupId;
  final lookbackWindow = this.lookbackWindow;
  final name = this.name;
  final webTagType = this.webTagType;
  return {
    'activeViewConfig': ?activeViewConfig,
    'customVariables': ?customVariables,
    'displayName': ?displayName,
    'floodlightGroupId': ?floodlightGroupId,
    'lookbackWindow': ?lookbackWindow,
    'name': ?name,
    'webTagType': ?webTagType,
  };
}