toJson method

Map<String, dynamic> toJson()

Implementation

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