refreshAndApply method

void refreshAndApply({
  1. bool apply = true,
})

Implementation

void refreshAndApply({bool apply = true}) {
  _refresh();
  if (apply) Future.delayed(const Duration(milliseconds: 200), this.apply);
}