getBootpayUUID static method

Future<String> getBootpayUUID()

Implementation

static Future<String> getBootpayUUID() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getString('uuid') ?? Uuid().v1();
}