split
static List<String> split(String? text, Pattern pattern) { if (isEmpty(text)) { return List.empty(growable: true); } return text!.split(pattern); }