update method

void update()

Implementation

void update() {
  WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
    if(type != UFUScreen.type) {
      UFUScreen.type = type;
      onUpdate?.call();
    }
  });
}