Skip to content

Instantly share code, notes, and snippets.

@HelloCore
Created February 27, 2021 13:06
Show Gist options
  • Save HelloCore/00d5136d5d4d8bdcf6ebb25e9282d0ee to your computer and use it in GitHub Desktop.
Save HelloCore/00d5136d5d4d8bdcf6ebb25e9282d0ee 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