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