read method

T? read(
  1. bool silent
)

Reads the current state of all fields.

When silent is true, performs minimal validation. When false, performs full validation including state error checking.

Implementation

T? read(bool silent) {
  if (silent) {
    return _readSilent();
  } else {
    return _readSound();
  }
}