getBootpayUserId static method

Future<String> getBootpayUserId()

Implementation

static Future<String> getBootpayUserId() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getString('bootpay_user_id') ?? '';
}