AppEventChannel.h 377 B

123456789101112131415161718192021
  1. //
  2. // AppEventChannel.h
  3. // sensor
  4. //
  5. // Created by MacBookPro on 2023/6/6.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "SensorPlugin.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AppEventChannel : NSObject
  11. -(instancetype) initWithNameMessge :(NSObject<FlutterPluginRegistrar>*) registrar : (NSString *)name;
  12. - (void)success:(id _Nullable) event;
  13. @end
  14. NS_ASSUME_NONNULL_END