SongCompanion constructor

const SongCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> name = const Value.absent(),
  3. Value<bool> locked = const Value.absent(),
  4. Value<bool> published = const Value.absent(),
  5. Value<String?> imagePath = const Value.absent(),
  6. Value<String?> description = const Value.absent(),
  7. Value<String?> note = const Value.absent(),
  8. Value<String?> youtubeCode = const Value.absent(),
  9. Value<String?> youtubeVideoInfo = const Value.absent(),
  10. Value<int> albumId = const Value.absent(),
})

Implementation

const SongCompanion({
  this.id = const Value.absent(),
  this.name = const Value.absent(),
  this.locked = const Value.absent(),
  this.published = const Value.absent(),
  this.imagePath = const Value.absent(),
  this.description = const Value.absent(),
  this.note = const Value.absent(),
  this.youtubeCode = const Value.absent(),
  this.youtubeVideoInfo = const Value.absent(),
  this.albumId = const Value.absent(),
});