decode static method

FEEGChannelInfo decode(
  1. Object result
)

Implementation

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