ECPair constructor

ECPair(
  1. Uint8List? d,
  2. Uint8List? Q, {
  3. NetworkType? network,
  4. bool? compressed,
})

Implementation

ECPair(Uint8List? d, Uint8List? Q, {NetworkType? network, bool? compressed}) {
  _d = d;
  _Q = Q;
  this.network = network ?? bitcoin;
  this.compressed = compressed ?? true;
}