Answers for "understand data type in flutter"

0

check data type flutter

selector.runtimeType // return data type of the variable

Example:
if (selector.runtimeType == int) print("Hello")
Posted by: Guest on April-25-2021
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

Code answers related to "Dart"

Browse Popular Code Answers by Language