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