Skip to content

Instantly share code, notes, and snippets.

View anilghimire133's full-sized avatar
💭
I may be slow to respond.

anil ghimire anilghimire133

💭
I may be slow to respond.
View GitHub Profile
@kwaiks
kwaiks / dio_helper.dart
Created January 27, 2021 10:53
Flutter Dio Interceptor for refresh token
class DioHelper {
final Dio dio;
DioHelper({@required this.dio});
final CustomSharedPreferences _customSharedPreferences =
new CustomSharedPreferences();
static String _baseUrl = BASE_URL;
String token = "";
void initializeToken(String savedToken) {