MissingPluginException(在通道plugins.flutter.io/shared_preferences上未找到方法getAll的实现)

时间:2020-06-23 07:12:04

标签: flutter

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;
  });

0 个答案:

没有答案