stopTimer static method

Future<void> stopTimer(
  1. String label
)

Implementation

static Future<void> stopTimer(String label) async {
  await _channel.invokeMethod<void>('stopTimer', <String, dynamic>{'label': label});
}