rebuildIf method

void rebuildIf(
  1. bool condition
)

Rebuilds the widget if condition is true.

Only rebuilds if the widget is mounted.

Implementation

void rebuildIf(bool condition) {
  if (condition) {
    rebuild();
  }
}