Avatar constructor
Avatar({})
Implementation
Avatar(
{this.fileName,
required this.id,
bool? isDeletable,
bool? isSelected,
bool? isSystemAvatar,
this.owner,
this.urls})
: isDeletable = isDeletable ?? false,
isSelected = isSelected ?? false,
isSystemAvatar = isSystemAvatar ?? false;