setSelectionById method
Sets widget selection by ID.
Implementation
Future<Response> setSelectionById(String isolateId, String objectGroup,
{String? objectId}) async {
return await vmService.callServiceExtension(
'ext.flutter.inspector.setSelectionById',
isolateId: isolateId,
args: {
'arg': objectId,
'objectGroup': objectGroup,
},
);
}