constructor(obj)
Description
Creates a new Row instance by copying all enumerable
keys from the given plain object into the Row instance. Each key/value pair in
obj becomes a direct property on the Row.
Signature
constructor(obj: any)
Example
import { Row } from "@ckn-technology/data";
const row = new Row({ id: 1, name: "Alice" });
console.log(row.id); // 1
console.log(row.name); // "Alice"