In my Flutter app (for Android an iOS), I want to clear either all the clipboard entries or at least the last text I copied to the clipboard (so the last entry). For the moment, I'm only focusing on the Android part.
I took a look on the Clipboard documentation, but I can't find any method to clear any entry.
I also tried to clear the clipboard in Kotlin, as explained here, but it has no effect on my Samsung Galaxy M51 (API 31).
Is it then possible to clear anything in the clipboard on Android, and if yes, how?
Thanks.