first property
String?
get
first
Implementation
String? get first {
if (this?.isNotEmpty == true) return this![0];
return null;
}
String? get first {
if (this?.isNotEmpty == true) return this![0];
return null;
}