Describe the problem you discovered
I think the action parameters are heavy to use.
For example, I suggest doing :
final getBlockNumberReturnType = await wagmi.Core.getBlockNumber(
chainId: account!.chain!.id,
cacheTime: 4000,
);
instead of :
final getBlockNumberReturnType = await wagmi.Core.getBlockNumber(
wagmi.GetBlockNumberParameters(
chainId: account!.chain!.id,
cacheTime: 4000,
),
);
Describe the problem you discovered
I think the action parameters are heavy to use.
For example, I suggest doing :
instead of :