protectDataLeakageWithColor static method

Future<void> protectDataLeakageWithColor(
  1. Color color
)

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

Implementation

static Future<void> protectDataLeakageWithColor(Color color) async {
  return await _channel.invokeMethod('protectDataLeakageWithColor', {
    'hexColor': color.toHex(),
  });
}