mop-flutter-sdk/ios/Classes/MopPlugin.h

11 lines
270 B
Dart
Raw Normal View History

2020-02-27 17:21:45 +08:00
#import <Flutter/Flutter.h>
@interface MopEventStream : NSObject <FlutterStreamHandler>
- (void)send:(NSString *)channel event:(NSString *)event body:(id)body;
@end
@interface MopPlugin : NSObject <FlutterPlugin>
@property MopEventStream *mopEventStreamHandler;
@end