29 lines
749 B
Objective-C
29 lines
749 B
Objective-C
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#import "GeneratedPluginRegistrant.h"
|
|
|
|
#if __has_include(<connectivity_plus/ConnectivityPlusPlugin.h>)
|
|
#import <connectivity_plus/ConnectivityPlusPlugin.h>
|
|
#else
|
|
@import connectivity_plus;
|
|
#endif
|
|
|
|
#if __has_include(<path_provider_ios/FLTPathProviderPlugin.h>)
|
|
#import <path_provider_ios/FLTPathProviderPlugin.h>
|
|
#else
|
|
@import path_provider_ios;
|
|
#endif
|
|
|
|
@implementation GeneratedPluginRegistrant
|
|
|
|
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
|
|
[ConnectivityPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"ConnectivityPlusPlugin"]];
|
|
[FLTPathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTPathProviderPlugin"]];
|
|
}
|
|
|
|
@end
|