Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Kampmann <ben.kampmann@gmail.com>
  • Loading branch information
bierbaumtim and gnunicorn committed Oct 9, 2023
1 parent 58fd53d commit 3e3993f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -15,7 +15,7 @@ public class SwiftFlutterSecureStoragePlugin: NSObject, FlutterPlugin, FlutterSt

public static func register(with registrar: FlutterPluginRegistrar) {
let channel = FlutterMethodChannel(name: "plugins.it_nomads.com/flutter_secure_storage", binaryMessenger: registrar.messenger())
let eventChannel = FlutterEventChannel("plugins.it_nomads.com/flutter_secure_storage/events", binaryMessenger: registrar.messenger())
let eventChannel = FlutterEventChannel(name: "plugins.it_nomads.com/flutter_secure_storage/events", binaryMessenger: registrar.messenger())
let instance = SwiftFlutterSecureStoragePlugin()
registrar.addMethodCallDelegate(instance, channel: channel)
registrar.addApplicationDelegate(instance)
Expand Down

0 comments on commit 3e3993f

Please sign in to comment.