mark method

void mark(
  1. String markName
)

Implementation

void mark(String markName) {
  if (this is _PerformanceImpl) {
    (this as _PerformanceImpl).mark(markName);
  }
}