17 lines
268 B
Dart
17 lines
268 B
Dart
|
//
|
||
|
// FlutterMethodChannelHandler.h
|
||
|
// Runner
|
||
|
//
|
||
|
// Created by Haley on 2023/4/10.
|
||
|
//
|
||
|
|
||
|
#import <Flutter/Flutter.h>
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface FlutterMethodChannelHandler : NSObject
|
||
|
|
||
|
- (instancetype)initWithMessenger:(NSObject *)messenger;
|
||
|
|
||
|
@end
|
||
|
|