Input$StashBoxDraftSubmissionInput constructor
Input$StashBoxDraftSubmissionInput({ - required String id,
- @Deprecated('use stash_box_endpoint') int? stash_box_index,
- String? stash_box_endpoint,
})
Implementation
factory Input$StashBoxDraftSubmissionInput({
required String id,
@Deprecated('use stash_box_endpoint') int? stash_box_index,
String? stash_box_endpoint,
}) => Input$StashBoxDraftSubmissionInput._({
r'id': id,
if (stash_box_index != null) r'stash_box_index': stash_box_index,
if (stash_box_endpoint != null) r'stash_box_endpoint': stash_box_endpoint,
});