VectorValueRepresents a vector type in Firestore documents. Create an instance with FieldValue.vector. class VectorValue {isEqual(other: VectorValue): boolean;toArray(): number[];}§Methods§isEqual(other: VectorValue): boolean[src]Returns true if the two VectorValue has the same raw number arrays, returns false otherwise. §toArray(): number[][src]Returns a copy of the raw number array form of the vector.