SmartContractBABIEntryParam.fromJson constructor

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

Create a new SmartContractBABIEntryParam instance by parsing a JSON map.

Implementation

factory SmartContractBABIEntryParam.fromJson(Map<String, dynamic> json) {
  return SmartContractBABIEntryParam(
      type: json["type"], name: json["name"], indexed: json["indexed"]);
}