如果您使用的是shared_preferences 0.2.4及更高版本,请使用
setMockInitialValues:
SharedPreferences.setMockInitialValues({}); // set initial values here if desired
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; });
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)