GetValueRequest constructor

GetValueRequest({
  1. String? messageId,
  2. Set<String> receivers = const <String>{},
  3. String sender = '',
  4. String? replyingToMessage,
  5. String? replyToEndpoint,
  6. String attributePath = '',
})

Creates a GetValueRequest with a newly generated UUIDv4 if messageId is not set.

Creates empty defaults for receivers, sender and attributePath.

Implementation

GetValueRequest(
    {String? messageId,
    Set<String> receivers = const <String>{},
    String sender = '',
    String? replyingToMessage,
    String? replyToEndpoint,
    this.attributePath = ''})
    : super(
          messageId: messageId,
          receivers: receivers,
          sender: sender,
          replyingToMessage: replyingToMessage,
          replyToEndpoint: replyToEndpoint);