ChannelMapping.fromJson constructor
Implementation
factory ChannelMapping.fromJson(Map<String, dynamic> json) {
return ChannelMapping(
outputChannels: (json['outputChannels'] as List?)
?.whereNotNull()
.map((e) => OutputChannelMapping.fromJson(e as Map<String, dynamic>))
.toList(),
);
}