gqlNullableString method Null safety
Implementation
String gqlNullableString() {
if (this == null) {
return 'null';
} else {
return '"$this"';
}
}
String gqlNullableString() {
if (this == null) {
return 'null';
} else {
return '"$this"';
}
}