register method

Future<void> register({
  1. required Color color,
  2. Duration? timeAfterResume = const Duration(milliseconds: 1000),
})

activate a screenshot blocking with a color effect view (iOS 13+, Android 8+) color color of the background

timeAfterResume (Android only) Time delayed for the view to stop displaying when going back to the application (in milliseconds). Default = 1000ms

function will throw warning when timeAfterResume bigger than 3000ms, users have to wait for the application to turn off the filter before going back to the main view, which is a very bad user experiences.

Throws a PlatformException if there were technical problems on native side (e.g. lack of relevant hardware).

Implementation

Future<void> register({
  required Color color,
  Duration? timeAfterResume = const Duration(milliseconds: 1000),
}) {
  throw UnimplementedError('register() has not been implemented.');
}