isNotOfType: Checks if the object is not of the specified (runtimeType) type.
bool isNotOfType(Type type) { var runtimeType = this.runtimeType; return runtimeType != type; }