flatEqual<V> method
- 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;
Checks if the current string is equal to the given value when both are flattened.
Returns true if they are equal, false otherwise.
bool flatEqual<V>(V value) => asFlat == value?.asFlat;