categories property

  1. @override
ObservableList<CategoryWeebi> get categories
inherited

not used, will only come handy if categories search is implemented to reuse same buffer logic as with calibresFull

Implementation

@override
ObservableList<CategoryWeebi> get categories {
  _$categoriesAtom.reportRead();
  return super.categories;
}
  1. @override
set categories (ObservableList<CategoryWeebi> value)
inherited

not used, will only come handy if categories search is implemented to reuse same buffer logic as with calibresFull

Implementation

@override
set categories(ObservableList<CategoryWeebi> value) {
  _$categoriesAtom.reportWrite(value, super.categories, () {
    super.categories = value;
  });
}