DetailedEventData constructor

const DetailedEventData({
  1. String? title,
  2. DateTime? date,
  3. double? amount,
})

Implementation

const DetailedEventData({
  this.title,
  this.date,
  this.amount,
});