TimeComparisonResult enum Null safety
Used as result type for time comparison.
The enumeration values of before, same and after are self-explanatory. overlapping is used in situations where the compared times are time spans rather than moments, meaning that the time spans may overlap partially or completely.
Constructors
- TimeComparisonResult()
-
const
Values
- before → const TimeComparisonResult
-
TimeComparisonResult()
- same → const TimeComparisonResult
-
TimeComparisonResult()
- after → const TimeComparisonResult
-
TimeComparisonResult()
- overlapping → const TimeComparisonResult
-
TimeComparisonResult()
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
TimeComparisonResult> -
A constant List of the values in this enum, in order of their declaration.
[before, same, after, overlapping]