executableArgumentValues property
ConstructorArgumentValues
executableArgumentValues
getter/setter pairinherited
Arguments to be passed to the pod’s constructor.
Holder for constructor argument values used when instantiating a pod.
Supports both indexed arguments (explicit parameter positions) and generic arguments (matched by type). This class is essential for constructor injection in the dependency injection framework.
Example usage:
final cav = ConstructorArgumentValues();
cav.add(0, 'localhost', 'dart.core.String');
cav.add(8080, 'dart.core.int');
print(cav.getCount()); // 2
Implementation
ConstructorArgumentValues executableArgumentValues;