profilePlatformChannels method
Toggles profiling of platform channels.
Implementation
Future<Response> profilePlatformChannels(String isolateId,
{bool? enabled}) async {
return await vmService.callServiceExtension(
'ext.flutter.profilePlatformChannels',
isolateId: isolateId,
args: {'enabled': enabled?.toString()},
);
}