static List<Holiday> listFromJson(dynamic json) => json is List && json.isNotEmpty ? json.map(Holiday.fromJson).toList() : <Holiday>[];