shouldShowBracket property

bool get shouldShowBracket

Verifica se deve mostrar o colchete

Implementation

bool get shouldShowBracket {
  if (bracketConfig != null) {
    return bracketConfig!.shouldShow(notes);
  }
  return showBracket;
}