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