remove static method

void remove(
  1. Do tween
)

Implementation

static void remove(Do tween) {
  var i = _tweens.indexOf(tween);

  if (i != -1) {
    _tweens.removeAt(i);
  }
}