screenshotWithColor method

  1. @override
Future<bool> screenshotWithColor({
  1. int color = 0xFF000000,
})
override

Always enables color overlay mode (idempotent — safe to call repeatedly).

Implementation

@override
Future<bool> screenshotWithColor({int color = 0xFF000000}) async {
  _enableProtection();
  return true;
}