UnstakeBody.fromJson constructor
Implementation
@override
factory UnstakeBody.fromJson(Map<String, dynamic> json) => UnstakeBody(
operator: PublicKeyHash.fromAddress(json["operator"]),
withdrawal: ValueTransferOutput.fromJson(json["withdrawal"]),
fee: json.containsKey('fee') ? json["fee"] : null,
nonce: json["nonce"],
);