79336517

Date: 2025-01-07 15:35:18
Score: 0.5
Natty:
Report link

This package aad_oauth has a dependency name flutter_secure_storage enter image description here And flutter_secure_storage have a native method name delete

So I guess when you use oauth.login() or oauth.getAccessToken(), the native method delete will be called, but somehow in native code, this method didn't exist, that's why you got the error

MissingPluginException(No implementation found for method delete on channel plugins.it_nomads.com/flutter_secure_storage)

So let's search keyword to check whether your project downloaded the dependency success

Native method "delete" on Android: enter image description here

on iOS: enter image description here

If your project doesn't have them, you may try clean flutter or pub cache, then re-sync the dependencies.

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Duy Tran