enableBackgroundBlur static method

Future<void> enableBackgroundBlur(
  1. bool enable
)

Enable/disable blur when app is in background (app switcher).

Implementation

static Future<void> enableBackgroundBlur(bool enable) async {
  await _impl.setBackgroundBlur(enable);
}