copyWith method

LyricModel copyWith(
  1. Map<String, String>? tags,
  2. List<LyricLine>? lines
)

Implementation

LyricModel copyWith(Map<String, String>? tags, List<LyricLine>? lines) {
  return LyricModel(tags: tags ?? idTags, lines: lines ?? this.lines);
}