protectDataLeakageWithImage static method

Future<void> protectDataLeakageWithImage(
  1. String imageName
)

Supported for iOS only, do nothing when run on Android.

Implementation

static Future<void> protectDataLeakageWithImage(String imageName) async {
  return await _channel.invokeMethod('protectDataLeakageWithImage', {
    'name': imageName,
  });
}