Answers for "flutter check type data"

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
0

flutter type check

bool check(dynamic object) => object is T;
Posted by: Guest on May-01-2021

Browse Popular Code Answers by Language