androidStartTempoTracking method
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;
}