isLengthEqualTo method

bool isLengthEqualTo(
  1. int other
)

Checks if length of double value is EQUAL to max.

Parameters

  • other: The other value

Returns

  • true if the length of this value is equal to the other value
  • false otherwise

Implementation

bool isLengthEqualTo(int other) => length == other;