We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9769f commit ee26c9cCopy full SHA for ee26c9c
ios/Classes/InstabugFlutterPlugin.m
@@ -2,6 +2,17 @@
2
#import "Instabug.h"
3
4
@implementation InstabugFlutterPlugin
5
+
6
++ (NSDictionary *) constants {
7
+ return @{
8
+ @"InvocationEvent.shake": @(IBGInvocationEventShake),
9
+ @"InvocationEvent.screenshot": @(IBGInvocationEventScreenshot),
10
+ @"InvocationEvent.twoFingersSwipeLeft": @(IBGInvocationEventTwoFingersSwipeLeft),
11
+ @"InvocationEvent.floatingButton": @(IBGInvocationEventFloatingButton),
12
+ @"InvocationEvent.none": @(IBGInvocationEventNone),
13
+ };
14
+};
15
16
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
17
FlutterMethodChannel* channel = [FlutterMethodChannel
18
methodChannelWithName:@"instabug_flutter"
0 commit comments