arguments property
A
get
arguments
Implementation
A get arguments {
if (!_argumentsInitialized) {
throw AssertionError(
'arguments not initialized, make sure to call to yourProvider.setArguments(...) before',
);
}
return _arguments;
}