exactlyEquals method

bool exactlyEquals(
  1. dynamic other
)

Implementation

bool exactlyEquals(dynamic other) =>
    other is BigDecimal && intVal == other.intVal && scale == other.scale;