manhattanLength method

  1. @override
double manhattanLength()
override

Implementation

@override
double manhattanLength() {
  return (x.abs() + y.abs()).toDouble();
}