latitudeBatch property

Future<List<double>?> latitudeBatch

Implementation

Future<List<double>?> get latitudeBatch async {
  final result = await kCLMethodChannel.invokeListMethod<double>(
    'CLLocationCoordinate2D::get_latitude_batch',
    [
      for (final __item__ in this) {'__this__': __item__}
    ],
  );
  return result;
}