1
0
Fork 0
forked from Nexus/nexus
nexus/lib/helpers/extensions/get_localpart.dart
Henry-Hiles 16cf126df4 Remove flutter chat (#26)
Had to squash merge manually as Forgejo was erroring
2026-05-21 17:02:08 -04:00

3 lines
113 B
Dart

extension GetLocalpart on String {
String get localpart => length > 1 ? substring(1).split(":").first : "?";
}