Camel constructor

const Camel([
  1. IdentifierableCollection first = const IdentifierableCollection(CitrusSyntaxList([LowercaseAlphabetC(), LowercaseAlphabetA(), LowercaseAlphabetM(), LowercaseAlphabetE(), LowercaseAlphabetL()]))
])

Implementation

const Camel([
    this.first = const IdentifierableCollection(
        CitrusSyntaxList([
            LowercaseAlphabetC(),
            LowercaseAlphabetA(),
            LowercaseAlphabetM(),
            LowercaseAlphabetE(),
            LowercaseAlphabetL(),
        ])
    )
]);