DotCoin constructor

DotCoin({
  1. dynamic setting,
  2. bool setEd = false,
})

Implementation

DotCoin({setting, bool setEd = false}) {
  this.setting = setting ?? _default;
  if (setEd) setEd25519();
}