copyWith method
Creates a copy of this AyahRangeInfo with the given fields replaced with new values
Implementation
AyahRangeInfo copyWith({
int? start,
int? end,
int? count,
}) {
return AyahRangeInfo(
start: start ?? this.start,
end: end ?? this.end,
count: count ?? this.count,
);
}