schedule method

bool schedule(
  1. String path
)

Implementation

bool schedule(String path) {
  if (!path.endsWith('.native.dart')) return false;
  _pendingPaths.add(path);
  _timer?.cancel();
  _timer = Timer(delay, _flush);
  return true;
}