args

abstract val args: List<Any?>(source)

The runtime arguments passed to the intercepted function, in declaration order.

Each element corresponds to the matching MethodSignature.parameter entry. Elements may be null when the corresponding parameter type is nullable.

Type safety: Cast elements to the expected type before use. For generic parameters, the runtime type reflects type erasure — check MethodParameter.typeName for the compile-time type name.