disableNotifications method

Future<bool> disableNotifications ()

Implementation

static Future<bool> disableNotifications() async {
  final bool result = await _channel.invokeMethod(
    _methodDisableNotifications,
  );
  return result;
}