MethodChannelFlutterLinkidMmp constructor
MethodChannelFlutterLinkidMmp()
Implementation
MethodChannelFlutterLinkidMmp() : super() {
methodChannel.setMethodCallHandler((call) async {
// you can get hear method and passed arguments with method
print("method ${call.method}");
if (call.method == "onDeepLink") {
_deepLinkHandler?.onReceivedDeepLink(call.arguments);
}
});
}