reboot method

dynamic reboot()

Reboot your widget.

This method will re-call the boot command to 'reboot' your widget.

Implementation

reboot() async {
  awaitData(
    perform: () async {
      await boot();
    },
    shouldSetStateBefore: false,
  );
}