12 lines
430 B
Dart
12 lines
430 B
Dart
class ConstantString {
|
|
static const String appName = 'VitanSchool';
|
|
static const int blockId = 96;
|
|
static List<String> sentryIgnores = <String>[
|
|
"DioError [DioErrorType.connectTimeout]: Connecting timed out [180000ms]",
|
|
"SocketException",
|
|
"WebSocket closed with status code: 1002",
|
|
"Null check operator used on a null value",
|
|
"type '_CastError' is not a subtype of type 'Exception' in type cast",
|
|
];
|
|
}
|