removeServerConfig method
Remove server configuration
configId - configuration identifier
Implementation
@override
Future<bool> removeServerConfig(String configId) async {
try {
final result = await methodChannel.invokeMethod<bool>('removeServerConfig', {
'configId': configId,
});
return result ?? false;
} catch (e) {
debugPrint('Error removing server config: $e');
return false;
}
}