12345678910111213141516171819 |
- //
- // iOSPluginRegistrant.h
- // Runner
- //
- // Created by ss on 2024/9/9.
- //
- #import <Foundation/Foundation.h>
- #import <Flutter/Flutter.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface iOSPluginRegistrant : NSObject
- + (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
- @end
- NS_ASSUME_NONNULL_END
|