mangayomi/lib/utils/extensions/stream.dart
kodjomoustapha 6c4e2eaeee +
2024-09-03 12:02:25 +01:00

8 lines
257 B
Dart

import 'package:flutter/material.dart';
extension StreamBuilderExtension<T> on Stream<T> {
StreamBuilder<T> toStreamBuilder(
Widget Function(BuildContext, AsyncSnapshot<T>) builder) {
return StreamBuilder(stream: this, builder: builder);
}
}