removeAll method
Implementation
@override
FutureOr<void> removeAll() async {
(await SharedPreferencesAsync().getKeys())
.forEach((key) async {
if (key.startsWith(_INSTANCE_FOR) || key.startsWith(_TOKEN_FOR)) {
await SharedPreferencesAsync().remove(key);
}
}
);
}