mangayomi-mirror/lib/utils/extensions/stream.dart
Moustapha Kodjo Amadou 3e401c8af2 dart format
2025-02-23 15:31:49 +01:00

9 lines
259 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);
}
}