JavaScript can use
var objectStore = theDb.createObjectStore("store1", { keyPath: ["key1","key2"] });
to create ObjectStore with compound key.
But how to do this in dart?
Dart docs says: ObjectStore createObjectStore(String name, {String keyPath, bool autoIncrement})
keyPath is a String, does dart support compound key?