mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
14 lines
300 B
Dart
14 lines
300 B
Dart
|
import 'package:isar/isar.dart';
|
||
|
|
||
|
// Used in Isar db and stored there as int indexes so adding/removing values
|
||
|
// in this definition should be done extremely carefully in production
|
||
|
enum LogLevel with IsarEnum<String> {
|
||
|
Info,
|
||
|
Warning,
|
||
|
Error,
|
||
|
Fatal;
|
||
|
|
||
|
@override
|
||
|
String get value => name;
|
||
|
}
|