argumentsKeywords property

Map<String, dynamic>? get argumentsKeywords

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;
}
set argumentsKeywords (Map<String, dynamic>? value)

Implementation

set argumentsKeywords(Map<String, dynamic>? value) {
  _argumentsKeywords = value;
  _encodedArgumentsKeywords = null;
  _argumentsKeywordsDecoder = null;
  _pptPayloadDecoded = false;
  _retainedLazyPayload = null;
}