argumentsKeywords property
Keyword arguments, decoded on first access when necessary.
Implementation
Map<String, dynamic>? get argumentsKeywords {
_decodePackedPayloadIfNeeded();
if (_argumentsKeywords == null &&
_argumentsKeywordsBytes != null &&
_argumentsKeywordsDecoder != null) {
_argumentsKeywords = _argumentsKeywordsDecoder!(_argumentsKeywordsBytes!);
}
return _argumentsKeywords;
}