afterDot property
String
get
afterDot
enumlar icin son noktadan sonraki kelimeyi verir
Implementation
String get afterDot {
if (this == null) return '';
return this!.split('.').last;
}
enumlar icin son noktadan sonraki kelimeyi verir
String get afterDot {
if (this == null) return '';
return this!.split('.').last;
}