forked from lxm_flutter/FlutterUnit
17 lines
357 B
Dart
17 lines
357 B
Dart
import 'package:dio/dio.dart';
|
|
|
|
/// create by 张风捷特烈 on 2020/4/28
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
///
|
|
class HeaderInterceptors extends InterceptorsWrapper {
|
|
@override
|
|
onRequest(RequestOptions options) async {
|
|
///超时
|
|
options.connectTimeout = 30000;
|
|
options.receiveTimeout = 30000;
|
|
|
|
return options;
|
|
}
|
|
}
|