IDBObjectStoreParameters constructor

IDBObjectStoreParameters({
  1. dynamic keyPath,
  2. bool? autoIncrement,
})

Implementation

factory IDBObjectStoreParameters({dynamic keyPath, bool? autoIncrement}) =>
    IDBObjectStoreParameters._(
        keyPath: keyPath ?? undefined, autoIncrement: autoIncrement ?? false);