storeUUID function

dynamic storeUUID(
  1. String uuid
)

Implementation

storeUUID(String uuid) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.setString("DEFAULT_WOOSIGNAL_UUID", uuid.toString());
}