BooleanDelta constructor

BooleanDelta({
  1. bool? previous,
  2. bool? current,
})

Implementation

BooleanDelta({
  bool? previous,
  bool? current,
}) : _wrapped = $js.BooleanDelta(
        previous: previous,
        current: current,
      );