Input$ImageDestroyInput constructor
Input$ImageDestroyInput({ - required String id,
- bool? delete_file,
- bool? delete_generated,
- bool? destroy_file_entry,
})
Implementation
factory Input$ImageDestroyInput({
required String id,
bool? delete_file,
bool? delete_generated,
bool? destroy_file_entry,
}) => Input$ImageDestroyInput._({
r'id': id,
if (delete_file != null) r'delete_file': delete_file,
if (delete_generated != null) r'delete_generated': delete_generated,
if (destroy_file_entry != null) r'destroy_file_entry': destroy_file_entry,
});