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