copyWith method

Eyes copyWith({
  1. EyeType? eyeType,
})

Implementation

Eyes copyWith({
  EyeType? eyeType,
}) {
  return Eyes(
    eyeType: eyeType ?? this.eyeType,
  );
}