decode static method

StringListPlayerMsg decode(
  1. Object result
)

Implementation

static StringListPlayerMsg decode(Object result) {
  result as List<Object?>;
  return StringListPlayerMsg(
    playerId: result[0] as int?,
    vvtUrl: result[1] as String?,
    imageUrls: (result[2] as List<Object?>?)?.cast<String?>(),
  );
}