decode static method

TXDownloadListMsg decode(
  1. Object result
)

Implementation

static TXDownloadListMsg decode(Object result) {
  result as List<Object?>;
  return TXDownloadListMsg(
    infoList: (result[0] as List<Object?>?)?.cast<TXVodDownloadMediaMsg?>(),
  );
}