args property
The arguments to pass to the provided function. This is only valid if
the func
parameter is specified. These arguments must be
JSON-serializable.
Implementation
List<Object>? get args =>
_wrapped.args?.toDart.cast<JSAny>().map((e) => e.dartify()!).toList();