GetRecordRequest constructor
Implementation
factory GetRecordRequest({
$core.String? storeKey,
$core.String? key,
Hint? hint,
}) {
final _result = create();
if (storeKey != null) {
_result.storeKey = storeKey;
}
if (key != null) {
_result.key = key;
}
if (hint != null) {
_result.hint = hint;
}
return _result;
}