setRefreshPlatformView method

void setRefreshPlatformView(
  1. dynamic onRefreshPlatformViewCallback()
)

Implementation

void setRefreshPlatformView(Function() onRefreshPlatformViewCallback) {
  if(this._onRefreshPlatformViewCallback == null) {
    this._onRefreshPlatformViewCallback = onRefreshPlatformViewCallback;
  }

  this._onRefreshPlatformViewCallback!();
}