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 2f0172b commit c77a98eCopy full SHA for c77a98e
android/src/main/java/com/pspdfkit/flutter/pspdfkit/PspdfkitPlugin.java
@@ -77,7 +77,7 @@ private PspdfkitPlugin(Registrar registrar) {
77
* Plugin registration.
78
*/
79
public static void registerWith(Registrar registrar) {
80
- MethodChannel channel = new MethodChannel(registrar.messenger(), "pspdfkit");
+ final MethodChannel channel = new MethodChannel(registrar.messenger(), "pspdfkit");
81
PspdfkitPlugin pspdfkitPlugin = new PspdfkitPlugin(registrar);
82
channel.setMethodCallHandler(pspdfkitPlugin);
83
eventDispatcher.setChannel(channel);
0 commit comments