jpush_flutter2 0.0.1%2B4

SDKflutter
Platformandroidios

JPush for Flutter. JPush can be used in flutter, please refer to [more configuration](https://www.jiguang.cn/push).

JPush Flutter

Pub Version

Getting Started

JPushFlutter.setDebugMode(debugMode: true);
JPushFlutter.init('', 'developer-default');

JPushFlutter.setMethodCallHandler((call) async {
  if (call.method == 'notificationClick') {
    if (kDebugMode) {
      print('setMethodCallHandler: ${call.arguments}');
    }
  }
});