Authorization constructor
Authorization({})
Implementation
Authorization({
required this.chainId,
required this.address,
required this.nonce,
int? yParity,
BigInt? r,
BigInt? s,
}) : yParity = yParity ?? 0,
r = r ?? BigInt.zero,
s = s ?? BigInt.zero;