shared_preferences:^ 0.5.3 + 4 已经在使用
SharedPreferences.setMockInitialValues({});
const MethodChannel('plugins.flutter.io/shared_preferences')
.setMockMethodCallHandler((MethodCall methodCall) async {
if (methodCall.method == 'getAll') {
return <String, dynamic>{}; // set initial values here if desired
}
return null;
});