childrenOf method

DisposableFuture<C> childrenOf(
  1. P parent, [
  2. Object? filterQuery
])

Returns the children of the parent and filter the results based of the query if supported.

Implementation

DisposableFuture<C> childrenOf(P parent, [Object? filterQuery]) =>
    DisposableFuture.fromValue(const [] as C);