setAutoNotifications method

  1. @override
Future<void> setAutoNotifications(
  1. bool enabled
)
override

Implementation

@override
Future<void> setAutoNotifications(bool enabled) async {
  await methodChannel.invokeMethod<void>('setAutoNotifications', {
    'enabled': enabled,
  });
}