testConfig method

  1. @override
Future<bool> testConfig(
  1. String config
)
override

Test configuration

Implementation

@override
Future<bool> testConfig(String config) async {
  if (!isSupported) {
    return false;
  }

  // TODO: Implement V2Ray config testing
  // For now, return true as V2Ray configs are generally valid
  return true;
}