| 123456789101112131415161718192021 |
- //
- // AppEventChannel.h
- // sensor
- //
- // Created by MacBookPro on 2023/6/6.
- //
- #import <Foundation/Foundation.h>
- #import "SensorPlugin.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface AppEventChannel : NSObject
- -(instancetype) initWithNameMessge :(NSObject<FlutterPluginRegistrar>*) registrar : (NSString *)name;
- - (void)success:(id _Nullable) event;
- @end
- NS_ASSUME_NONNULL_END
|