copyWith method

SystemAvatars copyWith({
  1. List<Avatar>? system,
})

Implementation

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