getIdApple static method

Future<String?> getIdApple()

Implementation

static Future<String?> getIdApple() async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  return pref.getString(idUserApple);
}