toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalVariables = this.additionalVariables;
  final createTime = this.createTime;
  final eventSubscriptions = this.eventSubscriptions;
  final eventTypes = this.eventTypes;
  final id = this.id;
  final name = this.name;
  final nextRefreshTime = this.nextRefreshTime;
  final updateTime = this.updateTime;
  return {
    'additionalVariables': ?additionalVariables,
    'createTime': ?createTime,
    'eventSubscriptions': ?eventSubscriptions,
    'eventTypes': ?eventTypes,
    'id': ?id,
    'name': ?name,
    'nextRefreshTime': ?nextRefreshTime,
    'updateTime': ?updateTime,
  };
}