xylPublicKey method

int xylPublicKey({
  1. bool getYLength = false,
})

Gets the length of either x and y for validation.

Implementation

int xylPublicKey({bool getYLength = false}) {
  return getYLength ? XYL_PUBKEYS[this.id!]!.y : XYL_PUBKEYS[this.id!]!.x;
}