Google\Cloud\Datastore\Blob::__construct PHP Method

__construct() public method

Create a blob
public __construct ( string | resource | Psr\Http\Message\StreamInterface $value )
$value string | resource | Psr\Http\Message\StreamInterface The blob value
    public function __construct($value)
    {
        $this->value = Psr7\stream_for($value);
    }