#ifndef FLUTTER_PLUGIN_UNION_AD_SSGF_PLUGIN_H_ #define FLUTTER_PLUGIN_UNION_AD_SSGF_PLUGIN_H_ #include #include #include namespace union_ad_ssgf { class UnionAdSsgfPlugin : public flutter::Plugin { public: static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar); UnionAdSsgfPlugin(); virtual ~UnionAdSsgfPlugin(); // Disallow copy and assign. UnionAdSsgfPlugin(const UnionAdSsgfPlugin&) = delete; UnionAdSsgfPlugin& operator=(const UnionAdSsgfPlugin&) = delete; // Called when a method is called on this plugin's channel from Dart. void HandleMethodCall( const flutter::MethodCall &method_call, std::unique_ptr> result); }; } // namespace union_ad_ssgf #endif // FLUTTER_PLUGIN_UNION_AD_SSGF_PLUGIN_H_