EIP712Legacy.fromJson constructor

EIP712Legacy.fromJson(
  1. List<Map<String, dynamic>> messages
)

Implementation

factory EIP712Legacy.fromJson(List<Map<String, dynamic>> messages) {
  return EIP712Legacy(
      messages.map((e) => Eip712TypedDataV1.fromJson(e)).toList());
}