inMemory static method
InMemoryConfiguration
inMemory(
- List<
SchemaObject> schemaObjects, { - String? fifoFilesFallbackPath,
- String? path,
- int? maxNumberOfActiveVersions,
Constructs a InMemoryConfiguration
Implementation
static InMemoryConfiguration inMemory(
List<SchemaObject> schemaObjects, {
String? fifoFilesFallbackPath,
String? path,
int? maxNumberOfActiveVersions,
}) =>
InMemoryConfiguration._(
schemaObjects,
fifoFilesFallbackPath: fifoFilesFallbackPath,
path: path,
maxNumberOfActiveVersions: maxNumberOfActiveVersions,
);