Example: dart check type of variable class Foo { } main() { var foo = new Foo(); if (foo is Foo) { print("it's a foo!"); } }
確定! 回上一頁