Answers for "datatype of dart"

4

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

int 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

Code answers related to "Dart"

Browse Popular Code Answers by Language