fromJson method
Converts JSON into a VplanDate
.
Implementation
static VplanDate fromJson(dynamic json) {
return VplanDate(
DateTime.fromMillisecondsSinceEpoch(json['date']),
WeekTypeConverter.fromJson(json['week_type'])
);
}
Converts JSON into a VplanDate
.
static VplanDate fromJson(dynamic json) {
return VplanDate(
DateTime.fromMillisecondsSinceEpoch(json['date']),
WeekTypeConverter.fromJson(json['week_type'])
);
}