rebuild method

void rebuild([
  1. void fn()?
])

Implementation

void rebuild([void Function()? fn]){
  delegateState?.rebuild(fn ?? () {});
}