Entrypoint constructor

Entrypoint({
  1. EntrypointType type_ = EntrypointType.none,
  2. String uri = '',
  3. Opcode opcodeGroupsFromServer = Opcode.NONE,
  4. Opcode opcodeGroupsToServer = Opcode.NONE,
  5. int priority = 0,
  6. String description = '',
  7. List<int> authTicket = const [],
  8. bool isUnreliable = false,
})

Implementation

Entrypoint({
    this.type_ = EntrypointType.none,
    this.uri = '',
    this.opcodeGroupsFromServer = Opcode.NONE,
    this.opcodeGroupsToServer = Opcode.NONE,
    this.priority = 0,
    this.description = '',
    this.authTicket = const [],
    this.isUnreliable = false,
});