createID abstract method

ID createID({
  1. String? name,
  2. required Address address,
  3. String? terminal,
})

Creates an ID from explicit component values.

name is the entity name (optional). address is the required core address component (cannot be null). terminal is the optional terminal/location (RESERVED).

Returns a new ID instance with the specified components.

Implementation

ID createID({String? name, required Address address, String? terminal});