@@ -120,3 +120,147 @@ class IconDataSharpSolid extends IconData {
120120 fontPackage: 'font_awesome_flutter' ,
121121 );
122122}
123+
124+ /// [IconData] for a font awesome chisel thin icon from a code point. Only works if
125+ /// chisel icons (font awesome pro+, v7+) have been installed.
126+ ///
127+ /// Code points can be obtained from fontawesome.com
128+ class IconDataChiselRegular extends IconData {
129+ const IconDataChiselRegular (super .codePoint)
130+ : super (
131+ fontFamily: 'FontAwesomeChiselRegular' ,
132+ fontPackage: 'font_awesome_flutter' ,
133+ );
134+ }
135+
136+ /// [IconData] for a font awesome chisel solid icon from a code point. Only works if
137+ /// chisel icons (font awesome pro+, v7+) have been installed.
138+ ///
139+ /// Code points can be obtained from fontawesome.com
140+ class IconDataEtchSolid extends IconData {
141+ const IconDataEtchSolid (super .codePoint)
142+ : super (
143+ fontFamily: 'FontAwesomeEtchSolid' ,
144+ fontPackage: 'font_awesome_flutter' ,
145+ );
146+ }
147+
148+ /// [IconData] for a font awesome notdog solid icon from a code point. Only works if
149+ /// Notdog icons (font awesome pro+, v7+) have been installed.
150+ ///
151+ /// Code points can be obtained from fontawesome.com
152+ class IconDataNotdogSolid extends IconData {
153+ const IconDataNotdogSolid (super .codePoint)
154+ : super (
155+ fontFamily: 'FontAwesomeNotdogSolid' ,
156+ fontPackage: 'font_awesome_flutter' ,
157+ );
158+ }
159+
160+ /// [IconData] for a font awesome graphite solid icon from a code point. Only works if
161+ /// graphite icons (font awesome pro+, v7+) have been installed.
162+ ///
163+ /// Code points can be obtained from fontawesome.com
164+ class IconDataJellyRegular extends IconData {
165+ const IconDataJellyRegular (super .codePoint)
166+ : super (
167+ fontFamily: 'FontAwesomeJellyRegular' ,
168+ fontPackage: 'font_awesome_flutter' ,
169+ );
170+ }
171+
172+ /// [IconData] for a font awesome graphite solid icon from a code point. Only works if
173+ /// graphite icons (font awesome pro+, v7+) have been installed.
174+ ///
175+ /// Code points can be obtained from fontawesome.com
176+ class IconDataJellyFillRegular extends IconData {
177+ const IconDataJellyFillRegular (super .codePoint)
178+ : super (
179+ fontFamily: 'FontAwesomeJellyFillRegular' ,
180+ fontPackage: 'font_awesome_flutter' ,
181+ );
182+ }
183+
184+ /// [IconData] for a font awesome graphite solid icon from a code point. Only works if
185+ /// graphite icons (font awesome pro+, v7+) have been installed.
186+ ///
187+ /// Code points can be obtained from fontawesome.com
188+ class IconDataSlabRegular extends IconData {
189+ const IconDataSlabRegular (super .codePoint)
190+ : super (
191+ fontFamily: 'FontAwesomeSlabRegular' ,
192+ fontPackage: 'font_awesome_flutter' ,
193+ );
194+ }
195+
196+ /// [IconData] for a font awesome graphite solid icon from a code point. Only works if
197+ /// graphite icons (font awesome pro+, v7+) have been installed.
198+ ///
199+ /// Code points can be obtained from fontawesome.com
200+ class IconDataSlabPressRegular extends IconData {
201+ const IconDataSlabPressRegular (super .codePoint)
202+ : super (
203+ fontFamily: 'FontAwesomeSlabPressRegular' ,
204+ fontPackage: 'font_awesome_flutter' ,
205+ );
206+ }
207+
208+ /// [IconData] for a font awesome graphite solid icon from a code point. Only works if
209+ /// graphite icons (font awesome pro+, v7+) have been installed.
210+ ///
211+ /// Code points can be obtained from fontawesome.com
212+ class IconDataThumbprintLight extends IconData {
213+ const IconDataThumbprintLight (super .codePoint)
214+ : super (
215+ fontFamily: 'FontAwesomeThumbprintLight' ,
216+ fontPackage: 'font_awesome_flutter' ,
217+ );
218+ }
219+
220+ /// [IconData] for a font awesome whiteboard semibold icon from a code point. Only works if
221+ /// whiteboard icons (font awesome pro+, v7+) have been installed.
222+ ///
223+ /// Code points can be obtained from fontawesome.com
224+ class IconDataWhiteboardSemibold extends IconData {
225+ const IconDataWhiteboardSemibold (super .codePoint)
226+ : super (
227+ fontFamily: 'FontAwesomeWhiteboardSemibold' ,
228+ fontPackage: 'font_awesome_flutter' ,
229+ );
230+ }
231+
232+ /// [IconData] for a font awesome utility semibold icon from a code point. Only works if
233+ /// utility icons (font awesome pro+, v7.1.0+) have been installed.
234+ ///
235+ /// Code points can be obtained from fontawesome.com
236+ class IconDataUtilitySemibold extends IconData {
237+ const IconDataUtilitySemibold (super .codePoint)
238+ : super (
239+ fontFamily: 'FontAwesomeUtilitySemibold' ,
240+ fontPackage: 'font_awesome_flutter' ,
241+ );
242+ }
243+
244+ /// [IconData] for a font awesome utility fill semibold icon from a code point. Only works if
245+ /// utility fill icons (font awesome pro+, v7.1.0+) have been installed.
246+ ///
247+ /// Code points can be obtained from fontawesome.com
248+ class IconDataUtilityFillSemibold extends IconData {
249+ const IconDataUtilityFillSemibold (super .codePoint)
250+ : super (
251+ fontFamily: 'FontAwesomeUtilityFillSemibold' ,
252+ fontPackage: 'font_awesome_flutter' ,
253+ );
254+ }
255+
256+ /// [IconData] for a font awesome graphite thin icon from a code point. Only works if
257+ /// graphite icons (font awesome pro+, v7.2.0+) have been installed.
258+ ///
259+ /// Code points can be obtained from fontawesome.com
260+ class IconDataGraphiteThin extends IconData {
261+ const IconDataGraphiteThin (super .codePoint)
262+ : super (
263+ fontFamily: 'FontAwesomeGraphiteThin' ,
264+ fontPackage: 'font_awesome_flutter' ,
265+ );
266+ }
0 commit comments