pascal2Snake property

String get pascal2Snake

Implementation

String get pascal2Snake => isPascalCase
    ? _camel2Snake.substring(1)
    : throw Exception('Invalid pascal case: $this');