FindPhotoRequest constructor
Implementation
factory FindPhotoRequest({
$core.String? chainId,
$core.String? calibreId,
$core.String? id,
}) {
final $result = create();
if (chainId != null) {
$result.chainId = chainId;
}
if (calibreId != null) {
$result.calibreId = calibreId;
}
if (id != null) {
$result.id = id;
}
return $result;
}