blob: a3db2d5c741f5a7084623138101ec78905ceea20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import 'package:flutter/material.dart';
class MarkedDate implements MarkedDateInterface {
final Color color;
final int? id;
final TextStyle? textStyle;
final DateTime date;
MarkedDate({
required this.color,
this.id,
this.textStyle,
required this.date,
});
@override
bool operator ==(dynamic other) {
return date == other.date &&
color == other.color &&
textStyle == other.textStyle &&
id == other.id;
}
@override
DateTime getDate() => this.date;
@override
int? getId() => this.id;
@override
Color getColor() => this.color;
@override
TextStyle? getTextStyle() => this.textStyle;
@override
// TODO: implement hashCode
int get hashCode => super.hashCode;
}
abstract class MarkedDateInterface {
DateTime getDate();
Color getColor();
int? getId();
TextStyle? getTextStyle();
}
|