THATMobile/lib/core/constants/constant_string.dart
2026-02-26 10:39:42 +07:00

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",
];
}