resetIOSGeTuiBadge function

Future<bool> resetIOSGeTuiBadge()

only ios

Implementation

Future<bool> resetIOSGeTuiBadge() async {
  if (_isIOS) {
    final bool? status = await _channel.invokeMethod<bool?>('resetBadge');
    return status ?? false;
  }
  return false;
}