getLocations static method

Future<List<LocationPoint>> getLocations({
  1. int? limit,
})

Get stored locations from database

Implementation

static Future<List<LocationPoint>> getLocations({int? limit}) {
  return BackgroundTrackerPlatform.instance.getLocations(limit: limit);
}