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