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