AiutaInputImage constructor

AiutaInputImage({
  1. required String id,
  2. required String url,
  3. required AiutaOwnerType type,
})

Creates an AiutaInputImage with the given unique id and url path, type of the image defines the way how the image should be stored and removed from the users' history.

Implementation

AiutaInputImage({
  required this.id,
  required this.url,
  required this.type,
});