Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
souramoo committed Jul 15, 2024
1 parent d10dbbf commit e93dd47
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/data/web_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ class WebClient {
print('GET: $url');

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
final client = http.Client();
Expand Down Expand Up @@ -102,7 +101,6 @@ class WebClient {
http.Response response;

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
if (multipartFiles != null) {
Expand Down Expand Up @@ -167,7 +165,6 @@ class WebClient {
http.Response response;

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
if (multipartFile != null) {
Expand Down Expand Up @@ -212,7 +209,6 @@ class WebClient {
print('Delete: $url');

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
final client = http.Client();
Expand Down

0 comments on commit e93dd47

Please sign in to comment.