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