isMasterKey method

bool isMasterKey()

Get if the fingerprint corresponds to a master key.

Implementation

bool isMasterKey() {
  return BytesUtils.bytesEqual(
    toBytes(),
    Bip32KeyDataConst.fingerprintMasterKey,
  );
}