Line data Source code
1 : 2 : class Dates { 3 : final DateTime min; 4 : final DateTime max; 5 : 6 2 : Dates(this.min, this.max); 7 : }