method

download_identifiable_chunk

download_identifiable_chunk()
private

No documentation available.

# File activestorage/app/models/active_storage/blob/identifiable.rb, line 25
    def download_identifiable_chunk
      if byte_size.positive?
        service.download_chunk key, 0...4.kilobytes
      else
        ""
      end
    end