copyWith method

PlaylistDetailPlaylistTracksHr copyWith({
  1. int? br,
  2. int? fid,
  3. int? size,
  4. double? vd,
})

Implementation

PlaylistDetailPlaylistTracksHr copyWith({
  int? br,
  int? fid,
  int? size,
  double? vd,
}) {
  return PlaylistDetailPlaylistTracksHr()
    ..br = br ?? this.br
    ..fid = fid ?? this.fid
    ..size = size ?? this.size
    ..vd = vd ?? this.vd;
}