bool removeDrop()

in lib/src/usage_impl.dart [35:44]


  bool removeDrop() {
    _checkReplenish();

    if (drops <= 0) {
      return false;
    } else {
      drops--;
      return true;
    }
  }