mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
13 lines
300 B
Dart
13 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;
|
|
}
|