toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final active = this.active;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final name = this.name;
  final sampleRule = this.sampleRule;
  final scheduleInfo = this.scheduleInfo;
  final updateTime = this.updateTime;
  return {
    'active': ?active,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'name': ?name,
    'sampleRule': ?sampleRule,
    'scheduleInfo': ?scheduleInfo,
    'updateTime': ?updateTime,
  };
}