getCoreVersion method

  1. @override
Future<String> getCoreVersion()
override

Retrieves the version of the V2Ray core. Returns a Future that completes with a String representing the core version.

Implementation

@override
Future<String> getCoreVersion() async {
  return await methodChannel.invokeMethod('getCoreVersion');
}