schema2 method
Create store schema, keyPath is String, a List<String> or SdbKeyPath
Implementation
SdbIndexSchema schema2(String keyPath1, String keyPath2, {bool? unique}) {
return SdbIndexSchema(
this,
SdbKeyPath.multi([sdbKeyPath<I1>(keyPath1), sdbKeyPath<I2>(keyPath2)]),
unique: unique ?? false,
);
}