exclude method

String? exclude(
  1. String exclude
)

Implementation

String? exclude(String exclude) {
  return this?.replaceAll(exclude, '');
}