v1GetSmartContractInterfaceResponse.fromJson constructor

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

Implementation

factory v1GetSmartContractInterfaceResponse.fromJson(Map<String, dynamic> json) {
  final _smartContractInterface = v1SmartContractInterface.fromJson(json['smartContractInterface'] as Map<String, dynamic>);
  return v1GetSmartContractInterfaceResponse(
    smartContractInterface: _smartContractInterface,
  );
}