SearchQueryType enum
Which part of the message should be searched
Values
- subject → const SearchQueryType
-
Search for matching
Subject
header - from → const SearchQueryType
-
Search for matching
From
header - to → const SearchQueryType
-
Search for matching
To
header - body → const SearchQueryType
-
Search for matches in the body of the message (a very resource intensive search, not every mail provider supports this)
- allTextHeaders → const SearchQueryType
-
Search in all common headers (not every mail provider supports this)
- fromOrSubject → const SearchQueryType
-
Search in either
FROM
or inSUBJECT
.Specifically useful in cases where the mail provider does not support
allTextHeaders
- toOrSubject → const SearchQueryType
-
Search in either
TO
or inSUBJECT
.Specifically useful in cases where the mail provider does not support
allTextHeaders
- fromOrTo → const SearchQueryType
-
Search for matching
TO
orFROM
headers
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
SearchQueryType> - A constant List of the values in this enum, in order of their declaration.