addQueryProperty method

void addQueryProperty(
  1. String property
)

Add a single query property, see MPLocationPropertyNames

Implementation

void addQueryProperty(String property) {
  _queryProperties ??= List.empty(growable: true);
  _queryProperties?.add(property);
}