copyWithWrapped method

StartSpeakerSeparationResponseModel copyWithWrapped({
  1. Wrapped<String>? status,
})

Implementation

StartSpeakerSeparationResponseModel copyWithWrapped(
    {Wrapped<String>? status}) {
  return StartSpeakerSeparationResponseModel(
      status: (status != null ? status.value : this.status));
}