stringValueOrNull property
String?
get
stringValueOrNull
获取字符串值,如果为 null 则返回 null。
Implementation
String? get stringValueOrNull {
return isNull ? null : stringValue;
}
获取字符串值,如果为 null 则返回 null。
String? get stringValueOrNull {
return isNull ? null : stringValue;
}