copyWith method

LyricSrcItemEntity_c copyWith({
  1. double? time,
  2. String? content,
})

Implementation

LyricSrcItemEntity_c copyWith({double? time, String? content}) {
  return LyricSrcItemEntity_c(
    time: time ?? this.time,
    content: content ?? this.content,
  );
}