GeolocatorCN constructor

GeolocatorCN({
  1. List<LocationServiceProvider>? providers,
})

Implementation

factory GeolocatorCN({List<LocationServiceProvider>? providers}) {
  return GeolocatorCN._(providers ??
      [
        GeolocatorCNProviders.system,
        GeolocatorCNProviders.baidu,
        GeolocatorCNProviders.amap
      ]);
}