Initiator constructor

Initiator({
  1. String? type,
  2. String? serviceEndpoint,
  3. required String socketId,
})

Constructs an Initiator object.

The type is the type of the initiator. The serviceEndpoint is the service endpoint of the initiator. The socketId is the socket ID of the initiator.

Implementation

Initiator({this.type, this.serviceEndpoint, required this.socketId});