TGetSmartContractInterfacesResponse.fromJson constructor
TGetSmartContractInterfacesResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory TGetSmartContractInterfacesResponse.fromJson(
Map<String, dynamic> json) {
final _smartContractInterfaces = (json['smartContractInterfaces'] as List)
.map((e) => externaldatav1SmartContractInterface
.fromJson(e as Map<String, dynamic>))
.toList();
return TGetSmartContractInterfacesResponse(
smartContractInterfaces: _smartContractInterfaces,
);
}