androidStartGeoTriggering method

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

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