recordStream method

  1. @override
Stream<RType?>? recordStream(
  1. KType recordId, {
  2. bool immediate = true,
})
override

@param: immediate Whether you want this stream to include the current value. If false, only updates will be streamed.

Implementation

@override
Stream<RType?>? recordStream(KType recordId, {bool immediate = true}) =>
    delegate.recordStream(recordId, immediate: true);