DART, wie man feststellt, ob ein Objekt eine Instanz einer Klasse ist

if (emp is Person) {
  // Type check
  emp.firstName = 'Bob';
}
Jumpy Monkey