watch method

Widget watch(
  1. LiveValuesWidgetBuilder<LiveData> builder, {
  2. Key? key,
})

Implementation

Widget watch(LiveValuesWidgetBuilder<LiveData> builder, {Key? key}) {
  return MultiLiveDataBuilder(
    key: key,
    observe: this,
    builder: (context, _) => builder(),
  );
}