v1GetSmartContractInterfacesResponse.fromJson constructor

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

Implementation

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