Calling a __call__ method on tf.keras.layers.Layer

I am looking at some code from Google (https://github.com/google-research/google-research/blob/c56b47713b08c95ad427d5f93ee0dbb9ad008964/social_rl/multiagent_tfagents/joint_attention/attention_networks.py#L557). I am new to TensorFlow and I don’t really understand what line 491 is doing. It’s passing some normalized kwargs to the call method of tf.keras.layers.Layer, which gives back those three ouputs. Is this just a sequence of dense layers?

Thanks