slot method
- Widget builder(
- BuildContext context,
- T value
Create a basic Slot widget from this signal.
Implementation
Widget slot(Widget Function(BuildContext context, T value) builder) {
return Slot<T>(connect: this, to: builder);
}
Create a basic Slot widget from this signal.
Widget slot(Widget Function(BuildContext context, T value) builder) {
return Slot<T>(connect: this, to: builder);
}