toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (id != null) r'id': id,
    if (operator_ != null) r'operator': operator_,
    if (path != null) r'path': path,
    if (type != null) r'type': type,
    if (value != null) r'value': value,
  };
}