androidStartTempoTracking method

Future<void> androidStartTempoTracking(
  1. String destinationId,
  2. String channelId,
  3. String channelName,
  4. String title,
  5. String content,
  6. int? notificationId,
)

Implementation

Future<void> androidStartTempoTracking(String destinationId, String channelId, String channelName, String title, String content, int? notificationId) async {
  final arguments = {'destinationId': destinationId, 'channelId': channelId, 'channelName': channelName, 'title': title, 'content': content, 'notificationId': notificationId};
  final androidStartTempoTracking = await methodChannel.invokeMethod('androidStartTempoTracking', arguments);
  return androidStartTempoTracking;
}