watch method
Implementation
Widget watch(LiveValueWidgetBuilder<T> builder, {Key? key}) {
return LiveDataBuilder(
key: key,
observe: this,
builder: (context, value, _) {
return builder(value);
},
);
}
Widget watch(LiveValueWidgetBuilder<T> builder, {Key? key}) {
return LiveDataBuilder(
key: key,
observe: this,
builder: (context, value, _) {
return builder(value);
},
);
}