update method
Rebuilds GetBuilder each time you call update();
Can take a List of ids, that will only update the matching
GetBuilder( id: ),
ids can be reused among GetBuilders like group tags.
The update will only notify the Widgets, if condition is true.
Implementation
@override
void update([List<Object>? ids, bool condition = true]) {
if (!_dispose) {
super.update(ids, condition);
}
}