copyWith method

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

Implementation

Avatars copyWith({List<Avatar>? custom, List<Avatar>? system}) {
  return Avatars(
    custom: custom ?? this.custom,
    system: system ?? this.system,
  );
}