String? remove(String remove) { if (this == null) return null; if (this!.isEmpty) return this; return this!.replaceAll(remove, ''); }