StringParser.fromCamel constructor

StringParser.fromCamel(
  1. String _input
)

Implementation

StringParser.fromCamel(this._input):
  assert(isCamel(_input)),
  _case = StringParserInputCase.camel;