updateuseraccount method

void updateuseraccount()

Implementation

void updateuseraccount() {
  pingTimer = Timer.periodic(const Duration(seconds: 1), (timer) {
    //* *//
    final findCurrentAccountController = Get.find<AccountUserController>();
    //* *//

    currentUserAccounts.value =
        findCurrentAccountController.currentUserAccounts.value;
  });
}