Package conflict
This package does not work with flutter_local_notification package.
If we use this package and then use any function from flutter_local_notification, I get the following error. I/flutter ( 6490): MissingPluginException(No implementation found for method show on channel dexterous.com/flutter/local_notifications)
import com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin;
and add this line in your Application class in MainActivity.java or your Application.java in your project java side registerwith method body:
flutterLocalNotificationsPlugin.registerWith(registry.registrarFor("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin"));
then it is ok.