DIDAuthMessage constructor
DIDAuthMessage({})
Constructs a DIDAuthMessage instance.
Implementation
DIDAuthMessage({
required this.id,
required this.from,
required this.to,
this.createdTime,
this.expiresTime,
required this.context,
this.socketId,
required this.peerSocketId,
}) {
id = id;
from = from;
to = to;
createdTime = createdTime;
expiresTime = expiresTime;
context = context;
socketId = socketId;
peerSocketId = peerSocketId;
}