Constructs a ResultRow object.
array $values: (optional) An array of values to add as properties on the object.
public function __construct(array $values = []) { foreach ($values as $key => $value) { $this->{$key} = $value; } }