copyWith method

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

Implementation

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