QueryPredicate constructor

QueryPredicate(
  1. String? format,
  2. Map<String, dynamic>? parameters
)

Default constructor

The format and parameters of this predicate. parameters may be null.

Implementation

QueryPredicate(this.format, this.parameters) {
  format ??= "";
  parameters ??= {};
}