getUserProps static method

Future<String?> getUserProps()

Implementation

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