class TTY::Spinner

def next_char

Other tags:
    Api: - private

Returns:
  • (String) -
def next_char
  if success?
    @success_mark
  elsif error?
    @error_mark
  else
    @frames[@current - 1]
  end
end