Root.fromExpr(Number n, arg)

Creates the n-th root of arg where n is a Number literal.

Source

Root.fromExpr(Number n, arg): super._unary('root', arg) {
  this.n = n.getConstantValue().toInt();
}