copyWith method

ForcedAlignmentCharacterResponseModel copyWith({
  1. String? text,
  2. double? start,
  3. double? end,
})

Implementation

ForcedAlignmentCharacterResponseModel copyWith(
    {String? text, double? start, double? end}) {
  return ForcedAlignmentCharacterResponseModel(
      text: text ?? this.text,
      start: start ?? this.start,
      end: end ?? this.end);
}