Sentence constructor

const Sentence([
  1. IdentifierableCollection first = const IdentifierableCollection(CitrusSyntaxList([LowercaseAlphabetS(), LowercaseAlphabetE(), LowercaseAlphabetN(), LowercaseAlphabetT(), LowercaseAlphabetE(), LowercaseAlphabetN(), LowercaseAlphabetC(), LowercaseAlphabetE()]))
])

Implementation

const Sentence([
    this.first = const IdentifierableCollection(
        CitrusSyntaxList([
            LowercaseAlphabetS(),
            LowercaseAlphabetE(),
            LowercaseAlphabetN(),
            LowercaseAlphabetT(),
            LowercaseAlphabetE(),
            LowercaseAlphabetN(),
            LowercaseAlphabetC(),
            LowercaseAlphabetE(),
        ])
    )
]);