Skip to content

Instantly share code, notes, and snippets.

@muchirijane
Created September 9, 2019 06:55
Show Gist options
  • Save muchirijane/5d32ffc8bc4f9ffad27a858e31b6f474 to your computer and use it in GitHub Desktop.
Save muchirijane/5d32ffc8bc4f9ffad27a858e31b6f474 to your computer and use it in GitHub Desktop.
This are different types of dart data types
// This are the different data types in data language
void main() {
String a = 'Hello';
int b = 123;
dynamic c = 'Hello';
c = 123;
bool d = false;
print (d);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment