getFcmRegId static method

Future<String?> getFcmRegId()

Implementation

static Future<String?> getFcmRegId() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getString("FCM_REG_ID") ?? null;
}