props property Null safety

List<Object> props
override

The list of properties that will be used to determine whether two instances are equal.

Implementation

@override
List<Object> get props {
  return [
    name,
    art ?? 'No art linked',
    end ?? 'No end given',
    start ?? 'No start given',
    itunesid ?? 'No itunes id given',
    originalArtist ?? 'Original artist not given',
  ];
}