startTimer static method

Future<void> startTimer(
  1. String label
)

Implementation

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