coordinate property

Implementation

Future<CLLocationCoordinate2D> get coordinate async {
  final result = await kCLMethodChannel
      .invokeMethod<Ref>('CLLocation::get_coordinate', {'__this__': this});
  return CLLocationCoordinate2D()..refId = result?.refId;
}