dart, jak stwierdzić, czy obiekt jest instancją klasy
if (emp is Person) {
// Type check
emp.firstName = 'Bob';
}
Jumpy Monkey
if (emp is Person) {
// Type check
emp.firstName = 'Bob';
}