QueryMachineIDProofRequest.fromJson constructor
Implementation
factory QueryMachineIDProofRequest.fromJson(Map<String, dynamic> json) {
return QueryMachineIDProofRequest(
height: json.valueAsBigInt<BigInt?>('height', acceptCamelCase: true),
machineId: json.valueAsString<String?>(
'machine_id',
acceptCamelCase: true,
),
);
}