sp_util.dart 245 B

123456789101112
  1. import 'package:shared_preferences/shared_preferences.dart';
  2. class SpUtil {
  3. static SpUtil singleton = new SpUtil();
  4. static SharedPreferences _sharedPreferences;
  5. static SpUtil getInstance() {
  6. return singleton;
  7. }
  8. void init() {}
  9. }