watch method
Watch the entire model (object-wise) or specific fields
Implementation
Widget watch(Widget Function(T model) builder, {List<Symbol>? fields}) {
return ReactiveBuilder<T>(model: this, fields: fields, builder: builder);
}
Watch the entire model (object-wise) or specific fields
Widget watch(Widget Function(T model) builder, {List<Symbol>? fields}) {
return ReactiveBuilder<T>(model: this, fields: fields, builder: builder);
}