debugDisablePhysicalShapeLayers method

Future<Response> debugDisablePhysicalShapeLayers(
  1. String isolateId, {
  2. bool? enabled,
})

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()},
  );
}