instant method
void
instant(})
Implementation
void instant(
String name, {
String category = 'app',
Map<String, Object?> args = const <String, Object?>{},
CockpitPerformanceLocation? location,
}) {
_record(
name: name,
category: category,
timestampUs: nowUs,
durationUs: 0,
phase: 'i',
args: args,
location: location,
kind: _PluginEventKind.instant,
);
}