Message constructor
Message(
- List<
int> value, { - MessageAttributes? attributes,
- List<
int> ? key,
Creates new Message.
Implementation
factory Message(List<int> value, {MessageAttributes? attributes, List<int>? key}) {
attributes ??= MessageAttributes();
return Message._(attributes, key, value);
}