addService method
void
addService(})
Implementation
void addService(String name, String derivationPath,
{String curve = 'ed25519', String hashAlgo = 'sha256',}) {
services ??= <String, Service>{};
services!.addAll(<String, Service>{
name: Service(
derivationPath: derivationPath, curve: curve, hashAlgo: hashAlgo,)
});
}