round static method

Creates a function expression which rounds the given numeric expression to the given number of digits.

Implementation

static ExpressionInterface round(
  ExpressionInterface expression, {
  ExpressionInterface? digits,
}) =>
    BinaryExpression('round()', expression, digits);