debugDisablePhysicalShapeLayers method
Toggles disabling of physical shape layers.
Implementation
Future<Response> debugDisablePhysicalShapeLayers(String isolateId,
{bool? enabled}) async {
return await vmService.callServiceExtension(
'ext.flutter.debugDisablePhysicalShapeLayers',
isolateId: isolateId,
args: {'enabled': enabled?.toString()},
);
}