profileWidgetBuilds method
Toggles profiling of widget builds.
Implementation
Future<Response> profileWidgetBuilds(String isolateId,
{bool? enabled}) async {
return await vmService.callServiceExtension(
'ext.flutter.profileWidgetBuilds',
isolateId: isolateId,
args: {'enabled': enabled?.toString()},
);
}