debugDisableOpacityLayers method

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

Toggles disabling of opacity layers.

Implementation

Future<Response> debugDisableOpacityLayers(String isolateId,
    {bool? enabled}) async {
  return await vmService.callServiceExtension(
    'ext.flutter.debugDisableOpacityLayers',
    isolateId: isolateId,
    args: {'enabled': enabled?.toString()},
  );
}