ReadPhotosRequest constructor
Implementation
factory ReadPhotosRequest({
$core.String? chainId,
$19.Timestamp? lastFetchTimestampUTC,
$core.int? offset,
$core.int? limit,
}) {
final result = create();
if (chainId != null) {
result.chainId = chainId;
}
if (lastFetchTimestampUTC != null) {
result.lastFetchTimestampUTC = lastFetchTimestampUTC;
}
if (offset != null) {
result.offset = offset;
}
if (limit != null) {
result.limit = limit;
}
return result;
}