Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Created June 12, 2020 16:02
Show Gist options
  • Select an option

  • Save jacobaraujo7/2170eb30bb8951708a59bf4e51726eea to your computer and use it in GitHub Desktop.

Select an option

Save jacobaraujo7/2170eb30bb8951708a59bf4e51726eea to your computer and use it in GitHub Desktop.
class MyClass{
final int num;
MyClass({this.num = 1});
}
void main() {
var myClass = MyClass();
print(myClass.num); //print 1
myClass = MyClass(num: null);
print(myClass.num); //print null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment