sqlAtan function
Calculates the tangent of value in sql.
This function is equivalent to atan, except that it evaluates to null
instead of NaN.
This function is only available when using a NativeDatabase.
Implementation
Expression<num?> sqlAtan(Expression<num?> value) {
return FunctionCallExpression('atan', [value]);
}