AbstractMessageWithPayload constructor
Creates a message with optional positional and keyword arguments.
Implementation
AbstractMessageWithPayload({
List<dynamic>? arguments,
Map<String, dynamic>? argumentsKeywords,
}) {
this.arguments = arguments;
this.argumentsKeywords = argumentsKeywords;
}