toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adjustmentRule = this.adjustmentRule;
  final exclusionRule = this.exclusionRule;
  final hotwordRule = this.hotwordRule;
  return {
    'adjustmentRule': ?adjustmentRule,
    'exclusionRule': ?exclusionRule,
    'hotwordRule': ?hotwordRule,
  };
}