stream property

  1. @override
Stream<DTO?> Function(User user) get stream
override

Returns a stream of data for the authenticated user.

Implementation

@override
Stream<DTO?> Function(User user) get stream =>
    (user) =>
        streamBuilder?.call(user, api, this) ??
        api.streamByDocIdWithConverter(id: user.uid);