Input$StashIDInput constructor

Input$StashIDInput({
  1. required String endpoint,
  2. required String stash_id,
  3. String? updated_at,
})

Implementation

factory Input$StashIDInput({
  required String endpoint,
  required String stash_id,
  String? updated_at,
}) => Input$StashIDInput._({
  r'endpoint': endpoint,
  r'stash_id': stash_id,
  if (updated_at != null) r'updated_at': updated_at,
});