streamById method

  1. @override
Stream<T?> streamById(
  1. String? id, [
  2. Map? args
])
override

Implementation

@override
Stream<T?> streamById(String? id, [Map? args]) {
  return (dbSource as StreamByIdDbSource).streamById(id, args) as Stream<T>;
}