PinMeta class
Pin Meta
Pin meta object identity. Performing query
operations on an instance of pin meta will
produce a PinMetaQuery.
Available query operations
final query = PinMeta.at('type').greaterThan(2);
Constructors
- PinMeta.at(String _target)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
between(
Object value1, Object value2) → PinMetaQuery -
Query against where value of pin meta target
is between
value1
andvalue2
. -
contain(
Object value) → PinMetaQuery -
Query against where value of pin meta target
contains
value
. Specify fixes with '%'. -
equalTo(
Object value) → PinMetaQuery -
Query against where value of pin meta target
is equal to
value
. -
greaterThan(
Object value) → PinMetaQuery -
Query against where value of pin meta target
is greater than
value
. -
lessThan(
Object value) → PinMetaQuery -
Query against where value of pin meta target
is less than
value
. -
match(
RegExp regex, [bool ignoreCase = false]) → PinMetaQuery -
Query against where value of pin meta matching
with
regex
is non null. IfignoreCase
is true, regex will match content with argument option 'i'. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notContain(
Object value) → PinMetaQuery -
Query against where value of pin meta target
does not contain
value
. Specify fixes with '%'. -
notEqualTo(
Object value) → PinMetaQuery -
Query against where value of pin meta target
is not equal to
value
. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited