fromJson static method
Inherited by: BusinessAwayMessageScheduleAlways BusinessAwayMessageScheduleCustom BusinessAwayMessageScheduleOutsideOfOpeningHours
Implementation
static BusinessAwayMessageScheduleCustom? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return BusinessAwayMessageScheduleCustom(
startDate: (json['start_date'] as int?) ?? 0,
endDate: (json['end_date'] as int?) ?? 0,
);
}