iOSPluginRegistrant.h 310 B

12345678910111213141516171819
  1. //
  2. // iOSPluginRegistrant.h
  3. // Runner
  4. //
  5. // Created by ss on 2024/9/9.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <Flutter/Flutter.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface iOSPluginRegistrant : NSObject
  11. + (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
  12. @end
  13. NS_ASSUME_NONNULL_END