startEvent static method

  1. @Deprecated('This function is deprecated, please use "startEvent" of events instead')
Future<String?> startEvent(
  1. 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';
}