arguments property

List? get arguments

Positional arguments, decoded on first access when necessary.

Implementation

List<dynamic>? get arguments {
  _decodePackedPayloadIfNeeded();
  if (_arguments == null &&
      _argumentsBytes != null &&
      _argumentsDecoder != null) {
    _arguments = _argumentsDecoder!(_argumentsBytes!);
  }
  return _arguments;
}