Skip to content

Commit d6ee180

Browse files
committed
📝 Removed rightEdgePan Enum from InvocataionEvent
1 parent f3e2cd9 commit d6ee180

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/instabug_flutter.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'dart:async';
22

33
import 'package:flutter/services.dart';
44

5-
enum InvocationEvent { shake, screenshot, twoFingersSwipeLeft, rightEdgePan, floatingButton, none }
5+
enum InvocationEvent { shake, screenshot, twoFingersSwipeLeft, floatingButton, none }
66

77
class InstabugFlutter {
88
static const MethodChannel _channel =
@@ -19,6 +19,7 @@ class InstabugFlutter {
1919
invocationEventsStrings.add(e.toString());
2020
});
2121
Map params = {'token': token, 'invocationEvents': invocationEventsStrings};
22-
await _channel.invokeMethod('startWithToken:invocationEvents', params);
22+
await _channel.invokeMethod('startWithToken:invocationEvents:', params);
2323
}
24+
2425
}

0 commit comments

Comments
 (0)