0% found this document useful (0 votes)
342 views1 page

7.1 Dart-Overview-Slide PDF

Dart is a statically typed, object-oriented programming language developed by Google that can be used to build web and mobile applications. It is statically typed, meaning variables and functions are defined with a specific data type that cannot be changed. Everything in Dart is an object, as classes define blueprints for custom objects. Flutter uses Dart to build native mobile apps for development.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
342 views1 page

7.1 Dart-Overview-Slide PDF

Dart is a statically typed, object-oriented programming language developed by Google that can be used to build web and mobile applications. It is statically typed, meaning variables and functions are defined with a specific data type that cannot be changed. Everything in Dart is an object, as classes define blueprints for custom objects. Flutter uses Dart to build native mobile apps for development.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Dart Basics – What is Dart?

Dart is a statically typed, object-oriented programming language developed by


Google which can be used to build web and mobile applications.
applications

Statically Typed Object-oriented Mobile Applications

You define which type(s) of Everything‘s an object! You Flutter uses Dart as a
data a variable or function define classes as blueprints for programming language to
uses. your own objects. build native mobile apps.

class Person {
String myName;
String name = 'Max';
myName = 'Max';
}
Person p = Person();
myName = 5; // Fails!
print(p.name); // 'Max'

You might also like