MsgAddr.single constructor

MsgAddr.single(
  1. NetworkAddress address
)

Create address message with single address

Implementation

factory MsgAddr.single(NetworkAddress address) {
  return MsgAddr(addressList: [address]);
}