ReadingConfiguration constructor

ReadingConfiguration(
  1. dynamic forceReading,
  2. dynamic forceReadingIfSupported,
  3. dynamic timeoutInSeconds
)

Implementation

ReadingConfiguration(
    forceReading, forceReadingIfSupported, timeoutInSeconds) {
  this.forceReading = forceReading;
  this.forceReadingIfSupported = forceReadingIfSupported;
  this.timeoutInSeconds = timeoutInSeconds;
}