GetBlobChunkRequest constructor
GetBlobChunkRequest(
{ - String? storeKey,
- String? recordKey,
- Int64? chunkNumber,
- Hint? hint,
})
Implementation
factory GetBlobChunkRequest({
$core.String? storeKey,
$core.String? recordKey,
$fixnum.Int64? chunkNumber,
Hint? hint,
}) {
final _result = create();
if (storeKey != null) {
_result.storeKey = storeKey;
}
if (recordKey != null) {
_result.recordKey = recordKey;
}
if (chunkNumber != null) {
_result.chunkNumber = chunkNumber;
}
if (hint != null) {
_result.hint = hint;
}
return _result;
}