remove method

  1. @Deprecated('Use [cancelSend()] instead.')
Future<bool> remove()

Implementation

@Deprecated('Use [cancelSend()] instead.')
Future<bool> remove() async {
  try {
    await cancelSend();
    return true;
  } catch (_) {
    return false;
  }
}