getParticleNode static method
Implementation
static String getParticleNode(int id, String projectId, String projectKey) {
return Uri(
scheme: 'https',
host: 'rpc.particle.network',
path: 'evm-chain',
queryParameters: {
'chainId': id.toString(),
'projectUuid': projectId,
'projectKey': projectKey,
}).toString();
}