whereAll method

  1. @override
QueryBuilderInterface<T> whereAll(
  1. Map<String, dynamic> conditions
)
override

Matches ALL of the conditions

Implementation

@override
QueryBuilderInterface<T> whereAll(Map<String, dynamic> conditions) {
  conditions.forEach((column, value) {
    where(column, '=', value);
  });
  return this;
}