schema method
Create store schema
Implementation
SdbStoreSchema schema({
SdbKeyPath? keyPath,
bool? autoIncrement,
List<SdbIndexSchema>? indexes,
}) {
return SdbStoreSchema(
this,
keyPath: keyPath,
autoIncrement: autoIncrement ?? false,
indexes: indexes ?? [],
);
}