Authorization constructor
Authorization({})
Implementation
Authorization({
required this.chainId,
required this.address,
required this.nonce,
this.v,
this.r,
this.s,
}) {
if (address.length != 20) {
throw ArgumentError('Address must be 20 bytes, got ${address.length}');
}
}