MethodChannelFlutterAndroidLocalNotification constructor

MethodChannelFlutterAndroidLocalNotification()

Implementation

MethodChannelFlutterAndroidLocalNotification(){
  methodChannel.setMethodCallHandler((result)async{
    switch(result.method){
      case "clickNotificationCallBack":
        _callback?.clickNotificationCallback.call(result.arguments["notificationType"]);
        break;
    }
  });
}