fromMap static method
Implementation
static WebMessageChannel? fromMap(Map<String, dynamic>? map) {
PlatformWebMessageChannel? platform =
PlatformWebMessageChannel.static().fromMap(map);
if (platform == null) {
return null;
}
return WebMessageChannel.fromPlatform(platform: platform);
}