I get this error for init method in my flutter app.
MissingPluginException (MissingPluginException(No implementation found for method init on channel dropbox))
this is my code
void main(List<String> args) async {
WidgetsFlutterBinding.ensureInitialized();
await Dropbox.init("myapp", "key", "secret");
await Dropbox.authorize();
accessToken = await Dropbox.getAccessToken();
if (accessToken != null) {
await Dropbox.authorizeWithAccessToken(accessToken!);
}
runApp(const ProviderScope(child: MyApp()));
}
I get this error for init method in my flutter app.
MissingPluginException (MissingPluginException(No implementation found for method init on channel dropbox))
this is my code