selectAccount method

dynamic selectAccount({
  1. required String walletId,
  2. required int accountId,
})

Implementation

selectAccount({required String walletId, required int accountId}) {
  state = state.copyWith(
    selected: (
      walletId: walletId,
      accountId: accountId,
    ),
  );
}