JavaScript が使用できます
var objectStore = theDb.createObjectStore("store1", { keyPath: ["key1","key2"] });
複合キーでObjectStore を作成します。
しかし、ダーツでこれを行う方法は?
Dart docs によると: ObjectStore createObjectStore(String name, {String keyPath, bool autoIncrement})
keyPath は文字列ですが、dart は複合キーをサポートしていますか?