fromComponents static method

ASN1IpAddress fromComponents(
  1. List<int> components, {
  2. int tag = IP_ADDRESS,
})

Create an ASN1IpAddress from a list of int IP Address octets e.g. 192, 168, 1, 1

Implementation

static ASN1IpAddress fromComponents(List<int> components,
        {int tag = IP_ADDRESS}) =>
    ASN1IpAddress(components, tag: tag);