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