EmptyMessage constructor
EmptyMessage({
- String? id,
- String? replyUrl,
- List<
String> ? replyTo, - String? parentThreadId,
- String? threadId,
- String? from,
- List<
String> ? to, - DateTime? createdTime,
- DateTime? expiresTime,
- bool pleaseAck = false,
- FromPriorJWT? fromPrior,
- Map<
String, dynamic> ? additionalHeaders, - DidcommMessageTyp? typ,
- WebRedirect? webRedirect,
- ReturnRouteValue? returnRoute,
- List<
String> ? ack, - List<
Attachment> ? attachments,
Implementation
EmptyMessage(
{String? id,
super.replyUrl,
super.replyTo,
super.parentThreadId,
super.threadId,
super.from,
List<String>? super.to,
super.createdTime,
super.expiresTime,
super.pleaseAck,
super.fromPrior,
super.additionalHeaders,
super.typ,
super.webRedirect,
super.returnRoute,
super.ack,
super.attachments})
: super(
id: id ?? Uuid().v4(),
type: DidcommMessages.emptyMessage,
body: {});