KomodoDefiFramework.create constructor
KomodoDefiFramework.create({
- required IKdfHostConfig hostConfig,
- void externalLogger()?,
Implementation
factory KomodoDefiFramework.create({
required IKdfHostConfig hostConfig,
void Function(String)? externalLogger,
}) {
return KomodoDefiFramework._(
hostConfig: hostConfig,
externalLogger: externalLogger,
// client: KdfApiClient(this, rpcPassword: hostConfig.rpcPassword),
);
}