secureApp method

  1. @override
Future secureApp({
  1. required int flags,
})
override

Secure App with WindowManager Flags

Implementation

@override
Future<dynamic> secureApp({required int flags}) {
  return methodChannel.invokeMethod(
    SecurityConstants.SECURE_APP,
    {
      SecurityConstants.SECURE_APP: flags,
    },
  );
}