LMDBInitConfig constructor
Creates a new configuration instance.
Example:
final config = LMDBInitConfig(
mapSize: 1024 * 1024 * 100, // 100MB
maxDbs: 1,
mode: '644',
);
Implementation
const LMDBInitConfig({
required this.mapSize,
this.maxDbs = 1,
this.mode = "644",
});