ContactInfo constructor

const ContactInfo({
  1. required SolAddress pubkey,
  2. required String? gossip,
  3. required String? tpu,
  4. required String? rpc,
  5. required String? version,
})

Implementation

const ContactInfo(
    {required this.pubkey,
    required this.gossip,
    required this.tpu,
    required this.rpc,
    required this.version});