This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
LocalSpend-Tracker/lib/common/functions/get_token.dart
Felix 4ec386019d
cleanup, 'recurring' now is submitted too
also getting ready to add categories
2019-07-16 12:59:57 +01:00

8 lines
232 B
Dart

import 'package:shared_preferences/shared_preferences.dart';
getToken() async {
SharedPreferences preferences = await SharedPreferences.getInstance();
String getToken = preferences.getString("LastToken");
return getToken;
}