SetRawStringField sets a raw string field in the underlying map.
(key, value string)
| 417 | |
| 418 | // SetRawStringField sets a raw string field in the underlying map. |
| 419 | func (bb *Builder) SetRawStringField(key, value string) *Builder { |
| 420 | bb.m[key] = value |
| 421 | return bb |
| 422 | } |
| 423 | |
| 424 | // Blob builds the Blob. The builder continues to be usable after a call to Build. |
| 425 | func (bb *Builder) Blob() *Blob { |
no outgoing calls