endTimerWithProperties method

Future<void> endTimerWithProperties(
  1. String timerName,
  2. Map<String, dynamic> properties
)

Implementation

Future<void> endTimerWithProperties(
    String timerName, Map<String, dynamic> properties) async {
  await UserExperiorPlatform.instance
      .endTimerWithProperties(timerName, properties);
}