update method

  1. @override
void update([
  1. List<Object>? ids,
  2. bool condition = true
])
override

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 (!disposed) {
    super.update();
  } else {
    super.update(ids, disposed);
  }
}