getUUID function

Future<String?> getUUID()

Implementation

Future<String?> getUUID() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  String? uuid = prefs.getString("DEFAULT_WOOSIGNAL_UUID");
  return uuid;
}