Removes all occurrences of the specified substring.
Example:
'hello world'.remove('l'); // 'heo word'
String remove(String substring) => replaceAll(substring, '');