debugPaintBaselinesEnabled method
Toggles baseline painting.
Implementation
Future<Response> debugPaintBaselinesEnabled(String isolateId,
{bool? enabled}) async {
return await vmService.callServiceExtension(
'ext.flutter.debugPaintBaselinesEnabled',
isolateId: isolateId,
args: {'enabled': enabled?.toString()},
);
}