syncToBackpack static method

dynamic syncToBackpack()

Sync the auth user data to the backpack.

Implementation

static syncToBackpack() async {
  dynamic data = await NyStorage.readJson(key());
  Backpack.instance.save(key(), data);
}