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

13 lines
150 B
Dart
Raw Normal View History

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