eventGetFirstTime static method

Future eventGetFirstTime(
  1. String eventName
)

Returns the timestamp of the first time the given event was raised

Implementation

static Future<dynamic> eventGetFirstTime(String eventName) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('eventGetFirstTime', {'eventName': eventName});
}