You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 rivejä
590 B

  1. #import "PusherClientPlugin.h"
  2. #if __has_include(<pusher_client/pusher_client-Swift.h>)
  3. #import <pusher_client/pusher_client-Swift.h>
  4. #else
  5. // Support project import fallback if the generated compatibility header
  6. // is not copied when this plugin is created as a library.
  7. // https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
  8. #import "pusher_client-Swift.h"
  9. #endif
  10. @implementation PusherClientPlugin
  11. + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
  12. [SwiftPusherClientPlugin registerWithRegistrar:registrar];
  13. }
  14. @end