The base of the logarithm.
double get base => _base;
set base(double value) { assert(value > 0 && value != 1, 'Base must be positive and not 1'); _base = value; }