(raw: str)
| 318 | if not t: |
| 319 | return None |
| 320 | lower = t.lower() |
| 321 | if ".dart" in lower or "/" in t or "\\" in t or "://" in t: |
| 322 | return None |
| 323 | if " " in t: |
| 324 | return None |
| 325 | if "@" in t: |
| 326 | t = t.split("@", 1)[0] |
| 327 | if ":" in t: |
| 328 | t = t.split(":", 1)[1] |
| 329 | t = t.strip() |
no outgoing calls
no test coverage detected