NSID.create constructor

NSID.create(
  1. String authority,
  2. String name
)

Returns the new instance of parsed NSID based on authority and name.

Implementation

factory NSID.create(final String authority, final String name) =>
    ParsedNSID([...authority.split('.').reversed, name].join('.'));