create static method
Create an ID instance with the given components.
name is the entity name (optional).
address is the core address component (required).
terminal is the terminal identifier (optional).
Returns a new ID instance.
Implementation
static ID create({String? name, required Address address, String? terminal}) {
final helper = sharedAccountExtensions.idHelper;
return helper!.createID(name: name, address: address, terminal: terminal);
}