String nameCase({String separator = ' '}) { return words().map((word) => word!.capitalize).toList().join(separator); }