pascalSplit property
Splits a pascal case string into individual words. Returns a list of strings representing the words in the pascal case string.
Implementation
List<String> get pascalSplit => camelSplit.map((w) => w.capitalizeFirst).nonNulls.toList();