String removeFromText(String text, String? extra) { if (extra != null) { text = text.replaceFirst(extra, ''); } return text; }