flatEqual<V> method

bool flatEqual<V>(
  1. V value
)

Checks if the current string is equal to the given value when both are flattened. Returns true if they are equal, false otherwise.

Implementation

bool flatEqual<V>(V value) => asFlat == value?.asFlat;