flutter_push_plugin.h
905 Bytes
#ifndef FLUTTER_PLUGIN_FLUTTER_PUSH_PLUGIN_H_
#define FLUTTER_PLUGIN_FLUTTER_PUSH_PLUGIN_H_
#include <flutter/method_channel.h>
#include <flutter/plugin_registrar_windows.h>
#include <memory>
namespace flutter_push {
class FlutterPushPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
FlutterPushPlugin();
virtual ~FlutterPushPlugin();
// Disallow copy and assign.
FlutterPushPlugin(const FlutterPushPlugin&) = delete;
FlutterPushPlugin& operator=(const FlutterPushPlugin&) = delete;
// Called when a method is called on this plugin's channel from Dart.
void HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
};
} // namespace flutter_push
#endif // FLUTTER_PLUGIN_FLUTTER_PUSH_PLUGIN_H_