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