v1CreateSmartContractInterfaceResult.fromJson constructor
Implementation
factory v1CreateSmartContractInterfaceResult.fromJson(Map<String, dynamic> json) {
final _smartContractInterfaceId = json['smartContractInterfaceId'] as String;
return v1CreateSmartContractInterfaceResult(
smartContractInterfaceId: _smartContractInterfaceId,
);
}