NotLogicalFilter.fromJson constructor

NotLogicalFilter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NotLogicalFilter.fromJson(Map<String, dynamic> json) {
  return NotLogicalFilter(
    Filter.fromJson(json['filter']),
  );
}