GetBlobRequest constructor

GetBlobRequest({
  1. String? storeKey,
  2. String? recordKey,
  3. Hint? hint,
})

Implementation

factory GetBlobRequest({
  $core.String? storeKey,
  $core.String? recordKey,
  Hint? hint,
}) {
  final _result = create();
  if (storeKey != null) {
    _result.storeKey = storeKey;
  }
  if (recordKey != null) {
    _result.recordKey = recordKey;
  }
  if (hint != null) {
    _result.hint = hint;
  }
  return _result;
}