copyWithWrapped method

ForcedAlignmentCharacterResponseModel copyWithWrapped({
  1. Wrapped<String>? text,
  2. Wrapped<double>? start,
  3. Wrapped<double>? end,
})

Implementation

ForcedAlignmentCharacterResponseModel copyWithWrapped(
    {Wrapped<String>? text, Wrapped<double>? start, Wrapped<double>? end}) {
  return ForcedAlignmentCharacterResponseModel(
      text: (text != null ? text.value : this.text),
      start: (start != null ? start.value : this.start),
      end: (end != null ? end.value : this.end));
}