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