toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actions = this.actions;
  final condition = this.condition;
  final description = this.description;
  final ruleId = this.ruleId;
  final triggerType = this.triggerType;
  return {
    'actions': ?actions,
    'condition': ?condition,
    'description': ?description,
    'ruleId': ?ruleId,
    'triggerType': ?triggerType,
  };
}