EIP712TypedData.fromJson constructor

EIP712TypedData.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory EIP712TypedData.fromJson(Map<String, dynamic> json) =>
    EIP712TypedData(
        name: json['name'] as String,
        type: json['type'] as String,
        value: json['value']);