dispose method
Implementation
@override
Future<void> dispose() async {
final prefs = this.prefs == null
? await SharedPreferences.getInstance()
: this.prefs!;
await prefs.remove("$_userId-${ConstantKeys.apiKey}");
await prefs.remove("$_userId-${ConstantKeys.userId}");
}