Files
fcs/lib/domain/exceiptions/server_exceptions.dart

13 lines
152 B
Dart
Raw Normal View History

2020-08-27 22:32:40 +06:30
class ServerException {
@override
2021-09-10 14:27:38 +06:30
List<Object>? get props => null;
2020-08-27 22:32:40 +06:30
call() {
return null;
}
@override
2021-09-10 14:27:38 +06:30
bool? get stringify => null;
2020-08-27 22:32:40 +06:30
}