getHash method

  1. @Deprecated('Unused internally; will be removed in the next major.')
int getHash()

Implementation

@Deprecated('Unused internally; will be removed in the next major.')
int getHash() {
  final visualFlags = flags & CellAttr.visualMask;
  final hyperlinkFlag = hyperlinkId == 0 ? 0 : CellAttr.hyperlinkMarker;
  return hashValues(
    foreground,
    background,
    underlineColor,
    visualFlags | hyperlinkFlag,
    content,
  );
}