decode static method

Implementation

static StartPushStreamingRequest decode(Object result) {
  result as List<Object?>;
  return StartPushStreamingRequest(
    streamingUrl: result[0] as String?,
    streamingRoomInfo: result[1] != null
        ? StreamingRoomInfo.decode(result[1]! as List<Object?>)
        : null,
  );
}