AlbumModel constructor Null safety

const AlbumModel(
  1. {required int id,
  2. required int userId,
  3. String? title}
)

Creates an album model.

Implementation

const factory AlbumModel({
  required int id,
  required int userId,
  String? title,
}) = _AlbumModel;