This commit is contained in:
nico
2024-05-15 17:56:52 +02:00
4 changed files with 156 additions and 135 deletions

View File

@@ -32,11 +32,11 @@ class Methods {
// ignore: unused_catch_clause
} on DioException catch (e) {
_errorCode = response.statusCode;
print('is hier. var: ${_errorCode}');
print('is hier. var: $_errorCode');
return;
}
_errorCode = response.statusCode;
print('is hier 2. var: ${_errorCode}');
print('is hier 2. var: $_errorCode');
}
}