live<R> method
Implementation
@override
Stream<Response<UserEntity>> live<R>(
String id, {
R? Function(R parent)? source,
}) {
try {
return repository.live(id, source);
} catch (_) {
return Stream.error("$_");
}
}
@override
Stream<Response<UserEntity>> live<R>(
String id, {
R? Function(R parent)? source,
}) {
try {
return repository.live(id, source);
} catch (_) {
return Stream.error("$_");
}
}