iosWebViewFix/flutter_inappwebview_ios/ios/Classes/PullToRefresh/PullToRefreshDelegate.swift

15 lines
278 B
Swift

//
// PullToRefreshDelegate.swift
// flutter_inappwebview
//
// Created by Lorenzo Pichilli on 04/03/21.
//
import Foundation
public protocol PullToRefreshDelegate {
func enablePullToRefresh()
func disablePullToRefresh()
func isPullToRefreshEnabled() -> Bool
}