SortOption<T> class

Sorting options

Annotations
  • @JsonSerializable(includeIfNull: false)

Constructors

SortOption(String field, {int direction = SortOption.DESC, Comparator<T>? comparator})
Creates a new SortOption instance
const
SortOption.fromJson(Map<String, dynamic> json)
Create a new instance from a json
factory

Properties

comparator Comparator<T>?
Sorting field Comparator required for offline sorting
final
direction int
A sorting direction
final
field String
A sorting field name
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialize model to json
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

ASC → const int
Ascending order
DESC → const int
Descending order