Snake constructor

const Snake([
  1. IdentifierableCollection first = const IdentifierableCollection(CitrusSyntaxList([LowercaseAlphabetS(), LowercaseAlphabetN(), LowercaseAlphabetA(), LowercaseAlphabetK(), LowercaseAlphabetE()]))
])

Implementation

const Snake([
    this.first = const IdentifierableCollection(
        CitrusSyntaxList([
            LowercaseAlphabetS(),
            LowercaseAlphabetN(),
            LowercaseAlphabetA(),
            LowercaseAlphabetK(),
            LowercaseAlphabetE(),
        ])
    )
]);