Skip to content

Instantly share code, notes, and snippets.

@HelloCore
Created February 27, 2021 13:07
Show Gist options
  • Save HelloCore/4a5131abe5aa7cc87edca4f10077d387 to your computer and use it in GitHub Desktop.
Save HelloCore/4a5131abe5aa7cc87edca4f10077d387 to your computer and use it in GitHub Desktop.
class Person {
final String? firstName;
Person(this.firstName);
}
void main() {
String x = "1";
var person = Person("hello");
if(person.firstName != null) {
x= person.firstName;
}
print(x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment