removeUrlProtocol method
Implementation
String removeUrlProtocol() {
if (isNullOrEmpty) return this ?? '';
return this!.replaceFirst(RegExp(r'https?:\/\/'), '');
}
String removeUrlProtocol() {
if (isNullOrEmpty) return this ?? '';
return this!.replaceFirst(RegExp(r'https?:\/\/'), '');
}