feat: Increase default timeout duration for API requests from 10 to 30 seconds

This commit is contained in:
Vaibhav Surve 2025-06-19 11:39:52 +05:30
parent f834422c4e
commit d1305e1dba

View File

@ -11,7 +11,7 @@ import 'package:marco/helpers/services/storage/local_storage.dart';
final Logger logger = Logger();
class ApiService {
static const Duration timeout = Duration(seconds: 10);
static const Duration timeout = Duration(seconds: 30);
static const bool enableLogs = true;
static const Duration extendedTimeout = Duration(seconds: 60);