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