legacyEip712Encode method

EncoderResult legacyEip712Encode(
  1. dynamic value,
  2. bool keepSize
)

Encodes the given value using the specified ABI encoding.

Implementation

EncoderResult legacyEip712Encode(dynamic value, bool keepSize) {
  final abi = ABICoder.fromType(type);
  return abi.legacyEip712Encode(this, value, keepSize);
}