toJson method

Map<String, dynamic> toJson()

Implementation

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