copyWith method

UtteranceResponseModel copyWith({
  1. double? start,
  2. double? end,
})

Implementation

UtteranceResponseModel copyWith({double? start, double? end}) {
  return UtteranceResponseModel(
      start: start ?? this.start, end: end ?? this.end);
}