Pascal constructor

const Pascal([
  1. IdentifierableCollection first = const IdentifierableCollection(CitrusSyntaxList([LowercaseAlphabetP(), LowercaseAlphabetA(), LowercaseAlphabetS(), LowercaseAlphabetC(), LowercaseAlphabetA(), LowercaseAlphabetL()]))
])

Implementation

const Pascal([
    this.first = const IdentifierableCollection(
        CitrusSyntaxList([
            LowercaseAlphabetP(),
            LowercaseAlphabetA(),
            LowercaseAlphabetS(),
            LowercaseAlphabetC(),
            LowercaseAlphabetA(),
            LowercaseAlphabetL(),
        ])
    )
]);