baseType<V> method
Implementation
void baseType<V>(Type type) {
this.type = type;
test<dynamic>(
type: type,
name: "type",
params: {
"type": type
},
check: (dynamic object) => (object == null && nullable) || object.runtimeType == type,
stop: true
);
}