测量方法执行耗时
FutureOr<(T, int)> measureTime([String? debugName]) { final stopWatch = Stopwatch()..start(); final res = this.call() as T; stopWatch.stop(); return (res, stopWatch.elapsedMilliseconds); }