DART cómo saber si un objeto es una instancia de una clase
if (emp is Person) {
// Type check
emp.firstName = 'Bob';
}
Jumpy Monkey
if (emp is Person) {
// Type check
emp.firstName = 'Bob';
}