legacyEip712Encode method
Legacy EIP-712 encoding for byte arrays.
Optionally keeps the size unchanged based on the keepSize
parameter.
Implementation
@override
EncoderResult legacyEip712Encode(
AbiParameter params, List<int> input, bool keepSize) {
final size = _ABIUtils.bytesSize(params.type);
if (size != null && input.length != size) {
throw _ABIValidator.invalidBytesLength;
}
return EncoderResult(isDynamic: false, encoded: input);
}