19 lines
351 B
Swift
19 lines
351 B
Swift
|
//
|
||
|
// FlutterMethodCallDelegate.swift
|
||
|
// flutter_inappwebview
|
||
|
//
|
||
|
// Created by Lorenzo Pichilli on 15/12/2019.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public class FlutterMethodCallDelegate: NSObject {
|
||
|
public override init() {
|
||
|
super.init()
|
||
|
}
|
||
|
|
||
|
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
|
||
|
|
||
|
}
|
||
|
}
|