Query constructor

const Query(
  1. String query, {
  2. dynamic match,
  3. dynamic defaultValue,
  4. bool required = true,
})

Implementation

const Query(String query, {super.match, super.defaultValue, super.required})
    : super(query: query);