Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 12af445

Browse files
authored
Merge pull request #7 from DutchCodingCompany/fix/unit_parsing_error
Fix error when returning Unit
2 parents 942797a + efe9b13 commit 12af445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/kotlin/nl/dutchcodingcompany/pin_lock/PinLockPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PinLockPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
3232
}
3333
}
3434
}
35-
result.success(Unit)
35+
result.success(null)
3636
}
3737
else -> result.notImplemented()
3838
}

0 commit comments

Comments
 (0)