stage method

Future<VPNStage> stage()

Get latest connection stage

Implementation

Future<VPNStage> stage() async {
  String? stage = await _channelControl.invokeMethod("stage");
  return _strToStage(stage ?? "disconnected");
}