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