Answers for "data types of dart"

3

data types in flutter

main(List<String> args) {
  int number = 42;
  String name = 'Gurleen Sethi';
  double salary = 150300.56;
  bool isDoorOpen = true;
}
Posted by: Guest on October-10-2020
1

long data type in dart

On Dart, Integer values can be from -2^63 to 2^63 - 1
which is equivalent to long data type range.
Posted by: Guest on June-25-2021

Browse Popular Code Answers by Language