copyWith method

Mouth copyWith({
  1. MouthType? mouthType,
})

Implementation

Mouth copyWith({
  MouthType? mouthType,
}) {
  return Mouth(
    mouthType: mouthType ?? this.mouthType,
  );
}