eventGetOccurrences static method

Future<int?> eventGetOccurrences(
  1. String eventName
)

Returns the total count of the specified event

Implementation

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