setFFDSecurityLevel method

  1. @override
Future<int> setFFDSecurityLevel(
  1. SecurityLevel securityLevel
)
override

Implementation

@override
Future<int> setFFDSecurityLevel(SecurityLevel securityLevel) async {
  int ffd = securityLevel.id;
  final ret = await methodChannel.invokeMethod(
      PluginFunctionInterfaceConstants.FPS_SET_FFD_SECURITY_LEVEL, ffd);
  return ret;
}