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