decode static method
Implementation
static FEEGChannelInfo decode(Object result) {
result as List<Object?>;
return FEEGChannelInfo(
id: result[0]! as FEEGChannelId,
chType: result[1]! as FEEGChannelType,
name: result[2]! as String,
num: result[3]! as int,
);
}