RequestDate constructor

RequestDate({
  1. int? startDate,
  2. int? endDate,
  3. String? title,
  4. String? interval,
})

Implementation

RequestDate({
  this.startDate,
  this.endDate,
  this.title,
  this.interval,
}) : super();