toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'type'] = this.type;
  json[r'conditions'] = this.conditions;
  return json;
}