changes property

List<Change>? get changes

List of changes to entries within the observed directory (including the entry itself)

Implementation

List<Change>? get changes => _wrapped.changes?.toDart
    .cast<$js.Change>()
    .map((e) => Change.fromJS(e))
    .toList();
set changes (List<Change>? v)

Implementation

set changes(List<Change>? v) {
  _wrapped.changes = v?.toJSArray((e) => e.toJS);
}