chore(stream_chat_flutter_core): use local stream_chat

This commit is contained in:
Felix Angelov
2021-03-24 00:15:54 -05:00
parent 537bcf1abb
commit f1c10a451f
2 changed files with 4 additions and 4 deletions
@@ -355,7 +355,7 @@ class StreamChannelState extends State<StreamChannel> {
var message = snapshot.error.toString();
if (snapshot.error is DioError) {
final dioError = snapshot.error as DioError;
if (dioError.type == DioErrorType.RESPONSE) {
if (dioError.type == DioErrorType.response) {
message = dioError.message;
} else {
message = 'Check your connection and retry';