Avatars constructor

Avatars({
  1. List<Avatar>? custom,
  2. List<Avatar>? system,
})

Implementation

Avatars({List<Avatar>? custom, List<Avatar>? system})
    : custom = custom ?? [],
      system = system ?? [];