workspaceApplyEdit method
Request to apply a workspace edit.
Implementation
Future<BridgeResponse> workspaceApplyEdit({
required Map<String, dynamic> edit,
String? label,
}) {
return sendRequest('workspace/applyEdit', {'edit': edit, 'label': ?label});
}