cover property

String? get cover

Backward-compatible getter that returns the first image from images.

Implementation

String? get cover => images.isNotEmpty ? images.first : null;