TGetSmartContractInterfaceResponse.fromJson constructor

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

Implementation

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