getValue method

String getValue(
  1. String name
)

Implementation

String getValue(String name) {
  throwIfDisposed('get value');
  return _fields[name]?.value ?? '';
}