Service constructor

const Service({
  1. required String derivationPath,
  2. @Default('ed25519') String curve,
  3. @Default('sha256') String hashAlgo,
})

Implementation

const factory Service({
  required String derivationPath,
  @Default('ed25519') String curve,
  @Default('sha256') String hashAlgo,
}) = _Service;