unsafeCast function
Returns unsafeCast<{Cast}>(expression)
.
Implementation
o.Expression unsafeCast(o.Expression expression, [o.OutputType? cast]) {
return _unsafeCastFn.callFn(
[expression],
typeArguments: cast != null ? [cast] : const [],
);
}