MathFunctionLog constructor

const MathFunctionLog(
  1. MathNode x1, {
  2. MathNode x2 = const MathValue(10),
})

Creates the log function

Implementation

const MathFunctionLog(MathNode x1, {MathNode x2 = const MathValue(10)})
    : super(x1, x2);