TDeleteSmartContractInterfaceResponse.fromJson constructor

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

Implementation

factory TDeleteSmartContractInterfaceResponse.fromJson(Map<String, dynamic> json) {
  return TDeleteSmartContractInterfaceResponse(
    activity: v1Activity.fromJson(json['activity'] as Map<String, dynamic>),
    result: json.containsKey('result') && json['result'] != null ? v1DeleteSmartContractInterfaceResult.fromJson(json['result'] as Map<String, dynamic>) : null,
  );
}