timestampNow method

  1. @override
void timestampNow(
  1. String name
)
override

Records the current time as a timestamp.

  • name a counter name of Timestamp type.

Implementation

@override
void timestampNow(String name) {
  timestamp(name, DateTime.now().toUtc());
}