AjFlutterAppspPushPlugin.h 621 B

12345678910111213141516171819202122
  1. //
  2. // AjFlutterAppspPushPlugin.h
  3. // PushDemo
  4. //
  5. // Created by zfl
  6. // Copyright © 2018 anji-plus 安吉加加信息技术有限公司 http://www.anji-plus.com. All rights reserved.
  7. //
  8. #import <Flutter/Flutter.h>
  9. @interface AjFlutterAppspPushPlugin : NSObject<FlutterPlugin>
  10. @property (nonatomic, copy) NSString *host;
  11. @property (nonatomic, copy) NSString *appspAppKey;
  12. @property (nonatomic, copy) NSString *appspSecretKey;
  13. @property (nonatomic, copy) NSString *jpushAppKey;
  14. @property (nonatomic, copy) NSString *jchannel;
  15. @property FlutterMethodChannel *channel;
  16. + (void)setDataWithDic:(NSDictionary *)dic;
  17. @end