addGeofences method
override
Adds multiple geofences.
Implementation
@override
Future<bool> addGeofences(List<Geofence> geofences) async {
_methodCalls.add('addGeofences');
for (final geofence in geofences) {
await addGeofence(geofence);
}
return true;
}