beginRefreshing method
Tells the controller that a refresh operation was started programmatically.
Call this method when an external event source triggers a programmatic refresh of your scrolling view. This method updates the state of the refresh control to reflect the in-progress refresh operation. When the refresh operation ends, be sure to call the endRefreshing method to return the controller to its default state.
Officially Supported Platforms/Implementations:
- Android native WebView
- iOS
Implementation
Future<void> beginRefreshing() {
throw UnimplementedError(
'beginRefreshing is not implemented on the current platform');
}