mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
12 lines
169 B
Dart
12 lines
169 B
Dart
enum FetchMode {
|
|
lazy('Lazy'),
|
|
eager('Eager');
|
|
|
|
const FetchMode(this.description);
|
|
|
|
final String description;
|
|
|
|
@override
|
|
String toString() => description;
|
|
}
|