From c7f32e68e92850695228986a327786dbdcfd85fb Mon Sep 17 00:00:00 2001 From: Max Korbel Date: Mon, 18 Sep 2023 19:52:59 -0700 Subject: [PATCH] fix lint --- lib/src/values/logic_value.dart | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/lib/src/values/logic_value.dart b/lib/src/values/logic_value.dart index 7d2b85334..f9493ffbe 100644 --- a/lib/src/values/logic_value.dart +++ b/lib/src/values/logic_value.dart @@ -893,16 +893,20 @@ abstract class LogicValue implements Comparable { LogicValue operator *(dynamic other) => _doMath(other, (a, b) => a * b); /// Division operation. - /// - // ignore: avoid_dynamic_calls - LogicValue operator /(dynamic other) => - _doMath(other, (a, b) => a ~/ b, isDivision: true); + LogicValue operator /(dynamic other) => _doMath( + other, + // ignore: avoid_dynamic_calls + (a, b) => a ~/ b, + isDivision: true, + ); /// Modulo operation. - /// - // ignore: avoid_dynamic_calls - LogicValue operator %(dynamic other) => - _doMath(other, (a, b) => a % b, isDivision: true); + LogicValue operator %(dynamic other) => _doMath( + other, + // ignore: avoid_dynamic_calls + (a, b) => a % b, + isDivision: true, + ); /// Ceil of log base 2 operation. ///