Accessing Indexed Properties

Subscripts can be used to access individual elements of a property whose value is an array, or a List. For example, when index getter are present, you may experience something like:

property="sections[1]"

This will be translated to:

getSection(1)