// // BMFMapViewHandle.h // flutter_bmfmap // // Created by zbj on 2020/2/11. // #import @class BMFMapView; NS_ASSUME_NONNULL_BEGIN @protocol BMFMapViewHandler @required /// mapView (弱引用) @property(nonatomic, weak) BMFMapView *_mapView; /// 创建协议实例 - (NSObject *)initWith:(BMFMapView *)mapView; /// flutter --> ios - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result; @end NS_ASSUME_NONNULL_END