MetaDataModel constructor

MetaDataModel({
  1. String? title,
  2. String? dateTime,
  3. String? duration,
  4. String? location,
})

Implementation

MetaDataModel({
  this.title,
  this.dateTime,
  this.duration,
  this.location,
});