static String onlyNumbers(String? value) { return value != null ? value.replaceAll(RegExp(r'[^\d]'), '') : ''; }