removeCustomId method

Future<void> removeCustomId()

Removes the custom id, if present.

Implementation

Future<void> removeCustomId() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.remove(_customIdKey);
}