enableSecureFlag method
Abstract method to enable or disable the secure flag.
Implementation
@override
Future<void> enableSecureFlag(bool enable) async {
try {
await methodChannel.invokeMethod('enableSecureFlag', {'enable': enable});
} on PlatformException catch (e) {
throw Exception("Error enabling secure flag: $e");
}
}