field method
Implementation
Observable<String> field(String name) {
throwIfDisposed('get field');
return _fields[name] ?? (throw Exception('Field $name not found'));
}
Observable<String> field(String name) {
throwIfDisposed('get field');
return _fields[name] ?? (throw Exception('Field $name not found'));
}