floor property

Future<CLFloor?> floor

Implementation

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