timeLog 方法

void timeLog(
  1. [\nString? label,
  2. Object? arg\n]
)

实现

void timeLog([String? label, Object? arg]) => _isConsoleDefined
    ? JS('void', 'window.console.timeLog(#, #)', label, arg)
    : null;