schema method
Create store schema, keyPath is String, a List<String> or SdbKeyPath
Implementation
SdbIndexSchema schema({required Object keyPath, bool? unique}) {
return SdbIndexSchema(
this,
sdbKeyPathFromAny(keyPath),
unique: unique ?? false,
);
}