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