selectUser method

void selectUser(
  1. UUserResponse? u
)

Implementation

void selectUser(UUserResponse? u) {
  selectedUser.value = u;
  if (u == null) {
    wallets.clear();
    txns.clear();
    summary.value = null;
    state.loaded();
    return;
  }
  read();
}