cast method
T?
cast(
- dynamic from
Implementation
T? cast(dynamic? from) {
if (from == null) {
return _castNull();
} else {
return _cast(from, "toplevel", null);
}
}
T? cast(dynamic? from) {
if (from == null) {
return _castNull();
} else {
return _cast(from, "toplevel", null);
}
}