putInternal method

void putInternal(
  1. AFConfigurationItem entry,
  2. dynamic value
)

This should only be used for validated values of the correct type, you should use setValue in most cases.

Implementation

void putInternal(AFConfigurationItem entry, dynamic value) {
  values[entry] = value;
}