flutterMethod method
Implementation
Future<dynamic> flutterMethod(MethodCall methodCall) async {
switch (methodCall.method) {
case 'onNotificationClick':
notifyClickListener(methodCall.arguments);
break;
default:
break;
}
}