19 lines
351 B
Swift
Executable File
19 lines
351 B
Swift
Executable File
//
|
|
// 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) {
|
|
|
|
}
|
|
}
|