removeCustomId method
Removes the custom id, if present.
Implementation
Future<void> removeCustomId() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.remove(_customIdKey);
}
Removes the custom id, if present.
Future<void> removeCustomId() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.remove(_customIdKey);
}