copyWith method
Implementation
SessionStatus copyWith({
int? chainId,
List<String>? accounts,
int? networkId,
String? rpcUrl,
}) {
return SessionStatus(
chainId: chainId ?? this.chainId,
accounts: accounts ?? this.accounts,
networkId: networkId ?? this.networkId,
rpcUrl: rpcUrl ?? this.rpcUrl,
);
}