Date constructor

const Date(
  1. int year, [
  2. int day = 1,
  3. int month = 1
])

Implementation

const Date(this.year, [this.day = 1, this.month = 1]);