Answers for "dart get type of list"

3

how to find the type of object in dart

var x = [32,4424];
print(x.runtimeType);

O/P:-
JSArray<int>
Posted by: Guest on December-08-2020
2

dart get type of list

list.runtimeType
Posted by: Guest on October-24-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language