longitudeBatch property

Future<List<double>?> longitudeBatch

Implementation

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