Capital constructor

const Capital([
  1. IdentifierableCollection first = const IdentifierableCollection(CitrusSyntaxList([LowercaseAlphabetC(), LowercaseAlphabetA(), LowercaseAlphabetP(), LowercaseAlphabetI(), LowercaseAlphabetT(), LowercaseAlphabetA(), LowercaseAlphabetL()]))
])

Implementation

const Capital([
    this.first = const IdentifierableCollection(
        CitrusSyntaxList([
            LowercaseAlphabetC(),
            LowercaseAlphabetA(),
            LowercaseAlphabetP(),
            LowercaseAlphabetI(),
            LowercaseAlphabetT(),
            LowercaseAlphabetA(),
            LowercaseAlphabetL(),
        ])
    )
]);