startEvent static method
- @Deprecated('This function is deprecated, please use "startEvent" of events instead')
- String key
starts a timed event returns error or success message
Implementation
@Deprecated('This function is deprecated, please use "startEvent" of events instead')
static Future<String?> startEvent(String key) async {
await _instance.events.startEvent(key);
return 'startEvent called';
}