arguments property

A get arguments

Implementation

A get arguments {
  if (!_argumentsInitialized) {
    throw AssertionError(
      'arguments not initialized for $providerLabel, make sure to call $providerLabel.setArguments(...) before read',
    );
  }

  return _arguments;
}