Reader reads bytes from a blob. It implements io.ReadSeekCloser, and must be closed after reads are finished.
Close implements io.Closer (https://golang.org/pkg/io/#Closer).
ContentType returns the MIME type of the blob.
ModTime returns the time the blob was last modified.
Read implements io.Reader (https://golang.org/pkg/io/#Reader).
Seek implements io.Seeker (https://golang.org/pkg/io/#Seeker).
Size returns the size of the blob content in bytes.
WriteTo reads from r and writes to w until there's no more data or an error occurs. The return value is the number of bytes written to w.
It implements the io.WriterTo interface.
Generated using TypeDoc
Reader reads bytes from a blob. It implements io.ReadSeekCloser, and must be closed after reads are finished.