Drawing unrolled diagrams of RNNs in Keras

Keras offers a function

“from keras.utils.vis_utils import plot_model”

However, this function only draws the recurrent form of the RNN. I find that the unrolled form of RNN is much simpler to understand. I have tried to google for it but I haven’t found anything so far.

Any suggestions?