diff --git a/flutter/deps/font_awesome_flutter/lib/font_awesome_flutter.dart b/flutter/deps/font_awesome_flutter/lib/font_awesome_flutter.dart index dca07f0..da8e192 100644 --- a/flutter/deps/font_awesome_flutter/lib/font_awesome_flutter.dart +++ b/flutter/deps/font_awesome_flutter/lib/font_awesome_flutter.dart @@ -14,294 +14,294 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/0?style=solid /// Digit Zero, nada, none, zero, zilch - static const IconData solidZero = IconDataSolid(0x30); + static const IconData solidZero = IconData(0x30, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 0 icon /// /// https://fontawesome.com/icons/0?style=regular /// Digit Zero, nada, none, zero, zilch - static const IconData zero = IconDataRegular(0x30); + static const IconData zero = IconData(0x30, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 0 icon /// /// https://fontawesome.com/icons/0?style=light /// Digit Zero, nada, none, zero, zilch - static const IconData lightZero = IconDataLight(0x30); + static const IconData lightZero = IconData(0x30, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 0 icon /// /// https://fontawesome.com/icons/0?style=thin /// Digit Zero, nada, none, zero, zilch - static const IconData thinZero = IconDataThin(0x30); + static const IconData thinZero = IconData(0x30, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 1 icon /// /// https://fontawesome.com/icons/1?style=solid /// Digit One, one - static const IconData solidOne = IconDataSolid(0x31); + static const IconData solidOne = IconData(0x31, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 1 icon /// /// https://fontawesome.com/icons/1?style=regular /// Digit One, one - static const IconData one = IconDataRegular(0x31); + static const IconData one = IconData(0x31, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 1 icon /// /// https://fontawesome.com/icons/1?style=light /// Digit One, one - static const IconData lightOne = IconDataLight(0x31); + static const IconData lightOne = IconData(0x31, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 1 icon /// /// https://fontawesome.com/icons/1?style=thin /// Digit One, one - static const IconData thinOne = IconDataThin(0x31); + static const IconData thinOne = IconData(0x31, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 2 icon /// /// https://fontawesome.com/icons/2?style=solid /// Digit Two, two - static const IconData solidTwo = IconDataSolid(0x32); + static const IconData solidTwo = IconData(0x32, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 2 icon /// /// https://fontawesome.com/icons/2?style=regular /// Digit Two, two - static const IconData two = IconDataRegular(0x32); + static const IconData two = IconData(0x32, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 2 icon /// /// https://fontawesome.com/icons/2?style=light /// Digit Two, two - static const IconData lightTwo = IconDataLight(0x32); + static const IconData lightTwo = IconData(0x32, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 2 icon /// /// https://fontawesome.com/icons/2?style=thin /// Digit Two, two - static const IconData thinTwo = IconDataThin(0x32); + static const IconData thinTwo = IconData(0x32, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 3 icon /// /// https://fontawesome.com/icons/3?style=solid /// Digit Three, three - static const IconData solidThree = IconDataSolid(0x33); + static const IconData solidThree = IconData(0x33, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 3 icon /// /// https://fontawesome.com/icons/3?style=regular /// Digit Three, three - static const IconData three = IconDataRegular(0x33); + static const IconData three = IconData(0x33, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 3 icon /// /// https://fontawesome.com/icons/3?style=light /// Digit Three, three - static const IconData lightThree = IconDataLight(0x33); + static const IconData lightThree = IconData(0x33, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 3 icon /// /// https://fontawesome.com/icons/3?style=thin /// Digit Three, three - static const IconData thinThree = IconDataThin(0x33); + static const IconData thinThree = IconData(0x33, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 4 icon /// /// https://fontawesome.com/icons/4?style=solid /// Digit Four, four - static const IconData solidFour = IconDataSolid(0x34); + static const IconData solidFour = IconData(0x34, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 4 icon /// /// https://fontawesome.com/icons/4?style=regular /// Digit Four, four - static const IconData four = IconDataRegular(0x34); + static const IconData four = IconData(0x34, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 4 icon /// /// https://fontawesome.com/icons/4?style=light /// Digit Four, four - static const IconData lightFour = IconDataLight(0x34); + static const IconData lightFour = IconData(0x34, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 4 icon /// /// https://fontawesome.com/icons/4?style=thin /// Digit Four, four - static const IconData thinFour = IconDataThin(0x34); + static const IconData thinFour = IconData(0x34, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 5 icon /// /// https://fontawesome.com/icons/5?style=solid /// Digit Five, five - static const IconData solidFive = IconDataSolid(0x35); + static const IconData solidFive = IconData(0x35, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 5 icon /// /// https://fontawesome.com/icons/5?style=regular /// Digit Five, five - static const IconData five = IconDataRegular(0x35); + static const IconData five = IconData(0x35, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 5 icon /// /// https://fontawesome.com/icons/5?style=light /// Digit Five, five - static const IconData lightFive = IconDataLight(0x35); + static const IconData lightFive = IconData(0x35, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 5 icon /// /// https://fontawesome.com/icons/5?style=thin /// Digit Five, five - static const IconData thinFive = IconDataThin(0x35); + static const IconData thinFive = IconData(0x35, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 6 icon /// /// https://fontawesome.com/icons/6?style=solid /// Digit Six, six - static const IconData solidSix = IconDataSolid(0x36); + static const IconData solidSix = IconData(0x36, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 6 icon /// /// https://fontawesome.com/icons/6?style=regular /// Digit Six, six - static const IconData six = IconDataRegular(0x36); + static const IconData six = IconData(0x36, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 6 icon /// /// https://fontawesome.com/icons/6?style=light /// Digit Six, six - static const IconData lightSix = IconDataLight(0x36); + static const IconData lightSix = IconData(0x36, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 6 icon /// /// https://fontawesome.com/icons/6?style=thin /// Digit Six, six - static const IconData thinSix = IconDataThin(0x36); + static const IconData thinSix = IconData(0x36, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 7 icon /// /// https://fontawesome.com/icons/7?style=solid /// Digit Seven, seven - static const IconData solidSeven = IconDataSolid(0x37); + static const IconData solidSeven = IconData(0x37, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 7 icon /// /// https://fontawesome.com/icons/7?style=regular /// Digit Seven, seven - static const IconData seven = IconDataRegular(0x37); + static const IconData seven = IconData(0x37, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 7 icon /// /// https://fontawesome.com/icons/7?style=light /// Digit Seven, seven - static const IconData lightSeven = IconDataLight(0x37); + static const IconData lightSeven = IconData(0x37, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 7 icon /// /// https://fontawesome.com/icons/7?style=thin /// Digit Seven, seven - static const IconData thinSeven = IconDataThin(0x37); + static const IconData thinSeven = IconData(0x37, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 8 icon /// /// https://fontawesome.com/icons/8?style=solid /// Digit Eight, eight - static const IconData solidEight = IconDataSolid(0x38); + static const IconData solidEight = IconData(0x38, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 8 icon /// /// https://fontawesome.com/icons/8?style=regular /// Digit Eight, eight - static const IconData eight = IconDataRegular(0x38); + static const IconData eight = IconData(0x38, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 8 icon /// /// https://fontawesome.com/icons/8?style=light /// Digit Eight, eight - static const IconData lightEight = IconDataLight(0x38); + static const IconData lightEight = IconData(0x38, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 8 icon /// /// https://fontawesome.com/icons/8?style=thin /// Digit Eight, eight - static const IconData thinEight = IconDataThin(0x38); + static const IconData thinEight = IconData(0x38, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 9 icon /// /// https://fontawesome.com/icons/9?style=solid /// Digit Nine, nine - static const IconData solidNine = IconDataSolid(0x39); + static const IconData solidNine = IconData(0x39, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 9 icon /// /// https://fontawesome.com/icons/9?style=regular /// Digit Nine, nine - static const IconData nine = IconDataRegular(0x39); + static const IconData nine = IconData(0x39, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 9 icon /// /// https://fontawesome.com/icons/9?style=light /// Digit Nine, nine - static const IconData lightNine = IconDataLight(0x39); + static const IconData lightNine = IconData(0x39, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 9 icon /// /// https://fontawesome.com/icons/9?style=thin /// Digit Nine, nine - static const IconData thinNine = IconDataThin(0x39); + static const IconData thinNine = IconData(0x39, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 00 icon /// /// https://fontawesome.com/icons/00?style=solid /// double zero, hundred, zero - static const IconData solidZeroZero = IconDataSolid(0xe467); + static const IconData solidZeroZero = IconData(0xe467, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 00 icon /// /// https://fontawesome.com/icons/00?style=regular /// double zero, hundred, zero - static const IconData zeroZero = IconDataRegular(0xe467); + static const IconData zeroZero = IconData(0xe467, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 00 icon /// /// https://fontawesome.com/icons/00?style=light /// double zero, hundred, zero - static const IconData lightZeroZero = IconDataLight(0xe467); + static const IconData lightZeroZero = IconData(0xe467, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 00 icon /// /// https://fontawesome.com/icons/00?style=thin /// double zero, hundred, zero - static const IconData thinZeroZero = IconDataThin(0xe467); + static const IconData thinZeroZero = IconData(0xe467, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid 360 Degrees icon /// /// https://fontawesome.com/icons/360-degrees?style=solid /// 3D, panorama, revolve, rotate - static const IconData solidThreeHundredSixtyDegrees = IconDataSolid(0xe2dc); + static const IconData solidThreeHundredSixtyDegrees = IconData(0xe2dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular 360 Degrees icon /// /// https://fontawesome.com/icons/360-degrees?style=regular /// 3D, panorama, revolve, rotate - static const IconData threeHundredSixtyDegrees = IconDataRegular(0xe2dc); + static const IconData threeHundredSixtyDegrees = IconData(0xe2dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light 360 Degrees icon /// /// https://fontawesome.com/icons/360-degrees?style=light /// 3D, panorama, revolve, rotate - static const IconData lightThreeHundredSixtyDegrees = IconDataLight(0xe2dc); + static const IconData lightThreeHundredSixtyDegrees = IconData(0xe2dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin 360 Degrees icon /// /// https://fontawesome.com/icons/360-degrees?style=thin /// 3D, panorama, revolve, rotate - static const IconData thinThreeHundredSixtyDegrees = IconDataThin(0xe2dc); + static const IconData thinThreeHundredSixtyDegrees = IconData(0xe2dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands 42.group icon /// /// https://fontawesome.com/icons/42-group?style=brands - static const IconData fortyTwoGroup = IconDataBrands(0xe080); + static const IconData fortyTwoGroup = IconData(0xe080, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias innosoft for icon [fortyTwoGroup] @Deprecated('Use "fortyTwoGroup" instead.') @@ -310,120 +310,120 @@ class FontAwesomeIcons { /// Brands 500px icon /// /// https://fontawesome.com/icons/500px?style=brands - static const IconData fiveHundredPx = IconDataBrands(0xf26e); + static const IconData fiveHundredPx = IconData(0xf26e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid A icon /// /// https://fontawesome.com/icons/a?style=solid /// Latin Capital Letter A, Latin Small Letter A, letter - static const IconData solidA = IconDataSolid(0x41); + static const IconData solidA = IconData(0x41, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular A icon /// /// https://fontawesome.com/icons/a?style=regular /// Latin Capital Letter A, Latin Small Letter A, letter - static const IconData a = IconDataRegular(0x41); + static const IconData a = IconData(0x41, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light A icon /// /// https://fontawesome.com/icons/a?style=light /// Latin Capital Letter A, Latin Small Letter A, letter - static const IconData lightA = IconDataLight(0x41); + static const IconData lightA = IconData(0x41, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin A icon /// /// https://fontawesome.com/icons/a?style=thin /// Latin Capital Letter A, Latin Small Letter A, letter - static const IconData thinA = IconDataThin(0x41); + static const IconData thinA = IconData(0x41, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Abacus icon /// /// https://fontawesome.com/icons/abacus?style=solid /// abacus, addition, ancient, arithmetic, calculation, calculator, counting, hexadecimal, math, subtraction - static const IconData solidAbacus = IconDataSolid(0xf640); + static const IconData solidAbacus = IconData(0xf640, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Abacus icon /// /// https://fontawesome.com/icons/abacus?style=regular /// abacus, addition, ancient, arithmetic, calculation, calculator, counting, hexadecimal, math, subtraction - static const IconData abacus = IconDataRegular(0xf640); + static const IconData abacus = IconData(0xf640, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Abacus icon /// /// https://fontawesome.com/icons/abacus?style=light /// abacus, addition, ancient, arithmetic, calculation, calculator, counting, hexadecimal, math, subtraction - static const IconData lightAbacus = IconDataLight(0xf640); + static const IconData lightAbacus = IconData(0xf640, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Abacus icon /// /// https://fontawesome.com/icons/abacus?style=thin /// abacus, addition, ancient, arithmetic, calculation, calculator, counting, hexadecimal, math, subtraction - static const IconData thinAbacus = IconDataThin(0xf640); + static const IconData thinAbacus = IconData(0xf640, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Accent Grave icon /// /// https://fontawesome.com/icons/accent-grave?style=solid /// Grave Accent, apostrophe, tick - static const IconData solidAccentGrave = IconDataSolid(0x60); + static const IconData solidAccentGrave = IconData(0x60, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Accent Grave icon /// /// https://fontawesome.com/icons/accent-grave?style=regular /// Grave Accent, apostrophe, tick - static const IconData accentGrave = IconDataRegular(0x60); + static const IconData accentGrave = IconData(0x60, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Accent Grave icon /// /// https://fontawesome.com/icons/accent-grave?style=light /// Grave Accent, apostrophe, tick - static const IconData lightAccentGrave = IconDataLight(0x60); + static const IconData lightAccentGrave = IconData(0x60, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Accent Grave icon /// /// https://fontawesome.com/icons/accent-grave?style=thin /// Grave Accent, apostrophe, tick - static const IconData thinAccentGrave = IconDataThin(0x60); + static const IconData thinAccentGrave = IconData(0x60, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Accessible Icon icon /// /// https://fontawesome.com/icons/accessible-icon?style=brands /// accessibility, disabled, handicap, person, uer, wheelchair, wheelchair-alt - static const IconData accessibleIcon = IconDataBrands(0xf368); + static const IconData accessibleIcon = IconData(0xf368, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Accusoft icon /// /// https://fontawesome.com/icons/accusoft?style=brands - static const IconData accusoft = IconDataBrands(0xf369); + static const IconData accusoft = IconData(0xf369, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Acorn icon /// /// https://fontawesome.com/icons/acorn?style=solid /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData solidAcorn = IconDataSolid(0xf6ae); + static const IconData solidAcorn = IconData(0xf6ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Acorn icon /// /// https://fontawesome.com/icons/acorn?style=regular /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData acorn = IconDataRegular(0xf6ae); + static const IconData acorn = IconData(0xf6ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Acorn icon /// /// https://fontawesome.com/icons/acorn?style=light /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData lightAcorn = IconDataLight(0xf6ae); + static const IconData lightAcorn = IconData(0xf6ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Acorn icon /// /// https://fontawesome.com/icons/acorn?style=thin /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData thinAcorn = IconDataThin(0xf6ae); + static const IconData thinAcorn = IconData(0xf6ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Address Book icon /// /// https://fontawesome.com/icons/address-book?style=solid /// contact, directory, employee, index, little black book, portfolio, rolodex, uer, username - static const IconData solidAddressBook = IconDataSolid(0xf2b9); + static const IconData solidAddressBook = IconData(0xf2b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias contact-book for icon [solidAddressBook] @Deprecated('Use "solidAddressBook" instead.') @@ -433,7 +433,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-book?style=regular /// contact, directory, employee, index, little black book, portfolio, rolodex, uer, username - static const IconData addressBook = IconDataRegular(0xf2b9); + static const IconData addressBook = IconData(0xf2b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias contact-book for icon [addressBook] @Deprecated('Use "addressBook" instead.') @@ -443,7 +443,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-book?style=light /// contact, directory, employee, index, little black book, portfolio, rolodex, uer, username - static const IconData lightAddressBook = IconDataLight(0xf2b9); + static const IconData lightAddressBook = IconData(0xf2b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias contact-book for icon [lightAddressBook] @Deprecated('Use "lightAddressBook" instead.') @@ -453,7 +453,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-book?style=thin /// contact, directory, employee, index, little black book, portfolio, rolodex, uer, username - static const IconData thinAddressBook = IconDataThin(0xf2b9); + static const IconData thinAddressBook = IconData(0xf2b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias contact-book for icon [thinAddressBook] @Deprecated('Use "thinAddressBook" instead.') @@ -463,7 +463,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-card?style=solid /// about, contact, employee, id, identification, portfolio, postcard, profile, registration, uer, username - static const IconData solidAddressCard = IconDataSolid(0xf2bb); + static const IconData solidAddressCard = IconData(0xf2bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias contact-card for icon [solidAddressCard] @Deprecated('Use "solidAddressCard" instead.') @@ -477,7 +477,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-card?style=regular /// about, contact, employee, id, identification, portfolio, postcard, profile, registration, uer, username - static const IconData addressCard = IconDataRegular(0xf2bb); + static const IconData addressCard = IconData(0xf2bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias contact-card for icon [addressCard] @Deprecated('Use "addressCard" instead.') @@ -491,7 +491,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-card?style=light /// about, contact, employee, id, identification, portfolio, postcard, profile, registration, uer, username - static const IconData lightAddressCard = IconDataLight(0xf2bb); + static const IconData lightAddressCard = IconData(0xf2bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias contact-card for icon [lightAddressCard] @Deprecated('Use "lightAddressCard" instead.') @@ -505,7 +505,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/address-card?style=thin /// about, contact, employee, id, identification, portfolio, postcard, profile, registration, uer, username - static const IconData thinAddressCard = IconDataThin(0xf2bb); + static const IconData thinAddressCard = IconData(0xf2bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias contact-card for icon [thinAddressCard] @Deprecated('Use "thinAddressCard" instead.') @@ -518,369 +518,369 @@ class FontAwesomeIcons { /// Brands App.net icon /// /// https://fontawesome.com/icons/adn?style=brands - static const IconData adn = IconDataBrands(0xf170); + static const IconData adn = IconData(0xf170, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Adversal icon /// /// https://fontawesome.com/icons/adversal?style=brands - static const IconData adversal = IconDataBrands(0xf36a); + static const IconData adversal = IconData(0xf36a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands affiliatetheme icon /// /// https://fontawesome.com/icons/affiliatetheme?style=brands - static const IconData affiliatetheme = IconDataBrands(0xf36b); + static const IconData affiliatetheme = IconData(0xf36b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Air Conditioner icon /// /// https://fontawesome.com/icons/air-conditioner?style=solid /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconData solidAirConditioner = IconDataSolid(0xf8f4); + static const IconData solidAirConditioner = IconData(0xf8f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Air Conditioner icon /// /// https://fontawesome.com/icons/air-conditioner?style=regular /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconData airConditioner = IconDataRegular(0xf8f4); + static const IconData airConditioner = IconData(0xf8f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Air Conditioner icon /// /// https://fontawesome.com/icons/air-conditioner?style=light /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconData lightAirConditioner = IconDataLight(0xf8f4); + static const IconData lightAirConditioner = IconData(0xf8f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Air Conditioner icon /// /// https://fontawesome.com/icons/air-conditioner?style=thin /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconData thinAirConditioner = IconDataThin(0xf8f4); + static const IconData thinAirConditioner = IconData(0xf8f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Airbnb icon /// /// https://fontawesome.com/icons/airbnb?style=brands - static const IconData airbnb = IconDataBrands(0xf834); + static const IconData airbnb = IconData(0xf834, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Airplay icon /// /// https://fontawesome.com/icons/airplay?style=solid /// apple, share, stream - static const IconData solidAirplay = IconDataSolid(0xe089); + static const IconData solidAirplay = IconData(0xe089, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Airplay icon /// /// https://fontawesome.com/icons/airplay?style=regular /// apple, share, stream - static const IconData airplay = IconDataRegular(0xe089); + static const IconData airplay = IconData(0xe089, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Airplay icon /// /// https://fontawesome.com/icons/airplay?style=light /// apple, share, stream - static const IconData lightAirplay = IconDataLight(0xe089); + static const IconData lightAirplay = IconData(0xe089, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Airplay icon /// /// https://fontawesome.com/icons/airplay?style=thin /// apple, share, stream - static const IconData thinAirplay = IconDataThin(0xe089); + static const IconData thinAirplay = IconData(0xe089, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alarm Clock icon /// /// https://fontawesome.com/icons/alarm-clock?style=solid /// alarm, alarm clock, clock, date, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmClock = IconDataSolid(0xf34e); + static const IconData solidAlarmClock = IconData(0xf34e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alarm Clock icon /// /// https://fontawesome.com/icons/alarm-clock?style=regular /// alarm, alarm clock, clock, date, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmClock = IconDataRegular(0xf34e); + static const IconData alarmClock = IconData(0xf34e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alarm Clock icon /// /// https://fontawesome.com/icons/alarm-clock?style=light /// alarm, alarm clock, clock, date, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmClock = IconDataLight(0xf34e); + static const IconData lightAlarmClock = IconData(0xf34e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alarm Clock icon /// /// https://fontawesome.com/icons/alarm-clock?style=thin /// alarm, alarm clock, clock, date, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData thinAlarmClock = IconDataThin(0xf34e); + static const IconData thinAlarmClock = IconData(0xf34e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alarm Exclamation icon /// /// https://fontawesome.com/icons/alarm-exclamation?style=solid /// alert, attention, date, failed, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmExclamation = IconDataSolid(0xf843); + static const IconData solidAlarmExclamation = IconData(0xf843, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alarm Exclamation icon /// /// https://fontawesome.com/icons/alarm-exclamation?style=regular /// alert, attention, date, failed, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmExclamation = IconDataRegular(0xf843); + static const IconData alarmExclamation = IconData(0xf843, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alarm Exclamation icon /// /// https://fontawesome.com/icons/alarm-exclamation?style=light /// alert, attention, date, failed, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmExclamation = IconDataLight(0xf843); + static const IconData lightAlarmExclamation = IconData(0xf843, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alarm Exclamation icon /// /// https://fontawesome.com/icons/alarm-exclamation?style=thin /// alert, attention, date, failed, late, pending, reminder, sleep, snooze, timer, timestamp, watch - static const IconData thinAlarmExclamation = IconDataThin(0xf843); + static const IconData thinAlarmExclamation = IconData(0xf843, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alarm Plus icon /// /// https://fontawesome.com/icons/alarm-plus?style=solid /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmPlus = IconDataSolid(0xf844); + static const IconData solidAlarmPlus = IconData(0xf844, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alarm Plus icon /// /// https://fontawesome.com/icons/alarm-plus?style=regular /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmPlus = IconDataRegular(0xf844); + static const IconData alarmPlus = IconData(0xf844, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alarm Plus icon /// /// https://fontawesome.com/icons/alarm-plus?style=light /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmPlus = IconDataLight(0xf844); + static const IconData lightAlarmPlus = IconData(0xf844, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alarm Plus icon /// /// https://fontawesome.com/icons/alarm-plus?style=thin /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData thinAlarmPlus = IconDataThin(0xf844); + static const IconData thinAlarmPlus = IconData(0xf844, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alarm Snooze icon /// /// https://fontawesome.com/icons/alarm-snooze?style=solid /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmSnooze = IconDataSolid(0xf845); + static const IconData solidAlarmSnooze = IconData(0xf845, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alarm Snooze icon /// /// https://fontawesome.com/icons/alarm-snooze?style=regular /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmSnooze = IconDataRegular(0xf845); + static const IconData alarmSnooze = IconData(0xf845, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alarm Snooze icon /// /// https://fontawesome.com/icons/alarm-snooze?style=light /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmSnooze = IconDataLight(0xf845); + static const IconData lightAlarmSnooze = IconData(0xf845, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alarm Snooze icon /// /// https://fontawesome.com/icons/alarm-snooze?style=thin /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData thinAlarmSnooze = IconDataThin(0xf845); + static const IconData thinAlarmSnooze = IconData(0xf845, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album icon /// /// https://fontawesome.com/icons/album?style=solid /// computer, computer disk, disk, library, minidisk, music, optical, record, song, vinyl - static const IconData solidAlbum = IconDataSolid(0xf89f); + static const IconData solidAlbum = IconData(0xf89f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album icon /// /// https://fontawesome.com/icons/album?style=regular /// computer, computer disk, disk, library, minidisk, music, optical, record, song, vinyl - static const IconData album = IconDataRegular(0xf89f); + static const IconData album = IconData(0xf89f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album icon /// /// https://fontawesome.com/icons/album?style=light /// computer, computer disk, disk, library, minidisk, music, optical, record, song, vinyl - static const IconData lightAlbum = IconDataLight(0xf89f); + static const IconData lightAlbum = IconData(0xf89f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album icon /// /// https://fontawesome.com/icons/album?style=thin /// computer, computer disk, disk, library, minidisk, music, optical, record, song, vinyl - static const IconData thinAlbum = IconDataThin(0xf89f); + static const IconData thinAlbum = IconData(0xf89f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album Circle Plus icon /// /// https://fontawesome.com/icons/album-circle-plus?style=solid /// computer, disk, library, minidisk, music, new, optical, record, song, vinyl - static const IconData solidAlbumCirclePlus = IconDataSolid(0xe48c); + static const IconData solidAlbumCirclePlus = IconData(0xe48c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album Circle Plus icon /// /// https://fontawesome.com/icons/album-circle-plus?style=regular /// computer, disk, library, minidisk, music, new, optical, record, song, vinyl - static const IconData albumCirclePlus = IconDataRegular(0xe48c); + static const IconData albumCirclePlus = IconData(0xe48c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album Circle Plus icon /// /// https://fontawesome.com/icons/album-circle-plus?style=light /// computer, disk, library, minidisk, music, new, optical, record, song, vinyl - static const IconData lightAlbumCirclePlus = IconDataLight(0xe48c); + static const IconData lightAlbumCirclePlus = IconData(0xe48c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album Circle Plus icon /// /// https://fontawesome.com/icons/album-circle-plus?style=thin /// computer, disk, library, minidisk, music, new, optical, record, song, vinyl - static const IconData thinAlbumCirclePlus = IconDataThin(0xe48c); + static const IconData thinAlbumCirclePlus = IconData(0xe48c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album Circle User icon /// /// https://fontawesome.com/icons/album-circle-user?style=solid /// artist, computer, disk, library, minidisk, music, optical, record, shared, song, uer, vinyl - static const IconData solidAlbumCircleUser = IconDataSolid(0xe48d); + static const IconData solidAlbumCircleUser = IconData(0xe48d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album Circle User icon /// /// https://fontawesome.com/icons/album-circle-user?style=regular /// artist, computer, disk, library, minidisk, music, optical, record, shared, song, uer, vinyl - static const IconData albumCircleUser = IconDataRegular(0xe48d); + static const IconData albumCircleUser = IconData(0xe48d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album Circle User icon /// /// https://fontawesome.com/icons/album-circle-user?style=light /// artist, computer, disk, library, minidisk, music, optical, record, shared, song, uer, vinyl - static const IconData lightAlbumCircleUser = IconDataLight(0xe48d); + static const IconData lightAlbumCircleUser = IconData(0xe48d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album Circle User icon /// /// https://fontawesome.com/icons/album-circle-user?style=thin /// artist, computer, disk, library, minidisk, music, optical, record, shared, song, uer, vinyl - static const IconData thinAlbumCircleUser = IconDataThin(0xe48d); + static const IconData thinAlbumCircleUser = IconData(0xe48d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album Collection icon /// /// https://fontawesome.com/icons/album-collection?style=solid /// catalog, collection, library, music, record, song, vinyl - static const IconData solidAlbumCollection = IconDataSolid(0xf8a0); + static const IconData solidAlbumCollection = IconData(0xf8a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album Collection icon /// /// https://fontawesome.com/icons/album-collection?style=regular /// catalog, collection, library, music, record, song, vinyl - static const IconData albumCollection = IconDataRegular(0xf8a0); + static const IconData albumCollection = IconData(0xf8a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album Collection icon /// /// https://fontawesome.com/icons/album-collection?style=light /// catalog, collection, library, music, record, song, vinyl - static const IconData lightAlbumCollection = IconDataLight(0xf8a0); + static const IconData lightAlbumCollection = IconData(0xf8a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album Collection icon /// /// https://fontawesome.com/icons/album-collection?style=thin /// catalog, collection, library, music, record, song, vinyl - static const IconData thinAlbumCollection = IconDataThin(0xf8a0); + static const IconData thinAlbumCollection = IconData(0xf8a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album Collection Circle Plus icon /// /// https://fontawesome.com/icons/album-collection-circle-plus?style=solid /// catalog, collection, library, music, record, song, vinyl - static const IconData solidAlbumCollectionCirclePlus = IconDataSolid(0xe48e); + static const IconData solidAlbumCollectionCirclePlus = IconData(0xe48e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album Collection Circle Plus icon /// /// https://fontawesome.com/icons/album-collection-circle-plus?style=regular /// catalog, collection, library, music, record, song, vinyl - static const IconData albumCollectionCirclePlus = IconDataRegular(0xe48e); + static const IconData albumCollectionCirclePlus = IconData(0xe48e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album Collection Circle Plus icon /// /// https://fontawesome.com/icons/album-collection-circle-plus?style=light /// catalog, collection, library, music, record, song, vinyl - static const IconData lightAlbumCollectionCirclePlus = IconDataLight(0xe48e); + static const IconData lightAlbumCollectionCirclePlus = IconData(0xe48e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album Collection Circle Plus icon /// /// https://fontawesome.com/icons/album-collection-circle-plus?style=thin /// catalog, collection, library, music, record, song, vinyl - static const IconData thinAlbumCollectionCirclePlus = IconDataThin(0xe48e); + static const IconData thinAlbumCollectionCirclePlus = IconData(0xe48e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Album Collection Circle User icon /// /// https://fontawesome.com/icons/album-collection-circle-user?style=solid /// artist, catalog, collection, library, music, record, shared, song, uer, vinyl - static const IconData solidAlbumCollectionCircleUser = IconDataSolid(0xe48f); + static const IconData solidAlbumCollectionCircleUser = IconData(0xe48f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Album Collection Circle User icon /// /// https://fontawesome.com/icons/album-collection-circle-user?style=regular /// artist, catalog, collection, library, music, record, shared, song, uer, vinyl - static const IconData albumCollectionCircleUser = IconDataRegular(0xe48f); + static const IconData albumCollectionCircleUser = IconData(0xe48f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Album Collection Circle User icon /// /// https://fontawesome.com/icons/album-collection-circle-user?style=light /// artist, catalog, collection, library, music, record, shared, song, uer, vinyl - static const IconData lightAlbumCollectionCircleUser = IconDataLight(0xe48f); + static const IconData lightAlbumCollectionCircleUser = IconData(0xe48f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Album Collection Circle User icon /// /// https://fontawesome.com/icons/album-collection-circle-user?style=thin /// artist, catalog, collection, library, music, record, shared, song, uer, vinyl - static const IconData thinAlbumCollectionCircleUser = IconDataThin(0xe48f); + static const IconData thinAlbumCollectionCircleUser = IconData(0xe48f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Algolia icon /// /// https://fontawesome.com/icons/algolia?style=brands - static const IconData algolia = IconDataBrands(0xf36c); + static const IconData algolia = IconData(0xf36c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Alicorn icon /// /// https://fontawesome.com/icons/alicorn?style=solid /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData solidAlicorn = IconDataSolid(0xf6b0); + static const IconData solidAlicorn = IconData(0xf6b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alicorn icon /// /// https://fontawesome.com/icons/alicorn?style=regular /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData alicorn = IconDataRegular(0xf6b0); + static const IconData alicorn = IconData(0xf6b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alicorn icon /// /// https://fontawesome.com/icons/alicorn?style=light /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData lightAlicorn = IconDataLight(0xf6b0); + static const IconData lightAlicorn = IconData(0xf6b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alicorn icon /// /// https://fontawesome.com/icons/alicorn?style=thin /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData thinAlicorn = IconDataThin(0xf6b0); + static const IconData thinAlicorn = IconData(0xf6b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alien icon /// /// https://fontawesome.com/icons/alien?style=solid /// ET, alien, creature, extraterrestrial, face, fantasy, humanoid, monster, space, strange, ufo - static const IconData solidAlien = IconDataSolid(0xf8f5); + static const IconData solidAlien = IconData(0xf8f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alien icon /// /// https://fontawesome.com/icons/alien?style=regular /// ET, alien, creature, extraterrestrial, face, fantasy, humanoid, monster, space, strange, ufo - static const IconData alien = IconDataRegular(0xf8f5); + static const IconData alien = IconData(0xf8f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alien icon /// /// https://fontawesome.com/icons/alien?style=light /// ET, alien, creature, extraterrestrial, face, fantasy, humanoid, monster, space, strange, ufo - static const IconData lightAlien = IconDataLight(0xf8f5); + static const IconData lightAlien = IconData(0xf8f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alien icon /// /// https://fontawesome.com/icons/alien?style=thin /// ET, alien, creature, extraterrestrial, face, fantasy, humanoid, monster, space, strange, ufo - static const IconData thinAlien = IconDataThin(0xf8f5); + static const IconData thinAlien = IconData(0xf8f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Alien 8bit icon /// /// https://fontawesome.com/icons/alien-8bit?style=solid /// ET, alien, alien monster, creature, extraterrestrial, face, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData solidAlien8bit = IconDataSolid(0xf8f6); + static const IconData solidAlien8bit = IconData(0xf8f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias alien-monster for icon [solidAlien8bit] @Deprecated('Use "solidAlien8bit" instead.') @@ -890,7 +890,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/alien-8bit?style=regular /// ET, alien, alien monster, creature, extraterrestrial, face, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData alien8bit = IconDataRegular(0xf8f6); + static const IconData alien8bit = IconData(0xf8f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias alien-monster for icon [alien8bit] @Deprecated('Use "alien8bit" instead.') @@ -900,7 +900,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/alien-8bit?style=light /// ET, alien, alien monster, creature, extraterrestrial, face, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData lightAlien8bit = IconDataLight(0xf8f6); + static const IconData lightAlien8bit = IconData(0xf8f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias alien-monster for icon [lightAlien8bit] @Deprecated('Use "lightAlien8bit" instead.') @@ -910,7 +910,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/alien-8bit?style=thin /// ET, alien, alien monster, creature, extraterrestrial, face, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData thinAlien8bit = IconDataThin(0xf8f6); + static const IconData thinAlien8bit = IconData(0xf8f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias alien-monster for icon [thinAlien8bit] @Deprecated('Use "thinAlien8bit" instead.') @@ -920,518 +920,518 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/align-center?style=solid /// format, middle, paragraph, text - static const IconData solidAlignCenter = IconDataSolid(0xf037); + static const IconData solidAlignCenter = IconData(0xf037, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Align Center icon /// /// https://fontawesome.com/icons/align-center?style=regular /// format, middle, paragraph, text - static const IconData alignCenter = IconDataRegular(0xf037); + static const IconData alignCenter = IconData(0xf037, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Align Center icon /// /// https://fontawesome.com/icons/align-center?style=light /// format, middle, paragraph, text - static const IconData lightAlignCenter = IconDataLight(0xf037); + static const IconData lightAlignCenter = IconData(0xf037, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Align Center icon /// /// https://fontawesome.com/icons/align-center?style=thin /// format, middle, paragraph, text - static const IconData thinAlignCenter = IconDataThin(0xf037); + static const IconData thinAlignCenter = IconData(0xf037, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Align Justify icon /// /// https://fontawesome.com/icons/align-justify?style=solid /// format, paragraph, text - static const IconData solidAlignJustify = IconDataSolid(0xf039); + static const IconData solidAlignJustify = IconData(0xf039, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Align Justify icon /// /// https://fontawesome.com/icons/align-justify?style=regular /// format, paragraph, text - static const IconData alignJustify = IconDataRegular(0xf039); + static const IconData alignJustify = IconData(0xf039, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Align Justify icon /// /// https://fontawesome.com/icons/align-justify?style=light /// format, paragraph, text - static const IconData lightAlignJustify = IconDataLight(0xf039); + static const IconData lightAlignJustify = IconData(0xf039, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Align Justify icon /// /// https://fontawesome.com/icons/align-justify?style=thin /// format, paragraph, text - static const IconData thinAlignJustify = IconDataThin(0xf039); + static const IconData thinAlignJustify = IconData(0xf039, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Align Left icon /// /// https://fontawesome.com/icons/align-left?style=solid /// format, paragraph, text - static const IconData solidAlignLeft = IconDataSolid(0xf036); + static const IconData solidAlignLeft = IconData(0xf036, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Align Left icon /// /// https://fontawesome.com/icons/align-left?style=regular /// format, paragraph, text - static const IconData alignLeft = IconDataRegular(0xf036); + static const IconData alignLeft = IconData(0xf036, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Align Left icon /// /// https://fontawesome.com/icons/align-left?style=light /// format, paragraph, text - static const IconData lightAlignLeft = IconDataLight(0xf036); + static const IconData lightAlignLeft = IconData(0xf036, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Align Left icon /// /// https://fontawesome.com/icons/align-left?style=thin /// format, paragraph, text - static const IconData thinAlignLeft = IconDataThin(0xf036); + static const IconData thinAlignLeft = IconData(0xf036, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Align Right icon /// /// https://fontawesome.com/icons/align-right?style=solid /// format, paragraph, text - static const IconData solidAlignRight = IconDataSolid(0xf038); + static const IconData solidAlignRight = IconData(0xf038, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Align Right icon /// /// https://fontawesome.com/icons/align-right?style=regular /// format, paragraph, text - static const IconData alignRight = IconDataRegular(0xf038); + static const IconData alignRight = IconData(0xf038, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Align Right icon /// /// https://fontawesome.com/icons/align-right?style=light /// format, paragraph, text - static const IconData lightAlignRight = IconDataLight(0xf038); + static const IconData lightAlignRight = IconData(0xf038, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Align Right icon /// /// https://fontawesome.com/icons/align-right?style=thin /// format, paragraph, text - static const IconData thinAlignRight = IconDataThin(0xf038); + static const IconData thinAlignRight = IconData(0xf038, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Align Slash icon /// /// https://fontawesome.com/icons/align-slash?style=solid /// cancel, disabled, format, paragraph, remove - static const IconData solidAlignSlash = IconDataSolid(0xf846); + static const IconData solidAlignSlash = IconData(0xf846, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Align Slash icon /// /// https://fontawesome.com/icons/align-slash?style=regular /// cancel, disabled, format, paragraph, remove - static const IconData alignSlash = IconDataRegular(0xf846); + static const IconData alignSlash = IconData(0xf846, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Align Slash icon /// /// https://fontawesome.com/icons/align-slash?style=light /// cancel, disabled, format, paragraph, remove - static const IconData lightAlignSlash = IconDataLight(0xf846); + static const IconData lightAlignSlash = IconData(0xf846, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Align Slash icon /// /// https://fontawesome.com/icons/align-slash?style=thin /// cancel, disabled, format, paragraph, remove - static const IconData thinAlignSlash = IconDataThin(0xf846); + static const IconData thinAlignSlash = IconData(0xf846, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Alipay icon /// /// https://fontawesome.com/icons/alipay?style=brands - static const IconData alipay = IconDataBrands(0xf642); + static const IconData alipay = IconData(0xf642, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Alt icon /// /// https://fontawesome.com/icons/alt?style=solid /// alternate, option - static const IconData solidAlt = IconDataSolid(0xe08a); + static const IconData solidAlt = IconData(0xe08a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Alt icon /// /// https://fontawesome.com/icons/alt?style=regular /// alternate, option - static const IconData alt = IconDataRegular(0xe08a); + static const IconData alt = IconData(0xe08a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Alt icon /// /// https://fontawesome.com/icons/alt?style=light /// alternate, option - static const IconData lightAlt = IconDataLight(0xe08a); + static const IconData lightAlt = IconData(0xe08a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Alt icon /// /// https://fontawesome.com/icons/alt?style=thin /// alternate, option - static const IconData thinAlt = IconDataThin(0xe08a); + static const IconData thinAlt = IconData(0xe08a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Amazon icon /// /// https://fontawesome.com/icons/amazon?style=brands - static const IconData amazon = IconDataBrands(0xf270); + static const IconData amazon = IconData(0xf270, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Amazon Pay icon /// /// https://fontawesome.com/icons/amazon-pay?style=brands - static const IconData amazonPay = IconDataBrands(0xf42c); + static const IconData amazonPay = IconData(0xf42c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Amilia icon /// /// https://fontawesome.com/icons/amilia?style=brands - static const IconData amilia = IconDataBrands(0xf36d); + static const IconData amilia = IconData(0xf36d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Amp Guitar icon /// /// https://fontawesome.com/icons/amp-guitar?style=solid /// audio, guitar, loudspeaker, music, pa, volume - static const IconData solidAmpGuitar = IconDataSolid(0xf8a1); + static const IconData solidAmpGuitar = IconData(0xf8a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Amp Guitar icon /// /// https://fontawesome.com/icons/amp-guitar?style=regular /// audio, guitar, loudspeaker, music, pa, volume - static const IconData ampGuitar = IconDataRegular(0xf8a1); + static const IconData ampGuitar = IconData(0xf8a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Amp Guitar icon /// /// https://fontawesome.com/icons/amp-guitar?style=light /// audio, guitar, loudspeaker, music, pa, volume - static const IconData lightAmpGuitar = IconDataLight(0xf8a1); + static const IconData lightAmpGuitar = IconData(0xf8a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Amp Guitar icon /// /// https://fontawesome.com/icons/amp-guitar?style=thin /// audio, guitar, loudspeaker, music, pa, volume - static const IconData thinAmpGuitar = IconDataThin(0xf8a1); + static const IconData thinAmpGuitar = IconData(0xf8a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ampersand icon /// /// https://fontawesome.com/icons/ampersand?style=solid /// Ampersand, and - static const IconData solidAmpersand = IconDataSolid(0x26); + static const IconData solidAmpersand = IconData(0x26, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ampersand icon /// /// https://fontawesome.com/icons/ampersand?style=regular /// Ampersand, and - static const IconData ampersand = IconDataRegular(0x26); + static const IconData ampersand = IconData(0x26, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ampersand icon /// /// https://fontawesome.com/icons/ampersand?style=light /// Ampersand, and - static const IconData lightAmpersand = IconDataLight(0x26); + static const IconData lightAmpersand = IconData(0x26, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ampersand icon /// /// https://fontawesome.com/icons/ampersand?style=thin /// Ampersand, and - static const IconData thinAmpersand = IconDataThin(0x26); + static const IconData thinAmpersand = IconData(0x26, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Anchor icon /// /// https://fontawesome.com/icons/anchor?style=solid /// anchor, berth, boat, dock, embed, link, maritime, moor, port, secure, ship, tool - static const IconData solidAnchor = IconDataSolid(0xf13d); + static const IconData solidAnchor = IconData(0xf13d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Anchor icon /// /// https://fontawesome.com/icons/anchor?style=regular /// anchor, berth, boat, dock, embed, link, maritime, moor, port, secure, ship, tool - static const IconData anchor = IconDataRegular(0xf13d); + static const IconData anchor = IconData(0xf13d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Anchor icon /// /// https://fontawesome.com/icons/anchor?style=light /// anchor, berth, boat, dock, embed, link, maritime, moor, port, secure, ship, tool - static const IconData lightAnchor = IconDataLight(0xf13d); + static const IconData lightAnchor = IconData(0xf13d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Anchor icon /// /// https://fontawesome.com/icons/anchor?style=thin /// anchor, berth, boat, dock, embed, link, maritime, moor, port, secure, ship, tool - static const IconData thinAnchor = IconDataThin(0xf13d); + static const IconData thinAnchor = IconData(0xf13d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Anchor Circle Check icon /// /// https://fontawesome.com/icons/anchor-circle-check?style=solid /// enable, marina, not affected, ok, okay, port, validate, working - static const IconData solidAnchorCircleCheck = IconDataSolid(0xe4aa); + static const IconData solidAnchorCircleCheck = IconData(0xe4aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Anchor Circle Check icon /// /// https://fontawesome.com/icons/anchor-circle-check?style=regular /// enable, marina, not affected, ok, okay, port, validate, working - static const IconData anchorCircleCheck = IconDataRegular(0xe4aa); + static const IconData anchorCircleCheck = IconData(0xe4aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Anchor Circle Check icon /// /// https://fontawesome.com/icons/anchor-circle-check?style=light /// enable, marina, not affected, ok, okay, port, validate, working - static const IconData lightAnchorCircleCheck = IconDataLight(0xe4aa); + static const IconData lightAnchorCircleCheck = IconData(0xe4aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Anchor Circle Check icon /// /// https://fontawesome.com/icons/anchor-circle-check?style=thin /// enable, marina, not affected, ok, okay, port, validate, working - static const IconData thinAnchorCircleCheck = IconDataThin(0xe4aa); + static const IconData thinAnchorCircleCheck = IconData(0xe4aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Anchor Circle Exclamation icon /// /// https://fontawesome.com/icons/anchor-circle-exclamation?style=solid /// affected, failed, marina, port - static const IconData solidAnchorCircleExclamation = IconDataSolid(0xe4ab); + static const IconData solidAnchorCircleExclamation = IconData(0xe4ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Anchor Circle Exclamation icon /// /// https://fontawesome.com/icons/anchor-circle-exclamation?style=regular /// affected, failed, marina, port - static const IconData anchorCircleExclamation = IconDataRegular(0xe4ab); + static const IconData anchorCircleExclamation = IconData(0xe4ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Anchor Circle Exclamation icon /// /// https://fontawesome.com/icons/anchor-circle-exclamation?style=light /// affected, failed, marina, port - static const IconData lightAnchorCircleExclamation = IconDataLight(0xe4ab); + static const IconData lightAnchorCircleExclamation = IconData(0xe4ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Anchor Circle Exclamation icon /// /// https://fontawesome.com/icons/anchor-circle-exclamation?style=thin /// affected, failed, marina, port - static const IconData thinAnchorCircleExclamation = IconDataThin(0xe4ab); + static const IconData thinAnchorCircleExclamation = IconData(0xe4ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Anchor Circle Xmark icon /// /// https://fontawesome.com/icons/anchor-circle-xmark?style=solid /// destroy, marina, port, uncheck - static const IconData solidAnchorCircleXmark = IconDataSolid(0xe4ac); + static const IconData solidAnchorCircleXmark = IconData(0xe4ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Anchor Circle Xmark icon /// /// https://fontawesome.com/icons/anchor-circle-xmark?style=regular /// destroy, marina, port, uncheck - static const IconData anchorCircleXmark = IconDataRegular(0xe4ac); + static const IconData anchorCircleXmark = IconData(0xe4ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Anchor Circle Xmark icon /// /// https://fontawesome.com/icons/anchor-circle-xmark?style=light /// destroy, marina, port, uncheck - static const IconData lightAnchorCircleXmark = IconDataLight(0xe4ac); + static const IconData lightAnchorCircleXmark = IconData(0xe4ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Anchor Circle Xmark icon /// /// https://fontawesome.com/icons/anchor-circle-xmark?style=thin /// destroy, marina, port, uncheck - static const IconData thinAnchorCircleXmark = IconDataThin(0xe4ac); + static const IconData thinAnchorCircleXmark = IconData(0xe4ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Anchor Lock icon /// /// https://fontawesome.com/icons/anchor-lock?style=solid /// closed, lockdown, marina, padlock, port, privacy, quarantine - static const IconData solidAnchorLock = IconDataSolid(0xe4ad); + static const IconData solidAnchorLock = IconData(0xe4ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Anchor Lock icon /// /// https://fontawesome.com/icons/anchor-lock?style=regular /// closed, lockdown, marina, padlock, port, privacy, quarantine - static const IconData anchorLock = IconDataRegular(0xe4ad); + static const IconData anchorLock = IconData(0xe4ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Anchor Lock icon /// /// https://fontawesome.com/icons/anchor-lock?style=light /// closed, lockdown, marina, padlock, port, privacy, quarantine - static const IconData lightAnchorLock = IconDataLight(0xe4ad); + static const IconData lightAnchorLock = IconData(0xe4ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Anchor Lock icon /// /// https://fontawesome.com/icons/anchor-lock?style=thin /// closed, lockdown, marina, padlock, port, privacy, quarantine - static const IconData thinAnchorLock = IconDataThin(0xe4ad); + static const IconData thinAnchorLock = IconData(0xe4ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Android icon /// /// https://fontawesome.com/icons/android?style=brands /// robot - static const IconData android = IconDataBrands(0xf17b); + static const IconData android = IconData(0xf17b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Angel icon /// /// https://fontawesome.com/icons/angel?style=solid /// christmas, decoration, halo, holiday, holy, michael landon, uer, wings, xmas - static const IconData solidAngel = IconDataSolid(0xf779); + static const IconData solidAngel = IconData(0xf779, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angel icon /// /// https://fontawesome.com/icons/angel?style=regular /// christmas, decoration, halo, holiday, holy, michael landon, uer, wings, xmas - static const IconData angel = IconDataRegular(0xf779); + static const IconData angel = IconData(0xf779, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angel icon /// /// https://fontawesome.com/icons/angel?style=light /// christmas, decoration, halo, holiday, holy, michael landon, uer, wings, xmas - static const IconData lightAngel = IconDataLight(0xf779); + static const IconData lightAngel = IconData(0xf779, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angel icon /// /// https://fontawesome.com/icons/angel?style=thin /// christmas, decoration, halo, holiday, holy, michael landon, uer, wings, xmas - static const IconData thinAngel = IconDataThin(0xf779); + static const IconData thinAngel = IconData(0xf779, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands AngelList icon /// /// https://fontawesome.com/icons/angellist?style=brands - static const IconData angellist = IconDataBrands(0xf209); + static const IconData angellist = IconData(0xf209, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Angle icon /// /// https://fontawesome.com/icons/angle?style=solid /// Measured Angle, acute, measure - static const IconData solidAngle = IconDataSolid(0xe08c); + static const IconData solidAngle = IconData(0xe08c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle icon /// /// https://fontawesome.com/icons/angle?style=regular /// Measured Angle, acute, measure - static const IconData angle = IconDataRegular(0xe08c); + static const IconData angle = IconData(0xe08c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle icon /// /// https://fontawesome.com/icons/angle?style=light /// Measured Angle, acute, measure - static const IconData lightAngle = IconDataLight(0xe08c); + static const IconData lightAngle = IconData(0xe08c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle icon /// /// https://fontawesome.com/icons/angle?style=thin /// Measured Angle, acute, measure - static const IconData thinAngle = IconDataThin(0xe08c); + static const IconData thinAngle = IconData(0xe08c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angle 90 icon /// /// https://fontawesome.com/icons/angle-90?style=solid /// Right Angle with Arc, measure, right angle - static const IconData solidAngle90 = IconDataSolid(0xe08d); + static const IconData solidAngle90 = IconData(0xe08d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle 90 icon /// /// https://fontawesome.com/icons/angle-90?style=regular /// Right Angle with Arc, measure, right angle - static const IconData angle90 = IconDataRegular(0xe08d); + static const IconData angle90 = IconData(0xe08d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle 90 icon /// /// https://fontawesome.com/icons/angle-90?style=light /// Right Angle with Arc, measure, right angle - static const IconData lightAngle90 = IconDataLight(0xe08d); + static const IconData lightAngle90 = IconData(0xe08d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle 90 icon /// /// https://fontawesome.com/icons/angle-90?style=thin /// Right Angle with Arc, measure, right angle - static const IconData thinAngle90 = IconDataThin(0xe08d); + static const IconData thinAngle90 = IconData(0xe08d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angle Down icon /// /// https://fontawesome.com/icons/angle-down?style=solid /// Down Arrowhead, arrow, caret, download, expand, insert - static const IconData solidAngleDown = IconDataSolid(0xf107); + static const IconData solidAngleDown = IconData(0xf107, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle Down icon /// /// https://fontawesome.com/icons/angle-down?style=regular /// Down Arrowhead, arrow, caret, download, expand, insert - static const IconData angleDown = IconDataRegular(0xf107); + static const IconData angleDown = IconData(0xf107, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle Down icon /// /// https://fontawesome.com/icons/angle-down?style=light /// Down Arrowhead, arrow, caret, download, expand, insert - static const IconData lightAngleDown = IconDataLight(0xf107); + static const IconData lightAngleDown = IconData(0xf107, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle Down icon /// /// https://fontawesome.com/icons/angle-down?style=thin /// Down Arrowhead, arrow, caret, download, expand, insert - static const IconData thinAngleDown = IconDataThin(0xf107); + static const IconData thinAngleDown = IconData(0xf107, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angle Left icon /// /// https://fontawesome.com/icons/angle-left?style=solid /// Single Left-Pointing Angle Quotation Mark, arrow, back, caret, less, previous - static const IconData solidAngleLeft = IconDataSolid(0xf104); + static const IconData solidAngleLeft = IconData(0xf104, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle Left icon /// /// https://fontawesome.com/icons/angle-left?style=regular /// Single Left-Pointing Angle Quotation Mark, arrow, back, caret, less, previous - static const IconData angleLeft = IconDataRegular(0xf104); + static const IconData angleLeft = IconData(0xf104, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle Left icon /// /// https://fontawesome.com/icons/angle-left?style=light /// Single Left-Pointing Angle Quotation Mark, arrow, back, caret, less, previous - static const IconData lightAngleLeft = IconDataLight(0xf104); + static const IconData lightAngleLeft = IconData(0xf104, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle Left icon /// /// https://fontawesome.com/icons/angle-left?style=thin /// Single Left-Pointing Angle Quotation Mark, arrow, back, caret, less, previous - static const IconData thinAngleLeft = IconDataThin(0xf104); + static const IconData thinAngleLeft = IconData(0xf104, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angle Right icon /// /// https://fontawesome.com/icons/angle-right?style=solid /// Single Right-Pointing Angle Quotation Mark, arrow, care, forward, more, next - static const IconData solidAngleRight = IconDataSolid(0xf105); + static const IconData solidAngleRight = IconData(0xf105, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle Right icon /// /// https://fontawesome.com/icons/angle-right?style=regular /// Single Right-Pointing Angle Quotation Mark, arrow, care, forward, more, next - static const IconData angleRight = IconDataRegular(0xf105); + static const IconData angleRight = IconData(0xf105, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle Right icon /// /// https://fontawesome.com/icons/angle-right?style=light /// Single Right-Pointing Angle Quotation Mark, arrow, care, forward, more, next - static const IconData lightAngleRight = IconDataLight(0xf105); + static const IconData lightAngleRight = IconData(0xf105, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle Right icon /// /// https://fontawesome.com/icons/angle-right?style=thin /// Single Right-Pointing Angle Quotation Mark, arrow, care, forward, more, next - static const IconData thinAngleRight = IconDataThin(0xf105); + static const IconData thinAngleRight = IconData(0xf105, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angle Up icon /// /// https://fontawesome.com/icons/angle-up?style=solid /// Up Arrowhead, arrow, caret, collapse, upgrade, upload - static const IconData solidAngleUp = IconDataSolid(0xf106); + static const IconData solidAngleUp = IconData(0xf106, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angle Up icon /// /// https://fontawesome.com/icons/angle-up?style=regular /// Up Arrowhead, arrow, caret, collapse, upgrade, upload - static const IconData angleUp = IconDataRegular(0xf106); + static const IconData angleUp = IconData(0xf106, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angle Up icon /// /// https://fontawesome.com/icons/angle-up?style=light /// Up Arrowhead, arrow, caret, collapse, upgrade, upload - static const IconData lightAngleUp = IconDataLight(0xf106); + static const IconData lightAngleUp = IconData(0xf106, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angle Up icon /// /// https://fontawesome.com/icons/angle-up?style=thin /// Up Arrowhead, arrow, caret, collapse, upgrade, upload - static const IconData thinAngleUp = IconDataThin(0xf106); + static const IconData thinAngleUp = IconData(0xf106, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Angles Down icon /// /// https://fontawesome.com/icons/angles-down?style=solid /// arrows, caret, download, expand - static const IconData solidAnglesDown = IconDataSolid(0xf103); + static const IconData solidAnglesDown = IconData(0xf103, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-down for icon [solidAnglesDown] @Deprecated('Use "solidAnglesDown" instead.') @@ -1441,7 +1441,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-down?style=regular /// arrows, caret, download, expand - static const IconData anglesDown = IconDataRegular(0xf103); + static const IconData anglesDown = IconData(0xf103, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-down for icon [anglesDown] @Deprecated('Use "anglesDown" instead.') @@ -1451,7 +1451,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-down?style=light /// arrows, caret, download, expand - static const IconData lightAnglesDown = IconDataLight(0xf103); + static const IconData lightAnglesDown = IconData(0xf103, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-down for icon [lightAnglesDown] @Deprecated('Use "lightAnglesDown" instead.') @@ -1461,7 +1461,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-down?style=thin /// arrows, caret, download, expand - static const IconData thinAnglesDown = IconDataThin(0xf103); + static const IconData thinAnglesDown = IconData(0xf103, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-down for icon [thinAnglesDown] @Deprecated('Use "thinAnglesDown" instead.') @@ -1471,7 +1471,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-left?style=solid /// Left-Pointing Double Angle Quotation Mark, arrows, back, caret, laquo, previous, quote - static const IconData solidAnglesLeft = IconDataSolid(0xf100); + static const IconData solidAnglesLeft = IconData(0xf100, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-left for icon [solidAnglesLeft] @Deprecated('Use "solidAnglesLeft" instead.') @@ -1481,7 +1481,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-left?style=regular /// Left-Pointing Double Angle Quotation Mark, arrows, back, caret, laquo, previous, quote - static const IconData anglesLeft = IconDataRegular(0xf100); + static const IconData anglesLeft = IconData(0xf100, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-left for icon [anglesLeft] @Deprecated('Use "anglesLeft" instead.') @@ -1491,7 +1491,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-left?style=light /// Left-Pointing Double Angle Quotation Mark, arrows, back, caret, laquo, previous, quote - static const IconData lightAnglesLeft = IconDataLight(0xf100); + static const IconData lightAnglesLeft = IconData(0xf100, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-left for icon [lightAnglesLeft] @Deprecated('Use "lightAnglesLeft" instead.') @@ -1501,7 +1501,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-left?style=thin /// Left-Pointing Double Angle Quotation Mark, arrows, back, caret, laquo, previous, quote - static const IconData thinAnglesLeft = IconDataThin(0xf100); + static const IconData thinAnglesLeft = IconData(0xf100, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-left for icon [thinAnglesLeft] @Deprecated('Use "thinAnglesLeft" instead.') @@ -1511,7 +1511,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-right?style=solid /// Right-Pointing Double Angle Quotation Mark, arrows, caret, forward, more, next, quote, raquo - static const IconData solidAnglesRight = IconDataSolid(0xf101); + static const IconData solidAnglesRight = IconData(0xf101, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-right for icon [solidAnglesRight] @Deprecated('Use "solidAnglesRight" instead.') @@ -1521,7 +1521,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-right?style=regular /// Right-Pointing Double Angle Quotation Mark, arrows, caret, forward, more, next, quote, raquo - static const IconData anglesRight = IconDataRegular(0xf101); + static const IconData anglesRight = IconData(0xf101, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-right for icon [anglesRight] @Deprecated('Use "anglesRight" instead.') @@ -1531,7 +1531,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-right?style=light /// Right-Pointing Double Angle Quotation Mark, arrows, caret, forward, more, next, quote, raquo - static const IconData lightAnglesRight = IconDataLight(0xf101); + static const IconData lightAnglesRight = IconData(0xf101, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-right for icon [lightAnglesRight] @Deprecated('Use "lightAnglesRight" instead.') @@ -1541,7 +1541,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-right?style=thin /// Right-Pointing Double Angle Quotation Mark, arrows, caret, forward, more, next, quote, raquo - static const IconData thinAnglesRight = IconDataThin(0xf101); + static const IconData thinAnglesRight = IconData(0xf101, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-right for icon [thinAnglesRight] @Deprecated('Use "thinAnglesRight" instead.') @@ -1551,7 +1551,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-up?style=solid /// arrows, caret, collapse, upload - static const IconData solidAnglesUp = IconDataSolid(0xf102); + static const IconData solidAnglesUp = IconData(0xf102, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-up for icon [solidAnglesUp] @Deprecated('Use "solidAnglesUp" instead.') @@ -1561,7 +1561,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-up?style=regular /// arrows, caret, collapse, upload - static const IconData anglesUp = IconDataRegular(0xf102); + static const IconData anglesUp = IconData(0xf102, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-up for icon [anglesUp] @Deprecated('Use "anglesUp" instead.') @@ -1571,7 +1571,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-up?style=light /// arrows, caret, collapse, upload - static const IconData lightAnglesUp = IconDataLight(0xf102); + static const IconData lightAnglesUp = IconData(0xf102, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-up for icon [lightAnglesUp] @Deprecated('Use "lightAnglesUp" instead.') @@ -1581,7 +1581,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-up?style=thin /// arrows, caret, collapse, upload - static const IconData thinAnglesUp = IconDataThin(0xf102); + static const IconData thinAnglesUp = IconData(0xf102, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias angle-double-up for icon [thinAnglesUp] @Deprecated('Use "thinAnglesUp" instead.') @@ -1591,187 +1591,187 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/angles-up-down?style=solid /// down, elevator, order, up, filter - static const IconData solidAnglesUpDown = IconDataSolid(0xe60d); + static const IconData solidAnglesUpDown = IconData(0xe60d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Angles Up Down icon /// /// https://fontawesome.com/icons/angles-up-down?style=regular /// down, elevator, order, up, filter - static const IconData anglesUpDown = IconDataRegular(0xe60d); + static const IconData anglesUpDown = IconData(0xe60d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Angles Up Down icon /// /// https://fontawesome.com/icons/angles-up-down?style=light /// down, elevator, order, up, filter - static const IconData lightAnglesUpDown = IconDataLight(0xe60d); + static const IconData lightAnglesUpDown = IconData(0xe60d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Angles Up Down icon /// /// https://fontawesome.com/icons/angles-up-down?style=thin /// down, elevator, order, up, filter - static const IconData thinAnglesUpDown = IconDataThin(0xe60d); + static const IconData thinAnglesUpDown = IconData(0xe60d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Angry Creative icon /// /// https://fontawesome.com/icons/angrycreative?style=brands - static const IconData angrycreative = IconDataBrands(0xf36e); + static const IconData angrycreative = IconData(0xf36e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Angular icon /// /// https://fontawesome.com/icons/angular?style=brands - static const IconData angular = IconDataBrands(0xf420); + static const IconData angular = IconData(0xf420, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ankh icon /// /// https://fontawesome.com/icons/ankh?style=solid /// Ankh, amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData solidAnkh = IconDataSolid(0xf644); + static const IconData solidAnkh = IconData(0xf644, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ankh icon /// /// https://fontawesome.com/icons/ankh?style=regular /// Ankh, amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData ankh = IconDataRegular(0xf644); + static const IconData ankh = IconData(0xf644, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ankh icon /// /// https://fontawesome.com/icons/ankh?style=light /// Ankh, amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData lightAnkh = IconDataLight(0xf644); + static const IconData lightAnkh = IconData(0xf644, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ankh icon /// /// https://fontawesome.com/icons/ankh?style=thin /// Ankh, amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData thinAnkh = IconDataThin(0xf644); + static const IconData thinAnkh = IconData(0xf644, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Apartment icon /// /// https://fontawesome.com/icons/apartment?style=solid /// apartment, building, city, condo, condominium, flat - static const IconData solidApartment = IconDataSolid(0xe468); + static const IconData solidApartment = IconData(0xe468, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Apartment icon /// /// https://fontawesome.com/icons/apartment?style=regular /// apartment, building, city, condo, condominium, flat - static const IconData apartment = IconDataRegular(0xe468); + static const IconData apartment = IconData(0xe468, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Apartment icon /// /// https://fontawesome.com/icons/apartment?style=light /// apartment, building, city, condo, condominium, flat - static const IconData lightApartment = IconDataLight(0xe468); + static const IconData lightApartment = IconData(0xe468, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Apartment icon /// /// https://fontawesome.com/icons/apartment?style=thin /// apartment, building, city, condo, condominium, flat - static const IconData thinApartment = IconDataThin(0xe468); + static const IconData thinApartment = IconData(0xe468, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Aperture icon /// /// https://fontawesome.com/icons/aperture?style=solid /// aperture, camera, exposure, lens, photo - static const IconData solidAperture = IconDataSolid(0xe2df); + static const IconData solidAperture = IconData(0xe2df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Aperture icon /// /// https://fontawesome.com/icons/aperture?style=regular /// aperture, camera, exposure, lens, photo - static const IconData aperture = IconDataRegular(0xe2df); + static const IconData aperture = IconData(0xe2df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Aperture icon /// /// https://fontawesome.com/icons/aperture?style=light /// aperture, camera, exposure, lens, photo - static const IconData lightAperture = IconDataLight(0xe2df); + static const IconData lightAperture = IconData(0xe2df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Aperture icon /// /// https://fontawesome.com/icons/aperture?style=thin /// aperture, camera, exposure, lens, photo - static const IconData thinAperture = IconDataThin(0xe2df); + static const IconData thinAperture = IconData(0xe2df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Apostrophe icon /// /// https://fontawesome.com/icons/apostrophe?style=solid /// Apostrophe, comma, contraction, quote - static const IconData solidApostrophe = IconDataSolid(0x27); + static const IconData solidApostrophe = IconData(0x27, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Apostrophe icon /// /// https://fontawesome.com/icons/apostrophe?style=regular /// Apostrophe, comma, contraction, quote - static const IconData apostrophe = IconDataRegular(0x27); + static const IconData apostrophe = IconData(0x27, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Apostrophe icon /// /// https://fontawesome.com/icons/apostrophe?style=light /// Apostrophe, comma, contraction, quote - static const IconData lightApostrophe = IconDataLight(0x27); + static const IconData lightApostrophe = IconData(0x27, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Apostrophe icon /// /// https://fontawesome.com/icons/apostrophe?style=thin /// Apostrophe, comma, contraction, quote - static const IconData thinApostrophe = IconDataThin(0x27); + static const IconData thinApostrophe = IconData(0x27, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands App Store icon /// /// https://fontawesome.com/icons/app-store?style=brands - static const IconData appStore = IconDataBrands(0xf36f); + static const IconData appStore = IconData(0xf36f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands iOS App Store icon /// /// https://fontawesome.com/icons/app-store-ios?style=brands - static const IconData appStoreIos = IconDataBrands(0xf370); + static const IconData appStoreIos = IconData(0xf370, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Apper Systems AB icon /// /// https://fontawesome.com/icons/apper?style=brands - static const IconData apper = IconDataBrands(0xf371); + static const IconData apper = IconData(0xf371, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Apple icon /// /// https://fontawesome.com/icons/apple?style=brands /// fruit, ios, mac, operating system, os, osx - static const IconData apple = IconDataBrands(0xf179); + static const IconData apple = IconData(0xf179, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Apple Core icon /// /// https://fontawesome.com/icons/apple-core?style=solid /// compost, eaten, fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData solidAppleCore = IconDataSolid(0xe08f); + static const IconData solidAppleCore = IconData(0xe08f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Apple Core icon /// /// https://fontawesome.com/icons/apple-core?style=regular /// compost, eaten, fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData appleCore = IconDataRegular(0xe08f); + static const IconData appleCore = IconData(0xe08f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Apple Core icon /// /// https://fontawesome.com/icons/apple-core?style=light /// compost, eaten, fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData lightAppleCore = IconDataLight(0xe08f); + static const IconData lightAppleCore = IconData(0xe08f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Apple Core icon /// /// https://fontawesome.com/icons/apple-core?style=thin /// compost, eaten, fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData thinAppleCore = IconDataThin(0xe08f); + static const IconData thinAppleCore = IconData(0xe08f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Apple Pay icon /// /// https://fontawesome.com/icons/apple-pay?style=brands - static const IconData applePay = IconDataBrands(0xf415); + static const IconData applePay = IconData(0xf415, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Apple Whole icon /// /// https://fontawesome.com/icons/apple-whole?style=solid /// apple, fall, fruit, fuji, green, green apple, macintosh, orchard, red, red apple, seasonal, vegan - static const IconData solidAppleWhole = IconDataSolid(0xf5d1); + static const IconData solidAppleWhole = IconData(0xf5d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias apple-alt for icon [solidAppleWhole] @Deprecated('Use "solidAppleWhole" instead.') @@ -1781,7 +1781,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/apple-whole?style=regular /// apple, fall, fruit, fuji, green, green apple, macintosh, orchard, red, red apple, seasonal, vegan - static const IconData appleWhole = IconDataRegular(0xf5d1); + static const IconData appleWhole = IconData(0xf5d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias apple-alt for icon [appleWhole] @Deprecated('Use "appleWhole" instead.') @@ -1791,7 +1791,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/apple-whole?style=light /// apple, fall, fruit, fuji, green, green apple, macintosh, orchard, red, red apple, seasonal, vegan - static const IconData lightAppleWhole = IconDataLight(0xf5d1); + static const IconData lightAppleWhole = IconData(0xf5d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias apple-alt for icon [lightAppleWhole] @Deprecated('Use "lightAppleWhole" instead.') @@ -1801,7 +1801,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/apple-whole?style=thin /// apple, fall, fruit, fuji, green, green apple, macintosh, orchard, red, red apple, seasonal, vegan - static const IconData thinAppleWhole = IconDataThin(0xf5d1); + static const IconData thinAppleWhole = IconData(0xf5d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias apple-alt for icon [thinAppleWhole] @Deprecated('Use "thinAppleWhole" instead.') @@ -1811,55 +1811,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/archway?style=solid /// arc, monument, road, street, tunnel - static const IconData solidArchway = IconDataSolid(0xf557); + static const IconData solidArchway = IconData(0xf557, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Archway icon /// /// https://fontawesome.com/icons/archway?style=regular /// arc, monument, road, street, tunnel - static const IconData archway = IconDataRegular(0xf557); + static const IconData archway = IconData(0xf557, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Archway icon /// /// https://fontawesome.com/icons/archway?style=light /// arc, monument, road, street, tunnel - static const IconData lightArchway = IconDataLight(0xf557); + static const IconData lightArchway = IconData(0xf557, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Archway icon /// /// https://fontawesome.com/icons/archway?style=thin /// arc, monument, road, street, tunnel - static const IconData thinArchway = IconDataThin(0xf557); + static const IconData thinArchway = IconData(0xf557, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down icon /// /// https://fontawesome.com/icons/arrow-down?style=solid /// Downwards Arrow, download - static const IconData solidArrowDown = IconDataSolid(0xf063); + static const IconData solidArrowDown = IconData(0xf063, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down icon /// /// https://fontawesome.com/icons/arrow-down?style=regular /// Downwards Arrow, download - static const IconData arrowDown = IconDataRegular(0xf063); + static const IconData arrowDown = IconData(0xf063, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down icon /// /// https://fontawesome.com/icons/arrow-down?style=light /// Downwards Arrow, download - static const IconData lightArrowDown = IconDataLight(0xf063); + static const IconData lightArrowDown = IconData(0xf063, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down icon /// /// https://fontawesome.com/icons/arrow-down?style=thin /// Downwards Arrow, download - static const IconData thinArrowDown = IconDataThin(0xf063); + static const IconData thinArrowDown = IconData(0xf063, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down 1 9 icon /// /// https://fontawesome.com/icons/arrow-down-1-9?style=solid /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData solidArrowDown19 = IconDataSolid(0xf162); + static const IconData solidArrowDown19 = IconData(0xf162, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-asc for icon [solidArrowDown19] @Deprecated('Use "solidArrowDown19" instead.') @@ -1873,7 +1873,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-1-9?style=regular /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData arrowDown19 = IconDataRegular(0xf162); + static const IconData arrowDown19 = IconData(0xf162, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-asc for icon [arrowDown19] @Deprecated('Use "arrowDown19" instead.') @@ -1887,7 +1887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-1-9?style=light /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData lightArrowDown19 = IconDataLight(0xf162); + static const IconData lightArrowDown19 = IconData(0xf162, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-asc for icon [lightArrowDown19] @Deprecated('Use "lightArrowDown19" instead.') @@ -1901,7 +1901,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-1-9?style=thin /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData thinArrowDown19 = IconDataThin(0xf162); + static const IconData thinArrowDown19 = IconData(0xf162, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-asc for icon [thinArrowDown19] @Deprecated('Use "thinArrowDown19" instead.') @@ -1915,7 +1915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-9-1?style=solid /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData solidArrowDown91 = IconDataSolid(0xf886); + static const IconData solidArrowDown91 = IconData(0xf886, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-desc for icon [solidArrowDown91] @Deprecated('Use "solidArrowDown91" instead.') @@ -1929,7 +1929,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-9-1?style=regular /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData arrowDown91 = IconDataRegular(0xf886); + static const IconData arrowDown91 = IconData(0xf886, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-desc for icon [arrowDown91] @Deprecated('Use "arrowDown91" instead.') @@ -1943,7 +1943,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-9-1?style=light /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData lightArrowDown91 = IconDataLight(0xf886); + static const IconData lightArrowDown91 = IconData(0xf886, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-desc for icon [lightArrowDown91] @Deprecated('Use "lightArrowDown91" instead.') @@ -1957,7 +1957,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-9-1?style=thin /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData thinArrowDown91 = IconDataThin(0xf886); + static const IconData thinArrowDown91 = IconData(0xf886, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-desc for icon [thinArrowDown91] @Deprecated('Use "thinArrowDown91" instead.') @@ -1971,7 +1971,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-a-z?style=solid /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData solidArrowDownAZ = IconDataSolid(0xf15d); + static const IconData solidArrowDownAZ = IconData(0xf15d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-asc for icon [solidArrowDownAZ] @Deprecated('Use "solidArrowDownAZ" instead.') @@ -1985,7 +1985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-a-z?style=regular /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData arrowDownAZ = IconDataRegular(0xf15d); + static const IconData arrowDownAZ = IconData(0xf15d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-asc for icon [arrowDownAZ] @Deprecated('Use "arrowDownAZ" instead.') @@ -1999,7 +1999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-a-z?style=light /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData lightArrowDownAZ = IconDataLight(0xf15d); + static const IconData lightArrowDownAZ = IconData(0xf15d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-asc for icon [lightArrowDownAZ] @Deprecated('Use "lightArrowDownAZ" instead.') @@ -2013,7 +2013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-a-z?style=thin /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData thinArrowDownAZ = IconDataThin(0xf15d); + static const IconData thinArrowDownAZ = IconData(0xf15d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-asc for icon [thinArrowDownAZ] @Deprecated('Use "thinArrowDownAZ" instead.') @@ -2027,7 +2027,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-arrow-up?style=solid /// arrange, arrows, exchange, filter, order, transfer - static const IconData solidArrowDownArrowUp = IconDataSolid(0xf883); + static const IconData solidArrowDownArrowUp = IconData(0xf883, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-alt for icon [solidArrowDownArrowUp] @Deprecated('Use "solidArrowDownArrowUp" instead.') @@ -2037,7 +2037,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-arrow-up?style=regular /// arrange, arrows, exchange, filter, order, transfer - static const IconData arrowDownArrowUp = IconDataRegular(0xf883); + static const IconData arrowDownArrowUp = IconData(0xf883, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-alt for icon [arrowDownArrowUp] @Deprecated('Use "arrowDownArrowUp" instead.') @@ -2047,7 +2047,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-arrow-up?style=light /// arrange, arrows, exchange, filter, order, transfer - static const IconData lightArrowDownArrowUp = IconDataLight(0xf883); + static const IconData lightArrowDownArrowUp = IconData(0xf883, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-alt for icon [lightArrowDownArrowUp] @Deprecated('Use "lightArrowDownArrowUp" instead.') @@ -2057,7 +2057,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-arrow-up?style=thin /// arrange, arrows, exchange, filter, order, transfer - static const IconData thinArrowDownArrowUp = IconDataThin(0xf883); + static const IconData thinArrowDownArrowUp = IconData(0xf883, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-alt for icon [thinArrowDownArrowUp] @Deprecated('Use "thinArrowDownArrowUp" instead.') @@ -2067,7 +2067,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-big-small?style=solid /// arrange, filter, order, rectangle - static const IconData solidArrowDownBigSmall = IconDataSolid(0xf88c); + static const IconData solidArrowDownBigSmall = IconData(0xf88c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down for icon [solidArrowDownBigSmall] @Deprecated('Use "solidArrowDownBigSmall" instead.') @@ -2077,7 +2077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-big-small?style=regular /// arrange, filter, order, rectangle - static const IconData arrowDownBigSmall = IconDataRegular(0xf88c); + static const IconData arrowDownBigSmall = IconData(0xf88c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down for icon [arrowDownBigSmall] @Deprecated('Use "arrowDownBigSmall" instead.') @@ -2087,7 +2087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-big-small?style=light /// arrange, filter, order, rectangle - static const IconData lightArrowDownBigSmall = IconDataLight(0xf88c); + static const IconData lightArrowDownBigSmall = IconData(0xf88c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down for icon [lightArrowDownBigSmall] @Deprecated('Use "lightArrowDownBigSmall" instead.') @@ -2097,7 +2097,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-big-small?style=thin /// arrange, filter, order, rectangle - static const IconData thinArrowDownBigSmall = IconDataThin(0xf88c); + static const IconData thinArrowDownBigSmall = IconData(0xf88c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down for icon [thinArrowDownBigSmall] @Deprecated('Use "thinArrowDownBigSmall" instead.') @@ -2107,55 +2107,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-from-arc?style=solid /// enter, save, share, transfer, download - static const IconData solidArrowDownFromArc = IconDataSolid(0xe614); + static const IconData solidArrowDownFromArc = IconData(0xe614, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down From Arc icon /// /// https://fontawesome.com/icons/arrow-down-from-arc?style=regular /// enter, save, share, transfer, download - static const IconData arrowDownFromArc = IconDataRegular(0xe614); + static const IconData arrowDownFromArc = IconData(0xe614, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down From Arc icon /// /// https://fontawesome.com/icons/arrow-down-from-arc?style=light /// enter, save, share, transfer, download - static const IconData lightArrowDownFromArc = IconDataLight(0xe614); + static const IconData lightArrowDownFromArc = IconData(0xe614, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down From Arc icon /// /// https://fontawesome.com/icons/arrow-down-from-arc?style=thin /// enter, save, share, transfer, download - static const IconData thinArrowDownFromArc = IconDataThin(0xe614); + static const IconData thinArrowDownFromArc = IconData(0xe614, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-from-dotted-line?style=solid /// download, export, transfer - static const IconData solidArrowDownFromDottedLine = IconDataSolid(0xe090); + static const IconData solidArrowDownFromDottedLine = IconData(0xe090, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-from-dotted-line?style=regular /// download, export, transfer - static const IconData arrowDownFromDottedLine = IconDataRegular(0xe090); + static const IconData arrowDownFromDottedLine = IconData(0xe090, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-from-dotted-line?style=light /// download, export, transfer - static const IconData lightArrowDownFromDottedLine = IconDataLight(0xe090); + static const IconData lightArrowDownFromDottedLine = IconData(0xe090, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-from-dotted-line?style=thin /// download, export, transfer - static const IconData thinArrowDownFromDottedLine = IconDataThin(0xe090); + static const IconData thinArrowDownFromDottedLine = IconData(0xe090, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down From Line icon /// /// https://fontawesome.com/icons/arrow-down-from-line?style=solid /// download, export, transfer - static const IconData solidArrowDownFromLine = IconDataSolid(0xf345); + static const IconData solidArrowDownFromLine = IconData(0xf345, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-top for icon [solidArrowDownFromLine] @Deprecated('Use "solidArrowDownFromLine" instead.') @@ -2165,7 +2165,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-from-line?style=regular /// download, export, transfer - static const IconData arrowDownFromLine = IconDataRegular(0xf345); + static const IconData arrowDownFromLine = IconData(0xf345, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-top for icon [arrowDownFromLine] @Deprecated('Use "arrowDownFromLine" instead.') @@ -2175,7 +2175,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-from-line?style=light /// download, export, transfer - static const IconData lightArrowDownFromLine = IconDataLight(0xf345); + static const IconData lightArrowDownFromLine = IconData(0xf345, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-top for icon [lightArrowDownFromLine] @Deprecated('Use "lightArrowDownFromLine" instead.') @@ -2185,7 +2185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-from-line?style=thin /// download, export, transfer - static const IconData thinArrowDownFromLine = IconDataThin(0xf345); + static const IconData thinArrowDownFromLine = IconData(0xf345, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-top for icon [thinArrowDownFromLine] @Deprecated('Use "thinArrowDownFromLine" instead.') @@ -2195,59 +2195,59 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-left?style=solid /// diagonal, southwest - static const IconData solidArrowDownLeft = IconDataSolid(0xe091); + static const IconData solidArrowDownLeft = IconData(0xe091, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down Left icon /// /// https://fontawesome.com/icons/arrow-down-left?style=regular /// diagonal, southwest - static const IconData arrowDownLeft = IconDataRegular(0xe091); + static const IconData arrowDownLeft = IconData(0xe091, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down Left icon /// /// https://fontawesome.com/icons/arrow-down-left?style=light /// diagonal, southwest - static const IconData lightArrowDownLeft = IconDataLight(0xe091); + static const IconData lightArrowDownLeft = IconData(0xe091, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down Left icon /// /// https://fontawesome.com/icons/arrow-down-left?style=thin /// diagonal, southwest - static const IconData thinArrowDownLeft = IconDataThin(0xe091); + static const IconData thinArrowDownLeft = IconData(0xe091, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Left And Arrow Up Right To Center icon /// /// https://fontawesome.com/icons/arrow-down-left-and-arrow-up-right-to-center?style=solid /// minimize, resize, scale, download, export, size, transfer static const IconData solidArrowDownLeftAndArrowUpRightToCenter = - IconDataSolid(0xe092); + IconData(0xe092, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down Left And Arrow Up Right To Center icon /// /// https://fontawesome.com/icons/arrow-down-left-and-arrow-up-right-to-center?style=regular /// minimize, resize, scale, download, export, size, transfer static const IconData arrowDownLeftAndArrowUpRightToCenter = - IconDataRegular(0xe092); + IconData(0xe092, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down Left And Arrow Up Right To Center icon /// /// https://fontawesome.com/icons/arrow-down-left-and-arrow-up-right-to-center?style=light /// minimize, resize, scale, download, export, size, transfer static const IconData lightArrowDownLeftAndArrowUpRightToCenter = - IconDataLight(0xe092); + IconData(0xe092, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down Left And Arrow Up Right To Center icon /// /// https://fontawesome.com/icons/arrow-down-left-and-arrow-up-right-to-center?style=thin /// minimize, resize, scale, download, export, size, transfer static const IconData thinArrowDownLeftAndArrowUpRightToCenter = - IconDataThin(0xe092); + IconData(0xe092, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Long icon /// /// https://fontawesome.com/icons/arrow-down-long?style=solid /// download, long-arrow-down - static const IconData solidArrowDownLong = IconDataSolid(0xf175); + static const IconData solidArrowDownLong = IconData(0xf175, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-down for icon [solidArrowDownLong] @Deprecated('Use "solidArrowDownLong" instead.') @@ -2257,7 +2257,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-long?style=regular /// download, long-arrow-down - static const IconData arrowDownLong = IconDataRegular(0xf175); + static const IconData arrowDownLong = IconData(0xf175, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-down for icon [arrowDownLong] @Deprecated('Use "arrowDownLong" instead.') @@ -2267,7 +2267,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-long?style=light /// download, long-arrow-down - static const IconData lightArrowDownLong = IconDataLight(0xf175); + static const IconData lightArrowDownLong = IconData(0xf175, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-down for icon [lightArrowDownLong] @Deprecated('Use "lightArrowDownLong" instead.') @@ -2277,7 +2277,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-long?style=thin /// download, long-arrow-down - static const IconData thinArrowDownLong = IconDataThin(0xf175); + static const IconData thinArrowDownLong = IconData(0xf175, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-down for icon [thinArrowDownLong] @Deprecated('Use "thinArrowDownLong" instead.') @@ -2287,31 +2287,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-right?style=solid /// diagonal, southeast - static const IconData solidArrowDownRight = IconDataSolid(0xe093); + static const IconData solidArrowDownRight = IconData(0xe093, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down Right icon /// /// https://fontawesome.com/icons/arrow-down-right?style=regular /// diagonal, southeast - static const IconData arrowDownRight = IconDataRegular(0xe093); + static const IconData arrowDownRight = IconData(0xe093, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down Right icon /// /// https://fontawesome.com/icons/arrow-down-right?style=light /// diagonal, southeast - static const IconData lightArrowDownRight = IconDataLight(0xe093); + static const IconData lightArrowDownRight = IconData(0xe093, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down Right icon /// /// https://fontawesome.com/icons/arrow-down-right?style=thin /// diagonal, southeast - static const IconData thinArrowDownRight = IconDataThin(0xe093); + static const IconData thinArrowDownRight = IconData(0xe093, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Short Wide icon /// /// https://fontawesome.com/icons/arrow-down-short-wide?style=solid /// arrange, filter, order, sort-amount-asc - static const IconData solidArrowDownShortWide = IconDataSolid(0xf884); + static const IconData solidArrowDownShortWide = IconData(0xf884, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-desc for icon [solidArrowDownShortWide] @Deprecated('Use "solidArrowDownShortWide" instead.') @@ -2325,7 +2325,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-short-wide?style=regular /// arrange, filter, order, sort-amount-asc - static const IconData arrowDownShortWide = IconDataRegular(0xf884); + static const IconData arrowDownShortWide = IconData(0xf884, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-desc for icon [arrowDownShortWide] @Deprecated('Use "arrowDownShortWide" instead.') @@ -2339,7 +2339,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-short-wide?style=light /// arrange, filter, order, sort-amount-asc - static const IconData lightArrowDownShortWide = IconDataLight(0xf884); + static const IconData lightArrowDownShortWide = IconData(0xf884, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-desc for icon [lightArrowDownShortWide] @Deprecated('Use "lightArrowDownShortWide" instead.') @@ -2353,7 +2353,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-short-wide?style=thin /// arrange, filter, order, sort-amount-asc - static const IconData thinArrowDownShortWide = IconDataThin(0xf884); + static const IconData thinArrowDownShortWide = IconData(0xf884, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-desc for icon [thinArrowDownShortWide] @Deprecated('Use "thinArrowDownShortWide" instead.') @@ -2367,7 +2367,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-small-big?style=solid /// arrange, filter, order, rectangle - static const IconData solidArrowDownSmallBig = IconDataSolid(0xf88d); + static const IconData solidArrowDownSmallBig = IconData(0xf88d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down-alt for icon [solidArrowDownSmallBig] @Deprecated('Use "solidArrowDownSmallBig" instead.') @@ -2377,7 +2377,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-small-big?style=regular /// arrange, filter, order, rectangle - static const IconData arrowDownSmallBig = IconDataRegular(0xf88d); + static const IconData arrowDownSmallBig = IconData(0xf88d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down-alt for icon [arrowDownSmallBig] @Deprecated('Use "arrowDownSmallBig" instead.') @@ -2387,7 +2387,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-small-big?style=light /// arrange, filter, order, rectangle - static const IconData lightArrowDownSmallBig = IconDataLight(0xf88d); + static const IconData lightArrowDownSmallBig = IconData(0xf88d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down-alt for icon [lightArrowDownSmallBig] @Deprecated('Use "lightArrowDownSmallBig" instead.') @@ -2397,7 +2397,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-small-big?style=thin /// arrange, filter, order, rectangle - static const IconData thinArrowDownSmallBig = IconDataThin(0xf88d); + static const IconData thinArrowDownSmallBig = IconData(0xf88d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-down-alt for icon [thinArrowDownSmallBig] @Deprecated('Use "thinArrowDownSmallBig" instead.') @@ -2407,7 +2407,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-square-triangle?style=solid /// arrange, filter, order, shapes, square, triangle - static const IconData solidArrowDownSquareTriangle = IconDataSolid(0xf889); + static const IconData solidArrowDownSquareTriangle = IconData(0xf889, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down-alt for icon [solidArrowDownSquareTriangle] @Deprecated('Use "solidArrowDownSquareTriangle" instead.') @@ -2417,7 +2417,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-square-triangle?style=regular /// arrange, filter, order, shapes, square, triangle - static const IconData arrowDownSquareTriangle = IconDataRegular(0xf889); + static const IconData arrowDownSquareTriangle = IconData(0xf889, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down-alt for icon [arrowDownSquareTriangle] @Deprecated('Use "arrowDownSquareTriangle" instead.') @@ -2427,7 +2427,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-square-triangle?style=light /// arrange, filter, order, shapes, square, triangle - static const IconData lightArrowDownSquareTriangle = IconDataLight(0xf889); + static const IconData lightArrowDownSquareTriangle = IconData(0xf889, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down-alt for icon [lightArrowDownSquareTriangle] @Deprecated('Use "lightArrowDownSquareTriangle" instead.') @@ -2437,7 +2437,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-square-triangle?style=thin /// arrange, filter, order, shapes, square, triangle - static const IconData thinArrowDownSquareTriangle = IconDataThin(0xf889); + static const IconData thinArrowDownSquareTriangle = IconData(0xf889, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down-alt for icon [thinArrowDownSquareTriangle] @Deprecated('Use "thinArrowDownSquareTriangle" instead.') @@ -2447,79 +2447,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-to-arc?style=solid /// download, enter, insert, save, share, transfer - static const IconData solidArrowDownToArc = IconDataSolid(0xe4ae); + static const IconData solidArrowDownToArc = IconData(0xe4ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down To Arc icon /// /// https://fontawesome.com/icons/arrow-down-to-arc?style=regular /// download, enter, insert, save, share, transfer - static const IconData arrowDownToArc = IconDataRegular(0xe4ae); + static const IconData arrowDownToArc = IconData(0xe4ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down To Arc icon /// /// https://fontawesome.com/icons/arrow-down-to-arc?style=light /// download, enter, insert, save, share, transfer - static const IconData lightArrowDownToArc = IconDataLight(0xe4ae); + static const IconData lightArrowDownToArc = IconData(0xe4ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down To Arc icon /// /// https://fontawesome.com/icons/arrow-down-to-arc?style=thin /// download, enter, insert, save, share, transfer - static const IconData thinArrowDownToArc = IconDataThin(0xe4ae); + static const IconData thinArrowDownToArc = IconData(0xe4ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down To Bracket icon /// /// https://fontawesome.com/icons/arrow-down-to-bracket?style=solid /// download, insert, share, transfer - static const IconData solidArrowDownToBracket = IconDataSolid(0xe094); + static const IconData solidArrowDownToBracket = IconData(0xe094, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down To Bracket icon /// /// https://fontawesome.com/icons/arrow-down-to-bracket?style=regular /// download, insert, share, transfer - static const IconData arrowDownToBracket = IconDataRegular(0xe094); + static const IconData arrowDownToBracket = IconData(0xe094, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down To Bracket icon /// /// https://fontawesome.com/icons/arrow-down-to-bracket?style=light /// download, insert, share, transfer - static const IconData lightArrowDownToBracket = IconDataLight(0xe094); + static const IconData lightArrowDownToBracket = IconData(0xe094, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down To Bracket icon /// /// https://fontawesome.com/icons/arrow-down-to-bracket?style=thin /// download, insert, share, transfer - static const IconData thinArrowDownToBracket = IconDataThin(0xe094); + static const IconData thinArrowDownToBracket = IconData(0xe094, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-to-dotted-line?style=solid /// download, export, insert, transfer - static const IconData solidArrowDownToDottedLine = IconDataSolid(0xe095); + static const IconData solidArrowDownToDottedLine = IconData(0xe095, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-to-dotted-line?style=regular /// download, export, insert, transfer - static const IconData arrowDownToDottedLine = IconDataRegular(0xe095); + static const IconData arrowDownToDottedLine = IconData(0xe095, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-to-dotted-line?style=light /// download, export, insert, transfer - static const IconData lightArrowDownToDottedLine = IconDataLight(0xe095); + static const IconData lightArrowDownToDottedLine = IconData(0xe095, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-down-to-dotted-line?style=thin /// download, export, insert, transfer - static const IconData thinArrowDownToDottedLine = IconDataThin(0xe095); + static const IconData thinArrowDownToDottedLine = IconData(0xe095, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down To Line icon /// /// https://fontawesome.com/icons/arrow-down-to-line?style=solid /// download, export, insert, transfer - static const IconData solidArrowDownToLine = IconDataSolid(0xf33d); + static const IconData solidArrowDownToLine = IconData(0xf33d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-bottom for icon [solidArrowDownToLine] @Deprecated('Use "solidArrowDownToLine" instead.') @@ -2529,7 +2529,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-to-line?style=regular /// download, export, insert, transfer - static const IconData arrowDownToLine = IconDataRegular(0xf33d); + static const IconData arrowDownToLine = IconData(0xf33d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-bottom for icon [arrowDownToLine] @Deprecated('Use "arrowDownToLine" instead.') @@ -2539,7 +2539,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-to-line?style=light /// download, export, insert, transfer - static const IconData lightArrowDownToLine = IconDataLight(0xf33d); + static const IconData lightArrowDownToLine = IconData(0xf33d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-bottom for icon [lightArrowDownToLine] @Deprecated('Use "lightArrowDownToLine" instead.') @@ -2549,7 +2549,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-to-line?style=thin /// download, export, insert, transfer - static const IconData thinArrowDownToLine = IconDataThin(0xf33d); + static const IconData thinArrowDownToLine = IconData(0xf33d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-bottom for icon [thinArrowDownToLine] @Deprecated('Use "thinArrowDownToLine" instead.') @@ -2559,31 +2559,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-to-square?style=solid /// download, insert, share, transfer - static const IconData solidArrowDownToSquare = IconDataSolid(0xe096); + static const IconData solidArrowDownToSquare = IconData(0xe096, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down To Square icon /// /// https://fontawesome.com/icons/arrow-down-to-square?style=regular /// download, insert, share, transfer - static const IconData arrowDownToSquare = IconDataRegular(0xe096); + static const IconData arrowDownToSquare = IconData(0xe096, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down To Square icon /// /// https://fontawesome.com/icons/arrow-down-to-square?style=light /// download, insert, share, transfer - static const IconData lightArrowDownToSquare = IconDataLight(0xe096); + static const IconData lightArrowDownToSquare = IconData(0xe096, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down To Square icon /// /// https://fontawesome.com/icons/arrow-down-to-square?style=thin /// download, insert, share, transfer - static const IconData thinArrowDownToSquare = IconDataThin(0xe096); + static const IconData thinArrowDownToSquare = IconData(0xe096, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Triangle Square icon /// /// https://fontawesome.com/icons/arrow-down-triangle-square?style=solid /// arrange, filter, order, shapes, square, triangle - static const IconData solidArrowDownTriangleSquare = IconDataSolid(0xf888); + static const IconData solidArrowDownTriangleSquare = IconData(0xf888, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down for icon [solidArrowDownTriangleSquare] @Deprecated('Use "solidArrowDownTriangleSquare" instead.') @@ -2593,7 +2593,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-triangle-square?style=regular /// arrange, filter, order, shapes, square, triangle - static const IconData arrowDownTriangleSquare = IconDataRegular(0xf888); + static const IconData arrowDownTriangleSquare = IconData(0xf888, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down for icon [arrowDownTriangleSquare] @Deprecated('Use "arrowDownTriangleSquare" instead.') @@ -2603,7 +2603,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-triangle-square?style=light /// arrange, filter, order, shapes, square, triangle - static const IconData lightArrowDownTriangleSquare = IconDataLight(0xf888); + static const IconData lightArrowDownTriangleSquare = IconData(0xf888, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down for icon [lightArrowDownTriangleSquare] @Deprecated('Use "lightArrowDownTriangleSquare" instead.') @@ -2613,7 +2613,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-triangle-square?style=thin /// arrange, filter, order, shapes, square, triangle - static const IconData thinArrowDownTriangleSquare = IconDataThin(0xf888); + static const IconData thinArrowDownTriangleSquare = IconData(0xf888, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-down for icon [thinArrowDownTriangleSquare] @Deprecated('Use "thinArrowDownTriangleSquare" instead.') @@ -2623,55 +2623,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-up-across-line?style=solid /// border, crossing, transfer - static const IconData solidArrowDownUpAcrossLine = IconDataSolid(0xe4af); + static const IconData solidArrowDownUpAcrossLine = IconData(0xe4af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down Up Across Line icon /// /// https://fontawesome.com/icons/arrow-down-up-across-line?style=regular /// border, crossing, transfer - static const IconData arrowDownUpAcrossLine = IconDataRegular(0xe4af); + static const IconData arrowDownUpAcrossLine = IconData(0xe4af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down Up Across Line icon /// /// https://fontawesome.com/icons/arrow-down-up-across-line?style=light /// border, crossing, transfer - static const IconData lightArrowDownUpAcrossLine = IconDataLight(0xe4af); + static const IconData lightArrowDownUpAcrossLine = IconData(0xe4af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down Up Across Line icon /// /// https://fontawesome.com/icons/arrow-down-up-across-line?style=thin /// border, crossing, transfer - static const IconData thinArrowDownUpAcrossLine = IconDataThin(0xe4af); + static const IconData thinArrowDownUpAcrossLine = IconData(0xe4af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Up Lock icon /// /// https://fontawesome.com/icons/arrow-down-up-lock?style=solid /// border, closed, crossing, lockdown, padlock, privacy, quarantine, transfer - static const IconData solidArrowDownUpLock = IconDataSolid(0xe4b0); + static const IconData solidArrowDownUpLock = IconData(0xe4b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Down Up Lock icon /// /// https://fontawesome.com/icons/arrow-down-up-lock?style=regular /// border, closed, crossing, lockdown, padlock, privacy, quarantine, transfer - static const IconData arrowDownUpLock = IconDataRegular(0xe4b0); + static const IconData arrowDownUpLock = IconData(0xe4b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Down Up Lock icon /// /// https://fontawesome.com/icons/arrow-down-up-lock?style=light /// border, closed, crossing, lockdown, padlock, privacy, quarantine, transfer - static const IconData lightArrowDownUpLock = IconDataLight(0xe4b0); + static const IconData lightArrowDownUpLock = IconData(0xe4b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Down Up Lock icon /// /// https://fontawesome.com/icons/arrow-down-up-lock?style=thin /// border, closed, crossing, lockdown, padlock, privacy, quarantine, transfer - static const IconData thinArrowDownUpLock = IconDataThin(0xe4b0); + static const IconData thinArrowDownUpLock = IconData(0xe4b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Down Wide Short icon /// /// https://fontawesome.com/icons/arrow-down-wide-short?style=solid /// arrange, filter, number, order, sort-amount-asc - static const IconData solidArrowDownWideShort = IconDataSolid(0xf160); + static const IconData solidArrowDownWideShort = IconData(0xf160, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-asc for icon [solidArrowDownWideShort] @Deprecated('Use "solidArrowDownWideShort" instead.') @@ -2685,7 +2685,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-wide-short?style=regular /// arrange, filter, number, order, sort-amount-asc - static const IconData arrowDownWideShort = IconDataRegular(0xf160); + static const IconData arrowDownWideShort = IconData(0xf160, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-asc for icon [arrowDownWideShort] @Deprecated('Use "arrowDownWideShort" instead.') @@ -2699,7 +2699,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-wide-short?style=light /// arrange, filter, number, order, sort-amount-asc - static const IconData lightArrowDownWideShort = IconDataLight(0xf160); + static const IconData lightArrowDownWideShort = IconData(0xf160, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-asc for icon [lightArrowDownWideShort] @Deprecated('Use "lightArrowDownWideShort" instead.') @@ -2713,7 +2713,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-wide-short?style=thin /// arrange, filter, number, order, sort-amount-asc - static const IconData thinArrowDownWideShort = IconDataThin(0xf160); + static const IconData thinArrowDownWideShort = IconData(0xf160, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-asc for icon [thinArrowDownWideShort] @Deprecated('Use "thinArrowDownWideShort" instead.') @@ -2727,7 +2727,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-z-a?style=solid /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData solidArrowDownZA = IconDataSolid(0xf881); + static const IconData solidArrowDownZA = IconData(0xf881, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-desc for icon [solidArrowDownZA] @Deprecated('Use "solidArrowDownZA" instead.') @@ -2741,7 +2741,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-z-a?style=regular /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData arrowDownZA = IconDataRegular(0xf881); + static const IconData arrowDownZA = IconData(0xf881, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-desc for icon [arrowDownZA] @Deprecated('Use "arrowDownZA" instead.') @@ -2755,7 +2755,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-z-a?style=light /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData lightArrowDownZA = IconDataLight(0xf881); + static const IconData lightArrowDownZA = IconData(0xf881, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-desc for icon [lightArrowDownZA] @Deprecated('Use "lightArrowDownZA" instead.') @@ -2769,7 +2769,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-down-z-a?style=thin /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData thinArrowDownZA = IconDataThin(0xf881); + static const IconData thinArrowDownZA = IconData(0xf881, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-desc for icon [thinArrowDownZA] @Deprecated('Use "thinArrowDownZA" instead.') @@ -2783,55 +2783,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left?style=solid /// Leftwards Arrow, back, previous - static const IconData solidArrowLeft = IconDataSolid(0xf060); + static const IconData solidArrowLeft = IconData(0xf060, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Left icon /// /// https://fontawesome.com/icons/arrow-left?style=regular /// Leftwards Arrow, back, previous - static const IconData arrowLeft = IconDataRegular(0xf060); + static const IconData arrowLeft = IconData(0xf060, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Left icon /// /// https://fontawesome.com/icons/arrow-left?style=light /// Leftwards Arrow, back, previous - static const IconData lightArrowLeft = IconDataLight(0xf060); + static const IconData lightArrowLeft = IconData(0xf060, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Left icon /// /// https://fontawesome.com/icons/arrow-left?style=thin /// Leftwards Arrow, back, previous - static const IconData thinArrowLeft = IconDataThin(0xf060); + static const IconData thinArrowLeft = IconData(0xf060, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Left From Arc icon /// /// https://fontawesome.com/icons/arrow-left-from-arc?style=solid /// give, leave, send, transfer, exit - static const IconData solidArrowLeftFromArc = IconDataSolid(0xe615); + static const IconData solidArrowLeftFromArc = IconData(0xe615, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Left From Arc icon /// /// https://fontawesome.com/icons/arrow-left-from-arc?style=regular /// give, leave, send, transfer, exit - static const IconData arrowLeftFromArc = IconDataRegular(0xe615); + static const IconData arrowLeftFromArc = IconData(0xe615, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Left From Arc icon /// /// https://fontawesome.com/icons/arrow-left-from-arc?style=light /// give, leave, send, transfer, exit - static const IconData lightArrowLeftFromArc = IconDataLight(0xe615); + static const IconData lightArrowLeftFromArc = IconData(0xe615, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Left From Arc icon /// /// https://fontawesome.com/icons/arrow-left-from-arc?style=thin /// give, leave, send, transfer, exit - static const IconData thinArrowLeftFromArc = IconDataThin(0xe615); + static const IconData thinArrowLeftFromArc = IconData(0xe615, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Left From Line icon /// /// https://fontawesome.com/icons/arrow-left-from-line?style=solid /// Leftwards Arrow from Bar, forward, next - static const IconData solidArrowLeftFromLine = IconDataSolid(0xf344); + static const IconData solidArrowLeftFromLine = IconData(0xf344, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-right for icon [solidArrowLeftFromLine] @Deprecated('Use "solidArrowLeftFromLine" instead.') @@ -2841,7 +2841,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-from-line?style=regular /// Leftwards Arrow from Bar, forward, next - static const IconData arrowLeftFromLine = IconDataRegular(0xf344); + static const IconData arrowLeftFromLine = IconData(0xf344, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-right for icon [arrowLeftFromLine] @Deprecated('Use "arrowLeftFromLine" instead.') @@ -2851,7 +2851,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-from-line?style=light /// Leftwards Arrow from Bar, forward, next - static const IconData lightArrowLeftFromLine = IconDataLight(0xf344); + static const IconData lightArrowLeftFromLine = IconData(0xf344, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-right for icon [lightArrowLeftFromLine] @Deprecated('Use "lightArrowLeftFromLine" instead.') @@ -2861,7 +2861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-from-line?style=thin /// Leftwards Arrow from Bar, forward, next - static const IconData thinArrowLeftFromLine = IconDataThin(0xf344); + static const IconData thinArrowLeftFromLine = IconData(0xf344, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-right for icon [thinArrowLeftFromLine] @Deprecated('Use "thinArrowLeftFromLine" instead.') @@ -2871,7 +2871,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-long?style=solid /// back, long-arrow-left, previous - static const IconData solidArrowLeftLong = IconDataSolid(0xf177); + static const IconData solidArrowLeftLong = IconData(0xf177, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-left for icon [solidArrowLeftLong] @Deprecated('Use "solidArrowLeftLong" instead.') @@ -2881,7 +2881,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-long?style=regular /// back, long-arrow-left, previous - static const IconData arrowLeftLong = IconDataRegular(0xf177); + static const IconData arrowLeftLong = IconData(0xf177, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-left for icon [arrowLeftLong] @Deprecated('Use "arrowLeftLong" instead.') @@ -2891,7 +2891,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-long?style=light /// back, long-arrow-left, previous - static const IconData lightArrowLeftLong = IconDataLight(0xf177); + static const IconData lightArrowLeftLong = IconData(0xf177, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-left for icon [lightArrowLeftLong] @Deprecated('Use "lightArrowLeftLong" instead.') @@ -2901,7 +2901,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-long?style=thin /// back, long-arrow-left, previous - static const IconData thinArrowLeftLong = IconDataThin(0xf177); + static const IconData thinArrowLeftLong = IconData(0xf177, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-left for icon [thinArrowLeftLong] @Deprecated('Use "thinArrowLeftLong" instead.') @@ -2911,55 +2911,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-long-to-line?style=solid /// back, delete, insert, left - static const IconData solidArrowLeftLongToLine = IconDataSolid(0xe3d4); + static const IconData solidArrowLeftLongToLine = IconData(0xe3d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Left Long To Line icon /// /// https://fontawesome.com/icons/arrow-left-long-to-line?style=regular /// back, delete, insert, left - static const IconData arrowLeftLongToLine = IconDataRegular(0xe3d4); + static const IconData arrowLeftLongToLine = IconData(0xe3d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Left Long To Line icon /// /// https://fontawesome.com/icons/arrow-left-long-to-line?style=light /// back, delete, insert, left - static const IconData lightArrowLeftLongToLine = IconDataLight(0xe3d4); + static const IconData lightArrowLeftLongToLine = IconData(0xe3d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Left Long To Line icon /// /// https://fontawesome.com/icons/arrow-left-long-to-line?style=thin /// back, delete, insert, left - static const IconData thinArrowLeftLongToLine = IconDataThin(0xe3d4); + static const IconData thinArrowLeftLongToLine = IconData(0xe3d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Left To Arc icon /// /// https://fontawesome.com/icons/arrow-left-to-arc?style=solid /// give, into, login, send, sign in, enter - static const IconData solidArrowLeftToArc = IconDataSolid(0xe616); + static const IconData solidArrowLeftToArc = IconData(0xe616, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Left To Arc icon /// /// https://fontawesome.com/icons/arrow-left-to-arc?style=regular /// give, into, login, send, sign in, enter - static const IconData arrowLeftToArc = IconDataRegular(0xe616); + static const IconData arrowLeftToArc = IconData(0xe616, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Left To Arc icon /// /// https://fontawesome.com/icons/arrow-left-to-arc?style=light /// give, into, login, send, sign in, enter - static const IconData lightArrowLeftToArc = IconDataLight(0xe616); + static const IconData lightArrowLeftToArc = IconData(0xe616, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Left To Arc icon /// /// https://fontawesome.com/icons/arrow-left-to-arc?style=thin /// give, into, login, send, sign in, enter - static const IconData thinArrowLeftToArc = IconDataThin(0xe616); + static const IconData thinArrowLeftToArc = IconData(0xe616, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Left To Line icon /// /// https://fontawesome.com/icons/arrow-left-to-line?style=solid /// Leftwards Arrow to Bar, back, insert, previous - static const IconData solidArrowLeftToLine = IconDataSolid(0xf33e); + static const IconData solidArrowLeftToLine = IconData(0xf33e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-left for icon [solidArrowLeftToLine] @Deprecated('Use "solidArrowLeftToLine" instead.') @@ -2969,7 +2969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-to-line?style=regular /// Leftwards Arrow to Bar, back, insert, previous - static const IconData arrowLeftToLine = IconDataRegular(0xf33e); + static const IconData arrowLeftToLine = IconData(0xf33e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-left for icon [arrowLeftToLine] @Deprecated('Use "arrowLeftToLine" instead.') @@ -2979,7 +2979,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-to-line?style=light /// Leftwards Arrow to Bar, back, insert, previous - static const IconData lightArrowLeftToLine = IconDataLight(0xf33e); + static const IconData lightArrowLeftToLine = IconData(0xf33e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-left for icon [lightArrowLeftToLine] @Deprecated('Use "lightArrowLeftToLine" instead.') @@ -2989,7 +2989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-left-to-line?style=thin /// Leftwards Arrow to Bar, back, insert, previous - static const IconData thinArrowLeftToLine = IconDataThin(0xf33e); + static const IconData thinArrowLeftToLine = IconData(0xf33e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-left for icon [thinArrowLeftToLine] @Deprecated('Use "thinArrowLeftToLine" instead.') @@ -2999,7 +2999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-pointer?style=solid /// arrow, cursor, select - static const IconData solidArrowPointer = IconDataSolid(0xf245); + static const IconData solidArrowPointer = IconData(0xf245, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mouse-pointer for icon [solidArrowPointer] @Deprecated('Use "solidArrowPointer" instead.') @@ -3009,7 +3009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-pointer?style=regular /// arrow, cursor, select - static const IconData arrowPointer = IconDataRegular(0xf245); + static const IconData arrowPointer = IconData(0xf245, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mouse-pointer for icon [arrowPointer] @Deprecated('Use "arrowPointer" instead.') @@ -3019,7 +3019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-pointer?style=light /// arrow, cursor, select - static const IconData lightArrowPointer = IconDataLight(0xf245); + static const IconData lightArrowPointer = IconData(0xf245, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mouse-pointer for icon [lightArrowPointer] @Deprecated('Use "lightArrowPointer" instead.') @@ -3029,7 +3029,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-pointer?style=thin /// arrow, cursor, select - static const IconData thinArrowPointer = IconDataThin(0xf245); + static const IconData thinArrowPointer = IconData(0xf245, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mouse-pointer for icon [thinArrowPointer] @Deprecated('Use "thinArrowPointer" instead.') @@ -3039,55 +3039,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-progress?style=solid /// flow, methodology, process, progress, steps, route - static const IconData solidArrowProgress = IconDataSolid(0xe5df); + static const IconData solidArrowProgress = IconData(0xe5df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Progress icon /// /// https://fontawesome.com/icons/arrow-progress?style=regular /// flow, methodology, process, progress, steps, route - static const IconData arrowProgress = IconDataRegular(0xe5df); + static const IconData arrowProgress = IconData(0xe5df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Progress icon /// /// https://fontawesome.com/icons/arrow-progress?style=light /// flow, methodology, process, progress, steps, route - static const IconData lightArrowProgress = IconDataLight(0xe5df); + static const IconData lightArrowProgress = IconData(0xe5df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Progress icon /// /// https://fontawesome.com/icons/arrow-progress?style=thin /// flow, methodology, process, progress, steps, route - static const IconData thinArrowProgress = IconDataThin(0xe5df); + static const IconData thinArrowProgress = IconData(0xe5df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right icon /// /// https://fontawesome.com/icons/arrow-right?style=solid /// Rightwards Arrow, forward, next - static const IconData solidArrowRight = IconDataSolid(0xf061); + static const IconData solidArrowRight = IconData(0xf061, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Right icon /// /// https://fontawesome.com/icons/arrow-right?style=regular /// Rightwards Arrow, forward, next - static const IconData arrowRight = IconDataRegular(0xf061); + static const IconData arrowRight = IconData(0xf061, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Right icon /// /// https://fontawesome.com/icons/arrow-right?style=light /// Rightwards Arrow, forward, next - static const IconData lightArrowRight = IconDataLight(0xf061); + static const IconData lightArrowRight = IconData(0xf061, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Right icon /// /// https://fontawesome.com/icons/arrow-right?style=thin /// Rightwards Arrow, forward, next - static const IconData thinArrowRight = IconDataThin(0xf061); + static const IconData thinArrowRight = IconData(0xf061, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right Arrow Left icon /// /// https://fontawesome.com/icons/arrow-right-arrow-left?style=solid /// Rightwards Arrow Over Leftwards Arrow, arrow, arrows, reciprocate, return, swap, transfer - static const IconData solidArrowRightArrowLeft = IconDataSolid(0xf0ec); + static const IconData solidArrowRightArrowLeft = IconData(0xf0ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exchange for icon [solidArrowRightArrowLeft] @Deprecated('Use "solidArrowRightArrowLeft" instead.') @@ -3097,7 +3097,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-arrow-left?style=regular /// Rightwards Arrow Over Leftwards Arrow, arrow, arrows, reciprocate, return, swap, transfer - static const IconData arrowRightArrowLeft = IconDataRegular(0xf0ec); + static const IconData arrowRightArrowLeft = IconData(0xf0ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exchange for icon [arrowRightArrowLeft] @Deprecated('Use "arrowRightArrowLeft" instead.') @@ -3107,7 +3107,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-arrow-left?style=light /// Rightwards Arrow Over Leftwards Arrow, arrow, arrows, reciprocate, return, swap, transfer - static const IconData lightArrowRightArrowLeft = IconDataLight(0xf0ec); + static const IconData lightArrowRightArrowLeft = IconData(0xf0ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exchange for icon [lightArrowRightArrowLeft] @Deprecated('Use "lightArrowRightArrowLeft" instead.') @@ -3117,7 +3117,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-arrow-left?style=thin /// Rightwards Arrow Over Leftwards Arrow, arrow, arrows, reciprocate, return, swap, transfer - static const IconData thinArrowRightArrowLeft = IconDataThin(0xf0ec); + static const IconData thinArrowRightArrowLeft = IconData(0xf0ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exchange for icon [thinArrowRightArrowLeft] @Deprecated('Use "thinArrowRightArrowLeft" instead.') @@ -3127,31 +3127,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-arc?style=solid /// exit, give, leave, send, transfer - static const IconData solidArrowRightFromArc = IconDataSolid(0xe4b1); + static const IconData solidArrowRightFromArc = IconData(0xe4b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Right From Arc icon /// /// https://fontawesome.com/icons/arrow-right-from-arc?style=regular /// exit, give, leave, send, transfer - static const IconData arrowRightFromArc = IconDataRegular(0xe4b1); + static const IconData arrowRightFromArc = IconData(0xe4b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Right From Arc icon /// /// https://fontawesome.com/icons/arrow-right-from-arc?style=light /// exit, give, leave, send, transfer - static const IconData lightArrowRightFromArc = IconDataLight(0xe4b1); + static const IconData lightArrowRightFromArc = IconData(0xe4b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Right From Arc icon /// /// https://fontawesome.com/icons/arrow-right-from-arc?style=thin /// exit, give, leave, send, transfer - static const IconData thinArrowRightFromArc = IconDataThin(0xe4b1); + static const IconData thinArrowRightFromArc = IconData(0xe4b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right From Bracket icon /// /// https://fontawesome.com/icons/arrow-right-from-bracket?style=solid /// arrow, exit, leave, log out, logout - static const IconData solidArrowRightFromBracket = IconDataSolid(0xf08b); + static const IconData solidArrowRightFromBracket = IconData(0xf08b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign-out for icon [solidArrowRightFromBracket] @Deprecated('Use "solidArrowRightFromBracket" instead.') @@ -3161,7 +3161,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-bracket?style=regular /// arrow, exit, leave, log out, logout - static const IconData arrowRightFromBracket = IconDataRegular(0xf08b); + static const IconData arrowRightFromBracket = IconData(0xf08b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign-out for icon [arrowRightFromBracket] @Deprecated('Use "arrowRightFromBracket" instead.') @@ -3171,7 +3171,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-bracket?style=light /// arrow, exit, leave, log out, logout - static const IconData lightArrowRightFromBracket = IconDataLight(0xf08b); + static const IconData lightArrowRightFromBracket = IconData(0xf08b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign-out for icon [lightArrowRightFromBracket] @Deprecated('Use "lightArrowRightFromBracket" instead.') @@ -3181,7 +3181,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-bracket?style=thin /// arrow, exit, leave, log out, logout - static const IconData thinArrowRightFromBracket = IconDataThin(0xf08b); + static const IconData thinArrowRightFromBracket = IconData(0xf08b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign-out for icon [thinArrowRightFromBracket] @Deprecated('Use "thinArrowRightFromBracket" instead.') @@ -3191,7 +3191,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-line?style=solid /// Rightwards Arrow from Bar, back, previous - static const IconData solidArrowRightFromLine = IconDataSolid(0xf343); + static const IconData solidArrowRightFromLine = IconData(0xf343, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-left for icon [solidArrowRightFromLine] @Deprecated('Use "solidArrowRightFromLine" instead.') @@ -3201,7 +3201,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-line?style=regular /// Rightwards Arrow from Bar, back, previous - static const IconData arrowRightFromLine = IconDataRegular(0xf343); + static const IconData arrowRightFromLine = IconData(0xf343, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-left for icon [arrowRightFromLine] @Deprecated('Use "arrowRightFromLine" instead.') @@ -3211,7 +3211,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-line?style=light /// Rightwards Arrow from Bar, back, previous - static const IconData lightArrowRightFromLine = IconDataLight(0xf343); + static const IconData lightArrowRightFromLine = IconData(0xf343, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-left for icon [lightArrowRightFromLine] @Deprecated('Use "lightArrowRightFromLine" instead.') @@ -3221,7 +3221,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-from-line?style=thin /// Rightwards Arrow from Bar, back, previous - static const IconData thinArrowRightFromLine = IconDataThin(0xf343); + static const IconData thinArrowRightFromLine = IconData(0xf343, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-left for icon [thinArrowRightFromLine] @Deprecated('Use "thinArrowRightFromLine" instead.') @@ -3231,7 +3231,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-long?style=solid /// forward, long-arrow-right, next - static const IconData solidArrowRightLong = IconDataSolid(0xf178); + static const IconData solidArrowRightLong = IconData(0xf178, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-right for icon [solidArrowRightLong] @Deprecated('Use "solidArrowRightLong" instead.') @@ -3241,7 +3241,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-long?style=regular /// forward, long-arrow-right, next - static const IconData arrowRightLong = IconDataRegular(0xf178); + static const IconData arrowRightLong = IconData(0xf178, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-right for icon [arrowRightLong] @Deprecated('Use "arrowRightLong" instead.') @@ -3251,7 +3251,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-long?style=light /// forward, long-arrow-right, next - static const IconData lightArrowRightLong = IconDataLight(0xf178); + static const IconData lightArrowRightLong = IconData(0xf178, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-right for icon [lightArrowRightLong] @Deprecated('Use "lightArrowRightLong" instead.') @@ -3261,7 +3261,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-long?style=thin /// forward, long-arrow-right, next - static const IconData thinArrowRightLong = IconDataThin(0xf178); + static const IconData thinArrowRightLong = IconData(0xf178, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-right for icon [thinArrowRightLong] @Deprecated('Use "thinArrowRightLong" instead.') @@ -3271,55 +3271,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-long-to-line?style=solid /// forward, insert, right, skip, tab - static const IconData solidArrowRightLongToLine = IconDataSolid(0xe3d5); + static const IconData solidArrowRightLongToLine = IconData(0xe3d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Right Long To Line icon /// /// https://fontawesome.com/icons/arrow-right-long-to-line?style=regular /// forward, insert, right, skip, tab - static const IconData arrowRightLongToLine = IconDataRegular(0xe3d5); + static const IconData arrowRightLongToLine = IconData(0xe3d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Right Long To Line icon /// /// https://fontawesome.com/icons/arrow-right-long-to-line?style=light /// forward, insert, right, skip, tab - static const IconData lightArrowRightLongToLine = IconDataLight(0xe3d5); + static const IconData lightArrowRightLongToLine = IconData(0xe3d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Right Long To Line icon /// /// https://fontawesome.com/icons/arrow-right-long-to-line?style=thin /// forward, insert, right, skip, tab - static const IconData thinArrowRightLongToLine = IconDataThin(0xe3d5); + static const IconData thinArrowRightLongToLine = IconData(0xe3d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right To Arc icon /// /// https://fontawesome.com/icons/arrow-right-to-arc?style=solid /// enter, give, insert, into, login, send, sign in - static const IconData solidArrowRightToArc = IconDataSolid(0xe4b2); + static const IconData solidArrowRightToArc = IconData(0xe4b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Right To Arc icon /// /// https://fontawesome.com/icons/arrow-right-to-arc?style=regular /// enter, give, insert, into, login, send, sign in - static const IconData arrowRightToArc = IconDataRegular(0xe4b2); + static const IconData arrowRightToArc = IconData(0xe4b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Right To Arc icon /// /// https://fontawesome.com/icons/arrow-right-to-arc?style=light /// enter, give, insert, into, login, send, sign in - static const IconData lightArrowRightToArc = IconDataLight(0xe4b2); + static const IconData lightArrowRightToArc = IconData(0xe4b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Right To Arc icon /// /// https://fontawesome.com/icons/arrow-right-to-arc?style=thin /// enter, give, insert, into, login, send, sign in - static const IconData thinArrowRightToArc = IconDataThin(0xe4b2); + static const IconData thinArrowRightToArc = IconData(0xe4b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right To Bracket icon /// /// https://fontawesome.com/icons/arrow-right-to-bracket?style=solid /// arrow, enter, insert, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData solidArrowRightToBracket = IconDataSolid(0xf090); + static const IconData solidArrowRightToBracket = IconData(0xf090, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign-in for icon [solidArrowRightToBracket] @Deprecated('Use "solidArrowRightToBracket" instead.') @@ -3329,7 +3329,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-bracket?style=regular /// arrow, enter, insert, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData arrowRightToBracket = IconDataRegular(0xf090); + static const IconData arrowRightToBracket = IconData(0xf090, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign-in for icon [arrowRightToBracket] @Deprecated('Use "arrowRightToBracket" instead.') @@ -3339,7 +3339,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-bracket?style=light /// arrow, enter, insert, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData lightArrowRightToBracket = IconDataLight(0xf090); + static const IconData lightArrowRightToBracket = IconData(0xf090, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign-in for icon [lightArrowRightToBracket] @Deprecated('Use "lightArrowRightToBracket" instead.') @@ -3349,7 +3349,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-bracket?style=thin /// arrow, enter, insert, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData thinArrowRightToBracket = IconDataThin(0xf090); + static const IconData thinArrowRightToBracket = IconData(0xf090, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign-in for icon [thinArrowRightToBracket] @Deprecated('Use "thinArrowRightToBracket" instead.') @@ -3359,31 +3359,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-city?style=solid /// building, city, exodus, insert, rural, urban - static const IconData solidArrowRightToCity = IconDataSolid(0xe4b3); + static const IconData solidArrowRightToCity = IconData(0xe4b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Right To City icon /// /// https://fontawesome.com/icons/arrow-right-to-city?style=regular /// building, city, exodus, insert, rural, urban - static const IconData arrowRightToCity = IconDataRegular(0xe4b3); + static const IconData arrowRightToCity = IconData(0xe4b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Right To City icon /// /// https://fontawesome.com/icons/arrow-right-to-city?style=light /// building, city, exodus, insert, rural, urban - static const IconData lightArrowRightToCity = IconDataLight(0xe4b3); + static const IconData lightArrowRightToCity = IconData(0xe4b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Right To City icon /// /// https://fontawesome.com/icons/arrow-right-to-city?style=thin /// building, city, exodus, insert, rural, urban - static const IconData thinArrowRightToCity = IconDataThin(0xe4b3); + static const IconData thinArrowRightToCity = IconData(0xe4b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Right To Line icon /// /// https://fontawesome.com/icons/arrow-right-to-line?style=solid /// Rightwards Arrow to Bar, forward, insert, next - static const IconData solidArrowRightToLine = IconDataSolid(0xf340); + static const IconData solidArrowRightToLine = IconData(0xf340, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-right for icon [solidArrowRightToLine] @Deprecated('Use "solidArrowRightToLine" instead.') @@ -3393,7 +3393,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-line?style=regular /// Rightwards Arrow to Bar, forward, insert, next - static const IconData arrowRightToLine = IconDataRegular(0xf340); + static const IconData arrowRightToLine = IconData(0xf340, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-right for icon [arrowRightToLine] @Deprecated('Use "arrowRightToLine" instead.') @@ -3403,7 +3403,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-line?style=light /// Rightwards Arrow to Bar, forward, insert, next - static const IconData lightArrowRightToLine = IconDataLight(0xf340); + static const IconData lightArrowRightToLine = IconData(0xf340, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-right for icon [lightArrowRightToLine] @Deprecated('Use "lightArrowRightToLine" instead.') @@ -3413,7 +3413,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-right-to-line?style=thin /// Rightwards Arrow to Bar, forward, insert, next - static const IconData thinArrowRightToLine = IconDataThin(0xf340); + static const IconData thinArrowRightToLine = IconData(0xf340, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-right for icon [thinArrowRightToLine] @Deprecated('Use "thinArrowRightToLine" instead.') @@ -3423,7 +3423,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-left?style=solid /// Anticlockwise Open Circle Arrow, back, control z, exchange, oops, return, rotate, swap - static const IconData solidArrowRotateLeft = IconDataSolid(0xf0e2); + static const IconData solidArrowRotateLeft = IconData(0xf0e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-left-rotate for icon [solidArrowRotateLeft] @Deprecated('Use "solidArrowRotateLeft" instead.') @@ -3445,7 +3445,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-left?style=regular /// Anticlockwise Open Circle Arrow, back, control z, exchange, oops, return, rotate, swap - static const IconData arrowRotateLeft = IconDataRegular(0xf0e2); + static const IconData arrowRotateLeft = IconData(0xf0e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-left-rotate for icon [arrowRotateLeft] @Deprecated('Use "arrowRotateLeft" instead.') @@ -3467,7 +3467,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-left?style=light /// Anticlockwise Open Circle Arrow, back, control z, exchange, oops, return, rotate, swap - static const IconData lightArrowRotateLeft = IconDataLight(0xf0e2); + static const IconData lightArrowRotateLeft = IconData(0xf0e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-left-rotate for icon [lightArrowRotateLeft] @Deprecated('Use "lightArrowRotateLeft" instead.') @@ -3489,7 +3489,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-left?style=thin /// Anticlockwise Open Circle Arrow, back, control z, exchange, oops, return, rotate, swap - static const IconData thinArrowRotateLeft = IconDataThin(0xf0e2); + static const IconData thinArrowRotateLeft = IconData(0xf0e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-left-rotate for icon [thinArrowRotateLeft] @Deprecated('Use "thinArrowRotateLeft" instead.') @@ -3511,7 +3511,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-right?style=solid /// Clockwise Open Circle Arrow, forward, refresh, reload, renew, repeat, retry - static const IconData solidArrowRotateRight = IconDataSolid(0xf01e); + static const IconData solidArrowRotateRight = IconData(0xf01e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-rotate for icon [solidArrowRotateRight] @Deprecated('Use "solidArrowRotateRight" instead.') @@ -3529,7 +3529,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-right?style=regular /// Clockwise Open Circle Arrow, forward, refresh, reload, renew, repeat, retry - static const IconData arrowRotateRight = IconDataRegular(0xf01e); + static const IconData arrowRotateRight = IconData(0xf01e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-rotate for icon [arrowRotateRight] @Deprecated('Use "arrowRotateRight" instead.') @@ -3547,7 +3547,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-right?style=light /// Clockwise Open Circle Arrow, forward, refresh, reload, renew, repeat, retry - static const IconData lightArrowRotateRight = IconDataLight(0xf01e); + static const IconData lightArrowRotateRight = IconData(0xf01e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-rotate for icon [lightArrowRotateRight] @Deprecated('Use "lightArrowRotateRight" instead.') @@ -3565,7 +3565,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-rotate-right?style=thin /// Clockwise Open Circle Arrow, forward, refresh, reload, renew, repeat, retry - static const IconData thinArrowRotateRight = IconDataThin(0xf01e); + static const IconData thinArrowRotateRight = IconData(0xf01e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-rotate for icon [thinArrowRotateRight] @Deprecated('Use "thinArrowRotateRight" instead.') @@ -3583,55 +3583,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-trend-down?style=solid /// line, stocks, trend - static const IconData solidArrowTrendDown = IconDataSolid(0xe097); + static const IconData solidArrowTrendDown = IconData(0xe097, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Trend Down icon /// /// https://fontawesome.com/icons/arrow-trend-down?style=regular /// line, stocks, trend - static const IconData arrowTrendDown = IconDataRegular(0xe097); + static const IconData arrowTrendDown = IconData(0xe097, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Trend Down icon /// /// https://fontawesome.com/icons/arrow-trend-down?style=light /// line, stocks, trend - static const IconData lightArrowTrendDown = IconDataLight(0xe097); + static const IconData lightArrowTrendDown = IconData(0xe097, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Trend Down icon /// /// https://fontawesome.com/icons/arrow-trend-down?style=thin /// line, stocks, trend - static const IconData thinArrowTrendDown = IconDataThin(0xe097); + static const IconData thinArrowTrendDown = IconData(0xe097, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Trend Up icon /// /// https://fontawesome.com/icons/arrow-trend-up?style=solid /// line, stocks, trend - static const IconData solidArrowTrendUp = IconDataSolid(0xe098); + static const IconData solidArrowTrendUp = IconData(0xe098, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Trend Up icon /// /// https://fontawesome.com/icons/arrow-trend-up?style=regular /// line, stocks, trend - static const IconData arrowTrendUp = IconDataRegular(0xe098); + static const IconData arrowTrendUp = IconData(0xe098, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Trend Up icon /// /// https://fontawesome.com/icons/arrow-trend-up?style=light /// line, stocks, trend - static const IconData lightArrowTrendUp = IconDataLight(0xe098); + static const IconData lightArrowTrendUp = IconData(0xe098, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Trend Up icon /// /// https://fontawesome.com/icons/arrow-trend-up?style=thin /// line, stocks, trend - static const IconData thinArrowTrendUp = IconDataThin(0xe098); + static const IconData thinArrowTrendUp = IconData(0xe098, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Down icon /// /// https://fontawesome.com/icons/arrow-turn-down?style=solid /// arrow - static const IconData solidArrowTurnDown = IconDataSolid(0xf149); + static const IconData solidArrowTurnDown = IconData(0xf149, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias level-down for icon [solidArrowTurnDown] @Deprecated('Use "solidArrowTurnDown" instead.') @@ -3641,7 +3641,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-down?style=regular /// arrow - static const IconData arrowTurnDown = IconDataRegular(0xf149); + static const IconData arrowTurnDown = IconData(0xf149, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias level-down for icon [arrowTurnDown] @Deprecated('Use "arrowTurnDown" instead.') @@ -3651,7 +3651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-down?style=light /// arrow - static const IconData lightArrowTurnDown = IconDataLight(0xf149); + static const IconData lightArrowTurnDown = IconData(0xf149, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias level-down for icon [lightArrowTurnDown] @Deprecated('Use "lightArrowTurnDown" instead.') @@ -3661,7 +3661,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-down?style=thin /// arrow - static const IconData thinArrowTurnDown = IconDataThin(0xf149); + static const IconData thinArrowTurnDown = IconData(0xf149, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias level-down for icon [thinArrowTurnDown] @Deprecated('Use "thinArrowTurnDown" instead.') @@ -3671,151 +3671,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-down-left?style=solid /// enter, keyboard, return - static const IconData solidArrowTurnDownLeft = IconDataSolid(0xe2e1); + static const IconData solidArrowTurnDownLeft = IconData(0xe2e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Down Left icon /// /// https://fontawesome.com/icons/arrow-turn-down-left?style=regular /// enter, keyboard, return - static const IconData arrowTurnDownLeft = IconDataRegular(0xe2e1); + static const IconData arrowTurnDownLeft = IconData(0xe2e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Down Left icon /// /// https://fontawesome.com/icons/arrow-turn-down-left?style=light /// enter, keyboard, return - static const IconData lightArrowTurnDownLeft = IconDataLight(0xe2e1); + static const IconData lightArrowTurnDownLeft = IconData(0xe2e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Down Left icon /// /// https://fontawesome.com/icons/arrow-turn-down-left?style=thin /// enter, keyboard, return - static const IconData thinArrowTurnDownLeft = IconDataThin(0xe2e1); + static const IconData thinArrowTurnDownLeft = IconData(0xe2e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Down Right icon /// /// https://fontawesome.com/icons/arrow-turn-down-right?style=solid /// forward, move - static const IconData solidArrowTurnDownRight = IconDataSolid(0xe3d6); + static const IconData solidArrowTurnDownRight = IconData(0xe3d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Down Right icon /// /// https://fontawesome.com/icons/arrow-turn-down-right?style=regular /// forward, move - static const IconData arrowTurnDownRight = IconDataRegular(0xe3d6); + static const IconData arrowTurnDownRight = IconData(0xe3d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Down Right icon /// /// https://fontawesome.com/icons/arrow-turn-down-right?style=light /// forward, move - static const IconData lightArrowTurnDownRight = IconDataLight(0xe3d6); + static const IconData lightArrowTurnDownRight = IconData(0xe3d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Down Right icon /// /// https://fontawesome.com/icons/arrow-turn-down-right?style=thin /// forward, move - static const IconData thinArrowTurnDownRight = IconDataThin(0xe3d6); + static const IconData thinArrowTurnDownRight = IconData(0xe3d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Left icon /// /// https://fontawesome.com/icons/arrow-turn-left?style=solid /// direction, left, return, turn, west, back - static const IconData solidArrowTurnLeft = IconDataSolid(0xe632); + static const IconData solidArrowTurnLeft = IconData(0xe632, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Left icon /// /// https://fontawesome.com/icons/arrow-turn-left?style=regular /// direction, left, return, turn, west, back - static const IconData arrowTurnLeft = IconDataRegular(0xe632); + static const IconData arrowTurnLeft = IconData(0xe632, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Left icon /// /// https://fontawesome.com/icons/arrow-turn-left?style=light /// direction, left, return, turn, west, back - static const IconData lightArrowTurnLeft = IconDataLight(0xe632); + static const IconData lightArrowTurnLeft = IconData(0xe632, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Left icon /// /// https://fontawesome.com/icons/arrow-turn-left?style=thin /// direction, left, return, turn, west, back - static const IconData thinArrowTurnLeft = IconDataThin(0xe632); + static const IconData thinArrowTurnLeft = IconData(0xe632, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Left Down icon /// /// https://fontawesome.com/icons/arrow-turn-left-down?style=solid /// direction, down, left, reverse, south, turn, backwards - static const IconData solidArrowTurnLeftDown = IconDataSolid(0xe633); + static const IconData solidArrowTurnLeftDown = IconData(0xe633, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Left Down icon /// /// https://fontawesome.com/icons/arrow-turn-left-down?style=regular /// direction, down, left, reverse, south, turn, backwards - static const IconData arrowTurnLeftDown = IconDataRegular(0xe633); + static const IconData arrowTurnLeftDown = IconData(0xe633, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Left Down icon /// /// https://fontawesome.com/icons/arrow-turn-left-down?style=light /// direction, down, left, reverse, south, turn, backwards - static const IconData lightArrowTurnLeftDown = IconDataLight(0xe633); + static const IconData lightArrowTurnLeftDown = IconData(0xe633, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Left Down icon /// /// https://fontawesome.com/icons/arrow-turn-left-down?style=thin /// direction, down, left, reverse, south, turn, backwards - static const IconData thinArrowTurnLeftDown = IconDataThin(0xe633); + static const IconData thinArrowTurnLeftDown = IconData(0xe633, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Left Up icon /// /// https://fontawesome.com/icons/arrow-turn-left-up?style=solid /// direction, north, turn, forward, right - static const IconData solidArrowTurnLeftUp = IconDataSolid(0xe634); + static const IconData solidArrowTurnLeftUp = IconData(0xe634, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Left Up icon /// /// https://fontawesome.com/icons/arrow-turn-left-up?style=regular /// direction, north, turn, forward, right - static const IconData arrowTurnLeftUp = IconDataRegular(0xe634); + static const IconData arrowTurnLeftUp = IconData(0xe634, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Left Up icon /// /// https://fontawesome.com/icons/arrow-turn-left-up?style=light /// direction, north, turn, forward, right - static const IconData lightArrowTurnLeftUp = IconDataLight(0xe634); + static const IconData lightArrowTurnLeftUp = IconData(0xe634, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Left Up icon /// /// https://fontawesome.com/icons/arrow-turn-left-up?style=thin /// direction, north, turn, forward, right - static const IconData thinArrowTurnLeftUp = IconDataThin(0xe634); + static const IconData thinArrowTurnLeftUp = IconData(0xe634, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Right icon /// /// https://fontawesome.com/icons/arrow-turn-right?style=solid /// direction, east, next, right, turn, forward - static const IconData solidArrowTurnRight = IconDataSolid(0xe635); + static const IconData solidArrowTurnRight = IconData(0xe635, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Turn Right icon /// /// https://fontawesome.com/icons/arrow-turn-right?style=regular /// direction, east, next, right, turn, forward - static const IconData arrowTurnRight = IconDataRegular(0xe635); + static const IconData arrowTurnRight = IconData(0xe635, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Turn Right icon /// /// https://fontawesome.com/icons/arrow-turn-right?style=light /// direction, east, next, right, turn, forward - static const IconData lightArrowTurnRight = IconDataLight(0xe635); + static const IconData lightArrowTurnRight = IconData(0xe635, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Turn Right icon /// /// https://fontawesome.com/icons/arrow-turn-right?style=thin /// direction, east, next, right, turn, forward - static const IconData thinArrowTurnRight = IconDataThin(0xe635); + static const IconData thinArrowTurnRight = IconData(0xe635, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Turn Up icon /// /// https://fontawesome.com/icons/arrow-turn-up?style=solid /// arrow - static const IconData solidArrowTurnUp = IconDataSolid(0xf148); + static const IconData solidArrowTurnUp = IconData(0xf148, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias level-up for icon [solidArrowTurnUp] @Deprecated('Use "solidArrowTurnUp" instead.') @@ -3825,7 +3825,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-up?style=regular /// arrow - static const IconData arrowTurnUp = IconDataRegular(0xf148); + static const IconData arrowTurnUp = IconData(0xf148, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias level-up for icon [arrowTurnUp] @Deprecated('Use "arrowTurnUp" instead.') @@ -3835,7 +3835,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-up?style=light /// arrow - static const IconData lightArrowTurnUp = IconDataLight(0xf148); + static const IconData lightArrowTurnUp = IconData(0xf148, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias level-up for icon [lightArrowTurnUp] @Deprecated('Use "lightArrowTurnUp" instead.') @@ -3845,7 +3845,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-turn-up?style=thin /// arrow - static const IconData thinArrowTurnUp = IconDataThin(0xf148); + static const IconData thinArrowTurnUp = IconData(0xf148, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias level-up for icon [thinArrowTurnUp] @Deprecated('Use "thinArrowTurnUp" instead.') @@ -3855,31 +3855,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up?style=solid /// Upwards Arrow, forward, upgrade, upload - static const IconData solidArrowUp = IconDataSolid(0xf062); + static const IconData solidArrowUp = IconData(0xf062, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up icon /// /// https://fontawesome.com/icons/arrow-up?style=regular /// Upwards Arrow, forward, upgrade, upload - static const IconData arrowUp = IconDataRegular(0xf062); + static const IconData arrowUp = IconData(0xf062, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up icon /// /// https://fontawesome.com/icons/arrow-up?style=light /// Upwards Arrow, forward, upgrade, upload - static const IconData lightArrowUp = IconDataLight(0xf062); + static const IconData lightArrowUp = IconData(0xf062, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up icon /// /// https://fontawesome.com/icons/arrow-up?style=thin /// Upwards Arrow, forward, upgrade, upload - static const IconData thinArrowUp = IconDataThin(0xf062); + static const IconData thinArrowUp = IconData(0xf062, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up 1 9 icon /// /// https://fontawesome.com/icons/arrow-up-1-9?style=solid /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData solidArrowUp19 = IconDataSolid(0xf163); + static const IconData solidArrowUp19 = IconData(0xf163, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up for icon [solidArrowUp19] @Deprecated('Use "solidArrowUp19" instead.') @@ -3889,7 +3889,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-1-9?style=regular /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData arrowUp19 = IconDataRegular(0xf163); + static const IconData arrowUp19 = IconData(0xf163, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up for icon [arrowUp19] @Deprecated('Use "arrowUp19" instead.') @@ -3899,7 +3899,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-1-9?style=light /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData lightArrowUp19 = IconDataLight(0xf163); + static const IconData lightArrowUp19 = IconData(0xf163, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up for icon [lightArrowUp19] @Deprecated('Use "lightArrowUp19" instead.') @@ -3909,7 +3909,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-1-9?style=thin /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData thinArrowUp19 = IconDataThin(0xf163); + static const IconData thinArrowUp19 = IconData(0xf163, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up for icon [thinArrowUp19] @Deprecated('Use "thinArrowUp19" instead.') @@ -3919,7 +3919,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-9-1?style=solid /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData solidArrowUp91 = IconDataSolid(0xf887); + static const IconData solidArrowUp91 = IconData(0xf887, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up-alt for icon [solidArrowUp91] @Deprecated('Use "solidArrowUp91" instead.') @@ -3929,7 +3929,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-9-1?style=regular /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData arrowUp91 = IconDataRegular(0xf887); + static const IconData arrowUp91 = IconData(0xf887, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up-alt for icon [arrowUp91] @Deprecated('Use "arrowUp91" instead.') @@ -3939,7 +3939,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-9-1?style=light /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData lightArrowUp91 = IconDataLight(0xf887); + static const IconData lightArrowUp91 = IconData(0xf887, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up-alt for icon [lightArrowUp91] @Deprecated('Use "lightArrowUp91" instead.') @@ -3949,7 +3949,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-9-1?style=thin /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData thinArrowUp91 = IconDataThin(0xf887); + static const IconData thinArrowUp91 = IconData(0xf887, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-numeric-up-alt for icon [thinArrowUp91] @Deprecated('Use "thinArrowUp91" instead.') @@ -3959,7 +3959,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-a-z?style=solid /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData solidArrowUpAZ = IconDataSolid(0xf15e); + static const IconData solidArrowUpAZ = IconData(0xf15e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up for icon [solidArrowUpAZ] @Deprecated('Use "solidArrowUpAZ" instead.') @@ -3969,7 +3969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-a-z?style=regular /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData arrowUpAZ = IconDataRegular(0xf15e); + static const IconData arrowUpAZ = IconData(0xf15e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up for icon [arrowUpAZ] @Deprecated('Use "arrowUpAZ" instead.') @@ -3979,7 +3979,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-a-z?style=light /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData lightArrowUpAZ = IconDataLight(0xf15e); + static const IconData lightArrowUpAZ = IconData(0xf15e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up for icon [lightArrowUpAZ] @Deprecated('Use "lightArrowUpAZ" instead.') @@ -3989,7 +3989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-a-z?style=thin /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData thinArrowUpAZ = IconDataThin(0xf15e); + static const IconData thinArrowUpAZ = IconData(0xf15e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up for icon [thinArrowUpAZ] @Deprecated('Use "thinArrowUpAZ" instead.') @@ -3999,7 +3999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-arrow-down?style=solid /// Upwards Arrow Leftwards of Downwards Arrow, reverse, swap, switch, transfer - static const IconData solidArrowUpArrowDown = IconDataSolid(0xe099); + static const IconData solidArrowUpArrowDown = IconData(0xe099, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-up-down for icon [solidArrowUpArrowDown] @Deprecated('Use "solidArrowUpArrowDown" instead.') @@ -4009,7 +4009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-arrow-down?style=regular /// Upwards Arrow Leftwards of Downwards Arrow, reverse, swap, switch, transfer - static const IconData arrowUpArrowDown = IconDataRegular(0xe099); + static const IconData arrowUpArrowDown = IconData(0xe099, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-up-down for icon [arrowUpArrowDown] @Deprecated('Use "arrowUpArrowDown" instead.') @@ -4019,7 +4019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-arrow-down?style=light /// Upwards Arrow Leftwards of Downwards Arrow, reverse, swap, switch, transfer - static const IconData lightArrowUpArrowDown = IconDataLight(0xe099); + static const IconData lightArrowUpArrowDown = IconData(0xe099, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-up-down for icon [lightArrowUpArrowDown] @Deprecated('Use "lightArrowUpArrowDown" instead.') @@ -4029,7 +4029,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-arrow-down?style=thin /// Upwards Arrow Leftwards of Downwards Arrow, reverse, swap, switch, transfer - static const IconData thinArrowUpArrowDown = IconDataThin(0xe099); + static const IconData thinArrowUpArrowDown = IconData(0xe099, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-up-down for icon [thinArrowUpArrowDown] @Deprecated('Use "thinArrowUpArrowDown" instead.') @@ -4039,7 +4039,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-big-small?style=solid /// arrange, filter, order, rectangle, upgrade - static const IconData solidArrowUpBigSmall = IconDataSolid(0xf88e); + static const IconData solidArrowUpBigSmall = IconData(0xf88e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up for icon [solidArrowUpBigSmall] @Deprecated('Use "solidArrowUpBigSmall" instead.') @@ -4049,7 +4049,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-big-small?style=regular /// arrange, filter, order, rectangle, upgrade - static const IconData arrowUpBigSmall = IconDataRegular(0xf88e); + static const IconData arrowUpBigSmall = IconData(0xf88e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up for icon [arrowUpBigSmall] @Deprecated('Use "arrowUpBigSmall" instead.') @@ -4059,7 +4059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-big-small?style=light /// arrange, filter, order, rectangle, upgrade - static const IconData lightArrowUpBigSmall = IconDataLight(0xf88e); + static const IconData lightArrowUpBigSmall = IconData(0xf88e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up for icon [lightArrowUpBigSmall] @Deprecated('Use "lightArrowUpBigSmall" instead.') @@ -4069,7 +4069,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-big-small?style=thin /// arrange, filter, order, rectangle, upgrade - static const IconData thinArrowUpBigSmall = IconDataThin(0xf88e); + static const IconData thinArrowUpBigSmall = IconData(0xf88e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up for icon [thinArrowUpBigSmall] @Deprecated('Use "thinArrowUpBigSmall" instead.') @@ -4079,103 +4079,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-from-arc?style=solid /// import, share, transfer, upgrade, upload - static const IconData solidArrowUpFromArc = IconDataSolid(0xe4b4); + static const IconData solidArrowUpFromArc = IconData(0xe4b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Arc icon /// /// https://fontawesome.com/icons/arrow-up-from-arc?style=regular /// import, share, transfer, upgrade, upload - static const IconData arrowUpFromArc = IconDataRegular(0xe4b4); + static const IconData arrowUpFromArc = IconData(0xe4b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Arc icon /// /// https://fontawesome.com/icons/arrow-up-from-arc?style=light /// import, share, transfer, upgrade, upload - static const IconData lightArrowUpFromArc = IconDataLight(0xe4b4); + static const IconData lightArrowUpFromArc = IconData(0xe4b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Arc icon /// /// https://fontawesome.com/icons/arrow-up-from-arc?style=thin /// import, share, transfer, upgrade, upload - static const IconData thinArrowUpFromArc = IconDataThin(0xe4b4); + static const IconData thinArrowUpFromArc = IconData(0xe4b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up From Bracket icon /// /// https://fontawesome.com/icons/arrow-up-from-bracket?style=solid /// share, transfer, upgrade, upload - static const IconData solidArrowUpFromBracket = IconDataSolid(0xe09a); + static const IconData solidArrowUpFromBracket = IconData(0xe09a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Bracket icon /// /// https://fontawesome.com/icons/arrow-up-from-bracket?style=regular /// share, transfer, upgrade, upload - static const IconData arrowUpFromBracket = IconDataRegular(0xe09a); + static const IconData arrowUpFromBracket = IconData(0xe09a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Bracket icon /// /// https://fontawesome.com/icons/arrow-up-from-bracket?style=light /// share, transfer, upgrade, upload - static const IconData lightArrowUpFromBracket = IconDataLight(0xe09a); + static const IconData lightArrowUpFromBracket = IconData(0xe09a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Bracket icon /// /// https://fontawesome.com/icons/arrow-up-from-bracket?style=thin /// share, transfer, upgrade, upload - static const IconData thinArrowUpFromBracket = IconDataThin(0xe09a); + static const IconData thinArrowUpFromBracket = IconData(0xe09a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-from-dotted-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidArrowUpFromDottedLine = IconDataSolid(0xe09b); + static const IconData solidArrowUpFromDottedLine = IconData(0xe09b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-from-dotted-line?style=regular /// import, transfer, upgrade, upload - static const IconData arrowUpFromDottedLine = IconDataRegular(0xe09b); + static const IconData arrowUpFromDottedLine = IconData(0xe09b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-from-dotted-line?style=light /// import, transfer, upgrade, upload - static const IconData lightArrowUpFromDottedLine = IconDataLight(0xe09b); + static const IconData lightArrowUpFromDottedLine = IconData(0xe09b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-from-dotted-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinArrowUpFromDottedLine = IconDataThin(0xe09b); + static const IconData thinArrowUpFromDottedLine = IconData(0xe09b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up From Ground Water icon /// /// https://fontawesome.com/icons/arrow-up-from-ground-water?style=solid /// groundwater, spring, upgrade, water supply, water table - static const IconData solidArrowUpFromGroundWater = IconDataSolid(0xe4b5); + static const IconData solidArrowUpFromGroundWater = IconData(0xe4b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Ground Water icon /// /// https://fontawesome.com/icons/arrow-up-from-ground-water?style=regular /// groundwater, spring, upgrade, water supply, water table - static const IconData arrowUpFromGroundWater = IconDataRegular(0xe4b5); + static const IconData arrowUpFromGroundWater = IconData(0xe4b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Ground Water icon /// /// https://fontawesome.com/icons/arrow-up-from-ground-water?style=light /// groundwater, spring, upgrade, water supply, water table - static const IconData lightArrowUpFromGroundWater = IconDataLight(0xe4b5); + static const IconData lightArrowUpFromGroundWater = IconData(0xe4b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Ground Water icon /// /// https://fontawesome.com/icons/arrow-up-from-ground-water?style=thin /// groundwater, spring, upgrade, water supply, water table - static const IconData thinArrowUpFromGroundWater = IconDataThin(0xe4b5); + static const IconData thinArrowUpFromGroundWater = IconData(0xe4b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up From Line icon /// /// https://fontawesome.com/icons/arrow-up-from-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidArrowUpFromLine = IconDataSolid(0xf342); + static const IconData solidArrowUpFromLine = IconData(0xf342, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-bottom for icon [solidArrowUpFromLine] @Deprecated('Use "solidArrowUpFromLine" instead.') @@ -4185,7 +4185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-from-line?style=regular /// import, transfer, upgrade, upload - static const IconData arrowUpFromLine = IconDataRegular(0xf342); + static const IconData arrowUpFromLine = IconData(0xf342, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-bottom for icon [arrowUpFromLine] @Deprecated('Use "arrowUpFromLine" instead.') @@ -4195,7 +4195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-from-line?style=light /// import, transfer, upgrade, upload - static const IconData lightArrowUpFromLine = IconDataLight(0xf342); + static const IconData lightArrowUpFromLine = IconData(0xf342, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-bottom for icon [lightArrowUpFromLine] @Deprecated('Use "lightArrowUpFromLine" instead.') @@ -4205,7 +4205,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-from-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinArrowUpFromLine = IconDataThin(0xf342); + static const IconData thinArrowUpFromLine = IconData(0xf342, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-from-bottom for icon [thinArrowUpFromLine] @Deprecated('Use "thinArrowUpFromLine" instead.') @@ -4215,103 +4215,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-from-square?style=solid /// share, transfer, upgrade, upload - static const IconData solidArrowUpFromSquare = IconDataSolid(0xe09c); + static const IconData solidArrowUpFromSquare = IconData(0xe09c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Square icon /// /// https://fontawesome.com/icons/arrow-up-from-square?style=regular /// share, transfer, upgrade, upload - static const IconData arrowUpFromSquare = IconDataRegular(0xe09c); + static const IconData arrowUpFromSquare = IconData(0xe09c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Square icon /// /// https://fontawesome.com/icons/arrow-up-from-square?style=light /// share, transfer, upgrade, upload - static const IconData lightArrowUpFromSquare = IconDataLight(0xe09c); + static const IconData lightArrowUpFromSquare = IconData(0xe09c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Square icon /// /// https://fontawesome.com/icons/arrow-up-from-square?style=thin /// share, transfer, upgrade, upload - static const IconData thinArrowUpFromSquare = IconDataThin(0xe09c); + static const IconData thinArrowUpFromSquare = IconData(0xe09c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up From Water Pump icon /// /// https://fontawesome.com/icons/arrow-up-from-water-pump?style=solid /// flood, groundwater, pump, submersible, sump pump, upgrade - static const IconData solidArrowUpFromWaterPump = IconDataSolid(0xe4b6); + static const IconData solidArrowUpFromWaterPump = IconData(0xe4b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up From Water Pump icon /// /// https://fontawesome.com/icons/arrow-up-from-water-pump?style=regular /// flood, groundwater, pump, submersible, sump pump, upgrade - static const IconData arrowUpFromWaterPump = IconDataRegular(0xe4b6); + static const IconData arrowUpFromWaterPump = IconData(0xe4b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up From Water Pump icon /// /// https://fontawesome.com/icons/arrow-up-from-water-pump?style=light /// flood, groundwater, pump, submersible, sump pump, upgrade - static const IconData lightArrowUpFromWaterPump = IconDataLight(0xe4b6); + static const IconData lightArrowUpFromWaterPump = IconData(0xe4b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up From Water Pump icon /// /// https://fontawesome.com/icons/arrow-up-from-water-pump?style=thin /// flood, groundwater, pump, submersible, sump pump, upgrade - static const IconData thinArrowUpFromWaterPump = IconDataThin(0xe4b6); + static const IconData thinArrowUpFromWaterPump = IconData(0xe4b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Left icon /// /// https://fontawesome.com/icons/arrow-up-left?style=solid /// diagonal, northwest - static const IconData solidArrowUpLeft = IconDataSolid(0xe09d); + static const IconData solidArrowUpLeft = IconData(0xe09d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up Left icon /// /// https://fontawesome.com/icons/arrow-up-left?style=regular /// diagonal, northwest - static const IconData arrowUpLeft = IconDataRegular(0xe09d); + static const IconData arrowUpLeft = IconData(0xe09d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up Left icon /// /// https://fontawesome.com/icons/arrow-up-left?style=light /// diagonal, northwest - static const IconData lightArrowUpLeft = IconDataLight(0xe09d); + static const IconData lightArrowUpLeft = IconData(0xe09d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up Left icon /// /// https://fontawesome.com/icons/arrow-up-left?style=thin /// diagonal, northwest - static const IconData thinArrowUpLeft = IconDataThin(0xe09d); + static const IconData thinArrowUpLeft = IconData(0xe09d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Left From Circle icon /// /// https://fontawesome.com/icons/arrow-up-left-from-circle?style=solid /// Broken Circle with Northwest Arrow, escape, logout, upgrade - static const IconData solidArrowUpLeftFromCircle = IconDataSolid(0xe09e); + static const IconData solidArrowUpLeftFromCircle = IconData(0xe09e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up Left From Circle icon /// /// https://fontawesome.com/icons/arrow-up-left-from-circle?style=regular /// Broken Circle with Northwest Arrow, escape, logout, upgrade - static const IconData arrowUpLeftFromCircle = IconDataRegular(0xe09e); + static const IconData arrowUpLeftFromCircle = IconData(0xe09e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up Left From Circle icon /// /// https://fontawesome.com/icons/arrow-up-left-from-circle?style=light /// Broken Circle with Northwest Arrow, escape, logout, upgrade - static const IconData lightArrowUpLeftFromCircle = IconDataLight(0xe09e); + static const IconData lightArrowUpLeftFromCircle = IconData(0xe09e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up Left From Circle icon /// /// https://fontawesome.com/icons/arrow-up-left-from-circle?style=thin /// Broken Circle with Northwest Arrow, escape, logout, upgrade - static const IconData thinArrowUpLeftFromCircle = IconDataThin(0xe09e); + static const IconData thinArrowUpLeftFromCircle = IconData(0xe09e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Long icon /// /// https://fontawesome.com/icons/arrow-up-long?style=solid /// long-arrow-up, upload - static const IconData solidArrowUpLong = IconDataSolid(0xf176); + static const IconData solidArrowUpLong = IconData(0xf176, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-up for icon [solidArrowUpLong] @Deprecated('Use "solidArrowUpLong" instead.') @@ -4321,7 +4321,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-long?style=regular /// long-arrow-up, upload - static const IconData arrowUpLong = IconDataRegular(0xf176); + static const IconData arrowUpLong = IconData(0xf176, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-up for icon [arrowUpLong] @Deprecated('Use "arrowUpLong" instead.') @@ -4331,7 +4331,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-long?style=light /// long-arrow-up, upload - static const IconData lightArrowUpLong = IconDataLight(0xf176); + static const IconData lightArrowUpLong = IconData(0xf176, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-up for icon [lightArrowUpLong] @Deprecated('Use "lightArrowUpLong" instead.') @@ -4341,7 +4341,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-long?style=thin /// long-arrow-up, upload - static const IconData thinArrowUpLong = IconDataThin(0xf176); + static const IconData thinArrowUpLong = IconData(0xf176, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-up for icon [thinArrowUpLong] @Deprecated('Use "thinArrowUpLong" instead.') @@ -4351,83 +4351,83 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-right?style=solid /// diagonal, northeast - static const IconData solidArrowUpRight = IconDataSolid(0xe09f); + static const IconData solidArrowUpRight = IconData(0xe09f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up Right icon /// /// https://fontawesome.com/icons/arrow-up-right?style=regular /// diagonal, northeast - static const IconData arrowUpRight = IconDataRegular(0xe09f); + static const IconData arrowUpRight = IconData(0xe09f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up Right icon /// /// https://fontawesome.com/icons/arrow-up-right?style=light /// diagonal, northeast - static const IconData lightArrowUpRight = IconDataLight(0xe09f); + static const IconData lightArrowUpRight = IconData(0xe09f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up Right icon /// /// https://fontawesome.com/icons/arrow-up-right?style=thin /// diagonal, northeast - static const IconData thinArrowUpRight = IconDataThin(0xe09f); + static const IconData thinArrowUpRight = IconData(0xe09f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Right And Arrow Down Left From Center icon /// /// https://fontawesome.com/icons/arrow-up-right-and-arrow-down-left-from-center?style=solid /// maximize, resize, scale, enlarge, expand, size static const IconData solidArrowUpRightAndArrowDownLeftFromCenter = - IconDataSolid(0xe0a0); + IconData(0xe0a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up Right And Arrow Down Left From Center icon /// /// https://fontawesome.com/icons/arrow-up-right-and-arrow-down-left-from-center?style=regular /// maximize, resize, scale, enlarge, expand, size static const IconData arrowUpRightAndArrowDownLeftFromCenter = - IconDataRegular(0xe0a0); + IconData(0xe0a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up Right And Arrow Down Left From Center icon /// /// https://fontawesome.com/icons/arrow-up-right-and-arrow-down-left-from-center?style=light /// maximize, resize, scale, enlarge, expand, size static const IconData lightArrowUpRightAndArrowDownLeftFromCenter = - IconDataLight(0xe0a0); + IconData(0xe0a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up Right And Arrow Down Left From Center icon /// /// https://fontawesome.com/icons/arrow-up-right-and-arrow-down-left-from-center?style=thin /// maximize, resize, scale, enlarge, expand, size static const IconData thinArrowUpRightAndArrowDownLeftFromCenter = - IconDataThin(0xe0a0); + IconData(0xe0a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Right Dots icon /// /// https://fontawesome.com/icons/arrow-up-right-dots?style=solid /// growth, increase, population, upgrade - static const IconData solidArrowUpRightDots = IconDataSolid(0xe4b7); + static const IconData solidArrowUpRightDots = IconData(0xe4b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up Right Dots icon /// /// https://fontawesome.com/icons/arrow-up-right-dots?style=regular /// growth, increase, population, upgrade - static const IconData arrowUpRightDots = IconDataRegular(0xe4b7); + static const IconData arrowUpRightDots = IconData(0xe4b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up Right Dots icon /// /// https://fontawesome.com/icons/arrow-up-right-dots?style=light /// growth, increase, population, upgrade - static const IconData lightArrowUpRightDots = IconDataLight(0xe4b7); + static const IconData lightArrowUpRightDots = IconData(0xe4b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up Right Dots icon /// /// https://fontawesome.com/icons/arrow-up-right-dots?style=thin /// growth, increase, population, upgrade - static const IconData thinArrowUpRightDots = IconDataThin(0xe4b7); + static const IconData thinArrowUpRightDots = IconData(0xe4b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up Right From Square icon /// /// https://fontawesome.com/icons/arrow-up-right-from-square?style=solid /// new, open, send, share, upgrade - static const IconData solidArrowUpRightFromSquare = IconDataSolid(0xf08e); + static const IconData solidArrowUpRightFromSquare = IconData(0xf08e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias external-link for icon [solidArrowUpRightFromSquare] @Deprecated('Use "solidArrowUpRightFromSquare" instead.') @@ -4437,7 +4437,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-right-from-square?style=regular /// new, open, send, share, upgrade - static const IconData arrowUpRightFromSquare = IconDataRegular(0xf08e); + static const IconData arrowUpRightFromSquare = IconData(0xf08e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias external-link for icon [arrowUpRightFromSquare] @Deprecated('Use "arrowUpRightFromSquare" instead.') @@ -4447,7 +4447,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-right-from-square?style=light /// new, open, send, share, upgrade - static const IconData lightArrowUpRightFromSquare = IconDataLight(0xf08e); + static const IconData lightArrowUpRightFromSquare = IconData(0xf08e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias external-link for icon [lightArrowUpRightFromSquare] @Deprecated('Use "lightArrowUpRightFromSquare" instead.') @@ -4457,7 +4457,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-right-from-square?style=thin /// new, open, send, share, upgrade - static const IconData thinArrowUpRightFromSquare = IconDataThin(0xf08e); + static const IconData thinArrowUpRightFromSquare = IconData(0xf08e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias external-link for icon [thinArrowUpRightFromSquare] @Deprecated('Use "thinArrowUpRightFromSquare" instead.') @@ -4467,7 +4467,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-short-wide?style=solid /// arrange, filter, order, sort-amount-desc - static const IconData solidArrowUpShortWide = IconDataSolid(0xf885); + static const IconData solidArrowUpShortWide = IconData(0xf885, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up-alt for icon [solidArrowUpShortWide] @Deprecated('Use "solidArrowUpShortWide" instead.') @@ -4477,7 +4477,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-short-wide?style=regular /// arrange, filter, order, sort-amount-desc - static const IconData arrowUpShortWide = IconDataRegular(0xf885); + static const IconData arrowUpShortWide = IconData(0xf885, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up-alt for icon [arrowUpShortWide] @Deprecated('Use "arrowUpShortWide" instead.') @@ -4487,7 +4487,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-short-wide?style=light /// arrange, filter, order, sort-amount-desc - static const IconData lightArrowUpShortWide = IconDataLight(0xf885); + static const IconData lightArrowUpShortWide = IconData(0xf885, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up-alt for icon [lightArrowUpShortWide] @Deprecated('Use "lightArrowUpShortWide" instead.') @@ -4497,7 +4497,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-short-wide?style=thin /// arrange, filter, order, sort-amount-desc - static const IconData thinArrowUpShortWide = IconDataThin(0xf885); + static const IconData thinArrowUpShortWide = IconData(0xf885, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up-alt for icon [thinArrowUpShortWide] @Deprecated('Use "thinArrowUpShortWide" instead.') @@ -4507,7 +4507,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-small-big?style=solid /// arrange, filter, order, rectangle - static const IconData solidArrowUpSmallBig = IconDataSolid(0xf88f); + static const IconData solidArrowUpSmallBig = IconData(0xf88f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up-alt for icon [solidArrowUpSmallBig] @Deprecated('Use "solidArrowUpSmallBig" instead.') @@ -4517,7 +4517,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-small-big?style=regular /// arrange, filter, order, rectangle - static const IconData arrowUpSmallBig = IconDataRegular(0xf88f); + static const IconData arrowUpSmallBig = IconData(0xf88f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up-alt for icon [arrowUpSmallBig] @Deprecated('Use "arrowUpSmallBig" instead.') @@ -4527,7 +4527,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-small-big?style=light /// arrange, filter, order, rectangle - static const IconData lightArrowUpSmallBig = IconDataLight(0xf88f); + static const IconData lightArrowUpSmallBig = IconData(0xf88f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up-alt for icon [lightArrowUpSmallBig] @Deprecated('Use "lightArrowUpSmallBig" instead.') @@ -4537,7 +4537,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-small-big?style=thin /// arrange, filter, order, rectangle - static const IconData thinArrowUpSmallBig = IconDataThin(0xf88f); + static const IconData thinArrowUpSmallBig = IconData(0xf88f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-size-up-alt for icon [thinArrowUpSmallBig] @Deprecated('Use "thinArrowUpSmallBig" instead.') @@ -4547,7 +4547,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-square-triangle?style=solid /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData solidArrowUpSquareTriangle = IconDataSolid(0xf88b); + static const IconData solidArrowUpSquareTriangle = IconData(0xf88b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up-alt for icon [solidArrowUpSquareTriangle] @Deprecated('Use "solidArrowUpSquareTriangle" instead.') @@ -4557,7 +4557,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-square-triangle?style=regular /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData arrowUpSquareTriangle = IconDataRegular(0xf88b); + static const IconData arrowUpSquareTriangle = IconData(0xf88b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up-alt for icon [arrowUpSquareTriangle] @Deprecated('Use "arrowUpSquareTriangle" instead.') @@ -4567,7 +4567,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-square-triangle?style=light /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData lightArrowUpSquareTriangle = IconDataLight(0xf88b); + static const IconData lightArrowUpSquareTriangle = IconData(0xf88b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up-alt for icon [lightArrowUpSquareTriangle] @Deprecated('Use "lightArrowUpSquareTriangle" instead.') @@ -4577,7 +4577,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-square-triangle?style=thin /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData thinArrowUpSquareTriangle = IconDataThin(0xf88b); + static const IconData thinArrowUpSquareTriangle = IconData(0xf88b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up-alt for icon [thinArrowUpSquareTriangle] @Deprecated('Use "thinArrowUpSquareTriangle" instead.') @@ -4587,55 +4587,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-to-arc?style=solid /// share, transfer, upload, import - static const IconData solidArrowUpToArc = IconDataSolid(0xe617); + static const IconData solidArrowUpToArc = IconData(0xe617, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up To Arc icon /// /// https://fontawesome.com/icons/arrow-up-to-arc?style=regular /// share, transfer, upload, import - static const IconData arrowUpToArc = IconDataRegular(0xe617); + static const IconData arrowUpToArc = IconData(0xe617, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up To Arc icon /// /// https://fontawesome.com/icons/arrow-up-to-arc?style=light /// share, transfer, upload, import - static const IconData lightArrowUpToArc = IconDataLight(0xe617); + static const IconData lightArrowUpToArc = IconData(0xe617, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up To Arc icon /// /// https://fontawesome.com/icons/arrow-up-to-arc?style=thin /// share, transfer, upload, import - static const IconData thinArrowUpToArc = IconDataThin(0xe617); + static const IconData thinArrowUpToArc = IconData(0xe617, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-to-dotted-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidArrowUpToDottedLine = IconDataSolid(0xe0a1); + static const IconData solidArrowUpToDottedLine = IconData(0xe0a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrow Up To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-to-dotted-line?style=regular /// import, transfer, upgrade, upload - static const IconData arrowUpToDottedLine = IconDataRegular(0xe0a1); + static const IconData arrowUpToDottedLine = IconData(0xe0a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrow Up To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-to-dotted-line?style=light /// import, transfer, upgrade, upload - static const IconData lightArrowUpToDottedLine = IconDataLight(0xe0a1); + static const IconData lightArrowUpToDottedLine = IconData(0xe0a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrow Up To Dotted Line icon /// /// https://fontawesome.com/icons/arrow-up-to-dotted-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinArrowUpToDottedLine = IconDataThin(0xe0a1); + static const IconData thinArrowUpToDottedLine = IconData(0xe0a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrow Up To Line icon /// /// https://fontawesome.com/icons/arrow-up-to-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidArrowUpToLine = IconDataSolid(0xf341); + static const IconData solidArrowUpToLine = IconData(0xf341, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-top for icon [solidArrowUpToLine] @Deprecated('Use "solidArrowUpToLine" instead.') @@ -4645,7 +4645,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-to-line?style=regular /// import, transfer, upgrade, upload - static const IconData arrowUpToLine = IconDataRegular(0xf341); + static const IconData arrowUpToLine = IconData(0xf341, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-top for icon [arrowUpToLine] @Deprecated('Use "arrowUpToLine" instead.') @@ -4655,7 +4655,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-to-line?style=light /// import, transfer, upgrade, upload - static const IconData lightArrowUpToLine = IconDataLight(0xf341); + static const IconData lightArrowUpToLine = IconData(0xf341, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-top for icon [lightArrowUpToLine] @Deprecated('Use "lightArrowUpToLine" instead.') @@ -4665,7 +4665,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-to-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinArrowUpToLine = IconDataThin(0xf341); + static const IconData thinArrowUpToLine = IconData(0xf341, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-to-top for icon [thinArrowUpToLine] @Deprecated('Use "thinArrowUpToLine" instead.') @@ -4675,7 +4675,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-triangle-square?style=solid /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData solidArrowUpTriangleSquare = IconDataSolid(0xf88a); + static const IconData solidArrowUpTriangleSquare = IconData(0xf88a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up for icon [solidArrowUpTriangleSquare] @Deprecated('Use "solidArrowUpTriangleSquare" instead.') @@ -4685,7 +4685,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-triangle-square?style=regular /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData arrowUpTriangleSquare = IconDataRegular(0xf88a); + static const IconData arrowUpTriangleSquare = IconData(0xf88a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up for icon [arrowUpTriangleSquare] @Deprecated('Use "arrowUpTriangleSquare" instead.') @@ -4695,7 +4695,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-triangle-square?style=light /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData lightArrowUpTriangleSquare = IconDataLight(0xf88a); + static const IconData lightArrowUpTriangleSquare = IconData(0xf88a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up for icon [lightArrowUpTriangleSquare] @Deprecated('Use "lightArrowUpTriangleSquare" instead.') @@ -4705,7 +4705,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-triangle-square?style=thin /// arrange, filter, order, shapes, square, triangle, upgrade - static const IconData thinArrowUpTriangleSquare = IconDataThin(0xf88a); + static const IconData thinArrowUpTriangleSquare = IconData(0xf88a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-shapes-up for icon [thinArrowUpTriangleSquare] @Deprecated('Use "thinArrowUpTriangleSquare" instead.') @@ -4715,7 +4715,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-wide-short?style=solid /// arrange, filter, order, sort-amount-desc, upgrade - static const IconData solidArrowUpWideShort = IconDataSolid(0xf161); + static const IconData solidArrowUpWideShort = IconData(0xf161, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up for icon [solidArrowUpWideShort] @Deprecated('Use "solidArrowUpWideShort" instead.') @@ -4725,7 +4725,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-wide-short?style=regular /// arrange, filter, order, sort-amount-desc, upgrade - static const IconData arrowUpWideShort = IconDataRegular(0xf161); + static const IconData arrowUpWideShort = IconData(0xf161, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up for icon [arrowUpWideShort] @Deprecated('Use "arrowUpWideShort" instead.') @@ -4735,7 +4735,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-wide-short?style=light /// arrange, filter, order, sort-amount-desc, upgrade - static const IconData lightArrowUpWideShort = IconDataLight(0xf161); + static const IconData lightArrowUpWideShort = IconData(0xf161, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up for icon [lightArrowUpWideShort] @Deprecated('Use "lightArrowUpWideShort" instead.') @@ -4745,7 +4745,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-wide-short?style=thin /// arrange, filter, order, sort-amount-desc, upgrade - static const IconData thinArrowUpWideShort = IconDataThin(0xf161); + static const IconData thinArrowUpWideShort = IconData(0xf161, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-amount-up for icon [thinArrowUpWideShort] @Deprecated('Use "thinArrowUpWideShort" instead.') @@ -4755,7 +4755,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-z-a?style=solid /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData solidArrowUpZA = IconDataSolid(0xf882); + static const IconData solidArrowUpZA = IconData(0xf882, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up-alt for icon [solidArrowUpZA] @Deprecated('Use "solidArrowUpZA" instead.') @@ -4765,7 +4765,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-z-a?style=regular /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData arrowUpZA = IconDataRegular(0xf882); + static const IconData arrowUpZA = IconData(0xf882, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up-alt for icon [arrowUpZA] @Deprecated('Use "arrowUpZA" instead.') @@ -4775,7 +4775,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-z-a?style=light /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData lightArrowUpZA = IconDataLight(0xf882); + static const IconData lightArrowUpZA = IconData(0xf882, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up-alt for icon [lightArrowUpZA] @Deprecated('Use "lightArrowUpZA" instead.') @@ -4785,7 +4785,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrow-up-z-a?style=thin /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData thinArrowUpZA = IconDataThin(0xf882); + static const IconData thinArrowUpZA = IconData(0xf882, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-alpha-up-alt for icon [thinArrowUpZA] @Deprecated('Use "thinArrowUpZA" instead.') @@ -4795,127 +4795,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-cross?style=solid /// North East Arrow Crossing South East Arrow, swap, switch, transfer - static const IconData solidArrowsCross = IconDataSolid(0xe0a2); + static const IconData solidArrowsCross = IconData(0xe0a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Cross icon /// /// https://fontawesome.com/icons/arrows-cross?style=regular /// North East Arrow Crossing South East Arrow, swap, switch, transfer - static const IconData arrowsCross = IconDataRegular(0xe0a2); + static const IconData arrowsCross = IconData(0xe0a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Cross icon /// /// https://fontawesome.com/icons/arrows-cross?style=light /// North East Arrow Crossing South East Arrow, swap, switch, transfer - static const IconData lightArrowsCross = IconDataLight(0xe0a2); + static const IconData lightArrowsCross = IconData(0xe0a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Cross icon /// /// https://fontawesome.com/icons/arrows-cross?style=thin /// North East Arrow Crossing South East Arrow, swap, switch, transfer - static const IconData thinArrowsCross = IconDataThin(0xe0a2); + static const IconData thinArrowsCross = IconData(0xe0a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Down To Line icon /// /// https://fontawesome.com/icons/arrows-down-to-line?style=solid /// insert, scale down, sink - static const IconData solidArrowsDownToLine = IconDataSolid(0xe4b8); + static const IconData solidArrowsDownToLine = IconData(0xe4b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Down To Line icon /// /// https://fontawesome.com/icons/arrows-down-to-line?style=regular /// insert, scale down, sink - static const IconData arrowsDownToLine = IconDataRegular(0xe4b8); + static const IconData arrowsDownToLine = IconData(0xe4b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Down To Line icon /// /// https://fontawesome.com/icons/arrows-down-to-line?style=light /// insert, scale down, sink - static const IconData lightArrowsDownToLine = IconDataLight(0xe4b8); + static const IconData lightArrowsDownToLine = IconData(0xe4b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Down To Line icon /// /// https://fontawesome.com/icons/arrows-down-to-line?style=thin /// insert, scale down, sink - static const IconData thinArrowsDownToLine = IconDataThin(0xe4b8); + static const IconData thinArrowsDownToLine = IconData(0xe4b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Down To People icon /// /// https://fontawesome.com/icons/arrows-down-to-people?style=solid /// affected, focus, insert, targeted, together, uer - static const IconData solidArrowsDownToPeople = IconDataSolid(0xe4b9); + static const IconData solidArrowsDownToPeople = IconData(0xe4b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Down To People icon /// /// https://fontawesome.com/icons/arrows-down-to-people?style=regular /// affected, focus, insert, targeted, together, uer - static const IconData arrowsDownToPeople = IconDataRegular(0xe4b9); + static const IconData arrowsDownToPeople = IconData(0xe4b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Down To People icon /// /// https://fontawesome.com/icons/arrows-down-to-people?style=light /// affected, focus, insert, targeted, together, uer - static const IconData lightArrowsDownToPeople = IconDataLight(0xe4b9); + static const IconData lightArrowsDownToPeople = IconData(0xe4b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Down To People icon /// /// https://fontawesome.com/icons/arrows-down-to-people?style=thin /// affected, focus, insert, targeted, together, uer - static const IconData thinArrowsDownToPeople = IconDataThin(0xe4b9); + static const IconData thinArrowsDownToPeople = IconData(0xe4b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows From Dotted Line icon /// /// https://fontawesome.com/icons/arrows-from-dotted-line?style=solid /// expand, grow - static const IconData solidArrowsFromDottedLine = IconDataSolid(0xe0a3); + static const IconData solidArrowsFromDottedLine = IconData(0xe0a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows From Dotted Line icon /// /// https://fontawesome.com/icons/arrows-from-dotted-line?style=regular /// expand, grow - static const IconData arrowsFromDottedLine = IconDataRegular(0xe0a3); + static const IconData arrowsFromDottedLine = IconData(0xe0a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows From Dotted Line icon /// /// https://fontawesome.com/icons/arrows-from-dotted-line?style=light /// expand, grow - static const IconData lightArrowsFromDottedLine = IconDataLight(0xe0a3); + static const IconData lightArrowsFromDottedLine = IconData(0xe0a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows From Dotted Line icon /// /// https://fontawesome.com/icons/arrows-from-dotted-line?style=thin /// expand, grow - static const IconData thinArrowsFromDottedLine = IconDataThin(0xe0a3); + static const IconData thinArrowsFromDottedLine = IconData(0xe0a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows From Line icon /// /// https://fontawesome.com/icons/arrows-from-line?style=solid /// expand, grow - static const IconData solidArrowsFromLine = IconDataSolid(0xe0a4); + static const IconData solidArrowsFromLine = IconData(0xe0a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows From Line icon /// /// https://fontawesome.com/icons/arrows-from-line?style=regular /// expand, grow - static const IconData arrowsFromLine = IconDataRegular(0xe0a4); + static const IconData arrowsFromLine = IconData(0xe0a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows From Line icon /// /// https://fontawesome.com/icons/arrows-from-line?style=light /// expand, grow - static const IconData lightArrowsFromLine = IconDataLight(0xe0a4); + static const IconData lightArrowsFromLine = IconData(0xe0a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows From Line icon /// /// https://fontawesome.com/icons/arrows-from-line?style=thin /// expand, grow - static const IconData thinArrowsFromLine = IconDataThin(0xe0a4); + static const IconData thinArrowsFromLine = IconData(0xe0a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Left Right icon /// /// https://fontawesome.com/icons/arrows-left-right?style=solid /// expand, horizontal, landscape, resize, wide - static const IconData solidArrowsLeftRight = IconDataSolid(0xf07e); + static const IconData solidArrowsLeftRight = IconData(0xf07e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows-h for icon [solidArrowsLeftRight] @Deprecated('Use "solidArrowsLeftRight" instead.') @@ -4925,7 +4925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-left-right?style=regular /// expand, horizontal, landscape, resize, wide - static const IconData arrowsLeftRight = IconDataRegular(0xf07e); + static const IconData arrowsLeftRight = IconData(0xf07e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows-h for icon [arrowsLeftRight] @Deprecated('Use "arrowsLeftRight" instead.') @@ -4935,7 +4935,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-left-right?style=light /// expand, horizontal, landscape, resize, wide - static const IconData lightArrowsLeftRight = IconDataLight(0xf07e); + static const IconData lightArrowsLeftRight = IconData(0xf07e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows-h for icon [lightArrowsLeftRight] @Deprecated('Use "lightArrowsLeftRight" instead.') @@ -4945,7 +4945,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-left-right?style=thin /// expand, horizontal, landscape, resize, wide - static const IconData thinArrowsLeftRight = IconDataThin(0xf07e); + static const IconData thinArrowsLeftRight = IconData(0xf07e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows-h for icon [thinArrowsLeftRight] @Deprecated('Use "thinArrowsLeftRight" instead.') @@ -4955,31 +4955,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-left-right-to-line?style=solid /// analysis, expand, gap - static const IconData solidArrowsLeftRightToLine = IconDataSolid(0xe4ba); + static const IconData solidArrowsLeftRightToLine = IconData(0xe4ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Left Right To Line icon /// /// https://fontawesome.com/icons/arrows-left-right-to-line?style=regular /// analysis, expand, gap - static const IconData arrowsLeftRightToLine = IconDataRegular(0xe4ba); + static const IconData arrowsLeftRightToLine = IconData(0xe4ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Left Right To Line icon /// /// https://fontawesome.com/icons/arrows-left-right-to-line?style=light /// analysis, expand, gap - static const IconData lightArrowsLeftRightToLine = IconDataLight(0xe4ba); + static const IconData lightArrowsLeftRightToLine = IconData(0xe4ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Left Right To Line icon /// /// https://fontawesome.com/icons/arrows-left-right-to-line?style=thin /// analysis, expand, gap - static const IconData thinArrowsLeftRightToLine = IconDataThin(0xe4ba); + static const IconData thinArrowsLeftRightToLine = IconData(0xe4ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Maximize icon /// /// https://fontawesome.com/icons/arrows-maximize?style=solid /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData solidArrowsMaximize = IconDataSolid(0xf31d); + static const IconData solidArrowsMaximize = IconData(0xf31d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows for icon [solidArrowsMaximize] @Deprecated('Use "solidArrowsMaximize" instead.') @@ -4989,7 +4989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-maximize?style=regular /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData arrowsMaximize = IconDataRegular(0xf31d); + static const IconData arrowsMaximize = IconData(0xf31d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows for icon [arrowsMaximize] @Deprecated('Use "arrowsMaximize" instead.') @@ -4999,7 +4999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-maximize?style=light /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData lightArrowsMaximize = IconDataLight(0xf31d); + static const IconData lightArrowsMaximize = IconData(0xf31d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows for icon [lightArrowsMaximize] @Deprecated('Use "lightArrowsMaximize" instead.') @@ -5009,7 +5009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-maximize?style=thin /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData thinArrowsMaximize = IconDataThin(0xf31d); + static const IconData thinArrowsMaximize = IconData(0xf31d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows for icon [thinArrowsMaximize] @Deprecated('Use "thinArrowsMaximize" instead.') @@ -5019,7 +5019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-minimize?style=solid /// collapse, minimize, shrink - static const IconData solidArrowsMinimize = IconDataSolid(0xe0a5); + static const IconData solidArrowsMinimize = IconData(0xe0a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows for icon [solidArrowsMinimize] @Deprecated('Use "solidArrowsMinimize" instead.') @@ -5029,7 +5029,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-minimize?style=regular /// collapse, minimize, shrink - static const IconData arrowsMinimize = IconDataRegular(0xe0a5); + static const IconData arrowsMinimize = IconData(0xe0a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows for icon [arrowsMinimize] @Deprecated('Use "arrowsMinimize" instead.') @@ -5039,7 +5039,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-minimize?style=light /// collapse, minimize, shrink - static const IconData lightArrowsMinimize = IconDataLight(0xe0a5); + static const IconData lightArrowsMinimize = IconData(0xe0a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows for icon [lightArrowsMinimize] @Deprecated('Use "lightArrowsMinimize" instead.') @@ -5049,7 +5049,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-minimize?style=thin /// collapse, minimize, shrink - static const IconData thinArrowsMinimize = IconDataThin(0xe0a5); + static const IconData thinArrowsMinimize = IconData(0xe0a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows for icon [thinArrowsMinimize] @Deprecated('Use "thinArrowsMinimize" instead.') @@ -5059,7 +5059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat?style=solid /// flip, reload, renew, retry, rewind, switch - static const IconData solidArrowsRepeat = IconDataSolid(0xf364); + static const IconData solidArrowsRepeat = IconData(0xf364, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias repeat-alt for icon [solidArrowsRepeat] @Deprecated('Use "solidArrowsRepeat" instead.') @@ -5069,7 +5069,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat?style=regular /// flip, reload, renew, retry, rewind, switch - static const IconData arrowsRepeat = IconDataRegular(0xf364); + static const IconData arrowsRepeat = IconData(0xf364, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias repeat-alt for icon [arrowsRepeat] @Deprecated('Use "arrowsRepeat" instead.') @@ -5079,7 +5079,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat?style=light /// flip, reload, renew, retry, rewind, switch - static const IconData lightArrowsRepeat = IconDataLight(0xf364); + static const IconData lightArrowsRepeat = IconData(0xf364, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias repeat-alt for icon [lightArrowsRepeat] @Deprecated('Use "lightArrowsRepeat" instead.') @@ -5089,7 +5089,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat?style=thin /// flip, reload, renew, retry, rewind, switch - static const IconData thinArrowsRepeat = IconDataThin(0xf364); + static const IconData thinArrowsRepeat = IconData(0xf364, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias repeat-alt for icon [thinArrowsRepeat] @Deprecated('Use "thinArrowsRepeat" instead.') @@ -5099,7 +5099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat-1?style=solid /// flip, reload, renew, retry, rewind, switch - static const IconData solidArrowsRepeat1 = IconDataSolid(0xf366); + static const IconData solidArrowsRepeat1 = IconData(0xf366, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias repeat-1-alt for icon [solidArrowsRepeat1] @Deprecated('Use "solidArrowsRepeat1" instead.') @@ -5109,7 +5109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat-1?style=regular /// flip, reload, renew, retry, rewind, switch - static const IconData arrowsRepeat1 = IconDataRegular(0xf366); + static const IconData arrowsRepeat1 = IconData(0xf366, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias repeat-1-alt for icon [arrowsRepeat1] @Deprecated('Use "arrowsRepeat1" instead.') @@ -5119,7 +5119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat-1?style=light /// flip, reload, renew, retry, rewind, switch - static const IconData lightArrowsRepeat1 = IconDataLight(0xf366); + static const IconData lightArrowsRepeat1 = IconData(0xf366, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias repeat-1-alt for icon [lightArrowsRepeat1] @Deprecated('Use "lightArrowsRepeat1" instead.') @@ -5129,7 +5129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-repeat-1?style=thin /// flip, reload, renew, retry, rewind, switch - static const IconData thinArrowsRepeat1 = IconDataThin(0xf366); + static const IconData thinArrowsRepeat1 = IconData(0xf366, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias repeat-1-alt for icon [thinArrowsRepeat1] @Deprecated('Use "thinArrowsRepeat1" instead.') @@ -5139,7 +5139,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-retweet?style=solid /// refresh, reload, renew, retry, share, swap - static const IconData solidArrowsRetweet = IconDataSolid(0xf361); + static const IconData solidArrowsRetweet = IconData(0xf361, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias retweet-alt for icon [solidArrowsRetweet] @Deprecated('Use "solidArrowsRetweet" instead.') @@ -5149,7 +5149,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-retweet?style=regular /// refresh, reload, renew, retry, share, swap - static const IconData arrowsRetweet = IconDataRegular(0xf361); + static const IconData arrowsRetweet = IconData(0xf361, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias retweet-alt for icon [arrowsRetweet] @Deprecated('Use "arrowsRetweet" instead.') @@ -5159,7 +5159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-retweet?style=light /// refresh, reload, renew, retry, share, swap - static const IconData lightArrowsRetweet = IconDataLight(0xf361); + static const IconData lightArrowsRetweet = IconData(0xf361, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias retweet-alt for icon [lightArrowsRetweet] @Deprecated('Use "lightArrowsRetweet" instead.') @@ -5169,7 +5169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-retweet?style=thin /// refresh, reload, renew, retry, share, swap - static const IconData thinArrowsRetweet = IconDataThin(0xf361); + static const IconData thinArrowsRetweet = IconData(0xf361, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias retweet-alt for icon [thinArrowsRetweet] @Deprecated('Use "thinArrowsRetweet" instead.') @@ -5179,7 +5179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-rotate?style=solid /// Clockwise Right and Left Semicircle Arrows, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap - static const IconData solidArrowsRotate = IconDataSolid(0xf021); + static const IconData solidArrowsRotate = IconData(0xf021, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias refresh for icon [solidArrowsRotate] @Deprecated('Use "solidArrowsRotate" instead.') @@ -5193,7 +5193,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-rotate?style=regular /// Clockwise Right and Left Semicircle Arrows, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap - static const IconData arrowsRotate = IconDataRegular(0xf021); + static const IconData arrowsRotate = IconData(0xf021, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias refresh for icon [arrowsRotate] @Deprecated('Use "arrowsRotate" instead.') @@ -5207,7 +5207,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-rotate?style=light /// Clockwise Right and Left Semicircle Arrows, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap - static const IconData lightArrowsRotate = IconDataLight(0xf021); + static const IconData lightArrowsRotate = IconData(0xf021, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias refresh for icon [lightArrowsRotate] @Deprecated('Use "lightArrowsRotate" instead.') @@ -5221,7 +5221,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-rotate?style=thin /// Clockwise Right and Left Semicircle Arrows, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap - static const IconData thinArrowsRotate = IconDataThin(0xf021); + static const IconData thinArrowsRotate = IconData(0xf021, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias refresh for icon [thinArrowsRotate] @Deprecated('Use "thinArrowsRotate" instead.') @@ -5235,247 +5235,247 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-rotate-reverse?style=solid /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, Clockwise Right and Left Semicircle Arrows, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData solidArrowsRotateReverse = IconDataSolid(0xe630); + static const IconData solidArrowsRotateReverse = IconData(0xe630, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Rotate Reverse icon /// /// https://fontawesome.com/icons/arrows-rotate-reverse?style=regular /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, Clockwise Right and Left Semicircle Arrows, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData arrowsRotateReverse = IconDataRegular(0xe630); + static const IconData arrowsRotateReverse = IconData(0xe630, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Rotate Reverse icon /// /// https://fontawesome.com/icons/arrows-rotate-reverse?style=light /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, Clockwise Right and Left Semicircle Arrows, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData lightArrowsRotateReverse = IconDataLight(0xe630); + static const IconData lightArrowsRotateReverse = IconData(0xe630, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Rotate Reverse icon /// /// https://fontawesome.com/icons/arrows-rotate-reverse?style=thin /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, Clockwise Right and Left Semicircle Arrows, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData thinArrowsRotateReverse = IconDataThin(0xe630); + static const IconData thinArrowsRotateReverse = IconData(0xe630, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Spin icon /// /// https://fontawesome.com/icons/arrows-spin?style=solid /// cycle, rotate, spin, whirl - static const IconData solidArrowsSpin = IconDataSolid(0xe4bb); + static const IconData solidArrowsSpin = IconData(0xe4bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Spin icon /// /// https://fontawesome.com/icons/arrows-spin?style=regular /// cycle, rotate, spin, whirl - static const IconData arrowsSpin = IconDataRegular(0xe4bb); + static const IconData arrowsSpin = IconData(0xe4bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Spin icon /// /// https://fontawesome.com/icons/arrows-spin?style=light /// cycle, rotate, spin, whirl - static const IconData lightArrowsSpin = IconDataLight(0xe4bb); + static const IconData lightArrowsSpin = IconData(0xe4bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Spin icon /// /// https://fontawesome.com/icons/arrows-spin?style=thin /// cycle, rotate, spin, whirl - static const IconData thinArrowsSpin = IconDataThin(0xe4bb); + static const IconData thinArrowsSpin = IconData(0xe4bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Split Up And Left icon /// /// https://fontawesome.com/icons/arrows-split-up-and-left?style=solid /// agile, split - static const IconData solidArrowsSplitUpAndLeft = IconDataSolid(0xe4bc); + static const IconData solidArrowsSplitUpAndLeft = IconData(0xe4bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Split Up And Left icon /// /// https://fontawesome.com/icons/arrows-split-up-and-left?style=regular /// agile, split - static const IconData arrowsSplitUpAndLeft = IconDataRegular(0xe4bc); + static const IconData arrowsSplitUpAndLeft = IconData(0xe4bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Split Up And Left icon /// /// https://fontawesome.com/icons/arrows-split-up-and-left?style=light /// agile, split - static const IconData lightArrowsSplitUpAndLeft = IconDataLight(0xe4bc); + static const IconData lightArrowsSplitUpAndLeft = IconData(0xe4bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Split Up And Left icon /// /// https://fontawesome.com/icons/arrows-split-up-and-left?style=thin /// agile, split - static const IconData thinArrowsSplitUpAndLeft = IconDataThin(0xe4bc); + static const IconData thinArrowsSplitUpAndLeft = IconData(0xe4bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows To Circle icon /// /// https://fontawesome.com/icons/arrows-to-circle?style=solid /// center, concentrate, coordinate, coordination, focal point, focus, insert - static const IconData solidArrowsToCircle = IconDataSolid(0xe4bd); + static const IconData solidArrowsToCircle = IconData(0xe4bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows To Circle icon /// /// https://fontawesome.com/icons/arrows-to-circle?style=regular /// center, concentrate, coordinate, coordination, focal point, focus, insert - static const IconData arrowsToCircle = IconDataRegular(0xe4bd); + static const IconData arrowsToCircle = IconData(0xe4bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows To Circle icon /// /// https://fontawesome.com/icons/arrows-to-circle?style=light /// center, concentrate, coordinate, coordination, focal point, focus, insert - static const IconData lightArrowsToCircle = IconDataLight(0xe4bd); + static const IconData lightArrowsToCircle = IconData(0xe4bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows To Circle icon /// /// https://fontawesome.com/icons/arrows-to-circle?style=thin /// center, concentrate, coordinate, coordination, focal point, focus, insert - static const IconData thinArrowsToCircle = IconDataThin(0xe4bd); + static const IconData thinArrowsToCircle = IconData(0xe4bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows To Dot icon /// /// https://fontawesome.com/icons/arrows-to-dot?style=solid /// assembly point, center, condense, focus, insert, minimize - static const IconData solidArrowsToDot = IconDataSolid(0xe4be); + static const IconData solidArrowsToDot = IconData(0xe4be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows To Dot icon /// /// https://fontawesome.com/icons/arrows-to-dot?style=regular /// assembly point, center, condense, focus, insert, minimize - static const IconData arrowsToDot = IconDataRegular(0xe4be); + static const IconData arrowsToDot = IconData(0xe4be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows To Dot icon /// /// https://fontawesome.com/icons/arrows-to-dot?style=light /// assembly point, center, condense, focus, insert, minimize - static const IconData lightArrowsToDot = IconDataLight(0xe4be); + static const IconData lightArrowsToDot = IconData(0xe4be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows To Dot icon /// /// https://fontawesome.com/icons/arrows-to-dot?style=thin /// assembly point, center, condense, focus, insert, minimize - static const IconData thinArrowsToDot = IconDataThin(0xe4be); + static const IconData thinArrowsToDot = IconData(0xe4be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows To Dotted Line icon /// /// https://fontawesome.com/icons/arrows-to-dotted-line?style=solid /// collapse, shrink - static const IconData solidArrowsToDottedLine = IconDataSolid(0xe0a6); + static const IconData solidArrowsToDottedLine = IconData(0xe0a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows To Dotted Line icon /// /// https://fontawesome.com/icons/arrows-to-dotted-line?style=regular /// collapse, shrink - static const IconData arrowsToDottedLine = IconDataRegular(0xe0a6); + static const IconData arrowsToDottedLine = IconData(0xe0a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows To Dotted Line icon /// /// https://fontawesome.com/icons/arrows-to-dotted-line?style=light /// collapse, shrink - static const IconData lightArrowsToDottedLine = IconDataLight(0xe0a6); + static const IconData lightArrowsToDottedLine = IconData(0xe0a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows To Dotted Line icon /// /// https://fontawesome.com/icons/arrows-to-dotted-line?style=thin /// collapse, shrink - static const IconData thinArrowsToDottedLine = IconDataThin(0xe0a6); + static const IconData thinArrowsToDottedLine = IconData(0xe0a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows To Eye icon /// /// https://fontawesome.com/icons/arrows-to-eye?style=solid /// center, coordinated assessment, focus - static const IconData solidArrowsToEye = IconDataSolid(0xe4bf); + static const IconData solidArrowsToEye = IconData(0xe4bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows To Eye icon /// /// https://fontawesome.com/icons/arrows-to-eye?style=regular /// center, coordinated assessment, focus - static const IconData arrowsToEye = IconDataRegular(0xe4bf); + static const IconData arrowsToEye = IconData(0xe4bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows To Eye icon /// /// https://fontawesome.com/icons/arrows-to-eye?style=light /// center, coordinated assessment, focus - static const IconData lightArrowsToEye = IconDataLight(0xe4bf); + static const IconData lightArrowsToEye = IconData(0xe4bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows To Eye icon /// /// https://fontawesome.com/icons/arrows-to-eye?style=thin /// center, coordinated assessment, focus - static const IconData thinArrowsToEye = IconDataThin(0xe4bf); + static const IconData thinArrowsToEye = IconData(0xe4bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows To Line icon /// /// https://fontawesome.com/icons/arrows-to-line?style=solid /// collapse, shrink - static const IconData solidArrowsToLine = IconDataSolid(0xe0a7); + static const IconData solidArrowsToLine = IconData(0xe0a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows To Line icon /// /// https://fontawesome.com/icons/arrows-to-line?style=regular /// collapse, shrink - static const IconData arrowsToLine = IconDataRegular(0xe0a7); + static const IconData arrowsToLine = IconData(0xe0a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows To Line icon /// /// https://fontawesome.com/icons/arrows-to-line?style=light /// collapse, shrink - static const IconData lightArrowsToLine = IconDataLight(0xe0a7); + static const IconData lightArrowsToLine = IconData(0xe0a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows To Line icon /// /// https://fontawesome.com/icons/arrows-to-line?style=thin /// collapse, shrink - static const IconData thinArrowsToLine = IconDataThin(0xe0a7); + static const IconData thinArrowsToLine = IconData(0xe0a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Turn Right icon /// /// https://fontawesome.com/icons/arrows-turn-right?style=solid /// arrows - static const IconData solidArrowsTurnRight = IconDataSolid(0xe4c0); + static const IconData solidArrowsTurnRight = IconData(0xe4c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Turn Right icon /// /// https://fontawesome.com/icons/arrows-turn-right?style=regular /// arrows - static const IconData arrowsTurnRight = IconDataRegular(0xe4c0); + static const IconData arrowsTurnRight = IconData(0xe4c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Turn Right icon /// /// https://fontawesome.com/icons/arrows-turn-right?style=light /// arrows - static const IconData lightArrowsTurnRight = IconDataLight(0xe4c0); + static const IconData lightArrowsTurnRight = IconData(0xe4c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Turn Right icon /// /// https://fontawesome.com/icons/arrows-turn-right?style=thin /// arrows - static const IconData thinArrowsTurnRight = IconDataThin(0xe4c0); + static const IconData thinArrowsTurnRight = IconData(0xe4c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Turn To Dots icon /// /// https://fontawesome.com/icons/arrows-turn-to-dots?style=solid /// destination, insert, nexus - static const IconData solidArrowsTurnToDots = IconDataSolid(0xe4c1); + static const IconData solidArrowsTurnToDots = IconData(0xe4c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Turn To Dots icon /// /// https://fontawesome.com/icons/arrows-turn-to-dots?style=regular /// destination, insert, nexus - static const IconData arrowsTurnToDots = IconDataRegular(0xe4c1); + static const IconData arrowsTurnToDots = IconData(0xe4c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Turn To Dots icon /// /// https://fontawesome.com/icons/arrows-turn-to-dots?style=light /// destination, insert, nexus - static const IconData lightArrowsTurnToDots = IconDataLight(0xe4c1); + static const IconData lightArrowsTurnToDots = IconData(0xe4c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Turn To Dots icon /// /// https://fontawesome.com/icons/arrows-turn-to-dots?style=thin /// destination, insert, nexus - static const IconData thinArrowsTurnToDots = IconDataThin(0xe4c1); + static const IconData thinArrowsTurnToDots = IconData(0xe4c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Arrows Up Down icon /// /// https://fontawesome.com/icons/arrows-up-down?style=solid /// expand, portrait, resize, tall, vertical - static const IconData solidArrowsUpDown = IconDataSolid(0xf07d); + static const IconData solidArrowsUpDown = IconData(0xf07d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows-v for icon [solidArrowsUpDown] @Deprecated('Use "solidArrowsUpDown" instead.') @@ -5485,7 +5485,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down?style=regular /// expand, portrait, resize, tall, vertical - static const IconData arrowsUpDown = IconDataRegular(0xf07d); + static const IconData arrowsUpDown = IconData(0xf07d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows-v for icon [arrowsUpDown] @Deprecated('Use "arrowsUpDown" instead.') @@ -5495,7 +5495,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down?style=light /// expand, portrait, resize, tall, vertical - static const IconData lightArrowsUpDown = IconDataLight(0xf07d); + static const IconData lightArrowsUpDown = IconData(0xf07d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows-v for icon [lightArrowsUpDown] @Deprecated('Use "lightArrowsUpDown" instead.') @@ -5505,7 +5505,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down?style=thin /// expand, portrait, resize, tall, vertical - static const IconData thinArrowsUpDown = IconDataThin(0xf07d); + static const IconData thinArrowsUpDown = IconData(0xf07d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows-v for icon [thinArrowsUpDown] @Deprecated('Use "thinArrowsUpDown" instead.') @@ -5515,7 +5515,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down-left-right?style=solid /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData solidArrowsUpDownLeftRight = IconDataSolid(0xf047); + static const IconData solidArrowsUpDownLeftRight = IconData(0xf047, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows for icon [solidArrowsUpDownLeftRight] @Deprecated('Use "solidArrowsUpDownLeftRight" instead.') @@ -5525,7 +5525,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down-left-right?style=regular /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData arrowsUpDownLeftRight = IconDataRegular(0xf047); + static const IconData arrowsUpDownLeftRight = IconData(0xf047, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows for icon [arrowsUpDownLeftRight] @Deprecated('Use "arrowsUpDownLeftRight" instead.') @@ -5535,7 +5535,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down-left-right?style=light /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData lightArrowsUpDownLeftRight = IconDataLight(0xf047); + static const IconData lightArrowsUpDownLeftRight = IconData(0xf047, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows for icon [lightArrowsUpDownLeftRight] @Deprecated('Use "lightArrowsUpDownLeftRight" instead.') @@ -5545,7 +5545,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-down-left-right?style=thin /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData thinArrowsUpDownLeftRight = IconDataThin(0xf047); + static const IconData thinArrowsUpDownLeftRight = IconData(0xf047, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows for icon [thinArrowsUpDownLeftRight] @Deprecated('Use "thinArrowsUpDownLeftRight" instead.') @@ -5555,118 +5555,118 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/arrows-up-to-line?style=solid /// rise, scale up, upgrade - static const IconData solidArrowsUpToLine = IconDataSolid(0xe4c2); + static const IconData solidArrowsUpToLine = IconData(0xe4c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Arrows Up To Line icon /// /// https://fontawesome.com/icons/arrows-up-to-line?style=regular /// rise, scale up, upgrade - static const IconData arrowsUpToLine = IconDataRegular(0xe4c2); + static const IconData arrowsUpToLine = IconData(0xe4c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Arrows Up To Line icon /// /// https://fontawesome.com/icons/arrows-up-to-line?style=light /// rise, scale up, upgrade - static const IconData lightArrowsUpToLine = IconDataLight(0xe4c2); + static const IconData lightArrowsUpToLine = IconData(0xe4c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Arrows Up To Line icon /// /// https://fontawesome.com/icons/arrows-up-to-line?style=thin /// rise, scale up, upgrade - static const IconData thinArrowsUpToLine = IconDataThin(0xe4c2); + static const IconData thinArrowsUpToLine = IconData(0xe4c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Artstation icon /// /// https://fontawesome.com/icons/artstation?style=brands - static const IconData artstation = IconDataBrands(0xf77a); + static const IconData artstation = IconData(0xf77a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Asterisk icon /// /// https://fontawesome.com/icons/asterisk?style=solid /// Asterisk, Heavy Asterisk, annotation, details, reference, required, star - static const IconData solidAsterisk = IconDataSolid(0x2a); + static const IconData solidAsterisk = IconData(0x2a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Asterisk icon /// /// https://fontawesome.com/icons/asterisk?style=regular /// Asterisk, Heavy Asterisk, annotation, details, reference, required, star - static const IconData asterisk = IconDataRegular(0x2a); + static const IconData asterisk = IconData(0x2a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Asterisk icon /// /// https://fontawesome.com/icons/asterisk?style=light /// Asterisk, Heavy Asterisk, annotation, details, reference, required, star - static const IconData lightAsterisk = IconDataLight(0x2a); + static const IconData lightAsterisk = IconData(0x2a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Asterisk icon /// /// https://fontawesome.com/icons/asterisk?style=thin /// Asterisk, Heavy Asterisk, annotation, details, reference, required, star - static const IconData thinAsterisk = IconDataThin(0x2a); + static const IconData thinAsterisk = IconData(0x2a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Asymmetrik, Ltd. icon /// /// https://fontawesome.com/icons/asymmetrik?style=brands - static const IconData asymmetrik = IconDataBrands(0xf372); + static const IconData asymmetrik = IconData(0xf372, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid At icon /// /// https://fontawesome.com/icons/at?style=solid /// Commercial At, address, author, e-mail, email, fluctuate, handle - static const IconData solidAt = IconDataSolid(0x40); + static const IconData solidAt = IconData(0x40, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular At icon /// /// https://fontawesome.com/icons/at?style=regular /// Commercial At, address, author, e-mail, email, fluctuate, handle - static const IconData at = IconDataRegular(0x40); + static const IconData at = IconData(0x40, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light At icon /// /// https://fontawesome.com/icons/at?style=light /// Commercial At, address, author, e-mail, email, fluctuate, handle - static const IconData lightAt = IconDataLight(0x40); + static const IconData lightAt = IconData(0x40, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin At icon /// /// https://fontawesome.com/icons/at?style=thin /// Commercial At, address, author, e-mail, email, fluctuate, handle - static const IconData thinAt = IconDataThin(0x40); + static const IconData thinAt = IconData(0x40, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Atlassian icon /// /// https://fontawesome.com/icons/atlassian?style=brands - static const IconData atlassian = IconDataBrands(0xf77b); + static const IconData atlassian = IconData(0xf77b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Atom icon /// /// https://fontawesome.com/icons/atom?style=solid /// atheism, atheist, atom, atom symbol, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science - static const IconData solidAtom = IconDataSolid(0xf5d2); + static const IconData solidAtom = IconData(0xf5d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Atom icon /// /// https://fontawesome.com/icons/atom?style=regular /// atheism, atheist, atom, atom symbol, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science - static const IconData atom = IconDataRegular(0xf5d2); + static const IconData atom = IconData(0xf5d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Atom icon /// /// https://fontawesome.com/icons/atom?style=light /// atheism, atheist, atom, atom symbol, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science - static const IconData lightAtom = IconDataLight(0xf5d2); + static const IconData lightAtom = IconData(0xf5d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Atom icon /// /// https://fontawesome.com/icons/atom?style=thin /// atheism, atheist, atom, atom symbol, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science - static const IconData thinAtom = IconDataThin(0xf5d2); + static const IconData thinAtom = IconData(0xf5d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Atom Simple icon /// /// https://fontawesome.com/icons/atom-simple?style=solid /// atheism, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science, space - static const IconData solidAtomSimple = IconDataSolid(0xf5d3); + static const IconData solidAtomSimple = IconData(0xf5d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias atom-alt for icon [solidAtomSimple] @Deprecated('Use "solidAtomSimple" instead.') @@ -5676,7 +5676,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/atom-simple?style=regular /// atheism, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science, space - static const IconData atomSimple = IconDataRegular(0xf5d3); + static const IconData atomSimple = IconData(0xf5d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias atom-alt for icon [atomSimple] @Deprecated('Use "atomSimple" instead.') @@ -5686,7 +5686,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/atom-simple?style=light /// atheism, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science, space - static const IconData lightAtomSimple = IconDataLight(0xf5d3); + static const IconData lightAtomSimple = IconData(0xf5d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias atom-alt for icon [lightAtomSimple] @Deprecated('Use "lightAtomSimple" instead.') @@ -5696,7 +5696,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/atom-simple?style=thin /// atheism, chemistry, electron, ion, isotope, knowledge, neutron, nuclear, proton, science, space - static const IconData thinAtomSimple = IconDataThin(0xf5d3); + static const IconData thinAtomSimple = IconData(0xf5d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias atom-alt for icon [thinAtomSimple] @Deprecated('Use "thinAtomSimple" instead.') @@ -5705,273 +5705,273 @@ class FontAwesomeIcons { /// Brands Audible icon /// /// https://fontawesome.com/icons/audible?style=brands - static const IconData audible = IconDataBrands(0xf373); + static const IconData audible = IconData(0xf373, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Audio Description icon /// /// https://fontawesome.com/icons/audio-description?style=solid /// blind, narration, video, visual - static const IconData solidAudioDescription = IconDataSolid(0xf29e); + static const IconData solidAudioDescription = IconData(0xf29e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Audio Description icon /// /// https://fontawesome.com/icons/audio-description?style=regular /// blind, narration, video, visual - static const IconData audioDescription = IconDataRegular(0xf29e); + static const IconData audioDescription = IconData(0xf29e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Audio Description icon /// /// https://fontawesome.com/icons/audio-description?style=light /// blind, narration, video, visual - static const IconData lightAudioDescription = IconDataLight(0xf29e); + static const IconData lightAudioDescription = IconData(0xf29e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Audio Description icon /// /// https://fontawesome.com/icons/audio-description?style=thin /// blind, narration, video, visual - static const IconData thinAudioDescription = IconDataThin(0xf29e); + static const IconData thinAudioDescription = IconData(0xf29e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Audio Description Slash icon /// /// https://fontawesome.com/icons/audio-description-slash?style=solid /// audio, disabled, narration, video, visual - static const IconData solidAudioDescriptionSlash = IconDataSolid(0xe0a8); + static const IconData solidAudioDescriptionSlash = IconData(0xe0a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Audio Description Slash icon /// /// https://fontawesome.com/icons/audio-description-slash?style=regular /// audio, disabled, narration, video, visual - static const IconData audioDescriptionSlash = IconDataRegular(0xe0a8); + static const IconData audioDescriptionSlash = IconData(0xe0a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Audio Description Slash icon /// /// https://fontawesome.com/icons/audio-description-slash?style=light /// audio, disabled, narration, video, visual - static const IconData lightAudioDescriptionSlash = IconDataLight(0xe0a8); + static const IconData lightAudioDescriptionSlash = IconData(0xe0a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Audio Description Slash icon /// /// https://fontawesome.com/icons/audio-description-slash?style=thin /// audio, disabled, narration, video, visual - static const IconData thinAudioDescriptionSlash = IconDataThin(0xe0a8); + static const IconData thinAudioDescriptionSlash = IconData(0xe0a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Austral Sign icon /// /// https://fontawesome.com/icons/austral-sign?style=solid /// Austral Sign, currency - static const IconData solidAustralSign = IconDataSolid(0xe0a9); + static const IconData solidAustralSign = IconData(0xe0a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Austral Sign icon /// /// https://fontawesome.com/icons/austral-sign?style=regular /// Austral Sign, currency - static const IconData australSign = IconDataRegular(0xe0a9); + static const IconData australSign = IconData(0xe0a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Austral Sign icon /// /// https://fontawesome.com/icons/austral-sign?style=light /// Austral Sign, currency - static const IconData lightAustralSign = IconDataLight(0xe0a9); + static const IconData lightAustralSign = IconData(0xe0a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Austral Sign icon /// /// https://fontawesome.com/icons/austral-sign?style=thin /// Austral Sign, currency - static const IconData thinAustralSign = IconDataThin(0xe0a9); + static const IconData thinAustralSign = IconData(0xe0a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Autoprefixer icon /// /// https://fontawesome.com/icons/autoprefixer?style=brands - static const IconData autoprefixer = IconDataBrands(0xf41c); + static const IconData autoprefixer = IconData(0xf41c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands avianex icon /// /// https://fontawesome.com/icons/avianex?style=brands - static const IconData avianex = IconDataBrands(0xf374); + static const IconData avianex = IconData(0xf374, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Aviato icon /// /// https://fontawesome.com/icons/aviato?style=brands - static const IconData aviato = IconDataBrands(0xf421); + static const IconData aviato = IconData(0xf421, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Avocado icon /// /// https://fontawesome.com/icons/avocado?style=solid /// avocado, food, fruit, green, guacamole, hass, pit - static const IconData solidAvocado = IconDataSolid(0xe0aa); + static const IconData solidAvocado = IconData(0xe0aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Avocado icon /// /// https://fontawesome.com/icons/avocado?style=regular /// avocado, food, fruit, green, guacamole, hass, pit - static const IconData avocado = IconDataRegular(0xe0aa); + static const IconData avocado = IconData(0xe0aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Avocado icon /// /// https://fontawesome.com/icons/avocado?style=light /// avocado, food, fruit, green, guacamole, hass, pit - static const IconData lightAvocado = IconDataLight(0xe0aa); + static const IconData lightAvocado = IconData(0xe0aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Avocado icon /// /// https://fontawesome.com/icons/avocado?style=thin /// avocado, food, fruit, green, guacamole, hass, pit - static const IconData thinAvocado = IconDataThin(0xe0aa); + static const IconData thinAvocado = IconData(0xe0aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Award icon /// /// https://fontawesome.com/icons/award?style=solid /// guarantee, honor, praise, prize, recognition, ribbon, trophy, warranty - static const IconData solidAward = IconDataSolid(0xf559); + static const IconData solidAward = IconData(0xf559, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Award icon /// /// https://fontawesome.com/icons/award?style=regular /// guarantee, honor, praise, prize, recognition, ribbon, trophy, warranty - static const IconData award = IconDataRegular(0xf559); + static const IconData award = IconData(0xf559, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Award icon /// /// https://fontawesome.com/icons/award?style=light /// guarantee, honor, praise, prize, recognition, ribbon, trophy, warranty - static const IconData lightAward = IconDataLight(0xf559); + static const IconData lightAward = IconData(0xf559, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Award icon /// /// https://fontawesome.com/icons/award?style=thin /// guarantee, honor, praise, prize, recognition, ribbon, trophy, warranty - static const IconData thinAward = IconDataThin(0xf559); + static const IconData thinAward = IconData(0xf559, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Award Simple icon /// /// https://fontawesome.com/icons/award-simple?style=solid /// guarantee, honor, ribbon, warranty - static const IconData solidAwardSimple = IconDataSolid(0xe0ab); + static const IconData solidAwardSimple = IconData(0xe0ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Award Simple icon /// /// https://fontawesome.com/icons/award-simple?style=regular /// guarantee, honor, ribbon, warranty - static const IconData awardSimple = IconDataRegular(0xe0ab); + static const IconData awardSimple = IconData(0xe0ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Award Simple icon /// /// https://fontawesome.com/icons/award-simple?style=light /// guarantee, honor, ribbon, warranty - static const IconData lightAwardSimple = IconDataLight(0xe0ab); + static const IconData lightAwardSimple = IconData(0xe0ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Award Simple icon /// /// https://fontawesome.com/icons/award-simple?style=thin /// guarantee, honor, ribbon, warranty - static const IconData thinAwardSimple = IconDataThin(0xe0ab); + static const IconData thinAwardSimple = IconData(0xe0ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Amazon Web Services (AWS) icon /// /// https://fontawesome.com/icons/aws?style=brands - static const IconData aws = IconDataBrands(0xf375); + static const IconData aws = IconData(0xf375, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Axe icon /// /// https://fontawesome.com/icons/axe?style=solid /// axe, blade, chop, cut, equipment, fall, hatchet, lumberjack, outdoors, sharp, split, swing, tool, weapon, wood - static const IconData solidAxe = IconDataSolid(0xf6b2); + static const IconData solidAxe = IconData(0xf6b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Axe icon /// /// https://fontawesome.com/icons/axe?style=regular /// axe, blade, chop, cut, equipment, fall, hatchet, lumberjack, outdoors, sharp, split, swing, tool, weapon, wood - static const IconData axe = IconDataRegular(0xf6b2); + static const IconData axe = IconData(0xf6b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Axe icon /// /// https://fontawesome.com/icons/axe?style=light /// axe, blade, chop, cut, equipment, fall, hatchet, lumberjack, outdoors, sharp, split, swing, tool, weapon, wood - static const IconData lightAxe = IconDataLight(0xf6b2); + static const IconData lightAxe = IconData(0xf6b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Axe icon /// /// https://fontawesome.com/icons/axe?style=thin /// axe, blade, chop, cut, equipment, fall, hatchet, lumberjack, outdoors, sharp, split, swing, tool, weapon, wood - static const IconData thinAxe = IconDataThin(0xf6b2); + static const IconData thinAxe = IconData(0xf6b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Axe Battle icon /// /// https://fontawesome.com/icons/axe-battle?style=solid /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconData solidAxeBattle = IconDataSolid(0xf6b3); + static const IconData solidAxeBattle = IconData(0xf6b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Axe Battle icon /// /// https://fontawesome.com/icons/axe-battle?style=regular /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconData axeBattle = IconDataRegular(0xf6b3); + static const IconData axeBattle = IconData(0xf6b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Axe Battle icon /// /// https://fontawesome.com/icons/axe-battle?style=light /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconData lightAxeBattle = IconDataLight(0xf6b3); + static const IconData lightAxeBattle = IconData(0xf6b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Axe Battle icon /// /// https://fontawesome.com/icons/axe-battle?style=thin /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconData thinAxeBattle = IconDataThin(0xf6b3); + static const IconData thinAxeBattle = IconData(0xf6b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid B icon /// /// https://fontawesome.com/icons/b?style=solid /// Latin Capital Letter B, Latin Small Letter B, letter - static const IconData solidB = IconDataSolid(0x42); + static const IconData solidB = IconData(0x42, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular B icon /// /// https://fontawesome.com/icons/b?style=regular /// Latin Capital Letter B, Latin Small Letter B, letter - static const IconData b = IconDataRegular(0x42); + static const IconData b = IconData(0x42, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light B icon /// /// https://fontawesome.com/icons/b?style=light /// Latin Capital Letter B, Latin Small Letter B, letter - static const IconData lightB = IconDataLight(0x42); + static const IconData lightB = IconData(0x42, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin B icon /// /// https://fontawesome.com/icons/b?style=thin /// Latin Capital Letter B, Latin Small Letter B, letter - static const IconData thinB = IconDataThin(0x42); + static const IconData thinB = IconData(0x42, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Baby icon /// /// https://fontawesome.com/icons/baby?style=solid /// uer, users-people - static const IconData solidBaby = IconDataSolid(0xf77c); + static const IconData solidBaby = IconData(0xf77c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Baby icon /// /// https://fontawesome.com/icons/baby?style=regular /// uer, users-people - static const IconData baby = IconDataRegular(0xf77c); + static const IconData baby = IconData(0xf77c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Baby icon /// /// https://fontawesome.com/icons/baby?style=light /// uer, users-people - static const IconData lightBaby = IconDataLight(0xf77c); + static const IconData lightBaby = IconData(0xf77c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Baby icon /// /// https://fontawesome.com/icons/baby?style=thin /// uer, users-people - static const IconData thinBaby = IconDataThin(0xf77c); + static const IconData thinBaby = IconData(0xf77c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Baby Carriage icon /// /// https://fontawesome.com/icons/baby-carriage?style=solid /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData solidBabyCarriage = IconDataSolid(0xf77d); + static const IconData solidBabyCarriage = IconData(0xf77d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias carriage-baby for icon [solidBabyCarriage] @Deprecated('Use "solidBabyCarriage" instead.') @@ -5981,7 +5981,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baby-carriage?style=regular /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData babyCarriage = IconDataRegular(0xf77d); + static const IconData babyCarriage = IconData(0xf77d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias carriage-baby for icon [babyCarriage] @Deprecated('Use "babyCarriage" instead.') @@ -5991,7 +5991,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baby-carriage?style=light /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData lightBabyCarriage = IconDataLight(0xf77d); + static const IconData lightBabyCarriage = IconData(0xf77d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias carriage-baby for icon [lightBabyCarriage] @Deprecated('Use "lightBabyCarriage" instead.') @@ -6001,7 +6001,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baby-carriage?style=thin /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData thinBabyCarriage = IconDataThin(0xf77d); + static const IconData thinBabyCarriage = IconData(0xf77d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias carriage-baby for icon [thinBabyCarriage] @Deprecated('Use "thinBabyCarriage" instead.') @@ -6011,55 +6011,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backpack?style=solid /// backpack, bag, book, carry, hiking, rucksack, satchel, school, travel - static const IconData solidBackpack = IconDataSolid(0xf5d4); + static const IconData solidBackpack = IconData(0xf5d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Backpack icon /// /// https://fontawesome.com/icons/backpack?style=regular /// backpack, bag, book, carry, hiking, rucksack, satchel, school, travel - static const IconData backpack = IconDataRegular(0xf5d4); + static const IconData backpack = IconData(0xf5d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Backpack icon /// /// https://fontawesome.com/icons/backpack?style=light /// backpack, bag, book, carry, hiking, rucksack, satchel, school, travel - static const IconData lightBackpack = IconDataLight(0xf5d4); + static const IconData lightBackpack = IconData(0xf5d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Backpack icon /// /// https://fontawesome.com/icons/backpack?style=thin /// backpack, bag, book, carry, hiking, rucksack, satchel, school, travel - static const IconData thinBackpack = IconDataThin(0xf5d4); + static const IconData thinBackpack = IconData(0xf5d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Backward icon /// /// https://fontawesome.com/icons/backward?style=solid /// arrow, double, fast reverse button, previous, rewind - static const IconData solidBackward = IconDataSolid(0xf04a); + static const IconData solidBackward = IconData(0xf04a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Backward icon /// /// https://fontawesome.com/icons/backward?style=regular /// arrow, double, fast reverse button, previous, rewind - static const IconData backward = IconDataRegular(0xf04a); + static const IconData backward = IconData(0xf04a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Backward icon /// /// https://fontawesome.com/icons/backward?style=light /// arrow, double, fast reverse button, previous, rewind - static const IconData lightBackward = IconDataLight(0xf04a); + static const IconData lightBackward = IconData(0xf04a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Backward icon /// /// https://fontawesome.com/icons/backward?style=thin /// arrow, double, fast reverse button, previous, rewind - static const IconData thinBackward = IconDataThin(0xf04a); + static const IconData thinBackward = IconData(0xf04a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Backward Fast icon /// /// https://fontawesome.com/icons/backward-fast?style=solid /// arrow, beginning, first, last track button, previous, previous scene, previous track, quick, rewind, start, triangle - static const IconData solidBackwardFast = IconDataSolid(0xf049); + static const IconData solidBackwardFast = IconData(0xf049, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fast-backward for icon [solidBackwardFast] @Deprecated('Use "solidBackwardFast" instead.') @@ -6069,7 +6069,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-fast?style=regular /// arrow, beginning, first, last track button, previous, previous scene, previous track, quick, rewind, start, triangle - static const IconData backwardFast = IconDataRegular(0xf049); + static const IconData backwardFast = IconData(0xf049, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fast-backward for icon [backwardFast] @Deprecated('Use "backwardFast" instead.') @@ -6079,7 +6079,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-fast?style=light /// arrow, beginning, first, last track button, previous, previous scene, previous track, quick, rewind, start, triangle - static const IconData lightBackwardFast = IconDataLight(0xf049); + static const IconData lightBackwardFast = IconData(0xf049, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fast-backward for icon [lightBackwardFast] @Deprecated('Use "lightBackwardFast" instead.') @@ -6089,7 +6089,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-fast?style=thin /// arrow, beginning, first, last track button, previous, previous scene, previous track, quick, rewind, start, triangle - static const IconData thinBackwardFast = IconDataThin(0xf049); + static const IconData thinBackwardFast = IconData(0xf049, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fast-backward for icon [thinBackwardFast] @Deprecated('Use "thinBackwardFast" instead.') @@ -6099,7 +6099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-step?style=solid /// beginning, first, previous, rewind, start - static const IconData solidBackwardStep = IconDataSolid(0xf048); + static const IconData solidBackwardStep = IconData(0xf048, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias step-backward for icon [solidBackwardStep] @Deprecated('Use "solidBackwardStep" instead.') @@ -6109,7 +6109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-step?style=regular /// beginning, first, previous, rewind, start - static const IconData backwardStep = IconDataRegular(0xf048); + static const IconData backwardStep = IconData(0xf048, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias step-backward for icon [backwardStep] @Deprecated('Use "backwardStep" instead.') @@ -6119,7 +6119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-step?style=light /// beginning, first, previous, rewind, start - static const IconData lightBackwardStep = IconDataLight(0xf048); + static const IconData lightBackwardStep = IconData(0xf048, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias step-backward for icon [lightBackwardStep] @Deprecated('Use "lightBackwardStep" instead.') @@ -6129,7 +6129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/backward-step?style=thin /// beginning, first, previous, rewind, start - static const IconData thinBackwardStep = IconDataThin(0xf048); + static const IconData thinBackwardStep = IconData(0xf048, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias step-backward for icon [thinBackwardStep] @Deprecated('Use "thinBackwardStep" instead.') @@ -6139,271 +6139,271 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bacon?style=solid /// bacon, blt, breakfast, food, ham, lard, meat, pancetta, pork, rasher - static const IconData solidBacon = IconDataSolid(0xf7e5); + static const IconData solidBacon = IconData(0xf7e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bacon icon /// /// https://fontawesome.com/icons/bacon?style=regular /// bacon, blt, breakfast, food, ham, lard, meat, pancetta, pork, rasher - static const IconData bacon = IconDataRegular(0xf7e5); + static const IconData bacon = IconData(0xf7e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bacon icon /// /// https://fontawesome.com/icons/bacon?style=light /// bacon, blt, breakfast, food, ham, lard, meat, pancetta, pork, rasher - static const IconData lightBacon = IconDataLight(0xf7e5); + static const IconData lightBacon = IconData(0xf7e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bacon icon /// /// https://fontawesome.com/icons/bacon?style=thin /// bacon, blt, breakfast, food, ham, lard, meat, pancetta, pork, rasher - static const IconData thinBacon = IconDataThin(0xf7e5); + static const IconData thinBacon = IconData(0xf7e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bacteria icon /// /// https://fontawesome.com/icons/bacteria?style=solid /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData solidBacteria = IconDataSolid(0xe059); + static const IconData solidBacteria = IconData(0xe059, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bacteria icon /// /// https://fontawesome.com/icons/bacteria?style=regular /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData bacteria = IconDataRegular(0xe059); + static const IconData bacteria = IconData(0xe059, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bacteria icon /// /// https://fontawesome.com/icons/bacteria?style=light /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData lightBacteria = IconDataLight(0xe059); + static const IconData lightBacteria = IconData(0xe059, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bacteria icon /// /// https://fontawesome.com/icons/bacteria?style=thin /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData thinBacteria = IconDataThin(0xe059); + static const IconData thinBacteria = IconData(0xe059, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bacterium icon /// /// https://fontawesome.com/icons/bacterium?style=solid /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData solidBacterium = IconDataSolid(0xe05a); + static const IconData solidBacterium = IconData(0xe05a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bacterium icon /// /// https://fontawesome.com/icons/bacterium?style=regular /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData bacterium = IconDataRegular(0xe05a); + static const IconData bacterium = IconData(0xe05a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bacterium icon /// /// https://fontawesome.com/icons/bacterium?style=light /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData lightBacterium = IconDataLight(0xe05a); + static const IconData lightBacterium = IconData(0xe05a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bacterium icon /// /// https://fontawesome.com/icons/bacterium?style=thin /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData thinBacterium = IconDataThin(0xe05a); + static const IconData thinBacterium = IconData(0xe05a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badge icon /// /// https://fontawesome.com/icons/badge?style=solid /// discount, guarantee, meatball, verified, verify - static const IconData solidBadge = IconDataSolid(0xf335); + static const IconData solidBadge = IconData(0xf335, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badge icon /// /// https://fontawesome.com/icons/badge?style=regular /// discount, guarantee, meatball, verified, verify - static const IconData badge = IconDataRegular(0xf335); + static const IconData badge = IconData(0xf335, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badge icon /// /// https://fontawesome.com/icons/badge?style=light /// discount, guarantee, meatball, verified, verify - static const IconData lightBadge = IconDataLight(0xf335); + static const IconData lightBadge = IconData(0xf335, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badge icon /// /// https://fontawesome.com/icons/badge?style=thin /// discount, guarantee, meatball, verified, verify - static const IconData thinBadge = IconDataThin(0xf335); + static const IconData thinBadge = IconData(0xf335, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badge Check icon /// /// https://fontawesome.com/icons/badge-check?style=solid /// accept, achievement, agree, award, confirm, correct, done, enable, guarantee, ok, security, select, success, validate, verified, verify, warranty, winner, working, yes - static const IconData solidBadgeCheck = IconDataSolid(0xf336); + static const IconData solidBadgeCheck = IconData(0xf336, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badge Check icon /// /// https://fontawesome.com/icons/badge-check?style=regular /// accept, achievement, agree, award, confirm, correct, done, enable, guarantee, ok, security, select, success, validate, verified, verify, warranty, winner, working, yes - static const IconData badgeCheck = IconDataRegular(0xf336); + static const IconData badgeCheck = IconData(0xf336, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badge Check icon /// /// https://fontawesome.com/icons/badge-check?style=light /// accept, achievement, agree, award, confirm, correct, done, enable, guarantee, ok, security, select, success, validate, verified, verify, warranty, winner, working, yes - static const IconData lightBadgeCheck = IconDataLight(0xf336); + static const IconData lightBadgeCheck = IconData(0xf336, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badge Check icon /// /// https://fontawesome.com/icons/badge-check?style=thin /// accept, achievement, agree, award, confirm, correct, done, enable, guarantee, ok, security, select, success, validate, verified, verify, warranty, winner, working, yes - static const IconData thinBadgeCheck = IconDataThin(0xf336); + static const IconData thinBadgeCheck = IconData(0xf336, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badge Dollar icon /// /// https://fontawesome.com/icons/badge-dollar?style=solid /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData solidBadgeDollar = IconDataSolid(0xf645); + static const IconData solidBadgeDollar = IconData(0xf645, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badge Dollar icon /// /// https://fontawesome.com/icons/badge-dollar?style=regular /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData badgeDollar = IconDataRegular(0xf645); + static const IconData badgeDollar = IconData(0xf645, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badge Dollar icon /// /// https://fontawesome.com/icons/badge-dollar?style=light /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData lightBadgeDollar = IconDataLight(0xf645); + static const IconData lightBadgeDollar = IconData(0xf645, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badge Dollar icon /// /// https://fontawesome.com/icons/badge-dollar?style=thin /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData thinBadgeDollar = IconDataThin(0xf645); + static const IconData thinBadgeDollar = IconData(0xf645, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badge Percent icon /// /// https://fontawesome.com/icons/badge-percent?style=solid /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData solidBadgePercent = IconDataSolid(0xf646); + static const IconData solidBadgePercent = IconData(0xf646, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badge Percent icon /// /// https://fontawesome.com/icons/badge-percent?style=regular /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData badgePercent = IconDataRegular(0xf646); + static const IconData badgePercent = IconData(0xf646, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badge Percent icon /// /// https://fontawesome.com/icons/badge-percent?style=light /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData lightBadgePercent = IconDataLight(0xf646); + static const IconData lightBadgePercent = IconData(0xf646, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badge Percent icon /// /// https://fontawesome.com/icons/badge-percent?style=thin /// coupon, deal, discount, guarantee, investment, money, salary, save, usd - static const IconData thinBadgePercent = IconDataThin(0xf646); + static const IconData thinBadgePercent = IconData(0xf646, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badge Sheriff icon /// /// https://fontawesome.com/icons/badge-sheriff?style=solid /// cowboy, justice, law, old west, western - static const IconData solidBadgeSheriff = IconDataSolid(0xf8a2); + static const IconData solidBadgeSheriff = IconData(0xf8a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badge Sheriff icon /// /// https://fontawesome.com/icons/badge-sheriff?style=regular /// cowboy, justice, law, old west, western - static const IconData badgeSheriff = IconDataRegular(0xf8a2); + static const IconData badgeSheriff = IconData(0xf8a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badge Sheriff icon /// /// https://fontawesome.com/icons/badge-sheriff?style=light /// cowboy, justice, law, old west, western - static const IconData lightBadgeSheriff = IconDataLight(0xf8a2); + static const IconData lightBadgeSheriff = IconData(0xf8a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badge Sheriff icon /// /// https://fontawesome.com/icons/badge-sheriff?style=thin /// cowboy, justice, law, old west, western - static const IconData thinBadgeSheriff = IconDataThin(0xf8a2); + static const IconData thinBadgeSheriff = IconData(0xf8a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badger Honey icon /// /// https://fontawesome.com/icons/badger-honey?style=solid /// animal, badger, care, dont, ewww, fauna, honey badger, mammal, nasty, pester - static const IconData solidBadgerHoney = IconDataSolid(0xf6b4); + static const IconData solidBadgerHoney = IconData(0xf6b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badger Honey icon /// /// https://fontawesome.com/icons/badger-honey?style=regular /// animal, badger, care, dont, ewww, fauna, honey badger, mammal, nasty, pester - static const IconData badgerHoney = IconDataRegular(0xf6b4); + static const IconData badgerHoney = IconData(0xf6b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badger Honey icon /// /// https://fontawesome.com/icons/badger-honey?style=light /// animal, badger, care, dont, ewww, fauna, honey badger, mammal, nasty, pester - static const IconData lightBadgerHoney = IconDataLight(0xf6b4); + static const IconData lightBadgerHoney = IconData(0xf6b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badger Honey icon /// /// https://fontawesome.com/icons/badger-honey?style=thin /// animal, badger, care, dont, ewww, fauna, honey badger, mammal, nasty, pester - static const IconData thinBadgerHoney = IconDataThin(0xf6b4); + static const IconData thinBadgerHoney = IconData(0xf6b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Badminton icon /// /// https://fontawesome.com/icons/badminton?style=solid /// badminton, birdie, game, racquet, shuttlecock - static const IconData solidBadminton = IconDataSolid(0xe33a); + static const IconData solidBadminton = IconData(0xe33a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Badminton icon /// /// https://fontawesome.com/icons/badminton?style=regular /// badminton, birdie, game, racquet, shuttlecock - static const IconData badminton = IconDataRegular(0xe33a); + static const IconData badminton = IconData(0xe33a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Badminton icon /// /// https://fontawesome.com/icons/badminton?style=light /// badminton, birdie, game, racquet, shuttlecock - static const IconData lightBadminton = IconDataLight(0xe33a); + static const IconData lightBadminton = IconData(0xe33a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Badminton icon /// /// https://fontawesome.com/icons/badminton?style=thin /// badminton, birdie, game, racquet, shuttlecock - static const IconData thinBadminton = IconDataThin(0xe33a); + static const IconData thinBadminton = IconData(0xe33a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bag Seedling icon /// /// https://fontawesome.com/icons/bag-seedling?style=solid /// agriculture, fertilizer, garden, grow, plant, sack, seed, bag - static const IconData solidBagSeedling = IconDataSolid(0xe5f2); + static const IconData solidBagSeedling = IconData(0xe5f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bag Seedling icon /// /// https://fontawesome.com/icons/bag-seedling?style=regular /// agriculture, fertilizer, garden, grow, plant, sack, seed, bag - static const IconData bagSeedling = IconDataRegular(0xe5f2); + static const IconData bagSeedling = IconData(0xe5f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bag Seedling icon /// /// https://fontawesome.com/icons/bag-seedling?style=light /// agriculture, fertilizer, garden, grow, plant, sack, seed, bag - static const IconData lightBagSeedling = IconDataLight(0xe5f2); + static const IconData lightBagSeedling = IconData(0xe5f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bag Seedling icon /// /// https://fontawesome.com/icons/bag-seedling?style=thin /// agriculture, fertilizer, garden, grow, plant, sack, seed, bag - static const IconData thinBagSeedling = IconDataThin(0xe5f2); + static const IconData thinBagSeedling = IconData(0xe5f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bag Shopping icon /// /// https://fontawesome.com/icons/bag-shopping?style=solid /// buy, checkout, grocery, payment, purchase - static const IconData solidBagShopping = IconDataSolid(0xf290); + static const IconData solidBagShopping = IconData(0xf290, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shopping-bag for icon [solidBagShopping] @Deprecated('Use "solidBagShopping" instead.') @@ -6413,7 +6413,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bag-shopping?style=regular /// buy, checkout, grocery, payment, purchase - static const IconData bagShopping = IconDataRegular(0xf290); + static const IconData bagShopping = IconData(0xf290, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shopping-bag for icon [bagShopping] @Deprecated('Use "bagShopping" instead.') @@ -6423,7 +6423,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bag-shopping?style=light /// buy, checkout, grocery, payment, purchase - static const IconData lightBagShopping = IconDataLight(0xf290); + static const IconData lightBagShopping = IconData(0xf290, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shopping-bag for icon [lightBagShopping] @Deprecated('Use "lightBagShopping" instead.') @@ -6433,7 +6433,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bag-shopping?style=thin /// buy, checkout, grocery, payment, purchase - static const IconData thinBagShopping = IconDataThin(0xf290); + static const IconData thinBagShopping = IconData(0xf290, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shopping-bag for icon [thinBagShopping] @Deprecated('Use "thinBagShopping" instead.') @@ -6443,127 +6443,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bag-shopping-minus?style=solid /// checkout, grocery, payment, purchase, remove, buy, subtract - static const IconData solidBagShoppingMinus = IconDataSolid(0xe650); + static const IconData solidBagShoppingMinus = IconData(0xe650, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bag Shopping Minus icon /// /// https://fontawesome.com/icons/bag-shopping-minus?style=regular /// checkout, grocery, payment, purchase, remove, buy, subtract - static const IconData bagShoppingMinus = IconDataRegular(0xe650); + static const IconData bagShoppingMinus = IconData(0xe650, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bag Shopping Minus icon /// /// https://fontawesome.com/icons/bag-shopping-minus?style=light /// checkout, grocery, payment, purchase, remove, buy, subtract - static const IconData lightBagShoppingMinus = IconDataLight(0xe650); + static const IconData lightBagShoppingMinus = IconData(0xe650, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bag Shopping Minus icon /// /// https://fontawesome.com/icons/bag-shopping-minus?style=thin /// checkout, grocery, payment, purchase, remove, buy, subtract - static const IconData thinBagShoppingMinus = IconDataThin(0xe650); + static const IconData thinBagShoppingMinus = IconData(0xe650, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bag Shopping Plus icon /// /// https://fontawesome.com/icons/bag-shopping-plus?style=solid /// add, checkout, grocery, payment, purchase, buy - static const IconData solidBagShoppingPlus = IconDataSolid(0xe651); + static const IconData solidBagShoppingPlus = IconData(0xe651, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bag Shopping Plus icon /// /// https://fontawesome.com/icons/bag-shopping-plus?style=regular /// add, checkout, grocery, payment, purchase, buy - static const IconData bagShoppingPlus = IconDataRegular(0xe651); + static const IconData bagShoppingPlus = IconData(0xe651, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bag Shopping Plus icon /// /// https://fontawesome.com/icons/bag-shopping-plus?style=light /// add, checkout, grocery, payment, purchase, buy - static const IconData lightBagShoppingPlus = IconDataLight(0xe651); + static const IconData lightBagShoppingPlus = IconData(0xe651, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bag Shopping Plus icon /// /// https://fontawesome.com/icons/bag-shopping-plus?style=thin /// add, checkout, grocery, payment, purchase, buy - static const IconData thinBagShoppingPlus = IconDataThin(0xe651); + static const IconData thinBagShoppingPlus = IconData(0xe651, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bagel icon /// /// https://fontawesome.com/icons/bagel?style=solid /// bagel, bakery, breakfast, cream cheese, schmear, toast - static const IconData solidBagel = IconDataSolid(0xe3d7); + static const IconData solidBagel = IconData(0xe3d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bagel icon /// /// https://fontawesome.com/icons/bagel?style=regular /// bagel, bakery, breakfast, cream cheese, schmear, toast - static const IconData bagel = IconDataRegular(0xe3d7); + static const IconData bagel = IconData(0xe3d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bagel icon /// /// https://fontawesome.com/icons/bagel?style=light /// bagel, bakery, breakfast, cream cheese, schmear, toast - static const IconData lightBagel = IconDataLight(0xe3d7); + static const IconData lightBagel = IconData(0xe3d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bagel icon /// /// https://fontawesome.com/icons/bagel?style=thin /// bagel, bakery, breakfast, cream cheese, schmear, toast - static const IconData thinBagel = IconDataThin(0xe3d7); + static const IconData thinBagel = IconData(0xe3d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bags Shopping icon /// /// https://fontawesome.com/icons/bags-shopping?style=solid /// bag, buy, checkout, hotel, order, shopping, shopping bags, store - static const IconData solidBagsShopping = IconDataSolid(0xf847); + static const IconData solidBagsShopping = IconData(0xf847, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bags Shopping icon /// /// https://fontawesome.com/icons/bags-shopping?style=regular /// bag, buy, checkout, hotel, order, shopping, shopping bags, store - static const IconData bagsShopping = IconDataRegular(0xf847); + static const IconData bagsShopping = IconData(0xf847, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bags Shopping icon /// /// https://fontawesome.com/icons/bags-shopping?style=light /// bag, buy, checkout, hotel, order, shopping, shopping bags, store - static const IconData lightBagsShopping = IconDataLight(0xf847); + static const IconData lightBagsShopping = IconData(0xf847, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bags Shopping icon /// /// https://fontawesome.com/icons/bags-shopping?style=thin /// bag, buy, checkout, hotel, order, shopping, shopping bags, store - static const IconData thinBagsShopping = IconDataThin(0xf847); + static const IconData thinBagsShopping = IconData(0xf847, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Baguette icon /// /// https://fontawesome.com/icons/baguette?style=solid /// baguette, bread, french, loaf, sourdough - static const IconData solidBaguette = IconDataSolid(0xe3d8); + static const IconData solidBaguette = IconData(0xe3d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Baguette icon /// /// https://fontawesome.com/icons/baguette?style=regular /// baguette, bread, french, loaf, sourdough - static const IconData baguette = IconDataRegular(0xe3d8); + static const IconData baguette = IconData(0xe3d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Baguette icon /// /// https://fontawesome.com/icons/baguette?style=light /// baguette, bread, french, loaf, sourdough - static const IconData lightBaguette = IconDataLight(0xe3d8); + static const IconData lightBaguette = IconData(0xe3d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Baguette icon /// /// https://fontawesome.com/icons/baguette?style=thin /// baguette, bread, french, loaf, sourdough - static const IconData thinBaguette = IconDataThin(0xe3d8); + static const IconData thinBaguette = IconData(0xe3d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bahai icon /// /// https://fontawesome.com/icons/bahai?style=solid /// bahai, bahá'í, star - static const IconData solidBahai = IconDataSolid(0xf666); + static const IconData solidBahai = IconData(0xf666, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias haykal for icon [solidBahai] @Deprecated('Use "solidBahai" instead.') @@ -6573,7 +6573,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bahai?style=regular /// bahai, bahá'í, star - static const IconData bahai = IconDataRegular(0xf666); + static const IconData bahai = IconData(0xf666, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias haykal for icon [bahai] @Deprecated('Use "bahai" instead.') @@ -6583,7 +6583,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bahai?style=light /// bahai, bahá'í, star - static const IconData lightBahai = IconDataLight(0xf666); + static const IconData lightBahai = IconData(0xf666, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias haykal for icon [lightBahai] @Deprecated('Use "lightBahai" instead.') @@ -6593,7 +6593,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bahai?style=thin /// bahai, bahá'í, star - static const IconData thinBahai = IconDataThin(0xf666); + static const IconData thinBahai = IconData(0xf666, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias haykal for icon [thinBahai] @Deprecated('Use "thinBahai" instead.') @@ -6603,151 +6603,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baht-sign?style=solid /// currency - static const IconData solidBahtSign = IconDataSolid(0xe0ac); + static const IconData solidBahtSign = IconData(0xe0ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Baht Sign icon /// /// https://fontawesome.com/icons/baht-sign?style=regular /// currency - static const IconData bahtSign = IconDataRegular(0xe0ac); + static const IconData bahtSign = IconData(0xe0ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Baht Sign icon /// /// https://fontawesome.com/icons/baht-sign?style=light /// currency - static const IconData lightBahtSign = IconDataLight(0xe0ac); + static const IconData lightBahtSign = IconData(0xe0ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Baht Sign icon /// /// https://fontawesome.com/icons/baht-sign?style=thin /// currency - static const IconData thinBahtSign = IconDataThin(0xe0ac); + static const IconData thinBahtSign = IconData(0xe0ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ball Pile icon /// /// https://fontawesome.com/icons/ball-pile?style=solid /// balance, cannon, group, pyramid, snowball - static const IconData solidBallPile = IconDataSolid(0xf77e); + static const IconData solidBallPile = IconData(0xf77e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ball Pile icon /// /// https://fontawesome.com/icons/ball-pile?style=regular /// balance, cannon, group, pyramid, snowball - static const IconData ballPile = IconDataRegular(0xf77e); + static const IconData ballPile = IconData(0xf77e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ball Pile icon /// /// https://fontawesome.com/icons/ball-pile?style=light /// balance, cannon, group, pyramid, snowball - static const IconData lightBallPile = IconDataLight(0xf77e); + static const IconData lightBallPile = IconData(0xf77e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ball Pile icon /// /// https://fontawesome.com/icons/ball-pile?style=thin /// balance, cannon, group, pyramid, snowball - static const IconData thinBallPile = IconDataThin(0xf77e); + static const IconData thinBallPile = IconData(0xf77e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Balloon icon /// /// https://fontawesome.com/icons/balloon?style=solid /// balloon, birthday, celebrate, celebration, helium, party, pop, up - static const IconData solidBalloon = IconDataSolid(0xe2e3); + static const IconData solidBalloon = IconData(0xe2e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Balloon icon /// /// https://fontawesome.com/icons/balloon?style=regular /// balloon, birthday, celebrate, celebration, helium, party, pop, up - static const IconData balloon = IconDataRegular(0xe2e3); + static const IconData balloon = IconData(0xe2e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Balloon icon /// /// https://fontawesome.com/icons/balloon?style=light /// balloon, birthday, celebrate, celebration, helium, party, pop, up - static const IconData lightBalloon = IconDataLight(0xe2e3); + static const IconData lightBalloon = IconData(0xe2e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Balloon icon /// /// https://fontawesome.com/icons/balloon?style=thin /// balloon, birthday, celebrate, celebration, helium, party, pop, up - static const IconData thinBalloon = IconDataThin(0xe2e3); + static const IconData thinBalloon = IconData(0xe2e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Balloons icon /// /// https://fontawesome.com/icons/balloons?style=solid /// birthday, celebrate, celebration, helium, party, pop, up - static const IconData solidBalloons = IconDataSolid(0xe2e4); + static const IconData solidBalloons = IconData(0xe2e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Balloons icon /// /// https://fontawesome.com/icons/balloons?style=regular /// birthday, celebrate, celebration, helium, party, pop, up - static const IconData balloons = IconDataRegular(0xe2e4); + static const IconData balloons = IconData(0xe2e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Balloons icon /// /// https://fontawesome.com/icons/balloons?style=light /// birthday, celebrate, celebration, helium, party, pop, up - static const IconData lightBalloons = IconDataLight(0xe2e4); + static const IconData lightBalloons = IconData(0xe2e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Balloons icon /// /// https://fontawesome.com/icons/balloons?style=thin /// birthday, celebrate, celebration, helium, party, pop, up - static const IconData thinBalloons = IconDataThin(0xe2e4); + static const IconData thinBalloons = IconData(0xe2e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ballot icon /// /// https://fontawesome.com/icons/ballot?style=solid /// checklist, choice, election, vote, voting - static const IconData solidBallot = IconDataSolid(0xf732); + static const IconData solidBallot = IconData(0xf732, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ballot icon /// /// https://fontawesome.com/icons/ballot?style=regular /// checklist, choice, election, vote, voting - static const IconData ballot = IconDataRegular(0xf732); + static const IconData ballot = IconData(0xf732, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ballot icon /// /// https://fontawesome.com/icons/ballot?style=light /// checklist, choice, election, vote, voting - static const IconData lightBallot = IconDataLight(0xf732); + static const IconData lightBallot = IconData(0xf732, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ballot icon /// /// https://fontawesome.com/icons/ballot?style=thin /// checklist, choice, election, vote, voting - static const IconData thinBallot = IconDataThin(0xf732); + static const IconData thinBallot = IconData(0xf732, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ballot Check icon /// /// https://fontawesome.com/icons/ballot-check?style=solid /// checklist, choice, completed, coupon, done, election, enable, finished, select, success, tick, validate, vote, voting, working - static const IconData solidBallotCheck = IconDataSolid(0xf733); + static const IconData solidBallotCheck = IconData(0xf733, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ballot Check icon /// /// https://fontawesome.com/icons/ballot-check?style=regular /// checklist, choice, completed, coupon, done, election, enable, finished, select, success, tick, validate, vote, voting, working - static const IconData ballotCheck = IconDataRegular(0xf733); + static const IconData ballotCheck = IconData(0xf733, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ballot Check icon /// /// https://fontawesome.com/icons/ballot-check?style=light /// checklist, choice, completed, coupon, done, election, enable, finished, select, success, tick, validate, vote, voting, working - static const IconData lightBallotCheck = IconDataLight(0xf733); + static const IconData lightBallotCheck = IconData(0xf733, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ballot Check icon /// /// https://fontawesome.com/icons/ballot-check?style=thin /// checklist, choice, completed, coupon, done, election, enable, finished, select, success, tick, validate, vote, voting, working - static const IconData thinBallotCheck = IconDataThin(0xf733); + static const IconData thinBallotCheck = IconData(0xf733, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ban icon /// /// https://fontawesome.com/icons/ban?style=solid /// 404, abort, ban, block, cancel, delete, deny, disabled, entry, failed, forbidden, hide, no, not, not found, prohibit, prohibited, remove, stop, trash - static const IconData solidBan = IconDataSolid(0xf05e); + static const IconData solidBan = IconData(0xf05e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cancel for icon [solidBan] @Deprecated('Use "solidBan" instead.') @@ -6757,7 +6757,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban?style=regular /// 404, abort, ban, block, cancel, delete, deny, disabled, entry, failed, forbidden, hide, no, not, not found, prohibit, prohibited, remove, stop, trash - static const IconData ban = IconDataRegular(0xf05e); + static const IconData ban = IconData(0xf05e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cancel for icon [ban] @Deprecated('Use "ban" instead.') @@ -6767,7 +6767,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban?style=light /// 404, abort, ban, block, cancel, delete, deny, disabled, entry, failed, forbidden, hide, no, not, not found, prohibit, prohibited, remove, stop, trash - static const IconData lightBan = IconDataLight(0xf05e); + static const IconData lightBan = IconData(0xf05e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cancel for icon [lightBan] @Deprecated('Use "lightBan" instead.') @@ -6777,7 +6777,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban?style=thin /// 404, abort, ban, block, cancel, delete, deny, disabled, entry, failed, forbidden, hide, no, not, not found, prohibit, prohibited, remove, stop, trash - static const IconData thinBan = IconDataThin(0xf05e); + static const IconData thinBan = IconData(0xf05e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cancel for icon [thinBan] @Deprecated('Use "thinBan" instead.') @@ -6787,7 +6787,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-bug?style=solid /// deny, disabled, error, fix, glitch, optimize, repair, warning - static const IconData solidBanBug = IconDataSolid(0xf7f9); + static const IconData solidBanBug = IconData(0xf7f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias debug for icon [solidBanBug] @Deprecated('Use "solidBanBug" instead.') @@ -6797,7 +6797,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-bug?style=regular /// deny, disabled, error, fix, glitch, optimize, repair, warning - static const IconData banBug = IconDataRegular(0xf7f9); + static const IconData banBug = IconData(0xf7f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias debug for icon [banBug] @Deprecated('Use "banBug" instead.') @@ -6807,7 +6807,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-bug?style=light /// deny, disabled, error, fix, glitch, optimize, repair, warning - static const IconData lightBanBug = IconDataLight(0xf7f9); + static const IconData lightBanBug = IconData(0xf7f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias debug for icon [lightBanBug] @Deprecated('Use "lightBanBug" instead.') @@ -6817,7 +6817,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-bug?style=thin /// deny, disabled, error, fix, glitch, optimize, repair, warning - static const IconData thinBanBug = IconDataThin(0xf7f9); + static const IconData thinBanBug = IconData(0xf7f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias debug for icon [thinBanBug] @Deprecated('Use "thinBanBug" instead.') @@ -6827,7 +6827,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-parking?style=solid /// auto, car, deny, disabled, garage, meter - static const IconData solidBanParking = IconDataSolid(0xf616); + static const IconData solidBanParking = IconData(0xf616, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle-slash for icon [solidBanParking] @Deprecated('Use "solidBanParking" instead.') @@ -6837,7 +6837,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-parking?style=regular /// auto, car, deny, disabled, garage, meter - static const IconData banParking = IconDataRegular(0xf616); + static const IconData banParking = IconData(0xf616, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle-slash for icon [banParking] @Deprecated('Use "banParking" instead.') @@ -6847,7 +6847,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-parking?style=light /// auto, car, deny, disabled, garage, meter - static const IconData lightBanParking = IconDataLight(0xf616); + static const IconData lightBanParking = IconData(0xf616, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle-slash for icon [lightBanParking] @Deprecated('Use "lightBanParking" instead.') @@ -6857,7 +6857,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-parking?style=thin /// auto, car, deny, disabled, garage, meter - static const IconData thinBanParking = IconDataThin(0xf616); + static const IconData thinBanParking = IconData(0xf616, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle-slash for icon [thinBanParking] @Deprecated('Use "thinBanParking" instead.') @@ -6867,7 +6867,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-smoking?style=solid /// ban, cancel, deny, disabled, forbidden, no, no smoking, non-smoking, not, prohibited, smoking - static const IconData solidBanSmoking = IconDataSolid(0xf54d); + static const IconData solidBanSmoking = IconData(0xf54d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias smoking-ban for icon [solidBanSmoking] @Deprecated('Use "solidBanSmoking" instead.') @@ -6877,7 +6877,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-smoking?style=regular /// ban, cancel, deny, disabled, forbidden, no, no smoking, non-smoking, not, prohibited, smoking - static const IconData banSmoking = IconDataRegular(0xf54d); + static const IconData banSmoking = IconData(0xf54d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias smoking-ban for icon [banSmoking] @Deprecated('Use "banSmoking" instead.') @@ -6887,7 +6887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-smoking?style=light /// ban, cancel, deny, disabled, forbidden, no, no smoking, non-smoking, not, prohibited, smoking - static const IconData lightBanSmoking = IconDataLight(0xf54d); + static const IconData lightBanSmoking = IconData(0xf54d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias smoking-ban for icon [lightBanSmoking] @Deprecated('Use "lightBanSmoking" instead.') @@ -6897,7 +6897,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ban-smoking?style=thin /// ban, cancel, deny, disabled, forbidden, no, no smoking, non-smoking, not, prohibited, smoking - static const IconData thinBanSmoking = IconDataThin(0xf54d); + static const IconData thinBanSmoking = IconData(0xf54d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias smoking-ban for icon [thinBanSmoking] @Deprecated('Use "thinBanSmoking" instead.') @@ -6907,31 +6907,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/banana?style=solid /// banana, fruit, peel, plantain, potassium - static const IconData solidBanana = IconDataSolid(0xe2e5); + static const IconData solidBanana = IconData(0xe2e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Banana icon /// /// https://fontawesome.com/icons/banana?style=regular /// banana, fruit, peel, plantain, potassium - static const IconData banana = IconDataRegular(0xe2e5); + static const IconData banana = IconData(0xe2e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Banana icon /// /// https://fontawesome.com/icons/banana?style=light /// banana, fruit, peel, plantain, potassium - static const IconData lightBanana = IconDataLight(0xe2e5); + static const IconData lightBanana = IconData(0xe2e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Banana icon /// /// https://fontawesome.com/icons/banana?style=thin /// banana, fruit, peel, plantain, potassium - static const IconData thinBanana = IconDataThin(0xe2e5); + static const IconData thinBanana = IconData(0xe2e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bandage icon /// /// https://fontawesome.com/icons/bandage?style=solid /// adhesive bandage, bandage, boo boo, first aid, modify, ouch - static const IconData solidBandage = IconDataSolid(0xf462); + static const IconData solidBandage = IconData(0xf462, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias band-aid for icon [solidBandage] @Deprecated('Use "solidBandage" instead.') @@ -6941,7 +6941,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bandage?style=regular /// adhesive bandage, bandage, boo boo, first aid, modify, ouch - static const IconData bandage = IconDataRegular(0xf462); + static const IconData bandage = IconData(0xf462, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias band-aid for icon [bandage] @Deprecated('Use "bandage" instead.') @@ -6951,7 +6951,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bandage?style=light /// adhesive bandage, bandage, boo boo, first aid, modify, ouch - static const IconData lightBandage = IconDataLight(0xf462); + static const IconData lightBandage = IconData(0xf462, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias band-aid for icon [lightBandage] @Deprecated('Use "lightBandage" instead.') @@ -6961,7 +6961,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bandage?style=thin /// adhesive bandage, bandage, boo boo, first aid, modify, ouch - static const IconData thinBandage = IconDataThin(0xf462); + static const IconData thinBandage = IconData(0xf462, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias band-aid for icon [thinBandage] @Deprecated('Use "thinBandage" instead.') @@ -6970,133 +6970,133 @@ class FontAwesomeIcons { /// Brands Bandcamp icon /// /// https://fontawesome.com/icons/bandcamp?style=brands - static const IconData bandcamp = IconDataBrands(0xf2d5); + static const IconData bandcamp = IconData(0xf2d5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bangladeshi Taka Sign icon /// /// https://fontawesome.com/icons/bangladeshi-taka-sign?style=solid /// bdt, currency, tk - static const IconData solidBangladeshiTakaSign = IconDataSolid(0xe2e6); + static const IconData solidBangladeshiTakaSign = IconData(0xe2e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bangladeshi Taka Sign icon /// /// https://fontawesome.com/icons/bangladeshi-taka-sign?style=regular /// bdt, currency, tk - static const IconData bangladeshiTakaSign = IconDataRegular(0xe2e6); + static const IconData bangladeshiTakaSign = IconData(0xe2e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bangladeshi Taka Sign icon /// /// https://fontawesome.com/icons/bangladeshi-taka-sign?style=light /// bdt, currency, tk - static const IconData lightBangladeshiTakaSign = IconDataLight(0xe2e6); + static const IconData lightBangladeshiTakaSign = IconData(0xe2e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bangladeshi Taka Sign icon /// /// https://fontawesome.com/icons/bangladeshi-taka-sign?style=thin /// bdt, currency, tk - static const IconData thinBangladeshiTakaSign = IconDataThin(0xe2e6); + static const IconData thinBangladeshiTakaSign = IconData(0xe2e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Banjo icon /// /// https://fontawesome.com/icons/banjo?style=solid /// banjo, bluegrass, folk, guitar, instrument, jazz, music, stringed - static const IconData solidBanjo = IconDataSolid(0xf8a3); + static const IconData solidBanjo = IconData(0xf8a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Banjo icon /// /// https://fontawesome.com/icons/banjo?style=regular /// banjo, bluegrass, folk, guitar, instrument, jazz, music, stringed - static const IconData banjo = IconDataRegular(0xf8a3); + static const IconData banjo = IconData(0xf8a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Banjo icon /// /// https://fontawesome.com/icons/banjo?style=light /// banjo, bluegrass, folk, guitar, instrument, jazz, music, stringed - static const IconData lightBanjo = IconDataLight(0xf8a3); + static const IconData lightBanjo = IconData(0xf8a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Banjo icon /// /// https://fontawesome.com/icons/banjo?style=thin /// banjo, bluegrass, folk, guitar, instrument, jazz, music, stringed - static const IconData thinBanjo = IconDataThin(0xf8a3); + static const IconData thinBanjo = IconData(0xf8a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Barcode icon /// /// https://fontawesome.com/icons/barcode?style=solid /// info, laser, price, scan, upc - static const IconData solidBarcode = IconDataSolid(0xf02a); + static const IconData solidBarcode = IconData(0xf02a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Barcode icon /// /// https://fontawesome.com/icons/barcode?style=regular /// info, laser, price, scan, upc - static const IconData barcode = IconDataRegular(0xf02a); + static const IconData barcode = IconData(0xf02a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Barcode icon /// /// https://fontawesome.com/icons/barcode?style=light /// info, laser, price, scan, upc - static const IconData lightBarcode = IconDataLight(0xf02a); + static const IconData lightBarcode = IconData(0xf02a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Barcode icon /// /// https://fontawesome.com/icons/barcode?style=thin /// info, laser, price, scan, upc - static const IconData thinBarcode = IconDataThin(0xf02a); + static const IconData thinBarcode = IconData(0xf02a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Barcode Read icon /// /// https://fontawesome.com/icons/barcode-read?style=solid /// info, laser, price, scan, upc - static const IconData solidBarcodeRead = IconDataSolid(0xf464); + static const IconData solidBarcodeRead = IconData(0xf464, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Barcode Read icon /// /// https://fontawesome.com/icons/barcode-read?style=regular /// info, laser, price, scan, upc - static const IconData barcodeRead = IconDataRegular(0xf464); + static const IconData barcodeRead = IconData(0xf464, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Barcode Read icon /// /// https://fontawesome.com/icons/barcode-read?style=light /// info, laser, price, scan, upc - static const IconData lightBarcodeRead = IconDataLight(0xf464); + static const IconData lightBarcodeRead = IconData(0xf464, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Barcode Read icon /// /// https://fontawesome.com/icons/barcode-read?style=thin /// info, laser, price, scan, upc - static const IconData thinBarcodeRead = IconDataThin(0xf464); + static const IconData thinBarcodeRead = IconData(0xf464, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Barcode Scan icon /// /// https://fontawesome.com/icons/barcode-scan?style=solid /// info, laser, price, scan, upc - static const IconData solidBarcodeScan = IconDataSolid(0xf465); + static const IconData solidBarcodeScan = IconData(0xf465, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Barcode Scan icon /// /// https://fontawesome.com/icons/barcode-scan?style=regular /// info, laser, price, scan, upc - static const IconData barcodeScan = IconDataRegular(0xf465); + static const IconData barcodeScan = IconData(0xf465, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Barcode Scan icon /// /// https://fontawesome.com/icons/barcode-scan?style=light /// info, laser, price, scan, upc - static const IconData lightBarcodeScan = IconDataLight(0xf465); + static const IconData lightBarcodeScan = IconData(0xf465, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Barcode Scan icon /// /// https://fontawesome.com/icons/barcode-scan?style=thin /// info, laser, price, scan, upc - static const IconData thinBarcodeScan = IconDataThin(0xf465); + static const IconData thinBarcodeScan = IconData(0xf465, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bars icon /// /// https://fontawesome.com/icons/bars?style=solid /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData solidBars = IconDataSolid(0xf0c9); + static const IconData solidBars = IconData(0xf0c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias navicon for icon [solidBars] @Deprecated('Use "solidBars" instead.') @@ -7106,7 +7106,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars?style=regular /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData bars = IconDataRegular(0xf0c9); + static const IconData bars = IconData(0xf0c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias navicon for icon [bars] @Deprecated('Use "bars" instead.') @@ -7116,7 +7116,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars?style=light /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData lightBars = IconDataLight(0xf0c9); + static const IconData lightBars = IconData(0xf0c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias navicon for icon [lightBars] @Deprecated('Use "lightBars" instead.') @@ -7126,7 +7126,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars?style=thin /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData thinBars = IconDataThin(0xf0c9); + static const IconData thinBars = IconData(0xf0c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias navicon for icon [thinBars] @Deprecated('Use "thinBars" instead.') @@ -7136,31 +7136,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-filter?style=solid /// list, menu, sort - static const IconData solidBarsFilter = IconDataSolid(0xe0ad); + static const IconData solidBarsFilter = IconData(0xe0ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bars Filter icon /// /// https://fontawesome.com/icons/bars-filter?style=regular /// list, menu, sort - static const IconData barsFilter = IconDataRegular(0xe0ad); + static const IconData barsFilter = IconData(0xe0ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bars Filter icon /// /// https://fontawesome.com/icons/bars-filter?style=light /// list, menu, sort - static const IconData lightBarsFilter = IconDataLight(0xe0ad); + static const IconData lightBarsFilter = IconData(0xe0ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bars Filter icon /// /// https://fontawesome.com/icons/bars-filter?style=thin /// list, menu, sort - static const IconData thinBarsFilter = IconDataThin(0xe0ad); + static const IconData thinBarsFilter = IconData(0xe0ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bars Progress icon /// /// https://fontawesome.com/icons/bars-progress?style=solid /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData solidBarsProgress = IconDataSolid(0xf828); + static const IconData solidBarsProgress = IconData(0xf828, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tasks-alt for icon [solidBarsProgress] @Deprecated('Use "solidBarsProgress" instead.') @@ -7170,7 +7170,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-progress?style=regular /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData barsProgress = IconDataRegular(0xf828); + static const IconData barsProgress = IconData(0xf828, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tasks-alt for icon [barsProgress] @Deprecated('Use "barsProgress" instead.') @@ -7180,7 +7180,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-progress?style=light /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData lightBarsProgress = IconDataLight(0xf828); + static const IconData lightBarsProgress = IconData(0xf828, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tasks-alt for icon [lightBarsProgress] @Deprecated('Use "lightBarsProgress" instead.') @@ -7190,7 +7190,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-progress?style=thin /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData thinBarsProgress = IconDataThin(0xf828); + static const IconData thinBarsProgress = IconData(0xf828, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tasks-alt for icon [thinBarsProgress] @Deprecated('Use "thinBarsProgress" instead.') @@ -7200,31 +7200,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-sort?style=solid /// list, menu, sort - static const IconData solidBarsSort = IconDataSolid(0xe0ae); + static const IconData solidBarsSort = IconData(0xe0ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bars Sort icon /// /// https://fontawesome.com/icons/bars-sort?style=regular /// list, menu, sort - static const IconData barsSort = IconDataRegular(0xe0ae); + static const IconData barsSort = IconData(0xe0ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bars Sort icon /// /// https://fontawesome.com/icons/bars-sort?style=light /// list, menu, sort - static const IconData lightBarsSort = IconDataLight(0xe0ae); + static const IconData lightBarsSort = IconData(0xe0ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bars Sort icon /// /// https://fontawesome.com/icons/bars-sort?style=thin /// list, menu, sort - static const IconData thinBarsSort = IconDataThin(0xe0ae); + static const IconData thinBarsSort = IconData(0xe0ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bars Staggered icon /// /// https://fontawesome.com/icons/bars-staggered?style=solid /// flow, list, timeline - static const IconData solidBarsStaggered = IconDataSolid(0xf550); + static const IconData solidBarsStaggered = IconData(0xf550, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias reorder for icon [solidBarsStaggered] @Deprecated('Use "solidBarsStaggered" instead.') @@ -7238,7 +7238,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-staggered?style=regular /// flow, list, timeline - static const IconData barsStaggered = IconDataRegular(0xf550); + static const IconData barsStaggered = IconData(0xf550, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias reorder for icon [barsStaggered] @Deprecated('Use "barsStaggered" instead.') @@ -7252,7 +7252,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-staggered?style=light /// flow, list, timeline - static const IconData lightBarsStaggered = IconDataLight(0xf550); + static const IconData lightBarsStaggered = IconData(0xf550, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias reorder for icon [lightBarsStaggered] @Deprecated('Use "lightBarsStaggered" instead.') @@ -7266,7 +7266,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bars-staggered?style=thin /// flow, list, timeline - static const IconData thinBarsStaggered = IconDataThin(0xf550); + static const IconData thinBarsStaggered = IconData(0xf550, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias reorder for icon [thinBarsStaggered] @Deprecated('Use "thinBarsStaggered" instead.') @@ -7280,7 +7280,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baseball?style=solid /// ball, baseball, foul, glove, hardball, league, leather, mlb, softball, sport, underarm - static const IconData solidBaseball = IconDataSolid(0xf433); + static const IconData solidBaseball = IconData(0xf433, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias baseball-ball for icon [solidBaseball] @Deprecated('Use "solidBaseball" instead.') @@ -7290,7 +7290,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baseball?style=regular /// ball, baseball, foul, glove, hardball, league, leather, mlb, softball, sport, underarm - static const IconData baseball = IconDataRegular(0xf433); + static const IconData baseball = IconData(0xf433, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias baseball-ball for icon [baseball] @Deprecated('Use "baseball" instead.') @@ -7300,7 +7300,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baseball?style=light /// ball, baseball, foul, glove, hardball, league, leather, mlb, softball, sport, underarm - static const IconData lightBaseball = IconDataLight(0xf433); + static const IconData lightBaseball = IconData(0xf433, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias baseball-ball for icon [lightBaseball] @Deprecated('Use "lightBaseball" instead.') @@ -7310,7 +7310,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baseball?style=thin /// ball, baseball, foul, glove, hardball, league, leather, mlb, softball, sport, underarm - static const IconData thinBaseball = IconDataThin(0xf433); + static const IconData thinBaseball = IconData(0xf433, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias baseball-ball for icon [thinBaseball] @Deprecated('Use "thinBaseball" instead.') @@ -7320,31 +7320,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/baseball-bat-ball?style=solid /// bat, league, mlb, slugger, softball, sport - static const IconData solidBaseballBatBall = IconDataSolid(0xf432); + static const IconData solidBaseballBatBall = IconData(0xf432, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Baseball Bat Ball icon /// /// https://fontawesome.com/icons/baseball-bat-ball?style=regular /// bat, league, mlb, slugger, softball, sport - static const IconData baseballBatBall = IconDataRegular(0xf432); + static const IconData baseballBatBall = IconData(0xf432, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Baseball Bat Ball icon /// /// https://fontawesome.com/icons/baseball-bat-ball?style=light /// bat, league, mlb, slugger, softball, sport - static const IconData lightBaseballBatBall = IconDataLight(0xf432); + static const IconData lightBaseballBatBall = IconData(0xf432, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Baseball Bat Ball icon /// /// https://fontawesome.com/icons/baseball-bat-ball?style=thin /// bat, league, mlb, slugger, softball, sport - static const IconData thinBaseballBatBall = IconDataThin(0xf432); + static const IconData thinBaseballBatBall = IconData(0xf432, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Basket Shopping icon /// /// https://fontawesome.com/icons/basket-shopping?style=solid /// buy, checkout, grocery, payment, purchase - static const IconData solidBasketShopping = IconDataSolid(0xf291); + static const IconData solidBasketShopping = IconData(0xf291, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket for icon [solidBasketShopping] @Deprecated('Use "solidBasketShopping" instead.') @@ -7354,7 +7354,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping?style=regular /// buy, checkout, grocery, payment, purchase - static const IconData basketShopping = IconDataRegular(0xf291); + static const IconData basketShopping = IconData(0xf291, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket for icon [basketShopping] @Deprecated('Use "basketShopping" instead.') @@ -7364,7 +7364,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping?style=light /// buy, checkout, grocery, payment, purchase - static const IconData lightBasketShopping = IconDataLight(0xf291); + static const IconData lightBasketShopping = IconData(0xf291, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket for icon [lightBasketShopping] @Deprecated('Use "lightBasketShopping" instead.') @@ -7374,7 +7374,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping?style=thin /// buy, checkout, grocery, payment, purchase - static const IconData thinBasketShopping = IconDataThin(0xf291); + static const IconData thinBasketShopping = IconData(0xf291, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket for icon [thinBasketShopping] @Deprecated('Use "thinBasketShopping" instead.') @@ -7384,55 +7384,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping-minus?style=solid /// checkout, grocery, payment, purchase, remove, buy - static const IconData solidBasketShoppingMinus = IconDataSolid(0xe652); + static const IconData solidBasketShoppingMinus = IconData(0xe652, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Basket Shopping Minus icon /// /// https://fontawesome.com/icons/basket-shopping-minus?style=regular /// checkout, grocery, payment, purchase, remove, buy - static const IconData basketShoppingMinus = IconDataRegular(0xe652); + static const IconData basketShoppingMinus = IconData(0xe652, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Basket Shopping Minus icon /// /// https://fontawesome.com/icons/basket-shopping-minus?style=light /// checkout, grocery, payment, purchase, remove, buy - static const IconData lightBasketShoppingMinus = IconDataLight(0xe652); + static const IconData lightBasketShoppingMinus = IconData(0xe652, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Basket Shopping Minus icon /// /// https://fontawesome.com/icons/basket-shopping-minus?style=thin /// checkout, grocery, payment, purchase, remove, buy - static const IconData thinBasketShoppingMinus = IconDataThin(0xe652); + static const IconData thinBasketShoppingMinus = IconData(0xe652, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Basket Shopping Plus icon /// /// https://fontawesome.com/icons/basket-shopping-plus?style=solid /// add, checkout, grocery, payment, purchase, buy - static const IconData solidBasketShoppingPlus = IconDataSolid(0xe653); + static const IconData solidBasketShoppingPlus = IconData(0xe653, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Basket Shopping Plus icon /// /// https://fontawesome.com/icons/basket-shopping-plus?style=regular /// add, checkout, grocery, payment, purchase, buy - static const IconData basketShoppingPlus = IconDataRegular(0xe653); + static const IconData basketShoppingPlus = IconData(0xe653, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Basket Shopping Plus icon /// /// https://fontawesome.com/icons/basket-shopping-plus?style=light /// add, checkout, grocery, payment, purchase, buy - static const IconData lightBasketShoppingPlus = IconDataLight(0xe653); + static const IconData lightBasketShoppingPlus = IconData(0xe653, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Basket Shopping Plus icon /// /// https://fontawesome.com/icons/basket-shopping-plus?style=thin /// add, checkout, grocery, payment, purchase, buy - static const IconData thinBasketShoppingPlus = IconDataThin(0xe653); + static const IconData thinBasketShoppingPlus = IconData(0xe653, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Basket Shopping Simple icon /// /// https://fontawesome.com/icons/basket-shopping-simple?style=solid /// cart, checkout, grocery, shopping - static const IconData solidBasketShoppingSimple = IconDataSolid(0xe0af); + static const IconData solidBasketShoppingSimple = IconData(0xe0af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket-alt for icon [solidBasketShoppingSimple] @Deprecated('Use "solidBasketShoppingSimple" instead.') @@ -7442,7 +7442,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping-simple?style=regular /// cart, checkout, grocery, shopping - static const IconData basketShoppingSimple = IconDataRegular(0xe0af); + static const IconData basketShoppingSimple = IconData(0xe0af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket-alt for icon [basketShoppingSimple] @Deprecated('Use "basketShoppingSimple" instead.') @@ -7452,7 +7452,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping-simple?style=light /// cart, checkout, grocery, shopping - static const IconData lightBasketShoppingSimple = IconDataLight(0xe0af); + static const IconData lightBasketShoppingSimple = IconData(0xe0af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket-alt for icon [lightBasketShoppingSimple] @Deprecated('Use "lightBasketShoppingSimple" instead.') @@ -7462,7 +7462,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basket-shopping-simple?style=thin /// cart, checkout, grocery, shopping - static const IconData thinBasketShoppingSimple = IconDataThin(0xe0af); + static const IconData thinBasketShoppingSimple = IconData(0xe0af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shopping-basket-alt for icon [thinBasketShoppingSimple] @Deprecated('Use "thinBasketShoppingSimple" instead.') @@ -7472,7 +7472,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basketball?style=solid /// ball, basketball, dribble, dunk, hoop, nba - static const IconData solidBasketball = IconDataSolid(0xf434); + static const IconData solidBasketball = IconData(0xf434, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias basketball-ball for icon [solidBasketball] @Deprecated('Use "solidBasketball" instead.') @@ -7482,7 +7482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basketball?style=regular /// ball, basketball, dribble, dunk, hoop, nba - static const IconData basketball = IconDataRegular(0xf434); + static const IconData basketball = IconData(0xf434, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias basketball-ball for icon [basketball] @Deprecated('Use "basketball" instead.') @@ -7492,7 +7492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basketball?style=light /// ball, basketball, dribble, dunk, hoop, nba - static const IconData lightBasketball = IconDataLight(0xf434); + static const IconData lightBasketball = IconData(0xf434, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias basketball-ball for icon [lightBasketball] @Deprecated('Use "lightBasketball" instead.') @@ -7502,7 +7502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basketball?style=thin /// ball, basketball, dribble, dunk, hoop, nba - static const IconData thinBasketball = IconDataThin(0xf434); + static const IconData thinBasketball = IconData(0xf434, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias basketball-ball for icon [thinBasketball] @Deprecated('Use "thinBasketball" instead.') @@ -7512,55 +7512,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/basketball-hoop?style=solid /// backboard, dunk, hoop, nba - static const IconData solidBasketballHoop = IconDataSolid(0xf435); + static const IconData solidBasketballHoop = IconData(0xf435, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Basketball Hoop icon /// /// https://fontawesome.com/icons/basketball-hoop?style=regular /// backboard, dunk, hoop, nba - static const IconData basketballHoop = IconDataRegular(0xf435); + static const IconData basketballHoop = IconData(0xf435, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Basketball Hoop icon /// /// https://fontawesome.com/icons/basketball-hoop?style=light /// backboard, dunk, hoop, nba - static const IconData lightBasketballHoop = IconDataLight(0xf435); + static const IconData lightBasketballHoop = IconData(0xf435, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Basketball Hoop icon /// /// https://fontawesome.com/icons/basketball-hoop?style=thin /// backboard, dunk, hoop, nba - static const IconData thinBasketballHoop = IconDataThin(0xf435); + static const IconData thinBasketballHoop = IconData(0xf435, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bat icon /// /// https://fontawesome.com/icons/bat?style=solid /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData solidBat = IconDataSolid(0xf6b5); + static const IconData solidBat = IconData(0xf6b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bat icon /// /// https://fontawesome.com/icons/bat?style=regular /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData bat = IconDataRegular(0xf6b5); + static const IconData bat = IconData(0xf6b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bat icon /// /// https://fontawesome.com/icons/bat?style=light /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData lightBat = IconDataLight(0xf6b5); + static const IconData lightBat = IconData(0xf6b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bat icon /// /// https://fontawesome.com/icons/bat?style=thin /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData thinBat = IconDataThin(0xf6b5); + static const IconData thinBat = IconData(0xf6b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bath icon /// /// https://fontawesome.com/icons/bath?style=solid /// bath, bathtub, clean, shower, tub, wash - static const IconData solidBath = IconDataSolid(0xf2cd); + static const IconData solidBath = IconData(0xf2cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bathtub for icon [solidBath] @Deprecated('Use "solidBath" instead.') @@ -7570,7 +7570,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bath?style=regular /// bath, bathtub, clean, shower, tub, wash - static const IconData bath = IconDataRegular(0xf2cd); + static const IconData bath = IconData(0xf2cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bathtub for icon [bath] @Deprecated('Use "bath" instead.') @@ -7580,7 +7580,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bath?style=light /// bath, bathtub, clean, shower, tub, wash - static const IconData lightBath = IconDataLight(0xf2cd); + static const IconData lightBath = IconData(0xf2cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bathtub for icon [lightBath] @Deprecated('Use "lightBath" instead.') @@ -7590,7 +7590,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bath?style=thin /// bath, bathtub, clean, shower, tub, wash - static const IconData thinBath = IconDataThin(0xf2cd); + static const IconData thinBath = IconData(0xf2cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bathtub for icon [thinBath] @Deprecated('Use "thinBath" instead.') @@ -7600,31 +7600,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-bolt?style=solid /// charge, power, status - static const IconData solidBatteryBolt = IconDataSolid(0xf376); + static const IconData solidBatteryBolt = IconData(0xf376, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Battery Bolt icon /// /// https://fontawesome.com/icons/battery-bolt?style=regular /// charge, power, status - static const IconData batteryBolt = IconDataRegular(0xf376); + static const IconData batteryBolt = IconData(0xf376, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Battery Bolt icon /// /// https://fontawesome.com/icons/battery-bolt?style=light /// charge, power, status - static const IconData lightBatteryBolt = IconDataLight(0xf376); + static const IconData lightBatteryBolt = IconData(0xf376, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Battery Bolt icon /// /// https://fontawesome.com/icons/battery-bolt?style=thin /// charge, power, status - static const IconData thinBatteryBolt = IconDataThin(0xf376); + static const IconData thinBatteryBolt = IconData(0xf376, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Battery Empty icon /// /// https://fontawesome.com/icons/battery-empty?style=solid /// charge, dead, power, status - static const IconData solidBatteryEmpty = IconDataSolid(0xf244); + static const IconData solidBatteryEmpty = IconData(0xf244, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-0 for icon [solidBatteryEmpty] @Deprecated('Use "solidBatteryEmpty" instead.') @@ -7634,7 +7634,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-empty?style=regular /// charge, dead, power, status - static const IconData batteryEmpty = IconDataRegular(0xf244); + static const IconData batteryEmpty = IconData(0xf244, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-0 for icon [batteryEmpty] @Deprecated('Use "batteryEmpty" instead.') @@ -7644,7 +7644,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-empty?style=light /// charge, dead, power, status - static const IconData lightBatteryEmpty = IconDataLight(0xf244); + static const IconData lightBatteryEmpty = IconData(0xf244, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-0 for icon [lightBatteryEmpty] @Deprecated('Use "lightBatteryEmpty" instead.') @@ -7654,7 +7654,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-empty?style=thin /// charge, dead, power, status - static const IconData thinBatteryEmpty = IconDataThin(0xf244); + static const IconData thinBatteryEmpty = IconData(0xf244, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-0 for icon [thinBatteryEmpty] @Deprecated('Use "thinBatteryEmpty" instead.') @@ -7664,31 +7664,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-exclamation?style=solid /// charge, empty, failed, power - static const IconData solidBatteryExclamation = IconDataSolid(0xe0b0); + static const IconData solidBatteryExclamation = IconData(0xe0b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Battery Exclamation icon /// /// https://fontawesome.com/icons/battery-exclamation?style=regular /// charge, empty, failed, power - static const IconData batteryExclamation = IconDataRegular(0xe0b0); + static const IconData batteryExclamation = IconData(0xe0b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Battery Exclamation icon /// /// https://fontawesome.com/icons/battery-exclamation?style=light /// charge, empty, failed, power - static const IconData lightBatteryExclamation = IconDataLight(0xe0b0); + static const IconData lightBatteryExclamation = IconData(0xe0b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Battery Exclamation icon /// /// https://fontawesome.com/icons/battery-exclamation?style=thin /// charge, empty, failed, power - static const IconData thinBatteryExclamation = IconDataThin(0xe0b0); + static const IconData thinBatteryExclamation = IconData(0xe0b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Battery Full icon /// /// https://fontawesome.com/icons/battery-full?style=solid /// batter, battery, charge, power, status - static const IconData solidBatteryFull = IconDataSolid(0xf240); + static const IconData solidBatteryFull = IconData(0xf240, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery for icon [solidBatteryFull] @Deprecated('Use "solidBatteryFull" instead.') @@ -7702,7 +7702,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-full?style=regular /// batter, battery, charge, power, status - static const IconData batteryFull = IconDataRegular(0xf240); + static const IconData batteryFull = IconData(0xf240, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery for icon [batteryFull] @Deprecated('Use "batteryFull" instead.') @@ -7716,7 +7716,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-full?style=light /// batter, battery, charge, power, status - static const IconData lightBatteryFull = IconDataLight(0xf240); + static const IconData lightBatteryFull = IconData(0xf240, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery for icon [lightBatteryFull] @Deprecated('Use "lightBatteryFull" instead.') @@ -7730,7 +7730,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-full?style=thin /// batter, battery, charge, power, status - static const IconData thinBatteryFull = IconDataThin(0xf240); + static const IconData thinBatteryFull = IconData(0xf240, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery for icon [thinBatteryFull] @Deprecated('Use "thinBatteryFull" instead.') @@ -7744,7 +7744,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-half?style=solid /// charge, power, status - static const IconData solidBatteryHalf = IconDataSolid(0xf242); + static const IconData solidBatteryHalf = IconData(0xf242, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-3 for icon [solidBatteryHalf] @Deprecated('Use "solidBatteryHalf" instead.') @@ -7754,7 +7754,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-half?style=regular /// charge, power, status - static const IconData batteryHalf = IconDataRegular(0xf242); + static const IconData batteryHalf = IconData(0xf242, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-3 for icon [batteryHalf] @Deprecated('Use "batteryHalf" instead.') @@ -7764,7 +7764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-half?style=light /// charge, power, status - static const IconData lightBatteryHalf = IconDataLight(0xf242); + static const IconData lightBatteryHalf = IconData(0xf242, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-3 for icon [lightBatteryHalf] @Deprecated('Use "lightBatteryHalf" instead.') @@ -7774,7 +7774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-half?style=thin /// charge, power, status - static const IconData thinBatteryHalf = IconDataThin(0xf242); + static const IconData thinBatteryHalf = IconData(0xf242, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-3 for icon [thinBatteryHalf] @Deprecated('Use "thinBatteryHalf" instead.') @@ -7784,7 +7784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-low?style=solid /// charge, empty, power - static const IconData solidBatteryLow = IconDataSolid(0xe0b1); + static const IconData solidBatteryLow = IconData(0xe0b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-1 for icon [solidBatteryLow] @Deprecated('Use "solidBatteryLow" instead.') @@ -7794,7 +7794,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-low?style=regular /// charge, empty, power - static const IconData batteryLow = IconDataRegular(0xe0b1); + static const IconData batteryLow = IconData(0xe0b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-1 for icon [batteryLow] @Deprecated('Use "batteryLow" instead.') @@ -7804,7 +7804,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-low?style=light /// charge, empty, power - static const IconData lightBatteryLow = IconDataLight(0xe0b1); + static const IconData lightBatteryLow = IconData(0xe0b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-1 for icon [lightBatteryLow] @Deprecated('Use "lightBatteryLow" instead.') @@ -7814,7 +7814,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-low?style=thin /// charge, empty, power - static const IconData thinBatteryLow = IconDataThin(0xe0b1); + static const IconData thinBatteryLow = IconData(0xe0b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-1 for icon [thinBatteryLow] @Deprecated('Use "thinBatteryLow" instead.') @@ -7824,7 +7824,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-quarter?style=solid /// charge, low, power, status - static const IconData solidBatteryQuarter = IconDataSolid(0xf243); + static const IconData solidBatteryQuarter = IconData(0xf243, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-2 for icon [solidBatteryQuarter] @Deprecated('Use "solidBatteryQuarter" instead.') @@ -7834,7 +7834,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-quarter?style=regular /// charge, low, power, status - static const IconData batteryQuarter = IconDataRegular(0xf243); + static const IconData batteryQuarter = IconData(0xf243, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-2 for icon [batteryQuarter] @Deprecated('Use "batteryQuarter" instead.') @@ -7844,7 +7844,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-quarter?style=light /// charge, low, power, status - static const IconData lightBatteryQuarter = IconDataLight(0xf243); + static const IconData lightBatteryQuarter = IconData(0xf243, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-2 for icon [lightBatteryQuarter] @Deprecated('Use "lightBatteryQuarter" instead.') @@ -7854,7 +7854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-quarter?style=thin /// charge, low, power, status - static const IconData thinBatteryQuarter = IconDataThin(0xf243); + static const IconData thinBatteryQuarter = IconData(0xf243, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-2 for icon [thinBatteryQuarter] @Deprecated('Use "thinBatteryQuarter" instead.') @@ -7864,31 +7864,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-slash?style=solid /// charge, dead, disabled, power, status - static const IconData solidBatterySlash = IconDataSolid(0xf377); + static const IconData solidBatterySlash = IconData(0xf377, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Battery Slash icon /// /// https://fontawesome.com/icons/battery-slash?style=regular /// charge, dead, disabled, power, status - static const IconData batterySlash = IconDataRegular(0xf377); + static const IconData batterySlash = IconData(0xf377, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Battery Slash icon /// /// https://fontawesome.com/icons/battery-slash?style=light /// charge, dead, disabled, power, status - static const IconData lightBatterySlash = IconDataLight(0xf377); + static const IconData lightBatterySlash = IconData(0xf377, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Battery Slash icon /// /// https://fontawesome.com/icons/battery-slash?style=thin /// charge, dead, disabled, power, status - static const IconData thinBatterySlash = IconDataThin(0xf377); + static const IconData thinBatterySlash = IconData(0xf377, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Battery Three Quarters icon /// /// https://fontawesome.com/icons/battery-three-quarters?style=solid /// charge, power, status - static const IconData solidBatteryThreeQuarters = IconDataSolid(0xf241); + static const IconData solidBatteryThreeQuarters = IconData(0xf241, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-4 for icon [solidBatteryThreeQuarters] @Deprecated('Use "solidBatteryThreeQuarters" instead.') @@ -7898,7 +7898,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-three-quarters?style=regular /// charge, power, status - static const IconData batteryThreeQuarters = IconDataRegular(0xf241); + static const IconData batteryThreeQuarters = IconData(0xf241, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-4 for icon [batteryThreeQuarters] @Deprecated('Use "batteryThreeQuarters" instead.') @@ -7908,7 +7908,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-three-quarters?style=light /// charge, power, status - static const IconData lightBatteryThreeQuarters = IconDataLight(0xf241); + static const IconData lightBatteryThreeQuarters = IconData(0xf241, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-4 for icon [lightBatteryThreeQuarters] @Deprecated('Use "lightBatteryThreeQuarters" instead.') @@ -7918,7 +7918,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/battery-three-quarters?style=thin /// charge, power, status - static const IconData thinBatteryThreeQuarters = IconDataThin(0xf241); + static const IconData thinBatteryThreeQuarters = IconData(0xf241, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-4 for icon [thinBatteryThreeQuarters] @Deprecated('Use "thinBatteryThreeQuarters" instead.') @@ -7927,85 +7927,85 @@ class FontAwesomeIcons { /// Brands Battle.net icon /// /// https://fontawesome.com/icons/battle-net?style=brands - static const IconData battleNet = IconDataBrands(0xf835); + static const IconData battleNet = IconData(0xf835, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bed icon /// /// https://fontawesome.com/icons/bed?style=solid /// hospital, hotel, lodging, mattress, patient, person in bed, rest, sleep, travel, uer - static const IconData solidBed = IconDataSolid(0xf236); + static const IconData solidBed = IconData(0xf236, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bed icon /// /// https://fontawesome.com/icons/bed?style=regular /// hospital, hotel, lodging, mattress, patient, person in bed, rest, sleep, travel, uer - static const IconData bed = IconDataRegular(0xf236); + static const IconData bed = IconData(0xf236, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bed icon /// /// https://fontawesome.com/icons/bed?style=light /// hospital, hotel, lodging, mattress, patient, person in bed, rest, sleep, travel, uer - static const IconData lightBed = IconDataLight(0xf236); + static const IconData lightBed = IconData(0xf236, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bed icon /// /// https://fontawesome.com/icons/bed?style=thin /// hospital, hotel, lodging, mattress, patient, person in bed, rest, sleep, travel, uer - static const IconData thinBed = IconDataThin(0xf236); + static const IconData thinBed = IconData(0xf236, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bed Bunk icon /// /// https://fontawesome.com/icons/bed-bunk?style=solid /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData solidBedBunk = IconDataSolid(0xf8f8); + static const IconData solidBedBunk = IconData(0xf8f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bed Bunk icon /// /// https://fontawesome.com/icons/bed-bunk?style=regular /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData bedBunk = IconDataRegular(0xf8f8); + static const IconData bedBunk = IconData(0xf8f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bed Bunk icon /// /// https://fontawesome.com/icons/bed-bunk?style=light /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData lightBedBunk = IconDataLight(0xf8f8); + static const IconData lightBedBunk = IconData(0xf8f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bed Bunk icon /// /// https://fontawesome.com/icons/bed-bunk?style=thin /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData thinBedBunk = IconDataThin(0xf8f8); + static const IconData thinBedBunk = IconData(0xf8f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bed Empty icon /// /// https://fontawesome.com/icons/bed-empty?style=solid /// bed, hotel, lodging, mattress, rest, sleep, travel - static const IconData solidBedEmpty = IconDataSolid(0xf8f9); + static const IconData solidBedEmpty = IconData(0xf8f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bed Empty icon /// /// https://fontawesome.com/icons/bed-empty?style=regular /// bed, hotel, lodging, mattress, rest, sleep, travel - static const IconData bedEmpty = IconDataRegular(0xf8f9); + static const IconData bedEmpty = IconData(0xf8f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bed Empty icon /// /// https://fontawesome.com/icons/bed-empty?style=light /// bed, hotel, lodging, mattress, rest, sleep, travel - static const IconData lightBedEmpty = IconDataLight(0xf8f9); + static const IconData lightBedEmpty = IconData(0xf8f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bed Empty icon /// /// https://fontawesome.com/icons/bed-empty?style=thin /// bed, hotel, lodging, mattress, rest, sleep, travel - static const IconData thinBedEmpty = IconDataThin(0xf8f9); + static const IconData thinBedEmpty = IconData(0xf8f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bed Front icon /// /// https://fontawesome.com/icons/bed-front?style=solid /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData solidBedFront = IconDataSolid(0xf8f7); + static const IconData solidBedFront = IconData(0xf8f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bed-alt for icon [solidBedFront] @Deprecated('Use "solidBedFront" instead.') @@ -8015,7 +8015,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-front?style=regular /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData bedFront = IconDataRegular(0xf8f7); + static const IconData bedFront = IconData(0xf8f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bed-alt for icon [bedFront] @Deprecated('Use "bedFront" instead.') @@ -8025,7 +8025,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-front?style=light /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData lightBedFront = IconDataLight(0xf8f7); + static const IconData lightBedFront = IconData(0xf8f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bed-alt for icon [lightBedFront] @Deprecated('Use "lightBedFront" instead.') @@ -8035,7 +8035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-front?style=thin /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData thinBedFront = IconDataThin(0xf8f7); + static const IconData thinBedFront = IconData(0xf8f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bed-alt for icon [thinBedFront] @Deprecated('Use "thinBedFront" instead.') @@ -8045,7 +8045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-pulse?style=solid /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData solidBedPulse = IconDataSolid(0xf487); + static const IconData solidBedPulse = IconData(0xf487, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias procedures for icon [solidBedPulse] @Deprecated('Use "solidBedPulse" instead.') @@ -8055,7 +8055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-pulse?style=regular /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData bedPulse = IconDataRegular(0xf487); + static const IconData bedPulse = IconData(0xf487, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias procedures for icon [bedPulse] @Deprecated('Use "bedPulse" instead.') @@ -8065,7 +8065,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-pulse?style=light /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData lightBedPulse = IconDataLight(0xf487); + static const IconData lightBedPulse = IconData(0xf487, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias procedures for icon [lightBedPulse] @Deprecated('Use "lightBedPulse" instead.') @@ -8075,7 +8075,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bed-pulse?style=thin /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData thinBedPulse = IconDataThin(0xf487); + static const IconData thinBedPulse = IconData(0xf487, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias procedures for icon [thinBedPulse] @Deprecated('Use "thinBedPulse" instead.') @@ -8085,31 +8085,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bee?style=solid /// bee, hive, honey, honeybee, insect - static const IconData solidBee = IconDataSolid(0xe0b2); + static const IconData solidBee = IconData(0xe0b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bee icon /// /// https://fontawesome.com/icons/bee?style=regular /// bee, hive, honey, honeybee, insect - static const IconData bee = IconDataRegular(0xe0b2); + static const IconData bee = IconData(0xe0b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bee icon /// /// https://fontawesome.com/icons/bee?style=light /// bee, hive, honey, honeybee, insect - static const IconData lightBee = IconDataLight(0xe0b2); + static const IconData lightBee = IconData(0xe0b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bee icon /// /// https://fontawesome.com/icons/bee?style=thin /// bee, hive, honey, honeybee, insect - static const IconData thinBee = IconDataThin(0xe0b2); + static const IconData thinBee = IconData(0xe0b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Beer Mug icon /// /// https://fontawesome.com/icons/beer-mug?style=solid /// alcohol, ale, bar, beer, beer mug, beverage, brew, brewery, drink, foam, lager, mug, stein - static const IconData solidBeerMug = IconDataSolid(0xe0b3); + static const IconData solidBeerMug = IconData(0xe0b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias beer-foam for icon [solidBeerMug] @Deprecated('Use "solidBeerMug" instead.') @@ -8119,7 +8119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug?style=regular /// alcohol, ale, bar, beer, beer mug, beverage, brew, brewery, drink, foam, lager, mug, stein - static const IconData beerMug = IconDataRegular(0xe0b3); + static const IconData beerMug = IconData(0xe0b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias beer-foam for icon [beerMug] @Deprecated('Use "beerMug" instead.') @@ -8129,7 +8129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug?style=light /// alcohol, ale, bar, beer, beer mug, beverage, brew, brewery, drink, foam, lager, mug, stein - static const IconData lightBeerMug = IconDataLight(0xe0b3); + static const IconData lightBeerMug = IconData(0xe0b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias beer-foam for icon [lightBeerMug] @Deprecated('Use "lightBeerMug" instead.') @@ -8139,7 +8139,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug?style=thin /// alcohol, ale, bar, beer, beer mug, beverage, brew, brewery, drink, foam, lager, mug, stein - static const IconData thinBeerMug = IconDataThin(0xe0b3); + static const IconData thinBeerMug = IconData(0xe0b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias beer-foam for icon [thinBeerMug] @Deprecated('Use "thinBeerMug" instead.') @@ -8149,7 +8149,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug-empty?style=solid /// alcohol, ale, bar, beverage, brew, brewery, drink, foam, lager, liquor, mug, stein - static const IconData solidBeerMugEmpty = IconDataSolid(0xf0fc); + static const IconData solidBeerMugEmpty = IconData(0xf0fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias beer for icon [solidBeerMugEmpty] @Deprecated('Use "solidBeerMugEmpty" instead.') @@ -8159,7 +8159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug-empty?style=regular /// alcohol, ale, bar, beverage, brew, brewery, drink, foam, lager, liquor, mug, stein - static const IconData beerMugEmpty = IconDataRegular(0xf0fc); + static const IconData beerMugEmpty = IconData(0xf0fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias beer for icon [beerMugEmpty] @Deprecated('Use "beerMugEmpty" instead.') @@ -8169,7 +8169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug-empty?style=light /// alcohol, ale, bar, beverage, brew, brewery, drink, foam, lager, liquor, mug, stein - static const IconData lightBeerMugEmpty = IconDataLight(0xf0fc); + static const IconData lightBeerMugEmpty = IconData(0xf0fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias beer for icon [lightBeerMugEmpty] @Deprecated('Use "lightBeerMugEmpty" instead.') @@ -8179,7 +8179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/beer-mug-empty?style=thin /// alcohol, ale, bar, beverage, brew, brewery, drink, foam, lager, liquor, mug, stein - static const IconData thinBeerMugEmpty = IconDataThin(0xf0fc); + static const IconData thinBeerMugEmpty = IconData(0xf0fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias beer for icon [thinBeerMugEmpty] @Deprecated('Use "thinBeerMugEmpty" instead.') @@ -8188,37 +8188,37 @@ class FontAwesomeIcons { /// Brands Behance icon /// /// https://fontawesome.com/icons/behance?style=brands - static const IconData behance = IconDataBrands(0xf1b4); + static const IconData behance = IconData(0xf1b4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bell icon /// /// https://fontawesome.com/icons/bell?style=solid /// alarm, alert, bel, bell, chime, notification, reminder, request - static const IconData solidBell = IconDataSolid(0xf0f3); + static const IconData solidBell = IconData(0xf0f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell icon /// /// https://fontawesome.com/icons/bell?style=regular /// alarm, alert, bel, bell, chime, notification, reminder, request - static const IconData bell = IconDataRegular(0xf0f3); + static const IconData bell = IconData(0xf0f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell icon /// /// https://fontawesome.com/icons/bell?style=light /// alarm, alert, bel, bell, chime, notification, reminder, request - static const IconData lightBell = IconDataLight(0xf0f3); + static const IconData lightBell = IconData(0xf0f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell icon /// /// https://fontawesome.com/icons/bell?style=thin /// alarm, alert, bel, bell, chime, notification, reminder, request - static const IconData thinBell = IconDataThin(0xf0f3); + static const IconData thinBell = IconData(0xf0f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell Concierge icon /// /// https://fontawesome.com/icons/bell-concierge?style=solid /// attention, bell, bellhop, bellhop bell, hotel, receptionist, request, service, support - static const IconData solidBellConcierge = IconDataSolid(0xf562); + static const IconData solidBellConcierge = IconData(0xf562, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias concierge-bell for icon [solidBellConcierge] @Deprecated('Use "solidBellConcierge" instead.') @@ -8228,7 +8228,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bell-concierge?style=regular /// attention, bell, bellhop, bellhop bell, hotel, receptionist, request, service, support - static const IconData bellConcierge = IconDataRegular(0xf562); + static const IconData bellConcierge = IconData(0xf562, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias concierge-bell for icon [bellConcierge] @Deprecated('Use "bellConcierge" instead.') @@ -8238,7 +8238,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bell-concierge?style=light /// attention, bell, bellhop, bellhop bell, hotel, receptionist, request, service, support - static const IconData lightBellConcierge = IconDataLight(0xf562); + static const IconData lightBellConcierge = IconData(0xf562, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias concierge-bell for icon [lightBellConcierge] @Deprecated('Use "lightBellConcierge" instead.') @@ -8248,7 +8248,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bell-concierge?style=thin /// attention, bell, bellhop, bellhop bell, hotel, receptionist, request, service, support - static const IconData thinBellConcierge = IconDataThin(0xf562); + static const IconData thinBellConcierge = IconData(0xf562, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias concierge-bell for icon [thinBellConcierge] @Deprecated('Use "thinBellConcierge" instead.') @@ -8258,788 +8258,788 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bell-exclamation?style=solid /// alarm, alert, attention, chime, failed, notification, reminder, request - static const IconData solidBellExclamation = IconDataSolid(0xf848); + static const IconData solidBellExclamation = IconData(0xf848, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell Exclamation icon /// /// https://fontawesome.com/icons/bell-exclamation?style=regular /// alarm, alert, attention, chime, failed, notification, reminder, request - static const IconData bellExclamation = IconDataRegular(0xf848); + static const IconData bellExclamation = IconData(0xf848, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell Exclamation icon /// /// https://fontawesome.com/icons/bell-exclamation?style=light /// alarm, alert, attention, chime, failed, notification, reminder, request - static const IconData lightBellExclamation = IconDataLight(0xf848); + static const IconData lightBellExclamation = IconData(0xf848, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell Exclamation icon /// /// https://fontawesome.com/icons/bell-exclamation?style=thin /// alarm, alert, attention, chime, failed, notification, reminder, request - static const IconData thinBellExclamation = IconDataThin(0xf848); + static const IconData thinBellExclamation = IconData(0xf848, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell On icon /// /// https://fontawesome.com/icons/bell-on?style=solid /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData solidBellOn = IconDataSolid(0xf8fa); + static const IconData solidBellOn = IconData(0xf8fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell On icon /// /// https://fontawesome.com/icons/bell-on?style=regular /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData bellOn = IconDataRegular(0xf8fa); + static const IconData bellOn = IconData(0xf8fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell On icon /// /// https://fontawesome.com/icons/bell-on?style=light /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData lightBellOn = IconDataLight(0xf8fa); + static const IconData lightBellOn = IconData(0xf8fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell On icon /// /// https://fontawesome.com/icons/bell-on?style=thin /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData thinBellOn = IconDataThin(0xf8fa); + static const IconData thinBellOn = IconData(0xf8fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell Plus icon /// /// https://fontawesome.com/icons/bell-plus?style=solid /// alarm, alert, chime, notification, reminder, request - static const IconData solidBellPlus = IconDataSolid(0xf849); + static const IconData solidBellPlus = IconData(0xf849, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell Plus icon /// /// https://fontawesome.com/icons/bell-plus?style=regular /// alarm, alert, chime, notification, reminder, request - static const IconData bellPlus = IconDataRegular(0xf849); + static const IconData bellPlus = IconData(0xf849, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell Plus icon /// /// https://fontawesome.com/icons/bell-plus?style=light /// alarm, alert, chime, notification, reminder, request - static const IconData lightBellPlus = IconDataLight(0xf849); + static const IconData lightBellPlus = IconData(0xf849, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell Plus icon /// /// https://fontawesome.com/icons/bell-plus?style=thin /// alarm, alert, chime, notification, reminder, request - static const IconData thinBellPlus = IconDataThin(0xf849); + static const IconData thinBellPlus = IconData(0xf849, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell Ring icon /// /// https://fontawesome.com/icons/bell-ring?style=solid /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData solidBellRing = IconDataSolid(0xe62c); + static const IconData solidBellRing = IconData(0xe62c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell Ring icon /// /// https://fontawesome.com/icons/bell-ring?style=regular /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData bellRing = IconDataRegular(0xe62c); + static const IconData bellRing = IconData(0xe62c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell Ring icon /// /// https://fontawesome.com/icons/bell-ring?style=light /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData lightBellRing = IconDataLight(0xe62c); + static const IconData lightBellRing = IconData(0xe62c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell Ring icon /// /// https://fontawesome.com/icons/bell-ring?style=thin /// Ringing Bell, alarm, alert, chime, notification, reminder, request - static const IconData thinBellRing = IconDataThin(0xe62c); + static const IconData thinBellRing = IconData(0xe62c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell School icon /// /// https://fontawesome.com/icons/bell-school?style=solid /// alert, chime, class, notification, reminder - static const IconData solidBellSchool = IconDataSolid(0xf5d5); + static const IconData solidBellSchool = IconData(0xf5d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell School icon /// /// https://fontawesome.com/icons/bell-school?style=regular /// alert, chime, class, notification, reminder - static const IconData bellSchool = IconDataRegular(0xf5d5); + static const IconData bellSchool = IconData(0xf5d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell School icon /// /// https://fontawesome.com/icons/bell-school?style=light /// alert, chime, class, notification, reminder - static const IconData lightBellSchool = IconDataLight(0xf5d5); + static const IconData lightBellSchool = IconData(0xf5d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell School icon /// /// https://fontawesome.com/icons/bell-school?style=thin /// alert, chime, class, notification, reminder - static const IconData thinBellSchool = IconDataThin(0xf5d5); + static const IconData thinBellSchool = IconData(0xf5d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell School Slash icon /// /// https://fontawesome.com/icons/bell-school-slash?style=solid /// alert, cancel, class, disabled, notification, off, reminder - static const IconData solidBellSchoolSlash = IconDataSolid(0xf5d6); + static const IconData solidBellSchoolSlash = IconData(0xf5d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell School Slash icon /// /// https://fontawesome.com/icons/bell-school-slash?style=regular /// alert, cancel, class, disabled, notification, off, reminder - static const IconData bellSchoolSlash = IconDataRegular(0xf5d6); + static const IconData bellSchoolSlash = IconData(0xf5d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell School Slash icon /// /// https://fontawesome.com/icons/bell-school-slash?style=light /// alert, cancel, class, disabled, notification, off, reminder - static const IconData lightBellSchoolSlash = IconDataLight(0xf5d6); + static const IconData lightBellSchoolSlash = IconData(0xf5d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell School Slash icon /// /// https://fontawesome.com/icons/bell-school-slash?style=thin /// alert, cancel, class, disabled, notification, off, reminder - static const IconData thinBellSchoolSlash = IconDataThin(0xf5d6); + static const IconData thinBellSchoolSlash = IconData(0xf5d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bell Slash icon /// /// https://fontawesome.com/icons/bell-slash?style=solid /// alert, bell, bell with slash, cancel, disabled, forbidden, mute, notification, off, quiet, reminder, silent - static const IconData solidBellSlash = IconDataSolid(0xf1f6); + static const IconData solidBellSlash = IconData(0xf1f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bell Slash icon /// /// https://fontawesome.com/icons/bell-slash?style=regular /// alert, bell, bell with slash, cancel, disabled, forbidden, mute, notification, off, quiet, reminder, silent - static const IconData bellSlash = IconDataRegular(0xf1f6); + static const IconData bellSlash = IconData(0xf1f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bell Slash icon /// /// https://fontawesome.com/icons/bell-slash?style=light /// alert, bell, bell with slash, cancel, disabled, forbidden, mute, notification, off, quiet, reminder, silent - static const IconData lightBellSlash = IconDataLight(0xf1f6); + static const IconData lightBellSlash = IconData(0xf1f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bell Slash icon /// /// https://fontawesome.com/icons/bell-slash?style=thin /// alert, bell, bell with slash, cancel, disabled, forbidden, mute, notification, off, quiet, reminder, silent - static const IconData thinBellSlash = IconDataThin(0xf1f6); + static const IconData thinBellSlash = IconData(0xf1f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bells icon /// /// https://fontawesome.com/icons/bells?style=solid /// alert, christmas, holiday, notification, reminder, request, xmas - static const IconData solidBells = IconDataSolid(0xf77f); + static const IconData solidBells = IconData(0xf77f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bells icon /// /// https://fontawesome.com/icons/bells?style=regular /// alert, christmas, holiday, notification, reminder, request, xmas - static const IconData bells = IconDataRegular(0xf77f); + static const IconData bells = IconData(0xf77f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bells icon /// /// https://fontawesome.com/icons/bells?style=light /// alert, christmas, holiday, notification, reminder, request, xmas - static const IconData lightBells = IconDataLight(0xf77f); + static const IconData lightBells = IconData(0xf77f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bells icon /// /// https://fontawesome.com/icons/bells?style=thin /// alert, christmas, holiday, notification, reminder, request, xmas - static const IconData thinBells = IconDataThin(0xf77f); + static const IconData thinBells = IconData(0xf77f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bench Tree icon /// /// https://fontawesome.com/icons/bench-tree?style=solid /// bench, outside, park, picnic, tree - static const IconData solidBenchTree = IconDataSolid(0xe2e7); + static const IconData solidBenchTree = IconData(0xe2e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bench Tree icon /// /// https://fontawesome.com/icons/bench-tree?style=regular /// bench, outside, park, picnic, tree - static const IconData benchTree = IconDataRegular(0xe2e7); + static const IconData benchTree = IconData(0xe2e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bench Tree icon /// /// https://fontawesome.com/icons/bench-tree?style=light /// bench, outside, park, picnic, tree - static const IconData lightBenchTree = IconDataLight(0xe2e7); + static const IconData lightBenchTree = IconData(0xe2e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bench Tree icon /// /// https://fontawesome.com/icons/bench-tree?style=thin /// bench, outside, park, picnic, tree - static const IconData thinBenchTree = IconDataThin(0xe2e7); + static const IconData thinBenchTree = IconData(0xe2e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bezier Curve icon /// /// https://fontawesome.com/icons/bezier-curve?style=solid /// curves, illustrator, lines, path, vector - static const IconData solidBezierCurve = IconDataSolid(0xf55b); + static const IconData solidBezierCurve = IconData(0xf55b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bezier Curve icon /// /// https://fontawesome.com/icons/bezier-curve?style=regular /// curves, illustrator, lines, path, vector - static const IconData bezierCurve = IconDataRegular(0xf55b); + static const IconData bezierCurve = IconData(0xf55b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bezier Curve icon /// /// https://fontawesome.com/icons/bezier-curve?style=light /// curves, illustrator, lines, path, vector - static const IconData lightBezierCurve = IconDataLight(0xf55b); + static const IconData lightBezierCurve = IconData(0xf55b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bezier Curve icon /// /// https://fontawesome.com/icons/bezier-curve?style=thin /// curves, illustrator, lines, path, vector - static const IconData thinBezierCurve = IconDataThin(0xf55b); + static const IconData thinBezierCurve = IconData(0xf55b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bicycle icon /// /// https://fontawesome.com/icons/bicycle?style=solid /// bicycle, bike, gears, pedal, transportation, vehicle - static const IconData solidBicycle = IconDataSolid(0xf206); + static const IconData solidBicycle = IconData(0xf206, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bicycle icon /// /// https://fontawesome.com/icons/bicycle?style=regular /// bicycle, bike, gears, pedal, transportation, vehicle - static const IconData bicycle = IconDataRegular(0xf206); + static const IconData bicycle = IconData(0xf206, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bicycle icon /// /// https://fontawesome.com/icons/bicycle?style=light /// bicycle, bike, gears, pedal, transportation, vehicle - static const IconData lightBicycle = IconDataLight(0xf206); + static const IconData lightBicycle = IconData(0xf206, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bicycle icon /// /// https://fontawesome.com/icons/bicycle?style=thin /// bicycle, bike, gears, pedal, transportation, vehicle - static const IconData thinBicycle = IconDataThin(0xf206); + static const IconData thinBicycle = IconData(0xf206, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bilibili icon /// /// https://fontawesome.com/icons/bilibili?style=brands - static const IconData bilibili = IconDataBrands(0xe3d9); + static const IconData bilibili = IconData(0xe3d9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Billboard icon /// /// https://fontawesome.com/icons/billboard?style=solid /// advertising, promotion, sign, signboard, slogan poster - static const IconData solidBillboard = IconDataSolid(0xe5cd); + static const IconData solidBillboard = IconData(0xe5cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Billboard icon /// /// https://fontawesome.com/icons/billboard?style=regular /// advertising, promotion, sign, signboard, slogan poster - static const IconData billboard = IconDataRegular(0xe5cd); + static const IconData billboard = IconData(0xe5cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Billboard icon /// /// https://fontawesome.com/icons/billboard?style=light /// advertising, promotion, sign, signboard, slogan poster - static const IconData lightBillboard = IconDataLight(0xe5cd); + static const IconData lightBillboard = IconData(0xe5cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Billboard icon /// /// https://fontawesome.com/icons/billboard?style=thin /// advertising, promotion, sign, signboard, slogan poster - static const IconData thinBillboard = IconDataThin(0xe5cd); + static const IconData thinBillboard = IconData(0xe5cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands BIMobject icon /// /// https://fontawesome.com/icons/bimobject?style=brands - static const IconData bimobject = IconDataBrands(0xf378); + static const IconData bimobject = IconData(0xf378, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bin Bottles icon /// /// https://fontawesome.com/icons/bin-bottles?style=solid /// collect, jug, recycle, plastics - static const IconData solidBinBottles = IconDataSolid(0xe5f5); + static const IconData solidBinBottles = IconData(0xe5f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bin Bottles icon /// /// https://fontawesome.com/icons/bin-bottles?style=regular /// collect, jug, recycle, plastics - static const IconData binBottles = IconDataRegular(0xe5f5); + static const IconData binBottles = IconData(0xe5f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bin Bottles icon /// /// https://fontawesome.com/icons/bin-bottles?style=light /// collect, jug, recycle, plastics - static const IconData lightBinBottles = IconDataLight(0xe5f5); + static const IconData lightBinBottles = IconData(0xe5f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bin Bottles icon /// /// https://fontawesome.com/icons/bin-bottles?style=thin /// collect, jug, recycle, plastics - static const IconData thinBinBottles = IconDataThin(0xe5f5); + static const IconData thinBinBottles = IconData(0xe5f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bin Bottles Recycle icon /// /// https://fontawesome.com/icons/bin-bottles-recycle?style=solid /// jug, recycle, collect, plastics - static const IconData solidBinBottlesRecycle = IconDataSolid(0xe5f6); + static const IconData solidBinBottlesRecycle = IconData(0xe5f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bin Bottles Recycle icon /// /// https://fontawesome.com/icons/bin-bottles-recycle?style=regular /// jug, recycle, collect, plastics - static const IconData binBottlesRecycle = IconDataRegular(0xe5f6); + static const IconData binBottlesRecycle = IconData(0xe5f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bin Bottles Recycle icon /// /// https://fontawesome.com/icons/bin-bottles-recycle?style=light /// jug, recycle, collect, plastics - static const IconData lightBinBottlesRecycle = IconDataLight(0xe5f6); + static const IconData lightBinBottlesRecycle = IconData(0xe5f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bin Bottles Recycle icon /// /// https://fontawesome.com/icons/bin-bottles-recycle?style=thin /// jug, recycle, collect, plastics - static const IconData thinBinBottlesRecycle = IconDataThin(0xe5f6); + static const IconData thinBinBottlesRecycle = IconData(0xe5f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bin Recycle icon /// /// https://fontawesome.com/icons/bin-recycle?style=solid /// jug, recycle, collect, plastics - static const IconData solidBinRecycle = IconDataSolid(0xe5f7); + static const IconData solidBinRecycle = IconData(0xe5f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bin Recycle icon /// /// https://fontawesome.com/icons/bin-recycle?style=regular /// jug, recycle, collect, plastics - static const IconData binRecycle = IconDataRegular(0xe5f7); + static const IconData binRecycle = IconData(0xe5f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bin Recycle icon /// /// https://fontawesome.com/icons/bin-recycle?style=light /// jug, recycle, collect, plastics - static const IconData lightBinRecycle = IconDataLight(0xe5f7); + static const IconData lightBinRecycle = IconData(0xe5f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bin Recycle icon /// /// https://fontawesome.com/icons/bin-recycle?style=thin /// jug, recycle, collect, plastics - static const IconData thinBinRecycle = IconDataThin(0xe5f7); + static const IconData thinBinRecycle = IconData(0xe5f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Binary icon /// /// https://fontawesome.com/icons/binary?style=solid /// binary, data, programming - static const IconData solidBinary = IconDataSolid(0xe33b); + static const IconData solidBinary = IconData(0xe33b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Binary icon /// /// https://fontawesome.com/icons/binary?style=regular /// binary, data, programming - static const IconData binary = IconDataRegular(0xe33b); + static const IconData binary = IconData(0xe33b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Binary icon /// /// https://fontawesome.com/icons/binary?style=light /// binary, data, programming - static const IconData lightBinary = IconDataLight(0xe33b); + static const IconData lightBinary = IconData(0xe33b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Binary icon /// /// https://fontawesome.com/icons/binary?style=thin /// binary, data, programming - static const IconData thinBinary = IconDataThin(0xe33b); + static const IconData thinBinary = IconData(0xe33b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Binary Circle Check icon /// /// https://fontawesome.com/icons/binary-circle-check?style=solid /// accept, binary, check, crc, data, enable, encrypt, hash, not affected, ok, okay, programming, validate, working - static const IconData solidBinaryCircleCheck = IconDataSolid(0xe33c); + static const IconData solidBinaryCircleCheck = IconData(0xe33c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Binary Circle Check icon /// /// https://fontawesome.com/icons/binary-circle-check?style=regular /// accept, binary, check, crc, data, enable, encrypt, hash, not affected, ok, okay, programming, validate, working - static const IconData binaryCircleCheck = IconDataRegular(0xe33c); + static const IconData binaryCircleCheck = IconData(0xe33c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Binary Circle Check icon /// /// https://fontawesome.com/icons/binary-circle-check?style=light /// accept, binary, check, crc, data, enable, encrypt, hash, not affected, ok, okay, programming, validate, working - static const IconData lightBinaryCircleCheck = IconDataLight(0xe33c); + static const IconData lightBinaryCircleCheck = IconData(0xe33c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Binary Circle Check icon /// /// https://fontawesome.com/icons/binary-circle-check?style=thin /// accept, binary, check, crc, data, enable, encrypt, hash, not affected, ok, okay, programming, validate, working - static const IconData thinBinaryCircleCheck = IconDataThin(0xe33c); + static const IconData thinBinaryCircleCheck = IconData(0xe33c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Binary Lock icon /// /// https://fontawesome.com/icons/binary-lock?style=solid /// binary, data, encrypt, lock, padlock, privacy, programming - static const IconData solidBinaryLock = IconDataSolid(0xe33d); + static const IconData solidBinaryLock = IconData(0xe33d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Binary Lock icon /// /// https://fontawesome.com/icons/binary-lock?style=regular /// binary, data, encrypt, lock, padlock, privacy, programming - static const IconData binaryLock = IconDataRegular(0xe33d); + static const IconData binaryLock = IconData(0xe33d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Binary Lock icon /// /// https://fontawesome.com/icons/binary-lock?style=light /// binary, data, encrypt, lock, padlock, privacy, programming - static const IconData lightBinaryLock = IconDataLight(0xe33d); + static const IconData lightBinaryLock = IconData(0xe33d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Binary Lock icon /// /// https://fontawesome.com/icons/binary-lock?style=thin /// binary, data, encrypt, lock, padlock, privacy, programming - static const IconData thinBinaryLock = IconDataThin(0xe33d); + static const IconData thinBinaryLock = IconData(0xe33d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Binary Slash icon /// /// https://fontawesome.com/icons/binary-slash?style=solid /// binary, data, disabled, error, programming - static const IconData solidBinarySlash = IconDataSolid(0xe33e); + static const IconData solidBinarySlash = IconData(0xe33e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Binary Slash icon /// /// https://fontawesome.com/icons/binary-slash?style=regular /// binary, data, disabled, error, programming - static const IconData binarySlash = IconDataRegular(0xe33e); + static const IconData binarySlash = IconData(0xe33e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Binary Slash icon /// /// https://fontawesome.com/icons/binary-slash?style=light /// binary, data, disabled, error, programming - static const IconData lightBinarySlash = IconDataLight(0xe33e); + static const IconData lightBinarySlash = IconData(0xe33e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Binary Slash icon /// /// https://fontawesome.com/icons/binary-slash?style=thin /// binary, data, disabled, error, programming - static const IconData thinBinarySlash = IconDataThin(0xe33e); + static const IconData thinBinarySlash = IconData(0xe33e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Binoculars icon /// /// https://fontawesome.com/icons/binoculars?style=solid /// glasses, inspection, magnifier, magnify, scenic, spyglass, view - static const IconData solidBinoculars = IconDataSolid(0xf1e5); + static const IconData solidBinoculars = IconData(0xf1e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Binoculars icon /// /// https://fontawesome.com/icons/binoculars?style=regular /// glasses, inspection, magnifier, magnify, scenic, spyglass, view - static const IconData binoculars = IconDataRegular(0xf1e5); + static const IconData binoculars = IconData(0xf1e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Binoculars icon /// /// https://fontawesome.com/icons/binoculars?style=light /// glasses, inspection, magnifier, magnify, scenic, spyglass, view - static const IconData lightBinoculars = IconDataLight(0xf1e5); + static const IconData lightBinoculars = IconData(0xf1e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Binoculars icon /// /// https://fontawesome.com/icons/binoculars?style=thin /// glasses, inspection, magnifier, magnify, scenic, spyglass, view - static const IconData thinBinoculars = IconDataThin(0xf1e5); + static const IconData thinBinoculars = IconData(0xf1e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Biohazard icon /// /// https://fontawesome.com/icons/biohazard?style=solid /// biohazard, covid-19, danger, dangerous, epidemic, hazmat, medical, pandemic, radioactive, sign, toxic, waste, zombie - static const IconData solidBiohazard = IconDataSolid(0xf780); + static const IconData solidBiohazard = IconData(0xf780, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Biohazard icon /// /// https://fontawesome.com/icons/biohazard?style=regular /// biohazard, covid-19, danger, dangerous, epidemic, hazmat, medical, pandemic, radioactive, sign, toxic, waste, zombie - static const IconData biohazard = IconDataRegular(0xf780); + static const IconData biohazard = IconData(0xf780, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Biohazard icon /// /// https://fontawesome.com/icons/biohazard?style=light /// biohazard, covid-19, danger, dangerous, epidemic, hazmat, medical, pandemic, radioactive, sign, toxic, waste, zombie - static const IconData lightBiohazard = IconDataLight(0xf780); + static const IconData lightBiohazard = IconData(0xf780, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Biohazard icon /// /// https://fontawesome.com/icons/biohazard?style=thin /// biohazard, covid-19, danger, dangerous, epidemic, hazmat, medical, pandemic, radioactive, sign, toxic, waste, zombie - static const IconData thinBiohazard = IconDataThin(0xf780); + static const IconData thinBiohazard = IconData(0xf780, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bird icon /// /// https://fontawesome.com/icons/bird?style=solid /// avian, bird, feather, fowl, tweet, wing - static const IconData solidBird = IconDataSolid(0xe469); + static const IconData solidBird = IconData(0xe469, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bird icon /// /// https://fontawesome.com/icons/bird?style=regular /// avian, bird, feather, fowl, tweet, wing - static const IconData bird = IconDataRegular(0xe469); + static const IconData bird = IconData(0xe469, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bird icon /// /// https://fontawesome.com/icons/bird?style=light /// avian, bird, feather, fowl, tweet, wing - static const IconData lightBird = IconDataLight(0xe469); + static const IconData lightBird = IconData(0xe469, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bird icon /// /// https://fontawesome.com/icons/bird?style=thin /// avian, bird, feather, fowl, tweet, wing - static const IconData thinBird = IconDataThin(0xe469); + static const IconData thinBird = IconData(0xe469, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bitbucket icon /// /// https://fontawesome.com/icons/bitbucket?style=brands /// atlassian, bitbucket-square, git - static const IconData bitbucket = IconDataBrands(0xf171); + static const IconData bitbucket = IconData(0xf171, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Bitcoin icon /// /// https://fontawesome.com/icons/bitcoin?style=brands - static const IconData bitcoin = IconDataBrands(0xf379); + static const IconData bitcoin = IconData(0xf379, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bitcoin Sign icon /// /// https://fontawesome.com/icons/bitcoin-sign?style=solid /// Bitcoin Sign, currency - static const IconData solidBitcoinSign = IconDataSolid(0xe0b4); + static const IconData solidBitcoinSign = IconData(0xe0b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bitcoin Sign icon /// /// https://fontawesome.com/icons/bitcoin-sign?style=regular /// Bitcoin Sign, currency - static const IconData bitcoinSign = IconDataRegular(0xe0b4); + static const IconData bitcoinSign = IconData(0xe0b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bitcoin Sign icon /// /// https://fontawesome.com/icons/bitcoin-sign?style=light /// Bitcoin Sign, currency - static const IconData lightBitcoinSign = IconDataLight(0xe0b4); + static const IconData lightBitcoinSign = IconData(0xe0b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bitcoin Sign icon /// /// https://fontawesome.com/icons/bitcoin-sign?style=thin /// Bitcoin Sign, currency - static const IconData thinBitcoinSign = IconDataThin(0xe0b4); + static const IconData thinBitcoinSign = IconData(0xe0b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bity icon /// /// https://fontawesome.com/icons/bity?style=brands - static const IconData bity = IconDataBrands(0xf37a); + static const IconData bity = IconData(0xf37a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Font Awesome Black Tie icon /// /// https://fontawesome.com/icons/black-tie?style=brands /// administrator - static const IconData blackTie = IconDataBrands(0xf27e); + static const IconData blackTie = IconData(0xf27e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands BlackBerry icon /// /// https://fontawesome.com/icons/blackberry?style=brands - static const IconData blackberry = IconDataBrands(0xf37b); + static const IconData blackberry = IconData(0xf37b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Blanket icon /// /// https://fontawesome.com/icons/blanket?style=solid /// bed, cover, cozy, sleep, warm - static const IconData solidBlanket = IconDataSolid(0xf498); + static const IconData solidBlanket = IconData(0xf498, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blanket icon /// /// https://fontawesome.com/icons/blanket?style=regular /// bed, cover, cozy, sleep, warm - static const IconData blanket = IconDataRegular(0xf498); + static const IconData blanket = IconData(0xf498, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blanket icon /// /// https://fontawesome.com/icons/blanket?style=light /// bed, cover, cozy, sleep, warm - static const IconData lightBlanket = IconDataLight(0xf498); + static const IconData lightBlanket = IconData(0xf498, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blanket icon /// /// https://fontawesome.com/icons/blanket?style=thin /// bed, cover, cozy, sleep, warm - static const IconData thinBlanket = IconDataThin(0xf498); + static const IconData thinBlanket = IconData(0xf498, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blanket Fire icon /// /// https://fontawesome.com/icons/blanket-fire?style=solid /// fire, flammable, safety - static const IconData solidBlanketFire = IconDataSolid(0xe3da); + static const IconData solidBlanketFire = IconData(0xe3da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blanket Fire icon /// /// https://fontawesome.com/icons/blanket-fire?style=regular /// fire, flammable, safety - static const IconData blanketFire = IconDataRegular(0xe3da); + static const IconData blanketFire = IconData(0xe3da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blanket Fire icon /// /// https://fontawesome.com/icons/blanket-fire?style=light /// fire, flammable, safety - static const IconData lightBlanketFire = IconDataLight(0xe3da); + static const IconData lightBlanketFire = IconData(0xe3da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blanket Fire icon /// /// https://fontawesome.com/icons/blanket-fire?style=thin /// fire, flammable, safety - static const IconData thinBlanketFire = IconDataThin(0xe3da); + static const IconData thinBlanketFire = IconData(0xe3da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blender icon /// /// https://fontawesome.com/icons/blender?style=solid /// cocktail, milkshake, mixer, puree, smoothie - static const IconData solidBlender = IconDataSolid(0xf517); + static const IconData solidBlender = IconData(0xf517, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blender icon /// /// https://fontawesome.com/icons/blender?style=regular /// cocktail, milkshake, mixer, puree, smoothie - static const IconData blender = IconDataRegular(0xf517); + static const IconData blender = IconData(0xf517, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blender icon /// /// https://fontawesome.com/icons/blender?style=light /// cocktail, milkshake, mixer, puree, smoothie - static const IconData lightBlender = IconDataLight(0xf517); + static const IconData lightBlender = IconData(0xf517, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blender icon /// /// https://fontawesome.com/icons/blender?style=thin /// cocktail, milkshake, mixer, puree, smoothie - static const IconData thinBlender = IconDataThin(0xf517); + static const IconData thinBlender = IconData(0xf517, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blender Phone icon /// /// https://fontawesome.com/icons/blender-phone?style=solid /// appliance, cocktail, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData solidBlenderPhone = IconDataSolid(0xf6b6); + static const IconData solidBlenderPhone = IconData(0xf6b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blender Phone icon /// /// https://fontawesome.com/icons/blender-phone?style=regular /// appliance, cocktail, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData blenderPhone = IconDataRegular(0xf6b6); + static const IconData blenderPhone = IconData(0xf6b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blender Phone icon /// /// https://fontawesome.com/icons/blender-phone?style=light /// appliance, cocktail, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData lightBlenderPhone = IconDataLight(0xf6b6); + static const IconData lightBlenderPhone = IconData(0xf6b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blender Phone icon /// /// https://fontawesome.com/icons/blender-phone?style=thin /// appliance, cocktail, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData thinBlenderPhone = IconDataThin(0xf6b6); + static const IconData thinBlenderPhone = IconData(0xf6b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blinds icon /// /// https://fontawesome.com/icons/blinds?style=solid /// privacy, shutter, window - static const IconData solidBlinds = IconDataSolid(0xf8fb); + static const IconData solidBlinds = IconData(0xf8fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blinds icon /// /// https://fontawesome.com/icons/blinds?style=regular /// privacy, shutter, window - static const IconData blinds = IconDataRegular(0xf8fb); + static const IconData blinds = IconData(0xf8fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blinds icon /// /// https://fontawesome.com/icons/blinds?style=light /// privacy, shutter, window - static const IconData lightBlinds = IconDataLight(0xf8fb); + static const IconData lightBlinds = IconData(0xf8fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blinds icon /// /// https://fontawesome.com/icons/blinds?style=thin /// privacy, shutter, window - static const IconData thinBlinds = IconDataThin(0xf8fb); + static const IconData thinBlinds = IconData(0xf8fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blinds Open icon /// /// https://fontawesome.com/icons/blinds-open?style=solid /// privacy, shutter, window - static const IconData solidBlindsOpen = IconDataSolid(0xf8fc); + static const IconData solidBlindsOpen = IconData(0xf8fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blinds Open icon /// /// https://fontawesome.com/icons/blinds-open?style=regular /// privacy, shutter, window - static const IconData blindsOpen = IconDataRegular(0xf8fc); + static const IconData blindsOpen = IconData(0xf8fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blinds Open icon /// /// https://fontawesome.com/icons/blinds-open?style=light /// privacy, shutter, window - static const IconData lightBlindsOpen = IconDataLight(0xf8fc); + static const IconData lightBlindsOpen = IconData(0xf8fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blinds Open icon /// /// https://fontawesome.com/icons/blinds-open?style=thin /// privacy, shutter, window - static const IconData thinBlindsOpen = IconDataThin(0xf8fc); + static const IconData thinBlindsOpen = IconData(0xf8fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blinds Raised icon /// /// https://fontawesome.com/icons/blinds-raised?style=solid /// privacy, shutter, window - static const IconData solidBlindsRaised = IconDataSolid(0xf8fd); + static const IconData solidBlindsRaised = IconData(0xf8fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blinds Raised icon /// /// https://fontawesome.com/icons/blinds-raised?style=regular /// privacy, shutter, window - static const IconData blindsRaised = IconDataRegular(0xf8fd); + static const IconData blindsRaised = IconData(0xf8fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blinds Raised icon /// /// https://fontawesome.com/icons/blinds-raised?style=light /// privacy, shutter, window - static const IconData lightBlindsRaised = IconDataLight(0xf8fd); + static const IconData lightBlindsRaised = IconData(0xf8fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blinds Raised icon /// /// https://fontawesome.com/icons/blinds-raised?style=thin /// privacy, shutter, window - static const IconData thinBlindsRaised = IconDataThin(0xf8fd); + static const IconData thinBlindsRaised = IconData(0xf8fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Block icon /// /// https://fontawesome.com/icons/block?style=solid /// block, brick, empty, mystery, super mario - static const IconData solidBlock = IconDataSolid(0xe46a); + static const IconData solidBlock = IconData(0xe46a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Block icon /// /// https://fontawesome.com/icons/block?style=regular /// block, brick, empty, mystery, super mario - static const IconData block = IconDataRegular(0xe46a); + static const IconData block = IconData(0xe46a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Block icon /// /// https://fontawesome.com/icons/block?style=light /// block, brick, empty, mystery, super mario - static const IconData lightBlock = IconDataLight(0xe46a); + static const IconData lightBlock = IconData(0xe46a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Block icon /// /// https://fontawesome.com/icons/block?style=thin /// block, brick, empty, mystery, super mario - static const IconData thinBlock = IconDataThin(0xe46a); + static const IconData thinBlock = IconData(0xe46a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Block Brick icon /// /// https://fontawesome.com/icons/block-brick?style=solid /// block, brick, mortar, super mario, wall - static const IconData solidBlockBrick = IconDataSolid(0xe3db); + static const IconData solidBlockBrick = IconData(0xe3db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wall-brick for icon [solidBlockBrick] @Deprecated('Use "solidBlockBrick" instead.') @@ -9049,7 +9049,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick?style=regular /// block, brick, mortar, super mario, wall - static const IconData blockBrick = IconDataRegular(0xe3db); + static const IconData blockBrick = IconData(0xe3db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wall-brick for icon [blockBrick] @Deprecated('Use "blockBrick" instead.') @@ -9059,7 +9059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick?style=light /// block, brick, mortar, super mario, wall - static const IconData lightBlockBrick = IconDataLight(0xe3db); + static const IconData lightBlockBrick = IconData(0xe3db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wall-brick for icon [lightBlockBrick] @Deprecated('Use "lightBlockBrick" instead.') @@ -9069,7 +9069,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick?style=thin /// block, brick, mortar, super mario, wall - static const IconData thinBlockBrick = IconDataThin(0xe3db); + static const IconData thinBlockBrick = IconData(0xe3db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wall-brick for icon [thinBlockBrick] @Deprecated('Use "thinBlockBrick" instead.') @@ -9079,7 +9079,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick-fire?style=solid /// brick, fire, firewall, network, wall - static const IconData solidBlockBrickFire = IconDataSolid(0xe3dc); + static const IconData solidBlockBrickFire = IconData(0xe3dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias firewall for icon [solidBlockBrickFire] @Deprecated('Use "solidBlockBrickFire" instead.') @@ -9089,7 +9089,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick-fire?style=regular /// brick, fire, firewall, network, wall - static const IconData blockBrickFire = IconDataRegular(0xe3dc); + static const IconData blockBrickFire = IconData(0xe3dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias firewall for icon [blockBrickFire] @Deprecated('Use "blockBrickFire" instead.') @@ -9099,7 +9099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick-fire?style=light /// brick, fire, firewall, network, wall - static const IconData lightBlockBrickFire = IconDataLight(0xe3dc); + static const IconData lightBlockBrickFire = IconData(0xe3dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias firewall for icon [lightBlockBrickFire] @Deprecated('Use "lightBlockBrickFire" instead.') @@ -9109,7 +9109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-brick-fire?style=thin /// brick, fire, firewall, network, wall - static const IconData thinBlockBrickFire = IconDataThin(0xe3dc); + static const IconData thinBlockBrickFire = IconData(0xe3dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias firewall for icon [thinBlockBrickFire] @Deprecated('Use "thinBlockBrickFire" instead.') @@ -9119,172 +9119,172 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/block-question?style=solid /// block, brick, mystery, prize, question, super mario - static const IconData solidBlockQuestion = IconDataSolid(0xe3dd); + static const IconData solidBlockQuestion = IconData(0xe3dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Block Question icon /// /// https://fontawesome.com/icons/block-question?style=regular /// block, brick, mystery, prize, question, super mario - static const IconData blockQuestion = IconDataRegular(0xe3dd); + static const IconData blockQuestion = IconData(0xe3dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Block Question icon /// /// https://fontawesome.com/icons/block-question?style=light /// block, brick, mystery, prize, question, super mario - static const IconData lightBlockQuestion = IconDataLight(0xe3dd); + static const IconData lightBlockQuestion = IconData(0xe3dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Block Question icon /// /// https://fontawesome.com/icons/block-question?style=thin /// block, brick, mystery, prize, question, super mario - static const IconData thinBlockQuestion = IconDataThin(0xe3dd); + static const IconData thinBlockQuestion = IconData(0xe3dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Block Quote icon /// /// https://fontawesome.com/icons/block-quote?style=solid /// callout, indent, inset, quote - static const IconData solidBlockQuote = IconDataSolid(0xe0b5); + static const IconData solidBlockQuote = IconData(0xe0b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Block Quote icon /// /// https://fontawesome.com/icons/block-quote?style=regular /// callout, indent, inset, quote - static const IconData blockQuote = IconDataRegular(0xe0b5); + static const IconData blockQuote = IconData(0xe0b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Block Quote icon /// /// https://fontawesome.com/icons/block-quote?style=light /// callout, indent, inset, quote - static const IconData lightBlockQuote = IconDataLight(0xe0b5); + static const IconData lightBlockQuote = IconData(0xe0b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Block Quote icon /// /// https://fontawesome.com/icons/block-quote?style=thin /// callout, indent, inset, quote - static const IconData thinBlockQuote = IconDataThin(0xe0b5); + static const IconData thinBlockQuote = IconData(0xe0b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Blog icon /// /// https://fontawesome.com/icons/blog?style=solid /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData solidBlog = IconDataSolid(0xf781); + static const IconData solidBlog = IconData(0xf781, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blog icon /// /// https://fontawesome.com/icons/blog?style=regular /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData blog = IconDataRegular(0xf781); + static const IconData blog = IconData(0xf781, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blog icon /// /// https://fontawesome.com/icons/blog?style=light /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData lightBlog = IconDataLight(0xf781); + static const IconData lightBlog = IconData(0xf781, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blog icon /// /// https://fontawesome.com/icons/blog?style=thin /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData thinBlog = IconDataThin(0xf781); + static const IconData thinBlog = IconData(0xf781, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Blogger icon /// /// https://fontawesome.com/icons/blogger?style=brands - static const IconData blogger = IconDataBrands(0xf37c); + static const IconData blogger = IconData(0xf37c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Blogger B icon /// /// https://fontawesome.com/icons/blogger-b?style=brands - static const IconData bloggerB = IconDataBrands(0xf37d); + static const IconData bloggerB = IconData(0xf37d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Blueberries icon /// /// https://fontawesome.com/icons/blueberries?style=solid /// berry, bilberry, blue, blueberries, blueberry, juice - static const IconData solidBlueberries = IconDataSolid(0xe2e8); + static const IconData solidBlueberries = IconData(0xe2e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Blueberries icon /// /// https://fontawesome.com/icons/blueberries?style=regular /// berry, bilberry, blue, blueberries, blueberry, juice - static const IconData blueberries = IconDataRegular(0xe2e8); + static const IconData blueberries = IconData(0xe2e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Blueberries icon /// /// https://fontawesome.com/icons/blueberries?style=light /// berry, bilberry, blue, blueberries, blueberry, juice - static const IconData lightBlueberries = IconDataLight(0xe2e8); + static const IconData lightBlueberries = IconData(0xe2e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Blueberries icon /// /// https://fontawesome.com/icons/blueberries?style=thin /// berry, bilberry, blue, blueberries, blueberry, juice - static const IconData thinBlueberries = IconDataThin(0xe2e8); + static const IconData thinBlueberries = IconData(0xe2e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth?style=solid /// signal - static const IconData solidBluetooth = IconDataSolid(0xf293); + static const IconData solidBluetooth = IconData(0xf293, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth?style=regular /// signal - static const IconData bluetooth = IconDataRegular(0xf293); + static const IconData bluetooth = IconData(0xf293, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth?style=light /// signal - static const IconData lightBluetooth = IconDataLight(0xf293); + static const IconData lightBluetooth = IconData(0xf293, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth?style=thin /// signal - static const IconData thinBluetooth = IconDataThin(0xf293); + static const IconData thinBluetooth = IconData(0xf293, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth?style=brands /// signal - static const IconData brandsBluetooth = IconDataBrands(0xf293); + static const IconData brandsBluetooth = IconData(0xf293, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Bluetooth icon /// /// https://fontawesome.com/icons/bluetooth-b?style=brands - static const IconData bluetoothB = IconDataBrands(0xf294); + static const IconData bluetoothB = IconData(0xf294, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bold icon /// /// https://fontawesome.com/icons/bold?style=solid /// emphasis, format, text - static const IconData solidBold = IconDataSolid(0xf032); + static const IconData solidBold = IconData(0xf032, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bold icon /// /// https://fontawesome.com/icons/bold?style=regular /// emphasis, format, text - static const IconData bold = IconDataRegular(0xf032); + static const IconData bold = IconData(0xf032, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bold icon /// /// https://fontawesome.com/icons/bold?style=light /// emphasis, format, text - static const IconData lightBold = IconDataLight(0xf032); + static const IconData lightBold = IconData(0xf032, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bold icon /// /// https://fontawesome.com/icons/bold?style=thin /// emphasis, format, text - static const IconData thinBold = IconDataThin(0xf032); + static const IconData thinBold = IconData(0xf032, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bolt icon /// /// https://fontawesome.com/icons/bolt?style=solid /// charge, danger, electric, electricity, flash, high voltage, lightning, voltage, weather, zap - static const IconData solidBolt = IconDataSolid(0xf0e7); + static const IconData solidBolt = IconData(0xf0e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias zap for icon [solidBolt] @Deprecated('Use "solidBolt" instead.') @@ -9294,7 +9294,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bolt?style=regular /// charge, danger, electric, electricity, flash, high voltage, lightning, voltage, weather, zap - static const IconData bolt = IconDataRegular(0xf0e7); + static const IconData bolt = IconData(0xf0e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias zap for icon [bolt] @Deprecated('Use "bolt" instead.') @@ -9304,7 +9304,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bolt?style=light /// charge, danger, electric, electricity, flash, high voltage, lightning, voltage, weather, zap - static const IconData lightBolt = IconDataLight(0xf0e7); + static const IconData lightBolt = IconData(0xf0e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias zap for icon [lightBolt] @Deprecated('Use "lightBolt" instead.') @@ -9314,7 +9314,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bolt?style=thin /// charge, danger, electric, electricity, flash, high voltage, lightning, voltage, weather, zap - static const IconData thinBolt = IconDataThin(0xf0e7); + static const IconData thinBolt = IconData(0xf0e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias zap for icon [thinBolt] @Deprecated('Use "thinBolt" instead.') @@ -9324,247 +9324,247 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bolt-auto?style=solid /// automatic, flash - static const IconData solidBoltAuto = IconDataSolid(0xe0b6); + static const IconData solidBoltAuto = IconData(0xe0b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bolt Auto icon /// /// https://fontawesome.com/icons/bolt-auto?style=regular /// automatic, flash - static const IconData boltAuto = IconDataRegular(0xe0b6); + static const IconData boltAuto = IconData(0xe0b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bolt Auto icon /// /// https://fontawesome.com/icons/bolt-auto?style=light /// automatic, flash - static const IconData lightBoltAuto = IconDataLight(0xe0b6); + static const IconData lightBoltAuto = IconData(0xe0b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bolt Auto icon /// /// https://fontawesome.com/icons/bolt-auto?style=thin /// automatic, flash - static const IconData thinBoltAuto = IconDataThin(0xe0b6); + static const IconData thinBoltAuto = IconData(0xe0b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bolt Lightning icon /// /// https://fontawesome.com/icons/bolt-lightning?style=solid /// electricity, flash, lightning, weather, zap - static const IconData solidBoltLightning = IconDataSolid(0xe0b7); + static const IconData solidBoltLightning = IconData(0xe0b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bolt Lightning icon /// /// https://fontawesome.com/icons/bolt-lightning?style=regular /// electricity, flash, lightning, weather, zap - static const IconData boltLightning = IconDataRegular(0xe0b7); + static const IconData boltLightning = IconData(0xe0b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bolt Lightning icon /// /// https://fontawesome.com/icons/bolt-lightning?style=light /// electricity, flash, lightning, weather, zap - static const IconData lightBoltLightning = IconDataLight(0xe0b7); + static const IconData lightBoltLightning = IconData(0xe0b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bolt Lightning icon /// /// https://fontawesome.com/icons/bolt-lightning?style=thin /// electricity, flash, lightning, weather, zap - static const IconData thinBoltLightning = IconDataThin(0xe0b7); + static const IconData thinBoltLightning = IconData(0xe0b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bolt Slash icon /// /// https://fontawesome.com/icons/bolt-slash?style=solid /// charge, disabled, electricity, flash, lightning, weather, zap - static const IconData solidBoltSlash = IconDataSolid(0xe0b8); + static const IconData solidBoltSlash = IconData(0xe0b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bolt Slash icon /// /// https://fontawesome.com/icons/bolt-slash?style=regular /// charge, disabled, electricity, flash, lightning, weather, zap - static const IconData boltSlash = IconDataRegular(0xe0b8); + static const IconData boltSlash = IconData(0xe0b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bolt Slash icon /// /// https://fontawesome.com/icons/bolt-slash?style=light /// charge, disabled, electricity, flash, lightning, weather, zap - static const IconData lightBoltSlash = IconDataLight(0xe0b8); + static const IconData lightBoltSlash = IconData(0xe0b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bolt Slash icon /// /// https://fontawesome.com/icons/bolt-slash?style=thin /// charge, disabled, electricity, flash, lightning, weather, zap - static const IconData thinBoltSlash = IconDataThin(0xe0b8); + static const IconData thinBoltSlash = IconData(0xe0b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bomb icon /// /// https://fontawesome.com/icons/bomb?style=solid /// bomb, comic, error, explode, fuse, grenade, warning - static const IconData solidBomb = IconDataSolid(0xf1e2); + static const IconData solidBomb = IconData(0xf1e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bomb icon /// /// https://fontawesome.com/icons/bomb?style=regular /// bomb, comic, error, explode, fuse, grenade, warning - static const IconData bomb = IconDataRegular(0xf1e2); + static const IconData bomb = IconData(0xf1e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bomb icon /// /// https://fontawesome.com/icons/bomb?style=light /// bomb, comic, error, explode, fuse, grenade, warning - static const IconData lightBomb = IconDataLight(0xf1e2); + static const IconData lightBomb = IconData(0xf1e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bomb icon /// /// https://fontawesome.com/icons/bomb?style=thin /// bomb, comic, error, explode, fuse, grenade, warning - static const IconData thinBomb = IconDataThin(0xf1e2); + static const IconData thinBomb = IconData(0xf1e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bone icon /// /// https://fontawesome.com/icons/bone?style=solid /// bone, calcium, dog, skeletal, skeleton, tibia - static const IconData solidBone = IconDataSolid(0xf5d7); + static const IconData solidBone = IconData(0xf5d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bone icon /// /// https://fontawesome.com/icons/bone?style=regular /// bone, calcium, dog, skeletal, skeleton, tibia - static const IconData bone = IconDataRegular(0xf5d7); + static const IconData bone = IconData(0xf5d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bone icon /// /// https://fontawesome.com/icons/bone?style=light /// bone, calcium, dog, skeletal, skeleton, tibia - static const IconData lightBone = IconDataLight(0xf5d7); + static const IconData lightBone = IconData(0xf5d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bone icon /// /// https://fontawesome.com/icons/bone?style=thin /// bone, calcium, dog, skeletal, skeleton, tibia - static const IconData thinBone = IconDataThin(0xf5d7); + static const IconData thinBone = IconData(0xf5d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bone Break icon /// /// https://fontawesome.com/icons/bone-break?style=solid /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData solidBoneBreak = IconDataSolid(0xf5d8); + static const IconData solidBoneBreak = IconData(0xf5d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bone Break icon /// /// https://fontawesome.com/icons/bone-break?style=regular /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData boneBreak = IconDataRegular(0xf5d8); + static const IconData boneBreak = IconData(0xf5d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bone Break icon /// /// https://fontawesome.com/icons/bone-break?style=light /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData lightBoneBreak = IconDataLight(0xf5d8); + static const IconData lightBoneBreak = IconData(0xf5d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bone Break icon /// /// https://fontawesome.com/icons/bone-break?style=thin /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData thinBoneBreak = IconDataThin(0xf5d8); + static const IconData thinBoneBreak = IconData(0xf5d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bong icon /// /// https://fontawesome.com/icons/bong?style=solid /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData solidBong = IconDataSolid(0xf55c); + static const IconData solidBong = IconData(0xf55c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bong icon /// /// https://fontawesome.com/icons/bong?style=regular /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData bong = IconDataRegular(0xf55c); + static const IconData bong = IconData(0xf55c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bong icon /// /// https://fontawesome.com/icons/bong?style=light /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData lightBong = IconDataLight(0xf55c); + static const IconData lightBong = IconData(0xf55c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bong icon /// /// https://fontawesome.com/icons/bong?style=thin /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData thinBong = IconDataThin(0xf55c); + static const IconData thinBong = IconData(0xf55c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book icon /// /// https://fontawesome.com/icons/book?style=solid /// book, cover, decorated, diary, documentation, journal, knowledge, library, notebook, notebook with decorative cover, read, research, scholar - static const IconData solidBook = IconDataSolid(0xf02d); + static const IconData solidBook = IconData(0xf02d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book icon /// /// https://fontawesome.com/icons/book?style=regular /// book, cover, decorated, diary, documentation, journal, knowledge, library, notebook, notebook with decorative cover, read, research, scholar - static const IconData book = IconDataRegular(0xf02d); + static const IconData book = IconData(0xf02d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book icon /// /// https://fontawesome.com/icons/book?style=light /// book, cover, decorated, diary, documentation, journal, knowledge, library, notebook, notebook with decorative cover, read, research, scholar - static const IconData lightBook = IconDataLight(0xf02d); + static const IconData lightBook = IconData(0xf02d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book icon /// /// https://fontawesome.com/icons/book?style=thin /// book, cover, decorated, diary, documentation, journal, knowledge, library, notebook, notebook with decorative cover, read, research, scholar - static const IconData thinBook = IconDataThin(0xf02d); + static const IconData thinBook = IconData(0xf02d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Arrow Right icon /// /// https://fontawesome.com/icons/book-arrow-right?style=solid /// library, research - static const IconData solidBookArrowRight = IconDataSolid(0xe0b9); + static const IconData solidBookArrowRight = IconData(0xe0b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Arrow Right icon /// /// https://fontawesome.com/icons/book-arrow-right?style=regular /// library, research - static const IconData bookArrowRight = IconDataRegular(0xe0b9); + static const IconData bookArrowRight = IconData(0xe0b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Arrow Right icon /// /// https://fontawesome.com/icons/book-arrow-right?style=light /// library, research - static const IconData lightBookArrowRight = IconDataLight(0xe0b9); + static const IconData lightBookArrowRight = IconData(0xe0b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Arrow Right icon /// /// https://fontawesome.com/icons/book-arrow-right?style=thin /// library, research - static const IconData thinBookArrowRight = IconDataThin(0xe0b9); + static const IconData thinBookArrowRight = IconData(0xe0b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Arrow Up icon /// /// https://fontawesome.com/icons/book-arrow-up?style=solid /// library, research, upgrade - static const IconData solidBookArrowUp = IconDataSolid(0xe0ba); + static const IconData solidBookArrowUp = IconData(0xe0ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Arrow Up icon /// /// https://fontawesome.com/icons/book-arrow-up?style=regular /// library, research, upgrade - static const IconData bookArrowUp = IconDataRegular(0xe0ba); + static const IconData bookArrowUp = IconData(0xe0ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Arrow Up icon /// /// https://fontawesome.com/icons/book-arrow-up?style=light /// library, research, upgrade - static const IconData lightBookArrowUp = IconDataLight(0xe0ba); + static const IconData lightBookArrowUp = IconData(0xe0ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Arrow Up icon /// /// https://fontawesome.com/icons/book-arrow-up?style=thin /// library, research, upgrade - static const IconData thinBookArrowUp = IconDataThin(0xe0ba); + static const IconData thinBookArrowUp = IconData(0xe0ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Atlas icon /// /// https://fontawesome.com/icons/book-atlas?style=solid /// book, directions, geography, globe, knowledge, library, map, research, travel, wayfinding - static const IconData solidBookAtlas = IconDataSolid(0xf558); + static const IconData solidBookAtlas = IconData(0xf558, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias atlas for icon [solidBookAtlas] @Deprecated('Use "solidBookAtlas" instead.') @@ -9574,7 +9574,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-atlas?style=regular /// book, directions, geography, globe, knowledge, library, map, research, travel, wayfinding - static const IconData bookAtlas = IconDataRegular(0xf558); + static const IconData bookAtlas = IconData(0xf558, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias atlas for icon [bookAtlas] @Deprecated('Use "bookAtlas" instead.') @@ -9584,7 +9584,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-atlas?style=light /// book, directions, geography, globe, knowledge, library, map, research, travel, wayfinding - static const IconData lightBookAtlas = IconDataLight(0xf558); + static const IconData lightBookAtlas = IconData(0xf558, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias atlas for icon [lightBookAtlas] @Deprecated('Use "lightBookAtlas" instead.') @@ -9594,7 +9594,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-atlas?style=thin /// book, directions, geography, globe, knowledge, library, map, research, travel, wayfinding - static const IconData thinBookAtlas = IconDataThin(0xf558); + static const IconData thinBookAtlas = IconData(0xf558, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias atlas for icon [thinBookAtlas] @Deprecated('Use "thinBookAtlas" instead.') @@ -9604,7 +9604,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-bible?style=solid /// book, catholicism, christianity, god, holy - static const IconData solidBookBible = IconDataSolid(0xf647); + static const IconData solidBookBible = IconData(0xf647, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bible for icon [solidBookBible] @Deprecated('Use "solidBookBible" instead.') @@ -9614,7 +9614,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-bible?style=regular /// book, catholicism, christianity, god, holy - static const IconData bookBible = IconDataRegular(0xf647); + static const IconData bookBible = IconData(0xf647, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bible for icon [bookBible] @Deprecated('Use "bookBible" instead.') @@ -9624,7 +9624,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-bible?style=light /// book, catholicism, christianity, god, holy - static const IconData lightBookBible = IconDataLight(0xf647); + static const IconData lightBookBible = IconData(0xf647, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bible for icon [lightBookBible] @Deprecated('Use "lightBookBible" instead.') @@ -9634,7 +9634,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-bible?style=thin /// book, catholicism, christianity, god, holy - static const IconData thinBookBible = IconDataThin(0xf647); + static const IconData thinBookBible = IconData(0xf647, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bible for icon [thinBookBible] @Deprecated('Use "thinBookBible" instead.') @@ -9644,7 +9644,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-blank?style=solid /// blue, blue book, book, closed, closed book, diary, documentation, green, green book, journal, knowledge, library, orange, orange book, read, research - static const IconData solidBookBlank = IconDataSolid(0xf5d9); + static const IconData solidBookBlank = IconData(0xf5d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-alt for icon [solidBookBlank] @Deprecated('Use "solidBookBlank" instead.') @@ -9654,7 +9654,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-blank?style=regular /// blue, blue book, book, closed, closed book, diary, documentation, green, green book, journal, knowledge, library, orange, orange book, read, research - static const IconData bookBlank = IconDataRegular(0xf5d9); + static const IconData bookBlank = IconData(0xf5d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-alt for icon [bookBlank] @Deprecated('Use "bookBlank" instead.') @@ -9664,7 +9664,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-blank?style=light /// blue, blue book, book, closed, closed book, diary, documentation, green, green book, journal, knowledge, library, orange, orange book, read, research - static const IconData lightBookBlank = IconDataLight(0xf5d9); + static const IconData lightBookBlank = IconData(0xf5d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-alt for icon [lightBookBlank] @Deprecated('Use "lightBookBlank" instead.') @@ -9674,7 +9674,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-blank?style=thin /// blue, blue book, book, closed, closed book, diary, documentation, green, green book, journal, knowledge, library, orange, orange book, read, research - static const IconData thinBookBlank = IconDataThin(0xf5d9); + static const IconData thinBookBlank = IconData(0xf5d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-alt for icon [thinBookBlank] @Deprecated('Use "thinBookBlank" instead.') @@ -9684,151 +9684,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-bookmark?style=solid /// knowledge, library, research - static const IconData solidBookBookmark = IconDataSolid(0xe0bb); + static const IconData solidBookBookmark = IconData(0xe0bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Bookmark icon /// /// https://fontawesome.com/icons/book-bookmark?style=regular /// knowledge, library, research - static const IconData bookBookmark = IconDataRegular(0xe0bb); + static const IconData bookBookmark = IconData(0xe0bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Bookmark icon /// /// https://fontawesome.com/icons/book-bookmark?style=light /// knowledge, library, research - static const IconData lightBookBookmark = IconDataLight(0xe0bb); + static const IconData lightBookBookmark = IconData(0xe0bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Bookmark icon /// /// https://fontawesome.com/icons/book-bookmark?style=thin /// knowledge, library, research - static const IconData thinBookBookmark = IconDataThin(0xe0bb); + static const IconData thinBookBookmark = IconData(0xe0bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Circle Arrow Right icon /// /// https://fontawesome.com/icons/book-circle-arrow-right?style=solid /// library, research - static const IconData solidBookCircleArrowRight = IconDataSolid(0xe0bc); + static const IconData solidBookCircleArrowRight = IconData(0xe0bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Circle Arrow Right icon /// /// https://fontawesome.com/icons/book-circle-arrow-right?style=regular /// library, research - static const IconData bookCircleArrowRight = IconDataRegular(0xe0bc); + static const IconData bookCircleArrowRight = IconData(0xe0bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Circle Arrow Right icon /// /// https://fontawesome.com/icons/book-circle-arrow-right?style=light /// library, research - static const IconData lightBookCircleArrowRight = IconDataLight(0xe0bc); + static const IconData lightBookCircleArrowRight = IconData(0xe0bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Circle Arrow Right icon /// /// https://fontawesome.com/icons/book-circle-arrow-right?style=thin /// library, research - static const IconData thinBookCircleArrowRight = IconDataThin(0xe0bc); + static const IconData thinBookCircleArrowRight = IconData(0xe0bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Circle Arrow Up icon /// /// https://fontawesome.com/icons/book-circle-arrow-up?style=solid /// library, research, upgrade - static const IconData solidBookCircleArrowUp = IconDataSolid(0xe0bd); + static const IconData solidBookCircleArrowUp = IconData(0xe0bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Circle Arrow Up icon /// /// https://fontawesome.com/icons/book-circle-arrow-up?style=regular /// library, research, upgrade - static const IconData bookCircleArrowUp = IconDataRegular(0xe0bd); + static const IconData bookCircleArrowUp = IconData(0xe0bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Circle Arrow Up icon /// /// https://fontawesome.com/icons/book-circle-arrow-up?style=light /// library, research, upgrade - static const IconData lightBookCircleArrowUp = IconDataLight(0xe0bd); + static const IconData lightBookCircleArrowUp = IconData(0xe0bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Circle Arrow Up icon /// /// https://fontawesome.com/icons/book-circle-arrow-up?style=thin /// library, research, upgrade - static const IconData thinBookCircleArrowUp = IconDataThin(0xe0bd); + static const IconData thinBookCircleArrowUp = IconData(0xe0bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Copy icon /// /// https://fontawesome.com/icons/book-copy?style=solid /// knowledge, library, research - static const IconData solidBookCopy = IconDataSolid(0xe0be); + static const IconData solidBookCopy = IconData(0xe0be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Copy icon /// /// https://fontawesome.com/icons/book-copy?style=regular /// knowledge, library, research - static const IconData bookCopy = IconDataRegular(0xe0be); + static const IconData bookCopy = IconData(0xe0be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Copy icon /// /// https://fontawesome.com/icons/book-copy?style=light /// knowledge, library, research - static const IconData lightBookCopy = IconDataLight(0xe0be); + static const IconData lightBookCopy = IconData(0xe0be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Copy icon /// /// https://fontawesome.com/icons/book-copy?style=thin /// knowledge, library, research - static const IconData thinBookCopy = IconDataThin(0xe0be); + static const IconData thinBookCopy = IconData(0xe0be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Font icon /// /// https://fontawesome.com/icons/book-font?style=solid /// library, research - static const IconData solidBookFont = IconDataSolid(0xe0bf); + static const IconData solidBookFont = IconData(0xe0bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Font icon /// /// https://fontawesome.com/icons/book-font?style=regular /// library, research - static const IconData bookFont = IconDataRegular(0xe0bf); + static const IconData bookFont = IconData(0xe0bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Font icon /// /// https://fontawesome.com/icons/book-font?style=light /// library, research - static const IconData lightBookFont = IconDataLight(0xe0bf); + static const IconData lightBookFont = IconData(0xe0bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Font icon /// /// https://fontawesome.com/icons/book-font?style=thin /// library, research - static const IconData thinBookFont = IconDataThin(0xe0bf); + static const IconData thinBookFont = IconData(0xe0bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Heart icon /// /// https://fontawesome.com/icons/book-heart?style=solid /// charity, diary, documentation, donation, health, history, journal, library, read, research, wishlist - static const IconData solidBookHeart = IconDataSolid(0xf499); + static const IconData solidBookHeart = IconData(0xf499, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Heart icon /// /// https://fontawesome.com/icons/book-heart?style=regular /// charity, diary, documentation, donation, health, history, journal, library, read, research, wishlist - static const IconData bookHeart = IconDataRegular(0xf499); + static const IconData bookHeart = IconData(0xf499, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Heart icon /// /// https://fontawesome.com/icons/book-heart?style=light /// charity, diary, documentation, donation, health, history, journal, library, read, research, wishlist - static const IconData lightBookHeart = IconDataLight(0xf499); + static const IconData lightBookHeart = IconData(0xf499, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Heart icon /// /// https://fontawesome.com/icons/book-heart?style=thin /// charity, diary, documentation, donation, health, history, journal, library, read, research, wishlist - static const IconData thinBookHeart = IconDataThin(0xf499); + static const IconData thinBookHeart = IconData(0xf499, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Journal Whills icon /// /// https://fontawesome.com/icons/book-journal-whills?style=solid /// book, force, jedi, sith, star wars, yoda - static const IconData solidBookJournalWhills = IconDataSolid(0xf66a); + static const IconData solidBookJournalWhills = IconData(0xf66a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias journal-whills for icon [solidBookJournalWhills] @Deprecated('Use "solidBookJournalWhills" instead.') @@ -9838,7 +9838,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-journal-whills?style=regular /// book, force, jedi, sith, star wars, yoda - static const IconData bookJournalWhills = IconDataRegular(0xf66a); + static const IconData bookJournalWhills = IconData(0xf66a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias journal-whills for icon [bookJournalWhills] @Deprecated('Use "bookJournalWhills" instead.') @@ -9848,7 +9848,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-journal-whills?style=light /// book, force, jedi, sith, star wars, yoda - static const IconData lightBookJournalWhills = IconDataLight(0xf66a); + static const IconData lightBookJournalWhills = IconData(0xf66a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias journal-whills for icon [lightBookJournalWhills] @Deprecated('Use "lightBookJournalWhills" instead.') @@ -9858,7 +9858,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-journal-whills?style=thin /// book, force, jedi, sith, star wars, yoda - static const IconData thinBookJournalWhills = IconDataThin(0xf66a); + static const IconData thinBookJournalWhills = IconData(0xf66a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias journal-whills for icon [thinBookJournalWhills] @Deprecated('Use "thinBookJournalWhills" instead.') @@ -9868,55 +9868,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-medical?style=solid /// diary, documentation, health, history, journal, library, read, record, research - static const IconData solidBookMedical = IconDataSolid(0xf7e6); + static const IconData solidBookMedical = IconData(0xf7e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Medical icon /// /// https://fontawesome.com/icons/book-medical?style=regular /// diary, documentation, health, history, journal, library, read, record, research - static const IconData bookMedical = IconDataRegular(0xf7e6); + static const IconData bookMedical = IconData(0xf7e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Medical icon /// /// https://fontawesome.com/icons/book-medical?style=light /// diary, documentation, health, history, journal, library, read, record, research - static const IconData lightBookMedical = IconDataLight(0xf7e6); + static const IconData lightBookMedical = IconData(0xf7e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Medical icon /// /// https://fontawesome.com/icons/book-medical?style=thin /// diary, documentation, health, history, journal, library, read, record, research - static const IconData thinBookMedical = IconDataThin(0xf7e6); + static const IconData thinBookMedical = IconData(0xf7e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Open icon /// /// https://fontawesome.com/icons/book-open?style=solid /// Book, book, flyer, knowledge, library, notebook, open, open book, pamphlet, reading, research - static const IconData solidBookOpen = IconDataSolid(0xf518); + static const IconData solidBookOpen = IconData(0xf518, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book Open icon /// /// https://fontawesome.com/icons/book-open?style=regular /// Book, book, flyer, knowledge, library, notebook, open, open book, pamphlet, reading, research - static const IconData bookOpen = IconDataRegular(0xf518); + static const IconData bookOpen = IconData(0xf518, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book Open icon /// /// https://fontawesome.com/icons/book-open?style=light /// Book, book, flyer, knowledge, library, notebook, open, open book, pamphlet, reading, research - static const IconData lightBookOpen = IconDataLight(0xf518); + static const IconData lightBookOpen = IconData(0xf518, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book Open icon /// /// https://fontawesome.com/icons/book-open?style=thin /// Book, book, flyer, knowledge, library, notebook, open, open book, pamphlet, reading, research - static const IconData thinBookOpen = IconDataThin(0xf518); + static const IconData thinBookOpen = IconData(0xf518, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Book Open Cover icon /// /// https://fontawesome.com/icons/book-open-cover?style=solid /// knowledge, library, research, scholar - static const IconData solidBookOpenCover = IconDataSolid(0xe0c0); + static const IconData solidBookOpenCover = IconData(0xe0c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-open-alt for icon [solidBookOpenCover] @Deprecated('Use "solidBookOpenCover" instead.') @@ -9926,7 +9926,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-cover?style=regular /// knowledge, library, research, scholar - static const IconData bookOpenCover = IconDataRegular(0xe0c0); + static const IconData bookOpenCover = IconData(0xe0c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-open-alt for icon [bookOpenCover] @Deprecated('Use "bookOpenCover" instead.') @@ -9936,7 +9936,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-cover?style=light /// knowledge, library, research, scholar - static const IconData lightBookOpenCover = IconDataLight(0xe0c0); + static const IconData lightBookOpenCover = IconData(0xe0c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-open-alt for icon [lightBookOpenCover] @Deprecated('Use "lightBookOpenCover" instead.') @@ -9946,7 +9946,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-cover?style=thin /// knowledge, library, research, scholar - static const IconData thinBookOpenCover = IconDataThin(0xe0c0); + static const IconData thinBookOpenCover = IconData(0xe0c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-open-alt for icon [thinBookOpenCover] @Deprecated('Use "thinBookOpenCover" instead.') @@ -9956,7 +9956,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-reader?style=solid /// flyer, library, notebook, open book, pamphlet, reading, research - static const IconData solidBookOpenReader = IconDataSolid(0xf5da); + static const IconData solidBookOpenReader = IconData(0xf5da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-reader for icon [solidBookOpenReader] @Deprecated('Use "solidBookOpenReader" instead.') @@ -9966,7 +9966,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-reader?style=regular /// flyer, library, notebook, open book, pamphlet, reading, research - static const IconData bookOpenReader = IconDataRegular(0xf5da); + static const IconData bookOpenReader = IconData(0xf5da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-reader for icon [bookOpenReader] @Deprecated('Use "bookOpenReader" instead.') @@ -9976,7 +9976,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-reader?style=light /// flyer, library, notebook, open book, pamphlet, reading, research - static const IconData lightBookOpenReader = IconDataLight(0xf5da); + static const IconData lightBookOpenReader = IconData(0xf5da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-reader for icon [lightBookOpenReader] @Deprecated('Use "lightBookOpenReader" instead.') @@ -9986,7 +9986,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-open-reader?style=thin /// flyer, library, notebook, open book, pamphlet, reading, research - static const IconData thinBookOpenReader = IconDataThin(0xf5da); + static const IconData thinBookOpenReader = IconData(0xf5da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-reader for icon [thinBookOpenReader] @Deprecated('Use "thinBookOpenReader" instead.') @@ -9996,7 +9996,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-quran?style=solid /// book, islam, muslim, religion - static const IconData solidBookQuran = IconDataSolid(0xf687); + static const IconData solidBookQuran = IconData(0xf687, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias quran for icon [solidBookQuran] @Deprecated('Use "solidBookQuran" instead.') @@ -10006,7 +10006,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-quran?style=regular /// book, islam, muslim, religion - static const IconData bookQuran = IconDataRegular(0xf687); + static const IconData bookQuran = IconData(0xf687, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias quran for icon [bookQuran] @Deprecated('Use "bookQuran" instead.') @@ -10016,7 +10016,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-quran?style=light /// book, islam, muslim, religion - static const IconData lightBookQuran = IconDataLight(0xf687); + static const IconData lightBookQuran = IconData(0xf687, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias quran for icon [lightBookQuran] @Deprecated('Use "lightBookQuran" instead.') @@ -10026,7 +10026,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-quran?style=thin /// book, islam, muslim, religion - static const IconData thinBookQuran = IconDataThin(0xf687); + static const IconData thinBookQuran = IconData(0xf687, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias quran for icon [thinBookQuran] @Deprecated('Use "thinBookQuran" instead.') @@ -10036,7 +10036,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-section?style=solid /// law, legal, library, research, silcrow - static const IconData solidBookSection = IconDataSolid(0xe0c1); + static const IconData solidBookSection = IconData(0xe0c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-law for icon [solidBookSection] @Deprecated('Use "solidBookSection" instead.') @@ -10046,7 +10046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-section?style=regular /// law, legal, library, research, silcrow - static const IconData bookSection = IconDataRegular(0xe0c1); + static const IconData bookSection = IconData(0xe0c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-law for icon [bookSection] @Deprecated('Use "bookSection" instead.') @@ -10056,7 +10056,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-section?style=light /// law, legal, library, research, silcrow - static const IconData lightBookSection = IconDataLight(0xe0c1); + static const IconData lightBookSection = IconData(0xe0c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-law for icon [lightBookSection] @Deprecated('Use "lightBookSection" instead.') @@ -10066,7 +10066,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-section?style=thin /// law, legal, library, research, silcrow - static const IconData thinBookSection = IconDataThin(0xe0c1); + static const IconData thinBookSection = IconData(0xe0c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-law for icon [thinBookSection] @Deprecated('Use "thinBookSection" instead.') @@ -10076,7 +10076,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-skull?style=solid /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, library, necronomicon, read, research, skull, spell - static const IconData solidBookSkull = IconDataSolid(0xf6b7); + static const IconData solidBookSkull = IconData(0xf6b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-dead for icon [solidBookSkull] @Deprecated('Use "solidBookSkull" instead.') @@ -10086,7 +10086,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-skull?style=regular /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, library, necronomicon, read, research, skull, spell - static const IconData bookSkull = IconDataRegular(0xf6b7); + static const IconData bookSkull = IconData(0xf6b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-dead for icon [bookSkull] @Deprecated('Use "bookSkull" instead.') @@ -10096,7 +10096,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-skull?style=light /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, library, necronomicon, read, research, skull, spell - static const IconData lightBookSkull = IconDataLight(0xf6b7); + static const IconData lightBookSkull = IconData(0xf6b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-dead for icon [lightBookSkull] @Deprecated('Use "lightBookSkull" instead.') @@ -10106,7 +10106,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-skull?style=thin /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, library, necronomicon, read, research, skull, spell - static const IconData thinBookSkull = IconDataThin(0xf6b7); + static const IconData thinBookSkull = IconData(0xf6b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-dead for icon [thinBookSkull] @Deprecated('Use "thinBookSkull" instead.') @@ -10116,7 +10116,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-sparkles?style=solid /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, library, mage, magic, read, research, sorcery, voodoo, witch, wizard - static const IconData solidBookSparkles = IconDataSolid(0xf6b8); + static const IconData solidBookSparkles = IconData(0xf6b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-spells for icon [solidBookSparkles] @Deprecated('Use "solidBookSparkles" instead.') @@ -10126,7 +10126,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-sparkles?style=regular /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, library, mage, magic, read, research, sorcery, voodoo, witch, wizard - static const IconData bookSparkles = IconDataRegular(0xf6b8); + static const IconData bookSparkles = IconData(0xf6b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-spells for icon [bookSparkles] @Deprecated('Use "bookSparkles" instead.') @@ -10136,7 +10136,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-sparkles?style=light /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, library, mage, magic, read, research, sorcery, voodoo, witch, wizard - static const IconData lightBookSparkles = IconDataLight(0xf6b8); + static const IconData lightBookSparkles = IconData(0xf6b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-spells for icon [lightBookSparkles] @Deprecated('Use "lightBookSparkles" instead.') @@ -10146,7 +10146,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-sparkles?style=thin /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, library, mage, magic, read, research, sorcery, voodoo, witch, wizard - static const IconData thinBookSparkles = IconDataThin(0xf6b8); + static const IconData thinBookSparkles = IconData(0xf6b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-spells for icon [thinBookSparkles] @Deprecated('Use "thinBookSparkles" instead.') @@ -10156,7 +10156,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-tanakh?style=solid /// book, jewish, judaism, religion - static const IconData solidBookTanakh = IconDataSolid(0xf827); + static const IconData solidBookTanakh = IconData(0xf827, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tanakh for icon [solidBookTanakh] @Deprecated('Use "solidBookTanakh" instead.') @@ -10166,7 +10166,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-tanakh?style=regular /// book, jewish, judaism, religion - static const IconData bookTanakh = IconDataRegular(0xf827); + static const IconData bookTanakh = IconData(0xf827, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tanakh for icon [bookTanakh] @Deprecated('Use "bookTanakh" instead.') @@ -10176,7 +10176,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-tanakh?style=light /// book, jewish, judaism, religion - static const IconData lightBookTanakh = IconDataLight(0xf827); + static const IconData lightBookTanakh = IconData(0xf827, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tanakh for icon [lightBookTanakh] @Deprecated('Use "lightBookTanakh" instead.') @@ -10186,7 +10186,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-tanakh?style=thin /// book, jewish, judaism, religion - static const IconData thinBookTanakh = IconDataThin(0xf827); + static const IconData thinBookTanakh = IconData(0xf827, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tanakh for icon [thinBookTanakh] @Deprecated('Use "thinBookTanakh" instead.') @@ -10196,276 +10196,276 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/book-user?style=solid /// address, biography, diary, documentation, employee, journal, library, read, research, uer - static const IconData solidBookUser = IconDataSolid(0xf7e7); + static const IconData solidBookUser = IconData(0xf7e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Book User icon /// /// https://fontawesome.com/icons/book-user?style=regular /// address, biography, diary, documentation, employee, journal, library, read, research, uer - static const IconData bookUser = IconDataRegular(0xf7e7); + static const IconData bookUser = IconData(0xf7e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Book User icon /// /// https://fontawesome.com/icons/book-user?style=light /// address, biography, diary, documentation, employee, journal, library, read, research, uer - static const IconData lightBookUser = IconDataLight(0xf7e7); + static const IconData lightBookUser = IconData(0xf7e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Book User icon /// /// https://fontawesome.com/icons/book-user?style=thin /// address, biography, diary, documentation, employee, journal, library, read, research, uer - static const IconData thinBookUser = IconDataThin(0xf7e7); + static const IconData thinBookUser = IconData(0xf7e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bookmark icon /// /// https://fontawesome.com/icons/bookmark?style=solid /// bookmark, favorite, library, mark, marker, read, remember, research, save - static const IconData solidBookmark = IconDataSolid(0xf02e); + static const IconData solidBookmark = IconData(0xf02e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bookmark icon /// /// https://fontawesome.com/icons/bookmark?style=regular /// bookmark, favorite, library, mark, marker, read, remember, research, save - static const IconData bookmark = IconDataRegular(0xf02e); + static const IconData bookmark = IconData(0xf02e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bookmark icon /// /// https://fontawesome.com/icons/bookmark?style=light /// bookmark, favorite, library, mark, marker, read, remember, research, save - static const IconData lightBookmark = IconDataLight(0xf02e); + static const IconData lightBookmark = IconData(0xf02e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bookmark icon /// /// https://fontawesome.com/icons/bookmark?style=thin /// bookmark, favorite, library, mark, marker, read, remember, research, save - static const IconData thinBookmark = IconDataThin(0xf02e); + static const IconData thinBookmark = IconData(0xf02e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bookmark Slash icon /// /// https://fontawesome.com/icons/bookmark-slash?style=solid /// disabled, library, research - static const IconData solidBookmarkSlash = IconDataSolid(0xe0c2); + static const IconData solidBookmarkSlash = IconData(0xe0c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bookmark Slash icon /// /// https://fontawesome.com/icons/bookmark-slash?style=regular /// disabled, library, research - static const IconData bookmarkSlash = IconDataRegular(0xe0c2); + static const IconData bookmarkSlash = IconData(0xe0c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bookmark Slash icon /// /// https://fontawesome.com/icons/bookmark-slash?style=light /// disabled, library, research - static const IconData lightBookmarkSlash = IconDataLight(0xe0c2); + static const IconData lightBookmarkSlash = IconData(0xe0c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bookmark Slash icon /// /// https://fontawesome.com/icons/bookmark-slash?style=thin /// disabled, library, research - static const IconData thinBookmarkSlash = IconDataThin(0xe0c2); + static const IconData thinBookmarkSlash = IconData(0xe0c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Books icon /// /// https://fontawesome.com/icons/books?style=solid /// book, books, diary, documentation, journal, knowledge, library, read, research, scholar - static const IconData solidBooks = IconDataSolid(0xf5db); + static const IconData solidBooks = IconData(0xf5db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Books icon /// /// https://fontawesome.com/icons/books?style=regular /// book, books, diary, documentation, journal, knowledge, library, read, research, scholar - static const IconData books = IconDataRegular(0xf5db); + static const IconData books = IconData(0xf5db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Books icon /// /// https://fontawesome.com/icons/books?style=light /// book, books, diary, documentation, journal, knowledge, library, read, research, scholar - static const IconData lightBooks = IconDataLight(0xf5db); + static const IconData lightBooks = IconData(0xf5db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Books icon /// /// https://fontawesome.com/icons/books?style=thin /// book, books, diary, documentation, journal, knowledge, library, read, research, scholar - static const IconData thinBooks = IconDataThin(0xf5db); + static const IconData thinBooks = IconData(0xf5db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Books Medical icon /// /// https://fontawesome.com/icons/books-medical?style=solid /// add, diary, documentation, health, journal, library, read, records, research - static const IconData solidBooksMedical = IconDataSolid(0xf7e8); + static const IconData solidBooksMedical = IconData(0xf7e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Books Medical icon /// /// https://fontawesome.com/icons/books-medical?style=regular /// add, diary, documentation, health, journal, library, read, records, research - static const IconData booksMedical = IconDataRegular(0xf7e8); + static const IconData booksMedical = IconData(0xf7e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Books Medical icon /// /// https://fontawesome.com/icons/books-medical?style=light /// add, diary, documentation, health, journal, library, read, records, research - static const IconData lightBooksMedical = IconDataLight(0xf7e8); + static const IconData lightBooksMedical = IconData(0xf7e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Books Medical icon /// /// https://fontawesome.com/icons/books-medical?style=thin /// add, diary, documentation, health, journal, library, read, records, research - static const IconData thinBooksMedical = IconDataThin(0xf7e8); + static const IconData thinBooksMedical = IconData(0xf7e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Boombox icon /// /// https://fontawesome.com/icons/boombox?style=solid /// Portable Stereo, cassette, jambox, john cusack, music, radio, say anything - static const IconData solidBoombox = IconDataSolid(0xf8a5); + static const IconData solidBoombox = IconData(0xf8a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Boombox icon /// /// https://fontawesome.com/icons/boombox?style=regular /// Portable Stereo, cassette, jambox, john cusack, music, radio, say anything - static const IconData boombox = IconDataRegular(0xf8a5); + static const IconData boombox = IconData(0xf8a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Boombox icon /// /// https://fontawesome.com/icons/boombox?style=light /// Portable Stereo, cassette, jambox, john cusack, music, radio, say anything - static const IconData lightBoombox = IconDataLight(0xf8a5); + static const IconData lightBoombox = IconData(0xf8a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Boombox icon /// /// https://fontawesome.com/icons/boombox?style=thin /// Portable Stereo, cassette, jambox, john cusack, music, radio, say anything - static const IconData thinBoombox = IconDataThin(0xf8a5); + static const IconData thinBoombox = IconData(0xf8a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Boot icon /// /// https://fontawesome.com/icons/boot?style=solid /// backpacking, boot, camping, clothing, foot, hiking, hiking boot, shoe, sturdy - static const IconData solidBoot = IconDataSolid(0xf782); + static const IconData solidBoot = IconData(0xf782, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Boot icon /// /// https://fontawesome.com/icons/boot?style=regular /// backpacking, boot, camping, clothing, foot, hiking, hiking boot, shoe, sturdy - static const IconData boot = IconDataRegular(0xf782); + static const IconData boot = IconData(0xf782, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Boot icon /// /// https://fontawesome.com/icons/boot?style=light /// backpacking, boot, camping, clothing, foot, hiking, hiking boot, shoe, sturdy - static const IconData lightBoot = IconDataLight(0xf782); + static const IconData lightBoot = IconData(0xf782, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Boot icon /// /// https://fontawesome.com/icons/boot?style=thin /// backpacking, boot, camping, clothing, foot, hiking, hiking boot, shoe, sturdy - static const IconData thinBoot = IconDataThin(0xf782); + static const IconData thinBoot = IconData(0xf782, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Boot Heeled icon /// /// https://fontawesome.com/icons/boot-heeled?style=solid /// boot, clothing, cowboy, cowgirl, knee high, shoe, woman, woman’s boot - static const IconData solidBootHeeled = IconDataSolid(0xe33f); + static const IconData solidBootHeeled = IconData(0xe33f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Boot Heeled icon /// /// https://fontawesome.com/icons/boot-heeled?style=regular /// boot, clothing, cowboy, cowgirl, knee high, shoe, woman, woman’s boot - static const IconData bootHeeled = IconDataRegular(0xe33f); + static const IconData bootHeeled = IconData(0xe33f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Boot Heeled icon /// /// https://fontawesome.com/icons/boot-heeled?style=light /// boot, clothing, cowboy, cowgirl, knee high, shoe, woman, woman’s boot - static const IconData lightBootHeeled = IconDataLight(0xe33f); + static const IconData lightBootHeeled = IconData(0xe33f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Boot Heeled icon /// /// https://fontawesome.com/icons/boot-heeled?style=thin /// boot, clothing, cowboy, cowgirl, knee high, shoe, woman, woman’s boot - static const IconData thinBootHeeled = IconDataThin(0xe33f); + static const IconData thinBootHeeled = IconData(0xe33f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Booth Curtain icon /// /// https://fontawesome.com/icons/booth-curtain?style=solid /// changing room, election, vote, voting, voting booth - static const IconData solidBoothCurtain = IconDataSolid(0xf734); + static const IconData solidBoothCurtain = IconData(0xf734, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Booth Curtain icon /// /// https://fontawesome.com/icons/booth-curtain?style=regular /// changing room, election, vote, voting, voting booth - static const IconData boothCurtain = IconDataRegular(0xf734); + static const IconData boothCurtain = IconData(0xf734, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Booth Curtain icon /// /// https://fontawesome.com/icons/booth-curtain?style=light /// changing room, election, vote, voting, voting booth - static const IconData lightBoothCurtain = IconDataLight(0xf734); + static const IconData lightBoothCurtain = IconData(0xf734, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Booth Curtain icon /// /// https://fontawesome.com/icons/booth-curtain?style=thin /// changing room, election, vote, voting, voting booth - static const IconData thinBoothCurtain = IconDataThin(0xf734); + static const IconData thinBoothCurtain = IconData(0xf734, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bootstrap icon /// /// https://fontawesome.com/icons/bootstrap?style=brands - static const IconData bootstrap = IconDataBrands(0xf836); + static const IconData bootstrap = IconData(0xf836, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Border All icon /// /// https://fontawesome.com/icons/border-all?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderAll = IconDataSolid(0xf84c); + static const IconData solidBorderAll = IconData(0xf84c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border All icon /// /// https://fontawesome.com/icons/border-all?style=regular /// cell, grid, outline, stroke, table - static const IconData borderAll = IconDataRegular(0xf84c); + static const IconData borderAll = IconData(0xf84c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border All icon /// /// https://fontawesome.com/icons/border-all?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderAll = IconDataLight(0xf84c); + static const IconData lightBorderAll = IconData(0xf84c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border All icon /// /// https://fontawesome.com/icons/border-all?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderAll = IconDataThin(0xf84c); + static const IconData thinBorderAll = IconData(0xf84c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Bottom icon /// /// https://fontawesome.com/icons/border-bottom?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderBottom = IconDataSolid(0xf84d); + static const IconData solidBorderBottom = IconData(0xf84d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Bottom icon /// /// https://fontawesome.com/icons/border-bottom?style=regular /// cell, grid, outline, stroke, table - static const IconData borderBottom = IconDataRegular(0xf84d); + static const IconData borderBottom = IconData(0xf84d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Bottom icon /// /// https://fontawesome.com/icons/border-bottom?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderBottom = IconDataLight(0xf84d); + static const IconData lightBorderBottom = IconData(0xf84d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Bottom icon /// /// https://fontawesome.com/icons/border-bottom?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderBottom = IconDataThin(0xf84d); + static const IconData thinBorderBottom = IconData(0xf84d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Bottom Right icon /// /// https://fontawesome.com/icons/border-bottom-right?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderBottomRight = IconDataSolid(0xf854); + static const IconData solidBorderBottomRight = IconData(0xf854, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias border-style-alt for icon [solidBorderBottomRight] @Deprecated('Use "solidBorderBottomRight" instead.') @@ -10475,7 +10475,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-bottom-right?style=regular /// cell, grid, outline, stroke, table - static const IconData borderBottomRight = IconDataRegular(0xf854); + static const IconData borderBottomRight = IconData(0xf854, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias border-style-alt for icon [borderBottomRight] @Deprecated('Use "borderBottomRight" instead.') @@ -10485,7 +10485,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-bottom-right?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderBottomRight = IconDataLight(0xf854); + static const IconData lightBorderBottomRight = IconData(0xf854, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias border-style-alt for icon [lightBorderBottomRight] @Deprecated('Use "lightBorderBottomRight" instead.') @@ -10495,7 +10495,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-bottom-right?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderBottomRight = IconDataThin(0xf854); + static const IconData thinBorderBottomRight = IconData(0xf854, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias border-style-alt for icon [thinBorderBottomRight] @Deprecated('Use "thinBorderBottomRight" instead.') @@ -10505,199 +10505,199 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-center-h?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderCenterH = IconDataSolid(0xf89c); + static const IconData solidBorderCenterH = IconData(0xf89c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Center H icon /// /// https://fontawesome.com/icons/border-center-h?style=regular /// cell, grid, outline, stroke, table - static const IconData borderCenterH = IconDataRegular(0xf89c); + static const IconData borderCenterH = IconData(0xf89c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Center H icon /// /// https://fontawesome.com/icons/border-center-h?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderCenterH = IconDataLight(0xf89c); + static const IconData lightBorderCenterH = IconData(0xf89c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Center H icon /// /// https://fontawesome.com/icons/border-center-h?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderCenterH = IconDataThin(0xf89c); + static const IconData thinBorderCenterH = IconData(0xf89c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Center V icon /// /// https://fontawesome.com/icons/border-center-v?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderCenterV = IconDataSolid(0xf89d); + static const IconData solidBorderCenterV = IconData(0xf89d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Center V icon /// /// https://fontawesome.com/icons/border-center-v?style=regular /// cell, grid, outline, stroke, table - static const IconData borderCenterV = IconDataRegular(0xf89d); + static const IconData borderCenterV = IconData(0xf89d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Center V icon /// /// https://fontawesome.com/icons/border-center-v?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderCenterV = IconDataLight(0xf89d); + static const IconData lightBorderCenterV = IconData(0xf89d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Center V icon /// /// https://fontawesome.com/icons/border-center-v?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderCenterV = IconDataThin(0xf89d); + static const IconData thinBorderCenterV = IconData(0xf89d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Inner icon /// /// https://fontawesome.com/icons/border-inner?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderInner = IconDataSolid(0xf84e); + static const IconData solidBorderInner = IconData(0xf84e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Inner icon /// /// https://fontawesome.com/icons/border-inner?style=regular /// cell, grid, outline, stroke, table - static const IconData borderInner = IconDataRegular(0xf84e); + static const IconData borderInner = IconData(0xf84e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Inner icon /// /// https://fontawesome.com/icons/border-inner?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderInner = IconDataLight(0xf84e); + static const IconData lightBorderInner = IconData(0xf84e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Inner icon /// /// https://fontawesome.com/icons/border-inner?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderInner = IconDataThin(0xf84e); + static const IconData thinBorderInner = IconData(0xf84e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Left icon /// /// https://fontawesome.com/icons/border-left?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderLeft = IconDataSolid(0xf84f); + static const IconData solidBorderLeft = IconData(0xf84f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Left icon /// /// https://fontawesome.com/icons/border-left?style=regular /// cell, grid, outline, stroke, table - static const IconData borderLeft = IconDataRegular(0xf84f); + static const IconData borderLeft = IconData(0xf84f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Left icon /// /// https://fontawesome.com/icons/border-left?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderLeft = IconDataLight(0xf84f); + static const IconData lightBorderLeft = IconData(0xf84f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Left icon /// /// https://fontawesome.com/icons/border-left?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderLeft = IconDataThin(0xf84f); + static const IconData thinBorderLeft = IconData(0xf84f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border None icon /// /// https://fontawesome.com/icons/border-none?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderNone = IconDataSolid(0xf850); + static const IconData solidBorderNone = IconData(0xf850, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border None icon /// /// https://fontawesome.com/icons/border-none?style=regular /// cell, grid, outline, stroke, table - static const IconData borderNone = IconDataRegular(0xf850); + static const IconData borderNone = IconData(0xf850, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border None icon /// /// https://fontawesome.com/icons/border-none?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderNone = IconDataLight(0xf850); + static const IconData lightBorderNone = IconData(0xf850, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border None icon /// /// https://fontawesome.com/icons/border-none?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderNone = IconDataThin(0xf850); + static const IconData thinBorderNone = IconData(0xf850, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Outer icon /// /// https://fontawesome.com/icons/border-outer?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderOuter = IconDataSolid(0xf851); + static const IconData solidBorderOuter = IconData(0xf851, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Outer icon /// /// https://fontawesome.com/icons/border-outer?style=regular /// cell, grid, outline, stroke, table - static const IconData borderOuter = IconDataRegular(0xf851); + static const IconData borderOuter = IconData(0xf851, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Outer icon /// /// https://fontawesome.com/icons/border-outer?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderOuter = IconDataLight(0xf851); + static const IconData lightBorderOuter = IconData(0xf851, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Outer icon /// /// https://fontawesome.com/icons/border-outer?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderOuter = IconDataThin(0xf851); + static const IconData thinBorderOuter = IconData(0xf851, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Right icon /// /// https://fontawesome.com/icons/border-right?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderRight = IconDataSolid(0xf852); + static const IconData solidBorderRight = IconData(0xf852, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Right icon /// /// https://fontawesome.com/icons/border-right?style=regular /// cell, grid, outline, stroke, table - static const IconData borderRight = IconDataRegular(0xf852); + static const IconData borderRight = IconData(0xf852, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Right icon /// /// https://fontawesome.com/icons/border-right?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderRight = IconDataLight(0xf852); + static const IconData lightBorderRight = IconData(0xf852, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Right icon /// /// https://fontawesome.com/icons/border-right?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderRight = IconDataThin(0xf852); + static const IconData thinBorderRight = IconData(0xf852, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Top icon /// /// https://fontawesome.com/icons/border-top?style=solid /// cell, grid, outline, stroke, table - static const IconData solidBorderTop = IconDataSolid(0xf855); + static const IconData solidBorderTop = IconData(0xf855, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Border Top icon /// /// https://fontawesome.com/icons/border-top?style=regular /// cell, grid, outline, stroke, table - static const IconData borderTop = IconDataRegular(0xf855); + static const IconData borderTop = IconData(0xf855, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Border Top icon /// /// https://fontawesome.com/icons/border-top?style=light /// cell, grid, outline, stroke, table - static const IconData lightBorderTop = IconDataLight(0xf855); + static const IconData lightBorderTop = IconData(0xf855, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Border Top icon /// /// https://fontawesome.com/icons/border-top?style=thin /// cell, grid, outline, stroke, table - static const IconData thinBorderTop = IconDataThin(0xf855); + static const IconData thinBorderTop = IconData(0xf855, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Border Top Left icon /// /// https://fontawesome.com/icons/border-top-left?style=solid /// cell, outline, stroke, table - static const IconData solidBorderTopLeft = IconDataSolid(0xf853); + static const IconData solidBorderTopLeft = IconData(0xf853, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias border-style for icon [solidBorderTopLeft] @Deprecated('Use "solidBorderTopLeft" instead.') @@ -10707,7 +10707,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-top-left?style=regular /// cell, outline, stroke, table - static const IconData borderTopLeft = IconDataRegular(0xf853); + static const IconData borderTopLeft = IconData(0xf853, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias border-style for icon [borderTopLeft] @Deprecated('Use "borderTopLeft" instead.') @@ -10717,7 +10717,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-top-left?style=light /// cell, outline, stroke, table - static const IconData lightBorderTopLeft = IconDataLight(0xf853); + static const IconData lightBorderTopLeft = IconData(0xf853, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias border-style for icon [lightBorderTopLeft] @Deprecated('Use "lightBorderTopLeft" instead.') @@ -10727,7 +10727,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/border-top-left?style=thin /// cell, outline, stroke, table - static const IconData thinBorderTopLeft = IconDataThin(0xf853); + static const IconData thinBorderTopLeft = IconData(0xf853, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias border-style for icon [thinBorderTopLeft] @Deprecated('Use "thinBorderTopLeft" instead.') @@ -10737,180 +10737,180 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bore-hole?style=solid /// bore, bury, drill, hole - static const IconData solidBoreHole = IconDataSolid(0xe4c3); + static const IconData solidBoreHole = IconData(0xe4c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bore Hole icon /// /// https://fontawesome.com/icons/bore-hole?style=regular /// bore, bury, drill, hole - static const IconData boreHole = IconDataRegular(0xe4c3); + static const IconData boreHole = IconData(0xe4c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bore Hole icon /// /// https://fontawesome.com/icons/bore-hole?style=light /// bore, bury, drill, hole - static const IconData lightBoreHole = IconDataLight(0xe4c3); + static const IconData lightBoreHole = IconData(0xe4c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bore Hole icon /// /// https://fontawesome.com/icons/bore-hole?style=thin /// bore, bury, drill, hole - static const IconData thinBoreHole = IconDataThin(0xe4c3); + static const IconData thinBoreHole = IconData(0xe4c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Bots icon /// /// https://fontawesome.com/icons/bots?style=brands - static const IconData bots = IconDataBrands(0xe340); + static const IconData bots = IconData(0xe340, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bottle Droplet icon /// /// https://fontawesome.com/icons/bottle-droplet?style=solid /// alcohol, drink, oil, olive oil, wine - static const IconData solidBottleDroplet = IconDataSolid(0xe4c4); + static const IconData solidBottleDroplet = IconData(0xe4c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bottle Droplet icon /// /// https://fontawesome.com/icons/bottle-droplet?style=regular /// alcohol, drink, oil, olive oil, wine - static const IconData bottleDroplet = IconDataRegular(0xe4c4); + static const IconData bottleDroplet = IconData(0xe4c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bottle Droplet icon /// /// https://fontawesome.com/icons/bottle-droplet?style=light /// alcohol, drink, oil, olive oil, wine - static const IconData lightBottleDroplet = IconDataLight(0xe4c4); + static const IconData lightBottleDroplet = IconData(0xe4c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bottle Droplet icon /// /// https://fontawesome.com/icons/bottle-droplet?style=thin /// alcohol, drink, oil, olive oil, wine - static const IconData thinBottleDroplet = IconDataThin(0xe4c4); + static const IconData thinBottleDroplet = IconData(0xe4c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bottle Water icon /// /// https://fontawesome.com/icons/bottle-water?style=solid /// h2o, plastic, water - static const IconData solidBottleWater = IconDataSolid(0xe4c5); + static const IconData solidBottleWater = IconData(0xe4c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bottle Water icon /// /// https://fontawesome.com/icons/bottle-water?style=regular /// h2o, plastic, water - static const IconData bottleWater = IconDataRegular(0xe4c5); + static const IconData bottleWater = IconData(0xe4c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bottle Water icon /// /// https://fontawesome.com/icons/bottle-water?style=light /// h2o, plastic, water - static const IconData lightBottleWater = IconDataLight(0xe4c5); + static const IconData lightBottleWater = IconData(0xe4c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bottle Water icon /// /// https://fontawesome.com/icons/bottle-water?style=thin /// h2o, plastic, water - static const IconData thinBottleWater = IconDataThin(0xe4c5); + static const IconData thinBottleWater = IconData(0xe4c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bow Arrow icon /// /// https://fontawesome.com/icons/bow-arrow?style=solid /// Dungeons & Dragons, Sagittarius, archer, archery, arrow, bow, bow and arrow, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon, zodiac - static const IconData solidBowArrow = IconDataSolid(0xf6b9); + static const IconData solidBowArrow = IconData(0xf6b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bow Arrow icon /// /// https://fontawesome.com/icons/bow-arrow?style=regular /// Dungeons & Dragons, Sagittarius, archer, archery, arrow, bow, bow and arrow, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon, zodiac - static const IconData bowArrow = IconDataRegular(0xf6b9); + static const IconData bowArrow = IconData(0xf6b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bow Arrow icon /// /// https://fontawesome.com/icons/bow-arrow?style=light /// Dungeons & Dragons, Sagittarius, archer, archery, arrow, bow, bow and arrow, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon, zodiac - static const IconData lightBowArrow = IconDataLight(0xf6b9); + static const IconData lightBowArrow = IconData(0xf6b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bow Arrow icon /// /// https://fontawesome.com/icons/bow-arrow?style=thin /// Dungeons & Dragons, Sagittarius, archer, archery, arrow, bow, bow and arrow, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon, zodiac - static const IconData thinBowArrow = IconDataThin(0xf6b9); + static const IconData thinBowArrow = IconData(0xf6b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Chopsticks icon /// /// https://fontawesome.com/icons/bowl-chopsticks?style=solid /// chopsticks, noodles, ramen, steaming - static const IconData solidBowlChopsticks = IconDataSolid(0xe2e9); + static const IconData solidBowlChopsticks = IconData(0xe2e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Chopsticks icon /// /// https://fontawesome.com/icons/bowl-chopsticks?style=regular /// chopsticks, noodles, ramen, steaming - static const IconData bowlChopsticks = IconDataRegular(0xe2e9); + static const IconData bowlChopsticks = IconData(0xe2e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Chopsticks icon /// /// https://fontawesome.com/icons/bowl-chopsticks?style=light /// chopsticks, noodles, ramen, steaming - static const IconData lightBowlChopsticks = IconDataLight(0xe2e9); + static const IconData lightBowlChopsticks = IconData(0xe2e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Chopsticks icon /// /// https://fontawesome.com/icons/bowl-chopsticks?style=thin /// chopsticks, noodles, ramen, steaming - static const IconData thinBowlChopsticks = IconDataThin(0xe2e9); + static const IconData thinBowlChopsticks = IconData(0xe2e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Chopsticks Noodles icon /// /// https://fontawesome.com/icons/bowl-chopsticks-noodles?style=solid /// bowl, chopsticks, noodle, noodles, ramen, steaming, steaming bowl - static const IconData solidBowlChopsticksNoodles = IconDataSolid(0xe2ea); + static const IconData solidBowlChopsticksNoodles = IconData(0xe2ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Chopsticks Noodles icon /// /// https://fontawesome.com/icons/bowl-chopsticks-noodles?style=regular /// bowl, chopsticks, noodle, noodles, ramen, steaming, steaming bowl - static const IconData bowlChopsticksNoodles = IconDataRegular(0xe2ea); + static const IconData bowlChopsticksNoodles = IconData(0xe2ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Chopsticks Noodles icon /// /// https://fontawesome.com/icons/bowl-chopsticks-noodles?style=light /// bowl, chopsticks, noodle, noodles, ramen, steaming, steaming bowl - static const IconData lightBowlChopsticksNoodles = IconDataLight(0xe2ea); + static const IconData lightBowlChopsticksNoodles = IconData(0xe2ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Chopsticks Noodles icon /// /// https://fontawesome.com/icons/bowl-chopsticks-noodles?style=thin /// bowl, chopsticks, noodle, noodles, ramen, steaming, steaming bowl - static const IconData thinBowlChopsticksNoodles = IconDataThin(0xe2ea); + static const IconData thinBowlChopsticksNoodles = IconData(0xe2ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Food icon /// /// https://fontawesome.com/icons/bowl-food?style=solid /// catfood, dogfood, food, rice - static const IconData solidBowlFood = IconDataSolid(0xe4c6); + static const IconData solidBowlFood = IconData(0xe4c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Food icon /// /// https://fontawesome.com/icons/bowl-food?style=regular /// catfood, dogfood, food, rice - static const IconData bowlFood = IconDataRegular(0xe4c6); + static const IconData bowlFood = IconData(0xe4c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Food icon /// /// https://fontawesome.com/icons/bowl-food?style=light /// catfood, dogfood, food, rice - static const IconData lightBowlFood = IconDataLight(0xe4c6); + static const IconData lightBowlFood = IconData(0xe4c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Food icon /// /// https://fontawesome.com/icons/bowl-food?style=thin /// catfood, dogfood, food, rice - static const IconData thinBowlFood = IconDataThin(0xe4c6); + static const IconData thinBowlFood = IconData(0xe4c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Hot icon /// /// https://fontawesome.com/icons/bowl-hot?style=solid /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData solidBowlHot = IconDataSolid(0xf823); + static const IconData solidBowlHot = IconData(0xf823, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias soup for icon [solidBowlHot] @Deprecated('Use "solidBowlHot" instead.') @@ -10920,7 +10920,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-hot?style=regular /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData bowlHot = IconDataRegular(0xf823); + static const IconData bowlHot = IconData(0xf823, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias soup for icon [bowlHot] @Deprecated('Use "bowlHot" instead.') @@ -10930,7 +10930,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-hot?style=light /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData lightBowlHot = IconDataLight(0xf823); + static const IconData lightBowlHot = IconData(0xf823, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias soup for icon [lightBowlHot] @Deprecated('Use "lightBowlHot" instead.') @@ -10940,7 +10940,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-hot?style=thin /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData thinBowlHot = IconDataThin(0xf823); + static const IconData thinBowlHot = IconData(0xf823, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias soup for icon [thinBowlHot] @Deprecated('Use "thinBowlHot" instead.') @@ -10950,31 +10950,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-rice?style=solid /// boiled, cooked, cooked rice, rice, steamed - static const IconData solidBowlRice = IconDataSolid(0xe2eb); + static const IconData solidBowlRice = IconData(0xe2eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Rice icon /// /// https://fontawesome.com/icons/bowl-rice?style=regular /// boiled, cooked, cooked rice, rice, steamed - static const IconData bowlRice = IconDataRegular(0xe2eb); + static const IconData bowlRice = IconData(0xe2eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Rice icon /// /// https://fontawesome.com/icons/bowl-rice?style=light /// boiled, cooked, cooked rice, rice, steamed - static const IconData lightBowlRice = IconDataLight(0xe2eb); + static const IconData lightBowlRice = IconData(0xe2eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Rice icon /// /// https://fontawesome.com/icons/bowl-rice?style=thin /// boiled, cooked, cooked rice, rice, steamed - static const IconData thinBowlRice = IconDataThin(0xe2eb); + static const IconData thinBowlRice = IconData(0xe2eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Scoop icon /// /// https://fontawesome.com/icons/bowl-scoop?style=solid /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData solidBowlScoop = IconDataSolid(0xe3de); + static const IconData solidBowlScoop = IconData(0xe3de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bowl-shaved-ice for icon [solidBowlScoop] @Deprecated('Use "solidBowlScoop" instead.') @@ -10984,7 +10984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-scoop?style=regular /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData bowlScoop = IconDataRegular(0xe3de); + static const IconData bowlScoop = IconData(0xe3de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bowl-shaved-ice for icon [bowlScoop] @Deprecated('Use "bowlScoop" instead.') @@ -10994,7 +10994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-scoop?style=light /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData lightBowlScoop = IconDataLight(0xe3de); + static const IconData lightBowlScoop = IconData(0xe3de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bowl-shaved-ice for icon [lightBowlScoop] @Deprecated('Use "lightBowlScoop" instead.') @@ -11004,7 +11004,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-scoop?style=thin /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData thinBowlScoop = IconDataThin(0xe3de); + static const IconData thinBowlScoop = IconData(0xe3de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bowl-shaved-ice for icon [thinBowlScoop] @Deprecated('Use "thinBowlScoop" instead.') @@ -11014,175 +11014,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bowl-scoops?style=solid /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData solidBowlScoops = IconDataSolid(0xe3df); + static const IconData solidBowlScoops = IconData(0xe3df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Scoops icon /// /// https://fontawesome.com/icons/bowl-scoops?style=regular /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData bowlScoops = IconDataRegular(0xe3df); + static const IconData bowlScoops = IconData(0xe3df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Scoops icon /// /// https://fontawesome.com/icons/bowl-scoops?style=light /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData lightBowlScoops = IconDataLight(0xe3df); + static const IconData lightBowlScoops = IconData(0xe3df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Scoops icon /// /// https://fontawesome.com/icons/bowl-scoops?style=thin /// dessert, ice cream, scoop, shaved ice, sherbert, sherbet, sorbet - static const IconData thinBowlScoops = IconDataThin(0xe3df); + static const IconData thinBowlScoops = IconData(0xe3df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Soft Serve icon /// /// https://fontawesome.com/icons/bowl-soft-serve?style=solid /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData solidBowlSoftServe = IconDataSolid(0xe46b); + static const IconData solidBowlSoftServe = IconData(0xe46b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Soft Serve icon /// /// https://fontawesome.com/icons/bowl-soft-serve?style=regular /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData bowlSoftServe = IconDataRegular(0xe46b); + static const IconData bowlSoftServe = IconData(0xe46b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Soft Serve icon /// /// https://fontawesome.com/icons/bowl-soft-serve?style=light /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData lightBowlSoftServe = IconDataLight(0xe46b); + static const IconData lightBowlSoftServe = IconData(0xe46b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Soft Serve icon /// /// https://fontawesome.com/icons/bowl-soft-serve?style=thin /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData thinBowlSoftServe = IconDataThin(0xe46b); + static const IconData thinBowlSoftServe = IconData(0xe46b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowl Spoon icon /// /// https://fontawesome.com/icons/bowl-spoon?style=solid /// breakfast, cereal, congee, oatmeal, porridge - static const IconData solidBowlSpoon = IconDataSolid(0xe3e0); + static const IconData solidBowlSpoon = IconData(0xe3e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowl Spoon icon /// /// https://fontawesome.com/icons/bowl-spoon?style=regular /// breakfast, cereal, congee, oatmeal, porridge - static const IconData bowlSpoon = IconDataRegular(0xe3e0); + static const IconData bowlSpoon = IconData(0xe3e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowl Spoon icon /// /// https://fontawesome.com/icons/bowl-spoon?style=light /// breakfast, cereal, congee, oatmeal, porridge - static const IconData lightBowlSpoon = IconDataLight(0xe3e0); + static const IconData lightBowlSpoon = IconData(0xe3e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowl Spoon icon /// /// https://fontawesome.com/icons/bowl-spoon?style=thin /// breakfast, cereal, congee, oatmeal, porridge - static const IconData thinBowlSpoon = IconDataThin(0xe3e0); + static const IconData thinBowlSpoon = IconData(0xe3e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowling Ball icon /// /// https://fontawesome.com/icons/bowling-ball?style=solid /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData solidBowlingBall = IconDataSolid(0xf436); + static const IconData solidBowlingBall = IconData(0xf436, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowling Ball icon /// /// https://fontawesome.com/icons/bowling-ball?style=regular /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData bowlingBall = IconDataRegular(0xf436); + static const IconData bowlingBall = IconData(0xf436, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowling Ball icon /// /// https://fontawesome.com/icons/bowling-ball?style=light /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData lightBowlingBall = IconDataLight(0xf436); + static const IconData lightBowlingBall = IconData(0xf436, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowling Ball icon /// /// https://fontawesome.com/icons/bowling-ball?style=thin /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData thinBowlingBall = IconDataThin(0xf436); + static const IconData thinBowlingBall = IconData(0xf436, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowling Ball Pin icon /// /// https://fontawesome.com/icons/bowling-ball-pin?style=solid /// ball, bowling, game, league, pin, strike - static const IconData solidBowlingBallPin = IconDataSolid(0xe0c3); + static const IconData solidBowlingBallPin = IconData(0xe0c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowling Ball Pin icon /// /// https://fontawesome.com/icons/bowling-ball-pin?style=regular /// ball, bowling, game, league, pin, strike - static const IconData bowlingBallPin = IconDataRegular(0xe0c3); + static const IconData bowlingBallPin = IconData(0xe0c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowling Ball Pin icon /// /// https://fontawesome.com/icons/bowling-ball-pin?style=light /// ball, bowling, game, league, pin, strike - static const IconData lightBowlingBallPin = IconDataLight(0xe0c3); + static const IconData lightBowlingBallPin = IconData(0xe0c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowling Ball Pin icon /// /// https://fontawesome.com/icons/bowling-ball-pin?style=thin /// ball, bowling, game, league, pin, strike - static const IconData thinBowlingBallPin = IconDataThin(0xe0c3); + static const IconData thinBowlingBallPin = IconData(0xe0c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bowling Pins icon /// /// https://fontawesome.com/icons/bowling-pins?style=solid /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData solidBowlingPins = IconDataSolid(0xf437); + static const IconData solidBowlingPins = IconData(0xf437, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bowling Pins icon /// /// https://fontawesome.com/icons/bowling-pins?style=regular /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData bowlingPins = IconDataRegular(0xf437); + static const IconData bowlingPins = IconData(0xf437, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bowling Pins icon /// /// https://fontawesome.com/icons/bowling-pins?style=light /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData lightBowlingPins = IconDataLight(0xf437); + static const IconData lightBowlingPins = IconData(0xf437, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bowling Pins icon /// /// https://fontawesome.com/icons/bowling-pins?style=thin /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData thinBowlingPins = IconDataThin(0xf437); + static const IconData thinBowlingPins = IconData(0xf437, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box icon /// /// https://fontawesome.com/icons/box?style=solid /// archive, box, container, package, parcel, storage - static const IconData solidBox = IconDataSolid(0xf466); + static const IconData solidBox = IconData(0xf466, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box icon /// /// https://fontawesome.com/icons/box?style=regular /// archive, box, container, package, parcel, storage - static const IconData box = IconDataRegular(0xf466); + static const IconData box = IconData(0xf466, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box icon /// /// https://fontawesome.com/icons/box?style=light /// archive, box, container, package, parcel, storage - static const IconData lightBox = IconDataLight(0xf466); + static const IconData lightBox = IconData(0xf466, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box icon /// /// https://fontawesome.com/icons/box?style=thin /// archive, box, container, package, parcel, storage - static const IconData thinBox = IconDataThin(0xf466); + static const IconData thinBox = IconData(0xf466, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Archive icon /// /// https://fontawesome.com/icons/box-archive?style=solid /// box, package, save, storage - static const IconData solidBoxArchive = IconDataSolid(0xf187); + static const IconData solidBoxArchive = IconData(0xf187, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias archive for icon [solidBoxArchive] @Deprecated('Use "solidBoxArchive" instead.') @@ -11192,7 +11192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-archive?style=regular /// box, package, save, storage - static const IconData boxArchive = IconDataRegular(0xf187); + static const IconData boxArchive = IconData(0xf187, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias archive for icon [boxArchive] @Deprecated('Use "boxArchive" instead.') @@ -11202,7 +11202,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-archive?style=light /// box, package, save, storage - static const IconData lightBoxArchive = IconDataLight(0xf187); + static const IconData lightBoxArchive = IconData(0xf187, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias archive for icon [lightBoxArchive] @Deprecated('Use "lightBoxArchive" instead.') @@ -11212,7 +11212,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-archive?style=thin /// box, package, save, storage - static const IconData thinBoxArchive = IconDataThin(0xf187); + static const IconData thinBoxArchive = IconData(0xf187, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias archive for icon [thinBoxArchive] @Deprecated('Use "thinBoxArchive" instead.') @@ -11222,79 +11222,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-ballot?style=solid /// ballot, ballot box with ballot, box, election, politics, vote, voting - static const IconData solidBoxBallot = IconDataSolid(0xf735); + static const IconData solidBoxBallot = IconData(0xf735, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Ballot icon /// /// https://fontawesome.com/icons/box-ballot?style=regular /// ballot, ballot box with ballot, box, election, politics, vote, voting - static const IconData boxBallot = IconDataRegular(0xf735); + static const IconData boxBallot = IconData(0xf735, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Ballot icon /// /// https://fontawesome.com/icons/box-ballot?style=light /// ballot, ballot box with ballot, box, election, politics, vote, voting - static const IconData lightBoxBallot = IconDataLight(0xf735); + static const IconData lightBoxBallot = IconData(0xf735, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Ballot icon /// /// https://fontawesome.com/icons/box-ballot?style=thin /// ballot, ballot box with ballot, box, election, politics, vote, voting - static const IconData thinBoxBallot = IconDataThin(0xf735); + static const IconData thinBoxBallot = IconData(0xf735, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Check icon /// /// https://fontawesome.com/icons/box-check?style=solid /// accept, agree, confirm, correct, done, enable, ok, package, select, success, tick, todo, validate, working, yes - static const IconData solidBoxCheck = IconDataSolid(0xf467); + static const IconData solidBoxCheck = IconData(0xf467, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Check icon /// /// https://fontawesome.com/icons/box-check?style=regular /// accept, agree, confirm, correct, done, enable, ok, package, select, success, tick, todo, validate, working, yes - static const IconData boxCheck = IconDataRegular(0xf467); + static const IconData boxCheck = IconData(0xf467, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Check icon /// /// https://fontawesome.com/icons/box-check?style=light /// accept, agree, confirm, correct, done, enable, ok, package, select, success, tick, todo, validate, working, yes - static const IconData lightBoxCheck = IconDataLight(0xf467); + static const IconData lightBoxCheck = IconData(0xf467, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Check icon /// /// https://fontawesome.com/icons/box-check?style=thin /// accept, agree, confirm, correct, done, enable, ok, package, select, success, tick, todo, validate, working, yes - static const IconData thinBoxCheck = IconDataThin(0xf467); + static const IconData thinBoxCheck = IconData(0xf467, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Circle Check icon /// /// https://fontawesome.com/icons/box-circle-check?style=solid /// confirm, enable, inventory, not affected, ok, okay, package, validate, working - static const IconData solidBoxCircleCheck = IconDataSolid(0xe0c4); + static const IconData solidBoxCircleCheck = IconData(0xe0c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Circle Check icon /// /// https://fontawesome.com/icons/box-circle-check?style=regular /// confirm, enable, inventory, not affected, ok, okay, package, validate, working - static const IconData boxCircleCheck = IconDataRegular(0xe0c4); + static const IconData boxCircleCheck = IconData(0xe0c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Circle Check icon /// /// https://fontawesome.com/icons/box-circle-check?style=light /// confirm, enable, inventory, not affected, ok, okay, package, validate, working - static const IconData lightBoxCircleCheck = IconDataLight(0xe0c4); + static const IconData lightBoxCircleCheck = IconData(0xe0c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Circle Check icon /// /// https://fontawesome.com/icons/box-circle-check?style=thin /// confirm, enable, inventory, not affected, ok, okay, package, validate, working - static const IconData thinBoxCircleCheck = IconDataThin(0xe0c4); + static const IconData thinBoxCircleCheck = IconData(0xe0c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Dollar icon /// /// https://fontawesome.com/icons/box-dollar?style=solid /// $, dollar-sign, donation, money, salary, usd - static const IconData solidBoxDollar = IconDataSolid(0xf4a0); + static const IconData solidBoxDollar = IconData(0xf4a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias box-usd for icon [solidBoxDollar] @Deprecated('Use "solidBoxDollar" instead.') @@ -11304,7 +11304,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-dollar?style=regular /// $, dollar-sign, donation, money, salary, usd - static const IconData boxDollar = IconDataRegular(0xf4a0); + static const IconData boxDollar = IconData(0xf4a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias box-usd for icon [boxDollar] @Deprecated('Use "boxDollar" instead.') @@ -11314,7 +11314,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-dollar?style=light /// $, dollar-sign, donation, money, salary, usd - static const IconData lightBoxDollar = IconDataLight(0xf4a0); + static const IconData lightBoxDollar = IconData(0xf4a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias box-usd for icon [lightBoxDollar] @Deprecated('Use "lightBoxDollar" instead.') @@ -11324,7 +11324,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-dollar?style=thin /// $, dollar-sign, donation, money, salary, usd - static const IconData thinBoxDollar = IconDataThin(0xf4a0); + static const IconData thinBoxDollar = IconData(0xf4a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias box-usd for icon [thinBoxDollar] @Deprecated('Use "thinBoxDollar" instead.') @@ -11334,55 +11334,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-heart?style=solid /// care, donation, package, storage, wishlist - static const IconData solidBoxHeart = IconDataSolid(0xf49d); + static const IconData solidBoxHeart = IconData(0xf49d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Heart icon /// /// https://fontawesome.com/icons/box-heart?style=regular /// care, donation, package, storage, wishlist - static const IconData boxHeart = IconDataRegular(0xf49d); + static const IconData boxHeart = IconData(0xf49d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Heart icon /// /// https://fontawesome.com/icons/box-heart?style=light /// care, donation, package, storage, wishlist - static const IconData lightBoxHeart = IconDataLight(0xf49d); + static const IconData lightBoxHeart = IconData(0xf49d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Heart icon /// /// https://fontawesome.com/icons/box-heart?style=thin /// care, donation, package, storage, wishlist - static const IconData thinBoxHeart = IconDataThin(0xf49d); + static const IconData thinBoxHeart = IconData(0xf49d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Open icon /// /// https://fontawesome.com/icons/box-open?style=solid /// archive, container, package, storage, unpack - static const IconData solidBoxOpen = IconDataSolid(0xf49e); + static const IconData solidBoxOpen = IconData(0xf49e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Open icon /// /// https://fontawesome.com/icons/box-open?style=regular /// archive, container, package, storage, unpack - static const IconData boxOpen = IconDataRegular(0xf49e); + static const IconData boxOpen = IconData(0xf49e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Open icon /// /// https://fontawesome.com/icons/box-open?style=light /// archive, container, package, storage, unpack - static const IconData lightBoxOpen = IconDataLight(0xf49e); + static const IconData lightBoxOpen = IconData(0xf49e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Open icon /// /// https://fontawesome.com/icons/box-open?style=thin /// archive, container, package, storage, unpack - static const IconData thinBoxOpen = IconDataThin(0xf49e); + static const IconData thinBoxOpen = IconData(0xf49e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Box Open Full icon /// /// https://fontawesome.com/icons/box-open-full?style=solid /// attic, package, packed, storage - static const IconData solidBoxOpenFull = IconDataSolid(0xf49c); + static const IconData solidBoxOpenFull = IconData(0xf49c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias box-full for icon [solidBoxOpenFull] @Deprecated('Use "solidBoxOpenFull" instead.') @@ -11392,7 +11392,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-open-full?style=regular /// attic, package, packed, storage - static const IconData boxOpenFull = IconDataRegular(0xf49c); + static const IconData boxOpenFull = IconData(0xf49c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias box-full for icon [boxOpenFull] @Deprecated('Use "boxOpenFull" instead.') @@ -11402,7 +11402,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-open-full?style=light /// attic, package, packed, storage - static const IconData lightBoxOpenFull = IconDataLight(0xf49c); + static const IconData lightBoxOpenFull = IconData(0xf49c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias box-full for icon [lightBoxOpenFull] @Deprecated('Use "lightBoxOpenFull" instead.') @@ -11412,7 +11412,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-open-full?style=thin /// attic, package, packed, storage - static const IconData thinBoxOpenFull = IconDataThin(0xf49c); + static const IconData thinBoxOpenFull = IconData(0xf49c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias box-full for icon [thinBoxOpenFull] @Deprecated('Use "thinBoxOpenFull" instead.') @@ -11422,7 +11422,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-taped?style=solid /// archive, container, package, storage - static const IconData solidBoxTaped = IconDataSolid(0xf49a); + static const IconData solidBoxTaped = IconData(0xf49a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias box-alt for icon [solidBoxTaped] @Deprecated('Use "solidBoxTaped" instead.') @@ -11432,7 +11432,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-taped?style=regular /// archive, container, package, storage - static const IconData boxTaped = IconDataRegular(0xf49a); + static const IconData boxTaped = IconData(0xf49a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias box-alt for icon [boxTaped] @Deprecated('Use "boxTaped" instead.') @@ -11442,7 +11442,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-taped?style=light /// archive, container, package, storage - static const IconData lightBoxTaped = IconDataLight(0xf49a); + static const IconData lightBoxTaped = IconData(0xf49a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias box-alt for icon [lightBoxTaped] @Deprecated('Use "lightBoxTaped" instead.') @@ -11452,7 +11452,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-taped?style=thin /// archive, container, package, storage - static const IconData thinBoxTaped = IconDataThin(0xf49a); + static const IconData thinBoxTaped = IconData(0xf49a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias box-alt for icon [thinBoxTaped] @Deprecated('Use "thinBoxTaped" instead.') @@ -11462,55 +11462,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/box-tissue?style=solid /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData solidBoxTissue = IconDataSolid(0xe05b); + static const IconData solidBoxTissue = IconData(0xe05b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Box Tissue icon /// /// https://fontawesome.com/icons/box-tissue?style=regular /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData boxTissue = IconDataRegular(0xe05b); + static const IconData boxTissue = IconData(0xe05b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Box Tissue icon /// /// https://fontawesome.com/icons/box-tissue?style=light /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData lightBoxTissue = IconDataLight(0xe05b); + static const IconData lightBoxTissue = IconData(0xe05b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Box Tissue icon /// /// https://fontawesome.com/icons/box-tissue?style=thin /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData thinBoxTissue = IconDataThin(0xe05b); + static const IconData thinBoxTissue = IconData(0xe05b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Boxes Packing icon /// /// https://fontawesome.com/icons/boxes-packing?style=solid /// archive, box, package, storage, supplies - static const IconData solidBoxesPacking = IconDataSolid(0xe4c7); + static const IconData solidBoxesPacking = IconData(0xe4c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Boxes Packing icon /// /// https://fontawesome.com/icons/boxes-packing?style=regular /// archive, box, package, storage, supplies - static const IconData boxesPacking = IconDataRegular(0xe4c7); + static const IconData boxesPacking = IconData(0xe4c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Boxes Packing icon /// /// https://fontawesome.com/icons/boxes-packing?style=light /// archive, box, package, storage, supplies - static const IconData lightBoxesPacking = IconDataLight(0xe4c7); + static const IconData lightBoxesPacking = IconData(0xe4c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Boxes Packing icon /// /// https://fontawesome.com/icons/boxes-packing?style=thin /// archive, box, package, storage, supplies - static const IconData thinBoxesPacking = IconDataThin(0xe4c7); + static const IconData thinBoxesPacking = IconData(0xe4c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Boxes Stacked icon /// /// https://fontawesome.com/icons/boxes-stacked?style=solid /// archives, inventory, storage, warehouse - static const IconData solidBoxesStacked = IconDataSolid(0xf468); + static const IconData solidBoxesStacked = IconData(0xf468, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias boxes for icon [solidBoxesStacked] @Deprecated('Use "solidBoxesStacked" instead.') @@ -11524,7 +11524,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxes-stacked?style=regular /// archives, inventory, storage, warehouse - static const IconData boxesStacked = IconDataRegular(0xf468); + static const IconData boxesStacked = IconData(0xf468, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias boxes for icon [boxesStacked] @Deprecated('Use "boxesStacked" instead.') @@ -11538,7 +11538,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxes-stacked?style=light /// archives, inventory, storage, warehouse - static const IconData lightBoxesStacked = IconDataLight(0xf468); + static const IconData lightBoxesStacked = IconData(0xf468, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias boxes for icon [lightBoxesStacked] @Deprecated('Use "lightBoxesStacked" instead.') @@ -11552,7 +11552,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxes-stacked?style=thin /// archives, inventory, storage, warehouse - static const IconData thinBoxesStacked = IconDataThin(0xf468); + static const IconData thinBoxesStacked = IconData(0xf468, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias boxes for icon [thinBoxesStacked] @Deprecated('Use "thinBoxesStacked" instead.') @@ -11566,7 +11566,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxing-glove?style=solid /// boxer, boxing, boxing glove, fight, glove, heavyweight, spar - static const IconData solidBoxingGlove = IconDataSolid(0xf438); + static const IconData solidBoxingGlove = IconData(0xf438, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glove-boxing for icon [solidBoxingGlove] @Deprecated('Use "solidBoxingGlove" instead.') @@ -11576,7 +11576,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxing-glove?style=regular /// boxer, boxing, boxing glove, fight, glove, heavyweight, spar - static const IconData boxingGlove = IconDataRegular(0xf438); + static const IconData boxingGlove = IconData(0xf438, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glove-boxing for icon [boxingGlove] @Deprecated('Use "boxingGlove" instead.') @@ -11586,7 +11586,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxing-glove?style=light /// boxer, boxing, boxing glove, fight, glove, heavyweight, spar - static const IconData lightBoxingGlove = IconDataLight(0xf438); + static const IconData lightBoxingGlove = IconData(0xf438, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glove-boxing for icon [lightBoxingGlove] @Deprecated('Use "lightBoxingGlove" instead.') @@ -11596,7 +11596,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/boxing-glove?style=thin /// boxer, boxing, boxing glove, fight, glove, heavyweight, spar - static const IconData thinBoxingGlove = IconDataThin(0xf438); + static const IconData thinBoxingGlove = IconData(0xf438, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glove-boxing for icon [thinBoxingGlove] @Deprecated('Use "thinBoxingGlove" instead.') @@ -11606,7 +11606,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-curly?style=solid /// Left Curly Bracket, braces, code - static const IconData solidBracketCurly = IconDataSolid(0x7b); + static const IconData solidBracketCurly = IconData(0x7b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bracket-curly-left for icon [solidBracketCurly] @Deprecated('Use "solidBracketCurly" instead.') @@ -11616,7 +11616,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-curly?style=regular /// Left Curly Bracket, braces, code - static const IconData bracketCurly = IconDataRegular(0x7b); + static const IconData bracketCurly = IconData(0x7b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bracket-curly-left for icon [bracketCurly] @Deprecated('Use "bracketCurly" instead.') @@ -11626,7 +11626,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-curly?style=light /// Left Curly Bracket, braces, code - static const IconData lightBracketCurly = IconDataLight(0x7b); + static const IconData lightBracketCurly = IconData(0x7b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bracket-curly-left for icon [lightBracketCurly] @Deprecated('Use "lightBracketCurly" instead.') @@ -11636,7 +11636,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-curly?style=thin /// Left Curly Bracket, braces, code - static const IconData thinBracketCurly = IconDataThin(0x7b); + static const IconData thinBracketCurly = IconData(0x7b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bracket-curly-left for icon [thinBracketCurly] @Deprecated('Use "thinBracketCurly" instead.') @@ -11646,31 +11646,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-curly-right?style=solid /// Right Curly Bracket, braces, code - static const IconData solidBracketCurlyRight = IconDataSolid(0x7d); + static const IconData solidBracketCurlyRight = IconData(0x7d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bracket Curly Right icon /// /// https://fontawesome.com/icons/bracket-curly-right?style=regular /// Right Curly Bracket, braces, code - static const IconData bracketCurlyRight = IconDataRegular(0x7d); + static const IconData bracketCurlyRight = IconData(0x7d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bracket Curly Right icon /// /// https://fontawesome.com/icons/bracket-curly-right?style=light /// Right Curly Bracket, braces, code - static const IconData lightBracketCurlyRight = IconDataLight(0x7d); + static const IconData lightBracketCurlyRight = IconData(0x7d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bracket Curly Right icon /// /// https://fontawesome.com/icons/bracket-curly-right?style=thin /// Right Curly Bracket, braces, code - static const IconData thinBracketCurlyRight = IconDataThin(0x7d); + static const IconData thinBracketCurlyRight = IconData(0x7d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bracket Round icon /// /// https://fontawesome.com/icons/bracket-round?style=solid /// Left Parenthesis, parentheses - static const IconData solidBracketRound = IconDataSolid(0x28); + static const IconData solidBracketRound = IconData(0x28, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parenthesis for icon [solidBracketRound] @Deprecated('Use "solidBracketRound" instead.') @@ -11680,7 +11680,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-round?style=regular /// Left Parenthesis, parentheses - static const IconData bracketRound = IconDataRegular(0x28); + static const IconData bracketRound = IconData(0x28, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parenthesis for icon [bracketRound] @Deprecated('Use "bracketRound" instead.') @@ -11690,7 +11690,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-round?style=light /// Left Parenthesis, parentheses - static const IconData lightBracketRound = IconDataLight(0x28); + static const IconData lightBracketRound = IconData(0x28, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parenthesis for icon [lightBracketRound] @Deprecated('Use "lightBracketRound" instead.') @@ -11700,7 +11700,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-round?style=thin /// Left Parenthesis, parentheses - static const IconData thinBracketRound = IconDataThin(0x28); + static const IconData thinBracketRound = IconData(0x28, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parenthesis for icon [thinBracketRound] @Deprecated('Use "thinBracketRound" instead.') @@ -11710,31 +11710,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-round-right?style=solid /// Right Parenthesis, parentheses - static const IconData solidBracketRoundRight = IconDataSolid(0x29); + static const IconData solidBracketRoundRight = IconData(0x29, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bracket Round Right icon /// /// https://fontawesome.com/icons/bracket-round-right?style=regular /// Right Parenthesis, parentheses - static const IconData bracketRoundRight = IconDataRegular(0x29); + static const IconData bracketRoundRight = IconData(0x29, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bracket Round Right icon /// /// https://fontawesome.com/icons/bracket-round-right?style=light /// Right Parenthesis, parentheses - static const IconData lightBracketRoundRight = IconDataLight(0x29); + static const IconData lightBracketRoundRight = IconData(0x29, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bracket Round Right icon /// /// https://fontawesome.com/icons/bracket-round-right?style=thin /// Right Parenthesis, parentheses - static const IconData thinBracketRoundRight = IconDataThin(0x29); + static const IconData thinBracketRoundRight = IconData(0x29, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bracket Square icon /// /// https://fontawesome.com/icons/bracket-square?style=solid /// Left Square Bracket, code, crotchets - static const IconData solidBracketSquare = IconDataSolid(0x5b); + static const IconData solidBracketSquare = IconData(0x5b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bracket for icon [solidBracketSquare] @Deprecated('Use "solidBracketSquare" instead.') @@ -11748,7 +11748,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-square?style=regular /// Left Square Bracket, code, crotchets - static const IconData bracketSquare = IconDataRegular(0x5b); + static const IconData bracketSquare = IconData(0x5b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bracket for icon [bracketSquare] @Deprecated('Use "bracketSquare" instead.') @@ -11762,7 +11762,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-square?style=light /// Left Square Bracket, code, crotchets - static const IconData lightBracketSquare = IconDataLight(0x5b); + static const IconData lightBracketSquare = IconData(0x5b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bracket for icon [lightBracketSquare] @Deprecated('Use "lightBracketSquare" instead.') @@ -11776,7 +11776,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-square?style=thin /// Left Square Bracket, code, crotchets - static const IconData thinBracketSquare = IconDataThin(0x5b); + static const IconData thinBracketSquare = IconData(0x5b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bracket for icon [thinBracketSquare] @Deprecated('Use "thinBracketSquare" instead.') @@ -11790,55 +11790,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bracket-square-right?style=solid /// Right Square Bracket, code, crotchets - static const IconData solidBracketSquareRight = IconDataSolid(0x5d); + static const IconData solidBracketSquareRight = IconData(0x5d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bracket Square Right icon /// /// https://fontawesome.com/icons/bracket-square-right?style=regular /// Right Square Bracket, code, crotchets - static const IconData bracketSquareRight = IconDataRegular(0x5d); + static const IconData bracketSquareRight = IconData(0x5d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bracket Square Right icon /// /// https://fontawesome.com/icons/bracket-square-right?style=light /// Right Square Bracket, code, crotchets - static const IconData lightBracketSquareRight = IconDataLight(0x5d); + static const IconData lightBracketSquareRight = IconData(0x5d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bracket Square Right icon /// /// https://fontawesome.com/icons/bracket-square-right?style=thin /// Right Square Bracket, code, crotchets - static const IconData thinBracketSquareRight = IconDataThin(0x5d); + static const IconData thinBracketSquareRight = IconData(0x5d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brackets Curly icon /// /// https://fontawesome.com/icons/brackets-curly?style=solid /// code, developer, development, parentheses - static const IconData solidBracketsCurly = IconDataSolid(0xf7ea); + static const IconData solidBracketsCurly = IconData(0xf7ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brackets Curly icon /// /// https://fontawesome.com/icons/brackets-curly?style=regular /// code, developer, development, parentheses - static const IconData bracketsCurly = IconDataRegular(0xf7ea); + static const IconData bracketsCurly = IconData(0xf7ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brackets Curly icon /// /// https://fontawesome.com/icons/brackets-curly?style=light /// code, developer, development, parentheses - static const IconData lightBracketsCurly = IconDataLight(0xf7ea); + static const IconData lightBracketsCurly = IconData(0xf7ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brackets Curly icon /// /// https://fontawesome.com/icons/brackets-curly?style=thin /// code, developer, development, parentheses - static const IconData thinBracketsCurly = IconDataThin(0xf7ea); + static const IconData thinBracketsCurly = IconData(0xf7ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brackets Round icon /// /// https://fontawesome.com/icons/brackets-round?style=solid /// parentheses - static const IconData solidBracketsRound = IconDataSolid(0xe0c5); + static const IconData solidBracketsRound = IconData(0xe0c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parentheses for icon [solidBracketsRound] @Deprecated('Use "solidBracketsRound" instead.') @@ -11848,7 +11848,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-round?style=regular /// parentheses - static const IconData bracketsRound = IconDataRegular(0xe0c5); + static const IconData bracketsRound = IconData(0xe0c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parentheses for icon [bracketsRound] @Deprecated('Use "bracketsRound" instead.') @@ -11858,7 +11858,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-round?style=light /// parentheses - static const IconData lightBracketsRound = IconDataLight(0xe0c5); + static const IconData lightBracketsRound = IconData(0xe0c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parentheses for icon [lightBracketsRound] @Deprecated('Use "lightBracketsRound" instead.') @@ -11868,7 +11868,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-round?style=thin /// parentheses - static const IconData thinBracketsRound = IconDataThin(0xe0c5); + static const IconData thinBracketsRound = IconData(0xe0c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parentheses for icon [thinBracketsRound] @Deprecated('Use "thinBracketsRound" instead.') @@ -11878,7 +11878,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-square?style=solid /// code, developer, development, parentheses - static const IconData solidBracketsSquare = IconDataSolid(0xf7e9); + static const IconData solidBracketsSquare = IconData(0xf7e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias brackets for icon [solidBracketsSquare] @Deprecated('Use "solidBracketsSquare" instead.') @@ -11888,7 +11888,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-square?style=regular /// code, developer, development, parentheses - static const IconData bracketsSquare = IconDataRegular(0xf7e9); + static const IconData bracketsSquare = IconData(0xf7e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias brackets for icon [bracketsSquare] @Deprecated('Use "bracketsSquare" instead.') @@ -11898,7 +11898,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-square?style=light /// code, developer, development, parentheses - static const IconData lightBracketsSquare = IconDataLight(0xf7e9); + static const IconData lightBracketsSquare = IconData(0xf7e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias brackets for icon [lightBracketsSquare] @Deprecated('Use "lightBracketsSquare" instead.') @@ -11908,7 +11908,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brackets-square?style=thin /// code, developer, development, parentheses - static const IconData thinBracketsSquare = IconDataThin(0xf7e9); + static const IconData thinBracketsSquare = IconData(0xf7e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias brackets for icon [thinBracketsSquare] @Deprecated('Use "thinBracketsSquare" instead.') @@ -11918,55 +11918,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/braille?style=solid /// alphabet, blind, dots, raised, vision - static const IconData solidBraille = IconDataSolid(0xf2a1); + static const IconData solidBraille = IconData(0xf2a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Braille icon /// /// https://fontawesome.com/icons/braille?style=regular /// alphabet, blind, dots, raised, vision - static const IconData braille = IconDataRegular(0xf2a1); + static const IconData braille = IconData(0xf2a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Braille icon /// /// https://fontawesome.com/icons/braille?style=light /// alphabet, blind, dots, raised, vision - static const IconData lightBraille = IconDataLight(0xf2a1); + static const IconData lightBraille = IconData(0xf2a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Braille icon /// /// https://fontawesome.com/icons/braille?style=thin /// alphabet, blind, dots, raised, vision - static const IconData thinBraille = IconDataThin(0xf2a1); + static const IconData thinBraille = IconData(0xf2a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brain icon /// /// https://fontawesome.com/icons/brain?style=solid /// brain, cerebellum, gray matter, intellect, intelligent, knowledge, medulla oblongata, mind, noodle, scholar, wit - static const IconData solidBrain = IconDataSolid(0xf5dc); + static const IconData solidBrain = IconData(0xf5dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brain icon /// /// https://fontawesome.com/icons/brain?style=regular /// brain, cerebellum, gray matter, intellect, intelligent, knowledge, medulla oblongata, mind, noodle, scholar, wit - static const IconData brain = IconDataRegular(0xf5dc); + static const IconData brain = IconData(0xf5dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brain icon /// /// https://fontawesome.com/icons/brain?style=light /// brain, cerebellum, gray matter, intellect, intelligent, knowledge, medulla oblongata, mind, noodle, scholar, wit - static const IconData lightBrain = IconDataLight(0xf5dc); + static const IconData lightBrain = IconData(0xf5dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brain icon /// /// https://fontawesome.com/icons/brain?style=thin /// brain, cerebellum, gray matter, intellect, intelligent, knowledge, medulla oblongata, mind, noodle, scholar, wit - static const IconData thinBrain = IconDataThin(0xf5dc); + static const IconData thinBrain = IconData(0xf5dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brain Arrow Curved Right icon /// /// https://fontawesome.com/icons/brain-arrow-curved-right?style=solid /// brain, brainstorming, meeting, planning - static const IconData solidBrainArrowCurvedRight = IconDataSolid(0xf677); + static const IconData solidBrainArrowCurvedRight = IconData(0xf677, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mind-share for icon [solidBrainArrowCurvedRight] @Deprecated('Use "solidBrainArrowCurvedRight" instead.') @@ -11976,7 +11976,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brain-arrow-curved-right?style=regular /// brain, brainstorming, meeting, planning - static const IconData brainArrowCurvedRight = IconDataRegular(0xf677); + static const IconData brainArrowCurvedRight = IconData(0xf677, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mind-share for icon [brainArrowCurvedRight] @Deprecated('Use "brainArrowCurvedRight" instead.') @@ -11986,7 +11986,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brain-arrow-curved-right?style=light /// brain, brainstorming, meeting, planning - static const IconData lightBrainArrowCurvedRight = IconDataLight(0xf677); + static const IconData lightBrainArrowCurvedRight = IconData(0xf677, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mind-share for icon [lightBrainArrowCurvedRight] @Deprecated('Use "lightBrainArrowCurvedRight" instead.') @@ -11996,7 +11996,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brain-arrow-curved-right?style=thin /// brain, brainstorming, meeting, planning - static const IconData thinBrainArrowCurvedRight = IconDataThin(0xf677); + static const IconData thinBrainArrowCurvedRight = IconData(0xf677, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mind-share for icon [thinBrainArrowCurvedRight] @Deprecated('Use "thinBrainArrowCurvedRight" instead.') @@ -12006,569 +12006,569 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/brain-circuit?style=solid /// ai, android, artificial intelligence, brain, genius, knowledge, scholar - static const IconData solidBrainCircuit = IconDataSolid(0xe0c6); + static const IconData solidBrainCircuit = IconData(0xe0c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brain Circuit icon /// /// https://fontawesome.com/icons/brain-circuit?style=regular /// ai, android, artificial intelligence, brain, genius, knowledge, scholar - static const IconData brainCircuit = IconDataRegular(0xe0c6); + static const IconData brainCircuit = IconData(0xe0c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brain Circuit icon /// /// https://fontawesome.com/icons/brain-circuit?style=light /// ai, android, artificial intelligence, brain, genius, knowledge, scholar - static const IconData lightBrainCircuit = IconDataLight(0xe0c6); + static const IconData lightBrainCircuit = IconData(0xe0c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brain Circuit icon /// /// https://fontawesome.com/icons/brain-circuit?style=thin /// ai, android, artificial intelligence, brain, genius, knowledge, scholar - static const IconData thinBrainCircuit = IconDataThin(0xe0c6); + static const IconData thinBrainCircuit = IconData(0xe0c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brake Warning icon /// /// https://fontawesome.com/icons/brake-warning?style=solid /// ABS, accident, alert, dashboard - static const IconData solidBrakeWarning = IconDataSolid(0xe0c7); + static const IconData solidBrakeWarning = IconData(0xe0c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brake Warning icon /// /// https://fontawesome.com/icons/brake-warning?style=regular /// ABS, accident, alert, dashboard - static const IconData brakeWarning = IconDataRegular(0xe0c7); + static const IconData brakeWarning = IconData(0xe0c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brake Warning icon /// /// https://fontawesome.com/icons/brake-warning?style=light /// ABS, accident, alert, dashboard - static const IconData lightBrakeWarning = IconDataLight(0xe0c7); + static const IconData lightBrakeWarning = IconData(0xe0c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brake Warning icon /// /// https://fontawesome.com/icons/brake-warning?style=thin /// ABS, accident, alert, dashboard - static const IconData thinBrakeWarning = IconDataThin(0xe0c7); + static const IconData thinBrakeWarning = IconData(0xe0c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Brave icon /// /// https://fontawesome.com/icons/brave?style=brands - static const IconData brave = IconDataBrands(0xe63c); + static const IconData brave = IconData(0xe63c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Brave Reverse icon /// /// https://fontawesome.com/icons/brave-reverse?style=brands - static const IconData braveReverse = IconDataBrands(0xe63d); + static const IconData braveReverse = IconData(0xe63d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Brazilian Real Sign icon /// /// https://fontawesome.com/icons/brazilian-real-sign?style=solid /// brazilian real sign, currency - static const IconData solidBrazilianRealSign = IconDataSolid(0xe46c); + static const IconData solidBrazilianRealSign = IconData(0xe46c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brazilian Real Sign icon /// /// https://fontawesome.com/icons/brazilian-real-sign?style=regular /// brazilian real sign, currency - static const IconData brazilianRealSign = IconDataRegular(0xe46c); + static const IconData brazilianRealSign = IconData(0xe46c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brazilian Real Sign icon /// /// https://fontawesome.com/icons/brazilian-real-sign?style=light /// brazilian real sign, currency - static const IconData lightBrazilianRealSign = IconDataLight(0xe46c); + static const IconData lightBrazilianRealSign = IconData(0xe46c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brazilian Real Sign icon /// /// https://fontawesome.com/icons/brazilian-real-sign?style=thin /// brazilian real sign, currency - static const IconData thinBrazilianRealSign = IconDataThin(0xe46c); + static const IconData thinBrazilianRealSign = IconData(0xe46c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bread Loaf icon /// /// https://fontawesome.com/icons/bread-loaf?style=solid /// bake, bakery, baking, bread, dough, flour, gluten, grain, loaf, sandwich, sourdough, toast, wheat, yeast - static const IconData solidBreadLoaf = IconDataSolid(0xf7eb); + static const IconData solidBreadLoaf = IconData(0xf7eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bread Loaf icon /// /// https://fontawesome.com/icons/bread-loaf?style=regular /// bake, bakery, baking, bread, dough, flour, gluten, grain, loaf, sandwich, sourdough, toast, wheat, yeast - static const IconData breadLoaf = IconDataRegular(0xf7eb); + static const IconData breadLoaf = IconData(0xf7eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bread Loaf icon /// /// https://fontawesome.com/icons/bread-loaf?style=light /// bake, bakery, baking, bread, dough, flour, gluten, grain, loaf, sandwich, sourdough, toast, wheat, yeast - static const IconData lightBreadLoaf = IconDataLight(0xf7eb); + static const IconData lightBreadLoaf = IconData(0xf7eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bread Loaf icon /// /// https://fontawesome.com/icons/bread-loaf?style=thin /// bake, bakery, baking, bread, dough, flour, gluten, grain, loaf, sandwich, sourdough, toast, wheat, yeast - static const IconData thinBreadLoaf = IconDataThin(0xf7eb); + static const IconData thinBreadLoaf = IconData(0xf7eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bread Slice icon /// /// https://fontawesome.com/icons/bread-slice?style=solid /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData solidBreadSlice = IconDataSolid(0xf7ec); + static const IconData solidBreadSlice = IconData(0xf7ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bread Slice icon /// /// https://fontawesome.com/icons/bread-slice?style=regular /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData breadSlice = IconDataRegular(0xf7ec); + static const IconData breadSlice = IconData(0xf7ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bread Slice icon /// /// https://fontawesome.com/icons/bread-slice?style=light /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData lightBreadSlice = IconDataLight(0xf7ec); + static const IconData lightBreadSlice = IconData(0xf7ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bread Slice icon /// /// https://fontawesome.com/icons/bread-slice?style=thin /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData thinBreadSlice = IconDataThin(0xf7ec); + static const IconData thinBreadSlice = IconData(0xf7ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bread Slice Butter icon /// /// https://fontawesome.com/icons/bread-slice-butter?style=solid /// bread, breakfast, butter, toast - static const IconData solidBreadSliceButter = IconDataSolid(0xe3e1); + static const IconData solidBreadSliceButter = IconData(0xe3e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bread Slice Butter icon /// /// https://fontawesome.com/icons/bread-slice-butter?style=regular /// bread, breakfast, butter, toast - static const IconData breadSliceButter = IconDataRegular(0xe3e1); + static const IconData breadSliceButter = IconData(0xe3e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bread Slice Butter icon /// /// https://fontawesome.com/icons/bread-slice-butter?style=light /// bread, breakfast, butter, toast - static const IconData lightBreadSliceButter = IconDataLight(0xe3e1); + static const IconData lightBreadSliceButter = IconData(0xe3e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bread Slice Butter icon /// /// https://fontawesome.com/icons/bread-slice-butter?style=thin /// bread, breakfast, butter, toast - static const IconData thinBreadSliceButter = IconDataThin(0xe3e1); + static const IconData thinBreadSliceButter = IconData(0xe3e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge icon /// /// https://fontawesome.com/icons/bridge?style=solid /// bridge, road - static const IconData solidBridge = IconDataSolid(0xe4c8); + static const IconData solidBridge = IconData(0xe4c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge icon /// /// https://fontawesome.com/icons/bridge?style=regular /// bridge, road - static const IconData bridge = IconDataRegular(0xe4c8); + static const IconData bridge = IconData(0xe4c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge icon /// /// https://fontawesome.com/icons/bridge?style=light /// bridge, road - static const IconData lightBridge = IconDataLight(0xe4c8); + static const IconData lightBridge = IconData(0xe4c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge icon /// /// https://fontawesome.com/icons/bridge?style=thin /// bridge, road - static const IconData thinBridge = IconDataThin(0xe4c8); + static const IconData thinBridge = IconData(0xe4c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Circle Check icon /// /// https://fontawesome.com/icons/bridge-circle-check?style=solid /// bridge, enable, not affected, ok, okay, road, validate, working - static const IconData solidBridgeCircleCheck = IconDataSolid(0xe4c9); + static const IconData solidBridgeCircleCheck = IconData(0xe4c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Circle Check icon /// /// https://fontawesome.com/icons/bridge-circle-check?style=regular /// bridge, enable, not affected, ok, okay, road, validate, working - static const IconData bridgeCircleCheck = IconDataRegular(0xe4c9); + static const IconData bridgeCircleCheck = IconData(0xe4c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Circle Check icon /// /// https://fontawesome.com/icons/bridge-circle-check?style=light /// bridge, enable, not affected, ok, okay, road, validate, working - static const IconData lightBridgeCircleCheck = IconDataLight(0xe4c9); + static const IconData lightBridgeCircleCheck = IconData(0xe4c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Circle Check icon /// /// https://fontawesome.com/icons/bridge-circle-check?style=thin /// bridge, enable, not affected, ok, okay, road, validate, working - static const IconData thinBridgeCircleCheck = IconDataThin(0xe4c9); + static const IconData thinBridgeCircleCheck = IconData(0xe4c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Circle Exclamation icon /// /// https://fontawesome.com/icons/bridge-circle-exclamation?style=solid /// affected, bridge, failed, road - static const IconData solidBridgeCircleExclamation = IconDataSolid(0xe4ca); + static const IconData solidBridgeCircleExclamation = IconData(0xe4ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Circle Exclamation icon /// /// https://fontawesome.com/icons/bridge-circle-exclamation?style=regular /// affected, bridge, failed, road - static const IconData bridgeCircleExclamation = IconDataRegular(0xe4ca); + static const IconData bridgeCircleExclamation = IconData(0xe4ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Circle Exclamation icon /// /// https://fontawesome.com/icons/bridge-circle-exclamation?style=light /// affected, bridge, failed, road - static const IconData lightBridgeCircleExclamation = IconDataLight(0xe4ca); + static const IconData lightBridgeCircleExclamation = IconData(0xe4ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Circle Exclamation icon /// /// https://fontawesome.com/icons/bridge-circle-exclamation?style=thin /// affected, bridge, failed, road - static const IconData thinBridgeCircleExclamation = IconDataThin(0xe4ca); + static const IconData thinBridgeCircleExclamation = IconData(0xe4ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Circle Xmark icon /// /// https://fontawesome.com/icons/bridge-circle-xmark?style=solid /// bridge, destroy, road, uncheck - static const IconData solidBridgeCircleXmark = IconDataSolid(0xe4cb); + static const IconData solidBridgeCircleXmark = IconData(0xe4cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Circle Xmark icon /// /// https://fontawesome.com/icons/bridge-circle-xmark?style=regular /// bridge, destroy, road, uncheck - static const IconData bridgeCircleXmark = IconDataRegular(0xe4cb); + static const IconData bridgeCircleXmark = IconData(0xe4cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Circle Xmark icon /// /// https://fontawesome.com/icons/bridge-circle-xmark?style=light /// bridge, destroy, road, uncheck - static const IconData lightBridgeCircleXmark = IconDataLight(0xe4cb); + static const IconData lightBridgeCircleXmark = IconData(0xe4cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Circle Xmark icon /// /// https://fontawesome.com/icons/bridge-circle-xmark?style=thin /// bridge, destroy, road, uncheck - static const IconData thinBridgeCircleXmark = IconDataThin(0xe4cb); + static const IconData thinBridgeCircleXmark = IconData(0xe4cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Lock icon /// /// https://fontawesome.com/icons/bridge-lock?style=solid /// bridge, closed, lockdown, padlock, privacy, quarantine, road - static const IconData solidBridgeLock = IconDataSolid(0xe4cc); + static const IconData solidBridgeLock = IconData(0xe4cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Lock icon /// /// https://fontawesome.com/icons/bridge-lock?style=regular /// bridge, closed, lockdown, padlock, privacy, quarantine, road - static const IconData bridgeLock = IconDataRegular(0xe4cc); + static const IconData bridgeLock = IconData(0xe4cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Lock icon /// /// https://fontawesome.com/icons/bridge-lock?style=light /// bridge, closed, lockdown, padlock, privacy, quarantine, road - static const IconData lightBridgeLock = IconDataLight(0xe4cc); + static const IconData lightBridgeLock = IconData(0xe4cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Lock icon /// /// https://fontawesome.com/icons/bridge-lock?style=thin /// bridge, closed, lockdown, padlock, privacy, quarantine, road - static const IconData thinBridgeLock = IconDataThin(0xe4cc); + static const IconData thinBridgeLock = IconData(0xe4cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Suspension icon /// /// https://fontawesome.com/icons/bridge-suspension?style=solid /// bridge, connect, cross, golden gate, join, overpass, road, span, suspension - static const IconData solidBridgeSuspension = IconDataSolid(0xe4cd); + static const IconData solidBridgeSuspension = IconData(0xe4cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Suspension icon /// /// https://fontawesome.com/icons/bridge-suspension?style=regular /// bridge, connect, cross, golden gate, join, overpass, road, span, suspension - static const IconData bridgeSuspension = IconDataRegular(0xe4cd); + static const IconData bridgeSuspension = IconData(0xe4cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Suspension icon /// /// https://fontawesome.com/icons/bridge-suspension?style=light /// bridge, connect, cross, golden gate, join, overpass, road, span, suspension - static const IconData lightBridgeSuspension = IconDataLight(0xe4cd); + static const IconData lightBridgeSuspension = IconData(0xe4cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Suspension icon /// /// https://fontawesome.com/icons/bridge-suspension?style=thin /// bridge, connect, cross, golden gate, join, overpass, road, span, suspension - static const IconData thinBridgeSuspension = IconDataThin(0xe4cd); + static const IconData thinBridgeSuspension = IconData(0xe4cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bridge Water icon /// /// https://fontawesome.com/icons/bridge-water?style=solid /// bridge, road - static const IconData solidBridgeWater = IconDataSolid(0xe4ce); + static const IconData solidBridgeWater = IconData(0xe4ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bridge Water icon /// /// https://fontawesome.com/icons/bridge-water?style=regular /// bridge, road - static const IconData bridgeWater = IconDataRegular(0xe4ce); + static const IconData bridgeWater = IconData(0xe4ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bridge Water icon /// /// https://fontawesome.com/icons/bridge-water?style=light /// bridge, road - static const IconData lightBridgeWater = IconDataLight(0xe4ce); + static const IconData lightBridgeWater = IconData(0xe4ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bridge Water icon /// /// https://fontawesome.com/icons/bridge-water?style=thin /// bridge, road - static const IconData thinBridgeWater = IconDataThin(0xe4ce); + static const IconData thinBridgeWater = IconData(0xe4ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Briefcase icon /// /// https://fontawesome.com/icons/briefcase?style=solid /// bag, briefcas, briefcase, business, luggage, offer, office, portfolio, work - static const IconData solidBriefcase = IconDataSolid(0xf0b1); + static const IconData solidBriefcase = IconData(0xf0b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Briefcase icon /// /// https://fontawesome.com/icons/briefcase?style=regular /// bag, briefcas, briefcase, business, luggage, offer, office, portfolio, work - static const IconData briefcase = IconDataRegular(0xf0b1); + static const IconData briefcase = IconData(0xf0b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Briefcase icon /// /// https://fontawesome.com/icons/briefcase?style=light /// bag, briefcas, briefcase, business, luggage, offer, office, portfolio, work - static const IconData lightBriefcase = IconDataLight(0xf0b1); + static const IconData lightBriefcase = IconData(0xf0b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Briefcase icon /// /// https://fontawesome.com/icons/briefcase?style=thin /// bag, briefcas, briefcase, business, luggage, offer, office, portfolio, work - static const IconData thinBriefcase = IconDataThin(0xf0b1); + static const IconData thinBriefcase = IconData(0xf0b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Briefcase Arrow Right icon /// /// https://fontawesome.com/icons/briefcase-arrow-right?style=solid /// suitcase, tomorrow, travel - static const IconData solidBriefcaseArrowRight = IconDataSolid(0xe2f2); + static const IconData solidBriefcaseArrowRight = IconData(0xe2f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Briefcase Arrow Right icon /// /// https://fontawesome.com/icons/briefcase-arrow-right?style=regular /// suitcase, tomorrow, travel - static const IconData briefcaseArrowRight = IconDataRegular(0xe2f2); + static const IconData briefcaseArrowRight = IconData(0xe2f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Briefcase Arrow Right icon /// /// https://fontawesome.com/icons/briefcase-arrow-right?style=light /// suitcase, tomorrow, travel - static const IconData lightBriefcaseArrowRight = IconDataLight(0xe2f2); + static const IconData lightBriefcaseArrowRight = IconData(0xe2f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Briefcase Arrow Right icon /// /// https://fontawesome.com/icons/briefcase-arrow-right?style=thin /// suitcase, tomorrow, travel - static const IconData thinBriefcaseArrowRight = IconDataThin(0xe2f2); + static const IconData thinBriefcaseArrowRight = IconData(0xe2f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Briefcase Blank icon /// /// https://fontawesome.com/icons/briefcase-blank?style=solid /// bag, business, luggage, offer, office, portfolio, work - static const IconData solidBriefcaseBlank = IconDataSolid(0xe0c8); + static const IconData solidBriefcaseBlank = IconData(0xe0c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Briefcase Blank icon /// /// https://fontawesome.com/icons/briefcase-blank?style=regular /// bag, business, luggage, offer, office, portfolio, work - static const IconData briefcaseBlank = IconDataRegular(0xe0c8); + static const IconData briefcaseBlank = IconData(0xe0c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Briefcase Blank icon /// /// https://fontawesome.com/icons/briefcase-blank?style=light /// bag, business, luggage, offer, office, portfolio, work - static const IconData lightBriefcaseBlank = IconDataLight(0xe0c8); + static const IconData lightBriefcaseBlank = IconData(0xe0c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Briefcase Blank icon /// /// https://fontawesome.com/icons/briefcase-blank?style=thin /// bag, business, luggage, offer, office, portfolio, work - static const IconData thinBriefcaseBlank = IconDataThin(0xe0c8); + static const IconData thinBriefcaseBlank = IconData(0xe0c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Briefcase Medical icon /// /// https://fontawesome.com/icons/briefcase-medical?style=solid /// doctor, emt, first aid, health - static const IconData solidBriefcaseMedical = IconDataSolid(0xf469); + static const IconData solidBriefcaseMedical = IconData(0xf469, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Briefcase Medical icon /// /// https://fontawesome.com/icons/briefcase-medical?style=regular /// doctor, emt, first aid, health - static const IconData briefcaseMedical = IconDataRegular(0xf469); + static const IconData briefcaseMedical = IconData(0xf469, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Briefcase Medical icon /// /// https://fontawesome.com/icons/briefcase-medical?style=light /// doctor, emt, first aid, health - static const IconData lightBriefcaseMedical = IconDataLight(0xf469); + static const IconData lightBriefcaseMedical = IconData(0xf469, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Briefcase Medical icon /// /// https://fontawesome.com/icons/briefcase-medical?style=thin /// doctor, emt, first aid, health - static const IconData thinBriefcaseMedical = IconDataThin(0xf469); + static const IconData thinBriefcaseMedical = IconData(0xf469, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brightness icon /// /// https://fontawesome.com/icons/brightness?style=solid /// bright, bright button, brightness, display, light, sun - static const IconData solidBrightness = IconDataSolid(0xe0c9); + static const IconData solidBrightness = IconData(0xe0c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brightness icon /// /// https://fontawesome.com/icons/brightness?style=regular /// bright, bright button, brightness, display, light, sun - static const IconData brightness = IconDataRegular(0xe0c9); + static const IconData brightness = IconData(0xe0c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brightness icon /// /// https://fontawesome.com/icons/brightness?style=light /// bright, bright button, brightness, display, light, sun - static const IconData lightBrightness = IconDataLight(0xe0c9); + static const IconData lightBrightness = IconData(0xe0c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brightness icon /// /// https://fontawesome.com/icons/brightness?style=thin /// bright, bright button, brightness, display, light, sun - static const IconData thinBrightness = IconDataThin(0xe0c9); + static const IconData thinBrightness = IconData(0xe0c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brightness Low icon /// /// https://fontawesome.com/icons/brightness-low?style=solid /// bright, brightness, dim, dim button, display, light, low, sun - static const IconData solidBrightnessLow = IconDataSolid(0xe0ca); + static const IconData solidBrightnessLow = IconData(0xe0ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brightness Low icon /// /// https://fontawesome.com/icons/brightness-low?style=regular /// bright, brightness, dim, dim button, display, light, low, sun - static const IconData brightnessLow = IconDataRegular(0xe0ca); + static const IconData brightnessLow = IconData(0xe0ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brightness Low icon /// /// https://fontawesome.com/icons/brightness-low?style=light /// bright, brightness, dim, dim button, display, light, low, sun - static const IconData lightBrightnessLow = IconDataLight(0xe0ca); + static const IconData lightBrightnessLow = IconData(0xe0ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brightness Low icon /// /// https://fontawesome.com/icons/brightness-low?style=thin /// bright, brightness, dim, dim button, display, light, low, sun - static const IconData thinBrightnessLow = IconDataThin(0xe0ca); + static const IconData thinBrightnessLow = IconData(0xe0ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bring Forward icon /// /// https://fontawesome.com/icons/bring-forward?style=solid /// arrange, front, layer, order, stack - static const IconData solidBringForward = IconDataSolid(0xf856); + static const IconData solidBringForward = IconData(0xf856, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bring Forward icon /// /// https://fontawesome.com/icons/bring-forward?style=regular /// arrange, front, layer, order, stack - static const IconData bringForward = IconDataRegular(0xf856); + static const IconData bringForward = IconData(0xf856, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bring Forward icon /// /// https://fontawesome.com/icons/bring-forward?style=light /// arrange, front, layer, order, stack - static const IconData lightBringForward = IconDataLight(0xf856); + static const IconData lightBringForward = IconData(0xf856, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bring Forward icon /// /// https://fontawesome.com/icons/bring-forward?style=thin /// arrange, front, layer, order, stack - static const IconData thinBringForward = IconDataThin(0xf856); + static const IconData thinBringForward = IconData(0xf856, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bring Front icon /// /// https://fontawesome.com/icons/bring-front?style=solid /// arrange, forward, layer, order, stack - static const IconData solidBringFront = IconDataSolid(0xf857); + static const IconData solidBringFront = IconData(0xf857, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bring Front icon /// /// https://fontawesome.com/icons/bring-front?style=regular /// arrange, forward, layer, order, stack - static const IconData bringFront = IconDataRegular(0xf857); + static const IconData bringFront = IconData(0xf857, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bring Front icon /// /// https://fontawesome.com/icons/bring-front?style=light /// arrange, forward, layer, order, stack - static const IconData lightBringFront = IconDataLight(0xf857); + static const IconData lightBringFront = IconData(0xf857, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bring Front icon /// /// https://fontawesome.com/icons/bring-front?style=thin /// arrange, forward, layer, order, stack - static const IconData thinBringFront = IconDataThin(0xf857); + static const IconData thinBringFront = IconData(0xf857, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Broccoli icon /// /// https://fontawesome.com/icons/broccoli?style=solid /// bush, cauliflower, tree, wild cabbage - static const IconData solidBroccoli = IconDataSolid(0xe3e2); + static const IconData solidBroccoli = IconData(0xe3e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Broccoli icon /// /// https://fontawesome.com/icons/broccoli?style=regular /// bush, cauliflower, tree, wild cabbage - static const IconData broccoli = IconDataRegular(0xe3e2); + static const IconData broccoli = IconData(0xe3e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Broccoli icon /// /// https://fontawesome.com/icons/broccoli?style=light /// bush, cauliflower, tree, wild cabbage - static const IconData lightBroccoli = IconDataLight(0xe3e2); + static const IconData lightBroccoli = IconData(0xe3e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Broccoli icon /// /// https://fontawesome.com/icons/broccoli?style=thin /// bush, cauliflower, tree, wild cabbage - static const IconData thinBroccoli = IconDataThin(0xe3e2); + static const IconData thinBroccoli = IconData(0xe3e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Broom icon /// /// https://fontawesome.com/icons/broom?style=solid /// broom, clean, cleaning, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, sweeping, witch - static const IconData solidBroom = IconDataSolid(0xf51a); + static const IconData solidBroom = IconData(0xf51a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Broom icon /// /// https://fontawesome.com/icons/broom?style=regular /// broom, clean, cleaning, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, sweeping, witch - static const IconData broom = IconDataRegular(0xf51a); + static const IconData broom = IconData(0xf51a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Broom icon /// /// https://fontawesome.com/icons/broom?style=light /// broom, clean, cleaning, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, sweeping, witch - static const IconData lightBroom = IconDataLight(0xf51a); + static const IconData lightBroom = IconData(0xf51a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Broom icon /// /// https://fontawesome.com/icons/broom?style=thin /// broom, clean, cleaning, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, sweeping, witch - static const IconData thinBroom = IconDataThin(0xf51a); + static const IconData thinBroom = IconData(0xf51a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Broom Ball icon /// /// https://fontawesome.com/icons/broom-ball?style=solid /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData solidBroomBall = IconDataSolid(0xf458); + static const IconData solidBroomBall = IconData(0xf458, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias quidditch for icon [solidBroomBall] @Deprecated('Use "solidBroomBall" instead.') @@ -12582,7 +12582,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/broom-ball?style=regular /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData broomBall = IconDataRegular(0xf458); + static const IconData broomBall = IconData(0xf458, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias quidditch for icon [broomBall] @Deprecated('Use "broomBall" instead.') @@ -12596,7 +12596,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/broom-ball?style=light /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData lightBroomBall = IconDataLight(0xf458); + static const IconData lightBroomBall = IconData(0xf458, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias quidditch for icon [lightBroomBall] @Deprecated('Use "lightBroomBall" instead.') @@ -12610,7 +12610,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/broom-ball?style=thin /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData thinBroomBall = IconDataThin(0xf458); + static const IconData thinBroomBall = IconData(0xf458, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias quidditch for icon [thinBroomBall] @Deprecated('Use "thinBroomBall" instead.') @@ -12624,329 +12624,329 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/broom-wide?style=solid /// broom, brush, clean, clear, delete, dust, erase, remove, sweep, witch - static const IconData solidBroomWide = IconDataSolid(0xe5d1); + static const IconData solidBroomWide = IconData(0xe5d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Broom Wide icon /// /// https://fontawesome.com/icons/broom-wide?style=regular /// broom, brush, clean, clear, delete, dust, erase, remove, sweep, witch - static const IconData broomWide = IconDataRegular(0xe5d1); + static const IconData broomWide = IconData(0xe5d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Broom Wide icon /// /// https://fontawesome.com/icons/broom-wide?style=light /// broom, brush, clean, clear, delete, dust, erase, remove, sweep, witch - static const IconData lightBroomWide = IconDataLight(0xe5d1); + static const IconData lightBroomWide = IconData(0xe5d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Broom Wide icon /// /// https://fontawesome.com/icons/broom-wide?style=thin /// broom, brush, clean, clear, delete, dust, erase, remove, sweep, witch - static const IconData thinBroomWide = IconDataThin(0xe5d1); + static const IconData thinBroomWide = IconData(0xe5d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Browser icon /// /// https://fontawesome.com/icons/browser?style=solid /// Desktop Window, app, application, desktop, explorer, internet, web, website, www - static const IconData solidBrowser = IconDataSolid(0xf37e); + static const IconData solidBrowser = IconData(0xf37e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Browser icon /// /// https://fontawesome.com/icons/browser?style=regular /// Desktop Window, app, application, desktop, explorer, internet, web, website, www - static const IconData browser = IconDataRegular(0xf37e); + static const IconData browser = IconData(0xf37e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Browser icon /// /// https://fontawesome.com/icons/browser?style=light /// Desktop Window, app, application, desktop, explorer, internet, web, website, www - static const IconData lightBrowser = IconDataLight(0xf37e); + static const IconData lightBrowser = IconData(0xf37e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Browser icon /// /// https://fontawesome.com/icons/browser?style=thin /// Desktop Window, app, application, desktop, explorer, internet, web, website, www - static const IconData thinBrowser = IconDataThin(0xf37e); + static const IconData thinBrowser = IconData(0xf37e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Browsers icon /// /// https://fontawesome.com/icons/browsers?style=solid /// computer, tabs, ui, window - static const IconData solidBrowsers = IconDataSolid(0xe0cb); + static const IconData solidBrowsers = IconData(0xe0cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Browsers icon /// /// https://fontawesome.com/icons/browsers?style=regular /// computer, tabs, ui, window - static const IconData browsers = IconDataRegular(0xe0cb); + static const IconData browsers = IconData(0xe0cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Browsers icon /// /// https://fontawesome.com/icons/browsers?style=light /// computer, tabs, ui, window - static const IconData lightBrowsers = IconDataLight(0xe0cb); + static const IconData lightBrowsers = IconData(0xe0cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Browsers icon /// /// https://fontawesome.com/icons/browsers?style=thin /// computer, tabs, ui, window - static const IconData thinBrowsers = IconDataThin(0xe0cb); + static const IconData thinBrowsers = IconData(0xe0cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Brush icon /// /// https://fontawesome.com/icons/brush?style=solid /// art, bristles, color, handle, maintenance, modify, paint - static const IconData solidBrush = IconDataSolid(0xf55d); + static const IconData solidBrush = IconData(0xf55d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Brush icon /// /// https://fontawesome.com/icons/brush?style=regular /// art, bristles, color, handle, maintenance, modify, paint - static const IconData brush = IconDataRegular(0xf55d); + static const IconData brush = IconData(0xf55d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Brush icon /// /// https://fontawesome.com/icons/brush?style=light /// art, bristles, color, handle, maintenance, modify, paint - static const IconData lightBrush = IconDataLight(0xf55d); + static const IconData lightBrush = IconData(0xf55d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Brush icon /// /// https://fontawesome.com/icons/brush?style=thin /// art, bristles, color, handle, maintenance, modify, paint - static const IconData thinBrush = IconDataThin(0xf55d); + static const IconData thinBrush = IconData(0xf55d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands BTC icon /// /// https://fontawesome.com/icons/btc?style=brands - static const IconData btc = IconDataBrands(0xf15a); + static const IconData btc = IconData(0xf15a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bucket icon /// /// https://fontawesome.com/icons/bucket?style=solid /// bucket, pail, sandcastle - static const IconData solidBucket = IconDataSolid(0xe4cf); + static const IconData solidBucket = IconData(0xe4cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bucket icon /// /// https://fontawesome.com/icons/bucket?style=regular /// bucket, pail, sandcastle - static const IconData bucket = IconDataRegular(0xe4cf); + static const IconData bucket = IconData(0xe4cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bucket icon /// /// https://fontawesome.com/icons/bucket?style=light /// bucket, pail, sandcastle - static const IconData lightBucket = IconDataLight(0xe4cf); + static const IconData lightBucket = IconData(0xe4cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bucket icon /// /// https://fontawesome.com/icons/bucket?style=thin /// bucket, pail, sandcastle - static const IconData thinBucket = IconDataThin(0xe4cf); + static const IconData thinBucket = IconData(0xe4cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Buffer icon /// /// https://fontawesome.com/icons/buffer?style=brands - static const IconData buffer = IconDataBrands(0xf837); + static const IconData buffer = IconData(0xf837, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Bug icon /// /// https://fontawesome.com/icons/bug?style=solid /// beetle, error, glitch, insect, repair, report - static const IconData solidBug = IconDataSolid(0xf188); + static const IconData solidBug = IconData(0xf188, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bug icon /// /// https://fontawesome.com/icons/bug?style=regular /// beetle, error, glitch, insect, repair, report - static const IconData bug = IconDataRegular(0xf188); + static const IconData bug = IconData(0xf188, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bug icon /// /// https://fontawesome.com/icons/bug?style=light /// beetle, error, glitch, insect, repair, report - static const IconData lightBug = IconDataLight(0xf188); + static const IconData lightBug = IconData(0xf188, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bug icon /// /// https://fontawesome.com/icons/bug?style=thin /// beetle, error, glitch, insect, repair, report - static const IconData thinBug = IconDataThin(0xf188); + static const IconData thinBug = IconData(0xf188, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bug Slash icon /// /// https://fontawesome.com/icons/bug-slash?style=solid /// beetle, disabled, fix, glitch, insect, optimize, repair, report, warning - static const IconData solidBugSlash = IconDataSolid(0xe490); + static const IconData solidBugSlash = IconData(0xe490, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bug Slash icon /// /// https://fontawesome.com/icons/bug-slash?style=regular /// beetle, disabled, fix, glitch, insect, optimize, repair, report, warning - static const IconData bugSlash = IconDataRegular(0xe490); + static const IconData bugSlash = IconData(0xe490, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bug Slash icon /// /// https://fontawesome.com/icons/bug-slash?style=light /// beetle, disabled, fix, glitch, insect, optimize, repair, report, warning - static const IconData lightBugSlash = IconDataLight(0xe490); + static const IconData lightBugSlash = IconData(0xe490, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bug Slash icon /// /// https://fontawesome.com/icons/bug-slash?style=thin /// beetle, disabled, fix, glitch, insect, optimize, repair, report, warning - static const IconData thinBugSlash = IconDataThin(0xe490); + static const IconData thinBugSlash = IconData(0xe490, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bugs icon /// /// https://fontawesome.com/icons/bugs?style=solid /// bedbug, infestation, lice, plague, ticks - static const IconData solidBugs = IconDataSolid(0xe4d0); + static const IconData solidBugs = IconData(0xe4d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bugs icon /// /// https://fontawesome.com/icons/bugs?style=regular /// bedbug, infestation, lice, plague, ticks - static const IconData bugs = IconDataRegular(0xe4d0); + static const IconData bugs = IconData(0xe4d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bugs icon /// /// https://fontawesome.com/icons/bugs?style=light /// bedbug, infestation, lice, plague, ticks - static const IconData lightBugs = IconDataLight(0xe4d0); + static const IconData lightBugs = IconData(0xe4d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bugs icon /// /// https://fontawesome.com/icons/bugs?style=thin /// bedbug, infestation, lice, plague, ticks - static const IconData thinBugs = IconDataThin(0xe4d0); + static const IconData thinBugs = IconData(0xe4d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building icon /// /// https://fontawesome.com/icons/building?style=solid /// apartment, building, business, city, company, office, office building, urban, work - static const IconData solidBuilding = IconDataSolid(0xf1ad); + static const IconData solidBuilding = IconData(0xf1ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building icon /// /// https://fontawesome.com/icons/building?style=regular /// apartment, building, business, city, company, office, office building, urban, work - static const IconData building = IconDataRegular(0xf1ad); + static const IconData building = IconData(0xf1ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building icon /// /// https://fontawesome.com/icons/building?style=light /// apartment, building, business, city, company, office, office building, urban, work - static const IconData lightBuilding = IconDataLight(0xf1ad); + static const IconData lightBuilding = IconData(0xf1ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building icon /// /// https://fontawesome.com/icons/building?style=thin /// apartment, building, business, city, company, office, office building, urban, work - static const IconData thinBuilding = IconDataThin(0xf1ad); + static const IconData thinBuilding = IconData(0xf1ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Circle Arrow Right icon /// /// https://fontawesome.com/icons/building-circle-arrow-right?style=solid /// building, city, distribution center, office - static const IconData solidBuildingCircleArrowRight = IconDataSolid(0xe4d1); + static const IconData solidBuildingCircleArrowRight = IconData(0xe4d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Circle Arrow Right icon /// /// https://fontawesome.com/icons/building-circle-arrow-right?style=regular /// building, city, distribution center, office - static const IconData buildingCircleArrowRight = IconDataRegular(0xe4d1); + static const IconData buildingCircleArrowRight = IconData(0xe4d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Circle Arrow Right icon /// /// https://fontawesome.com/icons/building-circle-arrow-right?style=light /// building, city, distribution center, office - static const IconData lightBuildingCircleArrowRight = IconDataLight(0xe4d1); + static const IconData lightBuildingCircleArrowRight = IconData(0xe4d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Circle Arrow Right icon /// /// https://fontawesome.com/icons/building-circle-arrow-right?style=thin /// building, city, distribution center, office - static const IconData thinBuildingCircleArrowRight = IconDataThin(0xe4d1); + static const IconData thinBuildingCircleArrowRight = IconData(0xe4d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Circle Check icon /// /// https://fontawesome.com/icons/building-circle-check?style=solid /// building, city, enable, not affected, office, ok, okay, validate, working - static const IconData solidBuildingCircleCheck = IconDataSolid(0xe4d2); + static const IconData solidBuildingCircleCheck = IconData(0xe4d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Circle Check icon /// /// https://fontawesome.com/icons/building-circle-check?style=regular /// building, city, enable, not affected, office, ok, okay, validate, working - static const IconData buildingCircleCheck = IconDataRegular(0xe4d2); + static const IconData buildingCircleCheck = IconData(0xe4d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Circle Check icon /// /// https://fontawesome.com/icons/building-circle-check?style=light /// building, city, enable, not affected, office, ok, okay, validate, working - static const IconData lightBuildingCircleCheck = IconDataLight(0xe4d2); + static const IconData lightBuildingCircleCheck = IconData(0xe4d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Circle Check icon /// /// https://fontawesome.com/icons/building-circle-check?style=thin /// building, city, enable, not affected, office, ok, okay, validate, working - static const IconData thinBuildingCircleCheck = IconDataThin(0xe4d2); + static const IconData thinBuildingCircleCheck = IconData(0xe4d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Circle Exclamation icon /// /// https://fontawesome.com/icons/building-circle-exclamation?style=solid /// affected, building, city, failed, office - static const IconData solidBuildingCircleExclamation = IconDataSolid(0xe4d3); + static const IconData solidBuildingCircleExclamation = IconData(0xe4d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Circle Exclamation icon /// /// https://fontawesome.com/icons/building-circle-exclamation?style=regular /// affected, building, city, failed, office - static const IconData buildingCircleExclamation = IconDataRegular(0xe4d3); + static const IconData buildingCircleExclamation = IconData(0xe4d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Circle Exclamation icon /// /// https://fontawesome.com/icons/building-circle-exclamation?style=light /// affected, building, city, failed, office - static const IconData lightBuildingCircleExclamation = IconDataLight(0xe4d3); + static const IconData lightBuildingCircleExclamation = IconData(0xe4d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Circle Exclamation icon /// /// https://fontawesome.com/icons/building-circle-exclamation?style=thin /// affected, building, city, failed, office - static const IconData thinBuildingCircleExclamation = IconDataThin(0xe4d3); + static const IconData thinBuildingCircleExclamation = IconData(0xe4d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Circle Xmark icon /// /// https://fontawesome.com/icons/building-circle-xmark?style=solid /// building, city, destroy, office, uncheck - static const IconData solidBuildingCircleXmark = IconDataSolid(0xe4d4); + static const IconData solidBuildingCircleXmark = IconData(0xe4d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Circle Xmark icon /// /// https://fontawesome.com/icons/building-circle-xmark?style=regular /// building, city, destroy, office, uncheck - static const IconData buildingCircleXmark = IconDataRegular(0xe4d4); + static const IconData buildingCircleXmark = IconData(0xe4d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Circle Xmark icon /// /// https://fontawesome.com/icons/building-circle-xmark?style=light /// building, city, destroy, office, uncheck - static const IconData lightBuildingCircleXmark = IconDataLight(0xe4d4); + static const IconData lightBuildingCircleXmark = IconData(0xe4d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Circle Xmark icon /// /// https://fontawesome.com/icons/building-circle-xmark?style=thin /// building, city, destroy, office, uncheck - static const IconData thinBuildingCircleXmark = IconDataThin(0xe4d4); + static const IconData thinBuildingCircleXmark = IconData(0xe4d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Columns icon /// /// https://fontawesome.com/icons/building-columns?style=solid /// bank, building, college, education, institution, museum, students - static const IconData solidBuildingColumns = IconDataSolid(0xf19c); + static const IconData solidBuildingColumns = IconData(0xf19c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bank for icon [solidBuildingColumns] @Deprecated('Use "solidBuildingColumns" instead.') @@ -12968,7 +12968,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/building-columns?style=regular /// bank, building, college, education, institution, museum, students - static const IconData buildingColumns = IconDataRegular(0xf19c); + static const IconData buildingColumns = IconData(0xf19c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bank for icon [buildingColumns] @Deprecated('Use "buildingColumns" instead.') @@ -12990,7 +12990,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/building-columns?style=light /// bank, building, college, education, institution, museum, students - static const IconData lightBuildingColumns = IconDataLight(0xf19c); + static const IconData lightBuildingColumns = IconData(0xf19c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bank for icon [lightBuildingColumns] @Deprecated('Use "lightBuildingColumns" instead.') @@ -13012,7 +13012,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/building-columns?style=thin /// bank, building, college, education, institution, museum, students - static const IconData thinBuildingColumns = IconDataThin(0xf19c); + static const IconData thinBuildingColumns = IconData(0xf19c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bank for icon [thinBuildingColumns] @Deprecated('Use "thinBuildingColumns" instead.') @@ -13034,415 +13034,415 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/building-flag?style=solid /// city, building, diplomat, embassy, flag, headquarters, united nations - static const IconData solidBuildingFlag = IconDataSolid(0xe4d5); + static const IconData solidBuildingFlag = IconData(0xe4d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Flag icon /// /// https://fontawesome.com/icons/building-flag?style=regular /// city, building, diplomat, embassy, flag, headquarters, united nations - static const IconData buildingFlag = IconDataRegular(0xe4d5); + static const IconData buildingFlag = IconData(0xe4d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Flag icon /// /// https://fontawesome.com/icons/building-flag?style=light /// city, building, diplomat, embassy, flag, headquarters, united nations - static const IconData lightBuildingFlag = IconDataLight(0xe4d5); + static const IconData lightBuildingFlag = IconData(0xe4d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Flag icon /// /// https://fontawesome.com/icons/building-flag?style=thin /// city, building, diplomat, embassy, flag, headquarters, united nations - static const IconData thinBuildingFlag = IconDataThin(0xe4d5); + static const IconData thinBuildingFlag = IconData(0xe4d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Lock icon /// /// https://fontawesome.com/icons/building-lock?style=solid /// building, city, closed, lock, lockdown, padlock, privacy, quarantine, secure - static const IconData solidBuildingLock = IconDataSolid(0xe4d6); + static const IconData solidBuildingLock = IconData(0xe4d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Lock icon /// /// https://fontawesome.com/icons/building-lock?style=regular /// building, city, closed, lock, lockdown, padlock, privacy, quarantine, secure - static const IconData buildingLock = IconDataRegular(0xe4d6); + static const IconData buildingLock = IconData(0xe4d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Lock icon /// /// https://fontawesome.com/icons/building-lock?style=light /// building, city, closed, lock, lockdown, padlock, privacy, quarantine, secure - static const IconData lightBuildingLock = IconDataLight(0xe4d6); + static const IconData lightBuildingLock = IconData(0xe4d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Lock icon /// /// https://fontawesome.com/icons/building-lock?style=thin /// building, city, closed, lock, lockdown, padlock, privacy, quarantine, secure - static const IconData thinBuildingLock = IconDataThin(0xe4d6); + static const IconData thinBuildingLock = IconData(0xe4d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Magnifying Glass icon /// /// https://fontawesome.com/icons/building-magnifying-glass?style=solid /// building, business, city, company, office, office building, urban, work, apartment, find, inspect, inspection, permit, search, zoning - static const IconData solidBuildingMagnifyingGlass = IconDataSolid(0xe61c); + static const IconData solidBuildingMagnifyingGlass = IconData(0xe61c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Magnifying Glass icon /// /// https://fontawesome.com/icons/building-magnifying-glass?style=regular /// building, business, city, company, office, office building, urban, work, apartment, find, inspect, inspection, permit, search, zoning - static const IconData buildingMagnifyingGlass = IconDataRegular(0xe61c); + static const IconData buildingMagnifyingGlass = IconData(0xe61c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Magnifying Glass icon /// /// https://fontawesome.com/icons/building-magnifying-glass?style=light /// building, business, city, company, office, office building, urban, work, apartment, find, inspect, inspection, permit, search, zoning - static const IconData lightBuildingMagnifyingGlass = IconDataLight(0xe61c); + static const IconData lightBuildingMagnifyingGlass = IconData(0xe61c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Magnifying Glass icon /// /// https://fontawesome.com/icons/building-magnifying-glass?style=thin /// building, business, city, company, office, office building, urban, work, apartment, find, inspect, inspection, permit, search, zoning - static const IconData thinBuildingMagnifyingGlass = IconDataThin(0xe61c); + static const IconData thinBuildingMagnifyingGlass = IconData(0xe61c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Memo icon /// /// https://fontawesome.com/icons/building-memo?style=solid /// building, business, city, company, office, office building, urban, work, apartment, licence, license, list, permit, realtor, realty, zoning - static const IconData solidBuildingMemo = IconDataSolid(0xe61e); + static const IconData solidBuildingMemo = IconData(0xe61e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Memo icon /// /// https://fontawesome.com/icons/building-memo?style=regular /// building, business, city, company, office, office building, urban, work, apartment, licence, license, list, permit, realtor, realty, zoning - static const IconData buildingMemo = IconDataRegular(0xe61e); + static const IconData buildingMemo = IconData(0xe61e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Memo icon /// /// https://fontawesome.com/icons/building-memo?style=light /// building, business, city, company, office, office building, urban, work, apartment, licence, license, list, permit, realtor, realty, zoning - static const IconData lightBuildingMemo = IconDataLight(0xe61e); + static const IconData lightBuildingMemo = IconData(0xe61e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Memo icon /// /// https://fontawesome.com/icons/building-memo?style=thin /// building, business, city, company, office, office building, urban, work, apartment, licence, license, list, permit, realtor, realty, zoning - static const IconData thinBuildingMemo = IconDataThin(0xe61e); + static const IconData thinBuildingMemo = IconData(0xe61e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Ngo icon /// /// https://fontawesome.com/icons/building-ngo?style=solid /// city, building, non governmental organization, office - static const IconData solidBuildingNgo = IconDataSolid(0xe4d7); + static const IconData solidBuildingNgo = IconData(0xe4d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Ngo icon /// /// https://fontawesome.com/icons/building-ngo?style=regular /// city, building, non governmental organization, office - static const IconData buildingNgo = IconDataRegular(0xe4d7); + static const IconData buildingNgo = IconData(0xe4d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Ngo icon /// /// https://fontawesome.com/icons/building-ngo?style=light /// city, building, non governmental organization, office - static const IconData lightBuildingNgo = IconDataLight(0xe4d7); + static const IconData lightBuildingNgo = IconData(0xe4d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Ngo icon /// /// https://fontawesome.com/icons/building-ngo?style=thin /// city, building, non governmental organization, office - static const IconData thinBuildingNgo = IconDataThin(0xe4d7); + static const IconData thinBuildingNgo = IconData(0xe4d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Shield icon /// /// https://fontawesome.com/icons/building-shield?style=solid /// building, city, police, protect, safety - static const IconData solidBuildingShield = IconDataSolid(0xe4d8); + static const IconData solidBuildingShield = IconData(0xe4d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Shield icon /// /// https://fontawesome.com/icons/building-shield?style=regular /// building, city, police, protect, safety - static const IconData buildingShield = IconDataRegular(0xe4d8); + static const IconData buildingShield = IconData(0xe4d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Shield icon /// /// https://fontawesome.com/icons/building-shield?style=light /// building, city, police, protect, safety - static const IconData lightBuildingShield = IconDataLight(0xe4d8); + static const IconData lightBuildingShield = IconData(0xe4d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Shield icon /// /// https://fontawesome.com/icons/building-shield?style=thin /// building, city, police, protect, safety - static const IconData thinBuildingShield = IconDataThin(0xe4d8); + static const IconData thinBuildingShield = IconData(0xe4d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Un icon /// /// https://fontawesome.com/icons/building-un?style=solid /// building, city, office, united nations - static const IconData solidBuildingUn = IconDataSolid(0xe4d9); + static const IconData solidBuildingUn = IconData(0xe4d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Un icon /// /// https://fontawesome.com/icons/building-un?style=regular /// building, city, office, united nations - static const IconData buildingUn = IconDataRegular(0xe4d9); + static const IconData buildingUn = IconData(0xe4d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Un icon /// /// https://fontawesome.com/icons/building-un?style=light /// building, city, office, united nations - static const IconData lightBuildingUn = IconDataLight(0xe4d9); + static const IconData lightBuildingUn = IconData(0xe4d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Un icon /// /// https://fontawesome.com/icons/building-un?style=thin /// building, city, office, united nations - static const IconData thinBuildingUn = IconDataThin(0xe4d9); + static const IconData thinBuildingUn = IconData(0xe4d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building User icon /// /// https://fontawesome.com/icons/building-user?style=solid /// apartment, building, city, employee, uer - static const IconData solidBuildingUser = IconDataSolid(0xe4da); + static const IconData solidBuildingUser = IconData(0xe4da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building User icon /// /// https://fontawesome.com/icons/building-user?style=regular /// apartment, building, city, employee, uer - static const IconData buildingUser = IconDataRegular(0xe4da); + static const IconData buildingUser = IconData(0xe4da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building User icon /// /// https://fontawesome.com/icons/building-user?style=light /// apartment, building, city, employee, uer - static const IconData lightBuildingUser = IconDataLight(0xe4da); + static const IconData lightBuildingUser = IconData(0xe4da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building User icon /// /// https://fontawesome.com/icons/building-user?style=thin /// apartment, building, city, employee, uer - static const IconData thinBuildingUser = IconDataThin(0xe4da); + static const IconData thinBuildingUser = IconData(0xe4da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Building Wheat icon /// /// https://fontawesome.com/icons/building-wheat?style=solid /// agriculture, building, city, usda - static const IconData solidBuildingWheat = IconDataSolid(0xe4db); + static const IconData solidBuildingWheat = IconData(0xe4db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Building Wheat icon /// /// https://fontawesome.com/icons/building-wheat?style=regular /// agriculture, building, city, usda - static const IconData buildingWheat = IconDataRegular(0xe4db); + static const IconData buildingWheat = IconData(0xe4db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Building Wheat icon /// /// https://fontawesome.com/icons/building-wheat?style=light /// agriculture, building, city, usda - static const IconData lightBuildingWheat = IconDataLight(0xe4db); + static const IconData lightBuildingWheat = IconData(0xe4db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Building Wheat icon /// /// https://fontawesome.com/icons/building-wheat?style=thin /// agriculture, building, city, usda - static const IconData thinBuildingWheat = IconDataThin(0xe4db); + static const IconData thinBuildingWheat = IconData(0xe4db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Buildings icon /// /// https://fontawesome.com/icons/buildings?style=solid /// apartment, business, city, company, office, urban, work - static const IconData solidBuildings = IconDataSolid(0xe0cc); + static const IconData solidBuildings = IconData(0xe0cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Buildings icon /// /// https://fontawesome.com/icons/buildings?style=regular /// apartment, business, city, company, office, urban, work - static const IconData buildings = IconDataRegular(0xe0cc); + static const IconData buildings = IconData(0xe0cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Buildings icon /// /// https://fontawesome.com/icons/buildings?style=light /// apartment, business, city, company, office, urban, work - static const IconData lightBuildings = IconDataLight(0xe0cc); + static const IconData lightBuildings = IconData(0xe0cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Buildings icon /// /// https://fontawesome.com/icons/buildings?style=thin /// apartment, business, city, company, office, urban, work - static const IconData thinBuildings = IconDataThin(0xe0cc); + static const IconData thinBuildings = IconData(0xe0cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bulldozer icon /// /// https://fontawesome.com/icons/bulldozer?style=solid /// earth, mover, dirt - static const IconData solidBulldozer = IconDataSolid(0xe655); + static const IconData solidBulldozer = IconData(0xe655, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bulldozer icon /// /// https://fontawesome.com/icons/bulldozer?style=regular /// earth, mover, dirt - static const IconData bulldozer = IconDataRegular(0xe655); + static const IconData bulldozer = IconData(0xe655, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bulldozer icon /// /// https://fontawesome.com/icons/bulldozer?style=light /// earth, mover, dirt - static const IconData lightBulldozer = IconDataLight(0xe655); + static const IconData lightBulldozer = IconData(0xe655, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bulldozer icon /// /// https://fontawesome.com/icons/bulldozer?style=thin /// earth, mover, dirt - static const IconData thinBulldozer = IconDataThin(0xe655); + static const IconData thinBulldozer = IconData(0xe655, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bullhorn icon /// /// https://fontawesome.com/icons/bullhorn?style=solid /// Bullhorn, announcement, broadcast, loud, louder, loudspeaker, megaphone, public address, request, share - static const IconData solidBullhorn = IconDataSolid(0xf0a1); + static const IconData solidBullhorn = IconData(0xf0a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bullhorn icon /// /// https://fontawesome.com/icons/bullhorn?style=regular /// Bullhorn, announcement, broadcast, loud, louder, loudspeaker, megaphone, public address, request, share - static const IconData bullhorn = IconDataRegular(0xf0a1); + static const IconData bullhorn = IconData(0xf0a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bullhorn icon /// /// https://fontawesome.com/icons/bullhorn?style=light /// Bullhorn, announcement, broadcast, loud, louder, loudspeaker, megaphone, public address, request, share - static const IconData lightBullhorn = IconDataLight(0xf0a1); + static const IconData lightBullhorn = IconData(0xf0a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bullhorn icon /// /// https://fontawesome.com/icons/bullhorn?style=thin /// Bullhorn, announcement, broadcast, loud, louder, loudspeaker, megaphone, public address, request, share - static const IconData thinBullhorn = IconDataThin(0xf0a1); + static const IconData thinBullhorn = IconData(0xf0a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bullseye icon /// /// https://fontawesome.com/icons/bullseye?style=solid /// archery, goal, objective, strategy, target - static const IconData solidBullseye = IconDataSolid(0xf140); + static const IconData solidBullseye = IconData(0xf140, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bullseye icon /// /// https://fontawesome.com/icons/bullseye?style=regular /// archery, goal, objective, strategy, target - static const IconData bullseye = IconDataRegular(0xf140); + static const IconData bullseye = IconData(0xf140, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bullseye icon /// /// https://fontawesome.com/icons/bullseye?style=light /// archery, goal, objective, strategy, target - static const IconData lightBullseye = IconDataLight(0xf140); + static const IconData lightBullseye = IconData(0xf140, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bullseye icon /// /// https://fontawesome.com/icons/bullseye?style=thin /// archery, goal, objective, strategy, target - static const IconData thinBullseye = IconDataThin(0xf140); + static const IconData thinBullseye = IconData(0xf140, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bullseye Arrow icon /// /// https://fontawesome.com/icons/bullseye-arrow?style=solid /// archery, arrow, bullseye, dart, direct hit, game, goal, hit, objective, robin hood, strategy, target - static const IconData solidBullseyeArrow = IconDataSolid(0xf648); + static const IconData solidBullseyeArrow = IconData(0xf648, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bullseye Arrow icon /// /// https://fontawesome.com/icons/bullseye-arrow?style=regular /// archery, arrow, bullseye, dart, direct hit, game, goal, hit, objective, robin hood, strategy, target - static const IconData bullseyeArrow = IconDataRegular(0xf648); + static const IconData bullseyeArrow = IconData(0xf648, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bullseye Arrow icon /// /// https://fontawesome.com/icons/bullseye-arrow?style=light /// archery, arrow, bullseye, dart, direct hit, game, goal, hit, objective, robin hood, strategy, target - static const IconData lightBullseyeArrow = IconDataLight(0xf648); + static const IconData lightBullseyeArrow = IconData(0xf648, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bullseye Arrow icon /// /// https://fontawesome.com/icons/bullseye-arrow?style=thin /// archery, arrow, bullseye, dart, direct hit, game, goal, hit, objective, robin hood, strategy, target - static const IconData thinBullseyeArrow = IconDataThin(0xf648); + static const IconData thinBullseyeArrow = IconData(0xf648, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bullseye Pointer icon /// /// https://fontawesome.com/icons/bullseye-pointer?style=solid /// archery, goal, objective, strategy, target - static const IconData solidBullseyePointer = IconDataSolid(0xf649); + static const IconData solidBullseyePointer = IconData(0xf649, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bullseye Pointer icon /// /// https://fontawesome.com/icons/bullseye-pointer?style=regular /// archery, goal, objective, strategy, target - static const IconData bullseyePointer = IconDataRegular(0xf649); + static const IconData bullseyePointer = IconData(0xf649, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bullseye Pointer icon /// /// https://fontawesome.com/icons/bullseye-pointer?style=light /// archery, goal, objective, strategy, target - static const IconData lightBullseyePointer = IconDataLight(0xf649); + static const IconData lightBullseyePointer = IconData(0xf649, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bullseye Pointer icon /// /// https://fontawesome.com/icons/bullseye-pointer?style=thin /// archery, goal, objective, strategy, target - static const IconData thinBullseyePointer = IconDataThin(0xf649); + static const IconData thinBullseyePointer = IconData(0xf649, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Buoy icon /// /// https://fontawesome.com/icons/buoy?style=solid /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData solidBuoy = IconDataSolid(0xe5b5); + static const IconData solidBuoy = IconData(0xe5b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Buoy icon /// /// https://fontawesome.com/icons/buoy?style=regular /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData buoy = IconDataRegular(0xe5b5); + static const IconData buoy = IconData(0xe5b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Buoy icon /// /// https://fontawesome.com/icons/buoy?style=light /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData lightBuoy = IconDataLight(0xe5b5); + static const IconData lightBuoy = IconData(0xe5b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Buoy icon /// /// https://fontawesome.com/icons/buoy?style=thin /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData thinBuoy = IconDataThin(0xe5b5); + static const IconData thinBuoy = IconData(0xe5b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Buoy Mooring icon /// /// https://fontawesome.com/icons/buoy-mooring?style=solid /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData solidBuoyMooring = IconDataSolid(0xe5b6); + static const IconData solidBuoyMooring = IconData(0xe5b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Buoy Mooring icon /// /// https://fontawesome.com/icons/buoy-mooring?style=regular /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData buoyMooring = IconDataRegular(0xe5b6); + static const IconData buoyMooring = IconData(0xe5b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Buoy Mooring icon /// /// https://fontawesome.com/icons/buoy-mooring?style=light /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData lightBuoyMooring = IconDataLight(0xe5b6); + static const IconData lightBuoyMooring = IconData(0xe5b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Buoy Mooring icon /// /// https://fontawesome.com/icons/buoy-mooring?style=thin /// anchor, float, hazard, mooring, nautical, navigation, warning, water - static const IconData thinBuoyMooring = IconDataThin(0xe5b6); + static const IconData thinBuoyMooring = IconData(0xe5b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Burger icon /// /// https://fontawesome.com/icons/burger?style=solid /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData solidBurger = IconDataSolid(0xf805); + static const IconData solidBurger = IconData(0xf805, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hamburger for icon [solidBurger] @Deprecated('Use "solidBurger" instead.') @@ -13452,7 +13452,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger?style=regular /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData burger = IconDataRegular(0xf805); + static const IconData burger = IconData(0xf805, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hamburger for icon [burger] @Deprecated('Use "burger" instead.') @@ -13462,7 +13462,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger?style=light /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData lightBurger = IconDataLight(0xf805); + static const IconData lightBurger = IconData(0xf805, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hamburger for icon [lightBurger] @Deprecated('Use "lightBurger" instead.') @@ -13472,7 +13472,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger?style=thin /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData thinBurger = IconDataThin(0xf805); + static const IconData thinBurger = IconData(0xf805, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hamburger for icon [thinBurger] @Deprecated('Use "thinBurger" instead.') @@ -13482,7 +13482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger-cheese?style=solid /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData solidBurgerCheese = IconDataSolid(0xf7f1); + static const IconData solidBurgerCheese = IconData(0xf7f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cheeseburger for icon [solidBurgerCheese] @Deprecated('Use "solidBurgerCheese" instead.') @@ -13492,7 +13492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger-cheese?style=regular /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData burgerCheese = IconDataRegular(0xf7f1); + static const IconData burgerCheese = IconData(0xf7f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cheeseburger for icon [burgerCheese] @Deprecated('Use "burgerCheese" instead.') @@ -13502,7 +13502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger-cheese?style=light /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData lightBurgerCheese = IconDataLight(0xf7f1); + static const IconData lightBurgerCheese = IconData(0xf7f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cheeseburger for icon [lightBurgerCheese] @Deprecated('Use "lightBurgerCheese" instead.') @@ -13512,7 +13512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger-cheese?style=thin /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData thinBurgerCheese = IconDataThin(0xf7f1); + static const IconData thinBurgerCheese = IconData(0xf7f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cheeseburger for icon [thinBurgerCheese] @Deprecated('Use "thinBurgerCheese" instead.') @@ -13522,204 +13522,204 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/burger-fries?style=solid /// chips, fast food, french fries, junk food, sandwich, takeout - static const IconData solidBurgerFries = IconDataSolid(0xe0cd); + static const IconData solidBurgerFries = IconData(0xe0cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burger Fries icon /// /// https://fontawesome.com/icons/burger-fries?style=regular /// chips, fast food, french fries, junk food, sandwich, takeout - static const IconData burgerFries = IconDataRegular(0xe0cd); + static const IconData burgerFries = IconData(0xe0cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burger Fries icon /// /// https://fontawesome.com/icons/burger-fries?style=light /// chips, fast food, french fries, junk food, sandwich, takeout - static const IconData lightBurgerFries = IconDataLight(0xe0cd); + static const IconData lightBurgerFries = IconData(0xe0cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burger Fries icon /// /// https://fontawesome.com/icons/burger-fries?style=thin /// chips, fast food, french fries, junk food, sandwich, takeout - static const IconData thinBurgerFries = IconDataThin(0xe0cd); + static const IconData thinBurgerFries = IconData(0xe0cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Burger Glass icon /// /// https://fontawesome.com/icons/burger-glass?style=solid /// beer, fast food, junk food, sandwich, soda, takeout - static const IconData solidBurgerGlass = IconDataSolid(0xe0ce); + static const IconData solidBurgerGlass = IconData(0xe0ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burger Glass icon /// /// https://fontawesome.com/icons/burger-glass?style=regular /// beer, fast food, junk food, sandwich, soda, takeout - static const IconData burgerGlass = IconDataRegular(0xe0ce); + static const IconData burgerGlass = IconData(0xe0ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burger Glass icon /// /// https://fontawesome.com/icons/burger-glass?style=light /// beer, fast food, junk food, sandwich, soda, takeout - static const IconData lightBurgerGlass = IconDataLight(0xe0ce); + static const IconData lightBurgerGlass = IconData(0xe0ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burger Glass icon /// /// https://fontawesome.com/icons/burger-glass?style=thin /// beer, fast food, junk food, sandwich, soda, takeout - static const IconData thinBurgerGlass = IconDataThin(0xe0ce); + static const IconData thinBurgerGlass = IconData(0xe0ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Burger Lettuce icon /// /// https://fontawesome.com/icons/burger-lettuce?style=solid /// burger, fast food, grill, sandwich, vegetables, veggie burger - static const IconData solidBurgerLettuce = IconDataSolid(0xe3e3); + static const IconData solidBurgerLettuce = IconData(0xe3e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burger Lettuce icon /// /// https://fontawesome.com/icons/burger-lettuce?style=regular /// burger, fast food, grill, sandwich, vegetables, veggie burger - static const IconData burgerLettuce = IconDataRegular(0xe3e3); + static const IconData burgerLettuce = IconData(0xe3e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burger Lettuce icon /// /// https://fontawesome.com/icons/burger-lettuce?style=light /// burger, fast food, grill, sandwich, vegetables, veggie burger - static const IconData lightBurgerLettuce = IconDataLight(0xe3e3); + static const IconData lightBurgerLettuce = IconData(0xe3e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burger Lettuce icon /// /// https://fontawesome.com/icons/burger-lettuce?style=thin /// burger, fast food, grill, sandwich, vegetables, veggie burger - static const IconData thinBurgerLettuce = IconDataThin(0xe3e3); + static const IconData thinBurgerLettuce = IconData(0xe3e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Burger Soda icon /// /// https://fontawesome.com/icons/burger-soda?style=solid /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconData solidBurgerSoda = IconDataSolid(0xf858); + static const IconData solidBurgerSoda = IconData(0xf858, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burger Soda icon /// /// https://fontawesome.com/icons/burger-soda?style=regular /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconData burgerSoda = IconDataRegular(0xf858); + static const IconData burgerSoda = IconData(0xf858, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burger Soda icon /// /// https://fontawesome.com/icons/burger-soda?style=light /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconData lightBurgerSoda = IconDataLight(0xf858); + static const IconData lightBurgerSoda = IconData(0xf858, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burger Soda icon /// /// https://fontawesome.com/icons/burger-soda?style=thin /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconData thinBurgerSoda = IconDataThin(0xf858); + static const IconData thinBurgerSoda = IconData(0xf858, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Büromöbel-Experte GmbH & Co. KG. icon /// /// https://fontawesome.com/icons/buromobelexperte?style=brands - static const IconData buromobelexperte = IconDataBrands(0xf37f); + static const IconData buromobelexperte = IconData(0xf37f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Burrito icon /// /// https://fontawesome.com/icons/burrito?style=solid /// beans, breakfast, burrito, chimichanga, mexican, salsa, taco, tortilla, wrap - static const IconData solidBurrito = IconDataSolid(0xf7ed); + static const IconData solidBurrito = IconData(0xf7ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burrito icon /// /// https://fontawesome.com/icons/burrito?style=regular /// beans, breakfast, burrito, chimichanga, mexican, salsa, taco, tortilla, wrap - static const IconData burrito = IconDataRegular(0xf7ed); + static const IconData burrito = IconData(0xf7ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burrito icon /// /// https://fontawesome.com/icons/burrito?style=light /// beans, breakfast, burrito, chimichanga, mexican, salsa, taco, tortilla, wrap - static const IconData lightBurrito = IconDataLight(0xf7ed); + static const IconData lightBurrito = IconData(0xf7ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burrito icon /// /// https://fontawesome.com/icons/burrito?style=thin /// beans, breakfast, burrito, chimichanga, mexican, salsa, taco, tortilla, wrap - static const IconData thinBurrito = IconDataThin(0xf7ed); + static const IconData thinBurrito = IconData(0xf7ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Burst icon /// /// https://fontawesome.com/icons/burst?style=solid /// boom, crash, explosion - static const IconData solidBurst = IconDataSolid(0xe4dc); + static const IconData solidBurst = IconData(0xe4dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Burst icon /// /// https://fontawesome.com/icons/burst?style=regular /// boom, crash, explosion - static const IconData burst = IconDataRegular(0xe4dc); + static const IconData burst = IconData(0xe4dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Burst icon /// /// https://fontawesome.com/icons/burst?style=light /// boom, crash, explosion - static const IconData lightBurst = IconDataLight(0xe4dc); + static const IconData lightBurst = IconData(0xe4dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Burst icon /// /// https://fontawesome.com/icons/burst?style=thin /// boom, crash, explosion - static const IconData thinBurst = IconDataThin(0xe4dc); + static const IconData thinBurst = IconData(0xe4dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bus icon /// /// https://fontawesome.com/icons/bus?style=solid /// bus, oncoming, oncoming bus, public transportation, transportation, travel, vehicle - static const IconData solidBus = IconDataSolid(0xf207); + static const IconData solidBus = IconData(0xf207, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bus icon /// /// https://fontawesome.com/icons/bus?style=regular /// bus, oncoming, oncoming bus, public transportation, transportation, travel, vehicle - static const IconData bus = IconDataRegular(0xf207); + static const IconData bus = IconData(0xf207, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bus icon /// /// https://fontawesome.com/icons/bus?style=light /// bus, oncoming, oncoming bus, public transportation, transportation, travel, vehicle - static const IconData lightBus = IconDataLight(0xf207); + static const IconData lightBus = IconData(0xf207, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bus icon /// /// https://fontawesome.com/icons/bus?style=thin /// bus, oncoming, oncoming bus, public transportation, transportation, travel, vehicle - static const IconData thinBus = IconDataThin(0xf207); + static const IconData thinBus = IconData(0xf207, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bus School icon /// /// https://fontawesome.com/icons/bus-school?style=solid /// education, school, transportation, vehicle - static const IconData solidBusSchool = IconDataSolid(0xf5dd); + static const IconData solidBusSchool = IconData(0xf5dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Bus School icon /// /// https://fontawesome.com/icons/bus-school?style=regular /// education, school, transportation, vehicle - static const IconData busSchool = IconDataRegular(0xf5dd); + static const IconData busSchool = IconData(0xf5dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Bus School icon /// /// https://fontawesome.com/icons/bus-school?style=light /// education, school, transportation, vehicle - static const IconData lightBusSchool = IconDataLight(0xf5dd); + static const IconData lightBusSchool = IconData(0xf5dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Bus School icon /// /// https://fontawesome.com/icons/bus-school?style=thin /// education, school, transportation, vehicle - static const IconData thinBusSchool = IconDataThin(0xf5dd); + static const IconData thinBusSchool = IconData(0xf5dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Bus Simple icon /// /// https://fontawesome.com/icons/bus-simple?style=solid /// mta, public transportation, transportation, travel, vehicle - static const IconData solidBusSimple = IconDataSolid(0xf55e); + static const IconData solidBusSimple = IconData(0xf55e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bus-alt for icon [solidBusSimple] @Deprecated('Use "solidBusSimple" instead.') @@ -13729,7 +13729,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bus-simple?style=regular /// mta, public transportation, transportation, travel, vehicle - static const IconData busSimple = IconDataRegular(0xf55e); + static const IconData busSimple = IconData(0xf55e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bus-alt for icon [busSimple] @Deprecated('Use "busSimple" instead.') @@ -13739,7 +13739,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bus-simple?style=light /// mta, public transportation, transportation, travel, vehicle - static const IconData lightBusSimple = IconDataLight(0xf55e); + static const IconData lightBusSimple = IconData(0xf55e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bus-alt for icon [lightBusSimple] @Deprecated('Use "lightBusSimple" instead.') @@ -13749,7 +13749,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/bus-simple?style=thin /// mta, public transportation, transportation, travel, vehicle - static const IconData thinBusSimple = IconDataThin(0xf55e); + static const IconData thinBusSimple = IconData(0xf55e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bus-alt for icon [thinBusSimple] @Deprecated('Use "thinBusSimple" instead.') @@ -13759,7 +13759,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/business-time?style=solid /// alarm, briefcase, business socks, clock, flight of the conchords, portfolio, reminder, wednesday - static const IconData solidBusinessTime = IconDataSolid(0xf64a); + static const IconData solidBusinessTime = IconData(0xf64a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias briefcase-clock for icon [solidBusinessTime] @Deprecated('Use "solidBusinessTime" instead.') @@ -13769,7 +13769,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/business-time?style=regular /// alarm, briefcase, business socks, clock, flight of the conchords, portfolio, reminder, wednesday - static const IconData businessTime = IconDataRegular(0xf64a); + static const IconData businessTime = IconData(0xf64a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias briefcase-clock for icon [businessTime] @Deprecated('Use "businessTime" instead.') @@ -13779,7 +13779,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/business-time?style=light /// alarm, briefcase, business socks, clock, flight of the conchords, portfolio, reminder, wednesday - static const IconData lightBusinessTime = IconDataLight(0xf64a); + static const IconData lightBusinessTime = IconData(0xf64a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias briefcase-clock for icon [lightBusinessTime] @Deprecated('Use "lightBusinessTime" instead.') @@ -13789,7 +13789,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/business-time?style=thin /// alarm, briefcase, business socks, clock, flight of the conchords, portfolio, reminder, wednesday - static const IconData thinBusinessTime = IconDataThin(0xf64a); + static const IconData thinBusinessTime = IconData(0xf64a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias briefcase-clock for icon [thinBusinessTime] @Deprecated('Use "thinBusinessTime" instead.') @@ -13799,113 +13799,113 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/butter?style=solid /// butter, dairy, margarine, spread - static const IconData solidButter = IconDataSolid(0xe3e4); + static const IconData solidButter = IconData(0xe3e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Butter icon /// /// https://fontawesome.com/icons/butter?style=regular /// butter, dairy, margarine, spread - static const IconData butter = IconDataRegular(0xe3e4); + static const IconData butter = IconData(0xe3e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Butter icon /// /// https://fontawesome.com/icons/butter?style=light /// butter, dairy, margarine, spread - static const IconData lightButter = IconDataLight(0xe3e4); + static const IconData lightButter = IconData(0xe3e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Butter icon /// /// https://fontawesome.com/icons/butter?style=thin /// butter, dairy, margarine, spread - static const IconData thinButter = IconDataThin(0xe3e4); + static const IconData thinButter = IconData(0xe3e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Buy n Large icon /// /// https://fontawesome.com/icons/buy-n-large?style=brands - static const IconData buyNLarge = IconDataBrands(0xf8a6); + static const IconData buyNLarge = IconData(0xf8a6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands BuySellAds icon /// /// https://fontawesome.com/icons/buysellads?style=brands - static const IconData buysellads = IconDataBrands(0xf20d); + static const IconData buysellads = IconData(0xf20d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid C icon /// /// https://fontawesome.com/icons/c?style=solid /// Latin Capital Letter C, Latin Small Letter C, letter - static const IconData solidC = IconDataSolid(0x43); + static const IconData solidC = IconData(0x43, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular C icon /// /// https://fontawesome.com/icons/c?style=regular /// Latin Capital Letter C, Latin Small Letter C, letter - static const IconData c = IconDataRegular(0x43); + static const IconData c = IconData(0x43, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light C icon /// /// https://fontawesome.com/icons/c?style=light /// Latin Capital Letter C, Latin Small Letter C, letter - static const IconData lightC = IconDataLight(0x43); + static const IconData lightC = IconData(0x43, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin C icon /// /// https://fontawesome.com/icons/c?style=thin /// Latin Capital Letter C, Latin Small Letter C, letter - static const IconData thinC = IconDataThin(0x43); + static const IconData thinC = IconData(0x43, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cabin icon /// /// https://fontawesome.com/icons/cabin?style=solid /// cabin, camp, log, lumber, ranger - static const IconData solidCabin = IconDataSolid(0xe46d); + static const IconData solidCabin = IconData(0xe46d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cabin icon /// /// https://fontawesome.com/icons/cabin?style=regular /// cabin, camp, log, lumber, ranger - static const IconData cabin = IconDataRegular(0xe46d); + static const IconData cabin = IconData(0xe46d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cabin icon /// /// https://fontawesome.com/icons/cabin?style=light /// cabin, camp, log, lumber, ranger - static const IconData lightCabin = IconDataLight(0xe46d); + static const IconData lightCabin = IconData(0xe46d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cabin icon /// /// https://fontawesome.com/icons/cabin?style=thin /// cabin, camp, log, lumber, ranger - static const IconData thinCabin = IconDataThin(0xe46d); + static const IconData thinCabin = IconData(0xe46d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cabinet Filing icon /// /// https://fontawesome.com/icons/cabinet-filing?style=solid /// archive, cabinet, file, file cabinet, files, filing, records, register, storage - static const IconData solidCabinetFiling = IconDataSolid(0xf64b); + static const IconData solidCabinetFiling = IconData(0xf64b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cabinet Filing icon /// /// https://fontawesome.com/icons/cabinet-filing?style=regular /// archive, cabinet, file, file cabinet, files, filing, records, register, storage - static const IconData cabinetFiling = IconDataRegular(0xf64b); + static const IconData cabinetFiling = IconData(0xf64b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cabinet Filing icon /// /// https://fontawesome.com/icons/cabinet-filing?style=light /// archive, cabinet, file, file cabinet, files, filing, records, register, storage - static const IconData lightCabinetFiling = IconDataLight(0xf64b); + static const IconData lightCabinetFiling = IconData(0xf64b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cabinet Filing icon /// /// https://fontawesome.com/icons/cabinet-filing?style=thin /// archive, cabinet, file, file cabinet, files, filing, records, register, storage - static const IconData thinCabinetFiling = IconDataThin(0xf64b); + static const IconData thinCabinetFiling = IconData(0xf64b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cable Car icon /// /// https://fontawesome.com/icons/cable-car?style=solid /// aerial tramway, cable, gondola, lift, mountain, mountain cableway, tram, tramway, trolley - static const IconData solidCableCar = IconDataSolid(0xf7da); + static const IconData solidCableCar = IconData(0xf7da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tram for icon [solidCableCar] @Deprecated('Use "solidCableCar" instead.') @@ -13915,7 +13915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cable-car?style=regular /// aerial tramway, cable, gondola, lift, mountain, mountain cableway, tram, tramway, trolley - static const IconData cableCar = IconDataRegular(0xf7da); + static const IconData cableCar = IconData(0xf7da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tram for icon [cableCar] @Deprecated('Use "cableCar" instead.') @@ -13925,7 +13925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cable-car?style=light /// aerial tramway, cable, gondola, lift, mountain, mountain cableway, tram, tramway, trolley - static const IconData lightCableCar = IconDataLight(0xf7da); + static const IconData lightCableCar = IconData(0xf7da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tram for icon [lightCableCar] @Deprecated('Use "lightCableCar" instead.') @@ -13935,7 +13935,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cable-car?style=thin /// aerial tramway, cable, gondola, lift, mountain, mountain cableway, tram, tramway, trolley - static const IconData thinCableCar = IconDataThin(0xf7da); + static const IconData thinCableCar = IconData(0xf7da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tram for icon [thinCableCar] @Deprecated('Use "thinCableCar" instead.') @@ -13945,31 +13945,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cactus?style=solid /// cactus, cowboy, desert, flora, old west, plant, succulent, western - static const IconData solidCactus = IconDataSolid(0xf8a7); + static const IconData solidCactus = IconData(0xf8a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cactus icon /// /// https://fontawesome.com/icons/cactus?style=regular /// cactus, cowboy, desert, flora, old west, plant, succulent, western - static const IconData cactus = IconDataRegular(0xf8a7); + static const IconData cactus = IconData(0xf8a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cactus icon /// /// https://fontawesome.com/icons/cactus?style=light /// cactus, cowboy, desert, flora, old west, plant, succulent, western - static const IconData lightCactus = IconDataLight(0xf8a7); + static const IconData lightCactus = IconData(0xf8a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cactus icon /// /// https://fontawesome.com/icons/cactus?style=thin /// cactus, cowboy, desert, flora, old west, plant, succulent, western - static const IconData thinCactus = IconDataThin(0xf8a7); + static const IconData thinCactus = IconData(0xf8a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cake Candles icon /// /// https://fontawesome.com/icons/cake-candles?style=solid /// anniversary, bakery, birthday, birthday cake, cake, candles, celebration, dessert, frosting, holiday, party, pastry, sweet - static const IconData solidCakeCandles = IconDataSolid(0xf1fd); + static const IconData solidCakeCandles = IconData(0xf1fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias birthday-cake for icon [solidCakeCandles] @Deprecated('Use "solidCakeCandles" instead.') @@ -13983,7 +13983,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-candles?style=regular /// anniversary, bakery, birthday, birthday cake, cake, candles, celebration, dessert, frosting, holiday, party, pastry, sweet - static const IconData cakeCandles = IconDataRegular(0xf1fd); + static const IconData cakeCandles = IconData(0xf1fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias birthday-cake for icon [cakeCandles] @Deprecated('Use "cakeCandles" instead.') @@ -13997,7 +13997,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-candles?style=light /// anniversary, bakery, birthday, birthday cake, cake, candles, celebration, dessert, frosting, holiday, party, pastry, sweet - static const IconData lightCakeCandles = IconDataLight(0xf1fd); + static const IconData lightCakeCandles = IconData(0xf1fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias birthday-cake for icon [lightCakeCandles] @Deprecated('Use "lightCakeCandles" instead.') @@ -14011,7 +14011,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-candles?style=thin /// anniversary, bakery, birthday, birthday cake, cake, candles, celebration, dessert, frosting, holiday, party, pastry, sweet - static const IconData thinCakeCandles = IconDataThin(0xf1fd); + static const IconData thinCakeCandles = IconData(0xf1fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias birthday-cake for icon [thinCakeCandles] @Deprecated('Use "thinCakeCandles" instead.') @@ -14025,7 +14025,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-slice?style=solid /// birthday, cake, dessert, frosting, icing - static const IconData solidCakeSlice = IconDataSolid(0xe3e5); + static const IconData solidCakeSlice = IconData(0xe3e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shortcake for icon [solidCakeSlice] @Deprecated('Use "solidCakeSlice" instead.') @@ -14035,7 +14035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-slice?style=regular /// birthday, cake, dessert, frosting, icing - static const IconData cakeSlice = IconDataRegular(0xe3e5); + static const IconData cakeSlice = IconData(0xe3e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shortcake for icon [cakeSlice] @Deprecated('Use "cakeSlice" instead.') @@ -14045,7 +14045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-slice?style=light /// birthday, cake, dessert, frosting, icing - static const IconData lightCakeSlice = IconDataLight(0xe3e5); + static const IconData lightCakeSlice = IconData(0xe3e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shortcake for icon [lightCakeSlice] @Deprecated('Use "lightCakeSlice" instead.') @@ -14055,7 +14055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cake-slice?style=thin /// birthday, cake, dessert, frosting, icing - static const IconData thinCakeSlice = IconDataThin(0xe3e5); + static const IconData thinCakeSlice = IconData(0xe3e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shortcake for icon [thinCakeSlice] @Deprecated('Use "thinCakeSlice" instead.') @@ -14065,31 +14065,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calculator?style=solid /// Pocket Calculator, abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData solidCalculator = IconDataSolid(0xf1ec); + static const IconData solidCalculator = IconData(0xf1ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calculator icon /// /// https://fontawesome.com/icons/calculator?style=regular /// Pocket Calculator, abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData calculator = IconDataRegular(0xf1ec); + static const IconData calculator = IconData(0xf1ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calculator icon /// /// https://fontawesome.com/icons/calculator?style=light /// Pocket Calculator, abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData lightCalculator = IconDataLight(0xf1ec); + static const IconData lightCalculator = IconData(0xf1ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calculator icon /// /// https://fontawesome.com/icons/calculator?style=thin /// Pocket Calculator, abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData thinCalculator = IconDataThin(0xf1ec); + static const IconData thinCalculator = IconData(0xf1ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calculator Simple icon /// /// https://fontawesome.com/icons/calculator-simple?style=solid /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData solidCalculatorSimple = IconDataSolid(0xf64c); + static const IconData solidCalculatorSimple = IconData(0xf64c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calculator-alt for icon [solidCalculatorSimple] @Deprecated('Use "solidCalculatorSimple" instead.') @@ -14099,7 +14099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calculator-simple?style=regular /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData calculatorSimple = IconDataRegular(0xf64c); + static const IconData calculatorSimple = IconData(0xf64c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calculator-alt for icon [calculatorSimple] @Deprecated('Use "calculatorSimple" instead.') @@ -14109,7 +14109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calculator-simple?style=light /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData lightCalculatorSimple = IconDataLight(0xf64c); + static const IconData lightCalculatorSimple = IconData(0xf64c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calculator-alt for icon [lightCalculatorSimple] @Deprecated('Use "lightCalculatorSimple" instead.') @@ -14119,7 +14119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calculator-simple?style=thin /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData thinCalculatorSimple = IconDataThin(0xf64c); + static const IconData thinCalculatorSimple = IconData(0xf64c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calculator-alt for icon [thinCalculatorSimple] @Deprecated('Use "thinCalculatorSimple" instead.') @@ -14129,31 +14129,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar?style=solid /// calendar, calendar-o, date, day, event, month, schedule, tear-off calendar, time, when, year - static const IconData solidCalendar = IconDataSolid(0xf133); + static const IconData solidCalendar = IconData(0xf133, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar icon /// /// https://fontawesome.com/icons/calendar?style=regular /// calendar, calendar-o, date, day, event, month, schedule, tear-off calendar, time, when, year - static const IconData calendar = IconDataRegular(0xf133); + static const IconData calendar = IconData(0xf133, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar icon /// /// https://fontawesome.com/icons/calendar?style=light /// calendar, calendar-o, date, day, event, month, schedule, tear-off calendar, time, when, year - static const IconData lightCalendar = IconDataLight(0xf133); + static const IconData lightCalendar = IconData(0xf133, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar icon /// /// https://fontawesome.com/icons/calendar?style=thin /// calendar, calendar-o, date, day, event, month, schedule, tear-off calendar, time, when, year - static const IconData thinCalendar = IconDataThin(0xf133); + static const IconData thinCalendar = IconData(0xf133, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Arrow Down icon /// /// https://fontawesome.com/icons/calendar-arrow-down?style=solid /// date, day, download, insert, month, reminder, year - static const IconData solidCalendarArrowDown = IconDataSolid(0xe0d0); + static const IconData solidCalendarArrowDown = IconData(0xe0d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-download for icon [solidCalendarArrowDown] @Deprecated('Use "solidCalendarArrowDown" instead.') @@ -14163,7 +14163,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-down?style=regular /// date, day, download, insert, month, reminder, year - static const IconData calendarArrowDown = IconDataRegular(0xe0d0); + static const IconData calendarArrowDown = IconData(0xe0d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-download for icon [calendarArrowDown] @Deprecated('Use "calendarArrowDown" instead.') @@ -14173,7 +14173,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-down?style=light /// date, day, download, insert, month, reminder, year - static const IconData lightCalendarArrowDown = IconDataLight(0xe0d0); + static const IconData lightCalendarArrowDown = IconData(0xe0d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-download for icon [lightCalendarArrowDown] @Deprecated('Use "lightCalendarArrowDown" instead.') @@ -14183,7 +14183,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-down?style=thin /// date, day, download, insert, month, reminder, year - static const IconData thinCalendarArrowDown = IconDataThin(0xe0d0); + static const IconData thinCalendarArrowDown = IconData(0xe0d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-download for icon [thinCalendarArrowDown] @Deprecated('Use "thinCalendarArrowDown" instead.') @@ -14193,7 +14193,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-up?style=solid /// date, day, month, reminder, upgrade, upload, year - static const IconData solidCalendarArrowUp = IconDataSolid(0xe0d1); + static const IconData solidCalendarArrowUp = IconData(0xe0d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-upload for icon [solidCalendarArrowUp] @Deprecated('Use "solidCalendarArrowUp" instead.') @@ -14203,7 +14203,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-up?style=regular /// date, day, month, reminder, upgrade, upload, year - static const IconData calendarArrowUp = IconDataRegular(0xe0d1); + static const IconData calendarArrowUp = IconData(0xe0d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-upload for icon [calendarArrowUp] @Deprecated('Use "calendarArrowUp" instead.') @@ -14213,7 +14213,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-up?style=light /// date, day, month, reminder, upgrade, upload, year - static const IconData lightCalendarArrowUp = IconDataLight(0xe0d1); + static const IconData lightCalendarArrowUp = IconData(0xe0d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-upload for icon [lightCalendarArrowUp] @Deprecated('Use "lightCalendarArrowUp" instead.') @@ -14223,7 +14223,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-arrow-up?style=thin /// date, day, month, reminder, upgrade, upload, year - static const IconData thinCalendarArrowUp = IconDataThin(0xe0d1); + static const IconData thinCalendarArrowUp = IconData(0xe0d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-upload for icon [thinCalendarArrowUp] @Deprecated('Use "thinCalendarArrowUp" instead.') @@ -14233,127 +14233,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-check?style=solid /// accept, agree, appointment, confirm, correct, date, day, done, enable, event, month, ok, schedule, select, success, tick, time, todo, validate, warranty, when, working, year - static const IconData solidCalendarCheck = IconDataSolid(0xf274); + static const IconData solidCalendarCheck = IconData(0xf274, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Check icon /// /// https://fontawesome.com/icons/calendar-check?style=regular /// accept, agree, appointment, confirm, correct, date, day, done, enable, event, month, ok, schedule, select, success, tick, time, todo, validate, warranty, when, working, year - static const IconData calendarCheck = IconDataRegular(0xf274); + static const IconData calendarCheck = IconData(0xf274, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Check icon /// /// https://fontawesome.com/icons/calendar-check?style=light /// accept, agree, appointment, confirm, correct, date, day, done, enable, event, month, ok, schedule, select, success, tick, time, todo, validate, warranty, when, working, year - static const IconData lightCalendarCheck = IconDataLight(0xf274); + static const IconData lightCalendarCheck = IconData(0xf274, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Check icon /// /// https://fontawesome.com/icons/calendar-check?style=thin /// accept, agree, appointment, confirm, correct, date, day, done, enable, event, month, ok, schedule, select, success, tick, time, todo, validate, warranty, when, working, year - static const IconData thinCalendarCheck = IconDataThin(0xf274); + static const IconData thinCalendarCheck = IconData(0xf274, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Circle Exclamation icon /// /// https://fontawesome.com/icons/calendar-circle-exclamation?style=solid /// alert, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData solidCalendarCircleExclamation = IconDataSolid(0xe46e); + static const IconData solidCalendarCircleExclamation = IconData(0xe46e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Circle Exclamation icon /// /// https://fontawesome.com/icons/calendar-circle-exclamation?style=regular /// alert, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData calendarCircleExclamation = IconDataRegular(0xe46e); + static const IconData calendarCircleExclamation = IconData(0xe46e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Circle Exclamation icon /// /// https://fontawesome.com/icons/calendar-circle-exclamation?style=light /// alert, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData lightCalendarCircleExclamation = IconDataLight(0xe46e); + static const IconData lightCalendarCircleExclamation = IconData(0xe46e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Circle Exclamation icon /// /// https://fontawesome.com/icons/calendar-circle-exclamation?style=thin /// alert, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData thinCalendarCircleExclamation = IconDataThin(0xe46e); + static const IconData thinCalendarCircleExclamation = IconData(0xe46e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Circle Minus icon /// /// https://fontawesome.com/icons/calendar-circle-minus?style=solid /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData solidCalendarCircleMinus = IconDataSolid(0xe46f); + static const IconData solidCalendarCircleMinus = IconData(0xe46f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Circle Minus icon /// /// https://fontawesome.com/icons/calendar-circle-minus?style=regular /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData calendarCircleMinus = IconDataRegular(0xe46f); + static const IconData calendarCircleMinus = IconData(0xe46f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Circle Minus icon /// /// https://fontawesome.com/icons/calendar-circle-minus?style=light /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData lightCalendarCircleMinus = IconDataLight(0xe46f); + static const IconData lightCalendarCircleMinus = IconData(0xe46f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Circle Minus icon /// /// https://fontawesome.com/icons/calendar-circle-minus?style=thin /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData thinCalendarCircleMinus = IconDataThin(0xe46f); + static const IconData thinCalendarCircleMinus = IconData(0xe46f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Circle Plus icon /// /// https://fontawesome.com/icons/calendar-circle-plus?style=solid /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData solidCalendarCirclePlus = IconDataSolid(0xe470); + static const IconData solidCalendarCirclePlus = IconData(0xe470, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Circle Plus icon /// /// https://fontawesome.com/icons/calendar-circle-plus?style=regular /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData calendarCirclePlus = IconDataRegular(0xe470); + static const IconData calendarCirclePlus = IconData(0xe470, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Circle Plus icon /// /// https://fontawesome.com/icons/calendar-circle-plus?style=light /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData lightCalendarCirclePlus = IconDataLight(0xe470); + static const IconData lightCalendarCirclePlus = IconData(0xe470, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Circle Plus icon /// /// https://fontawesome.com/icons/calendar-circle-plus?style=thin /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData thinCalendarCirclePlus = IconDataThin(0xe470); + static const IconData thinCalendarCirclePlus = IconData(0xe470, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Circle User icon /// /// https://fontawesome.com/icons/calendar-circle-user?style=solid /// attendee, calendar, date, day, employee, event, important, invitation, invite, month, schedule, time, uer, when, year - static const IconData solidCalendarCircleUser = IconDataSolid(0xe471); + static const IconData solidCalendarCircleUser = IconData(0xe471, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Circle User icon /// /// https://fontawesome.com/icons/calendar-circle-user?style=regular /// attendee, calendar, date, day, employee, event, important, invitation, invite, month, schedule, time, uer, when, year - static const IconData calendarCircleUser = IconDataRegular(0xe471); + static const IconData calendarCircleUser = IconData(0xe471, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Circle User icon /// /// https://fontawesome.com/icons/calendar-circle-user?style=light /// attendee, calendar, date, day, employee, event, important, invitation, invite, month, schedule, time, uer, when, year - static const IconData lightCalendarCircleUser = IconDataLight(0xe471); + static const IconData lightCalendarCircleUser = IconData(0xe471, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Circle User icon /// /// https://fontawesome.com/icons/calendar-circle-user?style=thin /// attendee, calendar, date, day, employee, event, important, invitation, invite, month, schedule, time, uer, when, year - static const IconData thinCalendarCircleUser = IconDataThin(0xe471); + static const IconData thinCalendarCircleUser = IconData(0xe471, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Clock icon /// /// https://fontawesome.com/icons/calendar-clock?style=solid /// date, day, delay, month, remind, waiting, year - static const IconData solidCalendarClock = IconDataSolid(0xe0d2); + static const IconData solidCalendarClock = IconData(0xe0d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-time for icon [solidCalendarClock] @Deprecated('Use "solidCalendarClock" instead.') @@ -14363,7 +14363,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-clock?style=regular /// date, day, delay, month, remind, waiting, year - static const IconData calendarClock = IconDataRegular(0xe0d2); + static const IconData calendarClock = IconData(0xe0d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-time for icon [calendarClock] @Deprecated('Use "calendarClock" instead.') @@ -14373,7 +14373,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-clock?style=light /// date, day, delay, month, remind, waiting, year - static const IconData lightCalendarClock = IconDataLight(0xe0d2); + static const IconData lightCalendarClock = IconData(0xe0d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-time for icon [lightCalendarClock] @Deprecated('Use "lightCalendarClock" instead.') @@ -14383,7 +14383,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-clock?style=thin /// date, day, delay, month, remind, waiting, year - static const IconData thinCalendarClock = IconDataThin(0xe0d2); + static const IconData thinCalendarClock = IconData(0xe0d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-time for icon [thinCalendarClock] @Deprecated('Use "thinCalendarClock" instead.') @@ -14393,31 +14393,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-day?style=solid /// date, day, detail, event, focus, month, schedule, single day, time, today, when, year - static const IconData solidCalendarDay = IconDataSolid(0xf783); + static const IconData solidCalendarDay = IconData(0xf783, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Day icon /// /// https://fontawesome.com/icons/calendar-day?style=regular /// date, day, detail, event, focus, month, schedule, single day, time, today, when, year - static const IconData calendarDay = IconDataRegular(0xf783); + static const IconData calendarDay = IconData(0xf783, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Day icon /// /// https://fontawesome.com/icons/calendar-day?style=light /// date, day, detail, event, focus, month, schedule, single day, time, today, when, year - static const IconData lightCalendarDay = IconDataLight(0xf783); + static const IconData lightCalendarDay = IconData(0xf783, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Day icon /// /// https://fontawesome.com/icons/calendar-day?style=thin /// date, day, detail, event, focus, month, schedule, single day, time, today, when, year - static const IconData thinCalendarDay = IconDataThin(0xf783); + static const IconData thinCalendarDay = IconData(0xf783, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Days icon /// /// https://fontawesome.com/icons/calendar-days?style=solid /// calendar, date, day, event, month, schedule, time, when, year - static const IconData solidCalendarDays = IconDataSolid(0xf073); + static const IconData solidCalendarDays = IconData(0xf073, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-alt for icon [solidCalendarDays] @Deprecated('Use "solidCalendarDays" instead.') @@ -14427,7 +14427,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-days?style=regular /// calendar, date, day, event, month, schedule, time, when, year - static const IconData calendarDays = IconDataRegular(0xf073); + static const IconData calendarDays = IconData(0xf073, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-alt for icon [calendarDays] @Deprecated('Use "calendarDays" instead.') @@ -14437,7 +14437,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-days?style=light /// calendar, date, day, event, month, schedule, time, when, year - static const IconData lightCalendarDays = IconDataLight(0xf073); + static const IconData lightCalendarDays = IconData(0xf073, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-alt for icon [lightCalendarDays] @Deprecated('Use "lightCalendarDays" instead.') @@ -14447,7 +14447,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-days?style=thin /// calendar, date, day, event, month, schedule, time, when, year - static const IconData thinCalendarDays = IconDataThin(0xf073); + static const IconData thinCalendarDays = IconData(0xf073, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-alt for icon [thinCalendarDays] @Deprecated('Use "thinCalendarDays" instead.') @@ -14457,79 +14457,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-exclamation?style=solid /// alert, attention, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData solidCalendarExclamation = IconDataSolid(0xf334); + static const IconData solidCalendarExclamation = IconData(0xf334, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Exclamation icon /// /// https://fontawesome.com/icons/calendar-exclamation?style=regular /// alert, attention, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData calendarExclamation = IconDataRegular(0xf334); + static const IconData calendarExclamation = IconData(0xf334, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Exclamation icon /// /// https://fontawesome.com/icons/calendar-exclamation?style=light /// alert, attention, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData lightCalendarExclamation = IconDataLight(0xf334); + static const IconData lightCalendarExclamation = IconData(0xf334, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Exclamation icon /// /// https://fontawesome.com/icons/calendar-exclamation?style=thin /// alert, attention, calendar, date, day, error, event, failed, important, month, schedule, time, when, year - static const IconData thinCalendarExclamation = IconDataThin(0xf334); + static const IconData thinCalendarExclamation = IconData(0xf334, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Heart icon /// /// https://fontawesome.com/icons/calendar-heart?style=solid /// date, day, favorite, month, rsvp, valentine, wishlist, year - static const IconData solidCalendarHeart = IconDataSolid(0xe0d3); + static const IconData solidCalendarHeart = IconData(0xe0d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Heart icon /// /// https://fontawesome.com/icons/calendar-heart?style=regular /// date, day, favorite, month, rsvp, valentine, wishlist, year - static const IconData calendarHeart = IconDataRegular(0xe0d3); + static const IconData calendarHeart = IconData(0xe0d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Heart icon /// /// https://fontawesome.com/icons/calendar-heart?style=light /// date, day, favorite, month, rsvp, valentine, wishlist, year - static const IconData lightCalendarHeart = IconDataLight(0xe0d3); + static const IconData lightCalendarHeart = IconData(0xe0d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Heart icon /// /// https://fontawesome.com/icons/calendar-heart?style=thin /// date, day, favorite, month, rsvp, valentine, wishlist, year - static const IconData thinCalendarHeart = IconDataThin(0xe0d3); + static const IconData thinCalendarHeart = IconData(0xe0d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Image icon /// /// https://fontawesome.com/icons/calendar-image?style=solid /// date, day, month, reminder, year - static const IconData solidCalendarImage = IconDataSolid(0xe0d4); + static const IconData solidCalendarImage = IconData(0xe0d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Image icon /// /// https://fontawesome.com/icons/calendar-image?style=regular /// date, day, month, reminder, year - static const IconData calendarImage = IconDataRegular(0xe0d4); + static const IconData calendarImage = IconData(0xe0d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Image icon /// /// https://fontawesome.com/icons/calendar-image?style=light /// date, day, month, reminder, year - static const IconData lightCalendarImage = IconDataLight(0xe0d4); + static const IconData lightCalendarImage = IconData(0xe0d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Image icon /// /// https://fontawesome.com/icons/calendar-image?style=thin /// date, day, month, reminder, year - static const IconData thinCalendarImage = IconDataThin(0xe0d4); + static const IconData thinCalendarImage = IconData(0xe0d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Lines icon /// /// https://fontawesome.com/icons/calendar-lines?style=solid /// date, day, month, reminder, year - static const IconData solidCalendarLines = IconDataSolid(0xe0d5); + static const IconData solidCalendarLines = IconData(0xe0d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-note for icon [solidCalendarLines] @Deprecated('Use "solidCalendarLines" instead.') @@ -14539,7 +14539,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-lines?style=regular /// date, day, month, reminder, year - static const IconData calendarLines = IconDataRegular(0xe0d5); + static const IconData calendarLines = IconData(0xe0d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-note for icon [calendarLines] @Deprecated('Use "calendarLines" instead.') @@ -14549,7 +14549,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-lines?style=light /// date, day, month, reminder, year - static const IconData lightCalendarLines = IconDataLight(0xe0d5); + static const IconData lightCalendarLines = IconData(0xe0d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-note for icon [lightCalendarLines] @Deprecated('Use "lightCalendarLines" instead.') @@ -14559,7 +14559,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-lines?style=thin /// date, day, month, reminder, year - static const IconData thinCalendarLines = IconDataThin(0xe0d5); + static const IconData thinCalendarLines = IconData(0xe0d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-note for icon [thinCalendarLines] @Deprecated('Use "thinCalendarLines" instead.') @@ -14569,55 +14569,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-lines-pen?style=solid /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData solidCalendarLinesPen = IconDataSolid(0xe472); + static const IconData solidCalendarLinesPen = IconData(0xe472, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Lines Pen icon /// /// https://fontawesome.com/icons/calendar-lines-pen?style=regular /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData calendarLinesPen = IconDataRegular(0xe472); + static const IconData calendarLinesPen = IconData(0xe472, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Lines Pen icon /// /// https://fontawesome.com/icons/calendar-lines-pen?style=light /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData lightCalendarLinesPen = IconDataLight(0xe472); + static const IconData lightCalendarLinesPen = IconData(0xe472, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Lines Pen icon /// /// https://fontawesome.com/icons/calendar-lines-pen?style=thin /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData thinCalendarLinesPen = IconDataThin(0xe472); + static const IconData thinCalendarLinesPen = IconData(0xe472, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Minus icon /// /// https://fontawesome.com/icons/calendar-minus?style=solid /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData solidCalendarMinus = IconDataSolid(0xf272); + static const IconData solidCalendarMinus = IconData(0xf272, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Minus icon /// /// https://fontawesome.com/icons/calendar-minus?style=regular /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData calendarMinus = IconDataRegular(0xf272); + static const IconData calendarMinus = IconData(0xf272, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Minus icon /// /// https://fontawesome.com/icons/calendar-minus?style=light /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData lightCalendarMinus = IconDataLight(0xf272); + static const IconData lightCalendarMinus = IconData(0xf272, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Minus icon /// /// https://fontawesome.com/icons/calendar-minus?style=thin /// calendar, date, day, delete, event, month, negative, remove, schedule, time, when, year - static const IconData thinCalendarMinus = IconDataThin(0xf272); + static const IconData thinCalendarMinus = IconData(0xf272, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Pen icon /// /// https://fontawesome.com/icons/calendar-pen?style=solid /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData solidCalendarPen = IconDataSolid(0xf333); + static const IconData solidCalendarPen = IconData(0xf333, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-edit for icon [solidCalendarPen] @Deprecated('Use "solidCalendarPen" instead.') @@ -14627,7 +14627,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-pen?style=regular /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData calendarPen = IconDataRegular(0xf333); + static const IconData calendarPen = IconData(0xf333, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-edit for icon [calendarPen] @Deprecated('Use "calendarPen" instead.') @@ -14637,7 +14637,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-pen?style=light /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData lightCalendarPen = IconDataLight(0xf333); + static const IconData lightCalendarPen = IconData(0xf333, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-edit for icon [lightCalendarPen] @Deprecated('Use "lightCalendarPen" instead.') @@ -14647,7 +14647,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-pen?style=thin /// date, day, edit, event, modify, month, pen, pencil, schedule, time, update, when, write, year - static const IconData thinCalendarPen = IconDataThin(0xf333); + static const IconData thinCalendarPen = IconData(0xf333, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-edit for icon [thinCalendarPen] @Deprecated('Use "thinCalendarPen" instead.') @@ -14657,127 +14657,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-plus?style=solid /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData solidCalendarPlus = IconDataSolid(0xf271); + static const IconData solidCalendarPlus = IconData(0xf271, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Plus icon /// /// https://fontawesome.com/icons/calendar-plus?style=regular /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData calendarPlus = IconDataRegular(0xf271); + static const IconData calendarPlus = IconData(0xf271, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Plus icon /// /// https://fontawesome.com/icons/calendar-plus?style=light /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData lightCalendarPlus = IconDataLight(0xf271); + static const IconData lightCalendarPlus = IconData(0xf271, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Plus icon /// /// https://fontawesome.com/icons/calendar-plus?style=thin /// add, calendar, create, date, day, event, month, new, positive, schedule, time, when, year - static const IconData thinCalendarPlus = IconDataThin(0xf271); + static const IconData thinCalendarPlus = IconData(0xf271, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Range icon /// /// https://fontawesome.com/icons/calendar-range?style=solid /// date, day, month, reminder, year - static const IconData solidCalendarRange = IconDataSolid(0xe0d6); + static const IconData solidCalendarRange = IconData(0xe0d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Range icon /// /// https://fontawesome.com/icons/calendar-range?style=regular /// date, day, month, reminder, year - static const IconData calendarRange = IconDataRegular(0xe0d6); + static const IconData calendarRange = IconData(0xe0d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Range icon /// /// https://fontawesome.com/icons/calendar-range?style=light /// date, day, month, reminder, year - static const IconData lightCalendarRange = IconDataLight(0xe0d6); + static const IconData lightCalendarRange = IconData(0xe0d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Range icon /// /// https://fontawesome.com/icons/calendar-range?style=thin /// date, day, month, reminder, year - static const IconData thinCalendarRange = IconDataThin(0xe0d6); + static const IconData thinCalendarRange = IconData(0xe0d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Star icon /// /// https://fontawesome.com/icons/calendar-star?style=solid /// calendar, date, day, event, favorite, important, month, schedule, time, when, year - static const IconData solidCalendarStar = IconDataSolid(0xf736); + static const IconData solidCalendarStar = IconData(0xf736, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Star icon /// /// https://fontawesome.com/icons/calendar-star?style=regular /// calendar, date, day, event, favorite, important, month, schedule, time, when, year - static const IconData calendarStar = IconDataRegular(0xf736); + static const IconData calendarStar = IconData(0xf736, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Star icon /// /// https://fontawesome.com/icons/calendar-star?style=light /// calendar, date, day, event, favorite, important, month, schedule, time, when, year - static const IconData lightCalendarStar = IconDataLight(0xf736); + static const IconData lightCalendarStar = IconData(0xf736, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Star icon /// /// https://fontawesome.com/icons/calendar-star?style=thin /// calendar, date, day, event, favorite, important, month, schedule, time, when, year - static const IconData thinCalendarStar = IconDataThin(0xf736); + static const IconData thinCalendarStar = IconData(0xf736, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Users icon /// /// https://fontawesome.com/icons/calendar-users?style=solid /// calendar, date, day, event, important, invitation, invite, month, networking, schedule, time, when, year, attendee, img - static const IconData solidCalendarUsers = IconDataSolid(0xe5e2); + static const IconData solidCalendarUsers = IconData(0xe5e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Users icon /// /// https://fontawesome.com/icons/calendar-users?style=regular /// calendar, date, day, event, important, invitation, invite, month, networking, schedule, time, when, year, attendee, img - static const IconData calendarUsers = IconDataRegular(0xe5e2); + static const IconData calendarUsers = IconData(0xe5e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Users icon /// /// https://fontawesome.com/icons/calendar-users?style=light /// calendar, date, day, event, important, invitation, invite, month, networking, schedule, time, when, year, attendee, img - static const IconData lightCalendarUsers = IconDataLight(0xe5e2); + static const IconData lightCalendarUsers = IconData(0xe5e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Users icon /// /// https://fontawesome.com/icons/calendar-users?style=thin /// calendar, date, day, event, important, invitation, invite, month, networking, schedule, time, when, year, attendee, img - static const IconData thinCalendarUsers = IconDataThin(0xe5e2); + static const IconData thinCalendarUsers = IconData(0xe5e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Week icon /// /// https://fontawesome.com/icons/calendar-week?style=solid /// date, day, detail, event, focus, month, schedule, single week, time, today, when, year - static const IconData solidCalendarWeek = IconDataSolid(0xf784); + static const IconData solidCalendarWeek = IconData(0xf784, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendar Week icon /// /// https://fontawesome.com/icons/calendar-week?style=regular /// date, day, detail, event, focus, month, schedule, single week, time, today, when, year - static const IconData calendarWeek = IconDataRegular(0xf784); + static const IconData calendarWeek = IconData(0xf784, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendar Week icon /// /// https://fontawesome.com/icons/calendar-week?style=light /// date, day, detail, event, focus, month, schedule, single week, time, today, when, year - static const IconData lightCalendarWeek = IconDataLight(0xf784); + static const IconData lightCalendarWeek = IconData(0xf784, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendar Week icon /// /// https://fontawesome.com/icons/calendar-week?style=thin /// date, day, detail, event, focus, month, schedule, single week, time, today, when, year - static const IconData thinCalendarWeek = IconDataThin(0xf784); + static const IconData thinCalendarWeek = IconData(0xf784, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Calendar Xmark icon /// /// https://fontawesome.com/icons/calendar-xmark?style=solid /// archive, calendar, date, day, delete, event, month, remove, schedule, time, uncheck, when, x, year - static const IconData solidCalendarXmark = IconDataSolid(0xf273); + static const IconData solidCalendarXmark = IconData(0xf273, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-times for icon [solidCalendarXmark] @Deprecated('Use "solidCalendarXmark" instead.') @@ -14787,7 +14787,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-xmark?style=regular /// archive, calendar, date, day, delete, event, month, remove, schedule, time, uncheck, when, x, year - static const IconData calendarXmark = IconDataRegular(0xf273); + static const IconData calendarXmark = IconData(0xf273, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-times for icon [calendarXmark] @Deprecated('Use "calendarXmark" instead.') @@ -14797,7 +14797,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-xmark?style=light /// archive, calendar, date, day, delete, event, month, remove, schedule, time, uncheck, when, x, year - static const IconData lightCalendarXmark = IconDataLight(0xf273); + static const IconData lightCalendarXmark = IconData(0xf273, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-times for icon [lightCalendarXmark] @Deprecated('Use "lightCalendarXmark" instead.') @@ -14807,7 +14807,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendar-xmark?style=thin /// archive, calendar, date, day, delete, event, month, remove, schedule, time, uncheck, when, x, year - static const IconData thinCalendarXmark = IconDataThin(0xf273); + static const IconData thinCalendarXmark = IconData(0xf273, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-times for icon [thinCalendarXmark] @Deprecated('Use "thinCalendarXmark" instead.') @@ -14817,31 +14817,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/calendars?style=solid /// date, day, month, reminder, year - static const IconData solidCalendars = IconDataSolid(0xe0d7); + static const IconData solidCalendars = IconData(0xe0d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Calendars icon /// /// https://fontawesome.com/icons/calendars?style=regular /// date, day, month, reminder, year - static const IconData calendars = IconDataRegular(0xe0d7); + static const IconData calendars = IconData(0xe0d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Calendars icon /// /// https://fontawesome.com/icons/calendars?style=light /// date, day, month, reminder, year - static const IconData lightCalendars = IconDataLight(0xe0d7); + static const IconData lightCalendars = IconData(0xe0d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Calendars icon /// /// https://fontawesome.com/icons/calendars?style=thin /// date, day, month, reminder, year - static const IconData thinCalendars = IconDataThin(0xe0d7); + static const IconData thinCalendars = IconData(0xe0d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camcorder icon /// /// https://fontawesome.com/icons/camcorder?style=solid /// camera, cinema, director, film, handheld, movie, retro, theater, video, video camera, vintage - static const IconData solidCamcorder = IconDataSolid(0xf8a8); + static const IconData solidCamcorder = IconData(0xf8a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias video-handheld for icon [solidCamcorder] @Deprecated('Use "solidCamcorder" instead.') @@ -14851,7 +14851,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camcorder?style=regular /// camera, cinema, director, film, handheld, movie, retro, theater, video, video camera, vintage - static const IconData camcorder = IconDataRegular(0xf8a8); + static const IconData camcorder = IconData(0xf8a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias video-handheld for icon [camcorder] @Deprecated('Use "camcorder" instead.') @@ -14861,7 +14861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camcorder?style=light /// camera, cinema, director, film, handheld, movie, retro, theater, video, video camera, vintage - static const IconData lightCamcorder = IconDataLight(0xf8a8); + static const IconData lightCamcorder = IconData(0xf8a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias video-handheld for icon [lightCamcorder] @Deprecated('Use "lightCamcorder" instead.') @@ -14871,7 +14871,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camcorder?style=thin /// camera, cinema, director, film, handheld, movie, retro, theater, video, video camera, vintage - static const IconData thinCamcorder = IconDataThin(0xf8a8); + static const IconData thinCamcorder = IconData(0xf8a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias video-handheld for icon [thinCamcorder] @Deprecated('Use "thinCamcorder" instead.') @@ -14881,7 +14881,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera?style=solid /// image, img, lens, photo, picture, record, shutter, video - static const IconData solidCamera = IconDataSolid(0xf030); + static const IconData solidCamera = IconData(0xf030, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias camera-alt for icon [solidCamera] @Deprecated('Use "solidCamera" instead.') @@ -14891,7 +14891,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera?style=regular /// image, img, lens, photo, picture, record, shutter, video - static const IconData camera = IconDataRegular(0xf030); + static const IconData camera = IconData(0xf030, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias camera-alt for icon [camera] @Deprecated('Use "camera" instead.') @@ -14901,7 +14901,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera?style=light /// image, img, lens, photo, picture, record, shutter, video - static const IconData lightCamera = IconDataLight(0xf030); + static const IconData lightCamera = IconData(0xf030, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias camera-alt for icon [lightCamera] @Deprecated('Use "lightCamera" instead.') @@ -14911,7 +14911,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera?style=thin /// image, img, lens, photo, picture, record, shutter, video - static const IconData thinCamera = IconDataThin(0xf030); + static const IconData thinCamera = IconData(0xf030, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias camera-alt for icon [thinCamera] @Deprecated('Use "thinCamera" instead.') @@ -14921,7 +14921,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-cctv?style=solid /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData solidCameraCctv = IconDataSolid(0xf8ac); + static const IconData solidCameraCctv = IconData(0xf8ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cctv for icon [solidCameraCctv] @Deprecated('Use "solidCameraCctv" instead.') @@ -14931,7 +14931,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-cctv?style=regular /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData cameraCctv = IconDataRegular(0xf8ac); + static const IconData cameraCctv = IconData(0xf8ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cctv for icon [cameraCctv] @Deprecated('Use "cameraCctv" instead.') @@ -14941,7 +14941,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-cctv?style=light /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData lightCameraCctv = IconDataLight(0xf8ac); + static const IconData lightCameraCctv = IconData(0xf8ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cctv for icon [lightCameraCctv] @Deprecated('Use "lightCameraCctv" instead.') @@ -14951,7 +14951,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-cctv?style=thin /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData thinCameraCctv = IconDataThin(0xf8ac); + static const IconData thinCameraCctv = IconData(0xf8ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cctv for icon [thinCameraCctv] @Deprecated('Use "thinCameraCctv" instead.') @@ -14961,103 +14961,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-movie?style=solid /// camera, cinema, director, film, movie, movie camera, theater, video - static const IconData solidCameraMovie = IconDataSolid(0xf8a9); + static const IconData solidCameraMovie = IconData(0xf8a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Camera Movie icon /// /// https://fontawesome.com/icons/camera-movie?style=regular /// camera, cinema, director, film, movie, movie camera, theater, video - static const IconData cameraMovie = IconDataRegular(0xf8a9); + static const IconData cameraMovie = IconData(0xf8a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Camera Movie icon /// /// https://fontawesome.com/icons/camera-movie?style=light /// camera, cinema, director, film, movie, movie camera, theater, video - static const IconData lightCameraMovie = IconDataLight(0xf8a9); + static const IconData lightCameraMovie = IconData(0xf8a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Camera Movie icon /// /// https://fontawesome.com/icons/camera-movie?style=thin /// camera, cinema, director, film, movie, movie camera, theater, video - static const IconData thinCameraMovie = IconDataThin(0xf8a9); + static const IconData thinCameraMovie = IconData(0xf8a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camera Polaroid icon /// /// https://fontawesome.com/icons/camera-polaroid?style=solid /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData solidCameraPolaroid = IconDataSolid(0xf8aa); + static const IconData solidCameraPolaroid = IconData(0xf8aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Camera Polaroid icon /// /// https://fontawesome.com/icons/camera-polaroid?style=regular /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData cameraPolaroid = IconDataRegular(0xf8aa); + static const IconData cameraPolaroid = IconData(0xf8aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Camera Polaroid icon /// /// https://fontawesome.com/icons/camera-polaroid?style=light /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData lightCameraPolaroid = IconDataLight(0xf8aa); + static const IconData lightCameraPolaroid = IconData(0xf8aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Camera Polaroid icon /// /// https://fontawesome.com/icons/camera-polaroid?style=thin /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData thinCameraPolaroid = IconDataThin(0xf8aa); + static const IconData thinCameraPolaroid = IconData(0xf8aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camera Retro icon /// /// https://fontawesome.com/icons/camera-retro?style=solid /// camera, image, img, lens, photo, picture, record, shutter, video - static const IconData solidCameraRetro = IconDataSolid(0xf083); + static const IconData solidCameraRetro = IconData(0xf083, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Camera Retro icon /// /// https://fontawesome.com/icons/camera-retro?style=regular /// camera, image, img, lens, photo, picture, record, shutter, video - static const IconData cameraRetro = IconDataRegular(0xf083); + static const IconData cameraRetro = IconData(0xf083, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Camera Retro icon /// /// https://fontawesome.com/icons/camera-retro?style=light /// camera, image, img, lens, photo, picture, record, shutter, video - static const IconData lightCameraRetro = IconDataLight(0xf083); + static const IconData lightCameraRetro = IconData(0xf083, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Camera Retro icon /// /// https://fontawesome.com/icons/camera-retro?style=thin /// camera, image, img, lens, photo, picture, record, shutter, video - static const IconData thinCameraRetro = IconDataThin(0xf083); + static const IconData thinCameraRetro = IconData(0xf083, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camera Rotate icon /// /// https://fontawesome.com/icons/camera-rotate?style=solid /// flip, front-facing, img, photo, selfie - static const IconData solidCameraRotate = IconDataSolid(0xe0d8); + static const IconData solidCameraRotate = IconData(0xe0d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Camera Rotate icon /// /// https://fontawesome.com/icons/camera-rotate?style=regular /// flip, front-facing, img, photo, selfie - static const IconData cameraRotate = IconDataRegular(0xe0d8); + static const IconData cameraRotate = IconData(0xe0d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Camera Rotate icon /// /// https://fontawesome.com/icons/camera-rotate?style=light /// flip, front-facing, img, photo, selfie - static const IconData lightCameraRotate = IconDataLight(0xe0d8); + static const IconData lightCameraRotate = IconData(0xe0d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Camera Rotate icon /// /// https://fontawesome.com/icons/camera-rotate?style=thin /// flip, front-facing, img, photo, selfie - static const IconData thinCameraRotate = IconDataThin(0xe0d8); + static const IconData thinCameraRotate = IconData(0xe0d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camera Security icon /// /// https://fontawesome.com/icons/camera-security?style=solid /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData solidCameraSecurity = IconDataSolid(0xf8fe); + static const IconData solidCameraSecurity = IconData(0xf8fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias camera-home for icon [solidCameraSecurity] @Deprecated('Use "solidCameraSecurity" instead.') @@ -15067,7 +15067,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-security?style=regular /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData cameraSecurity = IconDataRegular(0xf8fe); + static const IconData cameraSecurity = IconData(0xf8fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias camera-home for icon [cameraSecurity] @Deprecated('Use "cameraSecurity" instead.') @@ -15077,7 +15077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-security?style=light /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData lightCameraSecurity = IconDataLight(0xf8fe); + static const IconData lightCameraSecurity = IconData(0xf8fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias camera-home for icon [lightCameraSecurity] @Deprecated('Use "lightCameraSecurity" instead.') @@ -15087,7 +15087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-security?style=thin /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData thinCameraSecurity = IconDataThin(0xf8fe); + static const IconData thinCameraSecurity = IconData(0xf8fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias camera-home for icon [thinCameraSecurity] @Deprecated('Use "thinCameraSecurity" instead.') @@ -15097,31 +15097,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-slash?style=solid /// camera, disabled, img, photo - static const IconData solidCameraSlash = IconDataSolid(0xe0d9); + static const IconData solidCameraSlash = IconData(0xe0d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Camera Slash icon /// /// https://fontawesome.com/icons/camera-slash?style=regular /// camera, disabled, img, photo - static const IconData cameraSlash = IconDataRegular(0xe0d9); + static const IconData cameraSlash = IconData(0xe0d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Camera Slash icon /// /// https://fontawesome.com/icons/camera-slash?style=light /// camera, disabled, img, photo - static const IconData lightCameraSlash = IconDataLight(0xe0d9); + static const IconData lightCameraSlash = IconData(0xe0d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Camera Slash icon /// /// https://fontawesome.com/icons/camera-slash?style=thin /// camera, disabled, img, photo - static const IconData thinCameraSlash = IconDataThin(0xe0d9); + static const IconData thinCameraSlash = IconData(0xe0d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Camera Viewfinder icon /// /// https://fontawesome.com/icons/camera-viewfinder?style=solid /// camera, focus, img, screenshot, video - static const IconData solidCameraViewfinder = IconDataSolid(0xe0da); + static const IconData solidCameraViewfinder = IconData(0xe0da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias screenshot for icon [solidCameraViewfinder] @Deprecated('Use "solidCameraViewfinder" instead.') @@ -15131,7 +15131,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-viewfinder?style=regular /// camera, focus, img, screenshot, video - static const IconData cameraViewfinder = IconDataRegular(0xe0da); + static const IconData cameraViewfinder = IconData(0xe0da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias screenshot for icon [cameraViewfinder] @Deprecated('Use "cameraViewfinder" instead.') @@ -15141,7 +15141,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-viewfinder?style=light /// camera, focus, img, screenshot, video - static const IconData lightCameraViewfinder = IconDataLight(0xe0da); + static const IconData lightCameraViewfinder = IconData(0xe0da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias screenshot for icon [lightCameraViewfinder] @Deprecated('Use "lightCameraViewfinder" instead.') @@ -15151,7 +15151,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-viewfinder?style=thin /// camera, focus, img, screenshot, video - static const IconData thinCameraViewfinder = IconDataThin(0xe0da); + static const IconData thinCameraViewfinder = IconData(0xe0da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias screenshot for icon [thinCameraViewfinder] @Deprecated('Use "thinCameraViewfinder" instead.') @@ -15161,7 +15161,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web?style=solid /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData solidCameraWeb = IconDataSolid(0xf832); + static const IconData solidCameraWeb = IconData(0xf832, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias webcam for icon [solidCameraWeb] @Deprecated('Use "solidCameraWeb" instead.') @@ -15171,7 +15171,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web?style=regular /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData cameraWeb = IconDataRegular(0xf832); + static const IconData cameraWeb = IconData(0xf832, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias webcam for icon [cameraWeb] @Deprecated('Use "cameraWeb" instead.') @@ -15181,7 +15181,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web?style=light /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData lightCameraWeb = IconDataLight(0xf832); + static const IconData lightCameraWeb = IconData(0xf832, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias webcam for icon [lightCameraWeb] @Deprecated('Use "lightCameraWeb" instead.') @@ -15191,7 +15191,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web?style=thin /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData thinCameraWeb = IconDataThin(0xf832); + static const IconData thinCameraWeb = IconData(0xf832, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias webcam for icon [thinCameraWeb] @Deprecated('Use "thinCameraWeb" instead.') @@ -15201,7 +15201,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web-slash?style=solid /// chat, conference call, disabled, disconnect, facetime, podcast, video, videoconferencing, youtube - static const IconData solidCameraWebSlash = IconDataSolid(0xf833); + static const IconData solidCameraWebSlash = IconData(0xf833, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias webcam-slash for icon [solidCameraWebSlash] @Deprecated('Use "solidCameraWebSlash" instead.') @@ -15211,7 +15211,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web-slash?style=regular /// chat, conference call, disabled, disconnect, facetime, podcast, video, videoconferencing, youtube - static const IconData cameraWebSlash = IconDataRegular(0xf833); + static const IconData cameraWebSlash = IconData(0xf833, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias webcam-slash for icon [cameraWebSlash] @Deprecated('Use "cameraWebSlash" instead.') @@ -15221,7 +15221,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web-slash?style=light /// chat, conference call, disabled, disconnect, facetime, podcast, video, videoconferencing, youtube - static const IconData lightCameraWebSlash = IconDataLight(0xf833); + static const IconData lightCameraWebSlash = IconData(0xf833, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias webcam-slash for icon [lightCameraWebSlash] @Deprecated('Use "lightCameraWebSlash" instead.') @@ -15231,7 +15231,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/camera-web-slash?style=thin /// chat, conference call, disabled, disconnect, facetime, podcast, video, videoconferencing, youtube - static const IconData thinCameraWebSlash = IconDataThin(0xf833); + static const IconData thinCameraWebSlash = IconData(0xf833, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias webcam-slash for icon [thinCameraWebSlash] @Deprecated('Use "thinCameraWebSlash" instead.') @@ -15241,133 +15241,133 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/campfire?style=solid /// Dungeons & Dragons, caliente, campaign, camping, d&d, dnd, fall, fire, flame, gathering, heat, hot, meeting, outdoors, seasonal, tent, wilderness - static const IconData solidCampfire = IconDataSolid(0xf6ba); + static const IconData solidCampfire = IconData(0xf6ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Campfire icon /// /// https://fontawesome.com/icons/campfire?style=regular /// Dungeons & Dragons, caliente, campaign, camping, d&d, dnd, fall, fire, flame, gathering, heat, hot, meeting, outdoors, seasonal, tent, wilderness - static const IconData campfire = IconDataRegular(0xf6ba); + static const IconData campfire = IconData(0xf6ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Campfire icon /// /// https://fontawesome.com/icons/campfire?style=light /// Dungeons & Dragons, caliente, campaign, camping, d&d, dnd, fall, fire, flame, gathering, heat, hot, meeting, outdoors, seasonal, tent, wilderness - static const IconData lightCampfire = IconDataLight(0xf6ba); + static const IconData lightCampfire = IconData(0xf6ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Campfire icon /// /// https://fontawesome.com/icons/campfire?style=thin /// Dungeons & Dragons, caliente, campaign, camping, d&d, dnd, fall, fire, flame, gathering, heat, hot, meeting, outdoors, seasonal, tent, wilderness - static const IconData thinCampfire = IconDataThin(0xf6ba); + static const IconData thinCampfire = IconData(0xf6ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Campground icon /// /// https://fontawesome.com/icons/campground?style=solid /// camping, fall, outdoors, teepee, tent, tipi - static const IconData solidCampground = IconDataSolid(0xf6bb); + static const IconData solidCampground = IconData(0xf6bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Campground icon /// /// https://fontawesome.com/icons/campground?style=regular /// camping, fall, outdoors, teepee, tent, tipi - static const IconData campground = IconDataRegular(0xf6bb); + static const IconData campground = IconData(0xf6bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Campground icon /// /// https://fontawesome.com/icons/campground?style=light /// camping, fall, outdoors, teepee, tent, tipi - static const IconData lightCampground = IconDataLight(0xf6bb); + static const IconData lightCampground = IconData(0xf6bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Campground icon /// /// https://fontawesome.com/icons/campground?style=thin /// camping, fall, outdoors, teepee, tent, tipi - static const IconData thinCampground = IconDataThin(0xf6bb); + static const IconData thinCampground = IconData(0xf6bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Can Food icon /// /// https://fontawesome.com/icons/can-food?style=solid /// canned, ration, soup, tin - static const IconData solidCanFood = IconDataSolid(0xe3e6); + static const IconData solidCanFood = IconData(0xe3e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Can Food icon /// /// https://fontawesome.com/icons/can-food?style=regular /// canned, ration, soup, tin - static const IconData canFood = IconDataRegular(0xe3e6); + static const IconData canFood = IconData(0xe3e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Can Food icon /// /// https://fontawesome.com/icons/can-food?style=light /// canned, ration, soup, tin - static const IconData lightCanFood = IconDataLight(0xe3e6); + static const IconData lightCanFood = IconData(0xe3e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Can Food icon /// /// https://fontawesome.com/icons/can-food?style=thin /// canned, ration, soup, tin - static const IconData thinCanFood = IconDataThin(0xe3e6); + static const IconData thinCanFood = IconData(0xe3e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Canadian Maple Leaf icon /// /// https://fontawesome.com/icons/canadian-maple-leaf?style=brands /// canada, flag, flora, nature, plant - static const IconData canadianMapleLeaf = IconDataBrands(0xf785); + static const IconData canadianMapleLeaf = IconData(0xf785, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Candle Holder icon /// /// https://fontawesome.com/icons/candle-holder?style=solid /// candle, fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData solidCandleHolder = IconDataSolid(0xf6bc); + static const IconData solidCandleHolder = IconData(0xf6bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Candle Holder icon /// /// https://fontawesome.com/icons/candle-holder?style=regular /// candle, fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData candleHolder = IconDataRegular(0xf6bc); + static const IconData candleHolder = IconData(0xf6bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Candle Holder icon /// /// https://fontawesome.com/icons/candle-holder?style=light /// candle, fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData lightCandleHolder = IconDataLight(0xf6bc); + static const IconData lightCandleHolder = IconData(0xf6bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Candle Holder icon /// /// https://fontawesome.com/icons/candle-holder?style=thin /// candle, fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData thinCandleHolder = IconDataThin(0xf6bc); + static const IconData thinCandleHolder = IconData(0xf6bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Candy icon /// /// https://fontawesome.com/icons/candy?style=solid /// candy, sugar, sweet, wrapper - static const IconData solidCandy = IconDataSolid(0xe3e7); + static const IconData solidCandy = IconData(0xe3e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Candy icon /// /// https://fontawesome.com/icons/candy?style=regular /// candy, sugar, sweet, wrapper - static const IconData candy = IconDataRegular(0xe3e7); + static const IconData candy = IconData(0xe3e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Candy icon /// /// https://fontawesome.com/icons/candy?style=light /// candy, sugar, sweet, wrapper - static const IconData lightCandy = IconDataLight(0xe3e7); + static const IconData lightCandy = IconData(0xe3e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Candy icon /// /// https://fontawesome.com/icons/candy?style=thin /// candy, sugar, sweet, wrapper - static const IconData thinCandy = IconDataThin(0xe3e7); + static const IconData thinCandy = IconData(0xe3e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Candy Bar icon /// /// https://fontawesome.com/icons/candy-bar?style=solid /// candy, chocolate, hershey - static const IconData solidCandyBar = IconDataSolid(0xe3e8); + static const IconData solidCandyBar = IconData(0xe3e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chocolate-bar for icon [solidCandyBar] @Deprecated('Use "solidCandyBar" instead.') @@ -15377,7 +15377,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/candy-bar?style=regular /// candy, chocolate, hershey - static const IconData candyBar = IconDataRegular(0xe3e8); + static const IconData candyBar = IconData(0xe3e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chocolate-bar for icon [candyBar] @Deprecated('Use "candyBar" instead.') @@ -15387,7 +15387,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/candy-bar?style=light /// candy, chocolate, hershey - static const IconData lightCandyBar = IconDataLight(0xe3e8); + static const IconData lightCandyBar = IconData(0xe3e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chocolate-bar for icon [lightCandyBar] @Deprecated('Use "lightCandyBar" instead.') @@ -15397,7 +15397,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/candy-bar?style=thin /// candy, chocolate, hershey - static const IconData thinCandyBar = IconDataThin(0xe3e8); + static const IconData thinCandyBar = IconData(0xe3e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chocolate-bar for icon [thinCandyBar] @Deprecated('Use "thinCandyBar" instead.') @@ -15407,127 +15407,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/candy-cane?style=solid /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData solidCandyCane = IconDataSolid(0xf786); + static const IconData solidCandyCane = IconData(0xf786, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Candy Cane icon /// /// https://fontawesome.com/icons/candy-cane?style=regular /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData candyCane = IconDataRegular(0xf786); + static const IconData candyCane = IconData(0xf786, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Candy Cane icon /// /// https://fontawesome.com/icons/candy-cane?style=light /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData lightCandyCane = IconDataLight(0xf786); + static const IconData lightCandyCane = IconData(0xf786, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Candy Cane icon /// /// https://fontawesome.com/icons/candy-cane?style=thin /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData thinCandyCane = IconDataThin(0xf786); + static const IconData thinCandyCane = IconData(0xf786, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Candy Corn icon /// /// https://fontawesome.com/icons/candy-corn?style=solid /// halloween, holiday, sugar, triangles - static const IconData solidCandyCorn = IconDataSolid(0xf6bd); + static const IconData solidCandyCorn = IconData(0xf6bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Candy Corn icon /// /// https://fontawesome.com/icons/candy-corn?style=regular /// halloween, holiday, sugar, triangles - static const IconData candyCorn = IconDataRegular(0xf6bd); + static const IconData candyCorn = IconData(0xf6bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Candy Corn icon /// /// https://fontawesome.com/icons/candy-corn?style=light /// halloween, holiday, sugar, triangles - static const IconData lightCandyCorn = IconDataLight(0xf6bd); + static const IconData lightCandyCorn = IconData(0xf6bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Candy Corn icon /// /// https://fontawesome.com/icons/candy-corn?style=thin /// halloween, holiday, sugar, triangles - static const IconData thinCandyCorn = IconDataThin(0xf6bd); + static const IconData thinCandyCorn = IconData(0xf6bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cannabis icon /// /// https://fontawesome.com/icons/cannabis?style=solid /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconData solidCannabis = IconDataSolid(0xf55f); + static const IconData solidCannabis = IconData(0xf55f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cannabis icon /// /// https://fontawesome.com/icons/cannabis?style=regular /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconData cannabis = IconDataRegular(0xf55f); + static const IconData cannabis = IconData(0xf55f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cannabis icon /// /// https://fontawesome.com/icons/cannabis?style=light /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconData lightCannabis = IconDataLight(0xf55f); + static const IconData lightCannabis = IconData(0xf55f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cannabis icon /// /// https://fontawesome.com/icons/cannabis?style=thin /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconData thinCannabis = IconDataThin(0xf55f); + static const IconData thinCannabis = IconData(0xf55f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cannon icon /// /// https://fontawesome.com/icons/cannon?style=solid /// gun powder, projectile, artillery, cannonball, munition, ordnance, weapon - static const IconData solidCannon = IconDataSolid(0xe642); + static const IconData solidCannon = IconData(0xe642, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cannon icon /// /// https://fontawesome.com/icons/cannon?style=regular /// gun powder, projectile, artillery, cannonball, munition, ordnance, weapon - static const IconData cannon = IconDataRegular(0xe642); + static const IconData cannon = IconData(0xe642, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cannon icon /// /// https://fontawesome.com/icons/cannon?style=light /// gun powder, projectile, artillery, cannonball, munition, ordnance, weapon - static const IconData lightCannon = IconDataLight(0xe642); + static const IconData lightCannon = IconData(0xe642, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cannon icon /// /// https://fontawesome.com/icons/cannon?style=thin /// gun powder, projectile, artillery, cannonball, munition, ordnance, weapon - static const IconData thinCannon = IconDataThin(0xe642); + static const IconData thinCannon = IconData(0xe642, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Capsules icon /// /// https://fontawesome.com/icons/capsules?style=solid /// drugs, medicine, pills, prescription - static const IconData solidCapsules = IconDataSolid(0xf46b); + static const IconData solidCapsules = IconData(0xf46b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Capsules icon /// /// https://fontawesome.com/icons/capsules?style=regular /// drugs, medicine, pills, prescription - static const IconData capsules = IconDataRegular(0xf46b); + static const IconData capsules = IconData(0xf46b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Capsules icon /// /// https://fontawesome.com/icons/capsules?style=light /// drugs, medicine, pills, prescription - static const IconData lightCapsules = IconDataLight(0xf46b); + static const IconData lightCapsules = IconData(0xf46b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Capsules icon /// /// https://fontawesome.com/icons/capsules?style=thin /// drugs, medicine, pills, prescription - static const IconData thinCapsules = IconDataThin(0xf46b); + static const IconData thinCapsules = IconData(0xf46b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car icon /// /// https://fontawesome.com/icons/car?style=solid /// auto, automobile, car, oncoming, oncoming automobile, sedan, transportation, travel, vehicle - static const IconData solidCar = IconDataSolid(0xf1b9); + static const IconData solidCar = IconData(0xf1b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias automobile for icon [solidCar] @Deprecated('Use "solidCar" instead.') @@ -15537,7 +15537,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car?style=regular /// auto, automobile, car, oncoming, oncoming automobile, sedan, transportation, travel, vehicle - static const IconData car = IconDataRegular(0xf1b9); + static const IconData car = IconData(0xf1b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias automobile for icon [car] @Deprecated('Use "car" instead.') @@ -15547,7 +15547,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car?style=light /// auto, automobile, car, oncoming, oncoming automobile, sedan, transportation, travel, vehicle - static const IconData lightCar = IconDataLight(0xf1b9); + static const IconData lightCar = IconData(0xf1b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias automobile for icon [lightCar] @Deprecated('Use "lightCar" instead.') @@ -15557,7 +15557,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car?style=thin /// auto, automobile, car, oncoming, oncoming automobile, sedan, transportation, travel, vehicle - static const IconData thinCar = IconDataThin(0xf1b9); + static const IconData thinCar = IconData(0xf1b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias automobile for icon [thinCar] @Deprecated('Use "thinCar" instead.') @@ -15567,7 +15567,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-battery?style=solid /// auto, electric, mechanic, power - static const IconData solidCarBattery = IconDataSolid(0xf5df); + static const IconData solidCarBattery = IconData(0xf5df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias battery-car for icon [solidCarBattery] @Deprecated('Use "solidCarBattery" instead.') @@ -15577,7 +15577,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-battery?style=regular /// auto, electric, mechanic, power - static const IconData carBattery = IconDataRegular(0xf5df); + static const IconData carBattery = IconData(0xf5df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias battery-car for icon [carBattery] @Deprecated('Use "carBattery" instead.') @@ -15587,7 +15587,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-battery?style=light /// auto, electric, mechanic, power - static const IconData lightCarBattery = IconDataLight(0xf5df); + static const IconData lightCarBattery = IconData(0xf5df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias battery-car for icon [lightCarBattery] @Deprecated('Use "lightCarBattery" instead.') @@ -15597,7 +15597,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-battery?style=thin /// auto, electric, mechanic, power - static const IconData thinCarBattery = IconDataThin(0xf5df); + static const IconData thinCarBattery = IconData(0xf5df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias battery-car for icon [thinCarBattery] @Deprecated('Use "thinCarBattery" instead.') @@ -15607,79 +15607,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-bolt?style=solid /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData solidCarBolt = IconDataSolid(0xe341); + static const IconData solidCarBolt = IconData(0xe341, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Bolt icon /// /// https://fontawesome.com/icons/car-bolt?style=regular /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData carBolt = IconDataRegular(0xe341); + static const IconData carBolt = IconData(0xe341, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Bolt icon /// /// https://fontawesome.com/icons/car-bolt?style=light /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData lightCarBolt = IconDataLight(0xe341); + static const IconData lightCarBolt = IconData(0xe341, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Bolt icon /// /// https://fontawesome.com/icons/car-bolt?style=thin /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData thinCarBolt = IconDataThin(0xe341); + static const IconData thinCarBolt = IconData(0xe341, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Building icon /// /// https://fontawesome.com/icons/car-building?style=solid /// city, office, transportation, travel, urban, work - static const IconData solidCarBuilding = IconDataSolid(0xf859); + static const IconData solidCarBuilding = IconData(0xf859, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Building icon /// /// https://fontawesome.com/icons/car-building?style=regular /// city, office, transportation, travel, urban, work - static const IconData carBuilding = IconDataRegular(0xf859); + static const IconData carBuilding = IconData(0xf859, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Building icon /// /// https://fontawesome.com/icons/car-building?style=light /// city, office, transportation, travel, urban, work - static const IconData lightCarBuilding = IconDataLight(0xf859); + static const IconData lightCarBuilding = IconData(0xf859, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Building icon /// /// https://fontawesome.com/icons/car-building?style=thin /// city, office, transportation, travel, urban, work - static const IconData thinCarBuilding = IconDataThin(0xf859); + static const IconData thinCarBuilding = IconData(0xf859, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Bump icon /// /// https://fontawesome.com/icons/car-bump?style=solid /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData solidCarBump = IconDataSolid(0xf5e0); + static const IconData solidCarBump = IconData(0xf5e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Bump icon /// /// https://fontawesome.com/icons/car-bump?style=regular /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData carBump = IconDataRegular(0xf5e0); + static const IconData carBump = IconData(0xf5e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Bump icon /// /// https://fontawesome.com/icons/car-bump?style=light /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData lightCarBump = IconDataLight(0xf5e0); + static const IconData lightCarBump = IconData(0xf5e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Bump icon /// /// https://fontawesome.com/icons/car-bump?style=thin /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData thinCarBump = IconDataThin(0xf5e0); + static const IconData thinCarBump = IconData(0xf5e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Burst icon /// /// https://fontawesome.com/icons/car-burst?style=solid /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData solidCarBurst = IconDataSolid(0xf5e1); + static const IconData solidCarBurst = IconData(0xf5e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias car-crash for icon [solidCarBurst] @Deprecated('Use "solidCarBurst" instead.') @@ -15689,7 +15689,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-burst?style=regular /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData carBurst = IconDataRegular(0xf5e1); + static const IconData carBurst = IconData(0xf5e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias car-crash for icon [carBurst] @Deprecated('Use "carBurst" instead.') @@ -15699,7 +15699,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-burst?style=light /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData lightCarBurst = IconDataLight(0xf5e1); + static const IconData lightCarBurst = IconData(0xf5e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias car-crash for icon [lightCarBurst] @Deprecated('Use "lightCarBurst" instead.') @@ -15709,7 +15709,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-burst?style=thin /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData thinCarBurst = IconDataThin(0xf5e1); + static const IconData thinCarBurst = IconData(0xf5e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias car-crash for icon [thinCarBurst] @Deprecated('Use "thinCarBurst" instead.') @@ -15719,127 +15719,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-bus?style=solid /// directions, ground transportation, map, transportation, travel - static const IconData solidCarBus = IconDataSolid(0xf85a); + static const IconData solidCarBus = IconData(0xf85a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Bus icon /// /// https://fontawesome.com/icons/car-bus?style=regular /// directions, ground transportation, map, transportation, travel - static const IconData carBus = IconDataRegular(0xf85a); + static const IconData carBus = IconData(0xf85a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Bus icon /// /// https://fontawesome.com/icons/car-bus?style=light /// directions, ground transportation, map, transportation, travel - static const IconData lightCarBus = IconDataLight(0xf85a); + static const IconData lightCarBus = IconData(0xf85a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Bus icon /// /// https://fontawesome.com/icons/car-bus?style=thin /// directions, ground transportation, map, transportation, travel - static const IconData thinCarBus = IconDataThin(0xf85a); + static const IconData thinCarBus = IconData(0xf85a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Circle Bolt icon /// /// https://fontawesome.com/icons/car-circle-bolt?style=solid /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData solidCarCircleBolt = IconDataSolid(0xe342); + static const IconData solidCarCircleBolt = IconData(0xe342, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Circle Bolt icon /// /// https://fontawesome.com/icons/car-circle-bolt?style=regular /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData carCircleBolt = IconDataRegular(0xe342); + static const IconData carCircleBolt = IconData(0xe342, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Circle Bolt icon /// /// https://fontawesome.com/icons/car-circle-bolt?style=light /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData lightCarCircleBolt = IconDataLight(0xe342); + static const IconData lightCarCircleBolt = IconData(0xe342, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Circle Bolt icon /// /// https://fontawesome.com/icons/car-circle-bolt?style=thin /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData thinCarCircleBolt = IconDataThin(0xe342); + static const IconData thinCarCircleBolt = IconData(0xe342, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Garage icon /// /// https://fontawesome.com/icons/car-garage?style=solid /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData solidCarGarage = IconDataSolid(0xf5e2); + static const IconData solidCarGarage = IconData(0xf5e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Garage icon /// /// https://fontawesome.com/icons/car-garage?style=regular /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData carGarage = IconDataRegular(0xf5e2); + static const IconData carGarage = IconData(0xf5e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Garage icon /// /// https://fontawesome.com/icons/car-garage?style=light /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData lightCarGarage = IconDataLight(0xf5e2); + static const IconData lightCarGarage = IconData(0xf5e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Garage icon /// /// https://fontawesome.com/icons/car-garage?style=thin /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData thinCarGarage = IconDataThin(0xf5e2); + static const IconData thinCarGarage = IconData(0xf5e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Mirrors icon /// /// https://fontawesome.com/icons/car-mirrors?style=solid /// auto, automobile, sedan, side-view, transportation, travel, vehicle - static const IconData solidCarMirrors = IconDataSolid(0xe343); + static const IconData solidCarMirrors = IconData(0xe343, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Mirrors icon /// /// https://fontawesome.com/icons/car-mirrors?style=regular /// auto, automobile, sedan, side-view, transportation, travel, vehicle - static const IconData carMirrors = IconDataRegular(0xe343); + static const IconData carMirrors = IconData(0xe343, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Mirrors icon /// /// https://fontawesome.com/icons/car-mirrors?style=light /// auto, automobile, sedan, side-view, transportation, travel, vehicle - static const IconData lightCarMirrors = IconDataLight(0xe343); + static const IconData lightCarMirrors = IconData(0xe343, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Mirrors icon /// /// https://fontawesome.com/icons/car-mirrors?style=thin /// auto, automobile, sedan, side-view, transportation, travel, vehicle - static const IconData thinCarMirrors = IconDataThin(0xe343); + static const IconData thinCarMirrors = IconData(0xe343, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car On icon /// /// https://fontawesome.com/icons/car-on?style=solid /// alarm, car, carjack, warning - static const IconData solidCarOn = IconDataSolid(0xe4dd); + static const IconData solidCarOn = IconData(0xe4dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car On icon /// /// https://fontawesome.com/icons/car-on?style=regular /// alarm, car, carjack, warning - static const IconData carOn = IconDataRegular(0xe4dd); + static const IconData carOn = IconData(0xe4dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car On icon /// /// https://fontawesome.com/icons/car-on?style=light /// alarm, car, carjack, warning - static const IconData lightCarOn = IconDataLight(0xe4dd); + static const IconData lightCarOn = IconData(0xe4dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car On icon /// /// https://fontawesome.com/icons/car-on?style=thin /// alarm, car, carjack, warning - static const IconData thinCarOn = IconDataThin(0xe4dd); + static const IconData thinCarOn = IconData(0xe4dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Rear icon /// /// https://fontawesome.com/icons/car-rear?style=solid /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData solidCarRear = IconDataSolid(0xf5de); + static const IconData solidCarRear = IconData(0xf5de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias car-alt for icon [solidCarRear] @Deprecated('Use "solidCarRear" instead.') @@ -15849,7 +15849,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-rear?style=regular /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData carRear = IconDataRegular(0xf5de); + static const IconData carRear = IconData(0xf5de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias car-alt for icon [carRear] @Deprecated('Use "carRear" instead.') @@ -15859,7 +15859,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-rear?style=light /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData lightCarRear = IconDataLight(0xf5de); + static const IconData lightCarRear = IconData(0xf5de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias car-alt for icon [lightCarRear] @Deprecated('Use "lightCarRear" instead.') @@ -15869,7 +15869,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-rear?style=thin /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData thinCarRear = IconDataThin(0xf5de); + static const IconData thinCarRear = IconData(0xf5de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias car-alt for icon [thinCarRear] @Deprecated('Use "thinCarRear" instead.') @@ -15879,127 +15879,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-side?style=solid /// auto, automobile, car, sedan, transportation, travel, vehicle - static const IconData solidCarSide = IconDataSolid(0xf5e4); + static const IconData solidCarSide = IconData(0xf5e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Side icon /// /// https://fontawesome.com/icons/car-side?style=regular /// auto, automobile, car, sedan, transportation, travel, vehicle - static const IconData carSide = IconDataRegular(0xf5e4); + static const IconData carSide = IconData(0xf5e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Side icon /// /// https://fontawesome.com/icons/car-side?style=light /// auto, automobile, car, sedan, transportation, travel, vehicle - static const IconData lightCarSide = IconDataLight(0xf5e4); + static const IconData lightCarSide = IconData(0xf5e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Side icon /// /// https://fontawesome.com/icons/car-side?style=thin /// auto, automobile, car, sedan, transportation, travel, vehicle - static const IconData thinCarSide = IconDataThin(0xf5e4); + static const IconData thinCarSide = IconData(0xf5e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Side Bolt icon /// /// https://fontawesome.com/icons/car-side-bolt?style=solid /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData solidCarSideBolt = IconDataSolid(0xe344); + static const IconData solidCarSideBolt = IconData(0xe344, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Side Bolt icon /// /// https://fontawesome.com/icons/car-side-bolt?style=regular /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData carSideBolt = IconDataRegular(0xe344); + static const IconData carSideBolt = IconData(0xe344, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Side Bolt icon /// /// https://fontawesome.com/icons/car-side-bolt?style=light /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData lightCarSideBolt = IconDataLight(0xe344); + static const IconData lightCarSideBolt = IconData(0xe344, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Side Bolt icon /// /// https://fontawesome.com/icons/car-side-bolt?style=thin /// auto, automobile, electric, ev, sedan, tesla, transportation, travel, vehicle - static const IconData thinCarSideBolt = IconDataThin(0xe344); + static const IconData thinCarSideBolt = IconData(0xe344, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Tilt icon /// /// https://fontawesome.com/icons/car-tilt?style=solid /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData solidCarTilt = IconDataSolid(0xf5e5); + static const IconData solidCarTilt = IconData(0xf5e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Tilt icon /// /// https://fontawesome.com/icons/car-tilt?style=regular /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData carTilt = IconDataRegular(0xf5e5); + static const IconData carTilt = IconData(0xf5e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Tilt icon /// /// https://fontawesome.com/icons/car-tilt?style=light /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData lightCarTilt = IconDataLight(0xf5e5); + static const IconData lightCarTilt = IconData(0xf5e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Tilt icon /// /// https://fontawesome.com/icons/car-tilt?style=thin /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData thinCarTilt = IconDataThin(0xf5e5); + static const IconData thinCarTilt = IconData(0xf5e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Tunnel icon /// /// https://fontawesome.com/icons/car-tunnel?style=solid /// road, tunnel - static const IconData solidCarTunnel = IconDataSolid(0xe4de); + static const IconData solidCarTunnel = IconData(0xe4de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Tunnel icon /// /// https://fontawesome.com/icons/car-tunnel?style=regular /// road, tunnel - static const IconData carTunnel = IconDataRegular(0xe4de); + static const IconData carTunnel = IconData(0xe4de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Tunnel icon /// /// https://fontawesome.com/icons/car-tunnel?style=light /// road, tunnel - static const IconData lightCarTunnel = IconDataLight(0xe4de); + static const IconData lightCarTunnel = IconData(0xe4de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Tunnel icon /// /// https://fontawesome.com/icons/car-tunnel?style=thin /// road, tunnel - static const IconData thinCarTunnel = IconDataThin(0xe4de); + static const IconData thinCarTunnel = IconData(0xe4de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Wash icon /// /// https://fontawesome.com/icons/car-wash?style=solid /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData solidCarWash = IconDataSolid(0xf5e6); + static const IconData solidCarWash = IconData(0xf5e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Car Wash icon /// /// https://fontawesome.com/icons/car-wash?style=regular /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData carWash = IconDataRegular(0xf5e6); + static const IconData carWash = IconData(0xf5e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Car Wash icon /// /// https://fontawesome.com/icons/car-wash?style=light /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData lightCarWash = IconDataLight(0xf5e6); + static const IconData lightCarWash = IconData(0xf5e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Car Wash icon /// /// https://fontawesome.com/icons/car-wash?style=thin /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData thinCarWash = IconDataThin(0xf5e6); + static const IconData thinCarWash = IconData(0xf5e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Car Wrench icon /// /// https://fontawesome.com/icons/car-wrench?style=solid /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData solidCarWrench = IconDataSolid(0xf5e3); + static const IconData solidCarWrench = IconData(0xf5e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias car-mechanic for icon [solidCarWrench] @Deprecated('Use "solidCarWrench" instead.') @@ -16009,7 +16009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-wrench?style=regular /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData carWrench = IconDataRegular(0xf5e3); + static const IconData carWrench = IconData(0xf5e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias car-mechanic for icon [carWrench] @Deprecated('Use "carWrench" instead.') @@ -16019,7 +16019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-wrench?style=light /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData lightCarWrench = IconDataLight(0xf5e3); + static const IconData lightCarWrench = IconData(0xf5e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias car-mechanic for icon [lightCarWrench] @Deprecated('Use "lightCarWrench" instead.') @@ -16029,7 +16029,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/car-wrench?style=thin /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData thinCarWrench = IconDataThin(0xf5e3); + static const IconData thinCarWrench = IconData(0xf5e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias car-mechanic for icon [thinCarWrench] @Deprecated('Use "thinCarWrench" instead.') @@ -16039,31 +16039,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/caravan?style=solid /// camper, motor home, rv, trailer, travel - static const IconData solidCaravan = IconDataSolid(0xf8ff); + static const IconData solidCaravan = IconData(0xf8ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Caravan icon /// /// https://fontawesome.com/icons/caravan?style=regular /// camper, motor home, rv, trailer, travel - static const IconData caravan = IconDataRegular(0xf8ff); + static const IconData caravan = IconData(0xf8ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Caravan icon /// /// https://fontawesome.com/icons/caravan?style=light /// camper, motor home, rv, trailer, travel - static const IconData lightCaravan = IconDataLight(0xf8ff); + static const IconData lightCaravan = IconData(0xf8ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Caravan icon /// /// https://fontawesome.com/icons/caravan?style=thin /// camper, motor home, rv, trailer, travel - static const IconData thinCaravan = IconDataThin(0xf8ff); + static const IconData thinCaravan = IconData(0xf8ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Caravan Simple icon /// /// https://fontawesome.com/icons/caravan-simple?style=solid /// camper, motor home, rv, trailer, travel - static const IconData solidCaravanSimple = IconDataSolid(0xe000); + static const IconData solidCaravanSimple = IconData(0xe000, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caravan-alt for icon [solidCaravanSimple] @Deprecated('Use "solidCaravanSimple" instead.') @@ -16073,7 +16073,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/caravan-simple?style=regular /// camper, motor home, rv, trailer, travel - static const IconData caravanSimple = IconDataRegular(0xe000); + static const IconData caravanSimple = IconData(0xe000, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caravan-alt for icon [caravanSimple] @Deprecated('Use "caravanSimple" instead.') @@ -16083,7 +16083,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/caravan-simple?style=light /// camper, motor home, rv, trailer, travel - static const IconData lightCaravanSimple = IconDataLight(0xe000); + static const IconData lightCaravanSimple = IconData(0xe000, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caravan-alt for icon [lightCaravanSimple] @Deprecated('Use "lightCaravanSimple" instead.') @@ -16093,7 +16093,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/caravan-simple?style=thin /// camper, motor home, rv, trailer, travel - static const IconData thinCaravanSimple = IconDataThin(0xe000); + static const IconData thinCaravanSimple = IconData(0xe000, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caravan-alt for icon [thinCaravanSimple] @Deprecated('Use "thinCaravanSimple" instead.') @@ -16103,487 +16103,487 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/card-club?style=solid /// ace, card, gamble, playing card, poker, suit - static const IconData solidCardClub = IconDataSolid(0xe3e9); + static const IconData solidCardClub = IconData(0xe3e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Card Club icon /// /// https://fontawesome.com/icons/card-club?style=regular /// ace, card, gamble, playing card, poker, suit - static const IconData cardClub = IconDataRegular(0xe3e9); + static const IconData cardClub = IconData(0xe3e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Card Club icon /// /// https://fontawesome.com/icons/card-club?style=light /// ace, card, gamble, playing card, poker, suit - static const IconData lightCardClub = IconDataLight(0xe3e9); + static const IconData lightCardClub = IconData(0xe3e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Card Club icon /// /// https://fontawesome.com/icons/card-club?style=thin /// ace, card, gamble, playing card, poker, suit - static const IconData thinCardClub = IconDataThin(0xe3e9); + static const IconData thinCardClub = IconData(0xe3e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Card Diamond icon /// /// https://fontawesome.com/icons/card-diamond?style=solid /// ace, card, gamble, playing card, poker, suit - static const IconData solidCardDiamond = IconDataSolid(0xe3ea); + static const IconData solidCardDiamond = IconData(0xe3ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Card Diamond icon /// /// https://fontawesome.com/icons/card-diamond?style=regular /// ace, card, gamble, playing card, poker, suit - static const IconData cardDiamond = IconDataRegular(0xe3ea); + static const IconData cardDiamond = IconData(0xe3ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Card Diamond icon /// /// https://fontawesome.com/icons/card-diamond?style=light /// ace, card, gamble, playing card, poker, suit - static const IconData lightCardDiamond = IconDataLight(0xe3ea); + static const IconData lightCardDiamond = IconData(0xe3ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Card Diamond icon /// /// https://fontawesome.com/icons/card-diamond?style=thin /// ace, card, gamble, playing card, poker, suit - static const IconData thinCardDiamond = IconDataThin(0xe3ea); + static const IconData thinCardDiamond = IconData(0xe3ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Card Heart icon /// /// https://fontawesome.com/icons/card-heart?style=solid /// ace, card, gamble, playing card, poker, suit, wishlist - static const IconData solidCardHeart = IconDataSolid(0xe3eb); + static const IconData solidCardHeart = IconData(0xe3eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Card Heart icon /// /// https://fontawesome.com/icons/card-heart?style=regular /// ace, card, gamble, playing card, poker, suit, wishlist - static const IconData cardHeart = IconDataRegular(0xe3eb); + static const IconData cardHeart = IconData(0xe3eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Card Heart icon /// /// https://fontawesome.com/icons/card-heart?style=light /// ace, card, gamble, playing card, poker, suit, wishlist - static const IconData lightCardHeart = IconDataLight(0xe3eb); + static const IconData lightCardHeart = IconData(0xe3eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Card Heart icon /// /// https://fontawesome.com/icons/card-heart?style=thin /// ace, card, gamble, playing card, poker, suit, wishlist - static const IconData thinCardHeart = IconDataThin(0xe3eb); + static const IconData thinCardHeart = IconData(0xe3eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Card Spade icon /// /// https://fontawesome.com/icons/card-spade?style=solid /// ace, card, gamble, playing card, poker, suit - static const IconData solidCardSpade = IconDataSolid(0xe3ec); + static const IconData solidCardSpade = IconData(0xe3ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Card Spade icon /// /// https://fontawesome.com/icons/card-spade?style=regular /// ace, card, gamble, playing card, poker, suit - static const IconData cardSpade = IconDataRegular(0xe3ec); + static const IconData cardSpade = IconData(0xe3ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Card Spade icon /// /// https://fontawesome.com/icons/card-spade?style=light /// ace, card, gamble, playing card, poker, suit - static const IconData lightCardSpade = IconDataLight(0xe3ec); + static const IconData lightCardSpade = IconData(0xe3ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Card Spade icon /// /// https://fontawesome.com/icons/card-spade?style=thin /// ace, card, gamble, playing card, poker, suit - static const IconData thinCardSpade = IconDataThin(0xe3ec); + static const IconData thinCardSpade = IconData(0xe3ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cards icon /// /// https://fontawesome.com/icons/cards?style=solid /// ace, card, gamble, playing card, poker, suit - static const IconData solidCards = IconDataSolid(0xe3ed); + static const IconData solidCards = IconData(0xe3ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cards icon /// /// https://fontawesome.com/icons/cards?style=regular /// ace, card, gamble, playing card, poker, suit - static const IconData cards = IconDataRegular(0xe3ed); + static const IconData cards = IconData(0xe3ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cards icon /// /// https://fontawesome.com/icons/cards?style=light /// ace, card, gamble, playing card, poker, suit - static const IconData lightCards = IconDataLight(0xe3ed); + static const IconData lightCards = IconData(0xe3ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cards icon /// /// https://fontawesome.com/icons/cards?style=thin /// ace, card, gamble, playing card, poker, suit - static const IconData thinCards = IconDataThin(0xe3ed); + static const IconData thinCards = IconData(0xe3ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cards Blank icon /// /// https://fontawesome.com/icons/cards-blank?style=solid /// card, magic the gathering, mtg, playing card, pokemon - static const IconData solidCardsBlank = IconDataSolid(0xe4df); + static const IconData solidCardsBlank = IconData(0xe4df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cards Blank icon /// /// https://fontawesome.com/icons/cards-blank?style=regular /// card, magic the gathering, mtg, playing card, pokemon - static const IconData cardsBlank = IconDataRegular(0xe4df); + static const IconData cardsBlank = IconData(0xe4df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cards Blank icon /// /// https://fontawesome.com/icons/cards-blank?style=light /// card, magic the gathering, mtg, playing card, pokemon - static const IconData lightCardsBlank = IconDataLight(0xe4df); + static const IconData lightCardsBlank = IconData(0xe4df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cards Blank icon /// /// https://fontawesome.com/icons/cards-blank?style=thin /// card, magic the gathering, mtg, playing card, pokemon - static const IconData thinCardsBlank = IconDataThin(0xe4df); + static const IconData thinCardsBlank = IconData(0xe4df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Caret Down icon /// /// https://fontawesome.com/icons/caret-down?style=solid /// arrow, dropdown, expand, menu, more, triangle - static const IconData solidCaretDown = IconDataSolid(0xf0d7); + static const IconData solidCaretDown = IconData(0xf0d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Caret Down icon /// /// https://fontawesome.com/icons/caret-down?style=regular /// arrow, dropdown, expand, menu, more, triangle - static const IconData caretDown = IconDataRegular(0xf0d7); + static const IconData caretDown = IconData(0xf0d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Caret Down icon /// /// https://fontawesome.com/icons/caret-down?style=light /// arrow, dropdown, expand, menu, more, triangle - static const IconData lightCaretDown = IconDataLight(0xf0d7); + static const IconData lightCaretDown = IconData(0xf0d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Caret Down icon /// /// https://fontawesome.com/icons/caret-down?style=thin /// arrow, dropdown, expand, menu, more, triangle - static const IconData thinCaretDown = IconDataThin(0xf0d7); + static const IconData thinCaretDown = IconData(0xf0d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Caret Left icon /// /// https://fontawesome.com/icons/caret-left?style=solid /// arrow, back, previous, triangle - static const IconData solidCaretLeft = IconDataSolid(0xf0d9); + static const IconData solidCaretLeft = IconData(0xf0d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Caret Left icon /// /// https://fontawesome.com/icons/caret-left?style=regular /// arrow, back, previous, triangle - static const IconData caretLeft = IconDataRegular(0xf0d9); + static const IconData caretLeft = IconData(0xf0d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Caret Left icon /// /// https://fontawesome.com/icons/caret-left?style=light /// arrow, back, previous, triangle - static const IconData lightCaretLeft = IconDataLight(0xf0d9); + static const IconData lightCaretLeft = IconData(0xf0d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Caret Left icon /// /// https://fontawesome.com/icons/caret-left?style=thin /// arrow, back, previous, triangle - static const IconData thinCaretLeft = IconDataThin(0xf0d9); + static const IconData thinCaretLeft = IconData(0xf0d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Caret Right icon /// /// https://fontawesome.com/icons/caret-right?style=solid /// arrow, forward, next, triangle - static const IconData solidCaretRight = IconDataSolid(0xf0da); + static const IconData solidCaretRight = IconData(0xf0da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Caret Right icon /// /// https://fontawesome.com/icons/caret-right?style=regular /// arrow, forward, next, triangle - static const IconData caretRight = IconDataRegular(0xf0da); + static const IconData caretRight = IconData(0xf0da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Caret Right icon /// /// https://fontawesome.com/icons/caret-right?style=light /// arrow, forward, next, triangle - static const IconData lightCaretRight = IconDataLight(0xf0da); + static const IconData lightCaretRight = IconData(0xf0da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Caret Right icon /// /// https://fontawesome.com/icons/caret-right?style=thin /// arrow, forward, next, triangle - static const IconData thinCaretRight = IconDataThin(0xf0da); + static const IconData thinCaretRight = IconData(0xf0da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Caret Up icon /// /// https://fontawesome.com/icons/caret-up?style=solid /// arrow, collapse, triangle, upgrade - static const IconData solidCaretUp = IconDataSolid(0xf0d8); + static const IconData solidCaretUp = IconData(0xf0d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Caret Up icon /// /// https://fontawesome.com/icons/caret-up?style=regular /// arrow, collapse, triangle, upgrade - static const IconData caretUp = IconDataRegular(0xf0d8); + static const IconData caretUp = IconData(0xf0d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Caret Up icon /// /// https://fontawesome.com/icons/caret-up?style=light /// arrow, collapse, triangle, upgrade - static const IconData lightCaretUp = IconDataLight(0xf0d8); + static const IconData lightCaretUp = IconData(0xf0d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Caret Up icon /// /// https://fontawesome.com/icons/caret-up?style=thin /// arrow, collapse, triangle, upgrade - static const IconData thinCaretUp = IconDataThin(0xf0d8); + static const IconData thinCaretUp = IconData(0xf0d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Carrot icon /// /// https://fontawesome.com/icons/carrot?style=solid /// bugs bunny, carrot, food, orange, vegan, vegetable - static const IconData solidCarrot = IconDataSolid(0xf787); + static const IconData solidCarrot = IconData(0xf787, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Carrot icon /// /// https://fontawesome.com/icons/carrot?style=regular /// bugs bunny, carrot, food, orange, vegan, vegetable - static const IconData carrot = IconDataRegular(0xf787); + static const IconData carrot = IconData(0xf787, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Carrot icon /// /// https://fontawesome.com/icons/carrot?style=light /// bugs bunny, carrot, food, orange, vegan, vegetable - static const IconData lightCarrot = IconDataLight(0xf787); + static const IconData lightCarrot = IconData(0xf787, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Carrot icon /// /// https://fontawesome.com/icons/carrot?style=thin /// bugs bunny, carrot, food, orange, vegan, vegetable - static const IconData thinCarrot = IconDataThin(0xf787); + static const IconData thinCarrot = IconData(0xf787, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cars icon /// /// https://fontawesome.com/icons/cars?style=solid /// automobiles, autos, transportation, travel - static const IconData solidCars = IconDataSolid(0xf85b); + static const IconData solidCars = IconData(0xf85b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cars icon /// /// https://fontawesome.com/icons/cars?style=regular /// automobiles, autos, transportation, travel - static const IconData cars = IconDataRegular(0xf85b); + static const IconData cars = IconData(0xf85b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cars icon /// /// https://fontawesome.com/icons/cars?style=light /// automobiles, autos, transportation, travel - static const IconData lightCars = IconDataLight(0xf85b); + static const IconData lightCars = IconData(0xf85b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cars icon /// /// https://fontawesome.com/icons/cars?style=thin /// automobiles, autos, transportation, travel - static const IconData thinCars = IconDataThin(0xf85b); + static const IconData thinCars = IconData(0xf85b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Arrow Down icon /// /// https://fontawesome.com/icons/cart-arrow-down?style=solid /// download, insert, save, shopping - static const IconData solidCartArrowDown = IconDataSolid(0xf218); + static const IconData solidCartArrowDown = IconData(0xf218, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Arrow Down icon /// /// https://fontawesome.com/icons/cart-arrow-down?style=regular /// download, insert, save, shopping - static const IconData cartArrowDown = IconDataRegular(0xf218); + static const IconData cartArrowDown = IconData(0xf218, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Arrow Down icon /// /// https://fontawesome.com/icons/cart-arrow-down?style=light /// download, insert, save, shopping - static const IconData lightCartArrowDown = IconDataLight(0xf218); + static const IconData lightCartArrowDown = IconData(0xf218, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Arrow Down icon /// /// https://fontawesome.com/icons/cart-arrow-down?style=thin /// download, insert, save, shopping - static const IconData thinCartArrowDown = IconDataThin(0xf218); + static const IconData thinCartArrowDown = IconData(0xf218, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Arrow Up icon /// /// https://fontawesome.com/icons/cart-arrow-up?style=solid /// cart, grocery, market, shopping, upgrade - static const IconData solidCartArrowUp = IconDataSolid(0xe3ee); + static const IconData solidCartArrowUp = IconData(0xe3ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Arrow Up icon /// /// https://fontawesome.com/icons/cart-arrow-up?style=regular /// cart, grocery, market, shopping, upgrade - static const IconData cartArrowUp = IconDataRegular(0xe3ee); + static const IconData cartArrowUp = IconData(0xe3ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Arrow Up icon /// /// https://fontawesome.com/icons/cart-arrow-up?style=light /// cart, grocery, market, shopping, upgrade - static const IconData lightCartArrowUp = IconDataLight(0xe3ee); + static const IconData lightCartArrowUp = IconData(0xe3ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Arrow Up icon /// /// https://fontawesome.com/icons/cart-arrow-up?style=thin /// cart, grocery, market, shopping, upgrade - static const IconData thinCartArrowUp = IconDataThin(0xe3ee); + static const IconData thinCartArrowUp = IconData(0xe3ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Arrow Down icon /// /// https://fontawesome.com/icons/cart-circle-arrow-down?style=solid /// cart, grocery, market, shopping - static const IconData solidCartCircleArrowDown = IconDataSolid(0xe3ef); + static const IconData solidCartCircleArrowDown = IconData(0xe3ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Arrow Down icon /// /// https://fontawesome.com/icons/cart-circle-arrow-down?style=regular /// cart, grocery, market, shopping - static const IconData cartCircleArrowDown = IconDataRegular(0xe3ef); + static const IconData cartCircleArrowDown = IconData(0xe3ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Arrow Down icon /// /// https://fontawesome.com/icons/cart-circle-arrow-down?style=light /// cart, grocery, market, shopping - static const IconData lightCartCircleArrowDown = IconDataLight(0xe3ef); + static const IconData lightCartCircleArrowDown = IconData(0xe3ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Arrow Down icon /// /// https://fontawesome.com/icons/cart-circle-arrow-down?style=thin /// cart, grocery, market, shopping - static const IconData thinCartCircleArrowDown = IconDataThin(0xe3ef); + static const IconData thinCartCircleArrowDown = IconData(0xe3ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Arrow Up icon /// /// https://fontawesome.com/icons/cart-circle-arrow-up?style=solid /// cart, grocery, market, shopping, upgrade - static const IconData solidCartCircleArrowUp = IconDataSolid(0xe3f0); + static const IconData solidCartCircleArrowUp = IconData(0xe3f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Arrow Up icon /// /// https://fontawesome.com/icons/cart-circle-arrow-up?style=regular /// cart, grocery, market, shopping, upgrade - static const IconData cartCircleArrowUp = IconDataRegular(0xe3f0); + static const IconData cartCircleArrowUp = IconData(0xe3f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Arrow Up icon /// /// https://fontawesome.com/icons/cart-circle-arrow-up?style=light /// cart, grocery, market, shopping, upgrade - static const IconData lightCartCircleArrowUp = IconDataLight(0xe3f0); + static const IconData lightCartCircleArrowUp = IconData(0xe3f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Arrow Up icon /// /// https://fontawesome.com/icons/cart-circle-arrow-up?style=thin /// cart, grocery, market, shopping, upgrade - static const IconData thinCartCircleArrowUp = IconDataThin(0xe3f0); + static const IconData thinCartCircleArrowUp = IconData(0xe3f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Check icon /// /// https://fontawesome.com/icons/cart-circle-check?style=solid /// cart, enable, grocery, market, shopping, validate, working - static const IconData solidCartCircleCheck = IconDataSolid(0xe3f1); + static const IconData solidCartCircleCheck = IconData(0xe3f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Check icon /// /// https://fontawesome.com/icons/cart-circle-check?style=regular /// cart, enable, grocery, market, shopping, validate, working - static const IconData cartCircleCheck = IconDataRegular(0xe3f1); + static const IconData cartCircleCheck = IconData(0xe3f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Check icon /// /// https://fontawesome.com/icons/cart-circle-check?style=light /// cart, enable, grocery, market, shopping, validate, working - static const IconData lightCartCircleCheck = IconDataLight(0xe3f1); + static const IconData lightCartCircleCheck = IconData(0xe3f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Check icon /// /// https://fontawesome.com/icons/cart-circle-check?style=thin /// cart, enable, grocery, market, shopping, validate, working - static const IconData thinCartCircleCheck = IconDataThin(0xe3f1); + static const IconData thinCartCircleCheck = IconData(0xe3f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Exclamation icon /// /// https://fontawesome.com/icons/cart-circle-exclamation?style=solid /// cart, failed, grocery, market, shopping - static const IconData solidCartCircleExclamation = IconDataSolid(0xe3f2); + static const IconData solidCartCircleExclamation = IconData(0xe3f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Exclamation icon /// /// https://fontawesome.com/icons/cart-circle-exclamation?style=regular /// cart, failed, grocery, market, shopping - static const IconData cartCircleExclamation = IconDataRegular(0xe3f2); + static const IconData cartCircleExclamation = IconData(0xe3f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Exclamation icon /// /// https://fontawesome.com/icons/cart-circle-exclamation?style=light /// cart, failed, grocery, market, shopping - static const IconData lightCartCircleExclamation = IconDataLight(0xe3f2); + static const IconData lightCartCircleExclamation = IconData(0xe3f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Exclamation icon /// /// https://fontawesome.com/icons/cart-circle-exclamation?style=thin /// cart, failed, grocery, market, shopping - static const IconData thinCartCircleExclamation = IconDataThin(0xe3f2); + static const IconData thinCartCircleExclamation = IconData(0xe3f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Plus icon /// /// https://fontawesome.com/icons/cart-circle-plus?style=solid /// cart, grocery, market, shopping - static const IconData solidCartCirclePlus = IconDataSolid(0xe3f3); + static const IconData solidCartCirclePlus = IconData(0xe3f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Plus icon /// /// https://fontawesome.com/icons/cart-circle-plus?style=regular /// cart, grocery, market, shopping - static const IconData cartCirclePlus = IconDataRegular(0xe3f3); + static const IconData cartCirclePlus = IconData(0xe3f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Plus icon /// /// https://fontawesome.com/icons/cart-circle-plus?style=light /// cart, grocery, market, shopping - static const IconData lightCartCirclePlus = IconDataLight(0xe3f3); + static const IconData lightCartCirclePlus = IconData(0xe3f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Plus icon /// /// https://fontawesome.com/icons/cart-circle-plus?style=thin /// cart, grocery, market, shopping - static const IconData thinCartCirclePlus = IconDataThin(0xe3f3); + static const IconData thinCartCirclePlus = IconData(0xe3f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Circle Xmark icon /// /// https://fontawesome.com/icons/cart-circle-xmark?style=solid /// cart, grocery, market, shopping, uncheck - static const IconData solidCartCircleXmark = IconDataSolid(0xe3f4); + static const IconData solidCartCircleXmark = IconData(0xe3f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Circle Xmark icon /// /// https://fontawesome.com/icons/cart-circle-xmark?style=regular /// cart, grocery, market, shopping, uncheck - static const IconData cartCircleXmark = IconDataRegular(0xe3f4); + static const IconData cartCircleXmark = IconData(0xe3f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Circle Xmark icon /// /// https://fontawesome.com/icons/cart-circle-xmark?style=light /// cart, grocery, market, shopping, uncheck - static const IconData lightCartCircleXmark = IconDataLight(0xe3f4); + static const IconData lightCartCircleXmark = IconData(0xe3f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Circle Xmark icon /// /// https://fontawesome.com/icons/cart-circle-xmark?style=thin /// cart, grocery, market, shopping, uncheck - static const IconData thinCartCircleXmark = IconDataThin(0xe3f4); + static const IconData thinCartCircleXmark = IconData(0xe3f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Flatbed icon /// /// https://fontawesome.com/icons/cart-flatbed?style=solid /// carry, inventory, shipping, transport - static const IconData solidCartFlatbed = IconDataSolid(0xf474); + static const IconData solidCartFlatbed = IconData(0xf474, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed for icon [solidCartFlatbed] @Deprecated('Use "solidCartFlatbed" instead.') @@ -16593,7 +16593,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed?style=regular /// carry, inventory, shipping, transport - static const IconData cartFlatbed = IconDataRegular(0xf474); + static const IconData cartFlatbed = IconData(0xf474, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed for icon [cartFlatbed] @Deprecated('Use "cartFlatbed" instead.') @@ -16603,7 +16603,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed?style=light /// carry, inventory, shipping, transport - static const IconData lightCartFlatbed = IconDataLight(0xf474); + static const IconData lightCartFlatbed = IconData(0xf474, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed for icon [lightCartFlatbed] @Deprecated('Use "lightCartFlatbed" instead.') @@ -16613,7 +16613,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed?style=thin /// carry, inventory, shipping, transport - static const IconData thinCartFlatbed = IconDataThin(0xf474); + static const IconData thinCartFlatbed = IconData(0xf474, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed for icon [thinCartFlatbed] @Deprecated('Use "thinCartFlatbed" instead.') @@ -16623,7 +16623,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-boxes?style=solid /// carry, inventory, shipping, transport - static const IconData solidCartFlatbedBoxes = IconDataSolid(0xf475); + static const IconData solidCartFlatbedBoxes = IconData(0xf475, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-alt for icon [solidCartFlatbedBoxes] @Deprecated('Use "solidCartFlatbedBoxes" instead.') @@ -16633,7 +16633,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-boxes?style=regular /// carry, inventory, shipping, transport - static const IconData cartFlatbedBoxes = IconDataRegular(0xf475); + static const IconData cartFlatbedBoxes = IconData(0xf475, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-alt for icon [cartFlatbedBoxes] @Deprecated('Use "cartFlatbedBoxes" instead.') @@ -16643,7 +16643,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-boxes?style=light /// carry, inventory, shipping, transport - static const IconData lightCartFlatbedBoxes = IconDataLight(0xf475); + static const IconData lightCartFlatbedBoxes = IconData(0xf475, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-alt for icon [lightCartFlatbedBoxes] @Deprecated('Use "lightCartFlatbedBoxes" instead.') @@ -16653,7 +16653,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-boxes?style=thin /// carry, inventory, shipping, transport - static const IconData thinCartFlatbedBoxes = IconDataThin(0xf475); + static const IconData thinCartFlatbedBoxes = IconData(0xf475, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-alt for icon [thinCartFlatbedBoxes] @Deprecated('Use "thinCartFlatbedBoxes" instead.') @@ -16663,7 +16663,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-empty?style=solid /// carry, inventory, shipping, transport - static const IconData solidCartFlatbedEmpty = IconDataSolid(0xf476); + static const IconData solidCartFlatbedEmpty = IconData(0xf476, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-empty for icon [solidCartFlatbedEmpty] @Deprecated('Use "solidCartFlatbedEmpty" instead.') @@ -16673,7 +16673,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-empty?style=regular /// carry, inventory, shipping, transport - static const IconData cartFlatbedEmpty = IconDataRegular(0xf476); + static const IconData cartFlatbedEmpty = IconData(0xf476, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-empty for icon [cartFlatbedEmpty] @Deprecated('Use "cartFlatbedEmpty" instead.') @@ -16683,7 +16683,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-empty?style=light /// carry, inventory, shipping, transport - static const IconData lightCartFlatbedEmpty = IconDataLight(0xf476); + static const IconData lightCartFlatbedEmpty = IconData(0xf476, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-empty for icon [lightCartFlatbedEmpty] @Deprecated('Use "lightCartFlatbedEmpty" instead.') @@ -16693,7 +16693,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-empty?style=thin /// carry, inventory, shipping, transport - static const IconData thinCartFlatbedEmpty = IconDataThin(0xf476); + static const IconData thinCartFlatbedEmpty = IconData(0xf476, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dolly-flatbed-empty for icon [thinCartFlatbedEmpty] @Deprecated('Use "thinCartFlatbedEmpty" instead.') @@ -16703,7 +16703,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-suitcase?style=solid /// airport, bag, baggage, suitcase, travel - static const IconData solidCartFlatbedSuitcase = IconDataSolid(0xf59d); + static const IconData solidCartFlatbedSuitcase = IconData(0xf59d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias luggage-cart for icon [solidCartFlatbedSuitcase] @Deprecated('Use "solidCartFlatbedSuitcase" instead.') @@ -16713,7 +16713,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-suitcase?style=regular /// airport, bag, baggage, suitcase, travel - static const IconData cartFlatbedSuitcase = IconDataRegular(0xf59d); + static const IconData cartFlatbedSuitcase = IconData(0xf59d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias luggage-cart for icon [cartFlatbedSuitcase] @Deprecated('Use "cartFlatbedSuitcase" instead.') @@ -16723,7 +16723,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-suitcase?style=light /// airport, bag, baggage, suitcase, travel - static const IconData lightCartFlatbedSuitcase = IconDataLight(0xf59d); + static const IconData lightCartFlatbedSuitcase = IconData(0xf59d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias luggage-cart for icon [lightCartFlatbedSuitcase] @Deprecated('Use "lightCartFlatbedSuitcase" instead.') @@ -16733,7 +16733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-flatbed-suitcase?style=thin /// airport, bag, baggage, suitcase, travel - static const IconData thinCartFlatbedSuitcase = IconDataThin(0xf59d); + static const IconData thinCartFlatbedSuitcase = IconData(0xf59d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias luggage-cart for icon [thinCartFlatbedSuitcase] @Deprecated('Use "thinCartFlatbedSuitcase" instead.') @@ -16743,55 +16743,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-minus?style=solid /// checkout, food, grocery - static const IconData solidCartMinus = IconDataSolid(0xe0db); + static const IconData solidCartMinus = IconData(0xe0db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Minus icon /// /// https://fontawesome.com/icons/cart-minus?style=regular /// checkout, food, grocery - static const IconData cartMinus = IconDataRegular(0xe0db); + static const IconData cartMinus = IconData(0xe0db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Minus icon /// /// https://fontawesome.com/icons/cart-minus?style=light /// checkout, food, grocery - static const IconData lightCartMinus = IconDataLight(0xe0db); + static const IconData lightCartMinus = IconData(0xe0db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Minus icon /// /// https://fontawesome.com/icons/cart-minus?style=thin /// checkout, food, grocery - static const IconData thinCartMinus = IconDataThin(0xe0db); + static const IconData thinCartMinus = IconData(0xe0db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Plus icon /// /// https://fontawesome.com/icons/cart-plus?style=solid /// add, create, new, positive, shopping - static const IconData solidCartPlus = IconDataSolid(0xf217); + static const IconData solidCartPlus = IconData(0xf217, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Plus icon /// /// https://fontawesome.com/icons/cart-plus?style=regular /// add, create, new, positive, shopping - static const IconData cartPlus = IconDataRegular(0xf217); + static const IconData cartPlus = IconData(0xf217, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Plus icon /// /// https://fontawesome.com/icons/cart-plus?style=light /// add, create, new, positive, shopping - static const IconData lightCartPlus = IconDataLight(0xf217); + static const IconData lightCartPlus = IconData(0xf217, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Plus icon /// /// https://fontawesome.com/icons/cart-plus?style=thin /// add, create, new, positive, shopping - static const IconData thinCartPlus = IconDataThin(0xf217); + static const IconData thinCartPlus = IconData(0xf217, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Shopping icon /// /// https://fontawesome.com/icons/cart-shopping?style=solid /// buy, cart, checkout, grocery, payment, purchase, shopping, shopping cart, trolley - static const IconData solidCartShopping = IconDataSolid(0xf07a); + static const IconData solidCartShopping = IconData(0xf07a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shopping-cart for icon [solidCartShopping] @Deprecated('Use "solidCartShopping" instead.') @@ -16801,7 +16801,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-shopping?style=regular /// buy, cart, checkout, grocery, payment, purchase, shopping, shopping cart, trolley - static const IconData cartShopping = IconDataRegular(0xf07a); + static const IconData cartShopping = IconData(0xf07a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shopping-cart for icon [cartShopping] @Deprecated('Use "cartShopping" instead.') @@ -16811,7 +16811,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-shopping?style=light /// buy, cart, checkout, grocery, payment, purchase, shopping, shopping cart, trolley - static const IconData lightCartShopping = IconDataLight(0xf07a); + static const IconData lightCartShopping = IconData(0xf07a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shopping-cart for icon [lightCartShopping] @Deprecated('Use "lightCartShopping" instead.') @@ -16821,7 +16821,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-shopping?style=thin /// buy, cart, checkout, grocery, payment, purchase, shopping, shopping cart, trolley - static const IconData thinCartShopping = IconDataThin(0xf07a); + static const IconData thinCartShopping = IconData(0xf07a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shopping-cart for icon [thinCartShopping] @Deprecated('Use "thinCartShopping" instead.') @@ -16831,79 +16831,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cart-shopping-fast?style=solid /// fast, food, grocery, market, quick - static const IconData solidCartShoppingFast = IconDataSolid(0xe0dc); + static const IconData solidCartShoppingFast = IconData(0xe0dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Shopping Fast icon /// /// https://fontawesome.com/icons/cart-shopping-fast?style=regular /// fast, food, grocery, market, quick - static const IconData cartShoppingFast = IconDataRegular(0xe0dc); + static const IconData cartShoppingFast = IconData(0xe0dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Shopping Fast icon /// /// https://fontawesome.com/icons/cart-shopping-fast?style=light /// fast, food, grocery, market, quick - static const IconData lightCartShoppingFast = IconDataLight(0xe0dc); + static const IconData lightCartShoppingFast = IconData(0xe0dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Shopping Fast icon /// /// https://fontawesome.com/icons/cart-shopping-fast?style=thin /// fast, food, grocery, market, quick - static const IconData thinCartShoppingFast = IconDataThin(0xe0dc); + static const IconData thinCartShoppingFast = IconData(0xe0dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cart Xmark icon /// /// https://fontawesome.com/icons/cart-xmark?style=solid /// checkout, food, grocery, uncheck - static const IconData solidCartXmark = IconDataSolid(0xe0dd); + static const IconData solidCartXmark = IconData(0xe0dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cart Xmark icon /// /// https://fontawesome.com/icons/cart-xmark?style=regular /// checkout, food, grocery, uncheck - static const IconData cartXmark = IconDataRegular(0xe0dd); + static const IconData cartXmark = IconData(0xe0dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cart Xmark icon /// /// https://fontawesome.com/icons/cart-xmark?style=light /// checkout, food, grocery, uncheck - static const IconData lightCartXmark = IconDataLight(0xe0dd); + static const IconData lightCartXmark = IconData(0xe0dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cart Xmark icon /// /// https://fontawesome.com/icons/cart-xmark?style=thin /// checkout, food, grocery, uncheck - static const IconData thinCartXmark = IconDataThin(0xe0dd); + static const IconData thinCartXmark = IconData(0xe0dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cash Register icon /// /// https://fontawesome.com/icons/cash-register?style=solid /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconData solidCashRegister = IconDataSolid(0xf788); + static const IconData solidCashRegister = IconData(0xf788, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cash Register icon /// /// https://fontawesome.com/icons/cash-register?style=regular /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconData cashRegister = IconDataRegular(0xf788); + static const IconData cashRegister = IconData(0xf788, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cash Register icon /// /// https://fontawesome.com/icons/cash-register?style=light /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconData lightCashRegister = IconDataLight(0xf788); + static const IconData lightCashRegister = IconData(0xf788, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cash Register icon /// /// https://fontawesome.com/icons/cash-register?style=thin /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconData thinCashRegister = IconDataThin(0xf788); + static const IconData thinCashRegister = IconData(0xf788, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cassette Betamax icon /// /// https://fontawesome.com/icons/cassette-betamax?style=solid /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData solidCassetteBetamax = IconDataSolid(0xf8a4); + static const IconData solidCassetteBetamax = IconData(0xf8a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias betamax for icon [solidCassetteBetamax] @Deprecated('Use "solidCassetteBetamax" instead.') @@ -16913,7 +16913,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-betamax?style=regular /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData cassetteBetamax = IconDataRegular(0xf8a4); + static const IconData cassetteBetamax = IconData(0xf8a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias betamax for icon [cassetteBetamax] @Deprecated('Use "cassetteBetamax" instead.') @@ -16923,7 +16923,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-betamax?style=light /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData lightCassetteBetamax = IconDataLight(0xf8a4); + static const IconData lightCassetteBetamax = IconData(0xf8a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias betamax for icon [lightCassetteBetamax] @Deprecated('Use "lightCassetteBetamax" instead.') @@ -16933,7 +16933,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-betamax?style=thin /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData thinCassetteBetamax = IconDataThin(0xf8a4); + static const IconData thinCassetteBetamax = IconData(0xf8a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias betamax for icon [thinCassetteBetamax] @Deprecated('Use "thinCassetteBetamax" instead.') @@ -16943,31 +16943,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-tape?style=solid /// Tape Cartridge, mixtape, music, play, recording, walkman - static const IconData solidCassetteTape = IconDataSolid(0xf8ab); + static const IconData solidCassetteTape = IconData(0xf8ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cassette Tape icon /// /// https://fontawesome.com/icons/cassette-tape?style=regular /// Tape Cartridge, mixtape, music, play, recording, walkman - static const IconData cassetteTape = IconDataRegular(0xf8ab); + static const IconData cassetteTape = IconData(0xf8ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cassette Tape icon /// /// https://fontawesome.com/icons/cassette-tape?style=light /// Tape Cartridge, mixtape, music, play, recording, walkman - static const IconData lightCassetteTape = IconDataLight(0xf8ab); + static const IconData lightCassetteTape = IconData(0xf8ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cassette Tape icon /// /// https://fontawesome.com/icons/cassette-tape?style=thin /// Tape Cartridge, mixtape, music, play, recording, walkman - static const IconData thinCassetteTape = IconDataThin(0xf8ab); + static const IconData thinCassetteTape = IconData(0xf8ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cassette Vhs icon /// /// https://fontawesome.com/icons/cassette-vhs?style=solid /// betamax, cassette, rental, retro, tape, vhs, video, videocassette, vintage - static const IconData solidCassetteVhs = IconDataSolid(0xf8ec); + static const IconData solidCassetteVhs = IconData(0xf8ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias vhs for icon [solidCassetteVhs] @Deprecated('Use "solidCassetteVhs" instead.') @@ -16977,7 +16977,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-vhs?style=regular /// betamax, cassette, rental, retro, tape, vhs, video, videocassette, vintage - static const IconData cassetteVhs = IconDataRegular(0xf8ec); + static const IconData cassetteVhs = IconData(0xf8ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias vhs for icon [cassetteVhs] @Deprecated('Use "cassetteVhs" instead.') @@ -16987,7 +16987,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-vhs?style=light /// betamax, cassette, rental, retro, tape, vhs, video, videocassette, vintage - static const IconData lightCassetteVhs = IconDataLight(0xf8ec); + static const IconData lightCassetteVhs = IconData(0xf8ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias vhs for icon [lightCassetteVhs] @Deprecated('Use "lightCassetteVhs" instead.') @@ -16997,7 +16997,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cassette-vhs?style=thin /// betamax, cassette, rental, retro, tape, vhs, video, videocassette, vintage - static const IconData thinCassetteVhs = IconDataThin(0xf8ec); + static const IconData thinCassetteVhs = IconData(0xf8ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias vhs for icon [thinCassetteVhs] @Deprecated('Use "thinCassetteVhs" instead.') @@ -17007,285 +17007,285 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/castle?style=solid /// Castle, European, castle, dungeon, fortress, palace, turret - static const IconData solidCastle = IconDataSolid(0xe0de); + static const IconData solidCastle = IconData(0xe0de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Castle icon /// /// https://fontawesome.com/icons/castle?style=regular /// Castle, European, castle, dungeon, fortress, palace, turret - static const IconData castle = IconDataRegular(0xe0de); + static const IconData castle = IconData(0xe0de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Castle icon /// /// https://fontawesome.com/icons/castle?style=light /// Castle, European, castle, dungeon, fortress, palace, turret - static const IconData lightCastle = IconDataLight(0xe0de); + static const IconData lightCastle = IconData(0xe0de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Castle icon /// /// https://fontawesome.com/icons/castle?style=thin /// Castle, European, castle, dungeon, fortress, palace, turret - static const IconData thinCastle = IconDataThin(0xe0de); + static const IconData thinCastle = IconData(0xe0de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cat icon /// /// https://fontawesome.com/icons/cat?style=solid /// cat, feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData solidCat = IconDataSolid(0xf6be); + static const IconData solidCat = IconData(0xf6be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cat icon /// /// https://fontawesome.com/icons/cat?style=regular /// cat, feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData cat = IconDataRegular(0xf6be); + static const IconData cat = IconData(0xf6be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cat icon /// /// https://fontawesome.com/icons/cat?style=light /// cat, feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData lightCat = IconDataLight(0xf6be); + static const IconData lightCat = IconData(0xf6be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cat icon /// /// https://fontawesome.com/icons/cat?style=thin /// cat, feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData thinCat = IconDataThin(0xf6be); + static const IconData thinCat = IconData(0xf6be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cat Space icon /// /// https://fontawesome.com/icons/cat-space?style=solid /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData solidCatSpace = IconDataSolid(0xe001); + static const IconData solidCatSpace = IconData(0xe001, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cat Space icon /// /// https://fontawesome.com/icons/cat-space?style=regular /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData catSpace = IconDataRegular(0xe001); + static const IconData catSpace = IconData(0xe001, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cat Space icon /// /// https://fontawesome.com/icons/cat-space?style=light /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData lightCatSpace = IconDataLight(0xe001); + static const IconData lightCatSpace = IconData(0xe001, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cat Space icon /// /// https://fontawesome.com/icons/cat-space?style=thin /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData thinCatSpace = IconDataThin(0xe001); + static const IconData thinCatSpace = IconData(0xe001, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cauldron icon /// /// https://fontawesome.com/icons/cauldron?style=solid /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconData solidCauldron = IconDataSolid(0xf6bf); + static const IconData solidCauldron = IconData(0xf6bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cauldron icon /// /// https://fontawesome.com/icons/cauldron?style=regular /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconData cauldron = IconDataRegular(0xf6bf); + static const IconData cauldron = IconData(0xf6bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cauldron icon /// /// https://fontawesome.com/icons/cauldron?style=light /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconData lightCauldron = IconDataLight(0xf6bf); + static const IconData lightCauldron = IconData(0xf6bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cauldron icon /// /// https://fontawesome.com/icons/cauldron?style=thin /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconData thinCauldron = IconDataThin(0xf6bf); + static const IconData thinCauldron = IconData(0xf6bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Amazon Pay Credit Card icon /// /// https://fontawesome.com/icons/cc-amazon-pay?style=brands - static const IconData ccAmazonPay = IconDataBrands(0xf42d); + static const IconData ccAmazonPay = IconData(0xf42d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Cc Amex icon /// /// https://fontawesome.com/icons/cc-amex?style=brands /// amex - static const IconData ccAmex = IconDataBrands(0xf1f3); + static const IconData ccAmex = IconData(0xf1f3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Apple Pay Credit Card icon /// /// https://fontawesome.com/icons/cc-apple-pay?style=brands - static const IconData ccApplePay = IconDataBrands(0xf416); + static const IconData ccApplePay = IconData(0xf416, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Diner's Club Credit Card icon /// /// https://fontawesome.com/icons/cc-diners-club?style=brands - static const IconData ccDinersClub = IconDataBrands(0xf24c); + static const IconData ccDinersClub = IconData(0xf24c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Discover Credit Card icon /// /// https://fontawesome.com/icons/cc-discover?style=brands - static const IconData ccDiscover = IconDataBrands(0xf1f2); + static const IconData ccDiscover = IconData(0xf1f2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands JCB Credit Card icon /// /// https://fontawesome.com/icons/cc-jcb?style=brands - static const IconData ccJcb = IconDataBrands(0xf24b); + static const IconData ccJcb = IconData(0xf24b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands MasterCard Credit Card icon /// /// https://fontawesome.com/icons/cc-mastercard?style=brands - static const IconData ccMastercard = IconDataBrands(0xf1f1); + static const IconData ccMastercard = IconData(0xf1f1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Paypal Credit Card icon /// /// https://fontawesome.com/icons/cc-paypal?style=brands - static const IconData ccPaypal = IconDataBrands(0xf1f4); + static const IconData ccPaypal = IconData(0xf1f4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Stripe Credit Card icon /// /// https://fontawesome.com/icons/cc-stripe?style=brands - static const IconData ccStripe = IconDataBrands(0xf1f5); + static const IconData ccStripe = IconData(0xf1f5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Visa Credit Card icon /// /// https://fontawesome.com/icons/cc-visa?style=brands - static const IconData ccVisa = IconDataBrands(0xf1f0); + static const IconData ccVisa = IconData(0xf1f0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Cedi Sign icon /// /// https://fontawesome.com/icons/cedi-sign?style=solid /// Cedi Sign, currency - static const IconData solidCediSign = IconDataSolid(0xe0df); + static const IconData solidCediSign = IconData(0xe0df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cedi Sign icon /// /// https://fontawesome.com/icons/cedi-sign?style=regular /// Cedi Sign, currency - static const IconData cediSign = IconDataRegular(0xe0df); + static const IconData cediSign = IconData(0xe0df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cedi Sign icon /// /// https://fontawesome.com/icons/cedi-sign?style=light /// Cedi Sign, currency - static const IconData lightCediSign = IconDataLight(0xe0df); + static const IconData lightCediSign = IconData(0xe0df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cedi Sign icon /// /// https://fontawesome.com/icons/cedi-sign?style=thin /// Cedi Sign, currency - static const IconData thinCediSign = IconDataThin(0xe0df); + static const IconData thinCediSign = IconData(0xe0df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cent Sign icon /// /// https://fontawesome.com/icons/cent-sign?style=solid /// Cent Sign, currency - static const IconData solidCentSign = IconDataSolid(0xe3f5); + static const IconData solidCentSign = IconData(0xe3f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cent Sign icon /// /// https://fontawesome.com/icons/cent-sign?style=regular /// Cent Sign, currency - static const IconData centSign = IconDataRegular(0xe3f5); + static const IconData centSign = IconData(0xe3f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cent Sign icon /// /// https://fontawesome.com/icons/cent-sign?style=light /// Cent Sign, currency - static const IconData lightCentSign = IconDataLight(0xe3f5); + static const IconData lightCentSign = IconData(0xe3f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cent Sign icon /// /// https://fontawesome.com/icons/cent-sign?style=thin /// Cent Sign, currency - static const IconData thinCentSign = IconDataThin(0xe3f5); + static const IconData thinCentSign = IconData(0xe3f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Centercode icon /// /// https://fontawesome.com/icons/centercode?style=brands - static const IconData centercode = IconDataBrands(0xf380); + static const IconData centercode = IconData(0xf380, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Centos icon /// /// https://fontawesome.com/icons/centos?style=brands /// linux, operating system, os - static const IconData centos = IconDataBrands(0xf789); + static const IconData centos = IconData(0xf789, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Certificate icon /// /// https://fontawesome.com/icons/certificate?style=solid /// badge, guarantee, star, verified - static const IconData solidCertificate = IconDataSolid(0xf0a3); + static const IconData solidCertificate = IconData(0xf0a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Certificate icon /// /// https://fontawesome.com/icons/certificate?style=regular /// badge, guarantee, star, verified - static const IconData certificate = IconDataRegular(0xf0a3); + static const IconData certificate = IconData(0xf0a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Certificate icon /// /// https://fontawesome.com/icons/certificate?style=light /// badge, guarantee, star, verified - static const IconData lightCertificate = IconDataLight(0xf0a3); + static const IconData lightCertificate = IconData(0xf0a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Certificate icon /// /// https://fontawesome.com/icons/certificate?style=thin /// badge, guarantee, star, verified - static const IconData thinCertificate = IconDataThin(0xf0a3); + static const IconData thinCertificate = IconData(0xf0a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chair icon /// /// https://fontawesome.com/icons/chair?style=solid /// chair, furniture, seat, sit - static const IconData solidChair = IconDataSolid(0xf6c0); + static const IconData solidChair = IconData(0xf6c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chair icon /// /// https://fontawesome.com/icons/chair?style=regular /// chair, furniture, seat, sit - static const IconData chair = IconDataRegular(0xf6c0); + static const IconData chair = IconData(0xf6c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chair icon /// /// https://fontawesome.com/icons/chair?style=light /// chair, furniture, seat, sit - static const IconData lightChair = IconDataLight(0xf6c0); + static const IconData lightChair = IconData(0xf6c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chair icon /// /// https://fontawesome.com/icons/chair?style=thin /// chair, furniture, seat, sit - static const IconData thinChair = IconDataThin(0xf6c0); + static const IconData thinChair = IconData(0xf6c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chair Office icon /// /// https://fontawesome.com/icons/chair-office?style=solid /// ergonomic, furniture, seat - static const IconData solidChairOffice = IconDataSolid(0xf6c1); + static const IconData solidChairOffice = IconData(0xf6c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chair Office icon /// /// https://fontawesome.com/icons/chair-office?style=regular /// ergonomic, furniture, seat - static const IconData chairOffice = IconDataRegular(0xf6c1); + static const IconData chairOffice = IconData(0xf6c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chair Office icon /// /// https://fontawesome.com/icons/chair-office?style=light /// ergonomic, furniture, seat - static const IconData lightChairOffice = IconDataLight(0xf6c1); + static const IconData lightChairOffice = IconData(0xf6c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chair Office icon /// /// https://fontawesome.com/icons/chair-office?style=thin /// ergonomic, furniture, seat - static const IconData thinChairOffice = IconDataThin(0xf6c1); + static const IconData thinChairOffice = IconData(0xf6c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chalkboard icon /// /// https://fontawesome.com/icons/chalkboard?style=solid /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData solidChalkboard = IconDataSolid(0xf51b); + static const IconData solidChalkboard = IconData(0xf51b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias blackboard for icon [solidChalkboard] @Deprecated('Use "solidChalkboard" instead.') @@ -17295,7 +17295,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard?style=regular /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData chalkboard = IconDataRegular(0xf51b); + static const IconData chalkboard = IconData(0xf51b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias blackboard for icon [chalkboard] @Deprecated('Use "chalkboard" instead.') @@ -17305,7 +17305,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard?style=light /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData lightChalkboard = IconDataLight(0xf51b); + static const IconData lightChalkboard = IconData(0xf51b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias blackboard for icon [lightChalkboard] @Deprecated('Use "lightChalkboard" instead.') @@ -17315,7 +17315,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard?style=thin /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData thinChalkboard = IconDataThin(0xf51b); + static const IconData thinChalkboard = IconData(0xf51b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias blackboard for icon [thinChalkboard] @Deprecated('Use "thinChalkboard" instead.') @@ -17325,7 +17325,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard-user?style=solid /// blackboard, instructor, learning, professor, school, uer, whiteboard, writing - static const IconData solidChalkboardUser = IconDataSolid(0xf51c); + static const IconData solidChalkboardUser = IconData(0xf51c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chalkboard-teacher for icon [solidChalkboardUser] @Deprecated('Use "solidChalkboardUser" instead.') @@ -17335,7 +17335,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard-user?style=regular /// blackboard, instructor, learning, professor, school, uer, whiteboard, writing - static const IconData chalkboardUser = IconDataRegular(0xf51c); + static const IconData chalkboardUser = IconData(0xf51c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chalkboard-teacher for icon [chalkboardUser] @Deprecated('Use "chalkboardUser" instead.') @@ -17345,7 +17345,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard-user?style=light /// blackboard, instructor, learning, professor, school, uer, whiteboard, writing - static const IconData lightChalkboardUser = IconDataLight(0xf51c); + static const IconData lightChalkboardUser = IconData(0xf51c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chalkboard-teacher for icon [lightChalkboardUser] @Deprecated('Use "lightChalkboardUser" instead.') @@ -17355,7 +17355,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chalkboard-user?style=thin /// blackboard, instructor, learning, professor, school, uer, whiteboard, writing - static const IconData thinChalkboardUser = IconDataThin(0xf51c); + static const IconData thinChalkboardUser = IconData(0xf51c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chalkboard-teacher for icon [thinChalkboardUser] @Deprecated('Use "thinChalkboardUser" instead.') @@ -17365,7 +17365,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glass?style=solid /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData solidChampagneGlass = IconDataSolid(0xf79e); + static const IconData solidChampagneGlass = IconData(0xf79e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-champagne for icon [solidChampagneGlass] @Deprecated('Use "solidChampagneGlass" instead.') @@ -17375,7 +17375,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glass?style=regular /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData champagneGlass = IconDataRegular(0xf79e); + static const IconData champagneGlass = IconData(0xf79e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-champagne for icon [champagneGlass] @Deprecated('Use "champagneGlass" instead.') @@ -17385,7 +17385,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glass?style=light /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData lightChampagneGlass = IconDataLight(0xf79e); + static const IconData lightChampagneGlass = IconData(0xf79e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-champagne for icon [lightChampagneGlass] @Deprecated('Use "lightChampagneGlass" instead.') @@ -17395,7 +17395,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glass?style=thin /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData thinChampagneGlass = IconDataThin(0xf79e); + static const IconData thinChampagneGlass = IconData(0xf79e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-champagne for icon [thinChampagneGlass] @Deprecated('Use "thinChampagneGlass" instead.') @@ -17405,7 +17405,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glasses?style=solid /// alcohol, bar, beverage, celebrate, celebration, champagne, clink, clinking glasses, drink, glass, holiday, new year's eve, party, toast - static const IconData solidChampagneGlasses = IconDataSolid(0xf79f); + static const IconData solidChampagneGlasses = IconData(0xf79f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-cheers for icon [solidChampagneGlasses] @Deprecated('Use "solidChampagneGlasses" instead.') @@ -17415,7 +17415,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glasses?style=regular /// alcohol, bar, beverage, celebrate, celebration, champagne, clink, clinking glasses, drink, glass, holiday, new year's eve, party, toast - static const IconData champagneGlasses = IconDataRegular(0xf79f); + static const IconData champagneGlasses = IconData(0xf79f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-cheers for icon [champagneGlasses] @Deprecated('Use "champagneGlasses" instead.') @@ -17425,7 +17425,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glasses?style=light /// alcohol, bar, beverage, celebrate, celebration, champagne, clink, clinking glasses, drink, glass, holiday, new year's eve, party, toast - static const IconData lightChampagneGlasses = IconDataLight(0xf79f); + static const IconData lightChampagneGlasses = IconData(0xf79f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-cheers for icon [lightChampagneGlasses] @Deprecated('Use "lightChampagneGlasses" instead.') @@ -17435,7 +17435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/champagne-glasses?style=thin /// alcohol, bar, beverage, celebrate, celebration, champagne, clink, clinking glasses, drink, glass, holiday, new year's eve, party, toast - static const IconData thinChampagneGlasses = IconDataThin(0xf79f); + static const IconData thinChampagneGlasses = IconData(0xf79f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-cheers for icon [thinChampagneGlasses] @Deprecated('Use "thinChampagneGlasses" instead.') @@ -17445,31 +17445,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/charging-station?style=solid /// electric, ev, tesla, vehicle - static const IconData solidChargingStation = IconDataSolid(0xf5e7); + static const IconData solidChargingStation = IconData(0xf5e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Charging Station icon /// /// https://fontawesome.com/icons/charging-station?style=regular /// electric, ev, tesla, vehicle - static const IconData chargingStation = IconDataRegular(0xf5e7); + static const IconData chargingStation = IconData(0xf5e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Charging Station icon /// /// https://fontawesome.com/icons/charging-station?style=light /// electric, ev, tesla, vehicle - static const IconData lightChargingStation = IconDataLight(0xf5e7); + static const IconData lightChargingStation = IconData(0xf5e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Charging Station icon /// /// https://fontawesome.com/icons/charging-station?style=thin /// electric, ev, tesla, vehicle - static const IconData thinChargingStation = IconDataThin(0xf5e7); + static const IconData thinChargingStation = IconData(0xf5e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Area icon /// /// https://fontawesome.com/icons/chart-area?style=solid /// analytics, area, chart, graph, performance, revenue, statistics - static const IconData solidChartArea = IconDataSolid(0xf1fe); + static const IconData solidChartArea = IconData(0xf1fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias area-chart for icon [solidChartArea] @Deprecated('Use "solidChartArea" instead.') @@ -17479,7 +17479,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-area?style=regular /// analytics, area, chart, graph, performance, revenue, statistics - static const IconData chartArea = IconDataRegular(0xf1fe); + static const IconData chartArea = IconData(0xf1fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias area-chart for icon [chartArea] @Deprecated('Use "chartArea" instead.') @@ -17489,7 +17489,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-area?style=light /// analytics, area, chart, graph, performance, revenue, statistics - static const IconData lightChartArea = IconDataLight(0xf1fe); + static const IconData lightChartArea = IconData(0xf1fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias area-chart for icon [lightChartArea] @Deprecated('Use "lightChartArea" instead.') @@ -17499,7 +17499,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-area?style=thin /// analytics, area, chart, graph, performance, revenue, statistics - static const IconData thinChartArea = IconDataThin(0xf1fe); + static const IconData thinChartArea = IconData(0xf1fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias area-chart for icon [thinChartArea] @Deprecated('Use "thinChartArea" instead.') @@ -17509,7 +17509,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-bar?style=solid /// analytics, bar, chart, graph, performance, statistics - static const IconData solidChartBar = IconDataSolid(0xf080); + static const IconData solidChartBar = IconData(0xf080, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bar-chart for icon [solidChartBar] @Deprecated('Use "solidChartBar" instead.') @@ -17519,7 +17519,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-bar?style=regular /// analytics, bar, chart, graph, performance, statistics - static const IconData chartBar = IconDataRegular(0xf080); + static const IconData chartBar = IconData(0xf080, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bar-chart for icon [chartBar] @Deprecated('Use "chartBar" instead.') @@ -17529,7 +17529,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-bar?style=light /// analytics, bar, chart, graph, performance, statistics - static const IconData lightChartBar = IconDataLight(0xf080); + static const IconData lightChartBar = IconData(0xf080, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bar-chart for icon [lightChartBar] @Deprecated('Use "lightChartBar" instead.') @@ -17539,7 +17539,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-bar?style=thin /// analytics, bar, chart, graph, performance, statistics - static const IconData thinChartBar = IconDataThin(0xf080); + static const IconData thinChartBar = IconData(0xf080, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bar-chart for icon [thinChartBar] @Deprecated('Use "thinChartBar" instead.') @@ -17549,127 +17549,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-bullet?style=solid /// chart, graph, performance, statistics - static const IconData solidChartBullet = IconDataSolid(0xe0e1); + static const IconData solidChartBullet = IconData(0xe0e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Bullet icon /// /// https://fontawesome.com/icons/chart-bullet?style=regular /// chart, graph, performance, statistics - static const IconData chartBullet = IconDataRegular(0xe0e1); + static const IconData chartBullet = IconData(0xe0e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Bullet icon /// /// https://fontawesome.com/icons/chart-bullet?style=light /// chart, graph, performance, statistics - static const IconData lightChartBullet = IconDataLight(0xe0e1); + static const IconData lightChartBullet = IconData(0xe0e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Bullet icon /// /// https://fontawesome.com/icons/chart-bullet?style=thin /// chart, graph, performance, statistics - static const IconData thinChartBullet = IconDataThin(0xe0e1); + static const IconData thinChartBullet = IconData(0xe0e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Candlestick icon /// /// https://fontawesome.com/icons/chart-candlestick?style=solid /// chart, graph, performance, statistics, track, trend - static const IconData solidChartCandlestick = IconDataSolid(0xe0e2); + static const IconData solidChartCandlestick = IconData(0xe0e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Candlestick icon /// /// https://fontawesome.com/icons/chart-candlestick?style=regular /// chart, graph, performance, statistics, track, trend - static const IconData chartCandlestick = IconDataRegular(0xe0e2); + static const IconData chartCandlestick = IconData(0xe0e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Candlestick icon /// /// https://fontawesome.com/icons/chart-candlestick?style=light /// chart, graph, performance, statistics, track, trend - static const IconData lightChartCandlestick = IconDataLight(0xe0e2); + static const IconData lightChartCandlestick = IconData(0xe0e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Candlestick icon /// /// https://fontawesome.com/icons/chart-candlestick?style=thin /// chart, graph, performance, statistics, track, trend - static const IconData thinChartCandlestick = IconDataThin(0xe0e2); + static const IconData thinChartCandlestick = IconData(0xe0e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Column icon /// /// https://fontawesome.com/icons/chart-column?style=solid /// bar, bar chart, chart, graph, performance, revenue, statistics, track, trend - static const IconData solidChartColumn = IconDataSolid(0xe0e3); + static const IconData solidChartColumn = IconData(0xe0e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Column icon /// /// https://fontawesome.com/icons/chart-column?style=regular /// bar, bar chart, chart, graph, performance, revenue, statistics, track, trend - static const IconData chartColumn = IconDataRegular(0xe0e3); + static const IconData chartColumn = IconData(0xe0e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Column icon /// /// https://fontawesome.com/icons/chart-column?style=light /// bar, bar chart, chart, graph, performance, revenue, statistics, track, trend - static const IconData lightChartColumn = IconDataLight(0xe0e3); + static const IconData lightChartColumn = IconData(0xe0e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Column icon /// /// https://fontawesome.com/icons/chart-column?style=thin /// bar, bar chart, chart, graph, performance, revenue, statistics, track, trend - static const IconData thinChartColumn = IconDataThin(0xe0e3); + static const IconData thinChartColumn = IconData(0xe0e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Gantt icon /// /// https://fontawesome.com/icons/chart-gantt?style=solid /// chart, graph, performance, statistics, track, trend - static const IconData solidChartGantt = IconDataSolid(0xe0e4); + static const IconData solidChartGantt = IconData(0xe0e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Gantt icon /// /// https://fontawesome.com/icons/chart-gantt?style=regular /// chart, graph, performance, statistics, track, trend - static const IconData chartGantt = IconDataRegular(0xe0e4); + static const IconData chartGantt = IconData(0xe0e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Gantt icon /// /// https://fontawesome.com/icons/chart-gantt?style=light /// chart, graph, performance, statistics, track, trend - static const IconData lightChartGantt = IconDataLight(0xe0e4); + static const IconData lightChartGantt = IconData(0xe0e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Gantt icon /// /// https://fontawesome.com/icons/chart-gantt?style=thin /// chart, graph, performance, statistics, track, trend - static const IconData thinChartGantt = IconDataThin(0xe0e4); + static const IconData thinChartGantt = IconData(0xe0e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Kanban icon /// /// https://fontawesome.com/icons/chart-kanban?style=solid /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData solidChartKanban = IconDataSolid(0xe64f); + static const IconData solidChartKanban = IconData(0xe64f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Kanban icon /// /// https://fontawesome.com/icons/chart-kanban?style=regular /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData chartKanban = IconDataRegular(0xe64f); + static const IconData chartKanban = IconData(0xe64f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Kanban icon /// /// https://fontawesome.com/icons/chart-kanban?style=light /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData lightChartKanban = IconDataLight(0xe64f); + static const IconData lightChartKanban = IconData(0xe64f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Kanban icon /// /// https://fontawesome.com/icons/chart-kanban?style=thin /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData thinChartKanban = IconDataThin(0xe64f); + static const IconData thinChartKanban = IconData(0xe64f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Line icon /// /// https://fontawesome.com/icons/chart-line?style=solid /// activity, analytics, chart, dashboard, gain, graph, increase, line, performance, revenue, statistics - static const IconData solidChartLine = IconDataSolid(0xf201); + static const IconData solidChartLine = IconData(0xf201, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias line-chart for icon [solidChartLine] @Deprecated('Use "solidChartLine" instead.') @@ -17679,7 +17679,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-line?style=regular /// activity, analytics, chart, dashboard, gain, graph, increase, line, performance, revenue, statistics - static const IconData chartLine = IconDataRegular(0xf201); + static const IconData chartLine = IconData(0xf201, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias line-chart for icon [chartLine] @Deprecated('Use "chartLine" instead.') @@ -17689,7 +17689,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-line?style=light /// activity, analytics, chart, dashboard, gain, graph, increase, line, performance, revenue, statistics - static const IconData lightChartLine = IconDataLight(0xf201); + static const IconData lightChartLine = IconData(0xf201, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias line-chart for icon [lightChartLine] @Deprecated('Use "lightChartLine" instead.') @@ -17699,7 +17699,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-line?style=thin /// activity, analytics, chart, dashboard, gain, graph, increase, line, performance, revenue, statistics - static const IconData thinChartLine = IconDataThin(0xf201); + static const IconData thinChartLine = IconData(0xf201, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias line-chart for icon [thinChartLine] @Deprecated('Use "thinChartLine" instead.') @@ -17709,79 +17709,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-line-down?style=solid /// analytics, chart, chart decreasing, dashboard, decline, down, graph, line, loss, performance, revenue, statistics, trend - static const IconData solidChartLineDown = IconDataSolid(0xf64d); + static const IconData solidChartLineDown = IconData(0xf64d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Line Down icon /// /// https://fontawesome.com/icons/chart-line-down?style=regular /// analytics, chart, chart decreasing, dashboard, decline, down, graph, line, loss, performance, revenue, statistics, trend - static const IconData chartLineDown = IconDataRegular(0xf64d); + static const IconData chartLineDown = IconData(0xf64d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Line Down icon /// /// https://fontawesome.com/icons/chart-line-down?style=light /// analytics, chart, chart decreasing, dashboard, decline, down, graph, line, loss, performance, revenue, statistics, trend - static const IconData lightChartLineDown = IconDataLight(0xf64d); + static const IconData lightChartLineDown = IconData(0xf64d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Line Down icon /// /// https://fontawesome.com/icons/chart-line-down?style=thin /// analytics, chart, chart decreasing, dashboard, decline, down, graph, line, loss, performance, revenue, statistics, trend - static const IconData thinChartLineDown = IconDataThin(0xf64d); + static const IconData thinChartLineDown = IconData(0xf64d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Line Up icon /// /// https://fontawesome.com/icons/chart-line-up?style=solid /// chart, chart increasing, graph, growth, performance, revenue, statistics, track, trend, upward - static const IconData solidChartLineUp = IconDataSolid(0xe0e5); + static const IconData solidChartLineUp = IconData(0xe0e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Line Up icon /// /// https://fontawesome.com/icons/chart-line-up?style=regular /// chart, chart increasing, graph, growth, performance, revenue, statistics, track, trend, upward - static const IconData chartLineUp = IconDataRegular(0xe0e5); + static const IconData chartLineUp = IconData(0xe0e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Line Up icon /// /// https://fontawesome.com/icons/chart-line-up?style=light /// chart, chart increasing, graph, growth, performance, revenue, statistics, track, trend, upward - static const IconData lightChartLineUp = IconDataLight(0xe0e5); + static const IconData lightChartLineUp = IconData(0xe0e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Line Up icon /// /// https://fontawesome.com/icons/chart-line-up?style=thin /// chart, chart increasing, graph, growth, performance, revenue, statistics, track, trend, upward - static const IconData thinChartLineUp = IconDataThin(0xe0e5); + static const IconData thinChartLineUp = IconData(0xe0e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Line Up Down icon /// /// https://fontawesome.com/icons/chart-line-up-down?style=solid /// chart increasing, decreasing, down, graph, growth, track, trend, upward, volatility, chart - static const IconData solidChartLineUpDown = IconDataSolid(0xe5d7); + static const IconData solidChartLineUpDown = IconData(0xe5d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Line Up Down icon /// /// https://fontawesome.com/icons/chart-line-up-down?style=regular /// chart increasing, decreasing, down, graph, growth, track, trend, upward, volatility, chart - static const IconData chartLineUpDown = IconDataRegular(0xe5d7); + static const IconData chartLineUpDown = IconData(0xe5d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Line Up Down icon /// /// https://fontawesome.com/icons/chart-line-up-down?style=light /// chart increasing, decreasing, down, graph, growth, track, trend, upward, volatility, chart - static const IconData lightChartLineUpDown = IconDataLight(0xe5d7); + static const IconData lightChartLineUpDown = IconData(0xe5d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Line Up Down icon /// /// https://fontawesome.com/icons/chart-line-up-down?style=thin /// chart increasing, decreasing, down, graph, growth, track, trend, upward, volatility, chart - static const IconData thinChartLineUpDown = IconDataThin(0xe5d7); + static const IconData thinChartLineUpDown = IconData(0xe5d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Mixed icon /// /// https://fontawesome.com/icons/chart-mixed?style=solid /// analytics, chart, data, forecast, graph, measure, performance, revenue, roi, tracking, trend - static const IconData solidChartMixed = IconDataSolid(0xf643); + static const IconData solidChartMixed = IconData(0xf643, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias analytics for icon [solidChartMixed] @Deprecated('Use "solidChartMixed" instead.') @@ -17791,7 +17791,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-mixed?style=regular /// analytics, chart, data, forecast, graph, measure, performance, revenue, roi, tracking, trend - static const IconData chartMixed = IconDataRegular(0xf643); + static const IconData chartMixed = IconData(0xf643, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias analytics for icon [chartMixed] @Deprecated('Use "chartMixed" instead.') @@ -17801,7 +17801,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-mixed?style=light /// analytics, chart, data, forecast, graph, measure, performance, revenue, roi, tracking, trend - static const IconData lightChartMixed = IconDataLight(0xf643); + static const IconData lightChartMixed = IconData(0xf643, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias analytics for icon [lightChartMixed] @Deprecated('Use "lightChartMixed" instead.') @@ -17811,7 +17811,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-mixed?style=thin /// analytics, chart, data, forecast, graph, measure, performance, revenue, roi, tracking, trend - static const IconData thinChartMixed = IconDataThin(0xf643); + static const IconData thinChartMixed = IconData(0xf643, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias analytics for icon [thinChartMixed] @Deprecated('Use "thinChartMixed" instead.') @@ -17821,79 +17821,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-mixed-up-circle-currency?style=solid /// analytics, chart, currency, investment, measure, money, roi, tracking, trend, data, forecast, graph - static const IconData solidChartMixedUpCircleCurrency = IconDataSolid(0xe5d8); + static const IconData solidChartMixedUpCircleCurrency = IconData(0xe5d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Mixed Up Circle Currency icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-currency?style=regular /// analytics, chart, currency, investment, measure, money, roi, tracking, trend, data, forecast, graph - static const IconData chartMixedUpCircleCurrency = IconDataRegular(0xe5d8); + static const IconData chartMixedUpCircleCurrency = IconData(0xe5d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Mixed Up Circle Currency icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-currency?style=light /// analytics, chart, currency, investment, measure, money, roi, tracking, trend, data, forecast, graph - static const IconData lightChartMixedUpCircleCurrency = IconDataLight(0xe5d8); + static const IconData lightChartMixedUpCircleCurrency = IconData(0xe5d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Mixed Up Circle Currency icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-currency?style=thin /// analytics, chart, currency, investment, measure, money, roi, tracking, trend, data, forecast, graph - static const IconData thinChartMixedUpCircleCurrency = IconDataThin(0xe5d8); + static const IconData thinChartMixedUpCircleCurrency = IconData(0xe5d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Mixed Up Circle Dollar icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-dollar?style=solid /// analytics, chart, currency, measure, money, roi, tracking, trend, graph, investment, data, forecast - static const IconData solidChartMixedUpCircleDollar = IconDataSolid(0xe5d9); + static const IconData solidChartMixedUpCircleDollar = IconData(0xe5d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Mixed Up Circle Dollar icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-dollar?style=regular /// analytics, chart, currency, measure, money, roi, tracking, trend, graph, investment, data, forecast - static const IconData chartMixedUpCircleDollar = IconDataRegular(0xe5d9); + static const IconData chartMixedUpCircleDollar = IconData(0xe5d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Mixed Up Circle Dollar icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-dollar?style=light /// analytics, chart, currency, measure, money, roi, tracking, trend, graph, investment, data, forecast - static const IconData lightChartMixedUpCircleDollar = IconDataLight(0xe5d9); + static const IconData lightChartMixedUpCircleDollar = IconData(0xe5d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Mixed Up Circle Dollar icon /// /// https://fontawesome.com/icons/chart-mixed-up-circle-dollar?style=thin /// analytics, chart, currency, measure, money, roi, tracking, trend, graph, investment, data, forecast - static const IconData thinChartMixedUpCircleDollar = IconDataThin(0xe5d9); + static const IconData thinChartMixedUpCircleDollar = IconData(0xe5d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Network icon /// /// https://fontawesome.com/icons/chart-network?style=solid /// activity, analytics, association, dashboard, diagram, distribution, map, network, performance - static const IconData solidChartNetwork = IconDataSolid(0xf78a); + static const IconData solidChartNetwork = IconData(0xf78a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Network icon /// /// https://fontawesome.com/icons/chart-network?style=regular /// activity, analytics, association, dashboard, diagram, distribution, map, network, performance - static const IconData chartNetwork = IconDataRegular(0xf78a); + static const IconData chartNetwork = IconData(0xf78a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Network icon /// /// https://fontawesome.com/icons/chart-network?style=light /// activity, analytics, association, dashboard, diagram, distribution, map, network, performance - static const IconData lightChartNetwork = IconDataLight(0xf78a); + static const IconData lightChartNetwork = IconData(0xf78a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Network icon /// /// https://fontawesome.com/icons/chart-network?style=thin /// activity, analytics, association, dashboard, diagram, distribution, map, network, performance - static const IconData thinChartNetwork = IconDataThin(0xf78a); + static const IconData thinChartNetwork = IconData(0xf78a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Pie icon /// /// https://fontawesome.com/icons/chart-pie?style=solid /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData solidChartPie = IconDataSolid(0xf200); + static const IconData solidChartPie = IconData(0xf200, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pie-chart for icon [solidChartPie] @Deprecated('Use "solidChartPie" instead.') @@ -17903,7 +17903,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie?style=regular /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData chartPie = IconDataRegular(0xf200); + static const IconData chartPie = IconData(0xf200, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pie-chart for icon [chartPie] @Deprecated('Use "chartPie" instead.') @@ -17913,7 +17913,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie?style=light /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData lightChartPie = IconDataLight(0xf200); + static const IconData lightChartPie = IconData(0xf200, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pie-chart for icon [lightChartPie] @Deprecated('Use "lightChartPie" instead.') @@ -17923,7 +17923,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie?style=thin /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData thinChartPie = IconDataThin(0xf200); + static const IconData thinChartPie = IconData(0xf200, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pie-chart for icon [thinChartPie] @Deprecated('Use "thinChartPie" instead.') @@ -17933,7 +17933,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie-simple?style=solid /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData solidChartPieSimple = IconDataSolid(0xf64e); + static const IconData solidChartPieSimple = IconData(0xf64e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chart-pie-alt for icon [solidChartPieSimple] @Deprecated('Use "solidChartPieSimple" instead.') @@ -17943,7 +17943,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie-simple?style=regular /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData chartPieSimple = IconDataRegular(0xf64e); + static const IconData chartPieSimple = IconData(0xf64e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chart-pie-alt for icon [chartPieSimple] @Deprecated('Use "chartPieSimple" instead.') @@ -17953,7 +17953,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie-simple?style=light /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData lightChartPieSimple = IconDataLight(0xf64e); + static const IconData lightChartPieSimple = IconData(0xf64e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chart-pie-alt for icon [lightChartPieSimple] @Deprecated('Use "lightChartPieSimple" instead.') @@ -17963,7 +17963,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-pie-simple?style=thin /// analytics, chart, diagram, graph, performance, pie, revenue, statistics - static const IconData thinChartPieSimple = IconDataThin(0xf64e); + static const IconData thinChartPieSimple = IconData(0xf64e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chart-pie-alt for icon [thinChartPieSimple] @Deprecated('Use "thinChartPieSimple" instead.') @@ -17974,248 +17974,248 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/chart-pie-simple-circle-currency?style=solid /// chart, currency, diagram, graph, margin, money, pie, analytics static const IconData solidChartPieSimpleCircleCurrency = - IconDataSolid(0xe604); + IconData(0xe604, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Pie Simple Circle Currency icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-currency?style=regular /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData chartPieSimpleCircleCurrency = IconDataRegular(0xe604); + static const IconData chartPieSimpleCircleCurrency = IconData(0xe604, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Pie Simple Circle Currency icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-currency?style=light /// chart, currency, diagram, graph, margin, money, pie, analytics static const IconData lightChartPieSimpleCircleCurrency = - IconDataLight(0xe604); + IconData(0xe604, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Pie Simple Circle Currency icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-currency?style=thin /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData thinChartPieSimpleCircleCurrency = IconDataThin(0xe604); + static const IconData thinChartPieSimpleCircleCurrency = IconData(0xe604, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Pie Simple Circle Dollar icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-dollar?style=solid /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData solidChartPieSimpleCircleDollar = IconDataSolid(0xe605); + static const IconData solidChartPieSimpleCircleDollar = IconData(0xe605, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Pie Simple Circle Dollar icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-dollar?style=regular /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData chartPieSimpleCircleDollar = IconDataRegular(0xe605); + static const IconData chartPieSimpleCircleDollar = IconData(0xe605, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Pie Simple Circle Dollar icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-dollar?style=light /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData lightChartPieSimpleCircleDollar = IconDataLight(0xe605); + static const IconData lightChartPieSimpleCircleDollar = IconData(0xe605, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Pie Simple Circle Dollar icon /// /// https://fontawesome.com/icons/chart-pie-simple-circle-dollar?style=thin /// chart, currency, diagram, graph, margin, money, pie, analytics - static const IconData thinChartPieSimpleCircleDollar = IconDataThin(0xe605); + static const IconData thinChartPieSimpleCircleDollar = IconData(0xe605, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Pyramid icon /// /// https://fontawesome.com/icons/chart-pyramid?style=solid /// chart, food, graph, performance, statistics - static const IconData solidChartPyramid = IconDataSolid(0xe0e6); + static const IconData solidChartPyramid = IconData(0xe0e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Pyramid icon /// /// https://fontawesome.com/icons/chart-pyramid?style=regular /// chart, food, graph, performance, statistics - static const IconData chartPyramid = IconDataRegular(0xe0e6); + static const IconData chartPyramid = IconData(0xe0e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Pyramid icon /// /// https://fontawesome.com/icons/chart-pyramid?style=light /// chart, food, graph, performance, statistics - static const IconData lightChartPyramid = IconDataLight(0xe0e6); + static const IconData lightChartPyramid = IconData(0xe0e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Pyramid icon /// /// https://fontawesome.com/icons/chart-pyramid?style=thin /// chart, food, graph, performance, statistics - static const IconData thinChartPyramid = IconDataThin(0xe0e6); + static const IconData thinChartPyramid = IconData(0xe0e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Radar icon /// /// https://fontawesome.com/icons/chart-radar?style=solid /// chart, graph, performance, statistics, track, trend - static const IconData solidChartRadar = IconDataSolid(0xe0e7); + static const IconData solidChartRadar = IconData(0xe0e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Radar icon /// /// https://fontawesome.com/icons/chart-radar?style=regular /// chart, graph, performance, statistics, track, trend - static const IconData chartRadar = IconDataRegular(0xe0e7); + static const IconData chartRadar = IconData(0xe0e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Radar icon /// /// https://fontawesome.com/icons/chart-radar?style=light /// chart, graph, performance, statistics, track, trend - static const IconData lightChartRadar = IconDataLight(0xe0e7); + static const IconData lightChartRadar = IconData(0xe0e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Radar icon /// /// https://fontawesome.com/icons/chart-radar?style=thin /// chart, graph, performance, statistics, track, trend - static const IconData thinChartRadar = IconDataThin(0xe0e7); + static const IconData thinChartRadar = IconData(0xe0e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Scatter icon /// /// https://fontawesome.com/icons/chart-scatter?style=solid /// analytics, chart, diagram, graph, performance, plot, statistics - static const IconData solidChartScatter = IconDataSolid(0xf7ee); + static const IconData solidChartScatter = IconData(0xf7ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Scatter icon /// /// https://fontawesome.com/icons/chart-scatter?style=regular /// analytics, chart, diagram, graph, performance, plot, statistics - static const IconData chartScatter = IconDataRegular(0xf7ee); + static const IconData chartScatter = IconData(0xf7ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Scatter icon /// /// https://fontawesome.com/icons/chart-scatter?style=light /// analytics, chart, diagram, graph, performance, plot, statistics - static const IconData lightChartScatter = IconDataLight(0xf7ee); + static const IconData lightChartScatter = IconData(0xf7ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Scatter icon /// /// https://fontawesome.com/icons/chart-scatter?style=thin /// analytics, chart, diagram, graph, performance, plot, statistics - static const IconData thinChartScatter = IconDataThin(0xf7ee); + static const IconData thinChartScatter = IconData(0xf7ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Scatter 3d icon /// /// https://fontawesome.com/icons/chart-scatter-3d?style=solid /// chart, graph, performance, statistics, track, trend - static const IconData solidChartScatter3d = IconDataSolid(0xe0e8); + static const IconData solidChartScatter3d = IconData(0xe0e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Scatter 3d icon /// /// https://fontawesome.com/icons/chart-scatter-3d?style=regular /// chart, graph, performance, statistics, track, trend - static const IconData chartScatter3d = IconDataRegular(0xe0e8); + static const IconData chartScatter3d = IconData(0xe0e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Scatter 3d icon /// /// https://fontawesome.com/icons/chart-scatter-3d?style=light /// chart, graph, performance, statistics, track, trend - static const IconData lightChartScatter3d = IconDataLight(0xe0e8); + static const IconData lightChartScatter3d = IconData(0xe0e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Scatter 3d icon /// /// https://fontawesome.com/icons/chart-scatter-3d?style=thin /// chart, graph, performance, statistics, track, trend - static const IconData thinChartScatter3d = IconDataThin(0xe0e8); + static const IconData thinChartScatter3d = IconData(0xe0e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Scatter Bubble icon /// /// https://fontawesome.com/icons/chart-scatter-bubble?style=solid /// chart, graph, performance, statistics, track, trend - static const IconData solidChartScatterBubble = IconDataSolid(0xe0e9); + static const IconData solidChartScatterBubble = IconData(0xe0e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Scatter Bubble icon /// /// https://fontawesome.com/icons/chart-scatter-bubble?style=regular /// chart, graph, performance, statistics, track, trend - static const IconData chartScatterBubble = IconDataRegular(0xe0e9); + static const IconData chartScatterBubble = IconData(0xe0e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Scatter Bubble icon /// /// https://fontawesome.com/icons/chart-scatter-bubble?style=light /// chart, graph, performance, statistics, track, trend - static const IconData lightChartScatterBubble = IconDataLight(0xe0e9); + static const IconData lightChartScatterBubble = IconData(0xe0e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Scatter Bubble icon /// /// https://fontawesome.com/icons/chart-scatter-bubble?style=thin /// chart, graph, performance, statistics, track, trend - static const IconData thinChartScatterBubble = IconDataThin(0xe0e9); + static const IconData thinChartScatterBubble = IconData(0xe0e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Simple icon /// /// https://fontawesome.com/icons/chart-simple?style=solid /// analytics, bar, chart, column, graph, performance, revenue, row, statistics, trend - static const IconData solidChartSimple = IconDataSolid(0xe473); + static const IconData solidChartSimple = IconData(0xe473, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Simple icon /// /// https://fontawesome.com/icons/chart-simple?style=regular /// analytics, bar, chart, column, graph, performance, revenue, row, statistics, trend - static const IconData chartSimple = IconDataRegular(0xe473); + static const IconData chartSimple = IconData(0xe473, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Simple icon /// /// https://fontawesome.com/icons/chart-simple?style=light /// analytics, bar, chart, column, graph, performance, revenue, row, statistics, trend - static const IconData lightChartSimple = IconDataLight(0xe473); + static const IconData lightChartSimple = IconData(0xe473, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Simple icon /// /// https://fontawesome.com/icons/chart-simple?style=thin /// analytics, bar, chart, column, graph, performance, revenue, row, statistics, trend - static const IconData thinChartSimple = IconDataThin(0xe473); + static const IconData thinChartSimple = IconData(0xe473, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Simple Horizontal icon /// /// https://fontawesome.com/icons/chart-simple-horizontal?style=solid /// analytics, bar, chart, column, graph, performance, row, statistics, trend - static const IconData solidChartSimpleHorizontal = IconDataSolid(0xe474); + static const IconData solidChartSimpleHorizontal = IconData(0xe474, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Simple Horizontal icon /// /// https://fontawesome.com/icons/chart-simple-horizontal?style=regular /// analytics, bar, chart, column, graph, performance, row, statistics, trend - static const IconData chartSimpleHorizontal = IconDataRegular(0xe474); + static const IconData chartSimpleHorizontal = IconData(0xe474, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Simple Horizontal icon /// /// https://fontawesome.com/icons/chart-simple-horizontal?style=light /// analytics, bar, chart, column, graph, performance, row, statistics, trend - static const IconData lightChartSimpleHorizontal = IconDataLight(0xe474); + static const IconData lightChartSimpleHorizontal = IconData(0xe474, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Simple Horizontal icon /// /// https://fontawesome.com/icons/chart-simple-horizontal?style=thin /// analytics, bar, chart, column, graph, performance, row, statistics, trend - static const IconData thinChartSimpleHorizontal = IconDataThin(0xe474); + static const IconData thinChartSimpleHorizontal = IconData(0xe474, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart Tree Map icon /// /// https://fontawesome.com/icons/chart-tree-map?style=solid /// collection, grid, performance - static const IconData solidChartTreeMap = IconDataSolid(0xe0ea); + static const IconData solidChartTreeMap = IconData(0xe0ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Tree Map icon /// /// https://fontawesome.com/icons/chart-tree-map?style=regular /// collection, grid, performance - static const IconData chartTreeMap = IconDataRegular(0xe0ea); + static const IconData chartTreeMap = IconData(0xe0ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Tree Map icon /// /// https://fontawesome.com/icons/chart-tree-map?style=light /// collection, grid, performance - static const IconData lightChartTreeMap = IconDataLight(0xe0ea); + static const IconData lightChartTreeMap = IconData(0xe0ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Tree Map icon /// /// https://fontawesome.com/icons/chart-tree-map?style=thin /// collection, grid, performance - static const IconData thinChartTreeMap = IconDataThin(0xe0ea); + static const IconData thinChartTreeMap = IconData(0xe0ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chart User icon /// /// https://fontawesome.com/icons/chart-user?style=solid /// employee, performance, revenue, uer, users-people - static const IconData solidChartUser = IconDataSolid(0xf6a3); + static const IconData solidChartUser = IconData(0xf6a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-chart for icon [solidChartUser] @Deprecated('Use "solidChartUser" instead.') @@ -18225,7 +18225,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-user?style=regular /// employee, performance, revenue, uer, users-people - static const IconData chartUser = IconDataRegular(0xf6a3); + static const IconData chartUser = IconData(0xf6a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-chart for icon [chartUser] @Deprecated('Use "chartUser" instead.') @@ -18235,7 +18235,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-user?style=light /// employee, performance, revenue, uer, users-people - static const IconData lightChartUser = IconDataLight(0xf6a3); + static const IconData lightChartUser = IconData(0xf6a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-chart for icon [lightChartUser] @Deprecated('Use "lightChartUser" instead.') @@ -18245,7 +18245,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-user?style=thin /// employee, performance, revenue, uer, users-people - static const IconData thinChartUser = IconDataThin(0xf6a3); + static const IconData thinChartUser = IconData(0xf6a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-chart for icon [thinChartUser] @Deprecated('Use "thinChartUser" instead.') @@ -18255,79 +18255,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chart-waterfall?style=solid /// chart, graph, performance, revenue, statistics, track, trend - static const IconData solidChartWaterfall = IconDataSolid(0xe0eb); + static const IconData solidChartWaterfall = IconData(0xe0eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chart Waterfall icon /// /// https://fontawesome.com/icons/chart-waterfall?style=regular /// chart, graph, performance, revenue, statistics, track, trend - static const IconData chartWaterfall = IconDataRegular(0xe0eb); + static const IconData chartWaterfall = IconData(0xe0eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chart Waterfall icon /// /// https://fontawesome.com/icons/chart-waterfall?style=light /// chart, graph, performance, revenue, statistics, track, trend - static const IconData lightChartWaterfall = IconDataLight(0xe0eb); + static const IconData lightChartWaterfall = IconData(0xe0eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chart Waterfall icon /// /// https://fontawesome.com/icons/chart-waterfall?style=thin /// chart, graph, performance, revenue, statistics, track, trend - static const IconData thinChartWaterfall = IconDataThin(0xe0eb); + static const IconData thinChartWaterfall = IconData(0xe0eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Check icon /// /// https://fontawesome.com/icons/check?style=solid /// Check Mark, accept, agree, check, check mark, checkmark, confirm, correct, coupon, done, enable, mark, notice, notification, notify, ok, select, success, tick, todo, true, validate, working, yes, ✓ - static const IconData solidCheck = IconDataSolid(0xf00c); + static const IconData solidCheck = IconData(0xf00c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Check icon /// /// https://fontawesome.com/icons/check?style=regular /// Check Mark, accept, agree, check, check mark, checkmark, confirm, correct, coupon, done, enable, mark, notice, notification, notify, ok, select, success, tick, todo, true, validate, working, yes, ✓ - static const IconData check = IconDataRegular(0xf00c); + static const IconData check = IconData(0xf00c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Check icon /// /// https://fontawesome.com/icons/check?style=light /// Check Mark, accept, agree, check, check mark, checkmark, confirm, correct, coupon, done, enable, mark, notice, notification, notify, ok, select, success, tick, todo, true, validate, working, yes, ✓ - static const IconData lightCheck = IconDataLight(0xf00c); + static const IconData lightCheck = IconData(0xf00c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Check icon /// /// https://fontawesome.com/icons/check?style=thin /// Check Mark, accept, agree, check, check mark, checkmark, confirm, correct, coupon, done, enable, mark, notice, notification, notify, ok, select, success, tick, todo, true, validate, working, yes, ✓ - static const IconData thinCheck = IconDataThin(0xf00c); + static const IconData thinCheck = IconData(0xf00c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Check Double icon /// /// https://fontawesome.com/icons/check-double?style=solid /// accept, agree, checkmark, confirm, correct, coupon, done, enable, notice, notification, notify, ok, select, select all, success, tick, todo, validate, working - static const IconData solidCheckDouble = IconDataSolid(0xf560); + static const IconData solidCheckDouble = IconData(0xf560, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Check Double icon /// /// https://fontawesome.com/icons/check-double?style=regular /// accept, agree, checkmark, confirm, correct, coupon, done, enable, notice, notification, notify, ok, select, select all, success, tick, todo, validate, working - static const IconData checkDouble = IconDataRegular(0xf560); + static const IconData checkDouble = IconData(0xf560, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Check Double icon /// /// https://fontawesome.com/icons/check-double?style=light /// accept, agree, checkmark, confirm, correct, coupon, done, enable, notice, notification, notify, ok, select, select all, success, tick, todo, validate, working - static const IconData lightCheckDouble = IconDataLight(0xf560); + static const IconData lightCheckDouble = IconData(0xf560, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Check Double icon /// /// https://fontawesome.com/icons/check-double?style=thin /// accept, agree, checkmark, confirm, correct, coupon, done, enable, notice, notification, notify, ok, select, select all, success, tick, todo, validate, working - static const IconData thinCheckDouble = IconDataThin(0xf560); + static const IconData thinCheckDouble = IconData(0xf560, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Check To Slot icon /// /// https://fontawesome.com/icons/check-to-slot?style=solid /// accept, cast, election, enable, politics, positive, validate, voting, working, yes - static const IconData solidCheckToSlot = IconDataSolid(0xf772); + static const IconData solidCheckToSlot = IconData(0xf772, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias vote-yea for icon [solidCheckToSlot] @Deprecated('Use "solidCheckToSlot" instead.') @@ -18337,7 +18337,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/check-to-slot?style=regular /// accept, cast, election, enable, politics, positive, validate, voting, working, yes - static const IconData checkToSlot = IconDataRegular(0xf772); + static const IconData checkToSlot = IconData(0xf772, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias vote-yea for icon [checkToSlot] @Deprecated('Use "checkToSlot" instead.') @@ -18347,7 +18347,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/check-to-slot?style=light /// accept, cast, election, enable, politics, positive, validate, voting, working, yes - static const IconData lightCheckToSlot = IconDataLight(0xf772); + static const IconData lightCheckToSlot = IconData(0xf772, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias vote-yea for icon [lightCheckToSlot] @Deprecated('Use "lightCheckToSlot" instead.') @@ -18357,7 +18357,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/check-to-slot?style=thin /// accept, cast, election, enable, politics, positive, validate, voting, working, yes - static const IconData thinCheckToSlot = IconDataThin(0xf772); + static const IconData thinCheckToSlot = IconData(0xf772, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias vote-yea for icon [thinCheckToSlot] @Deprecated('Use "thinCheckToSlot" instead.') @@ -18367,127 +18367,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cheese?style=solid /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData solidCheese = IconDataSolid(0xf7ef); + static const IconData solidCheese = IconData(0xf7ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cheese icon /// /// https://fontawesome.com/icons/cheese?style=regular /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData cheese = IconDataRegular(0xf7ef); + static const IconData cheese = IconData(0xf7ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cheese icon /// /// https://fontawesome.com/icons/cheese?style=light /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData lightCheese = IconDataLight(0xf7ef); + static const IconData lightCheese = IconData(0xf7ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cheese icon /// /// https://fontawesome.com/icons/cheese?style=thin /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData thinCheese = IconDataThin(0xf7ef); + static const IconData thinCheese = IconData(0xf7ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cheese Swiss icon /// /// https://fontawesome.com/icons/cheese-swiss?style=solid /// cheddar, cheese, cheese wedge, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData solidCheeseSwiss = IconDataSolid(0xf7f0); + static const IconData solidCheeseSwiss = IconData(0xf7f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cheese Swiss icon /// /// https://fontawesome.com/icons/cheese-swiss?style=regular /// cheddar, cheese, cheese wedge, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData cheeseSwiss = IconDataRegular(0xf7f0); + static const IconData cheeseSwiss = IconData(0xf7f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cheese Swiss icon /// /// https://fontawesome.com/icons/cheese-swiss?style=light /// cheddar, cheese, cheese wedge, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData lightCheeseSwiss = IconDataLight(0xf7f0); + static const IconData lightCheeseSwiss = IconData(0xf7f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cheese Swiss icon /// /// https://fontawesome.com/icons/cheese-swiss?style=thin /// cheddar, cheese, cheese wedge, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData thinCheeseSwiss = IconDataThin(0xf7f0); + static const IconData thinCheeseSwiss = IconData(0xf7f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cherries icon /// /// https://fontawesome.com/icons/cherries?style=solid /// berries, cherries, cherry, fruit, pacman, red, stem - static const IconData solidCherries = IconDataSolid(0xe0ec); + static const IconData solidCherries = IconData(0xe0ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cherries icon /// /// https://fontawesome.com/icons/cherries?style=regular /// berries, cherries, cherry, fruit, pacman, red, stem - static const IconData cherries = IconDataRegular(0xe0ec); + static const IconData cherries = IconData(0xe0ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cherries icon /// /// https://fontawesome.com/icons/cherries?style=light /// berries, cherries, cherry, fruit, pacman, red, stem - static const IconData lightCherries = IconDataLight(0xe0ec); + static const IconData lightCherries = IconData(0xe0ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cherries icon /// /// https://fontawesome.com/icons/cherries?style=thin /// berries, cherries, cherry, fruit, pacman, red, stem - static const IconData thinCherries = IconDataThin(0xe0ec); + static const IconData thinCherries = IconData(0xe0ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess icon /// /// https://fontawesome.com/icons/chess?style=solid /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData solidChess = IconDataSolid(0xf439); + static const IconData solidChess = IconData(0xf439, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess icon /// /// https://fontawesome.com/icons/chess?style=regular /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData chess = IconDataRegular(0xf439); + static const IconData chess = IconData(0xf439, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess icon /// /// https://fontawesome.com/icons/chess?style=light /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData lightChess = IconDataLight(0xf439); + static const IconData lightChess = IconData(0xf439, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess icon /// /// https://fontawesome.com/icons/chess?style=thin /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData thinChess = IconDataThin(0xf439); + static const IconData thinChess = IconData(0xf439, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Bishop icon /// /// https://fontawesome.com/icons/chess-bishop?style=solid /// Black Chess Bishop, board, checkmate, game, strategy - static const IconData solidChessBishop = IconDataSolid(0xf43a); + static const IconData solidChessBishop = IconData(0xf43a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Bishop icon /// /// https://fontawesome.com/icons/chess-bishop?style=regular /// Black Chess Bishop, board, checkmate, game, strategy - static const IconData chessBishop = IconDataRegular(0xf43a); + static const IconData chessBishop = IconData(0xf43a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Bishop icon /// /// https://fontawesome.com/icons/chess-bishop?style=light /// Black Chess Bishop, board, checkmate, game, strategy - static const IconData lightChessBishop = IconDataLight(0xf43a); + static const IconData lightChessBishop = IconData(0xf43a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Bishop icon /// /// https://fontawesome.com/icons/chess-bishop?style=thin /// Black Chess Bishop, board, checkmate, game, strategy - static const IconData thinChessBishop = IconDataThin(0xf43a); + static const IconData thinChessBishop = IconData(0xf43a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Bishop Piece icon /// /// https://fontawesome.com/icons/chess-bishop-piece?style=solid /// board, checkmate, game, strategy - static const IconData solidChessBishopPiece = IconDataSolid(0xf43b); + static const IconData solidChessBishopPiece = IconData(0xf43b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-bishop-alt for icon [solidChessBishopPiece] @Deprecated('Use "solidChessBishopPiece" instead.') @@ -18497,7 +18497,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-bishop-piece?style=regular /// board, checkmate, game, strategy - static const IconData chessBishopPiece = IconDataRegular(0xf43b); + static const IconData chessBishopPiece = IconData(0xf43b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-bishop-alt for icon [chessBishopPiece] @Deprecated('Use "chessBishopPiece" instead.') @@ -18507,7 +18507,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-bishop-piece?style=light /// board, checkmate, game, strategy - static const IconData lightChessBishopPiece = IconDataLight(0xf43b); + static const IconData lightChessBishopPiece = IconData(0xf43b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-bishop-alt for icon [lightChessBishopPiece] @Deprecated('Use "lightChessBishopPiece" instead.') @@ -18517,7 +18517,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-bishop-piece?style=thin /// board, checkmate, game, strategy - static const IconData thinChessBishopPiece = IconDataThin(0xf43b); + static const IconData thinChessBishopPiece = IconData(0xf43b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-bishop-alt for icon [thinChessBishopPiece] @Deprecated('Use "thinChessBishopPiece" instead.') @@ -18527,55 +18527,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-board?style=solid /// board, checkmate, game, strategy - static const IconData solidChessBoard = IconDataSolid(0xf43c); + static const IconData solidChessBoard = IconData(0xf43c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Board icon /// /// https://fontawesome.com/icons/chess-board?style=regular /// board, checkmate, game, strategy - static const IconData chessBoard = IconDataRegular(0xf43c); + static const IconData chessBoard = IconData(0xf43c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Board icon /// /// https://fontawesome.com/icons/chess-board?style=light /// board, checkmate, game, strategy - static const IconData lightChessBoard = IconDataLight(0xf43c); + static const IconData lightChessBoard = IconData(0xf43c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Board icon /// /// https://fontawesome.com/icons/chess-board?style=thin /// board, checkmate, game, strategy - static const IconData thinChessBoard = IconDataThin(0xf43c); + static const IconData thinChessBoard = IconData(0xf43c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Clock icon /// /// https://fontawesome.com/icons/chess-clock?style=solid /// board, checkmate, game, strategy, timer, tournament - static const IconData solidChessClock = IconDataSolid(0xf43d); + static const IconData solidChessClock = IconData(0xf43d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Clock icon /// /// https://fontawesome.com/icons/chess-clock?style=regular /// board, checkmate, game, strategy, timer, tournament - static const IconData chessClock = IconDataRegular(0xf43d); + static const IconData chessClock = IconData(0xf43d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Clock icon /// /// https://fontawesome.com/icons/chess-clock?style=light /// board, checkmate, game, strategy, timer, tournament - static const IconData lightChessClock = IconDataLight(0xf43d); + static const IconData lightChessClock = IconData(0xf43d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Clock icon /// /// https://fontawesome.com/icons/chess-clock?style=thin /// board, checkmate, game, strategy, timer, tournament - static const IconData thinChessClock = IconDataThin(0xf43d); + static const IconData thinChessClock = IconData(0xf43d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Clock Flip icon /// /// https://fontawesome.com/icons/chess-clock-flip?style=solid /// board, checkmate, game, strategy, timer, tournament - static const IconData solidChessClockFlip = IconDataSolid(0xf43e); + static const IconData solidChessClockFlip = IconData(0xf43e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-clock-alt for icon [solidChessClockFlip] @Deprecated('Use "solidChessClockFlip" instead.') @@ -18585,7 +18585,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-clock-flip?style=regular /// board, checkmate, game, strategy, timer, tournament - static const IconData chessClockFlip = IconDataRegular(0xf43e); + static const IconData chessClockFlip = IconData(0xf43e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-clock-alt for icon [chessClockFlip] @Deprecated('Use "chessClockFlip" instead.') @@ -18595,7 +18595,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-clock-flip?style=light /// board, checkmate, game, strategy, timer, tournament - static const IconData lightChessClockFlip = IconDataLight(0xf43e); + static const IconData lightChessClockFlip = IconData(0xf43e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-clock-alt for icon [lightChessClockFlip] @Deprecated('Use "lightChessClockFlip" instead.') @@ -18605,7 +18605,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-clock-flip?style=thin /// board, checkmate, game, strategy, timer, tournament - static const IconData thinChessClockFlip = IconDataThin(0xf43e); + static const IconData thinChessClockFlip = IconData(0xf43e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-clock-alt for icon [thinChessClockFlip] @Deprecated('Use "thinChessClockFlip" instead.') @@ -18615,31 +18615,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-king?style=solid /// Black Chess King, board, checkmate, game, strategy - static const IconData solidChessKing = IconDataSolid(0xf43f); + static const IconData solidChessKing = IconData(0xf43f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess King icon /// /// https://fontawesome.com/icons/chess-king?style=regular /// Black Chess King, board, checkmate, game, strategy - static const IconData chessKing = IconDataRegular(0xf43f); + static const IconData chessKing = IconData(0xf43f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess King icon /// /// https://fontawesome.com/icons/chess-king?style=light /// Black Chess King, board, checkmate, game, strategy - static const IconData lightChessKing = IconDataLight(0xf43f); + static const IconData lightChessKing = IconData(0xf43f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess King icon /// /// https://fontawesome.com/icons/chess-king?style=thin /// Black Chess King, board, checkmate, game, strategy - static const IconData thinChessKing = IconDataThin(0xf43f); + static const IconData thinChessKing = IconData(0xf43f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess King Piece icon /// /// https://fontawesome.com/icons/chess-king-piece?style=solid /// board, checkmate, game, strategy - static const IconData solidChessKingPiece = IconDataSolid(0xf440); + static const IconData solidChessKingPiece = IconData(0xf440, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-king-alt for icon [solidChessKingPiece] @Deprecated('Use "solidChessKingPiece" instead.') @@ -18649,7 +18649,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-king-piece?style=regular /// board, checkmate, game, strategy - static const IconData chessKingPiece = IconDataRegular(0xf440); + static const IconData chessKingPiece = IconData(0xf440, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-king-alt for icon [chessKingPiece] @Deprecated('Use "chessKingPiece" instead.') @@ -18659,7 +18659,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-king-piece?style=light /// board, checkmate, game, strategy - static const IconData lightChessKingPiece = IconDataLight(0xf440); + static const IconData lightChessKingPiece = IconData(0xf440, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-king-alt for icon [lightChessKingPiece] @Deprecated('Use "lightChessKingPiece" instead.') @@ -18669,7 +18669,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-king-piece?style=thin /// board, checkmate, game, strategy - static const IconData thinChessKingPiece = IconDataThin(0xf440); + static const IconData thinChessKingPiece = IconData(0xf440, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-king-alt for icon [thinChessKingPiece] @Deprecated('Use "thinChessKingPiece" instead.') @@ -18679,31 +18679,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-knight?style=solid /// Black Chess Knight, board, checkmate, game, horse, strategy - static const IconData solidChessKnight = IconDataSolid(0xf441); + static const IconData solidChessKnight = IconData(0xf441, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Knight icon /// /// https://fontawesome.com/icons/chess-knight?style=regular /// Black Chess Knight, board, checkmate, game, horse, strategy - static const IconData chessKnight = IconDataRegular(0xf441); + static const IconData chessKnight = IconData(0xf441, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Knight icon /// /// https://fontawesome.com/icons/chess-knight?style=light /// Black Chess Knight, board, checkmate, game, horse, strategy - static const IconData lightChessKnight = IconDataLight(0xf441); + static const IconData lightChessKnight = IconData(0xf441, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Knight icon /// /// https://fontawesome.com/icons/chess-knight?style=thin /// Black Chess Knight, board, checkmate, game, horse, strategy - static const IconData thinChessKnight = IconDataThin(0xf441); + static const IconData thinChessKnight = IconData(0xf441, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Knight Piece icon /// /// https://fontawesome.com/icons/chess-knight-piece?style=solid /// board, checkmate, game, horse, strategy - static const IconData solidChessKnightPiece = IconDataSolid(0xf442); + static const IconData solidChessKnightPiece = IconData(0xf442, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-knight-alt for icon [solidChessKnightPiece] @Deprecated('Use "solidChessKnightPiece" instead.') @@ -18713,7 +18713,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-knight-piece?style=regular /// board, checkmate, game, horse, strategy - static const IconData chessKnightPiece = IconDataRegular(0xf442); + static const IconData chessKnightPiece = IconData(0xf442, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-knight-alt for icon [chessKnightPiece] @Deprecated('Use "chessKnightPiece" instead.') @@ -18723,7 +18723,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-knight-piece?style=light /// board, checkmate, game, horse, strategy - static const IconData lightChessKnightPiece = IconDataLight(0xf442); + static const IconData lightChessKnightPiece = IconData(0xf442, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-knight-alt for icon [lightChessKnightPiece] @Deprecated('Use "lightChessKnightPiece" instead.') @@ -18733,7 +18733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-knight-piece?style=thin /// board, checkmate, game, horse, strategy - static const IconData thinChessKnightPiece = IconDataThin(0xf442); + static const IconData thinChessKnightPiece = IconData(0xf442, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-knight-alt for icon [thinChessKnightPiece] @Deprecated('Use "thinChessKnightPiece" instead.') @@ -18743,31 +18743,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-pawn?style=solid /// board, checkmate, chess, chess pawn, dupe, expendable, game, strategy - static const IconData solidChessPawn = IconDataSolid(0xf443); + static const IconData solidChessPawn = IconData(0xf443, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Pawn icon /// /// https://fontawesome.com/icons/chess-pawn?style=regular /// board, checkmate, chess, chess pawn, dupe, expendable, game, strategy - static const IconData chessPawn = IconDataRegular(0xf443); + static const IconData chessPawn = IconData(0xf443, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Pawn icon /// /// https://fontawesome.com/icons/chess-pawn?style=light /// board, checkmate, chess, chess pawn, dupe, expendable, game, strategy - static const IconData lightChessPawn = IconDataLight(0xf443); + static const IconData lightChessPawn = IconData(0xf443, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Pawn icon /// /// https://fontawesome.com/icons/chess-pawn?style=thin /// board, checkmate, chess, chess pawn, dupe, expendable, game, strategy - static const IconData thinChessPawn = IconDataThin(0xf443); + static const IconData thinChessPawn = IconData(0xf443, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Pawn Piece icon /// /// https://fontawesome.com/icons/chess-pawn-piece?style=solid /// board, checkmate, game, strategy - static const IconData solidChessPawnPiece = IconDataSolid(0xf444); + static const IconData solidChessPawnPiece = IconData(0xf444, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-pawn-alt for icon [solidChessPawnPiece] @Deprecated('Use "solidChessPawnPiece" instead.') @@ -18777,7 +18777,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-pawn-piece?style=regular /// board, checkmate, game, strategy - static const IconData chessPawnPiece = IconDataRegular(0xf444); + static const IconData chessPawnPiece = IconData(0xf444, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-pawn-alt for icon [chessPawnPiece] @Deprecated('Use "chessPawnPiece" instead.') @@ -18787,7 +18787,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-pawn-piece?style=light /// board, checkmate, game, strategy - static const IconData lightChessPawnPiece = IconDataLight(0xf444); + static const IconData lightChessPawnPiece = IconData(0xf444, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-pawn-alt for icon [lightChessPawnPiece] @Deprecated('Use "lightChessPawnPiece" instead.') @@ -18797,7 +18797,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-pawn-piece?style=thin /// board, checkmate, game, strategy - static const IconData thinChessPawnPiece = IconDataThin(0xf444); + static const IconData thinChessPawnPiece = IconData(0xf444, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-pawn-alt for icon [thinChessPawnPiece] @Deprecated('Use "thinChessPawnPiece" instead.') @@ -18807,31 +18807,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-queen?style=solid /// Black Chess Queen, board, checkmate, game, strategy - static const IconData solidChessQueen = IconDataSolid(0xf445); + static const IconData solidChessQueen = IconData(0xf445, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Queen icon /// /// https://fontawesome.com/icons/chess-queen?style=regular /// Black Chess Queen, board, checkmate, game, strategy - static const IconData chessQueen = IconDataRegular(0xf445); + static const IconData chessQueen = IconData(0xf445, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Queen icon /// /// https://fontawesome.com/icons/chess-queen?style=light /// Black Chess Queen, board, checkmate, game, strategy - static const IconData lightChessQueen = IconDataLight(0xf445); + static const IconData lightChessQueen = IconData(0xf445, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Queen icon /// /// https://fontawesome.com/icons/chess-queen?style=thin /// Black Chess Queen, board, checkmate, game, strategy - static const IconData thinChessQueen = IconDataThin(0xf445); + static const IconData thinChessQueen = IconData(0xf445, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Queen Piece icon /// /// https://fontawesome.com/icons/chess-queen-piece?style=solid /// board, checkmate, game, strategy - static const IconData solidChessQueenPiece = IconDataSolid(0xf446); + static const IconData solidChessQueenPiece = IconData(0xf446, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-queen-alt for icon [solidChessQueenPiece] @Deprecated('Use "solidChessQueenPiece" instead.') @@ -18841,7 +18841,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-queen-piece?style=regular /// board, checkmate, game, strategy - static const IconData chessQueenPiece = IconDataRegular(0xf446); + static const IconData chessQueenPiece = IconData(0xf446, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-queen-alt for icon [chessQueenPiece] @Deprecated('Use "chessQueenPiece" instead.') @@ -18851,7 +18851,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-queen-piece?style=light /// board, checkmate, game, strategy - static const IconData lightChessQueenPiece = IconDataLight(0xf446); + static const IconData lightChessQueenPiece = IconData(0xf446, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-queen-alt for icon [lightChessQueenPiece] @Deprecated('Use "lightChessQueenPiece" instead.') @@ -18861,7 +18861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-queen-piece?style=thin /// board, checkmate, game, strategy - static const IconData thinChessQueenPiece = IconDataThin(0xf446); + static const IconData thinChessQueenPiece = IconData(0xf446, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-queen-alt for icon [thinChessQueenPiece] @Deprecated('Use "thinChessQueenPiece" instead.') @@ -18871,31 +18871,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-rook?style=solid /// Black Chess Rook, board, castle, checkmate, game, strategy - static const IconData solidChessRook = IconDataSolid(0xf447); + static const IconData solidChessRook = IconData(0xf447, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chess Rook icon /// /// https://fontawesome.com/icons/chess-rook?style=regular /// Black Chess Rook, board, castle, checkmate, game, strategy - static const IconData chessRook = IconDataRegular(0xf447); + static const IconData chessRook = IconData(0xf447, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chess Rook icon /// /// https://fontawesome.com/icons/chess-rook?style=light /// Black Chess Rook, board, castle, checkmate, game, strategy - static const IconData lightChessRook = IconDataLight(0xf447); + static const IconData lightChessRook = IconData(0xf447, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chess Rook icon /// /// https://fontawesome.com/icons/chess-rook?style=thin /// Black Chess Rook, board, castle, checkmate, game, strategy - static const IconData thinChessRook = IconDataThin(0xf447); + static const IconData thinChessRook = IconData(0xf447, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chess Rook Piece icon /// /// https://fontawesome.com/icons/chess-rook-piece?style=solid /// board, castle, checkmate, game, strategy - static const IconData solidChessRookPiece = IconDataSolid(0xf448); + static const IconData solidChessRookPiece = IconData(0xf448, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chess-rook-alt for icon [solidChessRookPiece] @Deprecated('Use "solidChessRookPiece" instead.') @@ -18905,7 +18905,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-rook-piece?style=regular /// board, castle, checkmate, game, strategy - static const IconData chessRookPiece = IconDataRegular(0xf448); + static const IconData chessRookPiece = IconData(0xf448, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chess-rook-alt for icon [chessRookPiece] @Deprecated('Use "chessRookPiece" instead.') @@ -18915,7 +18915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-rook-piece?style=light /// board, castle, checkmate, game, strategy - static const IconData lightChessRookPiece = IconDataLight(0xf448); + static const IconData lightChessRookPiece = IconData(0xf448, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chess-rook-alt for icon [lightChessRookPiece] @Deprecated('Use "lightChessRookPiece" instead.') @@ -18925,7 +18925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chess-rook-piece?style=thin /// board, castle, checkmate, game, strategy - static const IconData thinChessRookPiece = IconDataThin(0xf448); + static const IconData thinChessRookPiece = IconData(0xf448, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chess-rook-alt for icon [thinChessRookPiece] @Deprecated('Use "thinChessRookPiece" instead.') @@ -18935,127 +18935,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chestnut?style=solid /// nut, plant - static const IconData solidChestnut = IconDataSolid(0xe3f6); + static const IconData solidChestnut = IconData(0xe3f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chestnut icon /// /// https://fontawesome.com/icons/chestnut?style=regular /// nut, plant - static const IconData chestnut = IconDataRegular(0xe3f6); + static const IconData chestnut = IconData(0xe3f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chestnut icon /// /// https://fontawesome.com/icons/chestnut?style=light /// nut, plant - static const IconData lightChestnut = IconDataLight(0xe3f6); + static const IconData lightChestnut = IconData(0xe3f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chestnut icon /// /// https://fontawesome.com/icons/chestnut?style=thin /// nut, plant - static const IconData thinChestnut = IconDataThin(0xe3f6); + static const IconData thinChestnut = IconData(0xe3f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chevron Down icon /// /// https://fontawesome.com/icons/chevron-down?style=solid /// arrow, download, expand, insert - static const IconData solidChevronDown = IconDataSolid(0xf078); + static const IconData solidChevronDown = IconData(0xf078, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chevron Down icon /// /// https://fontawesome.com/icons/chevron-down?style=regular /// arrow, download, expand, insert - static const IconData chevronDown = IconDataRegular(0xf078); + static const IconData chevronDown = IconData(0xf078, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chevron Down icon /// /// https://fontawesome.com/icons/chevron-down?style=light /// arrow, download, expand, insert - static const IconData lightChevronDown = IconDataLight(0xf078); + static const IconData lightChevronDown = IconData(0xf078, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chevron Down icon /// /// https://fontawesome.com/icons/chevron-down?style=thin /// arrow, download, expand, insert - static const IconData thinChevronDown = IconDataThin(0xf078); + static const IconData thinChevronDown = IconData(0xf078, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chevron Left icon /// /// https://fontawesome.com/icons/chevron-left?style=solid /// Left-Pointing Angle Bracket, arrow, back, bracket, previous - static const IconData solidChevronLeft = IconDataSolid(0xf053); + static const IconData solidChevronLeft = IconData(0xf053, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chevron Left icon /// /// https://fontawesome.com/icons/chevron-left?style=regular /// Left-Pointing Angle Bracket, arrow, back, bracket, previous - static const IconData chevronLeft = IconDataRegular(0xf053); + static const IconData chevronLeft = IconData(0xf053, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chevron Left icon /// /// https://fontawesome.com/icons/chevron-left?style=light /// Left-Pointing Angle Bracket, arrow, back, bracket, previous - static const IconData lightChevronLeft = IconDataLight(0xf053); + static const IconData lightChevronLeft = IconData(0xf053, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chevron Left icon /// /// https://fontawesome.com/icons/chevron-left?style=thin /// Left-Pointing Angle Bracket, arrow, back, bracket, previous - static const IconData thinChevronLeft = IconDataThin(0xf053); + static const IconData thinChevronLeft = IconData(0xf053, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chevron Right icon /// /// https://fontawesome.com/icons/chevron-right?style=solid /// Right-Pointing Angle Bracket, arrow, bracket, forward, next - static const IconData solidChevronRight = IconDataSolid(0xf054); + static const IconData solidChevronRight = IconData(0xf054, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chevron Right icon /// /// https://fontawesome.com/icons/chevron-right?style=regular /// Right-Pointing Angle Bracket, arrow, bracket, forward, next - static const IconData chevronRight = IconDataRegular(0xf054); + static const IconData chevronRight = IconData(0xf054, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chevron Right icon /// /// https://fontawesome.com/icons/chevron-right?style=light /// Right-Pointing Angle Bracket, arrow, bracket, forward, next - static const IconData lightChevronRight = IconDataLight(0xf054); + static const IconData lightChevronRight = IconData(0xf054, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chevron Right icon /// /// https://fontawesome.com/icons/chevron-right?style=thin /// Right-Pointing Angle Bracket, arrow, bracket, forward, next - static const IconData thinChevronRight = IconDataThin(0xf054); + static const IconData thinChevronRight = IconData(0xf054, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chevron Up icon /// /// https://fontawesome.com/icons/chevron-up?style=solid /// arrow, collapse, upgrade, upload - static const IconData solidChevronUp = IconDataSolid(0xf077); + static const IconData solidChevronUp = IconData(0xf077, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chevron Up icon /// /// https://fontawesome.com/icons/chevron-up?style=regular /// arrow, collapse, upgrade, upload - static const IconData chevronUp = IconDataRegular(0xf077); + static const IconData chevronUp = IconData(0xf077, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chevron Up icon /// /// https://fontawesome.com/icons/chevron-up?style=light /// arrow, collapse, upgrade, upload - static const IconData lightChevronUp = IconDataLight(0xf077); + static const IconData lightChevronUp = IconData(0xf077, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chevron Up icon /// /// https://fontawesome.com/icons/chevron-up?style=thin /// arrow, collapse, upgrade, upload - static const IconData thinChevronUp = IconDataThin(0xf077); + static const IconData thinChevronUp = IconData(0xf077, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chevrons Down icon /// /// https://fontawesome.com/icons/chevrons-down?style=solid /// arrow, download, expand - static const IconData solidChevronsDown = IconDataSolid(0xf322); + static const IconData solidChevronsDown = IconData(0xf322, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-down for icon [solidChevronsDown] @Deprecated('Use "solidChevronsDown" instead.') @@ -19065,7 +19065,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-down?style=regular /// arrow, download, expand - static const IconData chevronsDown = IconDataRegular(0xf322); + static const IconData chevronsDown = IconData(0xf322, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-down for icon [chevronsDown] @Deprecated('Use "chevronsDown" instead.') @@ -19075,7 +19075,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-down?style=light /// arrow, download, expand - static const IconData lightChevronsDown = IconDataLight(0xf322); + static const IconData lightChevronsDown = IconData(0xf322, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-down for icon [lightChevronsDown] @Deprecated('Use "lightChevronsDown" instead.') @@ -19085,7 +19085,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-down?style=thin /// arrow, download, expand - static const IconData thinChevronsDown = IconDataThin(0xf322); + static const IconData thinChevronsDown = IconData(0xf322, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-down for icon [thinChevronsDown] @Deprecated('Use "thinChevronsDown" instead.') @@ -19095,7 +19095,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-left?style=solid /// arrow, back, bracket, previous - static const IconData solidChevronsLeft = IconDataSolid(0xf323); + static const IconData solidChevronsLeft = IconData(0xf323, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-left for icon [solidChevronsLeft] @Deprecated('Use "solidChevronsLeft" instead.') @@ -19105,7 +19105,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-left?style=regular /// arrow, back, bracket, previous - static const IconData chevronsLeft = IconDataRegular(0xf323); + static const IconData chevronsLeft = IconData(0xf323, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-left for icon [chevronsLeft] @Deprecated('Use "chevronsLeft" instead.') @@ -19115,7 +19115,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-left?style=light /// arrow, back, bracket, previous - static const IconData lightChevronsLeft = IconDataLight(0xf323); + static const IconData lightChevronsLeft = IconData(0xf323, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-left for icon [lightChevronsLeft] @Deprecated('Use "lightChevronsLeft" instead.') @@ -19125,7 +19125,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-left?style=thin /// arrow, back, bracket, previous - static const IconData thinChevronsLeft = IconDataThin(0xf323); + static const IconData thinChevronsLeft = IconData(0xf323, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-left for icon [thinChevronsLeft] @Deprecated('Use "thinChevronsLeft" instead.') @@ -19135,7 +19135,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-right?style=solid /// arrow, bracket, forward, next - static const IconData solidChevronsRight = IconDataSolid(0xf324); + static const IconData solidChevronsRight = IconData(0xf324, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-right for icon [solidChevronsRight] @Deprecated('Use "solidChevronsRight" instead.') @@ -19145,7 +19145,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-right?style=regular /// arrow, bracket, forward, next - static const IconData chevronsRight = IconDataRegular(0xf324); + static const IconData chevronsRight = IconData(0xf324, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-right for icon [chevronsRight] @Deprecated('Use "chevronsRight" instead.') @@ -19155,7 +19155,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-right?style=light /// arrow, bracket, forward, next - static const IconData lightChevronsRight = IconDataLight(0xf324); + static const IconData lightChevronsRight = IconData(0xf324, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-right for icon [lightChevronsRight] @Deprecated('Use "lightChevronsRight" instead.') @@ -19165,7 +19165,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-right?style=thin /// arrow, bracket, forward, next - static const IconData thinChevronsRight = IconDataThin(0xf324); + static const IconData thinChevronsRight = IconData(0xf324, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-right for icon [thinChevronsRight] @Deprecated('Use "thinChevronsRight" instead.') @@ -19175,7 +19175,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-up?style=solid /// arrow, collapse, upgrade, upload - static const IconData solidChevronsUp = IconDataSolid(0xf325); + static const IconData solidChevronsUp = IconData(0xf325, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-up for icon [solidChevronsUp] @Deprecated('Use "solidChevronsUp" instead.') @@ -19185,7 +19185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-up?style=regular /// arrow, collapse, upgrade, upload - static const IconData chevronsUp = IconDataRegular(0xf325); + static const IconData chevronsUp = IconData(0xf325, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-up for icon [chevronsUp] @Deprecated('Use "chevronsUp" instead.') @@ -19195,7 +19195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-up?style=light /// arrow, collapse, upgrade, upload - static const IconData lightChevronsUp = IconDataLight(0xf325); + static const IconData lightChevronsUp = IconData(0xf325, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-up for icon [lightChevronsUp] @Deprecated('Use "lightChevronsUp" instead.') @@ -19205,7 +19205,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chevrons-up?style=thin /// arrow, collapse, upgrade, upload - static const IconData thinChevronsUp = IconDataThin(0xf325); + static const IconData thinChevronsUp = IconData(0xf325, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-double-up for icon [thinChevronsUp] @Deprecated('Use "thinChevronsUp" instead.') @@ -19215,55 +19215,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/chf-sign?style=solid /// Swiss, franc, money, currency - static const IconData solidChfSign = IconDataSolid(0xe602); + static const IconData solidChfSign = IconData(0xe602, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chf Sign icon /// /// https://fontawesome.com/icons/chf-sign?style=regular /// Swiss, franc, money, currency - static const IconData chfSign = IconDataRegular(0xe602); + static const IconData chfSign = IconData(0xe602, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chf Sign icon /// /// https://fontawesome.com/icons/chf-sign?style=light /// Swiss, franc, money, currency - static const IconData lightChfSign = IconDataLight(0xe602); + static const IconData lightChfSign = IconData(0xe602, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chf Sign icon /// /// https://fontawesome.com/icons/chf-sign?style=thin /// Swiss, franc, money, currency - static const IconData thinChfSign = IconDataThin(0xe602); + static const IconData thinChfSign = IconData(0xe602, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Child icon /// /// https://fontawesome.com/icons/child?style=solid /// boy, girl, kid, toddler, uer, young, youth - static const IconData solidChild = IconDataSolid(0xf1ae); + static const IconData solidChild = IconData(0xf1ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Child icon /// /// https://fontawesome.com/icons/child?style=regular /// boy, girl, kid, toddler, uer, young, youth - static const IconData child = IconDataRegular(0xf1ae); + static const IconData child = IconData(0xf1ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Child icon /// /// https://fontawesome.com/icons/child?style=light /// boy, girl, kid, toddler, uer, young, youth - static const IconData lightChild = IconDataLight(0xf1ae); + static const IconData lightChild = IconData(0xf1ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Child icon /// /// https://fontawesome.com/icons/child?style=thin /// boy, girl, kid, toddler, uer, young, youth - static const IconData thinChild = IconDataThin(0xf1ae); + static const IconData thinChild = IconData(0xf1ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Child Combatant icon /// /// https://fontawesome.com/icons/child-combatant?style=solid /// combatant - static const IconData solidChildCombatant = IconDataSolid(0xe4e0); + static const IconData solidChildCombatant = IconData(0xe4e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias child-rifle for icon [solidChildCombatant] @Deprecated('Use "solidChildCombatant" instead.') @@ -19273,7 +19273,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/child-combatant?style=regular /// combatant - static const IconData childCombatant = IconDataRegular(0xe4e0); + static const IconData childCombatant = IconData(0xe4e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias child-rifle for icon [childCombatant] @Deprecated('Use "childCombatant" instead.') @@ -19283,7 +19283,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/child-combatant?style=light /// combatant - static const IconData lightChildCombatant = IconDataLight(0xe4e0); + static const IconData lightChildCombatant = IconData(0xe4e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias child-rifle for icon [lightChildCombatant] @Deprecated('Use "lightChildCombatant" instead.') @@ -19293,7 +19293,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/child-combatant?style=thin /// combatant - static const IconData thinChildCombatant = IconDataThin(0xe4e0); + static const IconData thinChildCombatant = IconData(0xe4e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias child-rifle for icon [thinChildCombatant] @Deprecated('Use "thinChildCombatant" instead.') @@ -19303,474 +19303,474 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/child-dress?style=solid /// boy, girl, kid, toddler, uer, young, youth - static const IconData solidChildDress = IconDataSolid(0xe59c); + static const IconData solidChildDress = IconData(0xe59c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Child Dress icon /// /// https://fontawesome.com/icons/child-dress?style=regular /// boy, girl, kid, toddler, uer, young, youth - static const IconData childDress = IconDataRegular(0xe59c); + static const IconData childDress = IconData(0xe59c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Child Dress icon /// /// https://fontawesome.com/icons/child-dress?style=light /// boy, girl, kid, toddler, uer, young, youth - static const IconData lightChildDress = IconDataLight(0xe59c); + static const IconData lightChildDress = IconData(0xe59c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Child Dress icon /// /// https://fontawesome.com/icons/child-dress?style=thin /// boy, girl, kid, toddler, uer, young, youth - static const IconData thinChildDress = IconDataThin(0xe59c); + static const IconData thinChildDress = IconData(0xe59c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Child Reaching icon /// /// https://fontawesome.com/icons/child-reaching?style=solid /// boy, girl, kid, toddler, uer, young, youth - static const IconData solidChildReaching = IconDataSolid(0xe59d); + static const IconData solidChildReaching = IconData(0xe59d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Child Reaching icon /// /// https://fontawesome.com/icons/child-reaching?style=regular /// boy, girl, kid, toddler, uer, young, youth - static const IconData childReaching = IconDataRegular(0xe59d); + static const IconData childReaching = IconData(0xe59d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Child Reaching icon /// /// https://fontawesome.com/icons/child-reaching?style=light /// boy, girl, kid, toddler, uer, young, youth - static const IconData lightChildReaching = IconDataLight(0xe59d); + static const IconData lightChildReaching = IconData(0xe59d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Child Reaching icon /// /// https://fontawesome.com/icons/child-reaching?style=thin /// boy, girl, kid, toddler, uer, young, youth - static const IconData thinChildReaching = IconDataThin(0xe59d); + static const IconData thinChildReaching = IconData(0xe59d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Children icon /// /// https://fontawesome.com/icons/children?style=solid /// boy, child, girl, kid, kids, together, uer, young, youth - static const IconData solidChildren = IconDataSolid(0xe4e1); + static const IconData solidChildren = IconData(0xe4e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Children icon /// /// https://fontawesome.com/icons/children?style=regular /// boy, child, girl, kid, kids, together, uer, young, youth - static const IconData children = IconDataRegular(0xe4e1); + static const IconData children = IconData(0xe4e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Children icon /// /// https://fontawesome.com/icons/children?style=light /// boy, child, girl, kid, kids, together, uer, young, youth - static const IconData lightChildren = IconDataLight(0xe4e1); + static const IconData lightChildren = IconData(0xe4e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Children icon /// /// https://fontawesome.com/icons/children?style=thin /// boy, child, girl, kid, kids, together, uer, young, youth - static const IconData thinChildren = IconDataThin(0xe4e1); + static const IconData thinChildren = IconData(0xe4e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chimney icon /// /// https://fontawesome.com/icons/chimney?style=solid /// brick, exhaust, fireplace, house, roof, vent - static const IconData solidChimney = IconDataSolid(0xf78b); + static const IconData solidChimney = IconData(0xf78b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chimney icon /// /// https://fontawesome.com/icons/chimney?style=regular /// brick, exhaust, fireplace, house, roof, vent - static const IconData chimney = IconDataRegular(0xf78b); + static const IconData chimney = IconData(0xf78b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chimney icon /// /// https://fontawesome.com/icons/chimney?style=light /// brick, exhaust, fireplace, house, roof, vent - static const IconData lightChimney = IconDataLight(0xf78b); + static const IconData lightChimney = IconData(0xf78b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chimney icon /// /// https://fontawesome.com/icons/chimney?style=thin /// brick, exhaust, fireplace, house, roof, vent - static const IconData thinChimney = IconDataThin(0xf78b); + static const IconData thinChimney = IconData(0xf78b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Chopsticks icon /// /// https://fontawesome.com/icons/chopsticks?style=solid /// bamboo, chopsticks, utensils - static const IconData solidChopsticks = IconDataSolid(0xe3f7); + static const IconData solidChopsticks = IconData(0xe3f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Chopsticks icon /// /// https://fontawesome.com/icons/chopsticks?style=regular /// bamboo, chopsticks, utensils - static const IconData chopsticks = IconDataRegular(0xe3f7); + static const IconData chopsticks = IconData(0xe3f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Chopsticks icon /// /// https://fontawesome.com/icons/chopsticks?style=light /// bamboo, chopsticks, utensils - static const IconData lightChopsticks = IconDataLight(0xe3f7); + static const IconData lightChopsticks = IconData(0xe3f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Chopsticks icon /// /// https://fontawesome.com/icons/chopsticks?style=thin /// bamboo, chopsticks, utensils - static const IconData thinChopsticks = IconDataThin(0xe3f7); + static const IconData thinChopsticks = IconData(0xe3f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Chrome icon /// /// https://fontawesome.com/icons/chrome?style=brands /// browser - static const IconData chrome = IconDataBrands(0xf268); + static const IconData chrome = IconData(0xf268, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Chromecast icon /// /// https://fontawesome.com/icons/chromecast?style=brands - static const IconData chromecast = IconDataBrands(0xf838); + static const IconData chromecast = IconData(0xf838, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Church icon /// /// https://fontawesome.com/icons/church?style=solid /// Christian, building, cathedral, chapel, church, community, cross, religion - static const IconData solidChurch = IconDataSolid(0xf51d); + static const IconData solidChurch = IconData(0xf51d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Church icon /// /// https://fontawesome.com/icons/church?style=regular /// Christian, building, cathedral, chapel, church, community, cross, religion - static const IconData church = IconDataRegular(0xf51d); + static const IconData church = IconData(0xf51d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Church icon /// /// https://fontawesome.com/icons/church?style=light /// Christian, building, cathedral, chapel, church, community, cross, religion - static const IconData lightChurch = IconDataLight(0xf51d); + static const IconData lightChurch = IconData(0xf51d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Church icon /// /// https://fontawesome.com/icons/church?style=thin /// Christian, building, cathedral, chapel, church, community, cross, religion - static const IconData thinChurch = IconDataThin(0xf51d); + static const IconData thinChurch = IconData(0xf51d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle icon /// /// https://fontawesome.com/icons/circle?style=solid /// Black Circle, Black Large Circle, black circle, blue, blue circle, brown, brown circle, chart, circle, circle-thin, diameter, dot, ellipse, fill, geometric, green, green circle, notification, orange, orange circle, progress, purple, purple circle, red, red circle, round, white circle, yellow, yellow circle - static const IconData solidCircle = IconDataSolid(0xf111); + static const IconData solidCircle = IconData(0xf111, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle icon /// /// https://fontawesome.com/icons/circle?style=regular /// Black Circle, Black Large Circle, black circle, blue, blue circle, brown, brown circle, chart, circle, circle-thin, diameter, dot, ellipse, fill, geometric, green, green circle, notification, orange, orange circle, progress, purple, purple circle, red, red circle, round, white circle, yellow, yellow circle - static const IconData circle = IconDataRegular(0xf111); + static const IconData circle = IconData(0xf111, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle icon /// /// https://fontawesome.com/icons/circle?style=light /// Black Circle, Black Large Circle, black circle, blue, blue circle, brown, brown circle, chart, circle, circle-thin, diameter, dot, ellipse, fill, geometric, green, green circle, notification, orange, orange circle, progress, purple, purple circle, red, red circle, round, white circle, yellow, yellow circle - static const IconData lightCircle = IconDataLight(0xf111); + static const IconData lightCircle = IconData(0xf111, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle icon /// /// https://fontawesome.com/icons/circle?style=thin /// Black Circle, Black Large Circle, black circle, blue, blue circle, brown, brown circle, chart, circle, circle-thin, diameter, dot, ellipse, fill, geometric, green, green circle, notification, orange, orange circle, progress, purple, purple circle, red, red circle, round, white circle, yellow, yellow circle - static const IconData thinCircle = IconDataThin(0xf111); + static const IconData thinCircle = IconData(0xf111, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 0 icon /// /// https://fontawesome.com/icons/circle-0?style=solid /// Circled Digit Zero, Negative Circled Digit Zero, nada, none, zero, zilch - static const IconData solidCircle0 = IconDataSolid(0xe0ed); + static const IconData solidCircle0 = IconData(0xe0ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 0 icon /// /// https://fontawesome.com/icons/circle-0?style=regular /// Circled Digit Zero, Negative Circled Digit Zero, nada, none, zero, zilch - static const IconData circle0 = IconDataRegular(0xe0ed); + static const IconData circle0 = IconData(0xe0ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 0 icon /// /// https://fontawesome.com/icons/circle-0?style=light /// Circled Digit Zero, Negative Circled Digit Zero, nada, none, zero, zilch - static const IconData lightCircle0 = IconDataLight(0xe0ed); + static const IconData lightCircle0 = IconData(0xe0ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 0 icon /// /// https://fontawesome.com/icons/circle-0?style=thin /// Circled Digit Zero, Negative Circled Digit Zero, nada, none, zero, zilch - static const IconData thinCircle0 = IconDataThin(0xe0ed); + static const IconData thinCircle0 = IconData(0xe0ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 1 icon /// /// https://fontawesome.com/icons/circle-1?style=solid /// Circled Digit One, Dingbat Circled Sans-Serif Digit One, Dingbat Negative Circled Digit One, Dingbat Negative Circled Sans-Serif Digit One, one - static const IconData solidCircle1 = IconDataSolid(0xe0ee); + static const IconData solidCircle1 = IconData(0xe0ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 1 icon /// /// https://fontawesome.com/icons/circle-1?style=regular /// Circled Digit One, Dingbat Circled Sans-Serif Digit One, Dingbat Negative Circled Digit One, Dingbat Negative Circled Sans-Serif Digit One, one - static const IconData circle1 = IconDataRegular(0xe0ee); + static const IconData circle1 = IconData(0xe0ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 1 icon /// /// https://fontawesome.com/icons/circle-1?style=light /// Circled Digit One, Dingbat Circled Sans-Serif Digit One, Dingbat Negative Circled Digit One, Dingbat Negative Circled Sans-Serif Digit One, one - static const IconData lightCircle1 = IconDataLight(0xe0ee); + static const IconData lightCircle1 = IconData(0xe0ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 1 icon /// /// https://fontawesome.com/icons/circle-1?style=thin /// Circled Digit One, Dingbat Circled Sans-Serif Digit One, Dingbat Negative Circled Digit One, Dingbat Negative Circled Sans-Serif Digit One, one - static const IconData thinCircle1 = IconDataThin(0xe0ee); + static const IconData thinCircle1 = IconData(0xe0ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 2 icon /// /// https://fontawesome.com/icons/circle-2?style=solid /// Circled Digit Two, Dingbat Circled Sans-Serif Digit Two, Dingbat Negative Circled Digit Two, Dingbat Negative Circled Sans-Serif Digit Two, two - static const IconData solidCircle2 = IconDataSolid(0xe0ef); + static const IconData solidCircle2 = IconData(0xe0ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 2 icon /// /// https://fontawesome.com/icons/circle-2?style=regular /// Circled Digit Two, Dingbat Circled Sans-Serif Digit Two, Dingbat Negative Circled Digit Two, Dingbat Negative Circled Sans-Serif Digit Two, two - static const IconData circle2 = IconDataRegular(0xe0ef); + static const IconData circle2 = IconData(0xe0ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 2 icon /// /// https://fontawesome.com/icons/circle-2?style=light /// Circled Digit Two, Dingbat Circled Sans-Serif Digit Two, Dingbat Negative Circled Digit Two, Dingbat Negative Circled Sans-Serif Digit Two, two - static const IconData lightCircle2 = IconDataLight(0xe0ef); + static const IconData lightCircle2 = IconData(0xe0ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 2 icon /// /// https://fontawesome.com/icons/circle-2?style=thin /// Circled Digit Two, Dingbat Circled Sans-Serif Digit Two, Dingbat Negative Circled Digit Two, Dingbat Negative Circled Sans-Serif Digit Two, two - static const IconData thinCircle2 = IconDataThin(0xe0ef); + static const IconData thinCircle2 = IconData(0xe0ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 3 icon /// /// https://fontawesome.com/icons/circle-3?style=solid /// Circled Digit Three, Dingbat Circled Sans-Serif Digit Three, Dingbat Negative Circled Digit Three, Dingbat Negative Circled Sans-Serif Digit Three, three - static const IconData solidCircle3 = IconDataSolid(0xe0f0); + static const IconData solidCircle3 = IconData(0xe0f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 3 icon /// /// https://fontawesome.com/icons/circle-3?style=regular /// Circled Digit Three, Dingbat Circled Sans-Serif Digit Three, Dingbat Negative Circled Digit Three, Dingbat Negative Circled Sans-Serif Digit Three, three - static const IconData circle3 = IconDataRegular(0xe0f0); + static const IconData circle3 = IconData(0xe0f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 3 icon /// /// https://fontawesome.com/icons/circle-3?style=light /// Circled Digit Three, Dingbat Circled Sans-Serif Digit Three, Dingbat Negative Circled Digit Three, Dingbat Negative Circled Sans-Serif Digit Three, three - static const IconData lightCircle3 = IconDataLight(0xe0f0); + static const IconData lightCircle3 = IconData(0xe0f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 3 icon /// /// https://fontawesome.com/icons/circle-3?style=thin /// Circled Digit Three, Dingbat Circled Sans-Serif Digit Three, Dingbat Negative Circled Digit Three, Dingbat Negative Circled Sans-Serif Digit Three, three - static const IconData thinCircle3 = IconDataThin(0xe0f0); + static const IconData thinCircle3 = IconData(0xe0f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 4 icon /// /// https://fontawesome.com/icons/circle-4?style=solid /// Circled Digit Four, Dingbat Circled Sans-Serif Digit Four, Dingbat Negative Circled Digit Four, Dingbat Negative Circled Sans-Serif Digit Four, four - static const IconData solidCircle4 = IconDataSolid(0xe0f1); + static const IconData solidCircle4 = IconData(0xe0f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 4 icon /// /// https://fontawesome.com/icons/circle-4?style=regular /// Circled Digit Four, Dingbat Circled Sans-Serif Digit Four, Dingbat Negative Circled Digit Four, Dingbat Negative Circled Sans-Serif Digit Four, four - static const IconData circle4 = IconDataRegular(0xe0f1); + static const IconData circle4 = IconData(0xe0f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 4 icon /// /// https://fontawesome.com/icons/circle-4?style=light /// Circled Digit Four, Dingbat Circled Sans-Serif Digit Four, Dingbat Negative Circled Digit Four, Dingbat Negative Circled Sans-Serif Digit Four, four - static const IconData lightCircle4 = IconDataLight(0xe0f1); + static const IconData lightCircle4 = IconData(0xe0f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 4 icon /// /// https://fontawesome.com/icons/circle-4?style=thin /// Circled Digit Four, Dingbat Circled Sans-Serif Digit Four, Dingbat Negative Circled Digit Four, Dingbat Negative Circled Sans-Serif Digit Four, four - static const IconData thinCircle4 = IconDataThin(0xe0f1); + static const IconData thinCircle4 = IconData(0xe0f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 5 icon /// /// https://fontawesome.com/icons/circle-5?style=solid /// Circled Digit Five, Dingbat Circled Sans-Serif Digit Five, Dingbat Negative Circled Digit Five, Dingbat Negative Circled Sans-Serif Digit Five, five - static const IconData solidCircle5 = IconDataSolid(0xe0f2); + static const IconData solidCircle5 = IconData(0xe0f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 5 icon /// /// https://fontawesome.com/icons/circle-5?style=regular /// Circled Digit Five, Dingbat Circled Sans-Serif Digit Five, Dingbat Negative Circled Digit Five, Dingbat Negative Circled Sans-Serif Digit Five, five - static const IconData circle5 = IconDataRegular(0xe0f2); + static const IconData circle5 = IconData(0xe0f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 5 icon /// /// https://fontawesome.com/icons/circle-5?style=light /// Circled Digit Five, Dingbat Circled Sans-Serif Digit Five, Dingbat Negative Circled Digit Five, Dingbat Negative Circled Sans-Serif Digit Five, five - static const IconData lightCircle5 = IconDataLight(0xe0f2); + static const IconData lightCircle5 = IconData(0xe0f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 5 icon /// /// https://fontawesome.com/icons/circle-5?style=thin /// Circled Digit Five, Dingbat Circled Sans-Serif Digit Five, Dingbat Negative Circled Digit Five, Dingbat Negative Circled Sans-Serif Digit Five, five - static const IconData thinCircle5 = IconDataThin(0xe0f2); + static const IconData thinCircle5 = IconData(0xe0f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 6 icon /// /// https://fontawesome.com/icons/circle-6?style=solid /// Circled Digit Six, Dingbat Circled Sans-Serif Digit Six, Dingbat Negative Circled Digit Six, Dingbat Negative Circled Sans-Serif Digit Six, six - static const IconData solidCircle6 = IconDataSolid(0xe0f3); + static const IconData solidCircle6 = IconData(0xe0f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 6 icon /// /// https://fontawesome.com/icons/circle-6?style=regular /// Circled Digit Six, Dingbat Circled Sans-Serif Digit Six, Dingbat Negative Circled Digit Six, Dingbat Negative Circled Sans-Serif Digit Six, six - static const IconData circle6 = IconDataRegular(0xe0f3); + static const IconData circle6 = IconData(0xe0f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 6 icon /// /// https://fontawesome.com/icons/circle-6?style=light /// Circled Digit Six, Dingbat Circled Sans-Serif Digit Six, Dingbat Negative Circled Digit Six, Dingbat Negative Circled Sans-Serif Digit Six, six - static const IconData lightCircle6 = IconDataLight(0xe0f3); + static const IconData lightCircle6 = IconData(0xe0f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 6 icon /// /// https://fontawesome.com/icons/circle-6?style=thin /// Circled Digit Six, Dingbat Circled Sans-Serif Digit Six, Dingbat Negative Circled Digit Six, Dingbat Negative Circled Sans-Serif Digit Six, six - static const IconData thinCircle6 = IconDataThin(0xe0f3); + static const IconData thinCircle6 = IconData(0xe0f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 7 icon /// /// https://fontawesome.com/icons/circle-7?style=solid /// Circled Digit Seven, Dingbat Circled Sans-Serif Digit Seven, Dingbat Negative Circled Digit Seven, Dingbat Negative Circled Sans-Serif Digit Seven, seven - static const IconData solidCircle7 = IconDataSolid(0xe0f4); + static const IconData solidCircle7 = IconData(0xe0f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 7 icon /// /// https://fontawesome.com/icons/circle-7?style=regular /// Circled Digit Seven, Dingbat Circled Sans-Serif Digit Seven, Dingbat Negative Circled Digit Seven, Dingbat Negative Circled Sans-Serif Digit Seven, seven - static const IconData circle7 = IconDataRegular(0xe0f4); + static const IconData circle7 = IconData(0xe0f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 7 icon /// /// https://fontawesome.com/icons/circle-7?style=light /// Circled Digit Seven, Dingbat Circled Sans-Serif Digit Seven, Dingbat Negative Circled Digit Seven, Dingbat Negative Circled Sans-Serif Digit Seven, seven - static const IconData lightCircle7 = IconDataLight(0xe0f4); + static const IconData lightCircle7 = IconData(0xe0f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 7 icon /// /// https://fontawesome.com/icons/circle-7?style=thin /// Circled Digit Seven, Dingbat Circled Sans-Serif Digit Seven, Dingbat Negative Circled Digit Seven, Dingbat Negative Circled Sans-Serif Digit Seven, seven - static const IconData thinCircle7 = IconDataThin(0xe0f4); + static const IconData thinCircle7 = IconData(0xe0f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 8 icon /// /// https://fontawesome.com/icons/circle-8?style=solid /// Circled Digit Eight, Dingbat Circled Sans-Serif Digit Eight, Dingbat Negative Circled Digit Eight, Dingbat Negative Circled Sans-Serif Digit Eight, eight - static const IconData solidCircle8 = IconDataSolid(0xe0f5); + static const IconData solidCircle8 = IconData(0xe0f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 8 icon /// /// https://fontawesome.com/icons/circle-8?style=regular /// Circled Digit Eight, Dingbat Circled Sans-Serif Digit Eight, Dingbat Negative Circled Digit Eight, Dingbat Negative Circled Sans-Serif Digit Eight, eight - static const IconData circle8 = IconDataRegular(0xe0f5); + static const IconData circle8 = IconData(0xe0f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 8 icon /// /// https://fontawesome.com/icons/circle-8?style=light /// Circled Digit Eight, Dingbat Circled Sans-Serif Digit Eight, Dingbat Negative Circled Digit Eight, Dingbat Negative Circled Sans-Serif Digit Eight, eight - static const IconData lightCircle8 = IconDataLight(0xe0f5); + static const IconData lightCircle8 = IconData(0xe0f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 8 icon /// /// https://fontawesome.com/icons/circle-8?style=thin /// Circled Digit Eight, Dingbat Circled Sans-Serif Digit Eight, Dingbat Negative Circled Digit Eight, Dingbat Negative Circled Sans-Serif Digit Eight, eight - static const IconData thinCircle8 = IconDataThin(0xe0f5); + static const IconData thinCircle8 = IconData(0xe0f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle 9 icon /// /// https://fontawesome.com/icons/circle-9?style=solid /// Circled Digit Nine, Dingbat Circled Sans-Serif Digit Nine, Dingbat Negative Circled Digit Nine, Dingbat Negative Circled Sans-Serif Digit Nine, nine - static const IconData solidCircle9 = IconDataSolid(0xe0f6); + static const IconData solidCircle9 = IconData(0xe0f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle 9 icon /// /// https://fontawesome.com/icons/circle-9?style=regular /// Circled Digit Nine, Dingbat Circled Sans-Serif Digit Nine, Dingbat Negative Circled Digit Nine, Dingbat Negative Circled Sans-Serif Digit Nine, nine - static const IconData circle9 = IconDataRegular(0xe0f6); + static const IconData circle9 = IconData(0xe0f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle 9 icon /// /// https://fontawesome.com/icons/circle-9?style=light /// Circled Digit Nine, Dingbat Circled Sans-Serif Digit Nine, Dingbat Negative Circled Digit Nine, Dingbat Negative Circled Sans-Serif Digit Nine, nine - static const IconData lightCircle9 = IconDataLight(0xe0f6); + static const IconData lightCircle9 = IconData(0xe0f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle 9 icon /// /// https://fontawesome.com/icons/circle-9?style=thin /// Circled Digit Nine, Dingbat Circled Sans-Serif Digit Nine, Dingbat Negative Circled Digit Nine, Dingbat Negative Circled Sans-Serif Digit Nine, nine - static const IconData thinCircle9 = IconDataThin(0xe0f6); + static const IconData thinCircle9 = IconData(0xe0f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle A icon /// /// https://fontawesome.com/icons/circle-a?style=solid /// Circled Latin Capital Letter A, letter - static const IconData solidCircleA = IconDataSolid(0xe0f7); + static const IconData solidCircleA = IconData(0xe0f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle A icon /// /// https://fontawesome.com/icons/circle-a?style=regular /// Circled Latin Capital Letter A, letter - static const IconData circleA = IconDataRegular(0xe0f7); + static const IconData circleA = IconData(0xe0f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle A icon /// /// https://fontawesome.com/icons/circle-a?style=light /// Circled Latin Capital Letter A, letter - static const IconData lightCircleA = IconDataLight(0xe0f7); + static const IconData lightCircleA = IconData(0xe0f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle A icon /// /// https://fontawesome.com/icons/circle-a?style=thin /// Circled Latin Capital Letter A, letter - static const IconData thinCircleA = IconDataThin(0xe0f7); + static const IconData thinCircleA = IconData(0xe0f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Ampersand icon /// /// https://fontawesome.com/icons/circle-ampersand?style=solid /// and - static const IconData solidCircleAmpersand = IconDataSolid(0xe0f8); + static const IconData solidCircleAmpersand = IconData(0xe0f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Ampersand icon /// /// https://fontawesome.com/icons/circle-ampersand?style=regular /// and - static const IconData circleAmpersand = IconDataRegular(0xe0f8); + static const IconData circleAmpersand = IconData(0xe0f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Ampersand icon /// /// https://fontawesome.com/icons/circle-ampersand?style=light /// and - static const IconData lightCircleAmpersand = IconDataLight(0xe0f8); + static const IconData lightCircleAmpersand = IconData(0xe0f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Ampersand icon /// /// https://fontawesome.com/icons/circle-ampersand?style=thin /// and - static const IconData thinCircleAmpersand = IconDataThin(0xe0f8); + static const IconData thinCircleAmpersand = IconData(0xe0f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Arrow Down icon /// /// https://fontawesome.com/icons/circle-arrow-down?style=solid /// download - static const IconData solidCircleArrowDown = IconDataSolid(0xf0ab); + static const IconData solidCircleArrowDown = IconData(0xf0ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-down for icon [solidCircleArrowDown] @Deprecated('Use "solidCircleArrowDown" instead.') @@ -19780,7 +19780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-down?style=regular /// download - static const IconData circleArrowDown = IconDataRegular(0xf0ab); + static const IconData circleArrowDown = IconData(0xf0ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-down for icon [circleArrowDown] @Deprecated('Use "circleArrowDown" instead.') @@ -19790,7 +19790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-down?style=light /// download - static const IconData lightCircleArrowDown = IconDataLight(0xf0ab); + static const IconData lightCircleArrowDown = IconData(0xf0ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-down for icon [lightCircleArrowDown] @Deprecated('Use "lightCircleArrowDown" instead.') @@ -19800,7 +19800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-down?style=thin /// download - static const IconData thinCircleArrowDown = IconDataThin(0xf0ab); + static const IconData thinCircleArrowDown = IconData(0xf0ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-down for icon [thinCircleArrowDown] @Deprecated('Use "thinCircleArrowDown" instead.') @@ -19810,55 +19810,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-down-left?style=solid /// diagonal, southwest - static const IconData solidCircleArrowDownLeft = IconDataSolid(0xe0f9); + static const IconData solidCircleArrowDownLeft = IconData(0xe0f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Arrow Down Left icon /// /// https://fontawesome.com/icons/circle-arrow-down-left?style=regular /// diagonal, southwest - static const IconData circleArrowDownLeft = IconDataRegular(0xe0f9); + static const IconData circleArrowDownLeft = IconData(0xe0f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Arrow Down Left icon /// /// https://fontawesome.com/icons/circle-arrow-down-left?style=light /// diagonal, southwest - static const IconData lightCircleArrowDownLeft = IconDataLight(0xe0f9); + static const IconData lightCircleArrowDownLeft = IconData(0xe0f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Arrow Down Left icon /// /// https://fontawesome.com/icons/circle-arrow-down-left?style=thin /// diagonal, southwest - static const IconData thinCircleArrowDownLeft = IconDataThin(0xe0f9); + static const IconData thinCircleArrowDownLeft = IconData(0xe0f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Arrow Down Right icon /// /// https://fontawesome.com/icons/circle-arrow-down-right?style=solid /// diagonal, southeast - static const IconData solidCircleArrowDownRight = IconDataSolid(0xe0fa); + static const IconData solidCircleArrowDownRight = IconData(0xe0fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Arrow Down Right icon /// /// https://fontawesome.com/icons/circle-arrow-down-right?style=regular /// diagonal, southeast - static const IconData circleArrowDownRight = IconDataRegular(0xe0fa); + static const IconData circleArrowDownRight = IconData(0xe0fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Arrow Down Right icon /// /// https://fontawesome.com/icons/circle-arrow-down-right?style=light /// diagonal, southeast - static const IconData lightCircleArrowDownRight = IconDataLight(0xe0fa); + static const IconData lightCircleArrowDownRight = IconData(0xe0fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Arrow Down Right icon /// /// https://fontawesome.com/icons/circle-arrow-down-right?style=thin /// diagonal, southeast - static const IconData thinCircleArrowDownRight = IconDataThin(0xe0fa); + static const IconData thinCircleArrowDownRight = IconData(0xe0fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Arrow Left icon /// /// https://fontawesome.com/icons/circle-arrow-left?style=solid /// back, previous - static const IconData solidCircleArrowLeft = IconDataSolid(0xf0a8); + static const IconData solidCircleArrowLeft = IconData(0xf0a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-left for icon [solidCircleArrowLeft] @Deprecated('Use "solidCircleArrowLeft" instead.') @@ -19868,7 +19868,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-left?style=regular /// back, previous - static const IconData circleArrowLeft = IconDataRegular(0xf0a8); + static const IconData circleArrowLeft = IconData(0xf0a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-left for icon [circleArrowLeft] @Deprecated('Use "circleArrowLeft" instead.') @@ -19878,7 +19878,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-left?style=light /// back, previous - static const IconData lightCircleArrowLeft = IconDataLight(0xf0a8); + static const IconData lightCircleArrowLeft = IconData(0xf0a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-left for icon [lightCircleArrowLeft] @Deprecated('Use "lightCircleArrowLeft" instead.') @@ -19888,7 +19888,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-left?style=thin /// back, previous - static const IconData thinCircleArrowLeft = IconDataThin(0xf0a8); + static const IconData thinCircleArrowLeft = IconData(0xf0a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-left for icon [thinCircleArrowLeft] @Deprecated('Use "thinCircleArrowLeft" instead.') @@ -19898,7 +19898,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-right?style=solid /// forward, next - static const IconData solidCircleArrowRight = IconDataSolid(0xf0a9); + static const IconData solidCircleArrowRight = IconData(0xf0a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-right for icon [solidCircleArrowRight] @Deprecated('Use "solidCircleArrowRight" instead.') @@ -19908,7 +19908,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-right?style=regular /// forward, next - static const IconData circleArrowRight = IconDataRegular(0xf0a9); + static const IconData circleArrowRight = IconData(0xf0a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-right for icon [circleArrowRight] @Deprecated('Use "circleArrowRight" instead.') @@ -19918,7 +19918,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-right?style=light /// forward, next - static const IconData lightCircleArrowRight = IconDataLight(0xf0a9); + static const IconData lightCircleArrowRight = IconData(0xf0a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-right for icon [lightCircleArrowRight] @Deprecated('Use "lightCircleArrowRight" instead.') @@ -19928,7 +19928,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-right?style=thin /// forward, next - static const IconData thinCircleArrowRight = IconDataThin(0xf0a9); + static const IconData thinCircleArrowRight = IconData(0xf0a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-right for icon [thinCircleArrowRight] @Deprecated('Use "thinCircleArrowRight" instead.') @@ -19938,7 +19938,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-up?style=solid /// upgrade, upload - static const IconData solidCircleArrowUp = IconDataSolid(0xf0aa); + static const IconData solidCircleArrowUp = IconData(0xf0aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-up for icon [solidCircleArrowUp] @Deprecated('Use "solidCircleArrowUp" instead.') @@ -19948,7 +19948,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-up?style=regular /// upgrade, upload - static const IconData circleArrowUp = IconDataRegular(0xf0aa); + static const IconData circleArrowUp = IconData(0xf0aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-up for icon [circleArrowUp] @Deprecated('Use "circleArrowUp" instead.') @@ -19958,7 +19958,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-up?style=light /// upgrade, upload - static const IconData lightCircleArrowUp = IconDataLight(0xf0aa); + static const IconData lightCircleArrowUp = IconData(0xf0aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-up for icon [lightCircleArrowUp] @Deprecated('Use "lightCircleArrowUp" instead.') @@ -19968,7 +19968,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-up?style=thin /// upgrade, upload - static const IconData thinCircleArrowUp = IconDataThin(0xf0aa); + static const IconData thinCircleArrowUp = IconData(0xf0aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-circle-up for icon [thinCircleArrowUp] @Deprecated('Use "thinCircleArrowUp" instead.') @@ -19978,103 +19978,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-arrow-up-left?style=solid /// diagonal, northwest - static const IconData solidCircleArrowUpLeft = IconDataSolid(0xe0fb); + static const IconData solidCircleArrowUpLeft = IconData(0xe0fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Arrow Up Left icon /// /// https://fontawesome.com/icons/circle-arrow-up-left?style=regular /// diagonal, northwest - static const IconData circleArrowUpLeft = IconDataRegular(0xe0fb); + static const IconData circleArrowUpLeft = IconData(0xe0fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Arrow Up Left icon /// /// https://fontawesome.com/icons/circle-arrow-up-left?style=light /// diagonal, northwest - static const IconData lightCircleArrowUpLeft = IconDataLight(0xe0fb); + static const IconData lightCircleArrowUpLeft = IconData(0xe0fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Arrow Up Left icon /// /// https://fontawesome.com/icons/circle-arrow-up-left?style=thin /// diagonal, northwest - static const IconData thinCircleArrowUpLeft = IconDataThin(0xe0fb); + static const IconData thinCircleArrowUpLeft = IconData(0xe0fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Arrow Up Right icon /// /// https://fontawesome.com/icons/circle-arrow-up-right?style=solid /// diagonal, northeast - static const IconData solidCircleArrowUpRight = IconDataSolid(0xe0fc); + static const IconData solidCircleArrowUpRight = IconData(0xe0fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Arrow Up Right icon /// /// https://fontawesome.com/icons/circle-arrow-up-right?style=regular /// diagonal, northeast - static const IconData circleArrowUpRight = IconDataRegular(0xe0fc); + static const IconData circleArrowUpRight = IconData(0xe0fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Arrow Up Right icon /// /// https://fontawesome.com/icons/circle-arrow-up-right?style=light /// diagonal, northeast - static const IconData lightCircleArrowUpRight = IconDataLight(0xe0fc); + static const IconData lightCircleArrowUpRight = IconData(0xe0fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Arrow Up Right icon /// /// https://fontawesome.com/icons/circle-arrow-up-right?style=thin /// diagonal, northeast - static const IconData thinCircleArrowUpRight = IconDataThin(0xe0fc); + static const IconData thinCircleArrowUpRight = IconData(0xe0fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle B icon /// /// https://fontawesome.com/icons/circle-b?style=solid /// Circled Latin Capital Letter B, letter - static const IconData solidCircleB = IconDataSolid(0xe0fd); + static const IconData solidCircleB = IconData(0xe0fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle B icon /// /// https://fontawesome.com/icons/circle-b?style=regular /// Circled Latin Capital Letter B, letter - static const IconData circleB = IconDataRegular(0xe0fd); + static const IconData circleB = IconData(0xe0fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle B icon /// /// https://fontawesome.com/icons/circle-b?style=light /// Circled Latin Capital Letter B, letter - static const IconData lightCircleB = IconDataLight(0xe0fd); + static const IconData lightCircleB = IconData(0xe0fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle B icon /// /// https://fontawesome.com/icons/circle-b?style=thin /// Circled Latin Capital Letter B, letter - static const IconData thinCircleB = IconDataThin(0xe0fd); + static const IconData thinCircleB = IconData(0xe0fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Bolt icon /// /// https://fontawesome.com/icons/circle-bolt?style=solid /// energy, flash, lightning - static const IconData solidCircleBolt = IconDataSolid(0xe0fe); + static const IconData solidCircleBolt = IconData(0xe0fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Bolt icon /// /// https://fontawesome.com/icons/circle-bolt?style=regular /// energy, flash, lightning - static const IconData circleBolt = IconDataRegular(0xe0fe); + static const IconData circleBolt = IconData(0xe0fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Bolt icon /// /// https://fontawesome.com/icons/circle-bolt?style=light /// energy, flash, lightning - static const IconData lightCircleBolt = IconDataLight(0xe0fe); + static const IconData lightCircleBolt = IconData(0xe0fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Bolt icon /// /// https://fontawesome.com/icons/circle-bolt?style=thin /// energy, flash, lightning - static const IconData thinCircleBolt = IconDataThin(0xe0fe); + static const IconData thinCircleBolt = IconData(0xe0fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Book Open icon /// /// https://fontawesome.com/icons/circle-book-open?style=solid /// library, research - static const IconData solidCircleBookOpen = IconDataSolid(0xe0ff); + static const IconData solidCircleBookOpen = IconData(0xe0ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias book-circle for icon [solidCircleBookOpen] @Deprecated('Use "solidCircleBookOpen" instead.') @@ -20084,7 +20084,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-book-open?style=regular /// library, research - static const IconData circleBookOpen = IconDataRegular(0xe0ff); + static const IconData circleBookOpen = IconData(0xe0ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias book-circle for icon [circleBookOpen] @Deprecated('Use "circleBookOpen" instead.') @@ -20094,7 +20094,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-book-open?style=light /// library, research - static const IconData lightCircleBookOpen = IconDataLight(0xe0ff); + static const IconData lightCircleBookOpen = IconData(0xe0ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias book-circle for icon [lightCircleBookOpen] @Deprecated('Use "lightCircleBookOpen" instead.') @@ -20104,7 +20104,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-book-open?style=thin /// library, research - static const IconData thinCircleBookOpen = IconDataThin(0xe0ff); + static const IconData thinCircleBookOpen = IconData(0xe0ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias book-circle for icon [thinCircleBookOpen] @Deprecated('Use "thinCircleBookOpen" instead.') @@ -20114,7 +20114,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-bookmark?style=solid /// library, research - static const IconData solidCircleBookmark = IconDataSolid(0xe100); + static const IconData solidCircleBookmark = IconData(0xe100, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bookmark-circle for icon [solidCircleBookmark] @Deprecated('Use "solidCircleBookmark" instead.') @@ -20124,7 +20124,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-bookmark?style=regular /// library, research - static const IconData circleBookmark = IconDataRegular(0xe100); + static const IconData circleBookmark = IconData(0xe100, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bookmark-circle for icon [circleBookmark] @Deprecated('Use "circleBookmark" instead.') @@ -20134,7 +20134,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-bookmark?style=light /// library, research - static const IconData lightCircleBookmark = IconDataLight(0xe100); + static const IconData lightCircleBookmark = IconData(0xe100, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bookmark-circle for icon [lightCircleBookmark] @Deprecated('Use "lightCircleBookmark" instead.') @@ -20144,7 +20144,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-bookmark?style=thin /// library, research - static const IconData thinCircleBookmark = IconDataThin(0xe100); + static const IconData thinCircleBookmark = IconData(0xe100, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bookmark-circle for icon [thinCircleBookmark] @Deprecated('Use "thinCircleBookmark" instead.') @@ -20154,31 +20154,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-c?style=solid /// Circled Latin Capital Letter C, letter - static const IconData solidCircleC = IconDataSolid(0xe101); + static const IconData solidCircleC = IconData(0xe101, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle C icon /// /// https://fontawesome.com/icons/circle-c?style=regular /// Circled Latin Capital Letter C, letter - static const IconData circleC = IconDataRegular(0xe101); + static const IconData circleC = IconData(0xe101, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle C icon /// /// https://fontawesome.com/icons/circle-c?style=light /// Circled Latin Capital Letter C, letter - static const IconData lightCircleC = IconDataLight(0xe101); + static const IconData lightCircleC = IconData(0xe101, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle C icon /// /// https://fontawesome.com/icons/circle-c?style=thin /// Circled Latin Capital Letter C, letter - static const IconData thinCircleC = IconDataThin(0xe101); + static const IconData thinCircleC = IconData(0xe101, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Calendar icon /// /// https://fontawesome.com/icons/circle-calendar?style=solid /// date, day, month, reminder, year - static const IconData solidCircleCalendar = IconDataSolid(0xe102); + static const IconData solidCircleCalendar = IconData(0xe102, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias calendar-circle for icon [solidCircleCalendar] @Deprecated('Use "solidCircleCalendar" instead.') @@ -20188,7 +20188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-calendar?style=regular /// date, day, month, reminder, year - static const IconData circleCalendar = IconDataRegular(0xe102); + static const IconData circleCalendar = IconData(0xe102, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias calendar-circle for icon [circleCalendar] @Deprecated('Use "circleCalendar" instead.') @@ -20198,7 +20198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-calendar?style=light /// date, day, month, reminder, year - static const IconData lightCircleCalendar = IconDataLight(0xe102); + static const IconData lightCircleCalendar = IconData(0xe102, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias calendar-circle for icon [lightCircleCalendar] @Deprecated('Use "lightCircleCalendar" instead.') @@ -20208,7 +20208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-calendar?style=thin /// date, day, month, reminder, year - static const IconData thinCircleCalendar = IconDataThin(0xe102); + static const IconData thinCircleCalendar = IconData(0xe102, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias calendar-circle for icon [thinCircleCalendar] @Deprecated('Use "thinCircleCalendar" instead.') @@ -20218,7 +20218,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-camera?style=solid /// img, photos - static const IconData solidCircleCamera = IconDataSolid(0xe103); + static const IconData solidCircleCamera = IconData(0xe103, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias camera-circle for icon [solidCircleCamera] @Deprecated('Use "solidCircleCamera" instead.') @@ -20228,7 +20228,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-camera?style=regular /// img, photos - static const IconData circleCamera = IconDataRegular(0xe103); + static const IconData circleCamera = IconData(0xe103, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias camera-circle for icon [circleCamera] @Deprecated('Use "circleCamera" instead.') @@ -20238,7 +20238,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-camera?style=light /// img, photos - static const IconData lightCircleCamera = IconDataLight(0xe103); + static const IconData lightCircleCamera = IconData(0xe103, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias camera-circle for icon [lightCircleCamera] @Deprecated('Use "lightCircleCamera" instead.') @@ -20248,7 +20248,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-camera?style=thin /// img, photos - static const IconData thinCircleCamera = IconDataThin(0xe103); + static const IconData thinCircleCamera = IconData(0xe103, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias camera-circle for icon [thinCircleCamera] @Deprecated('Use "thinCircleCamera" instead.') @@ -20258,7 +20258,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-down?style=solid /// arrow, dropdown, expand, insert, menu, more, triangle - static const IconData solidCircleCaretDown = IconDataSolid(0xf32d); + static const IconData solidCircleCaretDown = IconData(0xf32d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-down for icon [solidCircleCaretDown] @Deprecated('Use "solidCircleCaretDown" instead.') @@ -20268,7 +20268,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-down?style=regular /// arrow, dropdown, expand, insert, menu, more, triangle - static const IconData circleCaretDown = IconDataRegular(0xf32d); + static const IconData circleCaretDown = IconData(0xf32d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-down for icon [circleCaretDown] @Deprecated('Use "circleCaretDown" instead.') @@ -20278,7 +20278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-down?style=light /// arrow, dropdown, expand, insert, menu, more, triangle - static const IconData lightCircleCaretDown = IconDataLight(0xf32d); + static const IconData lightCircleCaretDown = IconData(0xf32d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-down for icon [lightCircleCaretDown] @Deprecated('Use "lightCircleCaretDown" instead.') @@ -20288,7 +20288,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-down?style=thin /// arrow, dropdown, expand, insert, menu, more, triangle - static const IconData thinCircleCaretDown = IconDataThin(0xf32d); + static const IconData thinCircleCaretDown = IconData(0xf32d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-down for icon [thinCircleCaretDown] @Deprecated('Use "thinCircleCaretDown" instead.') @@ -20298,7 +20298,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-left?style=solid /// arrow, back, previous, triangle - static const IconData solidCircleCaretLeft = IconDataSolid(0xf32e); + static const IconData solidCircleCaretLeft = IconData(0xf32e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-left for icon [solidCircleCaretLeft] @Deprecated('Use "solidCircleCaretLeft" instead.') @@ -20308,7 +20308,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-left?style=regular /// arrow, back, previous, triangle - static const IconData circleCaretLeft = IconDataRegular(0xf32e); + static const IconData circleCaretLeft = IconData(0xf32e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-left for icon [circleCaretLeft] @Deprecated('Use "circleCaretLeft" instead.') @@ -20318,7 +20318,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-left?style=light /// arrow, back, previous, triangle - static const IconData lightCircleCaretLeft = IconDataLight(0xf32e); + static const IconData lightCircleCaretLeft = IconData(0xf32e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-left for icon [lightCircleCaretLeft] @Deprecated('Use "lightCircleCaretLeft" instead.') @@ -20328,7 +20328,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-left?style=thin /// arrow, back, previous, triangle - static const IconData thinCircleCaretLeft = IconDataThin(0xf32e); + static const IconData thinCircleCaretLeft = IconData(0xf32e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-left for icon [thinCircleCaretLeft] @Deprecated('Use "thinCircleCaretLeft" instead.') @@ -20338,7 +20338,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-right?style=solid /// arrow, forward, next, triangle - static const IconData solidCircleCaretRight = IconDataSolid(0xf330); + static const IconData solidCircleCaretRight = IconData(0xf330, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-right for icon [solidCircleCaretRight] @Deprecated('Use "solidCircleCaretRight" instead.') @@ -20348,7 +20348,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-right?style=regular /// arrow, forward, next, triangle - static const IconData circleCaretRight = IconDataRegular(0xf330); + static const IconData circleCaretRight = IconData(0xf330, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-right for icon [circleCaretRight] @Deprecated('Use "circleCaretRight" instead.') @@ -20358,7 +20358,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-right?style=light /// arrow, forward, next, triangle - static const IconData lightCircleCaretRight = IconDataLight(0xf330); + static const IconData lightCircleCaretRight = IconData(0xf330, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-right for icon [lightCircleCaretRight] @Deprecated('Use "lightCircleCaretRight" instead.') @@ -20368,7 +20368,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-right?style=thin /// arrow, forward, next, triangle - static const IconData thinCircleCaretRight = IconDataThin(0xf330); + static const IconData thinCircleCaretRight = IconData(0xf330, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-right for icon [thinCircleCaretRight] @Deprecated('Use "thinCircleCaretRight" instead.') @@ -20378,7 +20378,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-up?style=solid /// arrow, collapse, triangle, upgrade, upload - static const IconData solidCircleCaretUp = IconDataSolid(0xf331); + static const IconData solidCircleCaretUp = IconData(0xf331, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-up for icon [solidCircleCaretUp] @Deprecated('Use "solidCircleCaretUp" instead.') @@ -20388,7 +20388,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-up?style=regular /// arrow, collapse, triangle, upgrade, upload - static const IconData circleCaretUp = IconDataRegular(0xf331); + static const IconData circleCaretUp = IconData(0xf331, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-up for icon [circleCaretUp] @Deprecated('Use "circleCaretUp" instead.') @@ -20398,7 +20398,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-up?style=light /// arrow, collapse, triangle, upgrade, upload - static const IconData lightCircleCaretUp = IconDataLight(0xf331); + static const IconData lightCircleCaretUp = IconData(0xf331, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-up for icon [lightCircleCaretUp] @Deprecated('Use "lightCircleCaretUp" instead.') @@ -20408,7 +20408,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-caret-up?style=thin /// arrow, collapse, triangle, upgrade, upload - static const IconData thinCircleCaretUp = IconDataThin(0xf331); + static const IconData thinCircleCaretUp = IconData(0xf331, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-circle-up for icon [thinCircleCaretUp] @Deprecated('Use "thinCircleCaretUp" instead.') @@ -20418,7 +20418,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-check?style=solid /// accept, affected, agree, clear, confirm, correct, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData solidCircleCheck = IconDataSolid(0xf058); + static const IconData solidCircleCheck = IconData(0xf058, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias check-circle for icon [solidCircleCheck] @Deprecated('Use "solidCircleCheck" instead.') @@ -20428,7 +20428,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-check?style=regular /// accept, affected, agree, clear, confirm, correct, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData circleCheck = IconDataRegular(0xf058); + static const IconData circleCheck = IconData(0xf058, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias check-circle for icon [circleCheck] @Deprecated('Use "circleCheck" instead.') @@ -20438,7 +20438,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-check?style=light /// accept, affected, agree, clear, confirm, correct, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData lightCircleCheck = IconDataLight(0xf058); + static const IconData lightCircleCheck = IconData(0xf058, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias check-circle for icon [lightCircleCheck] @Deprecated('Use "lightCircleCheck" instead.') @@ -20448,7 +20448,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-check?style=thin /// accept, affected, agree, clear, confirm, correct, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData thinCircleCheck = IconDataThin(0xf058); + static const IconData thinCircleCheck = IconData(0xf058, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias check-circle for icon [thinCircleCheck] @Deprecated('Use "thinCircleCheck" instead.') @@ -20458,7 +20458,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-down?style=solid /// arrow, download, dropdown, menu, more - static const IconData solidCircleChevronDown = IconDataSolid(0xf13a); + static const IconData solidCircleChevronDown = IconData(0xf13a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-down for icon [solidCircleChevronDown] @Deprecated('Use "solidCircleChevronDown" instead.') @@ -20468,7 +20468,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-down?style=regular /// arrow, download, dropdown, menu, more - static const IconData circleChevronDown = IconDataRegular(0xf13a); + static const IconData circleChevronDown = IconData(0xf13a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-down for icon [circleChevronDown] @Deprecated('Use "circleChevronDown" instead.') @@ -20478,7 +20478,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-down?style=light /// arrow, download, dropdown, menu, more - static const IconData lightCircleChevronDown = IconDataLight(0xf13a); + static const IconData lightCircleChevronDown = IconData(0xf13a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-down for icon [lightCircleChevronDown] @Deprecated('Use "lightCircleChevronDown" instead.') @@ -20488,7 +20488,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-down?style=thin /// arrow, download, dropdown, menu, more - static const IconData thinCircleChevronDown = IconDataThin(0xf13a); + static const IconData thinCircleChevronDown = IconData(0xf13a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-down for icon [thinCircleChevronDown] @Deprecated('Use "thinCircleChevronDown" instead.') @@ -20498,7 +20498,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-left?style=solid /// arrow, back, previous - static const IconData solidCircleChevronLeft = IconDataSolid(0xf137); + static const IconData solidCircleChevronLeft = IconData(0xf137, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-left for icon [solidCircleChevronLeft] @Deprecated('Use "solidCircleChevronLeft" instead.') @@ -20508,7 +20508,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-left?style=regular /// arrow, back, previous - static const IconData circleChevronLeft = IconDataRegular(0xf137); + static const IconData circleChevronLeft = IconData(0xf137, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-left for icon [circleChevronLeft] @Deprecated('Use "circleChevronLeft" instead.') @@ -20518,7 +20518,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-left?style=light /// arrow, back, previous - static const IconData lightCircleChevronLeft = IconDataLight(0xf137); + static const IconData lightCircleChevronLeft = IconData(0xf137, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-left for icon [lightCircleChevronLeft] @Deprecated('Use "lightCircleChevronLeft" instead.') @@ -20528,7 +20528,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-left?style=thin /// arrow, back, previous - static const IconData thinCircleChevronLeft = IconDataThin(0xf137); + static const IconData thinCircleChevronLeft = IconData(0xf137, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-left for icon [thinCircleChevronLeft] @Deprecated('Use "thinCircleChevronLeft" instead.') @@ -20538,7 +20538,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-right?style=solid /// arrow, forward, next - static const IconData solidCircleChevronRight = IconDataSolid(0xf138); + static const IconData solidCircleChevronRight = IconData(0xf138, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-right for icon [solidCircleChevronRight] @Deprecated('Use "solidCircleChevronRight" instead.') @@ -20548,7 +20548,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-right?style=regular /// arrow, forward, next - static const IconData circleChevronRight = IconDataRegular(0xf138); + static const IconData circleChevronRight = IconData(0xf138, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-right for icon [circleChevronRight] @Deprecated('Use "circleChevronRight" instead.') @@ -20558,7 +20558,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-right?style=light /// arrow, forward, next - static const IconData lightCircleChevronRight = IconDataLight(0xf138); + static const IconData lightCircleChevronRight = IconData(0xf138, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-right for icon [lightCircleChevronRight] @Deprecated('Use "lightCircleChevronRight" instead.') @@ -20568,7 +20568,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-right?style=thin /// arrow, forward, next - static const IconData thinCircleChevronRight = IconDataThin(0xf138); + static const IconData thinCircleChevronRight = IconData(0xf138, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-right for icon [thinCircleChevronRight] @Deprecated('Use "thinCircleChevronRight" instead.') @@ -20578,7 +20578,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-up?style=solid /// arrow, collapse, upgrade, upload - static const IconData solidCircleChevronUp = IconDataSolid(0xf139); + static const IconData solidCircleChevronUp = IconData(0xf139, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-up for icon [solidCircleChevronUp] @Deprecated('Use "solidCircleChevronUp" instead.') @@ -20588,7 +20588,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-up?style=regular /// arrow, collapse, upgrade, upload - static const IconData circleChevronUp = IconDataRegular(0xf139); + static const IconData circleChevronUp = IconData(0xf139, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-up for icon [circleChevronUp] @Deprecated('Use "circleChevronUp" instead.') @@ -20598,7 +20598,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-up?style=light /// arrow, collapse, upgrade, upload - static const IconData lightCircleChevronUp = IconDataLight(0xf139); + static const IconData lightCircleChevronUp = IconData(0xf139, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-up for icon [lightCircleChevronUp] @Deprecated('Use "lightCircleChevronUp" instead.') @@ -20608,7 +20608,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-chevron-up?style=thin /// arrow, collapse, upgrade, upload - static const IconData thinCircleChevronUp = IconDataThin(0xf139); + static const IconData thinCircleChevronUp = IconData(0xf139, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-circle-up for icon [thinCircleChevronUp] @Deprecated('Use "thinCircleChevronUp" instead.') @@ -20618,79 +20618,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-d?style=solid /// Circled Latin Capital Letter D, letter - static const IconData solidCircleD = IconDataSolid(0xe104); + static const IconData solidCircleD = IconData(0xe104, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle D icon /// /// https://fontawesome.com/icons/circle-d?style=regular /// Circled Latin Capital Letter D, letter - static const IconData circleD = IconDataRegular(0xe104); + static const IconData circleD = IconData(0xe104, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle D icon /// /// https://fontawesome.com/icons/circle-d?style=light /// Circled Latin Capital Letter D, letter - static const IconData lightCircleD = IconDataLight(0xe104); + static const IconData lightCircleD = IconData(0xe104, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle D icon /// /// https://fontawesome.com/icons/circle-d?style=thin /// Circled Latin Capital Letter D, letter - static const IconData thinCircleD = IconDataThin(0xe104); + static const IconData thinCircleD = IconData(0xe104, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Dashed icon /// /// https://fontawesome.com/icons/circle-dashed?style=solid /// add, copy, dashed, dotted, marquee, select, selection - static const IconData solidCircleDashed = IconDataSolid(0xe105); + static const IconData solidCircleDashed = IconData(0xe105, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Dashed icon /// /// https://fontawesome.com/icons/circle-dashed?style=regular /// add, copy, dashed, dotted, marquee, select, selection - static const IconData circleDashed = IconDataRegular(0xe105); + static const IconData circleDashed = IconData(0xe105, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Dashed icon /// /// https://fontawesome.com/icons/circle-dashed?style=light /// add, copy, dashed, dotted, marquee, select, selection - static const IconData lightCircleDashed = IconDataLight(0xe105); + static const IconData lightCircleDashed = IconData(0xe105, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Dashed icon /// /// https://fontawesome.com/icons/circle-dashed?style=thin /// add, copy, dashed, dotted, marquee, select, selection - static const IconData thinCircleDashed = IconDataThin(0xe105); + static const IconData thinCircleDashed = IconData(0xe105, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Divide icon /// /// https://fontawesome.com/icons/circle-divide?style=solid /// algebra, arithmetic, division - static const IconData solidCircleDivide = IconDataSolid(0xe106); + static const IconData solidCircleDivide = IconData(0xe106, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Divide icon /// /// https://fontawesome.com/icons/circle-divide?style=regular /// algebra, arithmetic, division - static const IconData circleDivide = IconDataRegular(0xe106); + static const IconData circleDivide = IconData(0xe106, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Divide icon /// /// https://fontawesome.com/icons/circle-divide?style=light /// algebra, arithmetic, division - static const IconData lightCircleDivide = IconDataLight(0xe106); + static const IconData lightCircleDivide = IconData(0xe106, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Divide icon /// /// https://fontawesome.com/icons/circle-divide?style=thin /// algebra, arithmetic, division - static const IconData thinCircleDivide = IconDataThin(0xe106); + static const IconData thinCircleDivide = IconData(0xe106, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Dollar icon /// /// https://fontawesome.com/icons/circle-dollar?style=solid /// $, currency, dollar-sign, investment, money, premium, price, salary, usd - static const IconData solidCircleDollar = IconDataSolid(0xf2e8); + static const IconData solidCircleDollar = IconData(0xf2e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dollar-circle for icon [solidCircleDollar] @Deprecated('Use "solidCircleDollar" instead.') @@ -20704,7 +20704,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar?style=regular /// $, currency, dollar-sign, investment, money, premium, price, salary, usd - static const IconData circleDollar = IconDataRegular(0xf2e8); + static const IconData circleDollar = IconData(0xf2e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dollar-circle for icon [circleDollar] @Deprecated('Use "circleDollar" instead.') @@ -20718,7 +20718,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar?style=light /// $, currency, dollar-sign, investment, money, premium, price, salary, usd - static const IconData lightCircleDollar = IconDataLight(0xf2e8); + static const IconData lightCircleDollar = IconData(0xf2e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dollar-circle for icon [lightCircleDollar] @Deprecated('Use "lightCircleDollar" instead.') @@ -20732,7 +20732,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar?style=thin /// $, currency, dollar-sign, investment, money, premium, price, salary, usd - static const IconData thinCircleDollar = IconDataThin(0xf2e8); + static const IconData thinCircleDollar = IconData(0xf2e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dollar-circle for icon [thinCircleDollar] @Deprecated('Use "thinCircleDollar" instead.') @@ -20746,7 +20746,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar-to-slot?style=solid /// contribute, generosity, gift, give, premium - static const IconData solidCircleDollarToSlot = IconDataSolid(0xf4b9); + static const IconData solidCircleDollarToSlot = IconData(0xf4b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias donate for icon [solidCircleDollarToSlot] @Deprecated('Use "solidCircleDollarToSlot" instead.') @@ -20756,7 +20756,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar-to-slot?style=regular /// contribute, generosity, gift, give, premium - static const IconData circleDollarToSlot = IconDataRegular(0xf4b9); + static const IconData circleDollarToSlot = IconData(0xf4b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias donate for icon [circleDollarToSlot] @Deprecated('Use "circleDollarToSlot" instead.') @@ -20766,7 +20766,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar-to-slot?style=light /// contribute, generosity, gift, give, premium - static const IconData lightCircleDollarToSlot = IconDataLight(0xf4b9); + static const IconData lightCircleDollarToSlot = IconData(0xf4b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias donate for icon [lightCircleDollarToSlot] @Deprecated('Use "lightCircleDollarToSlot" instead.') @@ -20776,7 +20776,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dollar-to-slot?style=thin /// contribute, generosity, gift, give, premium - static const IconData thinCircleDollarToSlot = IconDataThin(0xf4b9); + static const IconData thinCircleDollarToSlot = IconData(0xf4b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias donate for icon [thinCircleDollarToSlot] @Deprecated('Use "thinCircleDollarToSlot" instead.') @@ -20786,7 +20786,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dot?style=solid /// bullseye, button, geometric, notification, radio, radio button, target - static const IconData solidCircleDot = IconDataSolid(0xf192); + static const IconData solidCircleDot = IconData(0xf192, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dot-circle for icon [solidCircleDot] @Deprecated('Use "solidCircleDot" instead.') @@ -20796,7 +20796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dot?style=regular /// bullseye, button, geometric, notification, radio, radio button, target - static const IconData circleDot = IconDataRegular(0xf192); + static const IconData circleDot = IconData(0xf192, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dot-circle for icon [circleDot] @Deprecated('Use "circleDot" instead.') @@ -20806,7 +20806,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dot?style=light /// bullseye, button, geometric, notification, radio, radio button, target - static const IconData lightCircleDot = IconDataLight(0xf192); + static const IconData lightCircleDot = IconData(0xf192, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dot-circle for icon [lightCircleDot] @Deprecated('Use "lightCircleDot" instead.') @@ -20816,7 +20816,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-dot?style=thin /// bullseye, button, geometric, notification, radio, radio button, target - static const IconData thinCircleDot = IconDataThin(0xf192); + static const IconData thinCircleDot = IconData(0xf192, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dot-circle for icon [thinCircleDot] @Deprecated('Use "thinCircleDot" instead.') @@ -20826,7 +20826,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-down?style=solid /// arrow-circle-o-down, download - static const IconData solidCircleDown = IconDataSolid(0xf358); + static const IconData solidCircleDown = IconData(0xf358, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-down for icon [solidCircleDown] @Deprecated('Use "solidCircleDown" instead.') @@ -20836,7 +20836,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-down?style=regular /// arrow-circle-o-down, download - static const IconData circleDown = IconDataRegular(0xf358); + static const IconData circleDown = IconData(0xf358, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-down for icon [circleDown] @Deprecated('Use "circleDown" instead.') @@ -20846,7 +20846,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-down?style=light /// arrow-circle-o-down, download - static const IconData lightCircleDown = IconDataLight(0xf358); + static const IconData lightCircleDown = IconData(0xf358, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-down for icon [lightCircleDown] @Deprecated('Use "lightCircleDown" instead.') @@ -20856,7 +20856,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-down?style=thin /// arrow-circle-o-down, download - static const IconData thinCircleDown = IconDataThin(0xf358); + static const IconData thinCircleDown = IconData(0xf358, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-down for icon [thinCircleDown] @Deprecated('Use "thinCircleDown" instead.') @@ -20866,127 +20866,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-down-left?style=solid /// diagonal, southwest - static const IconData solidCircleDownLeft = IconDataSolid(0xe107); + static const IconData solidCircleDownLeft = IconData(0xe107, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Down Left icon /// /// https://fontawesome.com/icons/circle-down-left?style=regular /// diagonal, southwest - static const IconData circleDownLeft = IconDataRegular(0xe107); + static const IconData circleDownLeft = IconData(0xe107, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Down Left icon /// /// https://fontawesome.com/icons/circle-down-left?style=light /// diagonal, southwest - static const IconData lightCircleDownLeft = IconDataLight(0xe107); + static const IconData lightCircleDownLeft = IconData(0xe107, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Down Left icon /// /// https://fontawesome.com/icons/circle-down-left?style=thin /// diagonal, southwest - static const IconData thinCircleDownLeft = IconDataThin(0xe107); + static const IconData thinCircleDownLeft = IconData(0xe107, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Down Right icon /// /// https://fontawesome.com/icons/circle-down-right?style=solid /// diagonal, southeast - static const IconData solidCircleDownRight = IconDataSolid(0xe108); + static const IconData solidCircleDownRight = IconData(0xe108, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Down Right icon /// /// https://fontawesome.com/icons/circle-down-right?style=regular /// diagonal, southeast - static const IconData circleDownRight = IconDataRegular(0xe108); + static const IconData circleDownRight = IconData(0xe108, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Down Right icon /// /// https://fontawesome.com/icons/circle-down-right?style=light /// diagonal, southeast - static const IconData lightCircleDownRight = IconDataLight(0xe108); + static const IconData lightCircleDownRight = IconData(0xe108, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Down Right icon /// /// https://fontawesome.com/icons/circle-down-right?style=thin /// diagonal, southeast - static const IconData thinCircleDownRight = IconDataThin(0xe108); + static const IconData thinCircleDownRight = IconData(0xe108, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle E icon /// /// https://fontawesome.com/icons/circle-e?style=solid /// Circled Latin Capital Letter E, letter - static const IconData solidCircleE = IconDataSolid(0xe109); + static const IconData solidCircleE = IconData(0xe109, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle E icon /// /// https://fontawesome.com/icons/circle-e?style=regular /// Circled Latin Capital Letter E, letter - static const IconData circleE = IconDataRegular(0xe109); + static const IconData circleE = IconData(0xe109, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle E icon /// /// https://fontawesome.com/icons/circle-e?style=light /// Circled Latin Capital Letter E, letter - static const IconData lightCircleE = IconDataLight(0xe109); + static const IconData lightCircleE = IconData(0xe109, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle E icon /// /// https://fontawesome.com/icons/circle-e?style=thin /// Circled Latin Capital Letter E, letter - static const IconData thinCircleE = IconDataThin(0xe109); + static const IconData thinCircleE = IconData(0xe109, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Ellipsis icon /// /// https://fontawesome.com/icons/circle-ellipsis?style=solid /// menu, more, three dots - static const IconData solidCircleEllipsis = IconDataSolid(0xe10a); + static const IconData solidCircleEllipsis = IconData(0xe10a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Ellipsis icon /// /// https://fontawesome.com/icons/circle-ellipsis?style=regular /// menu, more, three dots - static const IconData circleEllipsis = IconDataRegular(0xe10a); + static const IconData circleEllipsis = IconData(0xe10a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Ellipsis icon /// /// https://fontawesome.com/icons/circle-ellipsis?style=light /// menu, more, three dots - static const IconData lightCircleEllipsis = IconDataLight(0xe10a); + static const IconData lightCircleEllipsis = IconData(0xe10a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Ellipsis icon /// /// https://fontawesome.com/icons/circle-ellipsis?style=thin /// menu, more, three dots - static const IconData thinCircleEllipsis = IconDataThin(0xe10a); + static const IconData thinCircleEllipsis = IconData(0xe10a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Ellipsis Vertical icon /// /// https://fontawesome.com/icons/circle-ellipsis-vertical?style=solid /// menu, more, three dots - static const IconData solidCircleEllipsisVertical = IconDataSolid(0xe10b); + static const IconData solidCircleEllipsisVertical = IconData(0xe10b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Ellipsis Vertical icon /// /// https://fontawesome.com/icons/circle-ellipsis-vertical?style=regular /// menu, more, three dots - static const IconData circleEllipsisVertical = IconDataRegular(0xe10b); + static const IconData circleEllipsisVertical = IconData(0xe10b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Ellipsis Vertical icon /// /// https://fontawesome.com/icons/circle-ellipsis-vertical?style=light /// menu, more, three dots - static const IconData lightCircleEllipsisVertical = IconDataLight(0xe10b); + static const IconData lightCircleEllipsisVertical = IconData(0xe10b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Ellipsis Vertical icon /// /// https://fontawesome.com/icons/circle-ellipsis-vertical?style=thin /// menu, more, three dots - static const IconData thinCircleEllipsisVertical = IconDataThin(0xe10b); + static const IconData thinCircleEllipsisVertical = IconData(0xe10b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Envelope icon /// /// https://fontawesome.com/icons/circle-envelope?style=solid /// email, message, send - static const IconData solidCircleEnvelope = IconDataSolid(0xe10c); + static const IconData solidCircleEnvelope = IconData(0xe10c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias envelope-circle for icon [solidCircleEnvelope] @Deprecated('Use "solidCircleEnvelope" instead.') @@ -20996,7 +20996,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-envelope?style=regular /// email, message, send - static const IconData circleEnvelope = IconDataRegular(0xe10c); + static const IconData circleEnvelope = IconData(0xe10c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias envelope-circle for icon [circleEnvelope] @Deprecated('Use "circleEnvelope" instead.') @@ -21006,7 +21006,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-envelope?style=light /// email, message, send - static const IconData lightCircleEnvelope = IconDataLight(0xe10c); + static const IconData lightCircleEnvelope = IconData(0xe10c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias envelope-circle for icon [lightCircleEnvelope] @Deprecated('Use "lightCircleEnvelope" instead.') @@ -21016,7 +21016,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-envelope?style=thin /// email, message, send - static const IconData thinCircleEnvelope = IconDataThin(0xe10c); + static const IconData thinCircleEnvelope = IconData(0xe10c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias envelope-circle for icon [thinCircleEnvelope] @Deprecated('Use "thinCircleEnvelope" instead.') @@ -21026,31 +21026,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-euro?style=solid /// coin, currency, euro sign - static const IconData solidCircleEuro = IconDataSolid(0xe5ce); + static const IconData solidCircleEuro = IconData(0xe5ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Euro icon /// /// https://fontawesome.com/icons/circle-euro?style=regular /// coin, currency, euro sign - static const IconData circleEuro = IconDataRegular(0xe5ce); + static const IconData circleEuro = IconData(0xe5ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Euro icon /// /// https://fontawesome.com/icons/circle-euro?style=light /// coin, currency, euro sign - static const IconData lightCircleEuro = IconDataLight(0xe5ce); + static const IconData lightCircleEuro = IconData(0xe5ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Euro icon /// /// https://fontawesome.com/icons/circle-euro?style=thin /// coin, currency, euro sign - static const IconData thinCircleEuro = IconDataThin(0xe5ce); + static const IconData thinCircleEuro = IconData(0xe5ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Exclamation icon /// /// https://fontawesome.com/icons/circle-exclamation?style=solid /// affect, alert, attention, damage, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData solidCircleExclamation = IconDataSolid(0xf06a); + static const IconData solidCircleExclamation = IconData(0xf06a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-circle for icon [solidCircleExclamation] @Deprecated('Use "solidCircleExclamation" instead.') @@ -21060,7 +21060,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-exclamation?style=regular /// affect, alert, attention, damage, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData circleExclamation = IconDataRegular(0xf06a); + static const IconData circleExclamation = IconData(0xf06a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-circle for icon [circleExclamation] @Deprecated('Use "circleExclamation" instead.') @@ -21070,7 +21070,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-exclamation?style=light /// affect, alert, attention, damage, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData lightCircleExclamation = IconDataLight(0xf06a); + static const IconData lightCircleExclamation = IconData(0xf06a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-circle for icon [lightCircleExclamation] @Deprecated('Use "lightCircleExclamation" instead.') @@ -21080,7 +21080,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-exclamation?style=thin /// affect, alert, attention, damage, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData thinCircleExclamation = IconDataThin(0xf06a); + static const IconData thinCircleExclamation = IconData(0xf06a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-circle for icon [thinCircleExclamation] @Deprecated('Use "thinCircleExclamation" instead.') @@ -21090,79 +21090,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-exclamation-check?style=solid /// enable, idea, resolved, validate, working - static const IconData solidCircleExclamationCheck = IconDataSolid(0xe10d); + static const IconData solidCircleExclamationCheck = IconData(0xe10d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Exclamation Check icon /// /// https://fontawesome.com/icons/circle-exclamation-check?style=regular /// enable, idea, resolved, validate, working - static const IconData circleExclamationCheck = IconDataRegular(0xe10d); + static const IconData circleExclamationCheck = IconData(0xe10d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Exclamation Check icon /// /// https://fontawesome.com/icons/circle-exclamation-check?style=light /// enable, idea, resolved, validate, working - static const IconData lightCircleExclamationCheck = IconDataLight(0xe10d); + static const IconData lightCircleExclamationCheck = IconData(0xe10d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Exclamation Check icon /// /// https://fontawesome.com/icons/circle-exclamation-check?style=thin /// enable, idea, resolved, validate, working - static const IconData thinCircleExclamationCheck = IconDataThin(0xe10d); + static const IconData thinCircleExclamationCheck = IconData(0xe10d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle F icon /// /// https://fontawesome.com/icons/circle-f?style=solid /// Circled Latin Capital Letter F, letter - static const IconData solidCircleF = IconDataSolid(0xe10e); + static const IconData solidCircleF = IconData(0xe10e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle F icon /// /// https://fontawesome.com/icons/circle-f?style=regular /// Circled Latin Capital Letter F, letter - static const IconData circleF = IconDataRegular(0xe10e); + static const IconData circleF = IconData(0xe10e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle F icon /// /// https://fontawesome.com/icons/circle-f?style=light /// Circled Latin Capital Letter F, letter - static const IconData lightCircleF = IconDataLight(0xe10e); + static const IconData lightCircleF = IconData(0xe10e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle F icon /// /// https://fontawesome.com/icons/circle-f?style=thin /// Circled Latin Capital Letter F, letter - static const IconData thinCircleF = IconDataThin(0xe10e); + static const IconData thinCircleF = IconData(0xe10e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle G icon /// /// https://fontawesome.com/icons/circle-g?style=solid /// Circled Latin Capital Letter G, letter - static const IconData solidCircleG = IconDataSolid(0xe10f); + static const IconData solidCircleG = IconData(0xe10f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle G icon /// /// https://fontawesome.com/icons/circle-g?style=regular /// Circled Latin Capital Letter G, letter - static const IconData circleG = IconDataRegular(0xe10f); + static const IconData circleG = IconData(0xe10f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle G icon /// /// https://fontawesome.com/icons/circle-g?style=light /// Circled Latin Capital Letter G, letter - static const IconData lightCircleG = IconDataLight(0xe10f); + static const IconData lightCircleG = IconData(0xe10f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle G icon /// /// https://fontawesome.com/icons/circle-g?style=thin /// Circled Latin Capital Letter G, letter - static const IconData thinCircleG = IconDataThin(0xe10f); + static const IconData thinCircleG = IconData(0xe10f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle H icon /// /// https://fontawesome.com/icons/circle-h?style=solid /// Circled Latin Capital Letter H, clinic, covid-19, emergency, letter, map - static const IconData solidCircleH = IconDataSolid(0xf47e); + static const IconData solidCircleH = IconData(0xf47e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hospital-symbol for icon [solidCircleH] @Deprecated('Use "solidCircleH" instead.') @@ -21172,7 +21172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-h?style=regular /// Circled Latin Capital Letter H, clinic, covid-19, emergency, letter, map - static const IconData circleH = IconDataRegular(0xf47e); + static const IconData circleH = IconData(0xf47e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hospital-symbol for icon [circleH] @Deprecated('Use "circleH" instead.') @@ -21182,7 +21182,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-h?style=light /// Circled Latin Capital Letter H, clinic, covid-19, emergency, letter, map - static const IconData lightCircleH = IconDataLight(0xf47e); + static const IconData lightCircleH = IconData(0xf47e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hospital-symbol for icon [lightCircleH] @Deprecated('Use "lightCircleH" instead.') @@ -21192,7 +21192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-h?style=thin /// Circled Latin Capital Letter H, clinic, covid-19, emergency, letter, map - static const IconData thinCircleH = IconDataThin(0xf47e); + static const IconData thinCircleH = IconData(0xf47e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hospital-symbol for icon [thinCircleH] @Deprecated('Use "thinCircleH" instead.') @@ -21202,31 +21202,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-half?style=solid /// Left Half Black Circle, chart, fill, pie chart, progress, revenue - static const IconData solidCircleHalf = IconDataSolid(0xe110); + static const IconData solidCircleHalf = IconData(0xe110, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Half icon /// /// https://fontawesome.com/icons/circle-half?style=regular /// Left Half Black Circle, chart, fill, pie chart, progress, revenue - static const IconData circleHalf = IconDataRegular(0xe110); + static const IconData circleHalf = IconData(0xe110, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Half icon /// /// https://fontawesome.com/icons/circle-half?style=light /// Left Half Black Circle, chart, fill, pie chart, progress, revenue - static const IconData lightCircleHalf = IconDataLight(0xe110); + static const IconData lightCircleHalf = IconData(0xe110, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Half icon /// /// https://fontawesome.com/icons/circle-half?style=thin /// Left Half Black Circle, chart, fill, pie chart, progress, revenue - static const IconData thinCircleHalf = IconDataThin(0xe110); + static const IconData thinCircleHalf = IconData(0xe110, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Half Stroke icon /// /// https://fontawesome.com/icons/circle-half-stroke?style=solid /// Circle with Left Half Black, adjust, chart, contrast, dark, fill, light, pie, progress, saturation - static const IconData solidCircleHalfStroke = IconDataSolid(0xf042); + static const IconData solidCircleHalfStroke = IconData(0xf042, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias adjust for icon [solidCircleHalfStroke] @Deprecated('Use "solidCircleHalfStroke" instead.') @@ -21236,7 +21236,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-half-stroke?style=regular /// Circle with Left Half Black, adjust, chart, contrast, dark, fill, light, pie, progress, saturation - static const IconData circleHalfStroke = IconDataRegular(0xf042); + static const IconData circleHalfStroke = IconData(0xf042, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias adjust for icon [circleHalfStroke] @Deprecated('Use "circleHalfStroke" instead.') @@ -21246,7 +21246,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-half-stroke?style=light /// Circle with Left Half Black, adjust, chart, contrast, dark, fill, light, pie, progress, saturation - static const IconData lightCircleHalfStroke = IconDataLight(0xf042); + static const IconData lightCircleHalfStroke = IconData(0xf042, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias adjust for icon [lightCircleHalfStroke] @Deprecated('Use "lightCircleHalfStroke" instead.') @@ -21256,7 +21256,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-half-stroke?style=thin /// Circle with Left Half Black, adjust, chart, contrast, dark, fill, light, pie, progress, saturation - static const IconData thinCircleHalfStroke = IconDataThin(0xf042); + static const IconData thinCircleHalfStroke = IconData(0xf042, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias adjust for icon [thinCircleHalfStroke] @Deprecated('Use "thinCircleHalfStroke" instead.') @@ -21266,7 +21266,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-heart?style=solid /// favorite, like, love, wishlist - static const IconData solidCircleHeart = IconDataSolid(0xf4c7); + static const IconData solidCircleHeart = IconData(0xf4c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-circle for icon [solidCircleHeart] @Deprecated('Use "solidCircleHeart" instead.') @@ -21276,7 +21276,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-heart?style=regular /// favorite, like, love, wishlist - static const IconData circleHeart = IconDataRegular(0xf4c7); + static const IconData circleHeart = IconData(0xf4c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-circle for icon [circleHeart] @Deprecated('Use "circleHeart" instead.') @@ -21286,7 +21286,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-heart?style=light /// favorite, like, love, wishlist - static const IconData lightCircleHeart = IconDataLight(0xf4c7); + static const IconData lightCircleHeart = IconData(0xf4c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-circle for icon [lightCircleHeart] @Deprecated('Use "lightCircleHeart" instead.') @@ -21296,7 +21296,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-heart?style=thin /// favorite, like, love, wishlist - static const IconData thinCircleHeart = IconDataThin(0xf4c7); + static const IconData thinCircleHeart = IconData(0xf4c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-circle for icon [thinCircleHeart] @Deprecated('Use "thinCircleHeart" instead.') @@ -21306,31 +21306,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-i?style=solid /// Circled Latin Capital Letter I, letter - static const IconData solidCircleI = IconDataSolid(0xe111); + static const IconData solidCircleI = IconData(0xe111, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle I icon /// /// https://fontawesome.com/icons/circle-i?style=regular /// Circled Latin Capital Letter I, letter - static const IconData circleI = IconDataRegular(0xe111); + static const IconData circleI = IconData(0xe111, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle I icon /// /// https://fontawesome.com/icons/circle-i?style=light /// Circled Latin Capital Letter I, letter - static const IconData lightCircleI = IconDataLight(0xe111); + static const IconData lightCircleI = IconData(0xe111, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle I icon /// /// https://fontawesome.com/icons/circle-i?style=thin /// Circled Latin Capital Letter I, letter - static const IconData thinCircleI = IconDataThin(0xe111); + static const IconData thinCircleI = IconData(0xe111, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Info icon /// /// https://fontawesome.com/icons/circle-info?style=solid /// details, help, information, more, support - static const IconData solidCircleInfo = IconDataSolid(0xf05a); + static const IconData solidCircleInfo = IconData(0xf05a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias info-circle for icon [solidCircleInfo] @Deprecated('Use "solidCircleInfo" instead.') @@ -21340,7 +21340,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-info?style=regular /// details, help, information, more, support - static const IconData circleInfo = IconDataRegular(0xf05a); + static const IconData circleInfo = IconData(0xf05a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias info-circle for icon [circleInfo] @Deprecated('Use "circleInfo" instead.') @@ -21350,7 +21350,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-info?style=light /// details, help, information, more, support - static const IconData lightCircleInfo = IconDataLight(0xf05a); + static const IconData lightCircleInfo = IconData(0xf05a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias info-circle for icon [lightCircleInfo] @Deprecated('Use "lightCircleInfo" instead.') @@ -21360,7 +21360,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-info?style=thin /// details, help, information, more, support - static const IconData thinCircleInfo = IconDataThin(0xf05a); + static const IconData thinCircleInfo = IconData(0xf05a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias info-circle for icon [thinCircleInfo] @Deprecated('Use "thinCircleInfo" instead.') @@ -21370,79 +21370,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-j?style=solid /// Circled Latin Capital Letter J, letter - static const IconData solidCircleJ = IconDataSolid(0xe112); + static const IconData solidCircleJ = IconData(0xe112, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle J icon /// /// https://fontawesome.com/icons/circle-j?style=regular /// Circled Latin Capital Letter J, letter - static const IconData circleJ = IconDataRegular(0xe112); + static const IconData circleJ = IconData(0xe112, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle J icon /// /// https://fontawesome.com/icons/circle-j?style=light /// Circled Latin Capital Letter J, letter - static const IconData lightCircleJ = IconDataLight(0xe112); + static const IconData lightCircleJ = IconData(0xe112, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle J icon /// /// https://fontawesome.com/icons/circle-j?style=thin /// Circled Latin Capital Letter J, letter - static const IconData thinCircleJ = IconDataThin(0xe112); + static const IconData thinCircleJ = IconData(0xe112, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle K icon /// /// https://fontawesome.com/icons/circle-k?style=solid /// Circled Latin Capital Letter K, letter - static const IconData solidCircleK = IconDataSolid(0xe113); + static const IconData solidCircleK = IconData(0xe113, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle K icon /// /// https://fontawesome.com/icons/circle-k?style=regular /// Circled Latin Capital Letter K, letter - static const IconData circleK = IconDataRegular(0xe113); + static const IconData circleK = IconData(0xe113, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle K icon /// /// https://fontawesome.com/icons/circle-k?style=light /// Circled Latin Capital Letter K, letter - static const IconData lightCircleK = IconDataLight(0xe113); + static const IconData lightCircleK = IconData(0xe113, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle K icon /// /// https://fontawesome.com/icons/circle-k?style=thin /// Circled Latin Capital Letter K, letter - static const IconData thinCircleK = IconDataThin(0xe113); + static const IconData thinCircleK = IconData(0xe113, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle L icon /// /// https://fontawesome.com/icons/circle-l?style=solid /// Circled Latin Capital Letter L, letter - static const IconData solidCircleL = IconDataSolid(0xe114); + static const IconData solidCircleL = IconData(0xe114, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle L icon /// /// https://fontawesome.com/icons/circle-l?style=regular /// Circled Latin Capital Letter L, letter - static const IconData circleL = IconDataRegular(0xe114); + static const IconData circleL = IconData(0xe114, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle L icon /// /// https://fontawesome.com/icons/circle-l?style=light /// Circled Latin Capital Letter L, letter - static const IconData lightCircleL = IconDataLight(0xe114); + static const IconData lightCircleL = IconData(0xe114, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle L icon /// /// https://fontawesome.com/icons/circle-l?style=thin /// Circled Latin Capital Letter L, letter - static const IconData thinCircleL = IconDataThin(0xe114); + static const IconData thinCircleL = IconData(0xe114, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Left icon /// /// https://fontawesome.com/icons/circle-left?style=solid /// arrow-circle-o-left, back, previous - static const IconData solidCircleLeft = IconDataSolid(0xf359); + static const IconData solidCircleLeft = IconData(0xf359, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-left for icon [solidCircleLeft] @Deprecated('Use "solidCircleLeft" instead.') @@ -21452,7 +21452,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-left?style=regular /// arrow-circle-o-left, back, previous - static const IconData circleLeft = IconDataRegular(0xf359); + static const IconData circleLeft = IconData(0xf359, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-left for icon [circleLeft] @Deprecated('Use "circleLeft" instead.') @@ -21462,7 +21462,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-left?style=light /// arrow-circle-o-left, back, previous - static const IconData lightCircleLeft = IconDataLight(0xf359); + static const IconData lightCircleLeft = IconData(0xf359, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-left for icon [lightCircleLeft] @Deprecated('Use "lightCircleLeft" instead.') @@ -21472,7 +21472,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-left?style=thin /// arrow-circle-o-left, back, previous - static const IconData thinCircleLeft = IconDataThin(0xf359); + static const IconData thinCircleLeft = IconData(0xf359, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-left for icon [thinCircleLeft] @Deprecated('Use "thinCircleLeft" instead.') @@ -21482,7 +21482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-location-arrow?style=solid /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData solidCircleLocationArrow = IconDataSolid(0xf602); + static const IconData solidCircleLocationArrow = IconData(0xf602, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias location-circle for icon [solidCircleLocationArrow] @Deprecated('Use "solidCircleLocationArrow" instead.') @@ -21492,7 +21492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-location-arrow?style=regular /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData circleLocationArrow = IconDataRegular(0xf602); + static const IconData circleLocationArrow = IconData(0xf602, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias location-circle for icon [circleLocationArrow] @Deprecated('Use "circleLocationArrow" instead.') @@ -21502,7 +21502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-location-arrow?style=light /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData lightCircleLocationArrow = IconDataLight(0xf602); + static const IconData lightCircleLocationArrow = IconData(0xf602, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias location-circle for icon [lightCircleLocationArrow] @Deprecated('Use "lightCircleLocationArrow" instead.') @@ -21512,7 +21512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-location-arrow?style=thin /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData thinCircleLocationArrow = IconDataThin(0xf602); + static const IconData thinCircleLocationArrow = IconData(0xf602, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias location-circle for icon [thinCircleLocationArrow] @Deprecated('Use "thinCircleLocationArrow" instead.') @@ -21522,31 +21522,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-m?style=solid /// Circled Latin Capital Letter M, letter - static const IconData solidCircleM = IconDataSolid(0xe115); + static const IconData solidCircleM = IconData(0xe115, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle M icon /// /// https://fontawesome.com/icons/circle-m?style=regular /// Circled Latin Capital Letter M, letter - static const IconData circleM = IconDataRegular(0xe115); + static const IconData circleM = IconData(0xe115, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle M icon /// /// https://fontawesome.com/icons/circle-m?style=light /// Circled Latin Capital Letter M, letter - static const IconData lightCircleM = IconDataLight(0xe115); + static const IconData lightCircleM = IconData(0xe115, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle M icon /// /// https://fontawesome.com/icons/circle-m?style=thin /// Circled Latin Capital Letter M, letter - static const IconData thinCircleM = IconDataThin(0xe115); + static const IconData thinCircleM = IconData(0xe115, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Microphone icon /// /// https://fontawesome.com/icons/circle-microphone?style=solid /// listen, podcast, record, talking - static const IconData solidCircleMicrophone = IconDataSolid(0xe116); + static const IconData solidCircleMicrophone = IconData(0xe116, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle for icon [solidCircleMicrophone] @Deprecated('Use "solidCircleMicrophone" instead.') @@ -21556,7 +21556,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone?style=regular /// listen, podcast, record, talking - static const IconData circleMicrophone = IconDataRegular(0xe116); + static const IconData circleMicrophone = IconData(0xe116, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle for icon [circleMicrophone] @Deprecated('Use "circleMicrophone" instead.') @@ -21566,7 +21566,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone?style=light /// listen, podcast, record, talking - static const IconData lightCircleMicrophone = IconDataLight(0xe116); + static const IconData lightCircleMicrophone = IconData(0xe116, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle for icon [lightCircleMicrophone] @Deprecated('Use "lightCircleMicrophone" instead.') @@ -21576,7 +21576,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone?style=thin /// listen, podcast, record, talking - static const IconData thinCircleMicrophone = IconDataThin(0xe116); + static const IconData thinCircleMicrophone = IconData(0xe116, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle for icon [thinCircleMicrophone] @Deprecated('Use "thinCircleMicrophone" instead.') @@ -21586,7 +21586,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone-lines?style=solid /// listen, podcast, record, talking - static const IconData solidCircleMicrophoneLines = IconDataSolid(0xe117); + static const IconData solidCircleMicrophoneLines = IconData(0xe117, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle-alt for icon [solidCircleMicrophoneLines] @Deprecated('Use "solidCircleMicrophoneLines" instead.') @@ -21596,7 +21596,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone-lines?style=regular /// listen, podcast, record, talking - static const IconData circleMicrophoneLines = IconDataRegular(0xe117); + static const IconData circleMicrophoneLines = IconData(0xe117, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle-alt for icon [circleMicrophoneLines] @Deprecated('Use "circleMicrophoneLines" instead.') @@ -21606,7 +21606,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone-lines?style=light /// listen, podcast, record, talking - static const IconData lightCircleMicrophoneLines = IconDataLight(0xe117); + static const IconData lightCircleMicrophoneLines = IconData(0xe117, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle-alt for icon [lightCircleMicrophoneLines] @Deprecated('Use "lightCircleMicrophoneLines" instead.') @@ -21616,7 +21616,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-microphone-lines?style=thin /// listen, podcast, record, talking - static const IconData thinCircleMicrophoneLines = IconDataThin(0xe117); + static const IconData thinCircleMicrophoneLines = IconData(0xe117, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias microphone-circle-alt for icon [thinCircleMicrophoneLines] @Deprecated('Use "thinCircleMicrophoneLines" instead.') @@ -21626,7 +21626,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-minus?style=solid /// delete, hide, negative, remove, shape, trash - static const IconData solidCircleMinus = IconDataSolid(0xf056); + static const IconData solidCircleMinus = IconData(0xf056, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias minus-circle for icon [solidCircleMinus] @Deprecated('Use "solidCircleMinus" instead.') @@ -21636,7 +21636,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-minus?style=regular /// delete, hide, negative, remove, shape, trash - static const IconData circleMinus = IconDataRegular(0xf056); + static const IconData circleMinus = IconData(0xf056, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias minus-circle for icon [circleMinus] @Deprecated('Use "circleMinus" instead.') @@ -21646,7 +21646,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-minus?style=light /// delete, hide, negative, remove, shape, trash - static const IconData lightCircleMinus = IconDataLight(0xf056); + static const IconData lightCircleMinus = IconData(0xf056, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias minus-circle for icon [lightCircleMinus] @Deprecated('Use "lightCircleMinus" instead.') @@ -21656,7 +21656,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-minus?style=thin /// delete, hide, negative, remove, shape, trash - static const IconData thinCircleMinus = IconDataThin(0xf056); + static const IconData thinCircleMinus = IconData(0xf056, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias minus-circle for icon [thinCircleMinus] @Deprecated('Use "thinCircleMinus" instead.') @@ -21666,127 +21666,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-n?style=solid /// Circled Latin Capital Letter N, letter, nay, no - static const IconData solidCircleN = IconDataSolid(0xe118); + static const IconData solidCircleN = IconData(0xe118, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle N icon /// /// https://fontawesome.com/icons/circle-n?style=regular /// Circled Latin Capital Letter N, letter, nay, no - static const IconData circleN = IconDataRegular(0xe118); + static const IconData circleN = IconData(0xe118, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle N icon /// /// https://fontawesome.com/icons/circle-n?style=light /// Circled Latin Capital Letter N, letter, nay, no - static const IconData lightCircleN = IconDataLight(0xe118); + static const IconData lightCircleN = IconData(0xe118, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle N icon /// /// https://fontawesome.com/icons/circle-n?style=thin /// Circled Latin Capital Letter N, letter, nay, no - static const IconData thinCircleN = IconDataThin(0xe118); + static const IconData thinCircleN = IconData(0xe118, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Nodes icon /// /// https://fontawesome.com/icons/circle-nodes?style=solid /// cluster, connect, network - static const IconData solidCircleNodes = IconDataSolid(0xe4e2); + static const IconData solidCircleNodes = IconData(0xe4e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Nodes icon /// /// https://fontawesome.com/icons/circle-nodes?style=regular /// cluster, connect, network - static const IconData circleNodes = IconDataRegular(0xe4e2); + static const IconData circleNodes = IconData(0xe4e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Nodes icon /// /// https://fontawesome.com/icons/circle-nodes?style=light /// cluster, connect, network - static const IconData lightCircleNodes = IconDataLight(0xe4e2); + static const IconData lightCircleNodes = IconData(0xe4e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Nodes icon /// /// https://fontawesome.com/icons/circle-nodes?style=thin /// cluster, connect, network - static const IconData thinCircleNodes = IconDataThin(0xe4e2); + static const IconData thinCircleNodes = IconData(0xe4e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Notch icon /// /// https://fontawesome.com/icons/circle-notch?style=solid /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData solidCircleNotch = IconDataSolid(0xf1ce); + static const IconData solidCircleNotch = IconData(0xf1ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Notch icon /// /// https://fontawesome.com/icons/circle-notch?style=regular /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData circleNotch = IconDataRegular(0xf1ce); + static const IconData circleNotch = IconData(0xf1ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Notch icon /// /// https://fontawesome.com/icons/circle-notch?style=light /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData lightCircleNotch = IconDataLight(0xf1ce); + static const IconData lightCircleNotch = IconData(0xf1ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Notch icon /// /// https://fontawesome.com/icons/circle-notch?style=thin /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData thinCircleNotch = IconDataThin(0xf1ce); + static const IconData thinCircleNotch = IconData(0xf1ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle O icon /// /// https://fontawesome.com/icons/circle-o?style=solid /// Circled Latin Capital Letter O, letter - static const IconData solidCircleO = IconDataSolid(0xe119); + static const IconData solidCircleO = IconData(0xe119, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle O icon /// /// https://fontawesome.com/icons/circle-o?style=regular /// Circled Latin Capital Letter O, letter - static const IconData circleO = IconDataRegular(0xe119); + static const IconData circleO = IconData(0xe119, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle O icon /// /// https://fontawesome.com/icons/circle-o?style=light /// Circled Latin Capital Letter O, letter - static const IconData lightCircleO = IconDataLight(0xe119); + static const IconData lightCircleO = IconData(0xe119, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle O icon /// /// https://fontawesome.com/icons/circle-o?style=thin /// Circled Latin Capital Letter O, letter - static const IconData thinCircleO = IconDataThin(0xe119); + static const IconData thinCircleO = IconData(0xe119, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle P icon /// /// https://fontawesome.com/icons/circle-p?style=solid /// Circled Latin Capital Letter P, letter - static const IconData solidCircleP = IconDataSolid(0xe11a); + static const IconData solidCircleP = IconData(0xe11a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle P icon /// /// https://fontawesome.com/icons/circle-p?style=regular /// Circled Latin Capital Letter P, letter - static const IconData circleP = IconDataRegular(0xe11a); + static const IconData circleP = IconData(0xe11a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle P icon /// /// https://fontawesome.com/icons/circle-p?style=light /// Circled Latin Capital Letter P, letter - static const IconData lightCircleP = IconDataLight(0xe11a); + static const IconData lightCircleP = IconData(0xe11a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle P icon /// /// https://fontawesome.com/icons/circle-p?style=thin /// Circled Latin Capital Letter P, letter - static const IconData thinCircleP = IconDataThin(0xe11a); + static const IconData thinCircleP = IconData(0xe11a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Parking icon /// /// https://fontawesome.com/icons/circle-parking?style=solid /// auto, car, garage, meter - static const IconData solidCircleParking = IconDataSolid(0xf615); + static const IconData solidCircleParking = IconData(0xf615, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle for icon [solidCircleParking] @Deprecated('Use "solidCircleParking" instead.') @@ -21796,7 +21796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-parking?style=regular /// auto, car, garage, meter - static const IconData circleParking = IconDataRegular(0xf615); + static const IconData circleParking = IconData(0xf615, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle for icon [circleParking] @Deprecated('Use "circleParking" instead.') @@ -21806,7 +21806,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-parking?style=light /// auto, car, garage, meter - static const IconData lightCircleParking = IconDataLight(0xf615); + static const IconData lightCircleParking = IconData(0xf615, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle for icon [lightCircleParking] @Deprecated('Use "lightCircleParking" instead.') @@ -21816,7 +21816,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-parking?style=thin /// auto, car, garage, meter - static const IconData thinCircleParking = IconDataThin(0xf615); + static const IconData thinCircleParking = IconData(0xf615, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parking-circle for icon [thinCircleParking] @Deprecated('Use "thinCircleParking" instead.') @@ -21826,7 +21826,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-pause?style=solid /// hold, wait - static const IconData solidCirclePause = IconDataSolid(0xf28b); + static const IconData solidCirclePause = IconData(0xf28b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pause-circle for icon [solidCirclePause] @Deprecated('Use "solidCirclePause" instead.') @@ -21836,7 +21836,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-pause?style=regular /// hold, wait - static const IconData circlePause = IconDataRegular(0xf28b); + static const IconData circlePause = IconData(0xf28b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pause-circle for icon [circlePause] @Deprecated('Use "circlePause" instead.') @@ -21846,7 +21846,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-pause?style=light /// hold, wait - static const IconData lightCirclePause = IconDataLight(0xf28b); + static const IconData lightCirclePause = IconData(0xf28b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pause-circle for icon [lightCirclePause] @Deprecated('Use "lightCirclePause" instead.') @@ -21856,7 +21856,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-pause?style=thin /// hold, wait - static const IconData thinCirclePause = IconDataThin(0xf28b); + static const IconData thinCirclePause = IconData(0xf28b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pause-circle for icon [thinCirclePause] @Deprecated('Use "thinCirclePause" instead.') @@ -21866,7 +21866,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone?style=solid /// answer, call, handset, telephone - static const IconData solidCirclePhone = IconDataSolid(0xe11b); + static const IconData solidCirclePhone = IconData(0xe11b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle for icon [solidCirclePhone] @Deprecated('Use "solidCirclePhone" instead.') @@ -21876,7 +21876,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone?style=regular /// answer, call, handset, telephone - static const IconData circlePhone = IconDataRegular(0xe11b); + static const IconData circlePhone = IconData(0xe11b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle for icon [circlePhone] @Deprecated('Use "circlePhone" instead.') @@ -21886,7 +21886,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone?style=light /// answer, call, handset, telephone - static const IconData lightCirclePhone = IconDataLight(0xe11b); + static const IconData lightCirclePhone = IconData(0xe11b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle for icon [lightCirclePhone] @Deprecated('Use "lightCirclePhone" instead.') @@ -21896,7 +21896,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone?style=thin /// answer, call, handset, telephone - static const IconData thinCirclePhone = IconDataThin(0xe11b); + static const IconData thinCirclePhone = IconData(0xe11b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle for icon [thinCirclePhone] @Deprecated('Use "thinCirclePhone" instead.') @@ -21906,7 +21906,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-flip?style=solid /// answer, call, handset, telephone - static const IconData solidCirclePhoneFlip = IconDataSolid(0xe11c); + static const IconData solidCirclePhoneFlip = IconData(0xe11c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-alt for icon [solidCirclePhoneFlip] @Deprecated('Use "solidCirclePhoneFlip" instead.') @@ -21916,7 +21916,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-flip?style=regular /// answer, call, handset, telephone - static const IconData circlePhoneFlip = IconDataRegular(0xe11c); + static const IconData circlePhoneFlip = IconData(0xe11c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-alt for icon [circlePhoneFlip] @Deprecated('Use "circlePhoneFlip" instead.') @@ -21926,7 +21926,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-flip?style=light /// answer, call, handset, telephone - static const IconData lightCirclePhoneFlip = IconDataLight(0xe11c); + static const IconData lightCirclePhoneFlip = IconData(0xe11c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-alt for icon [lightCirclePhoneFlip] @Deprecated('Use "lightCirclePhoneFlip" instead.') @@ -21936,7 +21936,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-flip?style=thin /// answer, call, handset, telephone - static const IconData thinCirclePhoneFlip = IconDataThin(0xe11c); + static const IconData thinCirclePhoneFlip = IconData(0xe11c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-alt for icon [thinCirclePhoneFlip] @Deprecated('Use "thinCirclePhoneFlip" instead.') @@ -21946,7 +21946,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-hangup?style=solid /// answer, call, handset, telephone - static const IconData solidCirclePhoneHangup = IconDataSolid(0xe11d); + static const IconData solidCirclePhoneHangup = IconData(0xe11d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-down for icon [solidCirclePhoneHangup] @Deprecated('Use "solidCirclePhoneHangup" instead.') @@ -21956,7 +21956,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-hangup?style=regular /// answer, call, handset, telephone - static const IconData circlePhoneHangup = IconDataRegular(0xe11d); + static const IconData circlePhoneHangup = IconData(0xe11d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-down for icon [circlePhoneHangup] @Deprecated('Use "circlePhoneHangup" instead.') @@ -21966,7 +21966,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-hangup?style=light /// answer, call, handset, telephone - static const IconData lightCirclePhoneHangup = IconDataLight(0xe11d); + static const IconData lightCirclePhoneHangup = IconData(0xe11d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-down for icon [lightCirclePhoneHangup] @Deprecated('Use "lightCirclePhoneHangup" instead.') @@ -21976,7 +21976,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-phone-hangup?style=thin /// answer, call, handset, telephone - static const IconData thinCirclePhoneHangup = IconDataThin(0xe11d); + static const IconData thinCirclePhoneHangup = IconData(0xe11d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-circle-down for icon [thinCirclePhoneHangup] @Deprecated('Use "thinCirclePhoneHangup" instead.') @@ -21986,7 +21986,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-play?style=solid /// audio, music, playing, sound, start, video - static const IconData solidCirclePlay = IconDataSolid(0xf144); + static const IconData solidCirclePlay = IconData(0xf144, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias play-circle for icon [solidCirclePlay] @Deprecated('Use "solidCirclePlay" instead.') @@ -21996,7 +21996,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-play?style=regular /// audio, music, playing, sound, start, video - static const IconData circlePlay = IconDataRegular(0xf144); + static const IconData circlePlay = IconData(0xf144, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias play-circle for icon [circlePlay] @Deprecated('Use "circlePlay" instead.') @@ -22006,7 +22006,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-play?style=light /// audio, music, playing, sound, start, video - static const IconData lightCirclePlay = IconDataLight(0xf144); + static const IconData lightCirclePlay = IconData(0xf144, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias play-circle for icon [lightCirclePlay] @Deprecated('Use "lightCirclePlay" instead.') @@ -22016,7 +22016,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-play?style=thin /// audio, music, playing, sound, start, video - static const IconData thinCirclePlay = IconDataThin(0xf144); + static const IconData thinCirclePlay = IconData(0xf144, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias play-circle for icon [thinCirclePlay] @Deprecated('Use "thinCirclePlay" instead.') @@ -22026,7 +22026,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-plus?style=solid /// add, create, expand, new, positive, shape - static const IconData solidCirclePlus = IconDataSolid(0xf055); + static const IconData solidCirclePlus = IconData(0xf055, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias plus-circle for icon [solidCirclePlus] @Deprecated('Use "solidCirclePlus" instead.') @@ -22036,7 +22036,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-plus?style=regular /// add, create, expand, new, positive, shape - static const IconData circlePlus = IconDataRegular(0xf055); + static const IconData circlePlus = IconData(0xf055, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias plus-circle for icon [circlePlus] @Deprecated('Use "circlePlus" instead.') @@ -22046,7 +22046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-plus?style=light /// add, create, expand, new, positive, shape - static const IconData lightCirclePlus = IconDataLight(0xf055); + static const IconData lightCirclePlus = IconData(0xf055, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias plus-circle for icon [lightCirclePlus] @Deprecated('Use "lightCirclePlus" instead.') @@ -22056,7 +22056,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-plus?style=thin /// add, create, expand, new, positive, shape - static const IconData thinCirclePlus = IconDataThin(0xf055); + static const IconData thinCirclePlus = IconData(0xf055, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias plus-circle for icon [thinCirclePlus] @Deprecated('Use "thinCirclePlus" instead.') @@ -22066,103 +22066,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-q?style=solid /// Circled Latin Capital Letter Q, letter - static const IconData solidCircleQ = IconDataSolid(0xe11e); + static const IconData solidCircleQ = IconData(0xe11e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Q icon /// /// https://fontawesome.com/icons/circle-q?style=regular /// Circled Latin Capital Letter Q, letter - static const IconData circleQ = IconDataRegular(0xe11e); + static const IconData circleQ = IconData(0xe11e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Q icon /// /// https://fontawesome.com/icons/circle-q?style=light /// Circled Latin Capital Letter Q, letter - static const IconData lightCircleQ = IconDataLight(0xe11e); + static const IconData lightCircleQ = IconData(0xe11e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Q icon /// /// https://fontawesome.com/icons/circle-q?style=thin /// Circled Latin Capital Letter Q, letter - static const IconData thinCircleQ = IconDataThin(0xe11e); + static const IconData thinCircleQ = IconData(0xe11e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Quarter icon /// /// https://fontawesome.com/icons/circle-quarter?style=solid /// chart, fill, pie, pie chart, progress, revenue - static const IconData solidCircleQuarter = IconDataSolid(0xe11f); + static const IconData solidCircleQuarter = IconData(0xe11f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Quarter icon /// /// https://fontawesome.com/icons/circle-quarter?style=regular /// chart, fill, pie, pie chart, progress, revenue - static const IconData circleQuarter = IconDataRegular(0xe11f); + static const IconData circleQuarter = IconData(0xe11f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Quarter icon /// /// https://fontawesome.com/icons/circle-quarter?style=light /// chart, fill, pie, pie chart, progress, revenue - static const IconData lightCircleQuarter = IconDataLight(0xe11f); + static const IconData lightCircleQuarter = IconData(0xe11f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Quarter icon /// /// https://fontawesome.com/icons/circle-quarter?style=thin /// chart, fill, pie, pie chart, progress, revenue - static const IconData thinCircleQuarter = IconDataThin(0xe11f); + static const IconData thinCircleQuarter = IconData(0xe11f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Quarter Stroke icon /// /// https://fontawesome.com/icons/circle-quarter-stroke?style=solid /// adjust, chart, fill, pie, progress - static const IconData solidCircleQuarterStroke = IconDataSolid(0xe5d3); + static const IconData solidCircleQuarterStroke = IconData(0xe5d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Quarter Stroke icon /// /// https://fontawesome.com/icons/circle-quarter-stroke?style=regular /// adjust, chart, fill, pie, progress - static const IconData circleQuarterStroke = IconDataRegular(0xe5d3); + static const IconData circleQuarterStroke = IconData(0xe5d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Quarter Stroke icon /// /// https://fontawesome.com/icons/circle-quarter-stroke?style=light /// adjust, chart, fill, pie, progress - static const IconData lightCircleQuarterStroke = IconDataLight(0xe5d3); + static const IconData lightCircleQuarterStroke = IconData(0xe5d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Quarter Stroke icon /// /// https://fontawesome.com/icons/circle-quarter-stroke?style=thin /// adjust, chart, fill, pie, progress - static const IconData thinCircleQuarterStroke = IconDataThin(0xe5d3); + static const IconData thinCircleQuarterStroke = IconData(0xe5d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Quarters icon /// /// https://fontawesome.com/icons/circle-quarters?style=solid /// emergency, light, spiderman - static const IconData solidCircleQuarters = IconDataSolid(0xe3f8); + static const IconData solidCircleQuarters = IconData(0xe3f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Quarters icon /// /// https://fontawesome.com/icons/circle-quarters?style=regular /// emergency, light, spiderman - static const IconData circleQuarters = IconDataRegular(0xe3f8); + static const IconData circleQuarters = IconData(0xe3f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Quarters icon /// /// https://fontawesome.com/icons/circle-quarters?style=light /// emergency, light, spiderman - static const IconData lightCircleQuarters = IconDataLight(0xe3f8); + static const IconData lightCircleQuarters = IconData(0xe3f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Quarters icon /// /// https://fontawesome.com/icons/circle-quarters?style=thin /// emergency, light, spiderman - static const IconData thinCircleQuarters = IconDataThin(0xe3f8); + static const IconData thinCircleQuarters = IconData(0xe3f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Question icon /// /// https://fontawesome.com/icons/circle-question?style=solid /// faq, help, information, support, unknown - static const IconData solidCircleQuestion = IconDataSolid(0xf059); + static const IconData solidCircleQuestion = IconData(0xf059, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias question-circle for icon [solidCircleQuestion] @Deprecated('Use "solidCircleQuestion" instead.') @@ -22172,7 +22172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-question?style=regular /// faq, help, information, support, unknown - static const IconData circleQuestion = IconDataRegular(0xf059); + static const IconData circleQuestion = IconData(0xf059, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias question-circle for icon [circleQuestion] @Deprecated('Use "circleQuestion" instead.') @@ -22182,7 +22182,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-question?style=light /// faq, help, information, support, unknown - static const IconData lightCircleQuestion = IconDataLight(0xf059); + static const IconData lightCircleQuestion = IconData(0xf059, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias question-circle for icon [lightCircleQuestion] @Deprecated('Use "lightCircleQuestion" instead.') @@ -22192,7 +22192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-question?style=thin /// faq, help, information, support, unknown - static const IconData thinCircleQuestion = IconDataThin(0xf059); + static const IconData thinCircleQuestion = IconData(0xf059, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias question-circle for icon [thinCircleQuestion] @Deprecated('Use "thinCircleQuestion" instead.') @@ -22202,31 +22202,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-r?style=solid /// Circled Latin Capital Letter R, letter - static const IconData solidCircleR = IconDataSolid(0xe120); + static const IconData solidCircleR = IconData(0xe120, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle R icon /// /// https://fontawesome.com/icons/circle-r?style=regular /// Circled Latin Capital Letter R, letter - static const IconData circleR = IconDataRegular(0xe120); + static const IconData circleR = IconData(0xe120, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle R icon /// /// https://fontawesome.com/icons/circle-r?style=light /// Circled Latin Capital Letter R, letter - static const IconData lightCircleR = IconDataLight(0xe120); + static const IconData lightCircleR = IconData(0xe120, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle R icon /// /// https://fontawesome.com/icons/circle-r?style=thin /// Circled Latin Capital Letter R, letter - static const IconData thinCircleR = IconDataThin(0xe120); + static const IconData thinCircleR = IconData(0xe120, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Radiation icon /// /// https://fontawesome.com/icons/circle-radiation?style=solid /// danger, dangerous, deadly, hazard, nuclear, radioactive, sign, warning - static const IconData solidCircleRadiation = IconDataSolid(0xf7ba); + static const IconData solidCircleRadiation = IconData(0xf7ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias radiation-alt for icon [solidCircleRadiation] @Deprecated('Use "solidCircleRadiation" instead.') @@ -22236,7 +22236,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-radiation?style=regular /// danger, dangerous, deadly, hazard, nuclear, radioactive, sign, warning - static const IconData circleRadiation = IconDataRegular(0xf7ba); + static const IconData circleRadiation = IconData(0xf7ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias radiation-alt for icon [circleRadiation] @Deprecated('Use "circleRadiation" instead.') @@ -22246,7 +22246,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-radiation?style=light /// danger, dangerous, deadly, hazard, nuclear, radioactive, sign, warning - static const IconData lightCircleRadiation = IconDataLight(0xf7ba); + static const IconData lightCircleRadiation = IconData(0xf7ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias radiation-alt for icon [lightCircleRadiation] @Deprecated('Use "lightCircleRadiation" instead.') @@ -22256,7 +22256,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-radiation?style=thin /// danger, dangerous, deadly, hazard, nuclear, radioactive, sign, warning - static const IconData thinCircleRadiation = IconDataThin(0xf7ba); + static const IconData thinCircleRadiation = IconData(0xf7ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias radiation-alt for icon [thinCircleRadiation] @Deprecated('Use "thinCircleRadiation" instead.') @@ -22266,7 +22266,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-right?style=solid /// arrow-circle-o-right, forward, next - static const IconData solidCircleRight = IconDataSolid(0xf35a); + static const IconData solidCircleRight = IconData(0xf35a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-right for icon [solidCircleRight] @Deprecated('Use "solidCircleRight" instead.') @@ -22276,7 +22276,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-right?style=regular /// arrow-circle-o-right, forward, next - static const IconData circleRight = IconDataRegular(0xf35a); + static const IconData circleRight = IconData(0xf35a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-right for icon [circleRight] @Deprecated('Use "circleRight" instead.') @@ -22286,7 +22286,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-right?style=light /// arrow-circle-o-right, forward, next - static const IconData lightCircleRight = IconDataLight(0xf35a); + static const IconData lightCircleRight = IconData(0xf35a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-right for icon [lightCircleRight] @Deprecated('Use "lightCircleRight" instead.') @@ -22296,7 +22296,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-right?style=thin /// arrow-circle-o-right, forward, next - static const IconData thinCircleRight = IconDataThin(0xf35a); + static const IconData thinCircleRight = IconData(0xf35a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-right for icon [thinCircleRight] @Deprecated('Use "thinCircleRight" instead.') @@ -22306,55 +22306,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-s?style=solid /// Circled Latin Capital Letter S, letter - static const IconData solidCircleS = IconDataSolid(0xe121); + static const IconData solidCircleS = IconData(0xe121, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle S icon /// /// https://fontawesome.com/icons/circle-s?style=regular /// Circled Latin Capital Letter S, letter - static const IconData circleS = IconDataRegular(0xe121); + static const IconData circleS = IconData(0xe121, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle S icon /// /// https://fontawesome.com/icons/circle-s?style=light /// Circled Latin Capital Letter S, letter - static const IconData lightCircleS = IconDataLight(0xe121); + static const IconData lightCircleS = IconData(0xe121, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle S icon /// /// https://fontawesome.com/icons/circle-s?style=thin /// Circled Latin Capital Letter S, letter - static const IconData thinCircleS = IconDataThin(0xe121); + static const IconData thinCircleS = IconData(0xe121, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Small icon /// /// https://fontawesome.com/icons/circle-small?style=solid /// dot, period - static const IconData solidCircleSmall = IconDataSolid(0xe122); + static const IconData solidCircleSmall = IconData(0xe122, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Small icon /// /// https://fontawesome.com/icons/circle-small?style=regular /// dot, period - static const IconData circleSmall = IconDataRegular(0xe122); + static const IconData circleSmall = IconData(0xe122, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Small icon /// /// https://fontawesome.com/icons/circle-small?style=light /// dot, period - static const IconData lightCircleSmall = IconDataLight(0xe122); + static const IconData lightCircleSmall = IconData(0xe122, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Small icon /// /// https://fontawesome.com/icons/circle-small?style=thin /// dot, period - static const IconData thinCircleSmall = IconDataThin(0xe122); + static const IconData thinCircleSmall = IconData(0xe122, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Sort icon /// /// https://fontawesome.com/icons/circle-sort?style=solid /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData solidCircleSort = IconDataSolid(0xe030); + static const IconData solidCircleSort = IconData(0xe030, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle for icon [solidCircleSort] @Deprecated('Use "solidCircleSort" instead.') @@ -22364,7 +22364,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort?style=regular /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData circleSort = IconDataRegular(0xe030); + static const IconData circleSort = IconData(0xe030, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle for icon [circleSort] @Deprecated('Use "circleSort" instead.') @@ -22374,7 +22374,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort?style=light /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData lightCircleSort = IconDataLight(0xe030); + static const IconData lightCircleSort = IconData(0xe030, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle for icon [lightCircleSort] @Deprecated('Use "lightCircleSort" instead.') @@ -22384,7 +22384,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort?style=thin /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData thinCircleSort = IconDataThin(0xe030); + static const IconData thinCircleSort = IconData(0xe030, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle for icon [thinCircleSort] @Deprecated('Use "thinCircleSort" instead.') @@ -22394,7 +22394,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-down?style=solid /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData solidCircleSortDown = IconDataSolid(0xe031); + static const IconData solidCircleSortDown = IconData(0xe031, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-down for icon [solidCircleSortDown] @Deprecated('Use "solidCircleSortDown" instead.') @@ -22404,7 +22404,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-down?style=regular /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData circleSortDown = IconDataRegular(0xe031); + static const IconData circleSortDown = IconData(0xe031, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-down for icon [circleSortDown] @Deprecated('Use "circleSortDown" instead.') @@ -22414,7 +22414,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-down?style=light /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData lightCircleSortDown = IconDataLight(0xe031); + static const IconData lightCircleSortDown = IconData(0xe031, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-down for icon [lightCircleSortDown] @Deprecated('Use "lightCircleSortDown" instead.') @@ -22424,7 +22424,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-down?style=thin /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData thinCircleSortDown = IconDataThin(0xe031); + static const IconData thinCircleSortDown = IconData(0xe031, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-down for icon [thinCircleSortDown] @Deprecated('Use "thinCircleSortDown" instead.') @@ -22434,7 +22434,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-up?style=solid /// down, elevator, lower, raise, temperature, thermostat, up, upgrade - static const IconData solidCircleSortUp = IconDataSolid(0xe032); + static const IconData solidCircleSortUp = IconData(0xe032, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-up for icon [solidCircleSortUp] @Deprecated('Use "solidCircleSortUp" instead.') @@ -22444,7 +22444,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-up?style=regular /// down, elevator, lower, raise, temperature, thermostat, up, upgrade - static const IconData circleSortUp = IconDataRegular(0xe032); + static const IconData circleSortUp = IconData(0xe032, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-up for icon [circleSortUp] @Deprecated('Use "circleSortUp" instead.') @@ -22454,7 +22454,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-up?style=light /// down, elevator, lower, raise, temperature, thermostat, up, upgrade - static const IconData lightCircleSortUp = IconDataLight(0xe032); + static const IconData lightCircleSortUp = IconData(0xe032, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-up for icon [lightCircleSortUp] @Deprecated('Use "lightCircleSortUp" instead.') @@ -22464,7 +22464,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sort-up?style=thin /// down, elevator, lower, raise, temperature, thermostat, up, upgrade - static const IconData thinCircleSortUp = IconDataThin(0xe032); + static const IconData thinCircleSortUp = IconData(0xe032, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-circle-up for icon [thinCircleSortUp] @Deprecated('Use "thinCircleSortUp" instead.') @@ -22474,7 +22474,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-star?style=solid /// Circled White Star, favorite, quality, vip - static const IconData solidCircleStar = IconDataSolid(0xe123); + static const IconData solidCircleStar = IconData(0xe123, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias star-circle for icon [solidCircleStar] @Deprecated('Use "solidCircleStar" instead.') @@ -22484,7 +22484,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-star?style=regular /// Circled White Star, favorite, quality, vip - static const IconData circleStar = IconDataRegular(0xe123); + static const IconData circleStar = IconData(0xe123, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias star-circle for icon [circleStar] @Deprecated('Use "circleStar" instead.') @@ -22494,7 +22494,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-star?style=light /// Circled White Star, favorite, quality, vip - static const IconData lightCircleStar = IconDataLight(0xe123); + static const IconData lightCircleStar = IconData(0xe123, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias star-circle for icon [lightCircleStar] @Deprecated('Use "lightCircleStar" instead.') @@ -22504,7 +22504,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-star?style=thin /// Circled White Star, favorite, quality, vip - static const IconData thinCircleStar = IconDataThin(0xe123); + static const IconData thinCircleStar = IconData(0xe123, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias star-circle for icon [thinCircleStar] @Deprecated('Use "thinCircleStar" instead.') @@ -22514,31 +22514,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-sterling?style=solid /// coin, currency, pound sign - static const IconData solidCircleSterling = IconDataSolid(0xe5cf); + static const IconData solidCircleSterling = IconData(0xe5cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Sterling icon /// /// https://fontawesome.com/icons/circle-sterling?style=regular /// coin, currency, pound sign - static const IconData circleSterling = IconDataRegular(0xe5cf); + static const IconData circleSterling = IconData(0xe5cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Sterling icon /// /// https://fontawesome.com/icons/circle-sterling?style=light /// coin, currency, pound sign - static const IconData lightCircleSterling = IconDataLight(0xe5cf); + static const IconData lightCircleSterling = IconData(0xe5cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Sterling icon /// /// https://fontawesome.com/icons/circle-sterling?style=thin /// coin, currency, pound sign - static const IconData thinCircleSterling = IconDataThin(0xe5cf); + static const IconData thinCircleSterling = IconData(0xe5cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Stop icon /// /// https://fontawesome.com/icons/circle-stop?style=solid /// block, box, circle, square - static const IconData solidCircleStop = IconDataSolid(0xf28d); + static const IconData solidCircleStop = IconData(0xf28d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias stop-circle for icon [solidCircleStop] @Deprecated('Use "solidCircleStop" instead.') @@ -22548,7 +22548,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-stop?style=regular /// block, box, circle, square - static const IconData circleStop = IconDataRegular(0xf28d); + static const IconData circleStop = IconData(0xf28d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias stop-circle for icon [circleStop] @Deprecated('Use "circleStop" instead.') @@ -22558,7 +22558,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-stop?style=light /// block, box, circle, square - static const IconData lightCircleStop = IconDataLight(0xf28d); + static const IconData lightCircleStop = IconData(0xf28d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias stop-circle for icon [lightCircleStop] @Deprecated('Use "lightCircleStop" instead.') @@ -22568,7 +22568,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-stop?style=thin /// block, box, circle, square - static const IconData thinCircleStop = IconDataThin(0xf28d); + static const IconData thinCircleStop = IconData(0xf28d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias stop-circle for icon [thinCircleStop] @Deprecated('Use "thinCircleStop" instead.') @@ -22578,79 +22578,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-t?style=solid /// Circled Latin Capital Letter T, letter - static const IconData solidCircleT = IconDataSolid(0xe124); + static const IconData solidCircleT = IconData(0xe124, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle T icon /// /// https://fontawesome.com/icons/circle-t?style=regular /// Circled Latin Capital Letter T, letter - static const IconData circleT = IconDataRegular(0xe124); + static const IconData circleT = IconData(0xe124, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle T icon /// /// https://fontawesome.com/icons/circle-t?style=light /// Circled Latin Capital Letter T, letter - static const IconData lightCircleT = IconDataLight(0xe124); + static const IconData lightCircleT = IconData(0xe124, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle T icon /// /// https://fontawesome.com/icons/circle-t?style=thin /// Circled Latin Capital Letter T, letter - static const IconData thinCircleT = IconDataThin(0xe124); + static const IconData thinCircleT = IconData(0xe124, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Three Quarters icon /// /// https://fontawesome.com/icons/circle-three-quarters?style=solid /// chart, fill, pacman, pie chart, progress, revenue - static const IconData solidCircleThreeQuarters = IconDataSolid(0xe125); + static const IconData solidCircleThreeQuarters = IconData(0xe125, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Three Quarters icon /// /// https://fontawesome.com/icons/circle-three-quarters?style=regular /// chart, fill, pacman, pie chart, progress, revenue - static const IconData circleThreeQuarters = IconDataRegular(0xe125); + static const IconData circleThreeQuarters = IconData(0xe125, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Three Quarters icon /// /// https://fontawesome.com/icons/circle-three-quarters?style=light /// chart, fill, pacman, pie chart, progress, revenue - static const IconData lightCircleThreeQuarters = IconDataLight(0xe125); + static const IconData lightCircleThreeQuarters = IconData(0xe125, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Three Quarters icon /// /// https://fontawesome.com/icons/circle-three-quarters?style=thin /// chart, fill, pacman, pie chart, progress, revenue - static const IconData thinCircleThreeQuarters = IconDataThin(0xe125); + static const IconData thinCircleThreeQuarters = IconData(0xe125, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Three Quarters Stroke icon /// /// https://fontawesome.com/icons/circle-three-quarters-stroke?style=solid /// adjust, chart, fill, pie, progress - static const IconData solidCircleThreeQuartersStroke = IconDataSolid(0xe5d4); + static const IconData solidCircleThreeQuartersStroke = IconData(0xe5d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Three Quarters Stroke icon /// /// https://fontawesome.com/icons/circle-three-quarters-stroke?style=regular /// adjust, chart, fill, pie, progress - static const IconData circleThreeQuartersStroke = IconDataRegular(0xe5d4); + static const IconData circleThreeQuartersStroke = IconData(0xe5d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Three Quarters Stroke icon /// /// https://fontawesome.com/icons/circle-three-quarters-stroke?style=light /// adjust, chart, fill, pie, progress - static const IconData lightCircleThreeQuartersStroke = IconDataLight(0xe5d4); + static const IconData lightCircleThreeQuartersStroke = IconData(0xe5d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Three Quarters Stroke icon /// /// https://fontawesome.com/icons/circle-three-quarters-stroke?style=thin /// adjust, chart, fill, pie, progress - static const IconData thinCircleThreeQuartersStroke = IconDataThin(0xe5d4); + static const IconData thinCircleThreeQuartersStroke = IconData(0xe5d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Trash icon /// /// https://fontawesome.com/icons/circle-trash?style=solid /// delete, garbage, hide, remove - static const IconData solidCircleTrash = IconDataSolid(0xe126); + static const IconData solidCircleTrash = IconData(0xe126, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-circle for icon [solidCircleTrash] @Deprecated('Use "solidCircleTrash" instead.') @@ -22660,7 +22660,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-trash?style=regular /// delete, garbage, hide, remove - static const IconData circleTrash = IconDataRegular(0xe126); + static const IconData circleTrash = IconData(0xe126, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-circle for icon [circleTrash] @Deprecated('Use "circleTrash" instead.') @@ -22670,7 +22670,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-trash?style=light /// delete, garbage, hide, remove - static const IconData lightCircleTrash = IconDataLight(0xe126); + static const IconData lightCircleTrash = IconData(0xe126, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-circle for icon [lightCircleTrash] @Deprecated('Use "lightCircleTrash" instead.') @@ -22680,7 +22680,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-trash?style=thin /// delete, garbage, hide, remove - static const IconData thinCircleTrash = IconDataThin(0xe126); + static const IconData thinCircleTrash = IconData(0xe126, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-circle for icon [thinCircleTrash] @Deprecated('Use "thinCircleTrash" instead.') @@ -22690,31 +22690,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-u?style=solid /// Circled Latin Capital Letter U, letter - static const IconData solidCircleU = IconDataSolid(0xe127); + static const IconData solidCircleU = IconData(0xe127, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle U icon /// /// https://fontawesome.com/icons/circle-u?style=regular /// Circled Latin Capital Letter U, letter - static const IconData circleU = IconDataRegular(0xe127); + static const IconData circleU = IconData(0xe127, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle U icon /// /// https://fontawesome.com/icons/circle-u?style=light /// Circled Latin Capital Letter U, letter - static const IconData lightCircleU = IconDataLight(0xe127); + static const IconData lightCircleU = IconData(0xe127, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle U icon /// /// https://fontawesome.com/icons/circle-u?style=thin /// Circled Latin Capital Letter U, letter - static const IconData thinCircleU = IconDataThin(0xe127); + static const IconData thinCircleU = IconData(0xe127, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Up icon /// /// https://fontawesome.com/icons/circle-up?style=solid /// arrow-circle-o-up, upgrade - static const IconData solidCircleUp = IconDataSolid(0xf35b); + static const IconData solidCircleUp = IconData(0xf35b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-up for icon [solidCircleUp] @Deprecated('Use "solidCircleUp" instead.') @@ -22724,7 +22724,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-up?style=regular /// arrow-circle-o-up, upgrade - static const IconData circleUp = IconDataRegular(0xf35b); + static const IconData circleUp = IconData(0xf35b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-up for icon [circleUp] @Deprecated('Use "circleUp" instead.') @@ -22734,7 +22734,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-up?style=light /// arrow-circle-o-up, upgrade - static const IconData lightCircleUp = IconDataLight(0xf35b); + static const IconData lightCircleUp = IconData(0xf35b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-up for icon [lightCircleUp] @Deprecated('Use "lightCircleUp" instead.') @@ -22744,7 +22744,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-up?style=thin /// arrow-circle-o-up, upgrade - static const IconData thinCircleUp = IconDataThin(0xf35b); + static const IconData thinCircleUp = IconData(0xf35b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-circle-up for icon [thinCircleUp] @Deprecated('Use "thinCircleUp" instead.') @@ -22754,55 +22754,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-up-left?style=solid /// diagonal - static const IconData solidCircleUpLeft = IconDataSolid(0xe128); + static const IconData solidCircleUpLeft = IconData(0xe128, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Up Left icon /// /// https://fontawesome.com/icons/circle-up-left?style=regular /// diagonal - static const IconData circleUpLeft = IconDataRegular(0xe128); + static const IconData circleUpLeft = IconData(0xe128, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Up Left icon /// /// https://fontawesome.com/icons/circle-up-left?style=light /// diagonal - static const IconData lightCircleUpLeft = IconDataLight(0xe128); + static const IconData lightCircleUpLeft = IconData(0xe128, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Up Left icon /// /// https://fontawesome.com/icons/circle-up-left?style=thin /// diagonal - static const IconData thinCircleUpLeft = IconDataThin(0xe128); + static const IconData thinCircleUpLeft = IconData(0xe128, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Up Right icon /// /// https://fontawesome.com/icons/circle-up-right?style=solid /// diagonal - static const IconData solidCircleUpRight = IconDataSolid(0xe129); + static const IconData solidCircleUpRight = IconData(0xe129, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Up Right icon /// /// https://fontawesome.com/icons/circle-up-right?style=regular /// diagonal - static const IconData circleUpRight = IconDataRegular(0xe129); + static const IconData circleUpRight = IconData(0xe129, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Up Right icon /// /// https://fontawesome.com/icons/circle-up-right?style=light /// diagonal - static const IconData lightCircleUpRight = IconDataLight(0xe129); + static const IconData lightCircleUpRight = IconData(0xe129, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Up Right icon /// /// https://fontawesome.com/icons/circle-up-right?style=thin /// diagonal - static const IconData thinCircleUpRight = IconDataThin(0xe129); + static const IconData thinCircleUpRight = IconData(0xe129, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle User icon /// /// https://fontawesome.com/icons/circle-user?style=solid /// employee, uer, username, users-people - static const IconData solidCircleUser = IconDataSolid(0xf2bd); + static const IconData solidCircleUser = IconData(0xf2bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-circle for icon [solidCircleUser] @Deprecated('Use "solidCircleUser" instead.') @@ -22812,7 +22812,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-user?style=regular /// employee, uer, username, users-people - static const IconData circleUser = IconDataRegular(0xf2bd); + static const IconData circleUser = IconData(0xf2bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-circle for icon [circleUser] @Deprecated('Use "circleUser" instead.') @@ -22822,7 +22822,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-user?style=light /// employee, uer, username, users-people - static const IconData lightCircleUser = IconDataLight(0xf2bd); + static const IconData lightCircleUser = IconData(0xf2bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-circle for icon [lightCircleUser] @Deprecated('Use "lightCircleUser" instead.') @@ -22832,7 +22832,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-user?style=thin /// employee, uer, username, users-people - static const IconData thinCircleUser = IconDataThin(0xf2bd); + static const IconData thinCircleUser = IconData(0xf2bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-circle for icon [thinCircleUser] @Deprecated('Use "thinCircleUser" instead.') @@ -22842,31 +22842,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-v?style=solid /// Circled Latin Capital Letter V, letter - static const IconData solidCircleV = IconDataSolid(0xe12a); + static const IconData solidCircleV = IconData(0xe12a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle V icon /// /// https://fontawesome.com/icons/circle-v?style=regular /// Circled Latin Capital Letter V, letter - static const IconData circleV = IconDataRegular(0xe12a); + static const IconData circleV = IconData(0xe12a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle V icon /// /// https://fontawesome.com/icons/circle-v?style=light /// Circled Latin Capital Letter V, letter - static const IconData lightCircleV = IconDataLight(0xe12a); + static const IconData lightCircleV = IconData(0xe12a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle V icon /// /// https://fontawesome.com/icons/circle-v?style=thin /// Circled Latin Capital Letter V, letter - static const IconData thinCircleV = IconDataThin(0xe12a); + static const IconData thinCircleV = IconData(0xe12a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Video icon /// /// https://fontawesome.com/icons/circle-video?style=solid /// camera, film - static const IconData solidCircleVideo = IconDataSolid(0xe12b); + static const IconData solidCircleVideo = IconData(0xe12b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias video-circle for icon [solidCircleVideo] @Deprecated('Use "solidCircleVideo" instead.') @@ -22876,7 +22876,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-video?style=regular /// camera, film - static const IconData circleVideo = IconDataRegular(0xe12b); + static const IconData circleVideo = IconData(0xe12b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias video-circle for icon [circleVideo] @Deprecated('Use "circleVideo" instead.') @@ -22886,7 +22886,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-video?style=light /// camera, film - static const IconData lightCircleVideo = IconDataLight(0xe12b); + static const IconData lightCircleVideo = IconData(0xe12b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias video-circle for icon [lightCircleVideo] @Deprecated('Use "lightCircleVideo" instead.') @@ -22896,7 +22896,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-video?style=thin /// camera, film - static const IconData thinCircleVideo = IconDataThin(0xe12b); + static const IconData thinCircleVideo = IconData(0xe12b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias video-circle for icon [thinCircleVideo] @Deprecated('Use "thinCircleVideo" instead.') @@ -22906,31 +22906,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-w?style=solid /// Circled Latin Capital Letter W, letter - static const IconData solidCircleW = IconDataSolid(0xe12c); + static const IconData solidCircleW = IconData(0xe12c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle W icon /// /// https://fontawesome.com/icons/circle-w?style=regular /// Circled Latin Capital Letter W, letter - static const IconData circleW = IconDataRegular(0xe12c); + static const IconData circleW = IconData(0xe12c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle W icon /// /// https://fontawesome.com/icons/circle-w?style=light /// Circled Latin Capital Letter W, letter - static const IconData lightCircleW = IconDataLight(0xe12c); + static const IconData lightCircleW = IconData(0xe12c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle W icon /// /// https://fontawesome.com/icons/circle-w?style=thin /// Circled Latin Capital Letter W, letter - static const IconData thinCircleW = IconDataThin(0xe12c); + static const IconData thinCircleW = IconData(0xe12c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Waveform Lines icon /// /// https://fontawesome.com/icons/circle-waveform-lines?style=solid /// signal - static const IconData solidCircleWaveformLines = IconDataSolid(0xe12d); + static const IconData solidCircleWaveformLines = IconData(0xe12d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias waveform-circle for icon [solidCircleWaveformLines] @Deprecated('Use "solidCircleWaveformLines" instead.') @@ -22940,7 +22940,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-waveform-lines?style=regular /// signal - static const IconData circleWaveformLines = IconDataRegular(0xe12d); + static const IconData circleWaveformLines = IconData(0xe12d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias waveform-circle for icon [circleWaveformLines] @Deprecated('Use "circleWaveformLines" instead.') @@ -22950,7 +22950,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-waveform-lines?style=light /// signal - static const IconData lightCircleWaveformLines = IconDataLight(0xe12d); + static const IconData lightCircleWaveformLines = IconData(0xe12d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias waveform-circle for icon [lightCircleWaveformLines] @Deprecated('Use "lightCircleWaveformLines" instead.') @@ -22960,7 +22960,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-waveform-lines?style=thin /// signal - static const IconData thinCircleWaveformLines = IconDataThin(0xe12d); + static const IconData thinCircleWaveformLines = IconData(0xe12d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias waveform-circle for icon [thinCircleWaveformLines] @Deprecated('Use "thinCircleWaveformLines" instead.') @@ -22970,31 +22970,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-x?style=solid /// Circled Latin Capital Letter X, letter, uncheck - static const IconData solidCircleX = IconDataSolid(0xe12e); + static const IconData solidCircleX = IconData(0xe12e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle X icon /// /// https://fontawesome.com/icons/circle-x?style=regular /// Circled Latin Capital Letter X, letter, uncheck - static const IconData circleX = IconDataRegular(0xe12e); + static const IconData circleX = IconData(0xe12e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle X icon /// /// https://fontawesome.com/icons/circle-x?style=light /// Circled Latin Capital Letter X, letter, uncheck - static const IconData lightCircleX = IconDataLight(0xe12e); + static const IconData lightCircleX = IconData(0xe12e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle X icon /// /// https://fontawesome.com/icons/circle-x?style=thin /// Circled Latin Capital Letter X, letter, uncheck - static const IconData thinCircleX = IconDataThin(0xe12e); + static const IconData thinCircleX = IconData(0xe12e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Xmark icon /// /// https://fontawesome.com/icons/circle-xmark?style=solid /// close, cross, destroy, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData solidCircleXmark = IconDataSolid(0xf057); + static const IconData solidCircleXmark = IconData(0xf057, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias times-circle for icon [solidCircleXmark] @Deprecated('Use "solidCircleXmark" instead.') @@ -23008,7 +23008,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-xmark?style=regular /// close, cross, destroy, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData circleXmark = IconDataRegular(0xf057); + static const IconData circleXmark = IconData(0xf057, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias times-circle for icon [circleXmark] @Deprecated('Use "circleXmark" instead.') @@ -23022,7 +23022,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-xmark?style=light /// close, cross, destroy, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData lightCircleXmark = IconDataLight(0xf057); + static const IconData lightCircleXmark = IconData(0xf057, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias times-circle for icon [lightCircleXmark] @Deprecated('Use "lightCircleXmark" instead.') @@ -23036,7 +23036,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-xmark?style=thin /// close, cross, destroy, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData thinCircleXmark = IconDataThin(0xf057); + static const IconData thinCircleXmark = IconData(0xf057, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias times-circle for icon [thinCircleXmark] @Deprecated('Use "thinCircleXmark" instead.') @@ -23050,463 +23050,463 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/circle-y?style=solid /// Circled Latin Capital Letter Y, letter, yay, yes - static const IconData solidCircleY = IconDataSolid(0xe12f); + static const IconData solidCircleY = IconData(0xe12f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Y icon /// /// https://fontawesome.com/icons/circle-y?style=regular /// Circled Latin Capital Letter Y, letter, yay, yes - static const IconData circleY = IconDataRegular(0xe12f); + static const IconData circleY = IconData(0xe12f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Y icon /// /// https://fontawesome.com/icons/circle-y?style=light /// Circled Latin Capital Letter Y, letter, yay, yes - static const IconData lightCircleY = IconDataLight(0xe12f); + static const IconData lightCircleY = IconData(0xe12f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Y icon /// /// https://fontawesome.com/icons/circle-y?style=thin /// Circled Latin Capital Letter Y, letter, yay, yes - static const IconData thinCircleY = IconDataThin(0xe12f); + static const IconData thinCircleY = IconData(0xe12f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Yen icon /// /// https://fontawesome.com/icons/circle-yen?style=solid /// coin, currency, yen sign - static const IconData solidCircleYen = IconDataSolid(0xe5d0); + static const IconData solidCircleYen = IconData(0xe5d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Yen icon /// /// https://fontawesome.com/icons/circle-yen?style=regular /// coin, currency, yen sign - static const IconData circleYen = IconDataRegular(0xe5d0); + static const IconData circleYen = IconData(0xe5d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Yen icon /// /// https://fontawesome.com/icons/circle-yen?style=light /// coin, currency, yen sign - static const IconData lightCircleYen = IconDataLight(0xe5d0); + static const IconData lightCircleYen = IconData(0xe5d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Yen icon /// /// https://fontawesome.com/icons/circle-yen?style=thin /// coin, currency, yen sign - static const IconData thinCircleYen = IconDataThin(0xe5d0); + static const IconData thinCircleYen = IconData(0xe5d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circle Z icon /// /// https://fontawesome.com/icons/circle-z?style=solid /// Circled Latin Capital Letter Z, letter - static const IconData solidCircleZ = IconDataSolid(0xe130); + static const IconData solidCircleZ = IconData(0xe130, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circle Z icon /// /// https://fontawesome.com/icons/circle-z?style=regular /// Circled Latin Capital Letter Z, letter - static const IconData circleZ = IconDataRegular(0xe130); + static const IconData circleZ = IconData(0xe130, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circle Z icon /// /// https://fontawesome.com/icons/circle-z?style=light /// Circled Latin Capital Letter Z, letter - static const IconData lightCircleZ = IconDataLight(0xe130); + static const IconData lightCircleZ = IconData(0xe130, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circle Z icon /// /// https://fontawesome.com/icons/circle-z?style=thin /// Circled Latin Capital Letter Z, letter - static const IconData thinCircleZ = IconDataThin(0xe130); + static const IconData thinCircleZ = IconData(0xe130, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Circles Overlap icon /// /// https://fontawesome.com/icons/circles-overlap?style=solid /// combine, intersection, logic, overlap, partnership, venn, chart - static const IconData solidCirclesOverlap = IconDataSolid(0xe600); + static const IconData solidCirclesOverlap = IconData(0xe600, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Circles Overlap icon /// /// https://fontawesome.com/icons/circles-overlap?style=regular /// combine, intersection, logic, overlap, partnership, venn, chart - static const IconData circlesOverlap = IconDataRegular(0xe600); + static const IconData circlesOverlap = IconData(0xe600, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Circles Overlap icon /// /// https://fontawesome.com/icons/circles-overlap?style=light /// combine, intersection, logic, overlap, partnership, venn, chart - static const IconData lightCirclesOverlap = IconDataLight(0xe600); + static const IconData lightCirclesOverlap = IconData(0xe600, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Circles Overlap icon /// /// https://fontawesome.com/icons/circles-overlap?style=thin /// combine, intersection, logic, overlap, partnership, venn, chart - static const IconData thinCirclesOverlap = IconDataThin(0xe600); + static const IconData thinCirclesOverlap = IconData(0xe600, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Citrus icon /// /// https://fontawesome.com/icons/citrus?style=solid /// fruit, grapefruit, juice, mandarin, orange, tangerine - static const IconData solidCitrus = IconDataSolid(0xe2f4); + static const IconData solidCitrus = IconData(0xe2f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Citrus icon /// /// https://fontawesome.com/icons/citrus?style=regular /// fruit, grapefruit, juice, mandarin, orange, tangerine - static const IconData citrus = IconDataRegular(0xe2f4); + static const IconData citrus = IconData(0xe2f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Citrus icon /// /// https://fontawesome.com/icons/citrus?style=light /// fruit, grapefruit, juice, mandarin, orange, tangerine - static const IconData lightCitrus = IconDataLight(0xe2f4); + static const IconData lightCitrus = IconData(0xe2f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Citrus icon /// /// https://fontawesome.com/icons/citrus?style=thin /// fruit, grapefruit, juice, mandarin, orange, tangerine - static const IconData thinCitrus = IconDataThin(0xe2f4); + static const IconData thinCitrus = IconData(0xe2f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Citrus Slice icon /// /// https://fontawesome.com/icons/citrus-slice?style=solid /// grapefruit, juice, lemon, lime, mandarin, orange, tangerine, wedge - static const IconData solidCitrusSlice = IconDataSolid(0xe2f5); + static const IconData solidCitrusSlice = IconData(0xe2f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Citrus Slice icon /// /// https://fontawesome.com/icons/citrus-slice?style=regular /// grapefruit, juice, lemon, lime, mandarin, orange, tangerine, wedge - static const IconData citrusSlice = IconDataRegular(0xe2f5); + static const IconData citrusSlice = IconData(0xe2f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Citrus Slice icon /// /// https://fontawesome.com/icons/citrus-slice?style=light /// grapefruit, juice, lemon, lime, mandarin, orange, tangerine, wedge - static const IconData lightCitrusSlice = IconDataLight(0xe2f5); + static const IconData lightCitrusSlice = IconData(0xe2f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Citrus Slice icon /// /// https://fontawesome.com/icons/citrus-slice?style=thin /// grapefruit, juice, lemon, lime, mandarin, orange, tangerine, wedge - static const IconData thinCitrusSlice = IconDataThin(0xe2f5); + static const IconData thinCitrusSlice = IconData(0xe2f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid City icon /// /// https://fontawesome.com/icons/city?style=solid /// buildings, busy, city, cityscape, skyscrapers, urban, windows - static const IconData solidCity = IconDataSolid(0xf64f); + static const IconData solidCity = IconData(0xf64f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular City icon /// /// https://fontawesome.com/icons/city?style=regular /// buildings, busy, city, cityscape, skyscrapers, urban, windows - static const IconData city = IconDataRegular(0xf64f); + static const IconData city = IconData(0xf64f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light City icon /// /// https://fontawesome.com/icons/city?style=light /// buildings, busy, city, cityscape, skyscrapers, urban, windows - static const IconData lightCity = IconDataLight(0xf64f); + static const IconData lightCity = IconData(0xf64f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin City icon /// /// https://fontawesome.com/icons/city?style=thin /// buildings, busy, city, cityscape, skyscrapers, urban, windows - static const IconData thinCity = IconDataThin(0xf64f); + static const IconData thinCity = IconData(0xf64f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clapperboard icon /// /// https://fontawesome.com/icons/clapperboard?style=solid /// camera, clapper, clapper board, director, film, movie, record - static const IconData solidClapperboard = IconDataSolid(0xe131); + static const IconData solidClapperboard = IconData(0xe131, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clapperboard icon /// /// https://fontawesome.com/icons/clapperboard?style=regular /// camera, clapper, clapper board, director, film, movie, record - static const IconData clapperboard = IconDataRegular(0xe131); + static const IconData clapperboard = IconData(0xe131, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clapperboard icon /// /// https://fontawesome.com/icons/clapperboard?style=light /// camera, clapper, clapper board, director, film, movie, record - static const IconData lightClapperboard = IconDataLight(0xe131); + static const IconData lightClapperboard = IconData(0xe131, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clapperboard icon /// /// https://fontawesome.com/icons/clapperboard?style=thin /// camera, clapper, clapper board, director, film, movie, record - static const IconData thinClapperboard = IconDataThin(0xe131); + static const IconData thinClapperboard = IconData(0xe131, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clapperboard Play icon /// /// https://fontawesome.com/icons/clapperboard-play?style=solid /// camera, director, film, movie, record - static const IconData solidClapperboardPlay = IconDataSolid(0xe132); + static const IconData solidClapperboardPlay = IconData(0xe132, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clapperboard Play icon /// /// https://fontawesome.com/icons/clapperboard-play?style=regular /// camera, director, film, movie, record - static const IconData clapperboardPlay = IconDataRegular(0xe132); + static const IconData clapperboardPlay = IconData(0xe132, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clapperboard Play icon /// /// https://fontawesome.com/icons/clapperboard-play?style=light /// camera, director, film, movie, record - static const IconData lightClapperboardPlay = IconDataLight(0xe132); + static const IconData lightClapperboardPlay = IconData(0xe132, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clapperboard Play icon /// /// https://fontawesome.com/icons/clapperboard-play?style=thin /// camera, director, film, movie, record - static const IconData thinClapperboardPlay = IconDataThin(0xe132); + static const IconData thinClapperboardPlay = IconData(0xe132, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clarinet icon /// /// https://fontawesome.com/icons/clarinet?style=solid /// instrument, jazz, music, woodwind - static const IconData solidClarinet = IconDataSolid(0xf8ad); + static const IconData solidClarinet = IconData(0xf8ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clarinet icon /// /// https://fontawesome.com/icons/clarinet?style=regular /// instrument, jazz, music, woodwind - static const IconData clarinet = IconDataRegular(0xf8ad); + static const IconData clarinet = IconData(0xf8ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clarinet icon /// /// https://fontawesome.com/icons/clarinet?style=light /// instrument, jazz, music, woodwind - static const IconData lightClarinet = IconDataLight(0xf8ad); + static const IconData lightClarinet = IconData(0xf8ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clarinet icon /// /// https://fontawesome.com/icons/clarinet?style=thin /// instrument, jazz, music, woodwind - static const IconData thinClarinet = IconDataThin(0xf8ad); + static const IconData thinClarinet = IconData(0xf8ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Claw Marks icon /// /// https://fontawesome.com/icons/claw-marks?style=solid /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconData solidClawMarks = IconDataSolid(0xf6c2); + static const IconData solidClawMarks = IconData(0xf6c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Claw Marks icon /// /// https://fontawesome.com/icons/claw-marks?style=regular /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconData clawMarks = IconDataRegular(0xf6c2); + static const IconData clawMarks = IconData(0xf6c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Claw Marks icon /// /// https://fontawesome.com/icons/claw-marks?style=light /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconData lightClawMarks = IconDataLight(0xf6c2); + static const IconData lightClawMarks = IconData(0xf6c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Claw Marks icon /// /// https://fontawesome.com/icons/claw-marks?style=thin /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconData thinClawMarks = IconDataThin(0xf6c2); + static const IconData thinClawMarks = IconData(0xf6c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard icon /// /// https://fontawesome.com/icons/clipboard?style=solid /// clipboar, clipboard, copy, notepad, notes, paste, record - static const IconData solidClipboard = IconDataSolid(0xf328); + static const IconData solidClipboard = IconData(0xf328, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard icon /// /// https://fontawesome.com/icons/clipboard?style=regular /// clipboar, clipboard, copy, notepad, notes, paste, record - static const IconData clipboard = IconDataRegular(0xf328); + static const IconData clipboard = IconData(0xf328, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard icon /// /// https://fontawesome.com/icons/clipboard?style=light /// clipboar, clipboard, copy, notepad, notes, paste, record - static const IconData lightClipboard = IconDataLight(0xf328); + static const IconData lightClipboard = IconData(0xf328, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard icon /// /// https://fontawesome.com/icons/clipboard?style=thin /// clipboar, clipboard, copy, notepad, notes, paste, record - static const IconData thinClipboard = IconDataThin(0xf328); + static const IconData thinClipboard = IconData(0xf328, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard Check icon /// /// https://fontawesome.com/icons/clipboard-check?style=solid /// accept, agree, confirm, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData solidClipboardCheck = IconDataSolid(0xf46c); + static const IconData solidClipboardCheck = IconData(0xf46c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard Check icon /// /// https://fontawesome.com/icons/clipboard-check?style=regular /// accept, agree, confirm, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData clipboardCheck = IconDataRegular(0xf46c); + static const IconData clipboardCheck = IconData(0xf46c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard Check icon /// /// https://fontawesome.com/icons/clipboard-check?style=light /// accept, agree, confirm, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData lightClipboardCheck = IconDataLight(0xf46c); + static const IconData lightClipboardCheck = IconData(0xf46c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard Check icon /// /// https://fontawesome.com/icons/clipboard-check?style=thin /// accept, agree, confirm, coupon, done, enable, ok, select, success, tick, todo, validate, working, yes - static const IconData thinClipboardCheck = IconDataThin(0xf46c); + static const IconData thinClipboardCheck = IconData(0xf46c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard List icon /// /// https://fontawesome.com/icons/clipboard-list?style=solid /// cheatsheet, checklist, completed, done, finished, intinerary, ol, schedule, summary, tick, todo, ul, wishlist - static const IconData solidClipboardList = IconDataSolid(0xf46d); + static const IconData solidClipboardList = IconData(0xf46d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard List icon /// /// https://fontawesome.com/icons/clipboard-list?style=regular /// cheatsheet, checklist, completed, done, finished, intinerary, ol, schedule, summary, tick, todo, ul, wishlist - static const IconData clipboardList = IconDataRegular(0xf46d); + static const IconData clipboardList = IconData(0xf46d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard List icon /// /// https://fontawesome.com/icons/clipboard-list?style=light /// cheatsheet, checklist, completed, done, finished, intinerary, ol, schedule, summary, tick, todo, ul, wishlist - static const IconData lightClipboardList = IconDataLight(0xf46d); + static const IconData lightClipboardList = IconData(0xf46d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard List icon /// /// https://fontawesome.com/icons/clipboard-list?style=thin /// cheatsheet, checklist, completed, done, finished, intinerary, ol, schedule, summary, tick, todo, ul, wishlist - static const IconData thinClipboardList = IconDataThin(0xf46d); + static const IconData thinClipboardList = IconData(0xf46d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard List Check icon /// /// https://fontawesome.com/icons/clipboard-list-check?style=solid /// cheatsheet, checklist, completed, done, election, enable, finished, intinerary, ol, schedule, summary, tick, todo, ul, validate, vote, voting, working - static const IconData solidClipboardListCheck = IconDataSolid(0xf737); + static const IconData solidClipboardListCheck = IconData(0xf737, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard List Check icon /// /// https://fontawesome.com/icons/clipboard-list-check?style=regular /// cheatsheet, checklist, completed, done, election, enable, finished, intinerary, ol, schedule, summary, tick, todo, ul, validate, vote, voting, working - static const IconData clipboardListCheck = IconDataRegular(0xf737); + static const IconData clipboardListCheck = IconData(0xf737, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard List Check icon /// /// https://fontawesome.com/icons/clipboard-list-check?style=light /// cheatsheet, checklist, completed, done, election, enable, finished, intinerary, ol, schedule, summary, tick, todo, ul, validate, vote, voting, working - static const IconData lightClipboardListCheck = IconDataLight(0xf737); + static const IconData lightClipboardListCheck = IconData(0xf737, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard List Check icon /// /// https://fontawesome.com/icons/clipboard-list-check?style=thin /// cheatsheet, checklist, completed, done, election, enable, finished, intinerary, ol, schedule, summary, tick, todo, ul, validate, vote, voting, working - static const IconData thinClipboardListCheck = IconDataThin(0xf737); + static const IconData thinClipboardListCheck = IconData(0xf737, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard Medical icon /// /// https://fontawesome.com/icons/clipboard-medical?style=solid /// copy, paste, patient, records - static const IconData solidClipboardMedical = IconDataSolid(0xe133); + static const IconData solidClipboardMedical = IconData(0xe133, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard Medical icon /// /// https://fontawesome.com/icons/clipboard-medical?style=regular /// copy, paste, patient, records - static const IconData clipboardMedical = IconDataRegular(0xe133); + static const IconData clipboardMedical = IconData(0xe133, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard Medical icon /// /// https://fontawesome.com/icons/clipboard-medical?style=light /// copy, paste, patient, records - static const IconData lightClipboardMedical = IconDataLight(0xe133); + static const IconData lightClipboardMedical = IconData(0xe133, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard Medical icon /// /// https://fontawesome.com/icons/clipboard-medical?style=thin /// copy, paste, patient, records - static const IconData thinClipboardMedical = IconDataThin(0xe133); + static const IconData thinClipboardMedical = IconData(0xe133, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard Prescription icon /// /// https://fontawesome.com/icons/clipboard-prescription?style=solid /// copy, history, medical, notes, paste, record - static const IconData solidClipboardPrescription = IconDataSolid(0xf5e8); + static const IconData solidClipboardPrescription = IconData(0xf5e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard Prescription icon /// /// https://fontawesome.com/icons/clipboard-prescription?style=regular /// copy, history, medical, notes, paste, record - static const IconData clipboardPrescription = IconDataRegular(0xf5e8); + static const IconData clipboardPrescription = IconData(0xf5e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard Prescription icon /// /// https://fontawesome.com/icons/clipboard-prescription?style=light /// copy, history, medical, notes, paste, record - static const IconData lightClipboardPrescription = IconDataLight(0xf5e8); + static const IconData lightClipboardPrescription = IconData(0xf5e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard Prescription icon /// /// https://fontawesome.com/icons/clipboard-prescription?style=thin /// copy, history, medical, notes, paste, record - static const IconData thinClipboardPrescription = IconDataThin(0xf5e8); + static const IconData thinClipboardPrescription = IconData(0xf5e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard Question icon /// /// https://fontawesome.com/icons/clipboard-question?style=solid /// assistance, faq, interview, query, question - static const IconData solidClipboardQuestion = IconDataSolid(0xe4e3); + static const IconData solidClipboardQuestion = IconData(0xe4e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard Question icon /// /// https://fontawesome.com/icons/clipboard-question?style=regular /// assistance, faq, interview, query, question - static const IconData clipboardQuestion = IconDataRegular(0xe4e3); + static const IconData clipboardQuestion = IconData(0xe4e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard Question icon /// /// https://fontawesome.com/icons/clipboard-question?style=light /// assistance, faq, interview, query, question - static const IconData lightClipboardQuestion = IconDataLight(0xe4e3); + static const IconData lightClipboardQuestion = IconData(0xe4e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard Question icon /// /// https://fontawesome.com/icons/clipboard-question?style=thin /// assistance, faq, interview, query, question - static const IconData thinClipboardQuestion = IconDataThin(0xe4e3); + static const IconData thinClipboardQuestion = IconData(0xe4e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clipboard User icon /// /// https://fontawesome.com/icons/clipboard-user?style=solid /// attendance, employee, record, roster, staff, uer - static const IconData solidClipboardUser = IconDataSolid(0xf7f3); + static const IconData solidClipboardUser = IconData(0xf7f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clipboard User icon /// /// https://fontawesome.com/icons/clipboard-user?style=regular /// attendance, employee, record, roster, staff, uer - static const IconData clipboardUser = IconDataRegular(0xf7f3); + static const IconData clipboardUser = IconData(0xf7f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clipboard User icon /// /// https://fontawesome.com/icons/clipboard-user?style=light /// attendance, employee, record, roster, staff, uer - static const IconData lightClipboardUser = IconDataLight(0xf7f3); + static const IconData lightClipboardUser = IconData(0xf7f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clipboard User icon /// /// https://fontawesome.com/icons/clipboard-user?style=thin /// attendance, employee, record, roster, staff, uer - static const IconData thinClipboardUser = IconDataThin(0xf7f3); + static const IconData thinClipboardUser = IconData(0xf7f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock icon /// /// https://fontawesome.com/icons/clock?style=solid /// 00, 4, 4:00, clock, date, four, four o’clock, hour, late, minute, o'clock, o’clock, pending, schedule, ticking, time, timer, timestamp, watch - static const IconData solidClock = IconDataSolid(0xf017); + static const IconData solidClock = IconData(0xf017, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias clock-four for icon [solidClock] @Deprecated('Use "solidClock" instead.') @@ -23516,7 +23516,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock?style=regular /// 00, 4, 4:00, clock, date, four, four o’clock, hour, late, minute, o'clock, o’clock, pending, schedule, ticking, time, timer, timestamp, watch - static const IconData clock = IconDataRegular(0xf017); + static const IconData clock = IconData(0xf017, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias clock-four for icon [clock] @Deprecated('Use "clock" instead.') @@ -23526,7 +23526,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock?style=light /// 00, 4, 4:00, clock, date, four, four o’clock, hour, late, minute, o'clock, o’clock, pending, schedule, ticking, time, timer, timestamp, watch - static const IconData lightClock = IconDataLight(0xf017); + static const IconData lightClock = IconData(0xf017, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias clock-four for icon [lightClock] @Deprecated('Use "lightClock" instead.') @@ -23536,7 +23536,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock?style=thin /// 00, 4, 4:00, clock, date, four, four o’clock, hour, late, minute, o'clock, o’clock, pending, schedule, ticking, time, timer, timestamp, watch - static const IconData thinClock = IconDataThin(0xf017); + static const IconData thinClock = IconData(0xf017, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias clock-four for icon [thinClock] @Deprecated('Use "thinClock" instead.') @@ -23546,295 +23546,295 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock-desk?style=solid /// alarm, clock, mantelpiece clock, pending, timer - static const IconData solidClockDesk = IconDataSolid(0xe134); + static const IconData solidClockDesk = IconData(0xe134, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Desk icon /// /// https://fontawesome.com/icons/clock-desk?style=regular /// alarm, clock, mantelpiece clock, pending, timer - static const IconData clockDesk = IconDataRegular(0xe134); + static const IconData clockDesk = IconData(0xe134, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Desk icon /// /// https://fontawesome.com/icons/clock-desk?style=light /// alarm, clock, mantelpiece clock, pending, timer - static const IconData lightClockDesk = IconDataLight(0xe134); + static const IconData lightClockDesk = IconData(0xe134, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Desk icon /// /// https://fontawesome.com/icons/clock-desk?style=thin /// alarm, clock, mantelpiece clock, pending, timer - static const IconData thinClockDesk = IconDataThin(0xe134); + static const IconData thinClockDesk = IconData(0xe134, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Eight icon /// /// https://fontawesome.com/icons/clock-eight?style=solid /// 00, 8, 8:00, clock, eight, eight o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData solidClockEight = IconDataSolid(0xe345); + static const IconData solidClockEight = IconData(0xe345, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Eight icon /// /// https://fontawesome.com/icons/clock-eight?style=regular /// 00, 8, 8:00, clock, eight, eight o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData clockEight = IconDataRegular(0xe345); + static const IconData clockEight = IconData(0xe345, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Eight icon /// /// https://fontawesome.com/icons/clock-eight?style=light /// 00, 8, 8:00, clock, eight, eight o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData lightClockEight = IconDataLight(0xe345); + static const IconData lightClockEight = IconData(0xe345, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Eight icon /// /// https://fontawesome.com/icons/clock-eight?style=thin /// 00, 8, 8:00, clock, eight, eight o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData thinClockEight = IconDataThin(0xe345); + static const IconData thinClockEight = IconData(0xe345, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Eight Thirty icon /// /// https://fontawesome.com/icons/clock-eight-thirty?style=solid /// 8, 8:30, clock, eight, eight-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData solidClockEightThirty = IconDataSolid(0xe346); + static const IconData solidClockEightThirty = IconData(0xe346, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Eight Thirty icon /// /// https://fontawesome.com/icons/clock-eight-thirty?style=regular /// 8, 8:30, clock, eight, eight-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData clockEightThirty = IconDataRegular(0xe346); + static const IconData clockEightThirty = IconData(0xe346, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Eight Thirty icon /// /// https://fontawesome.com/icons/clock-eight-thirty?style=light /// 8, 8:30, clock, eight, eight-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData lightClockEightThirty = IconDataLight(0xe346); + static const IconData lightClockEightThirty = IconData(0xe346, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Eight Thirty icon /// /// https://fontawesome.com/icons/clock-eight-thirty?style=thin /// 8, 8:30, clock, eight, eight-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData thinClockEightThirty = IconDataThin(0xe346); + static const IconData thinClockEightThirty = IconData(0xe346, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Eleven icon /// /// https://fontawesome.com/icons/clock-eleven?style=solid /// 00, 11, 11:00, clock, eleven, eleven o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData solidClockEleven = IconDataSolid(0xe347); + static const IconData solidClockEleven = IconData(0xe347, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Eleven icon /// /// https://fontawesome.com/icons/clock-eleven?style=regular /// 00, 11, 11:00, clock, eleven, eleven o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData clockEleven = IconDataRegular(0xe347); + static const IconData clockEleven = IconData(0xe347, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Eleven icon /// /// https://fontawesome.com/icons/clock-eleven?style=light /// 00, 11, 11:00, clock, eleven, eleven o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData lightClockEleven = IconDataLight(0xe347); + static const IconData lightClockEleven = IconData(0xe347, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Eleven icon /// /// https://fontawesome.com/icons/clock-eleven?style=thin /// 00, 11, 11:00, clock, eleven, eleven o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData thinClockEleven = IconDataThin(0xe347); + static const IconData thinClockEleven = IconData(0xe347, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Eleven Thirty icon /// /// https://fontawesome.com/icons/clock-eleven-thirty?style=solid /// 11, 11:30, clock, eleven, eleven-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData solidClockElevenThirty = IconDataSolid(0xe348); + static const IconData solidClockElevenThirty = IconData(0xe348, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Eleven Thirty icon /// /// https://fontawesome.com/icons/clock-eleven-thirty?style=regular /// 11, 11:30, clock, eleven, eleven-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData clockElevenThirty = IconDataRegular(0xe348); + static const IconData clockElevenThirty = IconData(0xe348, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Eleven Thirty icon /// /// https://fontawesome.com/icons/clock-eleven-thirty?style=light /// 11, 11:30, clock, eleven, eleven-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData lightClockElevenThirty = IconDataLight(0xe348); + static const IconData lightClockElevenThirty = IconData(0xe348, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Eleven Thirty icon /// /// https://fontawesome.com/icons/clock-eleven-thirty?style=thin /// 11, 11:30, clock, eleven, eleven-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData thinClockElevenThirty = IconDataThin(0xe348); + static const IconData thinClockElevenThirty = IconData(0xe348, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Five icon /// /// https://fontawesome.com/icons/clock-five?style=solid /// 00, 5, 5:00, clock, five, five o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData solidClockFive = IconDataSolid(0xe349); + static const IconData solidClockFive = IconData(0xe349, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Five icon /// /// https://fontawesome.com/icons/clock-five?style=regular /// 00, 5, 5:00, clock, five, five o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData clockFive = IconDataRegular(0xe349); + static const IconData clockFive = IconData(0xe349, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Five icon /// /// https://fontawesome.com/icons/clock-five?style=light /// 00, 5, 5:00, clock, five, five o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData lightClockFive = IconDataLight(0xe349); + static const IconData lightClockFive = IconData(0xe349, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Five icon /// /// https://fontawesome.com/icons/clock-five?style=thin /// 00, 5, 5:00, clock, five, five o’clock, hour, minute, o'clock, o’clock, pending, ticking, time - static const IconData thinClockFive = IconDataThin(0xe349); + static const IconData thinClockFive = IconData(0xe349, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Five Thirty icon /// /// https://fontawesome.com/icons/clock-five-thirty?style=solid /// 5, 5:30, clock, five, five-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData solidClockFiveThirty = IconDataSolid(0xe34a); + static const IconData solidClockFiveThirty = IconData(0xe34a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Five Thirty icon /// /// https://fontawesome.com/icons/clock-five-thirty?style=regular /// 5, 5:30, clock, five, five-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData clockFiveThirty = IconDataRegular(0xe34a); + static const IconData clockFiveThirty = IconData(0xe34a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Five Thirty icon /// /// https://fontawesome.com/icons/clock-five-thirty?style=light /// 5, 5:30, clock, five, five-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData lightClockFiveThirty = IconDataLight(0xe34a); + static const IconData lightClockFiveThirty = IconData(0xe34a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Five Thirty icon /// /// https://fontawesome.com/icons/clock-five-thirty?style=thin /// 5, 5:30, clock, five, five-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData thinClockFiveThirty = IconDataThin(0xe34a); + static const IconData thinClockFiveThirty = IconData(0xe34a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Four Thirty icon /// /// https://fontawesome.com/icons/clock-four-thirty?style=solid /// 4, 4:30, clock, four, four-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData solidClockFourThirty = IconDataSolid(0xe34b); + static const IconData solidClockFourThirty = IconData(0xe34b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Four Thirty icon /// /// https://fontawesome.com/icons/clock-four-thirty?style=regular /// 4, 4:30, clock, four, four-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData clockFourThirty = IconDataRegular(0xe34b); + static const IconData clockFourThirty = IconData(0xe34b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Four Thirty icon /// /// https://fontawesome.com/icons/clock-four-thirty?style=light /// 4, 4:30, clock, four, four-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData lightClockFourThirty = IconDataLight(0xe34b); + static const IconData lightClockFourThirty = IconData(0xe34b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Four Thirty icon /// /// https://fontawesome.com/icons/clock-four-thirty?style=thin /// 4, 4:30, clock, four, four-thirty, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData thinClockFourThirty = IconDataThin(0xe34b); + static const IconData thinClockFourThirty = IconData(0xe34b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Nine icon /// /// https://fontawesome.com/icons/clock-nine?style=solid /// 00, 9, 9:00, clock, hour, minute, nine, nine o’clock, o'clock, o’clock, pending, ticking, time - static const IconData solidClockNine = IconDataSolid(0xe34c); + static const IconData solidClockNine = IconData(0xe34c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Nine icon /// /// https://fontawesome.com/icons/clock-nine?style=regular /// 00, 9, 9:00, clock, hour, minute, nine, nine o’clock, o'clock, o’clock, pending, ticking, time - static const IconData clockNine = IconDataRegular(0xe34c); + static const IconData clockNine = IconData(0xe34c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Nine icon /// /// https://fontawesome.com/icons/clock-nine?style=light /// 00, 9, 9:00, clock, hour, minute, nine, nine o’clock, o'clock, o’clock, pending, ticking, time - static const IconData lightClockNine = IconDataLight(0xe34c); + static const IconData lightClockNine = IconData(0xe34c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Nine icon /// /// https://fontawesome.com/icons/clock-nine?style=thin /// 00, 9, 9:00, clock, hour, minute, nine, nine o’clock, o'clock, o’clock, pending, ticking, time - static const IconData thinClockNine = IconDataThin(0xe34c); + static const IconData thinClockNine = IconData(0xe34c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Nine Thirty icon /// /// https://fontawesome.com/icons/clock-nine-thirty?style=solid /// 9, 9:30, clock, hour, minute, nine, nine-thirty, o'clock, pending, thirty, ticking, time - static const IconData solidClockNineThirty = IconDataSolid(0xe34d); + static const IconData solidClockNineThirty = IconData(0xe34d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Nine Thirty icon /// /// https://fontawesome.com/icons/clock-nine-thirty?style=regular /// 9, 9:30, clock, hour, minute, nine, nine-thirty, o'clock, pending, thirty, ticking, time - static const IconData clockNineThirty = IconDataRegular(0xe34d); + static const IconData clockNineThirty = IconData(0xe34d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Nine Thirty icon /// /// https://fontawesome.com/icons/clock-nine-thirty?style=light /// 9, 9:30, clock, hour, minute, nine, nine-thirty, o'clock, pending, thirty, ticking, time - static const IconData lightClockNineThirty = IconDataLight(0xe34d); + static const IconData lightClockNineThirty = IconData(0xe34d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Nine Thirty icon /// /// https://fontawesome.com/icons/clock-nine-thirty?style=thin /// 9, 9:30, clock, hour, minute, nine, nine-thirty, o'clock, pending, thirty, ticking, time - static const IconData thinClockNineThirty = IconDataThin(0xe34d); + static const IconData thinClockNineThirty = IconData(0xe34d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock One icon /// /// https://fontawesome.com/icons/clock-one?style=solid /// 00, 1, 1:00, clock, hour, minute, o'clock, ticking, time - static const IconData solidClockOne = IconDataSolid(0xe34e); + static const IconData solidClockOne = IconData(0xe34e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock One icon /// /// https://fontawesome.com/icons/clock-one?style=regular /// 00, 1, 1:00, clock, hour, minute, o'clock, ticking, time - static const IconData clockOne = IconDataRegular(0xe34e); + static const IconData clockOne = IconData(0xe34e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock One icon /// /// https://fontawesome.com/icons/clock-one?style=light /// 00, 1, 1:00, clock, hour, minute, o'clock, ticking, time - static const IconData lightClockOne = IconDataLight(0xe34e); + static const IconData lightClockOne = IconData(0xe34e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock One icon /// /// https://fontawesome.com/icons/clock-one?style=thin /// 00, 1, 1:00, clock, hour, minute, o'clock, ticking, time - static const IconData thinClockOne = IconDataThin(0xe34e); + static const IconData thinClockOne = IconData(0xe34e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock One Thirty icon /// /// https://fontawesome.com/icons/clock-one-thirty?style=solid /// 1, 1:30, clock, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData solidClockOneThirty = IconDataSolid(0xe34f); + static const IconData solidClockOneThirty = IconData(0xe34f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock One Thirty icon /// /// https://fontawesome.com/icons/clock-one-thirty?style=regular /// 1, 1:30, clock, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData clockOneThirty = IconDataRegular(0xe34f); + static const IconData clockOneThirty = IconData(0xe34f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock One Thirty icon /// /// https://fontawesome.com/icons/clock-one-thirty?style=light /// 1, 1:30, clock, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData lightClockOneThirty = IconDataLight(0xe34f); + static const IconData lightClockOneThirty = IconData(0xe34f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock One Thirty icon /// /// https://fontawesome.com/icons/clock-one-thirty?style=thin /// 1, 1:30, clock, hour, minute, o'clock, pending, thirty, ticking, time - static const IconData thinClockOneThirty = IconDataThin(0xe34f); + static const IconData thinClockOneThirty = IconData(0xe34f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Rotate Left icon /// /// https://fontawesome.com/icons/clock-rotate-left?style=solid /// Rewind, clock, pending, reverse, time, time machine, time travel, waiting - static const IconData solidClockRotateLeft = IconDataSolid(0xf1da); + static const IconData solidClockRotateLeft = IconData(0xf1da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias history for icon [solidClockRotateLeft] @Deprecated('Use "solidClockRotateLeft" instead.') @@ -23844,7 +23844,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock-rotate-left?style=regular /// Rewind, clock, pending, reverse, time, time machine, time travel, waiting - static const IconData clockRotateLeft = IconDataRegular(0xf1da); + static const IconData clockRotateLeft = IconData(0xf1da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias history for icon [clockRotateLeft] @Deprecated('Use "clockRotateLeft" instead.') @@ -23854,7 +23854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock-rotate-left?style=light /// Rewind, clock, pending, reverse, time, time machine, time travel, waiting - static const IconData lightClockRotateLeft = IconDataLight(0xf1da); + static const IconData lightClockRotateLeft = IconData(0xf1da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias history for icon [lightClockRotateLeft] @Deprecated('Use "lightClockRotateLeft" instead.') @@ -23864,7 +23864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock-rotate-left?style=thin /// Rewind, clock, pending, reverse, time, time machine, time travel, waiting - static const IconData thinClockRotateLeft = IconDataThin(0xf1da); + static const IconData thinClockRotateLeft = IconData(0xf1da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias history for icon [thinClockRotateLeft] @Deprecated('Use "thinClockRotateLeft" instead.') @@ -23874,415 +23874,415 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/clock-seven?style=solid /// 00, 7, 7:00, clock, hour, minute, o'clock, o’clock, pending, seven, seven o’clock, ticking, time - static const IconData solidClockSeven = IconDataSolid(0xe350); + static const IconData solidClockSeven = IconData(0xe350, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Seven icon /// /// https://fontawesome.com/icons/clock-seven?style=regular /// 00, 7, 7:00, clock, hour, minute, o'clock, o’clock, pending, seven, seven o’clock, ticking, time - static const IconData clockSeven = IconDataRegular(0xe350); + static const IconData clockSeven = IconData(0xe350, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Seven icon /// /// https://fontawesome.com/icons/clock-seven?style=light /// 00, 7, 7:00, clock, hour, minute, o'clock, o’clock, pending, seven, seven o’clock, ticking, time - static const IconData lightClockSeven = IconDataLight(0xe350); + static const IconData lightClockSeven = IconData(0xe350, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Seven icon /// /// https://fontawesome.com/icons/clock-seven?style=thin /// 00, 7, 7:00, clock, hour, minute, o'clock, o’clock, pending, seven, seven o’clock, ticking, time - static const IconData thinClockSeven = IconDataThin(0xe350); + static const IconData thinClockSeven = IconData(0xe350, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Seven Thirty icon /// /// https://fontawesome.com/icons/clock-seven-thirty?style=solid /// 7, 7:30, clock, hour, minute, o'clock, pending, seven, seven-thirty, thirty, ticking, time - static const IconData solidClockSevenThirty = IconDataSolid(0xe351); + static const IconData solidClockSevenThirty = IconData(0xe351, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Seven Thirty icon /// /// https://fontawesome.com/icons/clock-seven-thirty?style=regular /// 7, 7:30, clock, hour, minute, o'clock, pending, seven, seven-thirty, thirty, ticking, time - static const IconData clockSevenThirty = IconDataRegular(0xe351); + static const IconData clockSevenThirty = IconData(0xe351, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Seven Thirty icon /// /// https://fontawesome.com/icons/clock-seven-thirty?style=light /// 7, 7:30, clock, hour, minute, o'clock, pending, seven, seven-thirty, thirty, ticking, time - static const IconData lightClockSevenThirty = IconDataLight(0xe351); + static const IconData lightClockSevenThirty = IconData(0xe351, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Seven Thirty icon /// /// https://fontawesome.com/icons/clock-seven-thirty?style=thin /// 7, 7:30, clock, hour, minute, o'clock, pending, seven, seven-thirty, thirty, ticking, time - static const IconData thinClockSevenThirty = IconDataThin(0xe351); + static const IconData thinClockSevenThirty = IconData(0xe351, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Six icon /// /// https://fontawesome.com/icons/clock-six?style=solid /// 00, 6, 6:00, clock, hour, minute, o'clock, o’clock, pending, six, six o’clock, ticking, time - static const IconData solidClockSix = IconDataSolid(0xe352); + static const IconData solidClockSix = IconData(0xe352, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Six icon /// /// https://fontawesome.com/icons/clock-six?style=regular /// 00, 6, 6:00, clock, hour, minute, o'clock, o’clock, pending, six, six o’clock, ticking, time - static const IconData clockSix = IconDataRegular(0xe352); + static const IconData clockSix = IconData(0xe352, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Six icon /// /// https://fontawesome.com/icons/clock-six?style=light /// 00, 6, 6:00, clock, hour, minute, o'clock, o’clock, pending, six, six o’clock, ticking, time - static const IconData lightClockSix = IconDataLight(0xe352); + static const IconData lightClockSix = IconData(0xe352, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Six icon /// /// https://fontawesome.com/icons/clock-six?style=thin /// 00, 6, 6:00, clock, hour, minute, o'clock, o’clock, pending, six, six o’clock, ticking, time - static const IconData thinClockSix = IconDataThin(0xe352); + static const IconData thinClockSix = IconData(0xe352, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Six Thirty icon /// /// https://fontawesome.com/icons/clock-six-thirty?style=solid /// 6, 6:30, clock, hour, minute, o'clock, pending, six, six-thirty, thirty, ticking, time - static const IconData solidClockSixThirty = IconDataSolid(0xe353); + static const IconData solidClockSixThirty = IconData(0xe353, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Six Thirty icon /// /// https://fontawesome.com/icons/clock-six-thirty?style=regular /// 6, 6:30, clock, hour, minute, o'clock, pending, six, six-thirty, thirty, ticking, time - static const IconData clockSixThirty = IconDataRegular(0xe353); + static const IconData clockSixThirty = IconData(0xe353, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Six Thirty icon /// /// https://fontawesome.com/icons/clock-six-thirty?style=light /// 6, 6:30, clock, hour, minute, o'clock, pending, six, six-thirty, thirty, ticking, time - static const IconData lightClockSixThirty = IconDataLight(0xe353); + static const IconData lightClockSixThirty = IconData(0xe353, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Six Thirty icon /// /// https://fontawesome.com/icons/clock-six-thirty?style=thin /// 6, 6:30, clock, hour, minute, o'clock, pending, six, six-thirty, thirty, ticking, time - static const IconData thinClockSixThirty = IconDataThin(0xe353); + static const IconData thinClockSixThirty = IconData(0xe353, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Ten icon /// /// https://fontawesome.com/icons/clock-ten?style=solid /// 00, 10, 10:00, clock, hour, minute, o'clock, o’clock, pending, ten, ten o’clock, ticking, time - static const IconData solidClockTen = IconDataSolid(0xe354); + static const IconData solidClockTen = IconData(0xe354, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Ten icon /// /// https://fontawesome.com/icons/clock-ten?style=regular /// 00, 10, 10:00, clock, hour, minute, o'clock, o’clock, pending, ten, ten o’clock, ticking, time - static const IconData clockTen = IconDataRegular(0xe354); + static const IconData clockTen = IconData(0xe354, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Ten icon /// /// https://fontawesome.com/icons/clock-ten?style=light /// 00, 10, 10:00, clock, hour, minute, o'clock, o’clock, pending, ten, ten o’clock, ticking, time - static const IconData lightClockTen = IconDataLight(0xe354); + static const IconData lightClockTen = IconData(0xe354, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Ten icon /// /// https://fontawesome.com/icons/clock-ten?style=thin /// 00, 10, 10:00, clock, hour, minute, o'clock, o’clock, pending, ten, ten o’clock, ticking, time - static const IconData thinClockTen = IconDataThin(0xe354); + static const IconData thinClockTen = IconData(0xe354, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Ten Thirty icon /// /// https://fontawesome.com/icons/clock-ten-thirty?style=solid /// 10, 10:30, clock, hour, minute, o'clock, pending, ten, ten-thirty, thirty, ticking, time - static const IconData solidClockTenThirty = IconDataSolid(0xe355); + static const IconData solidClockTenThirty = IconData(0xe355, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Ten Thirty icon /// /// https://fontawesome.com/icons/clock-ten-thirty?style=regular /// 10, 10:30, clock, hour, minute, o'clock, pending, ten, ten-thirty, thirty, ticking, time - static const IconData clockTenThirty = IconDataRegular(0xe355); + static const IconData clockTenThirty = IconData(0xe355, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Ten Thirty icon /// /// https://fontawesome.com/icons/clock-ten-thirty?style=light /// 10, 10:30, clock, hour, minute, o'clock, pending, ten, ten-thirty, thirty, ticking, time - static const IconData lightClockTenThirty = IconDataLight(0xe355); + static const IconData lightClockTenThirty = IconData(0xe355, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Ten Thirty icon /// /// https://fontawesome.com/icons/clock-ten-thirty?style=thin /// 10, 10:30, clock, hour, minute, o'clock, pending, ten, ten-thirty, thirty, ticking, time - static const IconData thinClockTenThirty = IconDataThin(0xe355); + static const IconData thinClockTenThirty = IconData(0xe355, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Three icon /// /// https://fontawesome.com/icons/clock-three?style=solid /// 00, 3, 3:00, clock, hour, minute, o'clock, o’clock, pending, three, three o’clock, ticking, time, witching hour - static const IconData solidClockThree = IconDataSolid(0xe356); + static const IconData solidClockThree = IconData(0xe356, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Three icon /// /// https://fontawesome.com/icons/clock-three?style=regular /// 00, 3, 3:00, clock, hour, minute, o'clock, o’clock, pending, three, three o’clock, ticking, time, witching hour - static const IconData clockThree = IconDataRegular(0xe356); + static const IconData clockThree = IconData(0xe356, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Three icon /// /// https://fontawesome.com/icons/clock-three?style=light /// 00, 3, 3:00, clock, hour, minute, o'clock, o’clock, pending, three, three o’clock, ticking, time, witching hour - static const IconData lightClockThree = IconDataLight(0xe356); + static const IconData lightClockThree = IconData(0xe356, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Three icon /// /// https://fontawesome.com/icons/clock-three?style=thin /// 00, 3, 3:00, clock, hour, minute, o'clock, o’clock, pending, three, three o’clock, ticking, time, witching hour - static const IconData thinClockThree = IconDataThin(0xe356); + static const IconData thinClockThree = IconData(0xe356, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Three Thirty icon /// /// https://fontawesome.com/icons/clock-three-thirty?style=solid /// 3, 3:30, clock, hour, minute, o'clock, pending, thirty, three, three-thirty, ticking, time - static const IconData solidClockThreeThirty = IconDataSolid(0xe357); + static const IconData solidClockThreeThirty = IconData(0xe357, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Three Thirty icon /// /// https://fontawesome.com/icons/clock-three-thirty?style=regular /// 3, 3:30, clock, hour, minute, o'clock, pending, thirty, three, three-thirty, ticking, time - static const IconData clockThreeThirty = IconDataRegular(0xe357); + static const IconData clockThreeThirty = IconData(0xe357, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Three Thirty icon /// /// https://fontawesome.com/icons/clock-three-thirty?style=light /// 3, 3:30, clock, hour, minute, o'clock, pending, thirty, three, three-thirty, ticking, time - static const IconData lightClockThreeThirty = IconDataLight(0xe357); + static const IconData lightClockThreeThirty = IconData(0xe357, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Three Thirty icon /// /// https://fontawesome.com/icons/clock-three-thirty?style=thin /// 3, 3:30, clock, hour, minute, o'clock, pending, thirty, three, three-thirty, ticking, time - static const IconData thinClockThreeThirty = IconDataThin(0xe357); + static const IconData thinClockThreeThirty = IconData(0xe357, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Twelve icon /// /// https://fontawesome.com/icons/clock-twelve?style=solid /// 00, 12, 12:00, clock, hour, midnight, minute, noon, o'clock, o’clock, pending, ticking, time, twelve, twelve o’clock - static const IconData solidClockTwelve = IconDataSolid(0xe358); + static const IconData solidClockTwelve = IconData(0xe358, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Twelve icon /// /// https://fontawesome.com/icons/clock-twelve?style=regular /// 00, 12, 12:00, clock, hour, midnight, minute, noon, o'clock, o’clock, pending, ticking, time, twelve, twelve o’clock - static const IconData clockTwelve = IconDataRegular(0xe358); + static const IconData clockTwelve = IconData(0xe358, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Twelve icon /// /// https://fontawesome.com/icons/clock-twelve?style=light /// 00, 12, 12:00, clock, hour, midnight, minute, noon, o'clock, o’clock, pending, ticking, time, twelve, twelve o’clock - static const IconData lightClockTwelve = IconDataLight(0xe358); + static const IconData lightClockTwelve = IconData(0xe358, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Twelve icon /// /// https://fontawesome.com/icons/clock-twelve?style=thin /// 00, 12, 12:00, clock, hour, midnight, minute, noon, o'clock, o’clock, pending, ticking, time, twelve, twelve o’clock - static const IconData thinClockTwelve = IconDataThin(0xe358); + static const IconData thinClockTwelve = IconData(0xe358, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Twelve Thirty icon /// /// https://fontawesome.com/icons/clock-twelve-thirty?style=solid /// 12, 12:30, clock, hour, minute, o'clock, thirty, ticking, time, twelve, twelve-thirty - static const IconData solidClockTwelveThirty = IconDataSolid(0xe359); + static const IconData solidClockTwelveThirty = IconData(0xe359, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Twelve Thirty icon /// /// https://fontawesome.com/icons/clock-twelve-thirty?style=regular /// 12, 12:30, clock, hour, minute, o'clock, thirty, ticking, time, twelve, twelve-thirty - static const IconData clockTwelveThirty = IconDataRegular(0xe359); + static const IconData clockTwelveThirty = IconData(0xe359, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Twelve Thirty icon /// /// https://fontawesome.com/icons/clock-twelve-thirty?style=light /// 12, 12:30, clock, hour, minute, o'clock, thirty, ticking, time, twelve, twelve-thirty - static const IconData lightClockTwelveThirty = IconDataLight(0xe359); + static const IconData lightClockTwelveThirty = IconData(0xe359, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Twelve Thirty icon /// /// https://fontawesome.com/icons/clock-twelve-thirty?style=thin /// 12, 12:30, clock, hour, minute, o'clock, thirty, ticking, time, twelve, twelve-thirty - static const IconData thinClockTwelveThirty = IconDataThin(0xe359); + static const IconData thinClockTwelveThirty = IconData(0xe359, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Two icon /// /// https://fontawesome.com/icons/clock-two?style=solid /// 00, 1, 1:00, 2, 2:00, clock, hour, minute, o'clock, one, one o’clock, o’clock, pending, ticking, time, two, two o’clock - static const IconData solidClockTwo = IconDataSolid(0xe35a); + static const IconData solidClockTwo = IconData(0xe35a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Two icon /// /// https://fontawesome.com/icons/clock-two?style=regular /// 00, 1, 1:00, 2, 2:00, clock, hour, minute, o'clock, one, one o’clock, o’clock, pending, ticking, time, two, two o’clock - static const IconData clockTwo = IconDataRegular(0xe35a); + static const IconData clockTwo = IconData(0xe35a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Two icon /// /// https://fontawesome.com/icons/clock-two?style=light /// 00, 1, 1:00, 2, 2:00, clock, hour, minute, o'clock, one, one o’clock, o’clock, pending, ticking, time, two, two o’clock - static const IconData lightClockTwo = IconDataLight(0xe35a); + static const IconData lightClockTwo = IconData(0xe35a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Two icon /// /// https://fontawesome.com/icons/clock-two?style=thin /// 00, 1, 1:00, 2, 2:00, clock, hour, minute, o'clock, one, one o’clock, o’clock, pending, ticking, time, two, two o’clock - static const IconData thinClockTwo = IconDataThin(0xe35a); + static const IconData thinClockTwo = IconData(0xe35a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clock Two Thirty icon /// /// https://fontawesome.com/icons/clock-two-thirty?style=solid /// 1, 1:30, 2, 2:30, clock, hour, minute, o'clock, one, one-thirty, pending, thirty, ticking, time, two, two-thirty - static const IconData solidClockTwoThirty = IconDataSolid(0xe35b); + static const IconData solidClockTwoThirty = IconData(0xe35b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clock Two Thirty icon /// /// https://fontawesome.com/icons/clock-two-thirty?style=regular /// 1, 1:30, 2, 2:30, clock, hour, minute, o'clock, one, one-thirty, pending, thirty, ticking, time, two, two-thirty - static const IconData clockTwoThirty = IconDataRegular(0xe35b); + static const IconData clockTwoThirty = IconData(0xe35b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clock Two Thirty icon /// /// https://fontawesome.com/icons/clock-two-thirty?style=light /// 1, 1:30, 2, 2:30, clock, hour, minute, o'clock, one, one-thirty, pending, thirty, ticking, time, two, two-thirty - static const IconData lightClockTwoThirty = IconDataLight(0xe35b); + static const IconData lightClockTwoThirty = IconData(0xe35b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clock Two Thirty icon /// /// https://fontawesome.com/icons/clock-two-thirty?style=thin /// 1, 1:30, 2, 2:30, clock, hour, minute, o'clock, one, one-thirty, pending, thirty, ticking, time, two, two-thirty - static const IconData thinClockTwoThirty = IconDataThin(0xe35b); + static const IconData thinClockTwoThirty = IconData(0xe35b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clone icon /// /// https://fontawesome.com/icons/clone?style=solid /// arrange, copy, duplicate, paste - static const IconData solidClone = IconDataSolid(0xf24d); + static const IconData solidClone = IconData(0xf24d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clone icon /// /// https://fontawesome.com/icons/clone?style=regular /// arrange, copy, duplicate, paste - static const IconData clone = IconDataRegular(0xf24d); + static const IconData clone = IconData(0xf24d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clone icon /// /// https://fontawesome.com/icons/clone?style=light /// arrange, copy, duplicate, paste - static const IconData lightClone = IconDataLight(0xf24d); + static const IconData lightClone = IconData(0xf24d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clone icon /// /// https://fontawesome.com/icons/clone?style=thin /// arrange, copy, duplicate, paste - static const IconData thinClone = IconDataThin(0xf24d); + static const IconData thinClone = IconData(0xf24d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Closed Captioning icon /// /// https://fontawesome.com/icons/closed-captioning?style=solid /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData solidClosedCaptioning = IconDataSolid(0xf20a); + static const IconData solidClosedCaptioning = IconData(0xf20a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Closed Captioning icon /// /// https://fontawesome.com/icons/closed-captioning?style=regular /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData closedCaptioning = IconDataRegular(0xf20a); + static const IconData closedCaptioning = IconData(0xf20a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Closed Captioning icon /// /// https://fontawesome.com/icons/closed-captioning?style=light /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData lightClosedCaptioning = IconDataLight(0xf20a); + static const IconData lightClosedCaptioning = IconData(0xf20a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Closed Captioning icon /// /// https://fontawesome.com/icons/closed-captioning?style=thin /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData thinClosedCaptioning = IconDataThin(0xf20a); + static const IconData thinClosedCaptioning = IconData(0xf20a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Closed Captioning Slash icon /// /// https://fontawesome.com/icons/closed-captioning-slash?style=solid /// cc, deaf, disabled, hearing, subtitle, subtitling - static const IconData solidClosedCaptioningSlash = IconDataSolid(0xe135); + static const IconData solidClosedCaptioningSlash = IconData(0xe135, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Closed Captioning Slash icon /// /// https://fontawesome.com/icons/closed-captioning-slash?style=regular /// cc, deaf, disabled, hearing, subtitle, subtitling - static const IconData closedCaptioningSlash = IconDataRegular(0xe135); + static const IconData closedCaptioningSlash = IconData(0xe135, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Closed Captioning Slash icon /// /// https://fontawesome.com/icons/closed-captioning-slash?style=light /// cc, deaf, disabled, hearing, subtitle, subtitling - static const IconData lightClosedCaptioningSlash = IconDataLight(0xe135); + static const IconData lightClosedCaptioningSlash = IconData(0xe135, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Closed Captioning Slash icon /// /// https://fontawesome.com/icons/closed-captioning-slash?style=thin /// cc, deaf, disabled, hearing, subtitle, subtitling - static const IconData thinClosedCaptioningSlash = IconDataThin(0xe135); + static const IconData thinClosedCaptioningSlash = IconData(0xe135, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clothes Hanger icon /// /// https://fontawesome.com/icons/clothes-hanger?style=solid /// clothing, dry cleaner, hang, wire - static const IconData solidClothesHanger = IconDataSolid(0xe136); + static const IconData solidClothesHanger = IconData(0xe136, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clothes Hanger icon /// /// https://fontawesome.com/icons/clothes-hanger?style=regular /// clothing, dry cleaner, hang, wire - static const IconData clothesHanger = IconDataRegular(0xe136); + static const IconData clothesHanger = IconData(0xe136, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clothes Hanger icon /// /// https://fontawesome.com/icons/clothes-hanger?style=light /// clothing, dry cleaner, hang, wire - static const IconData lightClothesHanger = IconDataLight(0xe136); + static const IconData lightClothesHanger = IconData(0xe136, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clothes Hanger icon /// /// https://fontawesome.com/icons/clothes-hanger?style=thin /// clothing, dry cleaner, hang, wire - static const IconData thinClothesHanger = IconDataThin(0xe136); + static const IconData thinClothesHanger = IconData(0xe136, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud icon /// /// https://fontawesome.com/icons/cloud?style=solid /// atmosphere, cloud, fog, overcast, save, upload, weather - static const IconData solidCloud = IconDataSolid(0xf0c2); + static const IconData solidCloud = IconData(0xf0c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud icon /// /// https://fontawesome.com/icons/cloud?style=regular /// atmosphere, cloud, fog, overcast, save, upload, weather - static const IconData cloud = IconDataRegular(0xf0c2); + static const IconData cloud = IconData(0xf0c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud icon /// /// https://fontawesome.com/icons/cloud?style=light /// atmosphere, cloud, fog, overcast, save, upload, weather - static const IconData lightCloud = IconDataLight(0xf0c2); + static const IconData lightCloud = IconData(0xf0c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud icon /// /// https://fontawesome.com/icons/cloud?style=thin /// atmosphere, cloud, fog, overcast, save, upload, weather - static const IconData thinCloud = IconDataThin(0xf0c2); + static const IconData thinCloud = IconData(0xf0c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Arrow Down icon /// /// https://fontawesome.com/icons/cloud-arrow-down?style=solid /// download, export, save - static const IconData solidCloudArrowDown = IconDataSolid(0xf0ed); + static const IconData solidCloudArrowDown = IconData(0xf0ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cloud-download for icon [solidCloudArrowDown] @Deprecated('Use "solidCloudArrowDown" instead.') @@ -24296,7 +24296,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-down?style=regular /// download, export, save - static const IconData cloudArrowDown = IconDataRegular(0xf0ed); + static const IconData cloudArrowDown = IconData(0xf0ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cloud-download for icon [cloudArrowDown] @Deprecated('Use "cloudArrowDown" instead.') @@ -24310,7 +24310,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-down?style=light /// download, export, save - static const IconData lightCloudArrowDown = IconDataLight(0xf0ed); + static const IconData lightCloudArrowDown = IconData(0xf0ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cloud-download for icon [lightCloudArrowDown] @Deprecated('Use "lightCloudArrowDown" instead.') @@ -24324,7 +24324,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-down?style=thin /// download, export, save - static const IconData thinCloudArrowDown = IconDataThin(0xf0ed); + static const IconData thinCloudArrowDown = IconData(0xf0ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cloud-download for icon [thinCloudArrowDown] @Deprecated('Use "thinCloudArrowDown" instead.') @@ -24338,7 +24338,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-up?style=solid /// import, save, upgrade, upload - static const IconData solidCloudArrowUp = IconDataSolid(0xf0ee); + static const IconData solidCloudArrowUp = IconData(0xf0ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cloud-upload for icon [solidCloudArrowUp] @Deprecated('Use "solidCloudArrowUp" instead.') @@ -24352,7 +24352,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-up?style=regular /// import, save, upgrade, upload - static const IconData cloudArrowUp = IconDataRegular(0xf0ee); + static const IconData cloudArrowUp = IconData(0xf0ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cloud-upload for icon [cloudArrowUp] @Deprecated('Use "cloudArrowUp" instead.') @@ -24366,7 +24366,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-up?style=light /// import, save, upgrade, upload - static const IconData lightCloudArrowUp = IconDataLight(0xf0ee); + static const IconData lightCloudArrowUp = IconData(0xf0ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cloud-upload for icon [lightCloudArrowUp] @Deprecated('Use "lightCloudArrowUp" instead.') @@ -24380,7 +24380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-arrow-up?style=thin /// import, save, upgrade, upload - static const IconData thinCloudArrowUp = IconDataThin(0xf0ee); + static const IconData thinCloudArrowUp = IconData(0xf0ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cloud-upload for icon [thinCloudArrowUp] @Deprecated('Use "thinCloudArrowUp" instead.') @@ -24394,31 +24394,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-binary?style=solid /// cloud, data, data, infrastructure, programming, upload, binary - static const IconData solidCloudBinary = IconDataSolid(0xe601); + static const IconData solidCloudBinary = IconData(0xe601, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Binary icon /// /// https://fontawesome.com/icons/cloud-binary?style=regular /// cloud, data, data, infrastructure, programming, upload, binary - static const IconData cloudBinary = IconDataRegular(0xe601); + static const IconData cloudBinary = IconData(0xe601, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Binary icon /// /// https://fontawesome.com/icons/cloud-binary?style=light /// cloud, data, data, infrastructure, programming, upload, binary - static const IconData lightCloudBinary = IconDataLight(0xe601); + static const IconData lightCloudBinary = IconData(0xe601, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Binary icon /// /// https://fontawesome.com/icons/cloud-binary?style=thin /// cloud, data, data, infrastructure, programming, upload, binary - static const IconData thinCloudBinary = IconDataThin(0xe601); + static const IconData thinCloudBinary = IconData(0xe601, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Bolt icon /// /// https://fontawesome.com/icons/cloud-bolt?style=solid /// bolt, cloud, cloud with lightning, lightning, precipitation, rain, storm, weather - static const IconData solidCloudBolt = IconDataSolid(0xf76c); + static const IconData solidCloudBolt = IconData(0xf76c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm for icon [solidCloudBolt] @Deprecated('Use "solidCloudBolt" instead.') @@ -24428,7 +24428,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt?style=regular /// bolt, cloud, cloud with lightning, lightning, precipitation, rain, storm, weather - static const IconData cloudBolt = IconDataRegular(0xf76c); + static const IconData cloudBolt = IconData(0xf76c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm for icon [cloudBolt] @Deprecated('Use "cloudBolt" instead.') @@ -24438,7 +24438,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt?style=light /// bolt, cloud, cloud with lightning, lightning, precipitation, rain, storm, weather - static const IconData lightCloudBolt = IconDataLight(0xf76c); + static const IconData lightCloudBolt = IconData(0xf76c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm for icon [lightCloudBolt] @Deprecated('Use "lightCloudBolt" instead.') @@ -24448,7 +24448,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt?style=thin /// bolt, cloud, cloud with lightning, lightning, precipitation, rain, storm, weather - static const IconData thinCloudBolt = IconDataThin(0xf76c); + static const IconData thinCloudBolt = IconData(0xf76c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm for icon [thinCloudBolt] @Deprecated('Use "thinCloudBolt" instead.') @@ -24458,7 +24458,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-moon?style=solid /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData solidCloudBoltMoon = IconDataSolid(0xf76d); + static const IconData solidCloudBoltMoon = IconData(0xf76d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-moon for icon [solidCloudBoltMoon] @Deprecated('Use "solidCloudBoltMoon" instead.') @@ -24468,7 +24468,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-moon?style=regular /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData cloudBoltMoon = IconDataRegular(0xf76d); + static const IconData cloudBoltMoon = IconData(0xf76d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-moon for icon [cloudBoltMoon] @Deprecated('Use "cloudBoltMoon" instead.') @@ -24478,7 +24478,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-moon?style=light /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData lightCloudBoltMoon = IconDataLight(0xf76d); + static const IconData lightCloudBoltMoon = IconData(0xf76d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-moon for icon [lightCloudBoltMoon] @Deprecated('Use "lightCloudBoltMoon" instead.') @@ -24488,7 +24488,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-moon?style=thin /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData thinCloudBoltMoon = IconDataThin(0xf76d); + static const IconData thinCloudBoltMoon = IconData(0xf76d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-moon for icon [thinCloudBoltMoon] @Deprecated('Use "thinCloudBoltMoon" instead.') @@ -24498,7 +24498,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-sun?style=solid /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData solidCloudBoltSun = IconDataSolid(0xf76e); + static const IconData solidCloudBoltSun = IconData(0xf76e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-sun for icon [solidCloudBoltSun] @Deprecated('Use "solidCloudBoltSun" instead.') @@ -24508,7 +24508,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-sun?style=regular /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData cloudBoltSun = IconDataRegular(0xf76e); + static const IconData cloudBoltSun = IconData(0xf76e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-sun for icon [cloudBoltSun] @Deprecated('Use "cloudBoltSun" instead.') @@ -24518,7 +24518,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-sun?style=light /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData lightCloudBoltSun = IconDataLight(0xf76e); + static const IconData lightCloudBoltSun = IconData(0xf76e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-sun for icon [lightCloudBoltSun] @Deprecated('Use "lightCloudBoltSun" instead.') @@ -24528,7 +24528,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-bolt-sun?style=thin /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData thinCloudBoltSun = IconDataThin(0xf76e); + static const IconData thinCloudBoltSun = IconData(0xf76e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias thunderstorm-sun for icon [thinCloudBoltSun] @Deprecated('Use "thinCloudBoltSun" instead.') @@ -24538,79 +24538,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-check?style=solid /// enable, success, upload, validate, verify, working - static const IconData solidCloudCheck = IconDataSolid(0xe35c); + static const IconData solidCloudCheck = IconData(0xe35c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Check icon /// /// https://fontawesome.com/icons/cloud-check?style=regular /// enable, success, upload, validate, verify, working - static const IconData cloudCheck = IconDataRegular(0xe35c); + static const IconData cloudCheck = IconData(0xe35c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Check icon /// /// https://fontawesome.com/icons/cloud-check?style=light /// enable, success, upload, validate, verify, working - static const IconData lightCloudCheck = IconDataLight(0xe35c); + static const IconData lightCloudCheck = IconData(0xe35c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Check icon /// /// https://fontawesome.com/icons/cloud-check?style=thin /// enable, success, upload, validate, verify, working - static const IconData thinCloudCheck = IconDataThin(0xe35c); + static const IconData thinCloudCheck = IconData(0xe35c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Drizzle icon /// /// https://fontawesome.com/icons/cloud-drizzle?style=solid /// precipitation, rain, sprinkle - static const IconData solidCloudDrizzle = IconDataSolid(0xf738); + static const IconData solidCloudDrizzle = IconData(0xf738, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Drizzle icon /// /// https://fontawesome.com/icons/cloud-drizzle?style=regular /// precipitation, rain, sprinkle - static const IconData cloudDrizzle = IconDataRegular(0xf738); + static const IconData cloudDrizzle = IconData(0xf738, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Drizzle icon /// /// https://fontawesome.com/icons/cloud-drizzle?style=light /// precipitation, rain, sprinkle - static const IconData lightCloudDrizzle = IconDataLight(0xf738); + static const IconData lightCloudDrizzle = IconData(0xf738, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Drizzle icon /// /// https://fontawesome.com/icons/cloud-drizzle?style=thin /// precipitation, rain, sprinkle - static const IconData thinCloudDrizzle = IconDataThin(0xf738); + static const IconData thinCloudDrizzle = IconData(0xf738, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Exclamation icon /// /// https://fontawesome.com/icons/cloud-exclamation?style=solid /// error, alert, cloud, connection, failed, online, warning, wifi - static const IconData solidCloudExclamation = IconDataSolid(0xe491); + static const IconData solidCloudExclamation = IconData(0xe491, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Exclamation icon /// /// https://fontawesome.com/icons/cloud-exclamation?style=regular /// error, alert, cloud, connection, failed, online, warning, wifi - static const IconData cloudExclamation = IconDataRegular(0xe491); + static const IconData cloudExclamation = IconData(0xe491, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Exclamation icon /// /// https://fontawesome.com/icons/cloud-exclamation?style=light /// error, alert, cloud, connection, failed, online, warning, wifi - static const IconData lightCloudExclamation = IconDataLight(0xe491); + static const IconData lightCloudExclamation = IconData(0xe491, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Exclamation icon /// /// https://fontawesome.com/icons/cloud-exclamation?style=thin /// error, alert, cloud, connection, failed, online, warning, wifi - static const IconData thinCloudExclamation = IconDataThin(0xe491); + static const IconData thinCloudExclamation = IconData(0xe491, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Fog icon /// /// https://fontawesome.com/icons/cloud-fog?style=solid /// cloud, fog, haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData solidCloudFog = IconDataSolid(0xf74e); + static const IconData solidCloudFog = IconData(0xf74e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fog for icon [solidCloudFog] @Deprecated('Use "solidCloudFog" instead.') @@ -24620,7 +24620,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-fog?style=regular /// cloud, fog, haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData cloudFog = IconDataRegular(0xf74e); + static const IconData cloudFog = IconData(0xf74e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fog for icon [cloudFog] @Deprecated('Use "cloudFog" instead.') @@ -24630,7 +24630,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-fog?style=light /// cloud, fog, haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData lightCloudFog = IconDataLight(0xf74e); + static const IconData lightCloudFog = IconData(0xf74e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fog for icon [lightCloudFog] @Deprecated('Use "lightCloudFog" instead.') @@ -24640,7 +24640,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-fog?style=thin /// cloud, fog, haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData thinCloudFog = IconDataThin(0xf74e); + static const IconData thinCloudFog = IconData(0xf74e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fog for icon [thinCloudFog] @Deprecated('Use "thinCloudFog" instead.') @@ -24650,1506 +24650,1506 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cloud-hail?style=solid /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData solidCloudHail = IconDataSolid(0xf739); + static const IconData solidCloudHail = IconData(0xf739, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Hail icon /// /// https://fontawesome.com/icons/cloud-hail?style=regular /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData cloudHail = IconDataRegular(0xf739); + static const IconData cloudHail = IconData(0xf739, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Hail icon /// /// https://fontawesome.com/icons/cloud-hail?style=light /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData lightCloudHail = IconDataLight(0xf739); + static const IconData lightCloudHail = IconData(0xf739, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Hail icon /// /// https://fontawesome.com/icons/cloud-hail?style=thin /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData thinCloudHail = IconDataThin(0xf739); + static const IconData thinCloudHail = IconData(0xf739, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Hail Mixed icon /// /// https://fontawesome.com/icons/cloud-hail-mixed?style=solid /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData solidCloudHailMixed = IconDataSolid(0xf73a); + static const IconData solidCloudHailMixed = IconData(0xf73a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Hail Mixed icon /// /// https://fontawesome.com/icons/cloud-hail-mixed?style=regular /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData cloudHailMixed = IconDataRegular(0xf73a); + static const IconData cloudHailMixed = IconData(0xf73a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Hail Mixed icon /// /// https://fontawesome.com/icons/cloud-hail-mixed?style=light /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData lightCloudHailMixed = IconDataLight(0xf73a); + static const IconData lightCloudHailMixed = IconData(0xf73a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Hail Mixed icon /// /// https://fontawesome.com/icons/cloud-hail-mixed?style=thin /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData thinCloudHailMixed = IconDataThin(0xf73a); + static const IconData thinCloudHailMixed = IconData(0xf73a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Meatball icon /// /// https://fontawesome.com/icons/cloud-meatball?style=solid /// FLDSMDFR, food, spaghetti, storm - static const IconData solidCloudMeatball = IconDataSolid(0xf73b); + static const IconData solidCloudMeatball = IconData(0xf73b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Meatball icon /// /// https://fontawesome.com/icons/cloud-meatball?style=regular /// FLDSMDFR, food, spaghetti, storm - static const IconData cloudMeatball = IconDataRegular(0xf73b); + static const IconData cloudMeatball = IconData(0xf73b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Meatball icon /// /// https://fontawesome.com/icons/cloud-meatball?style=light /// FLDSMDFR, food, spaghetti, storm - static const IconData lightCloudMeatball = IconDataLight(0xf73b); + static const IconData lightCloudMeatball = IconData(0xf73b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Meatball icon /// /// https://fontawesome.com/icons/cloud-meatball?style=thin /// FLDSMDFR, food, spaghetti, storm - static const IconData thinCloudMeatball = IconDataThin(0xf73b); + static const IconData thinCloudMeatball = IconData(0xf73b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Minus icon /// /// https://fontawesome.com/icons/cloud-minus?style=solid /// remove, subtract - static const IconData solidCloudMinus = IconDataSolid(0xe35d); + static const IconData solidCloudMinus = IconData(0xe35d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Minus icon /// /// https://fontawesome.com/icons/cloud-minus?style=regular /// remove, subtract - static const IconData cloudMinus = IconDataRegular(0xe35d); + static const IconData cloudMinus = IconData(0xe35d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Minus icon /// /// https://fontawesome.com/icons/cloud-minus?style=light /// remove, subtract - static const IconData lightCloudMinus = IconDataLight(0xe35d); + static const IconData lightCloudMinus = IconData(0xe35d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Minus icon /// /// https://fontawesome.com/icons/cloud-minus?style=thin /// remove, subtract - static const IconData thinCloudMinus = IconDataThin(0xe35d); + static const IconData thinCloudMinus = IconData(0xe35d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Moon icon /// /// https://fontawesome.com/icons/cloud-moon?style=solid /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData solidCloudMoon = IconDataSolid(0xf6c3); + static const IconData solidCloudMoon = IconData(0xf6c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Moon icon /// /// https://fontawesome.com/icons/cloud-moon?style=regular /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData cloudMoon = IconDataRegular(0xf6c3); + static const IconData cloudMoon = IconData(0xf6c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Moon icon /// /// https://fontawesome.com/icons/cloud-moon?style=light /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData lightCloudMoon = IconDataLight(0xf6c3); + static const IconData lightCloudMoon = IconData(0xf6c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Moon icon /// /// https://fontawesome.com/icons/cloud-moon?style=thin /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData thinCloudMoon = IconDataThin(0xf6c3); + static const IconData thinCloudMoon = IconData(0xf6c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Moon Rain icon /// /// https://fontawesome.com/icons/cloud-moon-rain?style=solid /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconData solidCloudMoonRain = IconDataSolid(0xf73c); + static const IconData solidCloudMoonRain = IconData(0xf73c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Moon Rain icon /// /// https://fontawesome.com/icons/cloud-moon-rain?style=regular /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconData cloudMoonRain = IconDataRegular(0xf73c); + static const IconData cloudMoonRain = IconData(0xf73c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Moon Rain icon /// /// https://fontawesome.com/icons/cloud-moon-rain?style=light /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconData lightCloudMoonRain = IconDataLight(0xf73c); + static const IconData lightCloudMoonRain = IconData(0xf73c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Moon Rain icon /// /// https://fontawesome.com/icons/cloud-moon-rain?style=thin /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconData thinCloudMoonRain = IconDataThin(0xf73c); + static const IconData thinCloudMoonRain = IconData(0xf73c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Music icon /// /// https://fontawesome.com/icons/cloud-music?style=solid /// download, music, spotify, streaming - static const IconData solidCloudMusic = IconDataSolid(0xf8ae); + static const IconData solidCloudMusic = IconData(0xf8ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Music icon /// /// https://fontawesome.com/icons/cloud-music?style=regular /// download, music, spotify, streaming - static const IconData cloudMusic = IconDataRegular(0xf8ae); + static const IconData cloudMusic = IconData(0xf8ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Music icon /// /// https://fontawesome.com/icons/cloud-music?style=light /// download, music, spotify, streaming - static const IconData lightCloudMusic = IconDataLight(0xf8ae); + static const IconData lightCloudMusic = IconData(0xf8ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Music icon /// /// https://fontawesome.com/icons/cloud-music?style=thin /// download, music, spotify, streaming - static const IconData thinCloudMusic = IconDataThin(0xf8ae); + static const IconData thinCloudMusic = IconData(0xf8ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Plus icon /// /// https://fontawesome.com/icons/cloud-plus?style=solid /// upload, add, new - static const IconData solidCloudPlus = IconDataSolid(0xe35e); + static const IconData solidCloudPlus = IconData(0xe35e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Plus icon /// /// https://fontawesome.com/icons/cloud-plus?style=regular /// upload, add, new - static const IconData cloudPlus = IconDataRegular(0xe35e); + static const IconData cloudPlus = IconData(0xe35e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Plus icon /// /// https://fontawesome.com/icons/cloud-plus?style=light /// upload, add, new - static const IconData lightCloudPlus = IconDataLight(0xe35e); + static const IconData lightCloudPlus = IconData(0xe35e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Plus icon /// /// https://fontawesome.com/icons/cloud-plus?style=thin /// upload, add, new - static const IconData thinCloudPlus = IconDataThin(0xe35e); + static const IconData thinCloudPlus = IconData(0xe35e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Question icon /// /// https://fontawesome.com/icons/cloud-question?style=solid /// alert, connection, faq, help, online, question, support, wifi - static const IconData solidCloudQuestion = IconDataSolid(0xe492); + static const IconData solidCloudQuestion = IconData(0xe492, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Question icon /// /// https://fontawesome.com/icons/cloud-question?style=regular /// alert, connection, faq, help, online, question, support, wifi - static const IconData cloudQuestion = IconDataRegular(0xe492); + static const IconData cloudQuestion = IconData(0xe492, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Question icon /// /// https://fontawesome.com/icons/cloud-question?style=light /// alert, connection, faq, help, online, question, support, wifi - static const IconData lightCloudQuestion = IconDataLight(0xe492); + static const IconData lightCloudQuestion = IconData(0xe492, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Question icon /// /// https://fontawesome.com/icons/cloud-question?style=thin /// alert, connection, faq, help, online, question, support, wifi - static const IconData thinCloudQuestion = IconDataThin(0xe492); + static const IconData thinCloudQuestion = IconData(0xe492, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Rain icon /// /// https://fontawesome.com/icons/cloud-rain?style=solid /// Rain, cloud, cloud with rain, precipitation, rain, sky, storm - static const IconData solidCloudRain = IconDataSolid(0xf73d); + static const IconData solidCloudRain = IconData(0xf73d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Rain icon /// /// https://fontawesome.com/icons/cloud-rain?style=regular /// Rain, cloud, cloud with rain, precipitation, rain, sky, storm - static const IconData cloudRain = IconDataRegular(0xf73d); + static const IconData cloudRain = IconData(0xf73d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Rain icon /// /// https://fontawesome.com/icons/cloud-rain?style=light /// Rain, cloud, cloud with rain, precipitation, rain, sky, storm - static const IconData lightCloudRain = IconDataLight(0xf73d); + static const IconData lightCloudRain = IconData(0xf73d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Rain icon /// /// https://fontawesome.com/icons/cloud-rain?style=thin /// Rain, cloud, cloud with rain, precipitation, rain, sky, storm - static const IconData thinCloudRain = IconDataThin(0xf73d); + static const IconData thinCloudRain = IconData(0xf73d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Rainbow icon /// /// https://fontawesome.com/icons/cloud-rainbow?style=solid /// gold, leprechaun, prism, rain, sky - static const IconData solidCloudRainbow = IconDataSolid(0xf73e); + static const IconData solidCloudRainbow = IconData(0xf73e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Rainbow icon /// /// https://fontawesome.com/icons/cloud-rainbow?style=regular /// gold, leprechaun, prism, rain, sky - static const IconData cloudRainbow = IconDataRegular(0xf73e); + static const IconData cloudRainbow = IconData(0xf73e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Rainbow icon /// /// https://fontawesome.com/icons/cloud-rainbow?style=light /// gold, leprechaun, prism, rain, sky - static const IconData lightCloudRainbow = IconDataLight(0xf73e); + static const IconData lightCloudRainbow = IconData(0xf73e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Rainbow icon /// /// https://fontawesome.com/icons/cloud-rainbow?style=thin /// gold, leprechaun, prism, rain, sky - static const IconData thinCloudRainbow = IconDataThin(0xf73e); + static const IconData thinCloudRainbow = IconData(0xf73e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Showers icon /// /// https://fontawesome.com/icons/cloud-showers?style=solid /// precipitation, rain, sky, storm - static const IconData solidCloudShowers = IconDataSolid(0xf73f); + static const IconData solidCloudShowers = IconData(0xf73f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Showers icon /// /// https://fontawesome.com/icons/cloud-showers?style=regular /// precipitation, rain, sky, storm - static const IconData cloudShowers = IconDataRegular(0xf73f); + static const IconData cloudShowers = IconData(0xf73f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Showers icon /// /// https://fontawesome.com/icons/cloud-showers?style=light /// precipitation, rain, sky, storm - static const IconData lightCloudShowers = IconDataLight(0xf73f); + static const IconData lightCloudShowers = IconData(0xf73f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Showers icon /// /// https://fontawesome.com/icons/cloud-showers?style=thin /// precipitation, rain, sky, storm - static const IconData thinCloudShowers = IconDataThin(0xf73f); + static const IconData thinCloudShowers = IconData(0xf73f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Showers Heavy icon /// /// https://fontawesome.com/icons/cloud-showers-heavy?style=solid /// precipitation, rain, sky, storm - static const IconData solidCloudShowersHeavy = IconDataSolid(0xf740); + static const IconData solidCloudShowersHeavy = IconData(0xf740, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Showers Heavy icon /// /// https://fontawesome.com/icons/cloud-showers-heavy?style=regular /// precipitation, rain, sky, storm - static const IconData cloudShowersHeavy = IconDataRegular(0xf740); + static const IconData cloudShowersHeavy = IconData(0xf740, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Showers Heavy icon /// /// https://fontawesome.com/icons/cloud-showers-heavy?style=light /// precipitation, rain, sky, storm - static const IconData lightCloudShowersHeavy = IconDataLight(0xf740); + static const IconData lightCloudShowersHeavy = IconData(0xf740, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Showers Heavy icon /// /// https://fontawesome.com/icons/cloud-showers-heavy?style=thin /// precipitation, rain, sky, storm - static const IconData thinCloudShowersHeavy = IconDataThin(0xf740); + static const IconData thinCloudShowersHeavy = IconData(0xf740, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Showers Water icon /// /// https://fontawesome.com/icons/cloud-showers-water?style=solid /// cloud, deluge, flood, rain, storm, surge - static const IconData solidCloudShowersWater = IconDataSolid(0xe4e4); + static const IconData solidCloudShowersWater = IconData(0xe4e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Showers Water icon /// /// https://fontawesome.com/icons/cloud-showers-water?style=regular /// cloud, deluge, flood, rain, storm, surge - static const IconData cloudShowersWater = IconDataRegular(0xe4e4); + static const IconData cloudShowersWater = IconData(0xe4e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Showers Water icon /// /// https://fontawesome.com/icons/cloud-showers-water?style=light /// cloud, deluge, flood, rain, storm, surge - static const IconData lightCloudShowersWater = IconDataLight(0xe4e4); + static const IconData lightCloudShowersWater = IconData(0xe4e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Showers Water icon /// /// https://fontawesome.com/icons/cloud-showers-water?style=thin /// cloud, deluge, flood, rain, storm, surge - static const IconData thinCloudShowersWater = IconDataThin(0xe4e4); + static const IconData thinCloudShowersWater = IconData(0xe4e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Slash icon /// /// https://fontawesome.com/icons/cloud-slash?style=solid /// connection, disabled, internet - static const IconData solidCloudSlash = IconDataSolid(0xe137); + static const IconData solidCloudSlash = IconData(0xe137, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Slash icon /// /// https://fontawesome.com/icons/cloud-slash?style=regular /// connection, disabled, internet - static const IconData cloudSlash = IconDataRegular(0xe137); + static const IconData cloudSlash = IconData(0xe137, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Slash icon /// /// https://fontawesome.com/icons/cloud-slash?style=light /// connection, disabled, internet - static const IconData lightCloudSlash = IconDataLight(0xe137); + static const IconData lightCloudSlash = IconData(0xe137, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Slash icon /// /// https://fontawesome.com/icons/cloud-slash?style=thin /// connection, disabled, internet - static const IconData thinCloudSlash = IconDataThin(0xe137); + static const IconData thinCloudSlash = IconData(0xe137, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Sleet icon /// /// https://fontawesome.com/icons/cloud-sleet?style=solid /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData solidCloudSleet = IconDataSolid(0xf741); + static const IconData solidCloudSleet = IconData(0xf741, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Sleet icon /// /// https://fontawesome.com/icons/cloud-sleet?style=regular /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData cloudSleet = IconDataRegular(0xf741); + static const IconData cloudSleet = IconData(0xf741, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Sleet icon /// /// https://fontawesome.com/icons/cloud-sleet?style=light /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData lightCloudSleet = IconDataLight(0xf741); + static const IconData lightCloudSleet = IconData(0xf741, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Sleet icon /// /// https://fontawesome.com/icons/cloud-sleet?style=thin /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData thinCloudSleet = IconDataThin(0xf741); + static const IconData thinCloudSleet = IconData(0xf741, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Snow icon /// /// https://fontawesome.com/icons/cloud-snow?style=solid /// blizzard, cloud, cloud with snow, cold, noreaster, precipitation, snow, winter - static const IconData solidCloudSnow = IconDataSolid(0xf742); + static const IconData solidCloudSnow = IconData(0xf742, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Snow icon /// /// https://fontawesome.com/icons/cloud-snow?style=regular /// blizzard, cloud, cloud with snow, cold, noreaster, precipitation, snow, winter - static const IconData cloudSnow = IconDataRegular(0xf742); + static const IconData cloudSnow = IconData(0xf742, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Snow icon /// /// https://fontawesome.com/icons/cloud-snow?style=light /// blizzard, cloud, cloud with snow, cold, noreaster, precipitation, snow, winter - static const IconData lightCloudSnow = IconDataLight(0xf742); + static const IconData lightCloudSnow = IconData(0xf742, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Snow icon /// /// https://fontawesome.com/icons/cloud-snow?style=thin /// blizzard, cloud, cloud with snow, cold, noreaster, precipitation, snow, winter - static const IconData thinCloudSnow = IconDataThin(0xf742); + static const IconData thinCloudSnow = IconData(0xf742, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Sun icon /// /// https://fontawesome.com/icons/cloud-sun?style=solid /// clear, cloud, day, daytime, fall, outdoors, overcast, partly cloudy, sun, sun behind cloud - static const IconData solidCloudSun = IconDataSolid(0xf6c4); + static const IconData solidCloudSun = IconData(0xf6c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Sun icon /// /// https://fontawesome.com/icons/cloud-sun?style=regular /// clear, cloud, day, daytime, fall, outdoors, overcast, partly cloudy, sun, sun behind cloud - static const IconData cloudSun = IconDataRegular(0xf6c4); + static const IconData cloudSun = IconData(0xf6c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Sun icon /// /// https://fontawesome.com/icons/cloud-sun?style=light /// clear, cloud, day, daytime, fall, outdoors, overcast, partly cloudy, sun, sun behind cloud - static const IconData lightCloudSun = IconDataLight(0xf6c4); + static const IconData lightCloudSun = IconData(0xf6c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Sun icon /// /// https://fontawesome.com/icons/cloud-sun?style=thin /// clear, cloud, day, daytime, fall, outdoors, overcast, partly cloudy, sun, sun behind cloud - static const IconData thinCloudSun = IconDataThin(0xf6c4); + static const IconData thinCloudSun = IconData(0xf6c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Sun Rain icon /// /// https://fontawesome.com/icons/cloud-sun-rain?style=solid /// cloud, day, overcast, precipitation, rain, storm, summer, sun, sun behind rain cloud, sunshower - static const IconData solidCloudSunRain = IconDataSolid(0xf743); + static const IconData solidCloudSunRain = IconData(0xf743, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Sun Rain icon /// /// https://fontawesome.com/icons/cloud-sun-rain?style=regular /// cloud, day, overcast, precipitation, rain, storm, summer, sun, sun behind rain cloud, sunshower - static const IconData cloudSunRain = IconDataRegular(0xf743); + static const IconData cloudSunRain = IconData(0xf743, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Sun Rain icon /// /// https://fontawesome.com/icons/cloud-sun-rain?style=light /// cloud, day, overcast, precipitation, rain, storm, summer, sun, sun behind rain cloud, sunshower - static const IconData lightCloudSunRain = IconDataLight(0xf743); + static const IconData lightCloudSunRain = IconData(0xf743, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Sun Rain icon /// /// https://fontawesome.com/icons/cloud-sun-rain?style=thin /// cloud, day, overcast, precipitation, rain, storm, summer, sun, sun behind rain cloud, sunshower - static const IconData thinCloudSunRain = IconDataThin(0xf743); + static const IconData thinCloudSunRain = IconData(0xf743, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Word icon /// /// https://fontawesome.com/icons/cloud-word?style=solid /// captions, ideas, subtitle, subtitling - static const IconData solidCloudWord = IconDataSolid(0xe138); + static const IconData solidCloudWord = IconData(0xe138, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Word icon /// /// https://fontawesome.com/icons/cloud-word?style=regular /// captions, ideas, subtitle, subtitling - static const IconData cloudWord = IconDataRegular(0xe138); + static const IconData cloudWord = IconData(0xe138, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Word icon /// /// https://fontawesome.com/icons/cloud-word?style=light /// captions, ideas, subtitle, subtitling - static const IconData lightCloudWord = IconDataLight(0xe138); + static const IconData lightCloudWord = IconData(0xe138, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Word icon /// /// https://fontawesome.com/icons/cloud-word?style=thin /// captions, ideas, subtitle, subtitling - static const IconData thinCloudWord = IconDataThin(0xe138); + static const IconData thinCloudWord = IconData(0xe138, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cloud Xmark icon /// /// https://fontawesome.com/icons/cloud-xmark?style=solid /// cancel, remove, uncheck - static const IconData solidCloudXmark = IconDataSolid(0xe35f); + static const IconData solidCloudXmark = IconData(0xe35f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cloud Xmark icon /// /// https://fontawesome.com/icons/cloud-xmark?style=regular /// cancel, remove, uncheck - static const IconData cloudXmark = IconDataRegular(0xe35f); + static const IconData cloudXmark = IconData(0xe35f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cloud Xmark icon /// /// https://fontawesome.com/icons/cloud-xmark?style=light /// cancel, remove, uncheck - static const IconData lightCloudXmark = IconDataLight(0xe35f); + static const IconData lightCloudXmark = IconData(0xe35f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cloud Xmark icon /// /// https://fontawesome.com/icons/cloud-xmark?style=thin /// cancel, remove, uncheck - static const IconData thinCloudXmark = IconDataThin(0xe35f); + static const IconData thinCloudXmark = IconData(0xe35f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Cloudflare icon /// /// https://fontawesome.com/icons/cloudflare?style=brands - static const IconData cloudflare = IconDataBrands(0xe07d); + static const IconData cloudflare = IconData(0xe07d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Clouds icon /// /// https://fontawesome.com/icons/clouds?style=solid /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData solidClouds = IconDataSolid(0xf744); + static const IconData solidClouds = IconData(0xf744, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clouds icon /// /// https://fontawesome.com/icons/clouds?style=regular /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData clouds = IconDataRegular(0xf744); + static const IconData clouds = IconData(0xf744, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clouds icon /// /// https://fontawesome.com/icons/clouds?style=light /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData lightClouds = IconDataLight(0xf744); + static const IconData lightClouds = IconData(0xf744, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clouds icon /// /// https://fontawesome.com/icons/clouds?style=thin /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData thinClouds = IconDataThin(0xf744); + static const IconData thinClouds = IconData(0xf744, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clouds Moon icon /// /// https://fontawesome.com/icons/clouds-moon?style=solid /// cloudy, moonlight, night, overcast, sky - static const IconData solidCloudsMoon = IconDataSolid(0xf745); + static const IconData solidCloudsMoon = IconData(0xf745, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clouds Moon icon /// /// https://fontawesome.com/icons/clouds-moon?style=regular /// cloudy, moonlight, night, overcast, sky - static const IconData cloudsMoon = IconDataRegular(0xf745); + static const IconData cloudsMoon = IconData(0xf745, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clouds Moon icon /// /// https://fontawesome.com/icons/clouds-moon?style=light /// cloudy, moonlight, night, overcast, sky - static const IconData lightCloudsMoon = IconDataLight(0xf745); + static const IconData lightCloudsMoon = IconData(0xf745, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clouds Moon icon /// /// https://fontawesome.com/icons/clouds-moon?style=thin /// cloudy, moonlight, night, overcast, sky - static const IconData thinCloudsMoon = IconDataThin(0xf745); + static const IconData thinCloudsMoon = IconData(0xf745, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Clouds Sun icon /// /// https://fontawesome.com/icons/clouds-sun?style=solid /// cloudy, day, moonlight, overcast, sky, summer - static const IconData solidCloudsSun = IconDataSolid(0xf746); + static const IconData solidCloudsSun = IconData(0xf746, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clouds Sun icon /// /// https://fontawesome.com/icons/clouds-sun?style=regular /// cloudy, day, moonlight, overcast, sky, summer - static const IconData cloudsSun = IconDataRegular(0xf746); + static const IconData cloudsSun = IconData(0xf746, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clouds Sun icon /// /// https://fontawesome.com/icons/clouds-sun?style=light /// cloudy, day, moonlight, overcast, sky, summer - static const IconData lightCloudsSun = IconDataLight(0xf746); + static const IconData lightCloudsSun = IconData(0xf746, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clouds Sun icon /// /// https://fontawesome.com/icons/clouds-sun?style=thin /// cloudy, day, moonlight, overcast, sky, summer - static const IconData thinCloudsSun = IconDataThin(0xf746); + static const IconData thinCloudsSun = IconData(0xf746, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands cloudscale.ch icon /// /// https://fontawesome.com/icons/cloudscale?style=brands - static const IconData cloudscale = IconDataBrands(0xf383); + static const IconData cloudscale = IconData(0xf383, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Cloudsmith icon /// /// https://fontawesome.com/icons/cloudsmith?style=brands - static const IconData cloudsmith = IconDataBrands(0xf384); + static const IconData cloudsmith = IconData(0xf384, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands cloudversify icon /// /// https://fontawesome.com/icons/cloudversify?style=brands - static const IconData cloudversify = IconDataBrands(0xf385); + static const IconData cloudversify = IconData(0xf385, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Clover icon /// /// https://fontawesome.com/icons/clover?style=solid /// 4, charm, clover, four, four leaf clover, four-leaf clover, leaf, leprechaun, luck, lucky - static const IconData solidClover = IconDataSolid(0xe139); + static const IconData solidClover = IconData(0xe139, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Clover icon /// /// https://fontawesome.com/icons/clover?style=regular /// 4, charm, clover, four, four leaf clover, four-leaf clover, leaf, leprechaun, luck, lucky - static const IconData clover = IconDataRegular(0xe139); + static const IconData clover = IconData(0xe139, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Clover icon /// /// https://fontawesome.com/icons/clover?style=light /// 4, charm, clover, four, four leaf clover, four-leaf clover, leaf, leprechaun, luck, lucky - static const IconData lightClover = IconDataLight(0xe139); + static const IconData lightClover = IconData(0xe139, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Clover icon /// /// https://fontawesome.com/icons/clover?style=thin /// 4, charm, clover, four, four leaf clover, four-leaf clover, leaf, leprechaun, luck, lucky - static const IconData thinClover = IconDataThin(0xe139); + static const IconData thinClover = IconData(0xe139, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Club icon /// /// https://fontawesome.com/icons/club?style=solid /// ace, card, club suit, game, poker, suit - static const IconData solidClub = IconDataSolid(0xf327); + static const IconData solidClub = IconData(0xf327, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Club icon /// /// https://fontawesome.com/icons/club?style=regular /// ace, card, club suit, game, poker, suit - static const IconData club = IconDataRegular(0xf327); + static const IconData club = IconData(0xf327, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Club icon /// /// https://fontawesome.com/icons/club?style=light /// ace, card, club suit, game, poker, suit - static const IconData lightClub = IconDataLight(0xf327); + static const IconData lightClub = IconData(0xf327, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Club icon /// /// https://fontawesome.com/icons/club?style=thin /// ace, card, club suit, game, poker, suit - static const IconData thinClub = IconDataThin(0xf327); + static const IconData thinClub = IconData(0xf327, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Cmplid icon /// /// https://fontawesome.com/icons/cmplid?style=brands - static const IconData cmplid = IconDataBrands(0xe360); + static const IconData cmplid = IconData(0xe360, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Coconut icon /// /// https://fontawesome.com/icons/coconut?style=solid /// coconut, palm, piña colada, tropical - static const IconData solidCoconut = IconDataSolid(0xe2f6); + static const IconData solidCoconut = IconData(0xe2f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coconut icon /// /// https://fontawesome.com/icons/coconut?style=regular /// coconut, palm, piña colada, tropical - static const IconData coconut = IconDataRegular(0xe2f6); + static const IconData coconut = IconData(0xe2f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coconut icon /// /// https://fontawesome.com/icons/coconut?style=light /// coconut, palm, piña colada, tropical - static const IconData lightCoconut = IconDataLight(0xe2f6); + static const IconData lightCoconut = IconData(0xe2f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coconut icon /// /// https://fontawesome.com/icons/coconut?style=thin /// coconut, palm, piña colada, tropical - static const IconData thinCoconut = IconDataThin(0xe2f6); + static const IconData thinCoconut = IconData(0xe2f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code icon /// /// https://fontawesome.com/icons/code?style=solid /// brackets, code, development, html, mysql, sql - static const IconData solidCode = IconDataSolid(0xf121); + static const IconData solidCode = IconData(0xf121, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code icon /// /// https://fontawesome.com/icons/code?style=regular /// brackets, code, development, html, mysql, sql - static const IconData code = IconDataRegular(0xf121); + static const IconData code = IconData(0xf121, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code icon /// /// https://fontawesome.com/icons/code?style=light /// brackets, code, development, html, mysql, sql - static const IconData lightCode = IconDataLight(0xf121); + static const IconData lightCode = IconData(0xf121, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code icon /// /// https://fontawesome.com/icons/code?style=thin /// brackets, code, development, html, mysql, sql - static const IconData thinCode = IconDataThin(0xf121); + static const IconData thinCode = IconData(0xf121, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Branch icon /// /// https://fontawesome.com/icons/code-branch?style=solid /// branch, git, github, mysql, rebase, sql, svn, vcs, version - static const IconData solidCodeBranch = IconDataSolid(0xf126); + static const IconData solidCodeBranch = IconData(0xf126, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Branch icon /// /// https://fontawesome.com/icons/code-branch?style=regular /// branch, git, github, mysql, rebase, sql, svn, vcs, version - static const IconData codeBranch = IconDataRegular(0xf126); + static const IconData codeBranch = IconData(0xf126, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Branch icon /// /// https://fontawesome.com/icons/code-branch?style=light /// branch, git, github, mysql, rebase, sql, svn, vcs, version - static const IconData lightCodeBranch = IconDataLight(0xf126); + static const IconData lightCodeBranch = IconData(0xf126, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Branch icon /// /// https://fontawesome.com/icons/code-branch?style=thin /// branch, git, github, mysql, rebase, sql, svn, vcs, version - static const IconData thinCodeBranch = IconDataThin(0xf126); + static const IconData thinCodeBranch = IconData(0xf126, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Commit icon /// /// https://fontawesome.com/icons/code-commit?style=solid /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData solidCodeCommit = IconDataSolid(0xf386); + static const IconData solidCodeCommit = IconData(0xf386, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Commit icon /// /// https://fontawesome.com/icons/code-commit?style=regular /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData codeCommit = IconDataRegular(0xf386); + static const IconData codeCommit = IconData(0xf386, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Commit icon /// /// https://fontawesome.com/icons/code-commit?style=light /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData lightCodeCommit = IconDataLight(0xf386); + static const IconData lightCodeCommit = IconData(0xf386, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Commit icon /// /// https://fontawesome.com/icons/code-commit?style=thin /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData thinCodeCommit = IconDataThin(0xf386); + static const IconData thinCodeCommit = IconData(0xf386, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Compare icon /// /// https://fontawesome.com/icons/code-compare?style=solid /// compare, git, github, svn, version - static const IconData solidCodeCompare = IconDataSolid(0xe13a); + static const IconData solidCodeCompare = IconData(0xe13a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Compare icon /// /// https://fontawesome.com/icons/code-compare?style=regular /// compare, git, github, svn, version - static const IconData codeCompare = IconDataRegular(0xe13a); + static const IconData codeCompare = IconData(0xe13a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Compare icon /// /// https://fontawesome.com/icons/code-compare?style=light /// compare, git, github, svn, version - static const IconData lightCodeCompare = IconDataLight(0xe13a); + static const IconData lightCodeCompare = IconData(0xe13a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Compare icon /// /// https://fontawesome.com/icons/code-compare?style=thin /// compare, git, github, svn, version - static const IconData thinCodeCompare = IconDataThin(0xe13a); + static const IconData thinCodeCompare = IconData(0xe13a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Fork icon /// /// https://fontawesome.com/icons/code-fork?style=solid /// fork, git, github, svn, version - static const IconData solidCodeFork = IconDataSolid(0xe13b); + static const IconData solidCodeFork = IconData(0xe13b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Fork icon /// /// https://fontawesome.com/icons/code-fork?style=regular /// fork, git, github, svn, version - static const IconData codeFork = IconDataRegular(0xe13b); + static const IconData codeFork = IconData(0xe13b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Fork icon /// /// https://fontawesome.com/icons/code-fork?style=light /// fork, git, github, svn, version - static const IconData lightCodeFork = IconDataLight(0xe13b); + static const IconData lightCodeFork = IconData(0xe13b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Fork icon /// /// https://fontawesome.com/icons/code-fork?style=thin /// fork, git, github, svn, version - static const IconData thinCodeFork = IconDataThin(0xe13b); + static const IconData thinCodeFork = IconData(0xe13b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Merge icon /// /// https://fontawesome.com/icons/code-merge?style=solid /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData solidCodeMerge = IconDataSolid(0xf387); + static const IconData solidCodeMerge = IconData(0xf387, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Merge icon /// /// https://fontawesome.com/icons/code-merge?style=regular /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData codeMerge = IconDataRegular(0xf387); + static const IconData codeMerge = IconData(0xf387, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Merge icon /// /// https://fontawesome.com/icons/code-merge?style=light /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData lightCodeMerge = IconDataLight(0xf387); + static const IconData lightCodeMerge = IconData(0xf387, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Merge icon /// /// https://fontawesome.com/icons/code-merge?style=thin /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData thinCodeMerge = IconDataThin(0xf387); + static const IconData thinCodeMerge = IconData(0xf387, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Pull Request icon /// /// https://fontawesome.com/icons/code-pull-request?style=solid /// git, github, pr, svn, version - static const IconData solidCodePullRequest = IconDataSolid(0xe13c); + static const IconData solidCodePullRequest = IconData(0xe13c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Pull Request icon /// /// https://fontawesome.com/icons/code-pull-request?style=regular /// git, github, pr, svn, version - static const IconData codePullRequest = IconDataRegular(0xe13c); + static const IconData codePullRequest = IconData(0xe13c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Pull Request icon /// /// https://fontawesome.com/icons/code-pull-request?style=light /// git, github, pr, svn, version - static const IconData lightCodePullRequest = IconDataLight(0xe13c); + static const IconData lightCodePullRequest = IconData(0xe13c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Pull Request icon /// /// https://fontawesome.com/icons/code-pull-request?style=thin /// git, github, pr, svn, version - static const IconData thinCodePullRequest = IconDataThin(0xe13c); + static const IconData thinCodePullRequest = IconData(0xe13c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Pull Request Closed icon /// /// https://fontawesome.com/icons/code-pull-request-closed?style=solid /// git, github, pr, svn, version - static const IconData solidCodePullRequestClosed = IconDataSolid(0xe3f9); + static const IconData solidCodePullRequestClosed = IconData(0xe3f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Pull Request Closed icon /// /// https://fontawesome.com/icons/code-pull-request-closed?style=regular /// git, github, pr, svn, version - static const IconData codePullRequestClosed = IconDataRegular(0xe3f9); + static const IconData codePullRequestClosed = IconData(0xe3f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Pull Request Closed icon /// /// https://fontawesome.com/icons/code-pull-request-closed?style=light /// git, github, pr, svn, version - static const IconData lightCodePullRequestClosed = IconDataLight(0xe3f9); + static const IconData lightCodePullRequestClosed = IconData(0xe3f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Pull Request Closed icon /// /// https://fontawesome.com/icons/code-pull-request-closed?style=thin /// git, github, pr, svn, version - static const IconData thinCodePullRequestClosed = IconDataThin(0xe3f9); + static const IconData thinCodePullRequestClosed = IconData(0xe3f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Pull Request Draft icon /// /// https://fontawesome.com/icons/code-pull-request-draft?style=solid /// git, github, pr, svn, version - static const IconData solidCodePullRequestDraft = IconDataSolid(0xe3fa); + static const IconData solidCodePullRequestDraft = IconData(0xe3fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Pull Request Draft icon /// /// https://fontawesome.com/icons/code-pull-request-draft?style=regular /// git, github, pr, svn, version - static const IconData codePullRequestDraft = IconDataRegular(0xe3fa); + static const IconData codePullRequestDraft = IconData(0xe3fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Pull Request Draft icon /// /// https://fontawesome.com/icons/code-pull-request-draft?style=light /// git, github, pr, svn, version - static const IconData lightCodePullRequestDraft = IconDataLight(0xe3fa); + static const IconData lightCodePullRequestDraft = IconData(0xe3fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Pull Request Draft icon /// /// https://fontawesome.com/icons/code-pull-request-draft?style=thin /// git, github, pr, svn, version - static const IconData thinCodePullRequestDraft = IconDataThin(0xe3fa); + static const IconData thinCodePullRequestDraft = IconData(0xe3fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Code Simple icon /// /// https://fontawesome.com/icons/code-simple?style=solid /// code, computer, developer - static const IconData solidCodeSimple = IconDataSolid(0xe13d); + static const IconData solidCodeSimple = IconData(0xe13d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Code Simple icon /// /// https://fontawesome.com/icons/code-simple?style=regular /// code, computer, developer - static const IconData codeSimple = IconDataRegular(0xe13d); + static const IconData codeSimple = IconData(0xe13d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Code Simple icon /// /// https://fontawesome.com/icons/code-simple?style=light /// code, computer, developer - static const IconData lightCodeSimple = IconDataLight(0xe13d); + static const IconData lightCodeSimple = IconData(0xe13d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Code Simple icon /// /// https://fontawesome.com/icons/code-simple?style=thin /// code, computer, developer - static const IconData thinCodeSimple = IconDataThin(0xe13d); + static const IconData thinCodeSimple = IconData(0xe13d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Codepen icon /// /// https://fontawesome.com/icons/codepen?style=brands - static const IconData codepen = IconDataBrands(0xf1cb); + static const IconData codepen = IconData(0xf1cb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Codie Pie icon /// /// https://fontawesome.com/icons/codiepie?style=brands - static const IconData codiepie = IconDataBrands(0xf284); + static const IconData codiepie = IconData(0xf284, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Coffee Bean icon /// /// https://fontawesome.com/icons/coffee-bean?style=solid /// berry, brew, coffee, espresso, java - static const IconData solidCoffeeBean = IconDataSolid(0xe13e); + static const IconData solidCoffeeBean = IconData(0xe13e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coffee Bean icon /// /// https://fontawesome.com/icons/coffee-bean?style=regular /// berry, brew, coffee, espresso, java - static const IconData coffeeBean = IconDataRegular(0xe13e); + static const IconData coffeeBean = IconData(0xe13e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coffee Bean icon /// /// https://fontawesome.com/icons/coffee-bean?style=light /// berry, brew, coffee, espresso, java - static const IconData lightCoffeeBean = IconDataLight(0xe13e); + static const IconData lightCoffeeBean = IconData(0xe13e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coffee Bean icon /// /// https://fontawesome.com/icons/coffee-bean?style=thin /// berry, brew, coffee, espresso, java - static const IconData thinCoffeeBean = IconDataThin(0xe13e); + static const IconData thinCoffeeBean = IconData(0xe13e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coffee Beans icon /// /// https://fontawesome.com/icons/coffee-beans?style=solid /// berry, brew, coffee, espresso, java - static const IconData solidCoffeeBeans = IconDataSolid(0xe13f); + static const IconData solidCoffeeBeans = IconData(0xe13f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coffee Beans icon /// /// https://fontawesome.com/icons/coffee-beans?style=regular /// berry, brew, coffee, espresso, java - static const IconData coffeeBeans = IconDataRegular(0xe13f); + static const IconData coffeeBeans = IconData(0xe13f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coffee Beans icon /// /// https://fontawesome.com/icons/coffee-beans?style=light /// berry, brew, coffee, espresso, java - static const IconData lightCoffeeBeans = IconDataLight(0xe13f); + static const IconData lightCoffeeBeans = IconData(0xe13f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coffee Beans icon /// /// https://fontawesome.com/icons/coffee-beans?style=thin /// berry, brew, coffee, espresso, java - static const IconData thinCoffeeBeans = IconDataThin(0xe13f); + static const IconData thinCoffeeBeans = IconData(0xe13f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coffee Pot icon /// /// https://fontawesome.com/icons/coffee-pot?style=solid /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData solidCoffeePot = IconDataSolid(0xe002); + static const IconData solidCoffeePot = IconData(0xe002, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coffee Pot icon /// /// https://fontawesome.com/icons/coffee-pot?style=regular /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData coffeePot = IconDataRegular(0xe002); + static const IconData coffeePot = IconData(0xe002, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coffee Pot icon /// /// https://fontawesome.com/icons/coffee-pot?style=light /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData lightCoffeePot = IconDataLight(0xe002); + static const IconData lightCoffeePot = IconData(0xe002, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coffee Pot icon /// /// https://fontawesome.com/icons/coffee-pot?style=thin /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData thinCoffeePot = IconDataThin(0xe002); + static const IconData thinCoffeePot = IconData(0xe002, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coffin icon /// /// https://fontawesome.com/icons/coffin?style=solid /// box, burial, casket, cemetery, coffin, death, eulogy, funeral, halloween, vampire - static const IconData solidCoffin = IconDataSolid(0xf6c6); + static const IconData solidCoffin = IconData(0xf6c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coffin icon /// /// https://fontawesome.com/icons/coffin?style=regular /// box, burial, casket, cemetery, coffin, death, eulogy, funeral, halloween, vampire - static const IconData coffin = IconDataRegular(0xf6c6); + static const IconData coffin = IconData(0xf6c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coffin icon /// /// https://fontawesome.com/icons/coffin?style=light /// box, burial, casket, cemetery, coffin, death, eulogy, funeral, halloween, vampire - static const IconData lightCoffin = IconDataLight(0xf6c6); + static const IconData lightCoffin = IconData(0xf6c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coffin icon /// /// https://fontawesome.com/icons/coffin?style=thin /// box, burial, casket, cemetery, coffin, death, eulogy, funeral, halloween, vampire - static const IconData thinCoffin = IconDataThin(0xf6c6); + static const IconData thinCoffin = IconData(0xf6c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coffin Cross icon /// /// https://fontawesome.com/icons/coffin-cross?style=solid /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconData solidCoffinCross = IconDataSolid(0xe051); + static const IconData solidCoffinCross = IconData(0xe051, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coffin Cross icon /// /// https://fontawesome.com/icons/coffin-cross?style=regular /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconData coffinCross = IconDataRegular(0xe051); + static const IconData coffinCross = IconData(0xe051, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coffin Cross icon /// /// https://fontawesome.com/icons/coffin-cross?style=light /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconData lightCoffinCross = IconDataLight(0xe051); + static const IconData lightCoffinCross = IconData(0xe051, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coffin Cross icon /// /// https://fontawesome.com/icons/coffin-cross?style=thin /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconData thinCoffinCross = IconDataThin(0xe051); + static const IconData thinCoffinCross = IconData(0xe051, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coin icon /// /// https://fontawesome.com/icons/coin?style=solid /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData solidCoin = IconDataSolid(0xf85c); + static const IconData solidCoin = IconData(0xf85c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coin icon /// /// https://fontawesome.com/icons/coin?style=regular /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData coin = IconDataRegular(0xf85c); + static const IconData coin = IconData(0xf85c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coin icon /// /// https://fontawesome.com/icons/coin?style=light /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData lightCoin = IconDataLight(0xf85c); + static const IconData lightCoin = IconData(0xf85c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coin icon /// /// https://fontawesome.com/icons/coin?style=thin /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData thinCoin = IconDataThin(0xf85c); + static const IconData thinCoin = IconData(0xf85c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coin Blank icon /// /// https://fontawesome.com/icons/coin-blank?style=solid /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData solidCoinBlank = IconDataSolid(0xe3fb); + static const IconData solidCoinBlank = IconData(0xe3fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coin Blank icon /// /// https://fontawesome.com/icons/coin-blank?style=regular /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData coinBlank = IconDataRegular(0xe3fb); + static const IconData coinBlank = IconData(0xe3fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coin Blank icon /// /// https://fontawesome.com/icons/coin-blank?style=light /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData lightCoinBlank = IconDataLight(0xe3fb); + static const IconData lightCoinBlank = IconData(0xe3fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coin Blank icon /// /// https://fontawesome.com/icons/coin-blank?style=thin /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, treasure - static const IconData thinCoinBlank = IconDataThin(0xe3fb); + static const IconData thinCoinBlank = IconData(0xe3fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coin Front icon /// /// https://fontawesome.com/icons/coin-front?style=solid /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData solidCoinFront = IconDataSolid(0xe3fc); + static const IconData solidCoinFront = IconData(0xe3fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coin Front icon /// /// https://fontawesome.com/icons/coin-front?style=regular /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData coinFront = IconDataRegular(0xe3fc); + static const IconData coinFront = IconData(0xe3fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coin Front icon /// /// https://fontawesome.com/icons/coin-front?style=light /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData lightCoinFront = IconDataLight(0xe3fc); + static const IconData lightCoinFront = IconData(0xe3fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coin Front icon /// /// https://fontawesome.com/icons/coin-front?style=thin /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData thinCoinFront = IconDataThin(0xe3fc); + static const IconData thinCoinFront = IconData(0xe3fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coin Vertical icon /// /// https://fontawesome.com/icons/coin-vertical?style=solid /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData solidCoinVertical = IconDataSolid(0xe3fd); + static const IconData solidCoinVertical = IconData(0xe3fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coin Vertical icon /// /// https://fontawesome.com/icons/coin-vertical?style=regular /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData coinVertical = IconDataRegular(0xe3fd); + static const IconData coinVertical = IconData(0xe3fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coin Vertical icon /// /// https://fontawesome.com/icons/coin-vertical?style=light /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData lightCoinVertical = IconDataLight(0xe3fd); + static const IconData lightCoinVertical = IconData(0xe3fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coin Vertical icon /// /// https://fontawesome.com/icons/coin-vertical?style=thin /// coin, dime, gold, metal, money, nickel, penny, premium, quarter, silver, super mario, treasure - static const IconData thinCoinVertical = IconDataThin(0xe3fd); + static const IconData thinCoinVertical = IconData(0xe3fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Coins icon /// /// https://fontawesome.com/icons/coins?style=solid /// currency, dime, financial, gold, money, penny, premium - static const IconData solidCoins = IconDataSolid(0xf51e); + static const IconData solidCoins = IconData(0xf51e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Coins icon /// /// https://fontawesome.com/icons/coins?style=regular /// currency, dime, financial, gold, money, penny, premium - static const IconData coins = IconDataRegular(0xf51e); + static const IconData coins = IconData(0xf51e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Coins icon /// /// https://fontawesome.com/icons/coins?style=light /// currency, dime, financial, gold, money, penny, premium - static const IconData lightCoins = IconDataLight(0xf51e); + static const IconData lightCoins = IconData(0xf51e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Coins icon /// /// https://fontawesome.com/icons/coins?style=thin /// currency, dime, financial, gold, money, penny, premium - static const IconData thinCoins = IconDataThin(0xf51e); + static const IconData thinCoins = IconData(0xf51e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Colon icon /// /// https://fontawesome.com/icons/colon?style=solid /// Colon, clause, dots - static const IconData solidColon = IconDataSolid(0x3a); + static const IconData solidColon = IconData(0x3a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Colon icon /// /// https://fontawesome.com/icons/colon?style=regular /// Colon, clause, dots - static const IconData colon = IconDataRegular(0x3a); + static const IconData colon = IconData(0x3a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Colon icon /// /// https://fontawesome.com/icons/colon?style=light /// Colon, clause, dots - static const IconData lightColon = IconDataLight(0x3a); + static const IconData lightColon = IconData(0x3a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Colon icon /// /// https://fontawesome.com/icons/colon?style=thin /// Colon, clause, dots - static const IconData thinColon = IconDataThin(0x3a); + static const IconData thinColon = IconData(0x3a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Colon Sign icon /// /// https://fontawesome.com/icons/colon-sign?style=solid /// Colon Sign, currency - static const IconData solidColonSign = IconDataSolid(0xe140); + static const IconData solidColonSign = IconData(0xe140, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Colon Sign icon /// /// https://fontawesome.com/icons/colon-sign?style=regular /// Colon Sign, currency - static const IconData colonSign = IconDataRegular(0xe140); + static const IconData colonSign = IconData(0xe140, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Colon Sign icon /// /// https://fontawesome.com/icons/colon-sign?style=light /// Colon Sign, currency - static const IconData lightColonSign = IconDataLight(0xe140); + static const IconData lightColonSign = IconData(0xe140, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Colon Sign icon /// /// https://fontawesome.com/icons/colon-sign?style=thin /// Colon Sign, currency - static const IconData thinColonSign = IconDataThin(0xe140); + static const IconData thinColonSign = IconData(0xe140, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Columns 3 icon /// /// https://fontawesome.com/icons/columns-3?style=solid /// divide, organize, panes, split - static const IconData solidColumns3 = IconDataSolid(0xe361); + static const IconData solidColumns3 = IconData(0xe361, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Columns 3 icon /// /// https://fontawesome.com/icons/columns-3?style=regular /// divide, organize, panes, split - static const IconData columns3 = IconDataRegular(0xe361); + static const IconData columns3 = IconData(0xe361, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Columns 3 icon /// /// https://fontawesome.com/icons/columns-3?style=light /// divide, organize, panes, split - static const IconData lightColumns3 = IconDataLight(0xe361); + static const IconData lightColumns3 = IconData(0xe361, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Columns 3 icon /// /// https://fontawesome.com/icons/columns-3?style=thin /// divide, organize, panes, split - static const IconData thinColumns3 = IconDataThin(0xe361); + static const IconData thinColumns3 = IconData(0xe361, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comet icon /// /// https://fontawesome.com/icons/comet?style=solid /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconData solidComet = IconDataSolid(0xe003); + static const IconData solidComet = IconData(0xe003, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comet icon /// /// https://fontawesome.com/icons/comet?style=regular /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconData comet = IconDataRegular(0xe003); + static const IconData comet = IconData(0xe003, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comet icon /// /// https://fontawesome.com/icons/comet?style=light /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconData lightComet = IconDataLight(0xe003); + static const IconData lightComet = IconData(0xe003, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comet icon /// /// https://fontawesome.com/icons/comet?style=thin /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconData thinComet = IconDataThin(0xe003); + static const IconData thinComet = IconData(0xe003, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comma icon /// /// https://fontawesome.com/icons/comma?style=solid /// Comma, interval, punctuation - static const IconData solidComma = IconDataSolid(0x2c); + static const IconData solidComma = IconData(0x2c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comma icon /// /// https://fontawesome.com/icons/comma?style=regular /// Comma, interval, punctuation - static const IconData comma = IconDataRegular(0x2c); + static const IconData comma = IconData(0x2c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comma icon /// /// https://fontawesome.com/icons/comma?style=light /// Comma, interval, punctuation - static const IconData lightComma = IconDataLight(0x2c); + static const IconData lightComma = IconData(0x2c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comma icon /// /// https://fontawesome.com/icons/comma?style=thin /// Comma, interval, punctuation - static const IconData thinComma = IconDataThin(0x2c); + static const IconData thinComma = IconData(0x2c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Command icon /// /// https://fontawesome.com/icons/command?style=solid /// Place of Interest Sign, apple key, loop - static const IconData solidCommand = IconDataSolid(0xe142); + static const IconData solidCommand = IconData(0xe142, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Command icon /// /// https://fontawesome.com/icons/command?style=regular /// Place of Interest Sign, apple key, loop - static const IconData command = IconDataRegular(0xe142); + static const IconData command = IconData(0xe142, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Command icon /// /// https://fontawesome.com/icons/command?style=light /// Place of Interest Sign, apple key, loop - static const IconData lightCommand = IconDataLight(0xe142); + static const IconData lightCommand = IconData(0xe142, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Command icon /// /// https://fontawesome.com/icons/command?style=thin /// Place of Interest Sign, apple key, loop - static const IconData thinCommand = IconDataThin(0xe142); + static const IconData thinCommand = IconData(0xe142, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment icon /// /// https://fontawesome.com/icons/comment?style=solid /// conversation, discussion, talking, Right Speech Bubble, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData solidComment = IconDataSolid(0xf075); + static const IconData solidComment = IconData(0xf075, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment icon /// /// https://fontawesome.com/icons/comment?style=regular /// conversation, discussion, talking, Right Speech Bubble, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData comment = IconDataRegular(0xf075); + static const IconData comment = IconData(0xf075, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment icon /// /// https://fontawesome.com/icons/comment?style=light /// conversation, discussion, talking, Right Speech Bubble, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData lightComment = IconDataLight(0xf075); + static const IconData lightComment = IconData(0xf075, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment icon /// /// https://fontawesome.com/icons/comment?style=thin /// conversation, discussion, talking, Right Speech Bubble, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData thinComment = IconDataThin(0xf075); + static const IconData thinComment = IconData(0xf075, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Arrow Down icon /// /// https://fontawesome.com/icons/comment-arrow-down?style=solid /// answer, chat, contact, download, insert - static const IconData solidCommentArrowDown = IconDataSolid(0xe143); + static const IconData solidCommentArrowDown = IconData(0xe143, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Arrow Down icon /// /// https://fontawesome.com/icons/comment-arrow-down?style=regular /// answer, chat, contact, download, insert - static const IconData commentArrowDown = IconDataRegular(0xe143); + static const IconData commentArrowDown = IconData(0xe143, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Arrow Down icon /// /// https://fontawesome.com/icons/comment-arrow-down?style=light /// answer, chat, contact, download, insert - static const IconData lightCommentArrowDown = IconDataLight(0xe143); + static const IconData lightCommentArrowDown = IconData(0xe143, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Arrow Down icon /// /// https://fontawesome.com/icons/comment-arrow-down?style=thin /// answer, chat, contact, download, insert - static const IconData thinCommentArrowDown = IconDataThin(0xe143); + static const IconData thinCommentArrowDown = IconData(0xe143, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Arrow Up icon /// /// https://fontawesome.com/icons/comment-arrow-up?style=solid /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData solidCommentArrowUp = IconDataSolid(0xe144); + static const IconData solidCommentArrowUp = IconData(0xe144, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Arrow Up icon /// /// https://fontawesome.com/icons/comment-arrow-up?style=regular /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData commentArrowUp = IconDataRegular(0xe144); + static const IconData commentArrowUp = IconData(0xe144, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Arrow Up icon /// /// https://fontawesome.com/icons/comment-arrow-up?style=light /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData lightCommentArrowUp = IconDataLight(0xe144); + static const IconData lightCommentArrowUp = IconData(0xe144, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Arrow Up icon /// /// https://fontawesome.com/icons/comment-arrow-up?style=thin /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData thinCommentArrowUp = IconDataThin(0xe144); + static const IconData thinCommentArrowUp = IconData(0xe144, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Arrow Up Right icon /// /// https://fontawesome.com/icons/comment-arrow-up-right?style=solid /// answer, chat, contact, discussion, send, upload - static const IconData solidCommentArrowUpRight = IconDataSolid(0xe145); + static const IconData solidCommentArrowUpRight = IconData(0xe145, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Arrow Up Right icon /// /// https://fontawesome.com/icons/comment-arrow-up-right?style=regular /// answer, chat, contact, discussion, send, upload - static const IconData commentArrowUpRight = IconDataRegular(0xe145); + static const IconData commentArrowUpRight = IconData(0xe145, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Arrow Up Right icon /// /// https://fontawesome.com/icons/comment-arrow-up-right?style=light /// answer, chat, contact, discussion, send, upload - static const IconData lightCommentArrowUpRight = IconDataLight(0xe145); + static const IconData lightCommentArrowUpRight = IconData(0xe145, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Arrow Up Right icon /// /// https://fontawesome.com/icons/comment-arrow-up-right?style=thin /// answer, chat, contact, discussion, send, upload - static const IconData thinCommentArrowUpRight = IconDataThin(0xe145); + static const IconData thinCommentArrowUpRight = IconData(0xe145, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Captions icon /// /// https://fontawesome.com/icons/comment-captions?style=solid /// answer, chat, closed captions, subtitle, subtitling - static const IconData solidCommentCaptions = IconDataSolid(0xe146); + static const IconData solidCommentCaptions = IconData(0xe146, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Captions icon /// /// https://fontawesome.com/icons/comment-captions?style=regular /// answer, chat, closed captions, subtitle, subtitling - static const IconData commentCaptions = IconDataRegular(0xe146); + static const IconData commentCaptions = IconData(0xe146, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Captions icon /// /// https://fontawesome.com/icons/comment-captions?style=light /// answer, chat, closed captions, subtitle, subtitling - static const IconData lightCommentCaptions = IconDataLight(0xe146); + static const IconData lightCommentCaptions = IconData(0xe146, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Captions icon /// /// https://fontawesome.com/icons/comment-captions?style=thin /// answer, chat, closed captions, subtitle, subtitling - static const IconData thinCommentCaptions = IconDataThin(0xe146); + static const IconData thinCommentCaptions = IconData(0xe146, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Check icon /// /// https://fontawesome.com/icons/comment-check?style=solid /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData solidCommentCheck = IconDataSolid(0xf4ac); + static const IconData solidCommentCheck = IconData(0xf4ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Check icon /// /// https://fontawesome.com/icons/comment-check?style=regular /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData commentCheck = IconDataRegular(0xf4ac); + static const IconData commentCheck = IconData(0xf4ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Check icon /// /// https://fontawesome.com/icons/comment-check?style=light /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData lightCommentCheck = IconDataLight(0xf4ac); + static const IconData lightCommentCheck = IconData(0xf4ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Check icon /// /// https://fontawesome.com/icons/comment-check?style=thin /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData thinCommentCheck = IconDataThin(0xf4ac); + static const IconData thinCommentCheck = IconData(0xf4ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Code icon /// /// https://fontawesome.com/icons/comment-code?style=solid /// answer, coding, contact, discussion - static const IconData solidCommentCode = IconDataSolid(0xe147); + static const IconData solidCommentCode = IconData(0xe147, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Code icon /// /// https://fontawesome.com/icons/comment-code?style=regular /// answer, coding, contact, discussion - static const IconData commentCode = IconDataRegular(0xe147); + static const IconData commentCode = IconData(0xe147, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Code icon /// /// https://fontawesome.com/icons/comment-code?style=light /// answer, coding, contact, discussion - static const IconData lightCommentCode = IconDataLight(0xe147); + static const IconData lightCommentCode = IconData(0xe147, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Code icon /// /// https://fontawesome.com/icons/comment-code?style=thin /// answer, coding, contact, discussion - static const IconData thinCommentCode = IconDataThin(0xe147); + static const IconData thinCommentCode = IconData(0xe147, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Dollar icon /// /// https://fontawesome.com/icons/comment-dollar?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData solidCommentDollar = IconDataSolid(0xf651); + static const IconData solidCommentDollar = IconData(0xf651, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Dollar icon /// /// https://fontawesome.com/icons/comment-dollar?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData commentDollar = IconDataRegular(0xf651); + static const IconData commentDollar = IconData(0xf651, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Dollar icon /// /// https://fontawesome.com/icons/comment-dollar?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData lightCommentDollar = IconDataLight(0xf651); + static const IconData lightCommentDollar = IconData(0xf651, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Dollar icon /// /// https://fontawesome.com/icons/comment-dollar?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData thinCommentDollar = IconDataThin(0xf651); + static const IconData thinCommentDollar = IconData(0xf651, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Dots icon /// /// https://fontawesome.com/icons/comment-dots?style=solid /// answer, balloon, bubble, chat, comic, commenting, conversation, dialog, feedback, message, more, note, notification, reply, request, sms, speech, speech balloon, texting - static const IconData solidCommentDots = IconDataSolid(0xf4ad); + static const IconData solidCommentDots = IconData(0xf4ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias commenting for icon [solidCommentDots] @Deprecated('Use "solidCommentDots" instead.') @@ -26159,7 +26159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-dots?style=regular /// answer, balloon, bubble, chat, comic, commenting, conversation, dialog, feedback, message, more, note, notification, reply, request, sms, speech, speech balloon, texting - static const IconData commentDots = IconDataRegular(0xf4ad); + static const IconData commentDots = IconData(0xf4ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias commenting for icon [commentDots] @Deprecated('Use "commentDots" instead.') @@ -26169,7 +26169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-dots?style=light /// answer, balloon, bubble, chat, comic, commenting, conversation, dialog, feedback, message, more, note, notification, reply, request, sms, speech, speech balloon, texting - static const IconData lightCommentDots = IconDataLight(0xf4ad); + static const IconData lightCommentDots = IconData(0xf4ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias commenting for icon [lightCommentDots] @Deprecated('Use "lightCommentDots" instead.') @@ -26179,7 +26179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-dots?style=thin /// answer, balloon, bubble, chat, comic, commenting, conversation, dialog, feedback, message, more, note, notification, reply, request, sms, speech, speech balloon, texting - static const IconData thinCommentDots = IconDataThin(0xf4ad); + static const IconData thinCommentDots = IconData(0xf4ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias commenting for icon [thinCommentDots] @Deprecated('Use "thinCommentDots" instead.') @@ -26189,223 +26189,223 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-exclamation?style=solid /// alert, answer, attention, bubble, chat, commenting, conversation, exclaim, failed, feedback, important, message, note, notification, request, sms, speech, surprise, texting - static const IconData solidCommentExclamation = IconDataSolid(0xf4af); + static const IconData solidCommentExclamation = IconData(0xf4af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Exclamation icon /// /// https://fontawesome.com/icons/comment-exclamation?style=regular /// alert, answer, attention, bubble, chat, commenting, conversation, exclaim, failed, feedback, important, message, note, notification, request, sms, speech, surprise, texting - static const IconData commentExclamation = IconDataRegular(0xf4af); + static const IconData commentExclamation = IconData(0xf4af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Exclamation icon /// /// https://fontawesome.com/icons/comment-exclamation?style=light /// alert, answer, attention, bubble, chat, commenting, conversation, exclaim, failed, feedback, important, message, note, notification, request, sms, speech, surprise, texting - static const IconData lightCommentExclamation = IconDataLight(0xf4af); + static const IconData lightCommentExclamation = IconData(0xf4af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Exclamation icon /// /// https://fontawesome.com/icons/comment-exclamation?style=thin /// alert, answer, attention, bubble, chat, commenting, conversation, exclaim, failed, feedback, important, message, note, notification, request, sms, speech, surprise, texting - static const IconData thinCommentExclamation = IconDataThin(0xf4af); + static const IconData thinCommentExclamation = IconData(0xf4af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Heart icon /// /// https://fontawesome.com/icons/comment-heart?style=solid /// bubble, favorite, happy, love, message - static const IconData solidCommentHeart = IconDataSolid(0xe5c8); + static const IconData solidCommentHeart = IconData(0xe5c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Heart icon /// /// https://fontawesome.com/icons/comment-heart?style=regular /// bubble, favorite, happy, love, message - static const IconData commentHeart = IconDataRegular(0xe5c8); + static const IconData commentHeart = IconData(0xe5c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Heart icon /// /// https://fontawesome.com/icons/comment-heart?style=light /// bubble, favorite, happy, love, message - static const IconData lightCommentHeart = IconDataLight(0xe5c8); + static const IconData lightCommentHeart = IconData(0xe5c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Heart icon /// /// https://fontawesome.com/icons/comment-heart?style=thin /// bubble, favorite, happy, love, message - static const IconData thinCommentHeart = IconDataThin(0xe5c8); + static const IconData thinCommentHeart = IconData(0xe5c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Image icon /// /// https://fontawesome.com/icons/comment-image?style=solid /// answer, chat, discussion, photography, photos - static const IconData solidCommentImage = IconDataSolid(0xe148); + static const IconData solidCommentImage = IconData(0xe148, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Image icon /// /// https://fontawesome.com/icons/comment-image?style=regular /// answer, chat, discussion, photography, photos - static const IconData commentImage = IconDataRegular(0xe148); + static const IconData commentImage = IconData(0xe148, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Image icon /// /// https://fontawesome.com/icons/comment-image?style=light /// answer, chat, discussion, photography, photos - static const IconData lightCommentImage = IconDataLight(0xe148); + static const IconData lightCommentImage = IconData(0xe148, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Image icon /// /// https://fontawesome.com/icons/comment-image?style=thin /// answer, chat, discussion, photography, photos - static const IconData thinCommentImage = IconDataThin(0xe148); + static const IconData thinCommentImage = IconData(0xe148, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Lines icon /// /// https://fontawesome.com/icons/comment-lines?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidCommentLines = IconDataSolid(0xf4b0); + static const IconData solidCommentLines = IconData(0xf4b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Lines icon /// /// https://fontawesome.com/icons/comment-lines?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData commentLines = IconDataRegular(0xf4b0); + static const IconData commentLines = IconData(0xf4b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Lines icon /// /// https://fontawesome.com/icons/comment-lines?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightCommentLines = IconDataLight(0xf4b0); + static const IconData lightCommentLines = IconData(0xf4b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Lines icon /// /// https://fontawesome.com/icons/comment-lines?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData thinCommentLines = IconDataThin(0xf4b0); + static const IconData thinCommentLines = IconData(0xf4b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Medical icon /// /// https://fontawesome.com/icons/comment-medical?style=solid /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData solidCommentMedical = IconDataSolid(0xf7f5); + static const IconData solidCommentMedical = IconData(0xf7f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Medical icon /// /// https://fontawesome.com/icons/comment-medical?style=regular /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData commentMedical = IconDataRegular(0xf7f5); + static const IconData commentMedical = IconData(0xf7f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Medical icon /// /// https://fontawesome.com/icons/comment-medical?style=light /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData lightCommentMedical = IconDataLight(0xf7f5); + static const IconData lightCommentMedical = IconData(0xf7f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Medical icon /// /// https://fontawesome.com/icons/comment-medical?style=thin /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData thinCommentMedical = IconDataThin(0xf7f5); + static const IconData thinCommentMedical = IconData(0xf7f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Middle icon /// /// https://fontawesome.com/icons/comment-middle?style=solid /// answer, chat, conversation - static const IconData solidCommentMiddle = IconDataSolid(0xe149); + static const IconData solidCommentMiddle = IconData(0xe149, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Middle icon /// /// https://fontawesome.com/icons/comment-middle?style=regular /// answer, chat, conversation - static const IconData commentMiddle = IconDataRegular(0xe149); + static const IconData commentMiddle = IconData(0xe149, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Middle icon /// /// https://fontawesome.com/icons/comment-middle?style=light /// answer, chat, conversation - static const IconData lightCommentMiddle = IconDataLight(0xe149); + static const IconData lightCommentMiddle = IconData(0xe149, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Middle icon /// /// https://fontawesome.com/icons/comment-middle?style=thin /// answer, chat, conversation - static const IconData thinCommentMiddle = IconDataThin(0xe149); + static const IconData thinCommentMiddle = IconData(0xe149, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Middle Top icon /// /// https://fontawesome.com/icons/comment-middle-top?style=solid /// answer, chat, conversation - static const IconData solidCommentMiddleTop = IconDataSolid(0xe14a); + static const IconData solidCommentMiddleTop = IconData(0xe14a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Middle Top icon /// /// https://fontawesome.com/icons/comment-middle-top?style=regular /// answer, chat, conversation - static const IconData commentMiddleTop = IconDataRegular(0xe14a); + static const IconData commentMiddleTop = IconData(0xe14a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Middle Top icon /// /// https://fontawesome.com/icons/comment-middle-top?style=light /// answer, chat, conversation - static const IconData lightCommentMiddleTop = IconDataLight(0xe14a); + static const IconData lightCommentMiddleTop = IconData(0xe14a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Middle Top icon /// /// https://fontawesome.com/icons/comment-middle-top?style=thin /// answer, chat, conversation - static const IconData thinCommentMiddleTop = IconDataThin(0xe14a); + static const IconData thinCommentMiddleTop = IconData(0xe14a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Minus icon /// /// https://fontawesome.com/icons/comment-minus?style=solid /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData solidCommentMinus = IconDataSolid(0xf4b1); + static const IconData solidCommentMinus = IconData(0xf4b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Minus icon /// /// https://fontawesome.com/icons/comment-minus?style=regular /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData commentMinus = IconDataRegular(0xf4b1); + static const IconData commentMinus = IconData(0xf4b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Minus icon /// /// https://fontawesome.com/icons/comment-minus?style=light /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData lightCommentMinus = IconDataLight(0xf4b1); + static const IconData lightCommentMinus = IconData(0xf4b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Minus icon /// /// https://fontawesome.com/icons/comment-minus?style=thin /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData thinCommentMinus = IconDataThin(0xf4b1); + static const IconData thinCommentMinus = IconData(0xf4b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Music icon /// /// https://fontawesome.com/icons/comment-music?style=solid /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData solidCommentMusic = IconDataSolid(0xf8b0); + static const IconData solidCommentMusic = IconData(0xf8b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Music icon /// /// https://fontawesome.com/icons/comment-music?style=regular /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData commentMusic = IconDataRegular(0xf8b0); + static const IconData commentMusic = IconData(0xf8b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Music icon /// /// https://fontawesome.com/icons/comment-music?style=light /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData lightCommentMusic = IconDataLight(0xf8b0); + static const IconData lightCommentMusic = IconData(0xf8b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Music icon /// /// https://fontawesome.com/icons/comment-music?style=thin /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData thinCommentMusic = IconDataThin(0xf8b0); + static const IconData thinCommentMusic = IconData(0xf8b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Pen icon /// /// https://fontawesome.com/icons/comment-pen?style=solid /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData solidCommentPen = IconDataSolid(0xf4ae); + static const IconData solidCommentPen = IconData(0xf4ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-edit for icon [solidCommentPen] @Deprecated('Use "solidCommentPen" instead.') @@ -26415,7 +26415,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-pen?style=regular /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData commentPen = IconDataRegular(0xf4ae); + static const IconData commentPen = IconData(0xf4ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-edit for icon [commentPen] @Deprecated('Use "commentPen" instead.') @@ -26425,7 +26425,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-pen?style=light /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData lightCommentPen = IconDataLight(0xf4ae); + static const IconData lightCommentPen = IconData(0xf4ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-edit for icon [lightCommentPen] @Deprecated('Use "lightCommentPen" instead.') @@ -26435,7 +26435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-pen?style=thin /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData thinCommentPen = IconDataThin(0xf4ae); + static const IconData thinCommentPen = IconData(0xf4ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-edit for icon [thinCommentPen] @Deprecated('Use "thinCommentPen" instead.') @@ -26445,127 +26445,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-plus?style=solid /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData solidCommentPlus = IconDataSolid(0xf4b2); + static const IconData solidCommentPlus = IconData(0xf4b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Plus icon /// /// https://fontawesome.com/icons/comment-plus?style=regular /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData commentPlus = IconDataRegular(0xf4b2); + static const IconData commentPlus = IconData(0xf4b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Plus icon /// /// https://fontawesome.com/icons/comment-plus?style=light /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData lightCommentPlus = IconDataLight(0xf4b2); + static const IconData lightCommentPlus = IconData(0xf4b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Plus icon /// /// https://fontawesome.com/icons/comment-plus?style=thin /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData thinCommentPlus = IconDataThin(0xf4b2); + static const IconData thinCommentPlus = IconData(0xf4b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Question icon /// /// https://fontawesome.com/icons/comment-question?style=solid /// answer, chat, faq, help, question, request, support - static const IconData solidCommentQuestion = IconDataSolid(0xe14b); + static const IconData solidCommentQuestion = IconData(0xe14b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Question icon /// /// https://fontawesome.com/icons/comment-question?style=regular /// answer, chat, faq, help, question, request, support - static const IconData commentQuestion = IconDataRegular(0xe14b); + static const IconData commentQuestion = IconData(0xe14b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Question icon /// /// https://fontawesome.com/icons/comment-question?style=light /// answer, chat, faq, help, question, request, support - static const IconData lightCommentQuestion = IconDataLight(0xe14b); + static const IconData lightCommentQuestion = IconData(0xe14b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Question icon /// /// https://fontawesome.com/icons/comment-question?style=thin /// answer, chat, faq, help, question, request, support - static const IconData thinCommentQuestion = IconDataThin(0xe14b); + static const IconData thinCommentQuestion = IconData(0xe14b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Quote icon /// /// https://fontawesome.com/icons/comment-quote?style=solid /// answer, chat, quote - static const IconData solidCommentQuote = IconDataSolid(0xe14c); + static const IconData solidCommentQuote = IconData(0xe14c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Quote icon /// /// https://fontawesome.com/icons/comment-quote?style=regular /// answer, chat, quote - static const IconData commentQuote = IconDataRegular(0xe14c); + static const IconData commentQuote = IconData(0xe14c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Quote icon /// /// https://fontawesome.com/icons/comment-quote?style=light /// answer, chat, quote - static const IconData lightCommentQuote = IconDataLight(0xe14c); + static const IconData lightCommentQuote = IconData(0xe14c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Quote icon /// /// https://fontawesome.com/icons/comment-quote?style=thin /// answer, chat, quote - static const IconData thinCommentQuote = IconDataThin(0xe14c); + static const IconData thinCommentQuote = IconData(0xe14c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Slash icon /// /// https://fontawesome.com/icons/comment-slash?style=solid /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData solidCommentSlash = IconDataSolid(0xf4b3); + static const IconData solidCommentSlash = IconData(0xf4b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Slash icon /// /// https://fontawesome.com/icons/comment-slash?style=regular /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData commentSlash = IconDataRegular(0xf4b3); + static const IconData commentSlash = IconData(0xf4b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Slash icon /// /// https://fontawesome.com/icons/comment-slash?style=light /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData lightCommentSlash = IconDataLight(0xf4b3); + static const IconData lightCommentSlash = IconData(0xf4b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Slash icon /// /// https://fontawesome.com/icons/comment-slash?style=thin /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData thinCommentSlash = IconDataThin(0xf4b3); + static const IconData thinCommentSlash = IconData(0xf4b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Smile icon /// /// https://fontawesome.com/icons/comment-smile?style=solid /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData solidCommentSmile = IconDataSolid(0xf4b4); + static const IconData solidCommentSmile = IconData(0xf4b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Smile icon /// /// https://fontawesome.com/icons/comment-smile?style=regular /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData commentSmile = IconDataRegular(0xf4b4); + static const IconData commentSmile = IconData(0xf4b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Smile icon /// /// https://fontawesome.com/icons/comment-smile?style=light /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData lightCommentSmile = IconDataLight(0xf4b4); + static const IconData lightCommentSmile = IconData(0xf4b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Smile icon /// /// https://fontawesome.com/icons/comment-smile?style=thin /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData thinCommentSmile = IconDataThin(0xf4b4); + static const IconData thinCommentSmile = IconData(0xf4b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Sms icon /// /// https://fontawesome.com/icons/comment-sms?style=solid /// answer, chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData solidCommentSms = IconDataSolid(0xf7cd); + static const IconData solidCommentSms = IconData(0xf7cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sms for icon [solidCommentSms] @Deprecated('Use "solidCommentSms" instead.') @@ -26575,7 +26575,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-sms?style=regular /// answer, chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData commentSms = IconDataRegular(0xf7cd); + static const IconData commentSms = IconData(0xf7cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sms for icon [commentSms] @Deprecated('Use "commentSms" instead.') @@ -26585,7 +26585,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-sms?style=light /// answer, chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData lightCommentSms = IconDataLight(0xf7cd); + static const IconData lightCommentSms = IconData(0xf7cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sms for icon [lightCommentSms] @Deprecated('Use "lightCommentSms" instead.') @@ -26595,7 +26595,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-sms?style=thin /// answer, chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData thinCommentSms = IconDataThin(0xf7cd); + static const IconData thinCommentSms = IconData(0xf7cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sms for icon [thinCommentSms] @Deprecated('Use "thinCommentSms" instead.') @@ -26605,31 +26605,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-text?style=solid /// answer, chat, font, type - static const IconData solidCommentText = IconDataSolid(0xe14d); + static const IconData solidCommentText = IconData(0xe14d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comment Text icon /// /// https://fontawesome.com/icons/comment-text?style=regular /// answer, chat, font, type - static const IconData commentText = IconDataRegular(0xe14d); + static const IconData commentText = IconData(0xe14d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comment Text icon /// /// https://fontawesome.com/icons/comment-text?style=light /// answer, chat, font, type - static const IconData lightCommentText = IconDataLight(0xe14d); + static const IconData lightCommentText = IconData(0xe14d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comment Text icon /// /// https://fontawesome.com/icons/comment-text?style=thin /// answer, chat, font, type - static const IconData thinCommentText = IconDataThin(0xe14d); + static const IconData thinCommentText = IconData(0xe14d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comment Xmark icon /// /// https://fontawesome.com/icons/comment-xmark?style=solid /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData solidCommentXmark = IconDataSolid(0xf4b5); + static const IconData solidCommentXmark = IconData(0xf4b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-times for icon [solidCommentXmark] @Deprecated('Use "solidCommentXmark" instead.') @@ -26639,7 +26639,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-xmark?style=regular /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData commentXmark = IconDataRegular(0xf4b5); + static const IconData commentXmark = IconData(0xf4b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-times for icon [commentXmark] @Deprecated('Use "commentXmark" instead.') @@ -26649,7 +26649,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-xmark?style=light /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData lightCommentXmark = IconDataLight(0xf4b5); + static const IconData lightCommentXmark = IconData(0xf4b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-times for icon [lightCommentXmark] @Deprecated('Use "lightCommentXmark" instead.') @@ -26659,7 +26659,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comment-xmark?style=thin /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData thinCommentXmark = IconDataThin(0xf4b5); + static const IconData thinCommentXmark = IconData(0xf4b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-times for icon [thinCommentXmark] @Deprecated('Use "thinCommentXmark" instead.') @@ -26669,151 +26669,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/comments?style=solid /// conversation, discussion, talking, Two Speech Bubbles, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData solidComments = IconDataSolid(0xf086); + static const IconData solidComments = IconData(0xf086, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comments icon /// /// https://fontawesome.com/icons/comments?style=regular /// conversation, discussion, talking, Two Speech Bubbles, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData comments = IconDataRegular(0xf086); + static const IconData comments = IconData(0xf086, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comments icon /// /// https://fontawesome.com/icons/comments?style=light /// conversation, discussion, talking, Two Speech Bubbles, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData lightComments = IconDataLight(0xf086); + static const IconData lightComments = IconData(0xf086, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comments icon /// /// https://fontawesome.com/icons/comments?style=thin /// conversation, discussion, talking, Two Speech Bubbles, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData thinComments = IconDataThin(0xf086); + static const IconData thinComments = IconData(0xf086, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comments Dollar icon /// /// https://fontawesome.com/icons/comments-dollar?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData solidCommentsDollar = IconDataSolid(0xf653); + static const IconData solidCommentsDollar = IconData(0xf653, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comments Dollar icon /// /// https://fontawesome.com/icons/comments-dollar?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData commentsDollar = IconDataRegular(0xf653); + static const IconData commentsDollar = IconData(0xf653, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comments Dollar icon /// /// https://fontawesome.com/icons/comments-dollar?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData lightCommentsDollar = IconDataLight(0xf653); + static const IconData lightCommentsDollar = IconData(0xf653, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comments Dollar icon /// /// https://fontawesome.com/icons/comments-dollar?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData thinCommentsDollar = IconDataThin(0xf653); + static const IconData thinCommentsDollar = IconData(0xf653, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comments Question icon /// /// https://fontawesome.com/icons/comments-question?style=solid /// answer, chat, faq, help, question, request, support - static const IconData solidCommentsQuestion = IconDataSolid(0xe14e); + static const IconData solidCommentsQuestion = IconData(0xe14e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comments Question icon /// /// https://fontawesome.com/icons/comments-question?style=regular /// answer, chat, faq, help, question, request, support - static const IconData commentsQuestion = IconDataRegular(0xe14e); + static const IconData commentsQuestion = IconData(0xe14e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comments Question icon /// /// https://fontawesome.com/icons/comments-question?style=light /// answer, chat, faq, help, question, request, support - static const IconData lightCommentsQuestion = IconDataLight(0xe14e); + static const IconData lightCommentsQuestion = IconData(0xe14e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comments Question icon /// /// https://fontawesome.com/icons/comments-question?style=thin /// answer, chat, faq, help, question, request, support - static const IconData thinCommentsQuestion = IconDataThin(0xe14e); + static const IconData thinCommentsQuestion = IconData(0xe14e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Comments Question Check icon /// /// https://fontawesome.com/icons/comments-question-check?style=solid /// answer, chat, enable, faq, help, question, request, support, validate, working - static const IconData solidCommentsQuestionCheck = IconDataSolid(0xe14f); + static const IconData solidCommentsQuestionCheck = IconData(0xe14f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Comments Question Check icon /// /// https://fontawesome.com/icons/comments-question-check?style=regular /// answer, chat, enable, faq, help, question, request, support, validate, working - static const IconData commentsQuestionCheck = IconDataRegular(0xe14f); + static const IconData commentsQuestionCheck = IconData(0xe14f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Comments Question Check icon /// /// https://fontawesome.com/icons/comments-question-check?style=light /// answer, chat, enable, faq, help, question, request, support, validate, working - static const IconData lightCommentsQuestionCheck = IconDataLight(0xe14f); + static const IconData lightCommentsQuestionCheck = IconData(0xe14f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Comments Question Check icon /// /// https://fontawesome.com/icons/comments-question-check?style=thin /// answer, chat, enable, faq, help, question, request, support, validate, working - static const IconData thinCommentsQuestionCheck = IconDataThin(0xe14f); + static const IconData thinCommentsQuestionCheck = IconData(0xe14f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Compact Disc icon /// /// https://fontawesome.com/icons/compact-disc?style=solid /// Optical Disc Icon, album, blu-ray, bluray, cd, computer, disc, disk, dvd, media, movie, music, optical, optical disk, record, video, vinyl - static const IconData solidCompactDisc = IconDataSolid(0xf51f); + static const IconData solidCompactDisc = IconData(0xf51f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Compact Disc icon /// /// https://fontawesome.com/icons/compact-disc?style=regular /// Optical Disc Icon, album, blu-ray, bluray, cd, computer, disc, disk, dvd, media, movie, music, optical, optical disk, record, video, vinyl - static const IconData compactDisc = IconDataRegular(0xf51f); + static const IconData compactDisc = IconData(0xf51f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Compact Disc icon /// /// https://fontawesome.com/icons/compact-disc?style=light /// Optical Disc Icon, album, blu-ray, bluray, cd, computer, disc, disk, dvd, media, movie, music, optical, optical disk, record, video, vinyl - static const IconData lightCompactDisc = IconDataLight(0xf51f); + static const IconData lightCompactDisc = IconData(0xf51f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Compact Disc icon /// /// https://fontawesome.com/icons/compact-disc?style=thin /// Optical Disc Icon, album, blu-ray, bluray, cd, computer, disc, disk, dvd, media, movie, music, optical, optical disk, record, video, vinyl - static const IconData thinCompactDisc = IconDataThin(0xf51f); + static const IconData thinCompactDisc = IconData(0xf51f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Compass icon /// /// https://fontawesome.com/icons/compass?style=solid /// compass, directions, directory, location, magnetic, menu, navigation, orienteering, safari, travel - static const IconData solidCompass = IconDataSolid(0xf14e); + static const IconData solidCompass = IconData(0xf14e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Compass icon /// /// https://fontawesome.com/icons/compass?style=regular /// compass, directions, directory, location, magnetic, menu, navigation, orienteering, safari, travel - static const IconData compass = IconDataRegular(0xf14e); + static const IconData compass = IconData(0xf14e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Compass icon /// /// https://fontawesome.com/icons/compass?style=light /// compass, directions, directory, location, magnetic, menu, navigation, orienteering, safari, travel - static const IconData lightCompass = IconDataLight(0xf14e); + static const IconData lightCompass = IconData(0xf14e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Compass icon /// /// https://fontawesome.com/icons/compass?style=thin /// compass, directions, directory, location, magnetic, menu, navigation, orienteering, safari, travel - static const IconData thinCompass = IconDataThin(0xf14e); + static const IconData thinCompass = IconData(0xf14e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Compass Drafting icon /// /// https://fontawesome.com/icons/compass-drafting?style=solid /// design, map, mechanical drawing, plot, plotting - static const IconData solidCompassDrafting = IconDataSolid(0xf568); + static const IconData solidCompassDrafting = IconData(0xf568, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias drafting-compass for icon [solidCompassDrafting] @Deprecated('Use "solidCompassDrafting" instead.') @@ -26823,7 +26823,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/compass-drafting?style=regular /// design, map, mechanical drawing, plot, plotting - static const IconData compassDrafting = IconDataRegular(0xf568); + static const IconData compassDrafting = IconData(0xf568, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias drafting-compass for icon [compassDrafting] @Deprecated('Use "compassDrafting" instead.') @@ -26833,7 +26833,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/compass-drafting?style=light /// design, map, mechanical drawing, plot, plotting - static const IconData lightCompassDrafting = IconDataLight(0xf568); + static const IconData lightCompassDrafting = IconData(0xf568, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias drafting-compass for icon [lightCompassDrafting] @Deprecated('Use "lightCompassDrafting" instead.') @@ -26843,7 +26843,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/compass-drafting?style=thin /// design, map, mechanical drawing, plot, plotting - static const IconData thinCompassDrafting = IconDataThin(0xf568); + static const IconData thinCompassDrafting = IconData(0xf568, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias drafting-compass for icon [thinCompassDrafting] @Deprecated('Use "thinCompassDrafting" instead.') @@ -26853,127 +26853,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/compass-slash?style=solid /// directions, directory, disabled, location, lost, menu, navigation, safari, travel - static const IconData solidCompassSlash = IconDataSolid(0xf5e9); + static const IconData solidCompassSlash = IconData(0xf5e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Compass Slash icon /// /// https://fontawesome.com/icons/compass-slash?style=regular /// directions, directory, disabled, location, lost, menu, navigation, safari, travel - static const IconData compassSlash = IconDataRegular(0xf5e9); + static const IconData compassSlash = IconData(0xf5e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Compass Slash icon /// /// https://fontawesome.com/icons/compass-slash?style=light /// directions, directory, disabled, location, lost, menu, navigation, safari, travel - static const IconData lightCompassSlash = IconDataLight(0xf5e9); + static const IconData lightCompassSlash = IconData(0xf5e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Compass Slash icon /// /// https://fontawesome.com/icons/compass-slash?style=thin /// directions, directory, disabled, location, lost, menu, navigation, safari, travel - static const IconData thinCompassSlash = IconDataThin(0xf5e9); + static const IconData thinCompassSlash = IconData(0xf5e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Compress icon /// /// https://fontawesome.com/icons/compress?style=solid /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompress = IconDataSolid(0xf066); + static const IconData solidCompress = IconData(0xf066, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Compress icon /// /// https://fontawesome.com/icons/compress?style=regular /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compress = IconDataRegular(0xf066); + static const IconData compress = IconData(0xf066, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Compress icon /// /// https://fontawesome.com/icons/compress?style=light /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompress = IconDataLight(0xf066); + static const IconData lightCompress = IconData(0xf066, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Compress icon /// /// https://fontawesome.com/icons/compress?style=thin /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData thinCompress = IconDataThin(0xf066); + static const IconData thinCompress = IconData(0xf066, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Compress Wide icon /// /// https://fontawesome.com/icons/compress-wide?style=solid /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompressWide = IconDataSolid(0xf326); + static const IconData solidCompressWide = IconData(0xf326, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Compress Wide icon /// /// https://fontawesome.com/icons/compress-wide?style=regular /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compressWide = IconDataRegular(0xf326); + static const IconData compressWide = IconData(0xf326, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Compress Wide icon /// /// https://fontawesome.com/icons/compress-wide?style=light /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompressWide = IconDataLight(0xf326); + static const IconData lightCompressWide = IconData(0xf326, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Compress Wide icon /// /// https://fontawesome.com/icons/compress-wide?style=thin /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData thinCompressWide = IconDataThin(0xf326); + static const IconData thinCompressWide = IconData(0xf326, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Computer icon /// /// https://fontawesome.com/icons/computer?style=solid /// computer, desktop, display, monitor, tower - static const IconData solidComputer = IconDataSolid(0xe4e5); + static const IconData solidComputer = IconData(0xe4e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Computer icon /// /// https://fontawesome.com/icons/computer?style=regular /// computer, desktop, display, monitor, tower - static const IconData computer = IconDataRegular(0xe4e5); + static const IconData computer = IconData(0xe4e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Computer icon /// /// https://fontawesome.com/icons/computer?style=light /// computer, desktop, display, monitor, tower - static const IconData lightComputer = IconDataLight(0xe4e5); + static const IconData lightComputer = IconData(0xe4e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Computer icon /// /// https://fontawesome.com/icons/computer?style=thin /// computer, desktop, display, monitor, tower - static const IconData thinComputer = IconDataThin(0xe4e5); + static const IconData thinComputer = IconData(0xe4e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Computer Classic icon /// /// https://fontawesome.com/icons/computer-classic?style=solid /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData solidComputerClassic = IconDataSolid(0xf8b1); + static const IconData solidComputerClassic = IconData(0xf8b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Computer Classic icon /// /// https://fontawesome.com/icons/computer-classic?style=regular /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData computerClassic = IconDataRegular(0xf8b1); + static const IconData computerClassic = IconData(0xf8b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Computer Classic icon /// /// https://fontawesome.com/icons/computer-classic?style=light /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData lightComputerClassic = IconDataLight(0xf8b1); + static const IconData lightComputerClassic = IconData(0xf8b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Computer Classic icon /// /// https://fontawesome.com/icons/computer-classic?style=thin /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData thinComputerClassic = IconDataThin(0xf8b1); + static const IconData thinComputerClassic = IconData(0xf8b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Computer Mouse icon /// /// https://fontawesome.com/icons/computer-mouse?style=solid /// click, computer, computer mouse, cursor, input, peripheral - static const IconData solidComputerMouse = IconDataSolid(0xf8cc); + static const IconData solidComputerMouse = IconData(0xf8cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mouse for icon [solidComputerMouse] @Deprecated('Use "solidComputerMouse" instead.') @@ -26983,7 +26983,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse?style=regular /// click, computer, computer mouse, cursor, input, peripheral - static const IconData computerMouse = IconDataRegular(0xf8cc); + static const IconData computerMouse = IconData(0xf8cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mouse for icon [computerMouse] @Deprecated('Use "computerMouse" instead.') @@ -26993,7 +26993,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse?style=light /// click, computer, computer mouse, cursor, input, peripheral - static const IconData lightComputerMouse = IconDataLight(0xf8cc); + static const IconData lightComputerMouse = IconData(0xf8cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mouse for icon [lightComputerMouse] @Deprecated('Use "lightComputerMouse" instead.') @@ -27003,7 +27003,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse?style=thin /// click, computer, computer mouse, cursor, input, peripheral - static const IconData thinComputerMouse = IconDataThin(0xf8cc); + static const IconData thinComputerMouse = IconData(0xf8cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mouse for icon [thinComputerMouse] @Deprecated('Use "thinComputerMouse" instead.') @@ -27013,7 +27013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse-scrollwheel?style=solid /// click, computer, cursor, input, peripheral - static const IconData solidComputerMouseScrollwheel = IconDataSolid(0xf8cd); + static const IconData solidComputerMouseScrollwheel = IconData(0xf8cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mouse-alt for icon [solidComputerMouseScrollwheel] @Deprecated('Use "solidComputerMouseScrollwheel" instead.') @@ -27023,7 +27023,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse-scrollwheel?style=regular /// click, computer, cursor, input, peripheral - static const IconData computerMouseScrollwheel = IconDataRegular(0xf8cd); + static const IconData computerMouseScrollwheel = IconData(0xf8cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mouse-alt for icon [computerMouseScrollwheel] @Deprecated('Use "computerMouseScrollwheel" instead.') @@ -27033,7 +27033,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse-scrollwheel?style=light /// click, computer, cursor, input, peripheral - static const IconData lightComputerMouseScrollwheel = IconDataLight(0xf8cd); + static const IconData lightComputerMouseScrollwheel = IconData(0xf8cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mouse-alt for icon [lightComputerMouseScrollwheel] @Deprecated('Use "lightComputerMouseScrollwheel" instead.') @@ -27043,7 +27043,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-mouse-scrollwheel?style=thin /// click, computer, cursor, input, peripheral - static const IconData thinComputerMouseScrollwheel = IconDataThin(0xf8cd); + static const IconData thinComputerMouseScrollwheel = IconData(0xf8cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mouse-alt for icon [thinComputerMouseScrollwheel] @Deprecated('Use "thinComputerMouseScrollwheel" instead.') @@ -27053,119 +27053,119 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/computer-speaker?style=solid /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData solidComputerSpeaker = IconDataSolid(0xf8b2); + static const IconData solidComputerSpeaker = IconData(0xf8b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Computer Speaker icon /// /// https://fontawesome.com/icons/computer-speaker?style=regular /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData computerSpeaker = IconDataRegular(0xf8b2); + static const IconData computerSpeaker = IconData(0xf8b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Computer Speaker icon /// /// https://fontawesome.com/icons/computer-speaker?style=light /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData lightComputerSpeaker = IconDataLight(0xf8b2); + static const IconData lightComputerSpeaker = IconData(0xf8b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Computer Speaker icon /// /// https://fontawesome.com/icons/computer-speaker?style=thin /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData thinComputerSpeaker = IconDataThin(0xf8b2); + static const IconData thinComputerSpeaker = IconData(0xf8b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Confluence icon /// /// https://fontawesome.com/icons/confluence?style=brands /// atlassian - static const IconData confluence = IconDataBrands(0xf78d); + static const IconData confluence = IconData(0xf78d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Connect Develop icon /// /// https://fontawesome.com/icons/connectdevelop?style=brands - static const IconData connectdevelop = IconDataBrands(0xf20e); + static const IconData connectdevelop = IconData(0xf20e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Container Storage icon /// /// https://fontawesome.com/icons/container-storage?style=solid /// archive, box, inventory, shipping, warehouse - static const IconData solidContainerStorage = IconDataSolid(0xf4b7); + static const IconData solidContainerStorage = IconData(0xf4b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Container Storage icon /// /// https://fontawesome.com/icons/container-storage?style=regular /// archive, box, inventory, shipping, warehouse - static const IconData containerStorage = IconDataRegular(0xf4b7); + static const IconData containerStorage = IconData(0xf4b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Container Storage icon /// /// https://fontawesome.com/icons/container-storage?style=light /// archive, box, inventory, shipping, warehouse - static const IconData lightContainerStorage = IconDataLight(0xf4b7); + static const IconData lightContainerStorage = IconData(0xf4b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Container Storage icon /// /// https://fontawesome.com/icons/container-storage?style=thin /// archive, box, inventory, shipping, warehouse - static const IconData thinContainerStorage = IconDataThin(0xf4b7); + static const IconData thinContainerStorage = IconData(0xf4b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Contao icon /// /// https://fontawesome.com/icons/contao?style=brands - static const IconData contao = IconDataBrands(0xf26d); + static const IconData contao = IconData(0xf26d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Conveyor Belt icon /// /// https://fontawesome.com/icons/conveyor-belt?style=solid /// carousel, inventory, manufacture, packaging, shipping - static const IconData solidConveyorBelt = IconDataSolid(0xf46e); + static const IconData solidConveyorBelt = IconData(0xf46e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Conveyor Belt icon /// /// https://fontawesome.com/icons/conveyor-belt?style=regular /// carousel, inventory, manufacture, packaging, shipping - static const IconData conveyorBelt = IconDataRegular(0xf46e); + static const IconData conveyorBelt = IconData(0xf46e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Conveyor Belt icon /// /// https://fontawesome.com/icons/conveyor-belt?style=light /// carousel, inventory, manufacture, packaging, shipping - static const IconData lightConveyorBelt = IconDataLight(0xf46e); + static const IconData lightConveyorBelt = IconData(0xf46e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Conveyor Belt icon /// /// https://fontawesome.com/icons/conveyor-belt?style=thin /// carousel, inventory, manufacture, packaging, shipping - static const IconData thinConveyorBelt = IconDataThin(0xf46e); + static const IconData thinConveyorBelt = IconData(0xf46e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Conveyor Belt Arm icon /// /// https://fontawesome.com/icons/conveyor-belt-arm?style=solid /// inventory, manufacture, packaging, produce, production, shipping, carousel - static const IconData solidConveyorBeltArm = IconDataSolid(0xe5f8); + static const IconData solidConveyorBeltArm = IconData(0xe5f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Conveyor Belt Arm icon /// /// https://fontawesome.com/icons/conveyor-belt-arm?style=regular /// inventory, manufacture, packaging, produce, production, shipping, carousel - static const IconData conveyorBeltArm = IconDataRegular(0xe5f8); + static const IconData conveyorBeltArm = IconData(0xe5f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Conveyor Belt Arm icon /// /// https://fontawesome.com/icons/conveyor-belt-arm?style=light /// inventory, manufacture, packaging, produce, production, shipping, carousel - static const IconData lightConveyorBeltArm = IconDataLight(0xe5f8); + static const IconData lightConveyorBeltArm = IconData(0xe5f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Conveyor Belt Arm icon /// /// https://fontawesome.com/icons/conveyor-belt-arm?style=thin /// inventory, manufacture, packaging, produce, production, shipping, carousel - static const IconData thinConveyorBeltArm = IconDataThin(0xe5f8); + static const IconData thinConveyorBeltArm = IconData(0xe5f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Conveyor Belt Boxes icon /// /// https://fontawesome.com/icons/conveyor-belt-boxes?style=solid /// carousel, inventory, manufacture, packaging, shipping - static const IconData solidConveyorBeltBoxes = IconDataSolid(0xf46f); + static const IconData solidConveyorBeltBoxes = IconData(0xf46f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias conveyor-belt-alt for icon [solidConveyorBeltBoxes] @Deprecated('Use "solidConveyorBeltBoxes" instead.') @@ -27175,7 +27175,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/conveyor-belt-boxes?style=regular /// carousel, inventory, manufacture, packaging, shipping - static const IconData conveyorBeltBoxes = IconDataRegular(0xf46f); + static const IconData conveyorBeltBoxes = IconData(0xf46f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias conveyor-belt-alt for icon [conveyorBeltBoxes] @Deprecated('Use "conveyorBeltBoxes" instead.') @@ -27185,7 +27185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/conveyor-belt-boxes?style=light /// carousel, inventory, manufacture, packaging, shipping - static const IconData lightConveyorBeltBoxes = IconDataLight(0xf46f); + static const IconData lightConveyorBeltBoxes = IconData(0xf46f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias conveyor-belt-alt for icon [lightConveyorBeltBoxes] @Deprecated('Use "lightConveyorBeltBoxes" instead.') @@ -27195,7 +27195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/conveyor-belt-boxes?style=thin /// carousel, inventory, manufacture, packaging, shipping - static const IconData thinConveyorBeltBoxes = IconDataThin(0xf46f); + static const IconData thinConveyorBeltBoxes = IconData(0xf46f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias conveyor-belt-alt for icon [thinConveyorBeltBoxes] @Deprecated('Use "thinConveyorBeltBoxes" instead.') @@ -27205,277 +27205,277 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/conveyor-belt-empty?style=solid /// inventory, shipping - static const IconData solidConveyorBeltEmpty = IconDataSolid(0xe150); + static const IconData solidConveyorBeltEmpty = IconData(0xe150, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Conveyor Belt Empty icon /// /// https://fontawesome.com/icons/conveyor-belt-empty?style=regular /// inventory, shipping - static const IconData conveyorBeltEmpty = IconDataRegular(0xe150); + static const IconData conveyorBeltEmpty = IconData(0xe150, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Conveyor Belt Empty icon /// /// https://fontawesome.com/icons/conveyor-belt-empty?style=light /// inventory, shipping - static const IconData lightConveyorBeltEmpty = IconDataLight(0xe150); + static const IconData lightConveyorBeltEmpty = IconData(0xe150, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Conveyor Belt Empty icon /// /// https://fontawesome.com/icons/conveyor-belt-empty?style=thin /// inventory, shipping - static const IconData thinConveyorBeltEmpty = IconDataThin(0xe150); + static const IconData thinConveyorBeltEmpty = IconData(0xe150, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cookie icon /// /// https://fontawesome.com/icons/cookie?style=solid /// baked good, chips, chocolate, cookie, dessert, eat, snack, sweet, treat - static const IconData solidCookie = IconDataSolid(0xf563); + static const IconData solidCookie = IconData(0xf563, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cookie icon /// /// https://fontawesome.com/icons/cookie?style=regular /// baked good, chips, chocolate, cookie, dessert, eat, snack, sweet, treat - static const IconData cookie = IconDataRegular(0xf563); + static const IconData cookie = IconData(0xf563, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cookie icon /// /// https://fontawesome.com/icons/cookie?style=light /// baked good, chips, chocolate, cookie, dessert, eat, snack, sweet, treat - static const IconData lightCookie = IconDataLight(0xf563); + static const IconData lightCookie = IconData(0xf563, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cookie icon /// /// https://fontawesome.com/icons/cookie?style=thin /// baked good, chips, chocolate, cookie, dessert, eat, snack, sweet, treat - static const IconData thinCookie = IconDataThin(0xf563); + static const IconData thinCookie = IconData(0xf563, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cookie Bite icon /// /// https://fontawesome.com/icons/cookie-bite?style=solid /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconData solidCookieBite = IconDataSolid(0xf564); + static const IconData solidCookieBite = IconData(0xf564, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cookie Bite icon /// /// https://fontawesome.com/icons/cookie-bite?style=regular /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconData cookieBite = IconDataRegular(0xf564); + static const IconData cookieBite = IconData(0xf564, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cookie Bite icon /// /// https://fontawesome.com/icons/cookie-bite?style=light /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconData lightCookieBite = IconDataLight(0xf564); + static const IconData lightCookieBite = IconData(0xf564, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cookie Bite icon /// /// https://fontawesome.com/icons/cookie-bite?style=thin /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconData thinCookieBite = IconDataThin(0xf564); + static const IconData thinCookieBite = IconData(0xf564, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Copy icon /// /// https://fontawesome.com/icons/copy?style=solid /// clone, duplicate, file, files-o, paper, paste - static const IconData solidCopy = IconDataSolid(0xf0c5); + static const IconData solidCopy = IconData(0xf0c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Copy icon /// /// https://fontawesome.com/icons/copy?style=regular /// clone, duplicate, file, files-o, paper, paste - static const IconData copy = IconDataRegular(0xf0c5); + static const IconData copy = IconData(0xf0c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Copy icon /// /// https://fontawesome.com/icons/copy?style=light /// clone, duplicate, file, files-o, paper, paste - static const IconData lightCopy = IconDataLight(0xf0c5); + static const IconData lightCopy = IconData(0xf0c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Copy icon /// /// https://fontawesome.com/icons/copy?style=thin /// clone, duplicate, file, files-o, paper, paste - static const IconData thinCopy = IconDataThin(0xf0c5); + static const IconData thinCopy = IconData(0xf0c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Copyright icon /// /// https://fontawesome.com/icons/copyright?style=solid /// brand, c, copyright, mark, register, trademark - static const IconData solidCopyright = IconDataSolid(0xf1f9); + static const IconData solidCopyright = IconData(0xf1f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Copyright icon /// /// https://fontawesome.com/icons/copyright?style=regular /// brand, c, copyright, mark, register, trademark - static const IconData copyright = IconDataRegular(0xf1f9); + static const IconData copyright = IconData(0xf1f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Copyright icon /// /// https://fontawesome.com/icons/copyright?style=light /// brand, c, copyright, mark, register, trademark - static const IconData lightCopyright = IconDataLight(0xf1f9); + static const IconData lightCopyright = IconData(0xf1f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Copyright icon /// /// https://fontawesome.com/icons/copyright?style=thin /// brand, c, copyright, mark, register, trademark - static const IconData thinCopyright = IconDataThin(0xf1f9); + static const IconData thinCopyright = IconData(0xf1f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Corn icon /// /// https://fontawesome.com/icons/corn?style=solid /// cob, corn, ear, ear of corn, fall, grain, kernel, maize, maze, popcorn - static const IconData solidCorn = IconDataSolid(0xf6c7); + static const IconData solidCorn = IconData(0xf6c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Corn icon /// /// https://fontawesome.com/icons/corn?style=regular /// cob, corn, ear, ear of corn, fall, grain, kernel, maize, maze, popcorn - static const IconData corn = IconDataRegular(0xf6c7); + static const IconData corn = IconData(0xf6c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Corn icon /// /// https://fontawesome.com/icons/corn?style=light /// cob, corn, ear, ear of corn, fall, grain, kernel, maize, maze, popcorn - static const IconData lightCorn = IconDataLight(0xf6c7); + static const IconData lightCorn = IconData(0xf6c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Corn icon /// /// https://fontawesome.com/icons/corn?style=thin /// cob, corn, ear, ear of corn, fall, grain, kernel, maize, maze, popcorn - static const IconData thinCorn = IconDataThin(0xf6c7); + static const IconData thinCorn = IconData(0xf6c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Corner icon /// /// https://fontawesome.com/icons/corner?style=solid /// Not Sign, angle, not - static const IconData solidCorner = IconDataSolid(0xe3fe); + static const IconData solidCorner = IconData(0xe3fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Corner icon /// /// https://fontawesome.com/icons/corner?style=regular /// Not Sign, angle, not - static const IconData corner = IconDataRegular(0xe3fe); + static const IconData corner = IconData(0xe3fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Corner icon /// /// https://fontawesome.com/icons/corner?style=light /// Not Sign, angle, not - static const IconData lightCorner = IconDataLight(0xe3fe); + static const IconData lightCorner = IconData(0xe3fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Corner icon /// /// https://fontawesome.com/icons/corner?style=thin /// Not Sign, angle, not - static const IconData thinCorner = IconDataThin(0xe3fe); + static const IconData thinCorner = IconData(0xe3fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Cotton Bureau icon /// /// https://fontawesome.com/icons/cotton-bureau?style=brands /// clothing, t-shirts, tshirts - static const IconData cottonBureau = IconDataBrands(0xf89e); + static const IconData cottonBureau = IconData(0xf89e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Couch icon /// /// https://fontawesome.com/icons/couch?style=solid /// chair, cushion, furniture, relax, sofa - static const IconData solidCouch = IconDataSolid(0xf4b8); + static const IconData solidCouch = IconData(0xf4b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Couch icon /// /// https://fontawesome.com/icons/couch?style=regular /// chair, cushion, furniture, relax, sofa - static const IconData couch = IconDataRegular(0xf4b8); + static const IconData couch = IconData(0xf4b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Couch icon /// /// https://fontawesome.com/icons/couch?style=light /// chair, cushion, furniture, relax, sofa - static const IconData lightCouch = IconDataLight(0xf4b8); + static const IconData lightCouch = IconData(0xf4b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Couch icon /// /// https://fontawesome.com/icons/couch?style=thin /// chair, cushion, furniture, relax, sofa - static const IconData thinCouch = IconDataThin(0xf4b8); + static const IconData thinCouch = IconData(0xf4b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Court Sport icon /// /// https://fontawesome.com/icons/court-sport?style=solid /// basketball, court, football, futbol, soccer, sport, field - static const IconData solidCourtSport = IconDataSolid(0xe643); + static const IconData solidCourtSport = IconData(0xe643, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Court Sport icon /// /// https://fontawesome.com/icons/court-sport?style=regular /// basketball, court, football, futbol, soccer, sport, field - static const IconData courtSport = IconDataRegular(0xe643); + static const IconData courtSport = IconData(0xe643, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Court Sport icon /// /// https://fontawesome.com/icons/court-sport?style=light /// basketball, court, football, futbol, soccer, sport, field - static const IconData lightCourtSport = IconDataLight(0xe643); + static const IconData lightCourtSport = IconData(0xe643, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Court Sport icon /// /// https://fontawesome.com/icons/court-sport?style=thin /// basketball, court, football, futbol, soccer, sport, field - static const IconData thinCourtSport = IconDataThin(0xe643); + static const IconData thinCourtSport = IconData(0xe643, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cow icon /// /// https://fontawesome.com/icons/cow?style=solid /// agriculture, animal, beef, bovine, co, cow, farm, fauna, livestock, mammal, milk, moo - static const IconData solidCow = IconDataSolid(0xf6c8); + static const IconData solidCow = IconData(0xf6c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cow icon /// /// https://fontawesome.com/icons/cow?style=regular /// agriculture, animal, beef, bovine, co, cow, farm, fauna, livestock, mammal, milk, moo - static const IconData cow = IconDataRegular(0xf6c8); + static const IconData cow = IconData(0xf6c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cow icon /// /// https://fontawesome.com/icons/cow?style=light /// agriculture, animal, beef, bovine, co, cow, farm, fauna, livestock, mammal, milk, moo - static const IconData lightCow = IconDataLight(0xf6c8); + static const IconData lightCow = IconData(0xf6c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cow icon /// /// https://fontawesome.com/icons/cow?style=thin /// agriculture, animal, beef, bovine, co, cow, farm, fauna, livestock, mammal, milk, moo - static const IconData thinCow = IconDataThin(0xf6c8); + static const IconData thinCow = IconData(0xf6c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cowbell icon /// /// https://fontawesome.com/icons/cowbell?style=solid /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData solidCowbell = IconDataSolid(0xf8b3); + static const IconData solidCowbell = IconData(0xf8b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cowbell icon /// /// https://fontawesome.com/icons/cowbell?style=regular /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData cowbell = IconDataRegular(0xf8b3); + static const IconData cowbell = IconData(0xf8b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cowbell icon /// /// https://fontawesome.com/icons/cowbell?style=light /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData lightCowbell = IconDataLight(0xf8b3); + static const IconData lightCowbell = IconData(0xf8b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cowbell icon /// /// https://fontawesome.com/icons/cowbell?style=thin /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData thinCowbell = IconDataThin(0xf8b3); + static const IconData thinCowbell = IconData(0xf8b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cowbell Circle Plus icon /// /// https://fontawesome.com/icons/cowbell-circle-plus?style=solid /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData solidCowbellCirclePlus = IconDataSolid(0xf8b4); + static const IconData solidCowbellCirclePlus = IconData(0xf8b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cowbell-more for icon [solidCowbellCirclePlus] @Deprecated('Use "solidCowbellCirclePlus" instead.') @@ -27485,7 +27485,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cowbell-circle-plus?style=regular /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData cowbellCirclePlus = IconDataRegular(0xf8b4); + static const IconData cowbellCirclePlus = IconData(0xf8b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cowbell-more for icon [cowbellCirclePlus] @Deprecated('Use "cowbellCirclePlus" instead.') @@ -27495,7 +27495,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cowbell-circle-plus?style=light /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData lightCowbellCirclePlus = IconDataLight(0xf8b4); + static const IconData lightCowbellCirclePlus = IconData(0xf8b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cowbell-more for icon [lightCowbellCirclePlus] @Deprecated('Use "lightCowbellCirclePlus" instead.') @@ -27505,7 +27505,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cowbell-circle-plus?style=thin /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, follow, music - static const IconData thinCowbellCirclePlus = IconDataThin(0xf8b4); + static const IconData thinCowbellCirclePlus = IconData(0xf8b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cowbell-more for icon [thinCowbellCirclePlus] @Deprecated('Use "thinCowbellCirclePlus" instead.') @@ -27514,37 +27514,37 @@ class FontAwesomeIcons { /// Brands cPanel icon /// /// https://fontawesome.com/icons/cpanel?style=brands - static const IconData cpanel = IconDataBrands(0xf388); + static const IconData cpanel = IconData(0xf388, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Crab icon /// /// https://fontawesome.com/icons/crab?style=solid /// cancer, claws, crabmeat, crustacean, seafood, shellfish, zodiac - static const IconData solidCrab = IconDataSolid(0xe3ff); + static const IconData solidCrab = IconData(0xe3ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crab icon /// /// https://fontawesome.com/icons/crab?style=regular /// cancer, claws, crabmeat, crustacean, seafood, shellfish, zodiac - static const IconData crab = IconDataRegular(0xe3ff); + static const IconData crab = IconData(0xe3ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crab icon /// /// https://fontawesome.com/icons/crab?style=light /// cancer, claws, crabmeat, crustacean, seafood, shellfish, zodiac - static const IconData lightCrab = IconDataLight(0xe3ff); + static const IconData lightCrab = IconData(0xe3ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crab icon /// /// https://fontawesome.com/icons/crab?style=thin /// cancer, claws, crabmeat, crustacean, seafood, shellfish, zodiac - static const IconData thinCrab = IconDataThin(0xe3ff); + static const IconData thinCrab = IconData(0xe3ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crate Apple icon /// /// https://fontawesome.com/icons/crate-apple?style=solid /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData solidCrateApple = IconDataSolid(0xf6b1); + static const IconData solidCrateApple = IconData(0xf6b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias apple-crate for icon [solidCrateApple] @Deprecated('Use "solidCrateApple" instead.') @@ -27554,7 +27554,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crate-apple?style=regular /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData crateApple = IconDataRegular(0xf6b1); + static const IconData crateApple = IconData(0xf6b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias apple-crate for icon [crateApple] @Deprecated('Use "crateApple" instead.') @@ -27564,7 +27564,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crate-apple?style=light /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData lightCrateApple = IconDataLight(0xf6b1); + static const IconData lightCrateApple = IconData(0xf6b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias apple-crate for icon [lightCrateApple] @Deprecated('Use "lightCrateApple" instead.') @@ -27574,7 +27574,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crate-apple?style=thin /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData thinCrateApple = IconDataThin(0xf6b1); + static const IconData thinCrateApple = IconData(0xf6b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias apple-crate for icon [thinCrateApple] @Deprecated('Use "thinCrateApple" instead.') @@ -27584,101 +27584,101 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crate-empty?style=solid /// box, crate - static const IconData solidCrateEmpty = IconDataSolid(0xe151); + static const IconData solidCrateEmpty = IconData(0xe151, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crate Empty icon /// /// https://fontawesome.com/icons/crate-empty?style=regular /// box, crate - static const IconData crateEmpty = IconDataRegular(0xe151); + static const IconData crateEmpty = IconData(0xe151, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crate Empty icon /// /// https://fontawesome.com/icons/crate-empty?style=light /// box, crate - static const IconData lightCrateEmpty = IconDataLight(0xe151); + static const IconData lightCrateEmpty = IconData(0xe151, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crate Empty icon /// /// https://fontawesome.com/icons/crate-empty?style=thin /// box, crate - static const IconData thinCrateEmpty = IconDataThin(0xe151); + static const IconData thinCrateEmpty = IconData(0xe151, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons icon /// /// https://fontawesome.com/icons/creative-commons?style=brands - static const IconData creativeCommons = IconDataBrands(0xf25e); + static const IconData creativeCommons = IconData(0xf25e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Attribution icon /// /// https://fontawesome.com/icons/creative-commons-by?style=brands - static const IconData creativeCommonsBy = IconDataBrands(0xf4e7); + static const IconData creativeCommonsBy = IconData(0xf4e7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Noncommercial icon /// /// https://fontawesome.com/icons/creative-commons-nc?style=brands - static const IconData creativeCommonsNc = IconDataBrands(0xf4e8); + static const IconData creativeCommonsNc = IconData(0xf4e8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Noncommercial (Euro Sign) icon /// /// https://fontawesome.com/icons/creative-commons-nc-eu?style=brands - static const IconData creativeCommonsNcEu = IconDataBrands(0xf4e9); + static const IconData creativeCommonsNcEu = IconData(0xf4e9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Noncommercial (Yen Sign) icon /// /// https://fontawesome.com/icons/creative-commons-nc-jp?style=brands - static const IconData creativeCommonsNcJp = IconDataBrands(0xf4ea); + static const IconData creativeCommonsNcJp = IconData(0xf4ea, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons No Derivative Works icon /// /// https://fontawesome.com/icons/creative-commons-nd?style=brands - static const IconData creativeCommonsNd = IconDataBrands(0xf4eb); + static const IconData creativeCommonsNd = IconData(0xf4eb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Public Domain icon /// /// https://fontawesome.com/icons/creative-commons-pd?style=brands - static const IconData creativeCommonsPd = IconDataBrands(0xf4ec); + static const IconData creativeCommonsPd = IconData(0xf4ec, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate Creative Commons Public Domain icon /// /// https://fontawesome.com/icons/creative-commons-pd-alt?style=brands - static const IconData creativeCommonsPdAlt = IconDataBrands(0xf4ed); + static const IconData creativeCommonsPdAlt = IconData(0xf4ed, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Remix icon /// /// https://fontawesome.com/icons/creative-commons-remix?style=brands - static const IconData creativeCommonsRemix = IconDataBrands(0xf4ee); + static const IconData creativeCommonsRemix = IconData(0xf4ee, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Share Alike icon /// /// https://fontawesome.com/icons/creative-commons-sa?style=brands - static const IconData creativeCommonsSa = IconDataBrands(0xf4ef); + static const IconData creativeCommonsSa = IconData(0xf4ef, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Sampling icon /// /// https://fontawesome.com/icons/creative-commons-sampling?style=brands - static const IconData creativeCommonsSampling = IconDataBrands(0xf4f0); + static const IconData creativeCommonsSampling = IconData(0xf4f0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Sampling + icon /// /// https://fontawesome.com/icons/creative-commons-sampling-plus?style=brands - static const IconData creativeCommonsSamplingPlus = IconDataBrands(0xf4f1); + static const IconData creativeCommonsSamplingPlus = IconData(0xf4f1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons Share icon /// /// https://fontawesome.com/icons/creative-commons-share?style=brands - static const IconData creativeCommonsShare = IconDataBrands(0xf4f2); + static const IconData creativeCommonsShare = IconData(0xf4f2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Creative Commons CC0 icon /// /// https://fontawesome.com/icons/creative-commons-zero?style=brands - static const IconData creativeCommonsZero = IconDataBrands(0xf4f3); + static const IconData creativeCommonsZero = IconData(0xf4f3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Credit Card icon /// /// https://fontawesome.com/icons/credit-card?style=solid /// buy, card, checkout, credit, credit card, credit-card-alt, debit, money, payment, purchase - static const IconData solidCreditCard = IconDataSolid(0xf09d); + static const IconData solidCreditCard = IconData(0xf09d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias credit-card-alt for icon [solidCreditCard] @Deprecated('Use "solidCreditCard" instead.') @@ -27688,7 +27688,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/credit-card?style=regular /// buy, card, checkout, credit, credit card, credit-card-alt, debit, money, payment, purchase - static const IconData creditCard = IconDataRegular(0xf09d); + static const IconData creditCard = IconData(0xf09d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias credit-card-alt for icon [creditCard] @Deprecated('Use "creditCard" instead.') @@ -27698,7 +27698,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/credit-card?style=light /// buy, card, checkout, credit, credit card, credit-card-alt, debit, money, payment, purchase - static const IconData lightCreditCard = IconDataLight(0xf09d); + static const IconData lightCreditCard = IconData(0xf09d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias credit-card-alt for icon [lightCreditCard] @Deprecated('Use "lightCreditCard" instead.') @@ -27708,7 +27708,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/credit-card?style=thin /// buy, card, checkout, credit, credit card, credit-card-alt, debit, money, payment, purchase - static const IconData thinCreditCard = IconDataThin(0xf09d); + static const IconData thinCreditCard = IconData(0xf09d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias credit-card-alt for icon [thinCreditCard] @Deprecated('Use "thinCreditCard" instead.') @@ -27718,55 +27718,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/credit-card-blank?style=solid /// buy, checkout, debit, money, payment, purchase - static const IconData solidCreditCardBlank = IconDataSolid(0xf389); + static const IconData solidCreditCardBlank = IconData(0xf389, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Credit Card Blank icon /// /// https://fontawesome.com/icons/credit-card-blank?style=regular /// buy, checkout, debit, money, payment, purchase - static const IconData creditCardBlank = IconDataRegular(0xf389); + static const IconData creditCardBlank = IconData(0xf389, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Credit Card Blank icon /// /// https://fontawesome.com/icons/credit-card-blank?style=light /// buy, checkout, debit, money, payment, purchase - static const IconData lightCreditCardBlank = IconDataLight(0xf389); + static const IconData lightCreditCardBlank = IconData(0xf389, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Credit Card Blank icon /// /// https://fontawesome.com/icons/credit-card-blank?style=thin /// buy, checkout, debit, money, payment, purchase - static const IconData thinCreditCardBlank = IconDataThin(0xf389); + static const IconData thinCreditCardBlank = IconData(0xf389, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Credit Card Front icon /// /// https://fontawesome.com/icons/credit-card-front?style=solid /// buy, checkout, chip, debit, money, payment, purchase - static const IconData solidCreditCardFront = IconDataSolid(0xf38a); + static const IconData solidCreditCardFront = IconData(0xf38a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Credit Card Front icon /// /// https://fontawesome.com/icons/credit-card-front?style=regular /// buy, checkout, chip, debit, money, payment, purchase - static const IconData creditCardFront = IconDataRegular(0xf38a); + static const IconData creditCardFront = IconData(0xf38a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Credit Card Front icon /// /// https://fontawesome.com/icons/credit-card-front?style=light /// buy, checkout, chip, debit, money, payment, purchase - static const IconData lightCreditCardFront = IconDataLight(0xf38a); + static const IconData lightCreditCardFront = IconData(0xf38a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Credit Card Front icon /// /// https://fontawesome.com/icons/credit-card-front?style=thin /// buy, checkout, chip, debit, money, payment, purchase - static const IconData thinCreditCardFront = IconDataThin(0xf38a); + static const IconData thinCreditCardFront = IconData(0xf38a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cricket Bat Ball icon /// /// https://fontawesome.com/icons/cricket-bat-ball?style=solid /// ball, bat, bowling, cricket game, game, wicket - static const IconData solidCricketBatBall = IconDataSolid(0xf449); + static const IconData solidCricketBatBall = IconData(0xf449, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cricket for icon [solidCricketBatBall] @Deprecated('Use "solidCricketBatBall" instead.') @@ -27776,7 +27776,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cricket-bat-ball?style=regular /// ball, bat, bowling, cricket game, game, wicket - static const IconData cricketBatBall = IconDataRegular(0xf449); + static const IconData cricketBatBall = IconData(0xf449, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cricket for icon [cricketBatBall] @Deprecated('Use "cricketBatBall" instead.') @@ -27786,7 +27786,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cricket-bat-ball?style=light /// ball, bat, bowling, cricket game, game, wicket - static const IconData lightCricketBatBall = IconDataLight(0xf449); + static const IconData lightCricketBatBall = IconData(0xf449, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cricket for icon [lightCricketBatBall] @Deprecated('Use "lightCricketBatBall" instead.') @@ -27796,7 +27796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cricket-bat-ball?style=thin /// ball, bat, bowling, cricket game, game, wicket - static const IconData thinCricketBatBall = IconDataThin(0xf449); + static const IconData thinCricketBatBall = IconData(0xf449, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cricket for icon [thinCricketBatBall] @Deprecated('Use "thinCricketBatBall" instead.') @@ -27806,61 +27806,61 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/critical-role?style=brands /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, tabletop - static const IconData criticalRole = IconDataBrands(0xf6c9); + static const IconData criticalRole = IconData(0xf6c9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Croissant icon /// /// https://fontawesome.com/icons/croissant?style=solid /// bakery, bread, breakfast, brioche, butter, crescent, croissant, dough, food, french, gluten, pastry, roll - static const IconData solidCroissant = IconDataSolid(0xf7f6); + static const IconData solidCroissant = IconData(0xf7f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Croissant icon /// /// https://fontawesome.com/icons/croissant?style=regular /// bakery, bread, breakfast, brioche, butter, crescent, croissant, dough, food, french, gluten, pastry, roll - static const IconData croissant = IconDataRegular(0xf7f6); + static const IconData croissant = IconData(0xf7f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Croissant icon /// /// https://fontawesome.com/icons/croissant?style=light /// bakery, bread, breakfast, brioche, butter, crescent, croissant, dough, food, french, gluten, pastry, roll - static const IconData lightCroissant = IconDataLight(0xf7f6); + static const IconData lightCroissant = IconData(0xf7f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Croissant icon /// /// https://fontawesome.com/icons/croissant?style=thin /// bakery, bread, breakfast, brioche, butter, crescent, croissant, dough, food, french, gluten, pastry, roll - static const IconData thinCroissant = IconDataThin(0xf7f6); + static const IconData thinCroissant = IconData(0xf7f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crop icon /// /// https://fontawesome.com/icons/crop?style=solid /// design, frame, mask, modify, resize, shrink - static const IconData solidCrop = IconDataSolid(0xf125); + static const IconData solidCrop = IconData(0xf125, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crop icon /// /// https://fontawesome.com/icons/crop?style=regular /// design, frame, mask, modify, resize, shrink - static const IconData crop = IconDataRegular(0xf125); + static const IconData crop = IconData(0xf125, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crop icon /// /// https://fontawesome.com/icons/crop?style=light /// design, frame, mask, modify, resize, shrink - static const IconData lightCrop = IconDataLight(0xf125); + static const IconData lightCrop = IconData(0xf125, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crop icon /// /// https://fontawesome.com/icons/crop?style=thin /// design, frame, mask, modify, resize, shrink - static const IconData thinCrop = IconDataThin(0xf125); + static const IconData thinCrop = IconData(0xf125, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crop Simple icon /// /// https://fontawesome.com/icons/crop-simple?style=solid /// design, frame, mask, modify, resize, shrink - static const IconData solidCropSimple = IconDataSolid(0xf565); + static const IconData solidCropSimple = IconData(0xf565, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias crop-alt for icon [solidCropSimple] @Deprecated('Use "solidCropSimple" instead.') @@ -27870,7 +27870,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crop-simple?style=regular /// design, frame, mask, modify, resize, shrink - static const IconData cropSimple = IconDataRegular(0xf565); + static const IconData cropSimple = IconData(0xf565, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias crop-alt for icon [cropSimple] @Deprecated('Use "cropSimple" instead.') @@ -27880,7 +27880,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crop-simple?style=light /// design, frame, mask, modify, resize, shrink - static const IconData lightCropSimple = IconDataLight(0xf565); + static const IconData lightCropSimple = IconData(0xf565, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias crop-alt for icon [lightCropSimple] @Deprecated('Use "lightCropSimple" instead.') @@ -27890,7 +27890,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/crop-simple?style=thin /// design, frame, mask, modify, resize, shrink - static const IconData thinCropSimple = IconDataThin(0xf565); + static const IconData thinCropSimple = IconData(0xf565, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias crop-alt for icon [thinCropSimple] @Deprecated('Use "thinCropSimple" instead.') @@ -27900,378 +27900,378 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cross?style=solid /// Christian, Heavy Latin Cross, catholicism, christianity, church, cross, jesus, latin cross, religion - static const IconData solidCross = IconDataSolid(0xf654); + static const IconData solidCross = IconData(0xf654, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cross icon /// /// https://fontawesome.com/icons/cross?style=regular /// Christian, Heavy Latin Cross, catholicism, christianity, church, cross, jesus, latin cross, religion - static const IconData cross = IconDataRegular(0xf654); + static const IconData cross = IconData(0xf654, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cross icon /// /// https://fontawesome.com/icons/cross?style=light /// Christian, Heavy Latin Cross, catholicism, christianity, church, cross, jesus, latin cross, religion - static const IconData lightCross = IconDataLight(0xf654); + static const IconData lightCross = IconData(0xf654, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cross icon /// /// https://fontawesome.com/icons/cross?style=thin /// Christian, Heavy Latin Cross, catholicism, christianity, church, cross, jesus, latin cross, religion - static const IconData thinCross = IconDataThin(0xf654); + static const IconData thinCross = IconData(0xf654, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crosshairs icon /// /// https://fontawesome.com/icons/crosshairs?style=solid /// aim, bullseye, gpd, picker, position - static const IconData solidCrosshairs = IconDataSolid(0xf05b); + static const IconData solidCrosshairs = IconData(0xf05b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crosshairs icon /// /// https://fontawesome.com/icons/crosshairs?style=regular /// aim, bullseye, gpd, picker, position - static const IconData crosshairs = IconDataRegular(0xf05b); + static const IconData crosshairs = IconData(0xf05b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crosshairs icon /// /// https://fontawesome.com/icons/crosshairs?style=light /// aim, bullseye, gpd, picker, position - static const IconData lightCrosshairs = IconDataLight(0xf05b); + static const IconData lightCrosshairs = IconData(0xf05b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crosshairs icon /// /// https://fontawesome.com/icons/crosshairs?style=thin /// aim, bullseye, gpd, picker, position - static const IconData thinCrosshairs = IconDataThin(0xf05b); + static const IconData thinCrosshairs = IconData(0xf05b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crosshairs Simple icon /// /// https://fontawesome.com/icons/crosshairs-simple?style=solid /// aim, bullseye, gpd, picker, position, screenshot, target - static const IconData solidCrosshairsSimple = IconDataSolid(0xe59f); + static const IconData solidCrosshairsSimple = IconData(0xe59f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crosshairs Simple icon /// /// https://fontawesome.com/icons/crosshairs-simple?style=regular /// aim, bullseye, gpd, picker, position, screenshot, target - static const IconData crosshairsSimple = IconDataRegular(0xe59f); + static const IconData crosshairsSimple = IconData(0xe59f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crosshairs Simple icon /// /// https://fontawesome.com/icons/crosshairs-simple?style=light /// aim, bullseye, gpd, picker, position, screenshot, target - static const IconData lightCrosshairsSimple = IconDataLight(0xe59f); + static const IconData lightCrosshairsSimple = IconData(0xe59f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crosshairs Simple icon /// /// https://fontawesome.com/icons/crosshairs-simple?style=thin /// aim, bullseye, gpd, picker, position, screenshot, target - static const IconData thinCrosshairsSimple = IconDataThin(0xe59f); + static const IconData thinCrosshairsSimple = IconData(0xe59f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crow icon /// /// https://fontawesome.com/icons/crow?style=solid /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData solidCrow = IconDataSolid(0xf520); + static const IconData solidCrow = IconData(0xf520, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crow icon /// /// https://fontawesome.com/icons/crow?style=regular /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData crow = IconDataRegular(0xf520); + static const IconData crow = IconData(0xf520, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crow icon /// /// https://fontawesome.com/icons/crow?style=light /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData lightCrow = IconDataLight(0xf520); + static const IconData lightCrow = IconData(0xf520, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crow icon /// /// https://fontawesome.com/icons/crow?style=thin /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData thinCrow = IconDataThin(0xf520); + static const IconData thinCrow = IconData(0xf520, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crown icon /// /// https://fontawesome.com/icons/crown?style=solid /// award, clothing, crown, favorite, king, queen, royal, tiara, vip - static const IconData solidCrown = IconDataSolid(0xf521); + static const IconData solidCrown = IconData(0xf521, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crown icon /// /// https://fontawesome.com/icons/crown?style=regular /// award, clothing, crown, favorite, king, queen, royal, tiara, vip - static const IconData crown = IconDataRegular(0xf521); + static const IconData crown = IconData(0xf521, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crown icon /// /// https://fontawesome.com/icons/crown?style=light /// award, clothing, crown, favorite, king, queen, royal, tiara, vip - static const IconData lightCrown = IconDataLight(0xf521); + static const IconData lightCrown = IconData(0xf521, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crown icon /// /// https://fontawesome.com/icons/crown?style=thin /// award, clothing, crown, favorite, king, queen, royal, tiara, vip - static const IconData thinCrown = IconDataThin(0xf521); + static const IconData thinCrown = IconData(0xf521, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crutch icon /// /// https://fontawesome.com/icons/crutch?style=solid /// cane, injury, mobility, wheelchair - static const IconData solidCrutch = IconDataSolid(0xf7f7); + static const IconData solidCrutch = IconData(0xf7f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crutch icon /// /// https://fontawesome.com/icons/crutch?style=regular /// cane, injury, mobility, wheelchair - static const IconData crutch = IconDataRegular(0xf7f7); + static const IconData crutch = IconData(0xf7f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crutch icon /// /// https://fontawesome.com/icons/crutch?style=light /// cane, injury, mobility, wheelchair - static const IconData lightCrutch = IconDataLight(0xf7f7); + static const IconData lightCrutch = IconData(0xf7f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crutch icon /// /// https://fontawesome.com/icons/crutch?style=thin /// cane, injury, mobility, wheelchair - static const IconData thinCrutch = IconDataThin(0xf7f7); + static const IconData thinCrutch = IconData(0xf7f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crutches icon /// /// https://fontawesome.com/icons/crutches?style=solid /// cane, injury, mobility, wheelchair - static const IconData solidCrutches = IconDataSolid(0xf7f8); + static const IconData solidCrutches = IconData(0xf7f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crutches icon /// /// https://fontawesome.com/icons/crutches?style=regular /// cane, injury, mobility, wheelchair - static const IconData crutches = IconDataRegular(0xf7f8); + static const IconData crutches = IconData(0xf7f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crutches icon /// /// https://fontawesome.com/icons/crutches?style=light /// cane, injury, mobility, wheelchair - static const IconData lightCrutches = IconDataLight(0xf7f8); + static const IconData lightCrutches = IconData(0xf7f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crutches icon /// /// https://fontawesome.com/icons/crutches?style=thin /// cane, injury, mobility, wheelchair - static const IconData thinCrutches = IconDataThin(0xf7f8); + static const IconData thinCrutches = IconData(0xf7f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cruzeiro Sign icon /// /// https://fontawesome.com/icons/cruzeiro-sign?style=solid /// Cruzeiro Sign, currency - static const IconData solidCruzeiroSign = IconDataSolid(0xe152); + static const IconData solidCruzeiroSign = IconData(0xe152, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cruzeiro Sign icon /// /// https://fontawesome.com/icons/cruzeiro-sign?style=regular /// Cruzeiro Sign, currency - static const IconData cruzeiroSign = IconDataRegular(0xe152); + static const IconData cruzeiroSign = IconData(0xe152, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cruzeiro Sign icon /// /// https://fontawesome.com/icons/cruzeiro-sign?style=light /// Cruzeiro Sign, currency - static const IconData lightCruzeiroSign = IconDataLight(0xe152); + static const IconData lightCruzeiroSign = IconData(0xe152, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cruzeiro Sign icon /// /// https://fontawesome.com/icons/cruzeiro-sign?style=thin /// Cruzeiro Sign, currency - static const IconData thinCruzeiroSign = IconDataThin(0xe152); + static const IconData thinCruzeiroSign = IconData(0xe152, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Crystal Ball icon /// /// https://fontawesome.com/icons/crystal-ball?style=solid /// ball, crystal, crystal ball, fairy tale, fantasy, fortune, future, glass, globe, tool - static const IconData solidCrystalBall = IconDataSolid(0xe362); + static const IconData solidCrystalBall = IconData(0xe362, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Crystal Ball icon /// /// https://fontawesome.com/icons/crystal-ball?style=regular /// ball, crystal, crystal ball, fairy tale, fantasy, fortune, future, glass, globe, tool - static const IconData crystalBall = IconDataRegular(0xe362); + static const IconData crystalBall = IconData(0xe362, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Crystal Ball icon /// /// https://fontawesome.com/icons/crystal-ball?style=light /// ball, crystal, crystal ball, fairy tale, fantasy, fortune, future, glass, globe, tool - static const IconData lightCrystalBall = IconDataLight(0xe362); + static const IconData lightCrystalBall = IconData(0xe362, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Crystal Ball icon /// /// https://fontawesome.com/icons/crystal-ball?style=thin /// ball, crystal, crystal ball, fairy tale, fantasy, fortune, future, glass, globe, tool - static const IconData thinCrystalBall = IconDataThin(0xe362); + static const IconData thinCrystalBall = IconData(0xe362, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands CSS 3 Logo icon /// /// https://fontawesome.com/icons/css3?style=brands /// code - static const IconData css3 = IconDataBrands(0xf13c); + static const IconData css3 = IconData(0xf13c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate CSS3 Logo icon /// /// https://fontawesome.com/icons/css3-alt?style=brands - static const IconData css3Alt = IconDataBrands(0xf38b); + static const IconData css3Alt = IconData(0xf38b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Cube icon /// /// https://fontawesome.com/icons/cube?style=solid /// 3d, block, dice, package, square, tesseract - static const IconData solidCube = IconDataSolid(0xf1b2); + static const IconData solidCube = IconData(0xf1b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cube icon /// /// https://fontawesome.com/icons/cube?style=regular /// 3d, block, dice, package, square, tesseract - static const IconData cube = IconDataRegular(0xf1b2); + static const IconData cube = IconData(0xf1b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cube icon /// /// https://fontawesome.com/icons/cube?style=light /// 3d, block, dice, package, square, tesseract - static const IconData lightCube = IconDataLight(0xf1b2); + static const IconData lightCube = IconData(0xf1b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cube icon /// /// https://fontawesome.com/icons/cube?style=thin /// 3d, block, dice, package, square, tesseract - static const IconData thinCube = IconDataThin(0xf1b2); + static const IconData thinCube = IconData(0xf1b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cubes icon /// /// https://fontawesome.com/icons/cubes?style=solid /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData solidCubes = IconDataSolid(0xf1b3); + static const IconData solidCubes = IconData(0xf1b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cubes icon /// /// https://fontawesome.com/icons/cubes?style=regular /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData cubes = IconDataRegular(0xf1b3); + static const IconData cubes = IconData(0xf1b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cubes icon /// /// https://fontawesome.com/icons/cubes?style=light /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData lightCubes = IconDataLight(0xf1b3); + static const IconData lightCubes = IconData(0xf1b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cubes icon /// /// https://fontawesome.com/icons/cubes?style=thin /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData thinCubes = IconDataThin(0xf1b3); + static const IconData thinCubes = IconData(0xf1b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cubes Stacked icon /// /// https://fontawesome.com/icons/cubes-stacked?style=solid /// blocks, cubes, sugar - static const IconData solidCubesStacked = IconDataSolid(0xe4e6); + static const IconData solidCubesStacked = IconData(0xe4e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cubes Stacked icon /// /// https://fontawesome.com/icons/cubes-stacked?style=regular /// blocks, cubes, sugar - static const IconData cubesStacked = IconDataRegular(0xe4e6); + static const IconData cubesStacked = IconData(0xe4e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cubes Stacked icon /// /// https://fontawesome.com/icons/cubes-stacked?style=light /// blocks, cubes, sugar - static const IconData lightCubesStacked = IconDataLight(0xe4e6); + static const IconData lightCubesStacked = IconData(0xe4e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cubes Stacked icon /// /// https://fontawesome.com/icons/cubes-stacked?style=thin /// blocks, cubes, sugar - static const IconData thinCubesStacked = IconDataThin(0xe4e6); + static const IconData thinCubesStacked = IconData(0xe4e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cucumber icon /// /// https://fontawesome.com/icons/cucumber?style=solid /// cuke, pickle, zucchini - static const IconData solidCucumber = IconDataSolid(0xe401); + static const IconData solidCucumber = IconData(0xe401, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cucumber icon /// /// https://fontawesome.com/icons/cucumber?style=regular /// cuke, pickle, zucchini - static const IconData cucumber = IconDataRegular(0xe401); + static const IconData cucumber = IconData(0xe401, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cucumber icon /// /// https://fontawesome.com/icons/cucumber?style=light /// cuke, pickle, zucchini - static const IconData lightCucumber = IconDataLight(0xe401); + static const IconData lightCucumber = IconData(0xe401, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cucumber icon /// /// https://fontawesome.com/icons/cucumber?style=thin /// cuke, pickle, zucchini - static const IconData thinCucumber = IconDataThin(0xe401); + static const IconData thinCucumber = IconData(0xe401, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cup Straw icon /// /// https://fontawesome.com/icons/cup-straw?style=solid /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData solidCupStraw = IconDataSolid(0xe363); + static const IconData solidCupStraw = IconData(0xe363, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cup Straw icon /// /// https://fontawesome.com/icons/cup-straw?style=regular /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData cupStraw = IconDataRegular(0xe363); + static const IconData cupStraw = IconData(0xe363, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cup Straw icon /// /// https://fontawesome.com/icons/cup-straw?style=light /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData lightCupStraw = IconDataLight(0xe363); + static const IconData lightCupStraw = IconData(0xe363, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cup Straw icon /// /// https://fontawesome.com/icons/cup-straw?style=thin /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData thinCupStraw = IconDataThin(0xe363); + static const IconData thinCupStraw = IconData(0xe363, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cup Straw Swoosh icon /// /// https://fontawesome.com/icons/cup-straw-swoosh?style=solid /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData solidCupStrawSwoosh = IconDataSolid(0xe364); + static const IconData solidCupStrawSwoosh = IconData(0xe364, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cup Straw Swoosh icon /// /// https://fontawesome.com/icons/cup-straw-swoosh?style=regular /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData cupStrawSwoosh = IconDataRegular(0xe364); + static const IconData cupStrawSwoosh = IconData(0xe364, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cup Straw Swoosh icon /// /// https://fontawesome.com/icons/cup-straw-swoosh?style=light /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData lightCupStrawSwoosh = IconDataLight(0xe364); + static const IconData lightCupStrawSwoosh = IconData(0xe364, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cup Straw Swoosh icon /// /// https://fontawesome.com/icons/cup-straw-swoosh?style=thin /// caffeine, fast food, orange mocha frappuccino, pop, soda, soft drink, takeout - static const IconData thinCupStrawSwoosh = IconDataThin(0xe364); + static const IconData thinCupStrawSwoosh = IconData(0xe364, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Cup Togo icon /// /// https://fontawesome.com/icons/cup-togo?style=solid /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData solidCupTogo = IconDataSolid(0xf6c5); + static const IconData solidCupTogo = IconData(0xf6c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias coffee-togo for icon [solidCupTogo] @Deprecated('Use "solidCupTogo" instead.') @@ -28281,7 +28281,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cup-togo?style=regular /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData cupTogo = IconDataRegular(0xf6c5); + static const IconData cupTogo = IconData(0xf6c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias coffee-togo for icon [cupTogo] @Deprecated('Use "cupTogo" instead.') @@ -28291,7 +28291,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cup-togo?style=light /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData lightCupTogo = IconDataLight(0xf6c5); + static const IconData lightCupTogo = IconData(0xf6c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias coffee-togo for icon [lightCupTogo] @Deprecated('Use "lightCupTogo" instead.') @@ -28301,7 +28301,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cup-togo?style=thin /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData thinCupTogo = IconDataThin(0xf6c5); + static const IconData thinCupTogo = IconData(0xf6c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias coffee-togo for icon [thinCupTogo] @Deprecated('Use "thinCupTogo" instead.') @@ -28311,31 +28311,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/cupcake?style=solid /// birthday, dessert, frosting, sweet - static const IconData solidCupcake = IconDataSolid(0xe402); + static const IconData solidCupcake = IconData(0xe402, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Cupcake icon /// /// https://fontawesome.com/icons/cupcake?style=regular /// birthday, dessert, frosting, sweet - static const IconData cupcake = IconDataRegular(0xe402); + static const IconData cupcake = IconData(0xe402, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Cupcake icon /// /// https://fontawesome.com/icons/cupcake?style=light /// birthday, dessert, frosting, sweet - static const IconData lightCupcake = IconDataLight(0xe402); + static const IconData lightCupcake = IconData(0xe402, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Cupcake icon /// /// https://fontawesome.com/icons/cupcake?style=thin /// birthday, dessert, frosting, sweet - static const IconData thinCupcake = IconDataThin(0xe402); + static const IconData thinCupcake = IconData(0xe402, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Curling Stone icon /// /// https://fontawesome.com/icons/curling-stone?style=solid /// curling stone, game, ice, olympics, rock, sport, stone - static const IconData solidCurlingStone = IconDataSolid(0xf44a); + static const IconData solidCurlingStone = IconData(0xf44a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias curling for icon [solidCurlingStone] @Deprecated('Use "solidCurlingStone" instead.') @@ -28345,7 +28345,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/curling-stone?style=regular /// curling stone, game, ice, olympics, rock, sport, stone - static const IconData curlingStone = IconDataRegular(0xf44a); + static const IconData curlingStone = IconData(0xf44a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias curling for icon [curlingStone] @Deprecated('Use "curlingStone" instead.') @@ -28355,7 +28355,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/curling-stone?style=light /// curling stone, game, ice, olympics, rock, sport, stone - static const IconData lightCurlingStone = IconDataLight(0xf44a); + static const IconData lightCurlingStone = IconData(0xf44a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias curling for icon [lightCurlingStone] @Deprecated('Use "lightCurlingStone" instead.') @@ -28365,7 +28365,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/curling-stone?style=thin /// curling stone, game, ice, olympics, rock, sport, stone - static const IconData thinCurlingStone = IconDataThin(0xf44a); + static const IconData thinCurlingStone = IconData(0xf44a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias curling for icon [thinCurlingStone] @Deprecated('Use "thinCurlingStone" instead.') @@ -28375,100 +28375,100 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/custard?style=solid /// caramel, custard, dessert, sweet - static const IconData solidCustard = IconDataSolid(0xe403); + static const IconData solidCustard = IconData(0xe403, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Custard icon /// /// https://fontawesome.com/icons/custard?style=regular /// caramel, custard, dessert, sweet - static const IconData custard = IconDataRegular(0xe403); + static const IconData custard = IconData(0xe403, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Custard icon /// /// https://fontawesome.com/icons/custard?style=light /// caramel, custard, dessert, sweet - static const IconData lightCustard = IconDataLight(0xe403); + static const IconData lightCustard = IconData(0xe403, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Custard icon /// /// https://fontawesome.com/icons/custard?style=thin /// caramel, custard, dessert, sweet - static const IconData thinCustard = IconDataThin(0xe403); + static const IconData thinCustard = IconData(0xe403, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Cuttlefish icon /// /// https://fontawesome.com/icons/cuttlefish?style=brands - static const IconData cuttlefish = IconDataBrands(0xf38c); + static const IconData cuttlefish = IconData(0xf38c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid D icon /// /// https://fontawesome.com/icons/d?style=solid /// Latin Capital Letter D, Latin Small Letter D, letter - static const IconData solidD = IconDataSolid(0x44); + static const IconData solidD = IconData(0x44, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular D icon /// /// https://fontawesome.com/icons/d?style=regular /// Latin Capital Letter D, Latin Small Letter D, letter - static const IconData d = IconDataRegular(0x44); + static const IconData d = IconData(0x44, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light D icon /// /// https://fontawesome.com/icons/d?style=light /// Latin Capital Letter D, Latin Small Letter D, letter - static const IconData lightD = IconDataLight(0x44); + static const IconData lightD = IconData(0x44, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin D icon /// /// https://fontawesome.com/icons/d?style=thin /// Latin Capital Letter D, Latin Small Letter D, letter - static const IconData thinD = IconDataThin(0x44); + static const IconData thinD = IconData(0x44, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Dungeons & Dragons icon /// /// https://fontawesome.com/icons/d-and-d?style=brands - static const IconData dAndD = IconDataBrands(0xf38d); + static const IconData dAndD = IconData(0xf38d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands D&D Beyond icon /// /// https://fontawesome.com/icons/d-and-d-beyond?style=brands /// Dungeons & Dragons, d&d, dnd, fantasy, gaming, tabletop - static const IconData dAndDBeyond = IconDataBrands(0xf6ca); + static const IconData dAndDBeyond = IconData(0xf6ca, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dagger icon /// /// https://fontawesome.com/icons/dagger?style=solid /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconData solidDagger = IconDataSolid(0xf6cb); + static const IconData solidDagger = IconData(0xf6cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dagger icon /// /// https://fontawesome.com/icons/dagger?style=regular /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconData dagger = IconDataRegular(0xf6cb); + static const IconData dagger = IconData(0xf6cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dagger icon /// /// https://fontawesome.com/icons/dagger?style=light /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconData lightDagger = IconDataLight(0xf6cb); + static const IconData lightDagger = IconData(0xf6cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dagger icon /// /// https://fontawesome.com/icons/dagger?style=thin /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconData thinDagger = IconDataThin(0xf6cb); + static const IconData thinDagger = IconData(0xf6cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands dailymotion icon /// /// https://fontawesome.com/icons/dailymotion?style=brands - static const IconData dailymotion = IconDataBrands(0xe052); + static const IconData dailymotion = IconData(0xe052, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dash icon /// /// https://fontawesome.com/icons/dash?style=solid /// Em Dash, Minus Sign, collapse, delete, hide, horizontal rule, hyphen, line, math, minify, minus, negative, remove, sign, trash, − - static const IconData solidDash = IconDataSolid(0xe404); + static const IconData solidDash = IconData(0xe404, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias minus-large for icon [solidDash] @Deprecated('Use "solidDash" instead.') @@ -28478,7 +28478,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dash?style=regular /// Em Dash, Minus Sign, collapse, delete, hide, horizontal rule, hyphen, line, math, minify, minus, negative, remove, sign, trash, − - static const IconData dash = IconDataRegular(0xe404); + static const IconData dash = IconData(0xe404, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias minus-large for icon [dash] @Deprecated('Use "dash" instead.') @@ -28488,7 +28488,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dash?style=light /// Em Dash, Minus Sign, collapse, delete, hide, horizontal rule, hyphen, line, math, minify, minus, negative, remove, sign, trash, − - static const IconData lightDash = IconDataLight(0xe404); + static const IconData lightDash = IconData(0xe404, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias minus-large for icon [lightDash] @Deprecated('Use "lightDash" instead.') @@ -28498,7 +28498,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dash?style=thin /// Em Dash, Minus Sign, collapse, delete, hide, horizontal rule, hyphen, line, math, minify, minus, negative, remove, sign, trash, − - static const IconData thinDash = IconDataThin(0xe404); + static const IconData thinDash = IconData(0xe404, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias minus-large for icon [thinDash] @Deprecated('Use "thinDash" instead.') @@ -28507,95 +28507,95 @@ class FontAwesomeIcons { /// Brands DashCube icon /// /// https://fontawesome.com/icons/dashcube?style=brands - static const IconData dashcube = IconDataBrands(0xf210); + static const IconData dashcube = IconData(0xf210, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Database icon /// /// https://fontawesome.com/icons/database?style=solid /// computer, development, directory, memory, mysql, sql, storage - static const IconData solidDatabase = IconDataSolid(0xf1c0); + static const IconData solidDatabase = IconData(0xf1c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Database icon /// /// https://fontawesome.com/icons/database?style=regular /// computer, development, directory, memory, mysql, sql, storage - static const IconData database = IconDataRegular(0xf1c0); + static const IconData database = IconData(0xf1c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Database icon /// /// https://fontawesome.com/icons/database?style=light /// computer, development, directory, memory, mysql, sql, storage - static const IconData lightDatabase = IconDataLight(0xf1c0); + static const IconData lightDatabase = IconData(0xf1c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Database icon /// /// https://fontawesome.com/icons/database?style=thin /// computer, development, directory, memory, mysql, sql, storage - static const IconData thinDatabase = IconDataThin(0xf1c0); + static const IconData thinDatabase = IconData(0xf1c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Debian icon /// /// https://fontawesome.com/icons/debian?style=brands - static const IconData debian = IconDataBrands(0xe60b); + static const IconData debian = IconData(0xe60b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Deer icon /// /// https://fontawesome.com/icons/deer?style=solid /// animal, antlers, blitzen, comet, cupid, dancer, dasher, dee, deer, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData solidDeer = IconDataSolid(0xf78e); + static const IconData solidDeer = IconData(0xf78e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Deer icon /// /// https://fontawesome.com/icons/deer?style=regular /// animal, antlers, blitzen, comet, cupid, dancer, dasher, dee, deer, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData deer = IconDataRegular(0xf78e); + static const IconData deer = IconData(0xf78e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Deer icon /// /// https://fontawesome.com/icons/deer?style=light /// animal, antlers, blitzen, comet, cupid, dancer, dasher, dee, deer, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData lightDeer = IconDataLight(0xf78e); + static const IconData lightDeer = IconData(0xf78e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Deer icon /// /// https://fontawesome.com/icons/deer?style=thin /// animal, antlers, blitzen, comet, cupid, dancer, dasher, dee, deer, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData thinDeer = IconDataThin(0xf78e); + static const IconData thinDeer = IconData(0xf78e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Deer Rudolph icon /// /// https://fontawesome.com/icons/deer-rudolph?style=solid /// animal, antlers, fauna, mammal, reindeer - static const IconData solidDeerRudolph = IconDataSolid(0xf78f); + static const IconData solidDeerRudolph = IconData(0xf78f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Deer Rudolph icon /// /// https://fontawesome.com/icons/deer-rudolph?style=regular /// animal, antlers, fauna, mammal, reindeer - static const IconData deerRudolph = IconDataRegular(0xf78f); + static const IconData deerRudolph = IconData(0xf78f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Deer Rudolph icon /// /// https://fontawesome.com/icons/deer-rudolph?style=light /// animal, antlers, fauna, mammal, reindeer - static const IconData lightDeerRudolph = IconDataLight(0xf78f); + static const IconData lightDeerRudolph = IconData(0xf78f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Deer Rudolph icon /// /// https://fontawesome.com/icons/deer-rudolph?style=thin /// animal, antlers, fauna, mammal, reindeer - static const IconData thinDeerRudolph = IconDataThin(0xf78f); + static const IconData thinDeerRudolph = IconData(0xf78f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Deezer icon /// /// https://fontawesome.com/icons/deezer?style=brands - static const IconData deezer = IconDataBrands(0xe077); + static const IconData deezer = IconData(0xe077, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Delete Left icon /// /// https://fontawesome.com/icons/delete-left?style=solid /// Erase to the Left, command, delete, erase, keyboard, undo - static const IconData solidDeleteLeft = IconDataSolid(0xf55a); + static const IconData solidDeleteLeft = IconData(0xf55a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias backspace for icon [solidDeleteLeft] @Deprecated('Use "solidDeleteLeft" instead.') @@ -28605,7 +28605,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/delete-left?style=regular /// Erase to the Left, command, delete, erase, keyboard, undo - static const IconData deleteLeft = IconDataRegular(0xf55a); + static const IconData deleteLeft = IconData(0xf55a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias backspace for icon [deleteLeft] @Deprecated('Use "deleteLeft" instead.') @@ -28615,7 +28615,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/delete-left?style=light /// Erase to the Left, command, delete, erase, keyboard, undo - static const IconData lightDeleteLeft = IconDataLight(0xf55a); + static const IconData lightDeleteLeft = IconData(0xf55a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias backspace for icon [lightDeleteLeft] @Deprecated('Use "lightDeleteLeft" instead.') @@ -28625,7 +28625,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/delete-left?style=thin /// Erase to the Left, command, delete, erase, keyboard, undo - static const IconData thinDeleteLeft = IconDataThin(0xf55a); + static const IconData thinDeleteLeft = IconData(0xf55a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias backspace for icon [thinDeleteLeft] @Deprecated('Use "thinDeleteLeft" instead.') @@ -28635,70 +28635,70 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/delete-right?style=solid /// Erase to the Right, remove, trash - static const IconData solidDeleteRight = IconDataSolid(0xe154); + static const IconData solidDeleteRight = IconData(0xe154, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Delete Right icon /// /// https://fontawesome.com/icons/delete-right?style=regular /// Erase to the Right, remove, trash - static const IconData deleteRight = IconDataRegular(0xe154); + static const IconData deleteRight = IconData(0xe154, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Delete Right icon /// /// https://fontawesome.com/icons/delete-right?style=light /// Erase to the Right, remove, trash - static const IconData lightDeleteRight = IconDataLight(0xe154); + static const IconData lightDeleteRight = IconData(0xe154, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Delete Right icon /// /// https://fontawesome.com/icons/delete-right?style=thin /// Erase to the Right, remove, trash - static const IconData thinDeleteRight = IconDataThin(0xe154); + static const IconData thinDeleteRight = IconData(0xe154, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Delicious icon /// /// https://fontawesome.com/icons/delicious?style=brands - static const IconData delicious = IconDataBrands(0xf1a5); + static const IconData delicious = IconData(0xf1a5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Democrat icon /// /// https://fontawesome.com/icons/democrat?style=solid /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconData solidDemocrat = IconDataSolid(0xf747); + static const IconData solidDemocrat = IconData(0xf747, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Democrat icon /// /// https://fontawesome.com/icons/democrat?style=regular /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconData democrat = IconDataRegular(0xf747); + static const IconData democrat = IconData(0xf747, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Democrat icon /// /// https://fontawesome.com/icons/democrat?style=light /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconData lightDemocrat = IconDataLight(0xf747); + static const IconData lightDemocrat = IconData(0xf747, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Democrat icon /// /// https://fontawesome.com/icons/democrat?style=thin /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconData thinDemocrat = IconDataThin(0xf747); + static const IconData thinDemocrat = IconData(0xf747, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands deploy.dog icon /// /// https://fontawesome.com/icons/deploydog?style=brands - static const IconData deploydog = IconDataBrands(0xf38e); + static const IconData deploydog = IconData(0xf38e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Deskpro icon /// /// https://fontawesome.com/icons/deskpro?style=brands - static const IconData deskpro = IconDataBrands(0xf38f); + static const IconData deskpro = IconData(0xf38f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Desktop icon /// /// https://fontawesome.com/icons/desktop?style=solid /// computer, cpu, demo, desktop, desktop computer, device, imac, machine, monitor, pc, screen - static const IconData solidDesktop = IconDataSolid(0xf390); + static const IconData solidDesktop = IconData(0xf390, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias desktop-alt for icon [solidDesktop] @Deprecated('Use "solidDesktop" instead.') @@ -28708,7 +28708,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/desktop?style=regular /// computer, cpu, demo, desktop, desktop computer, device, imac, machine, monitor, pc, screen - static const IconData desktop = IconDataRegular(0xf390); + static const IconData desktop = IconData(0xf390, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias desktop-alt for icon [desktop] @Deprecated('Use "desktop" instead.') @@ -28718,7 +28718,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/desktop?style=light /// computer, cpu, demo, desktop, desktop computer, device, imac, machine, monitor, pc, screen - static const IconData lightDesktop = IconDataLight(0xf390); + static const IconData lightDesktop = IconData(0xf390, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias desktop-alt for icon [lightDesktop] @Deprecated('Use "lightDesktop" instead.') @@ -28728,7 +28728,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/desktop?style=thin /// computer, cpu, demo, desktop, desktop computer, device, imac, machine, monitor, pc, screen - static const IconData thinDesktop = IconDataThin(0xf390); + static const IconData thinDesktop = IconData(0xf390, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias desktop-alt for icon [thinDesktop] @Deprecated('Use "thinDesktop" instead.') @@ -28738,215 +28738,215 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/desktop-arrow-down?style=solid /// computer, desktop, download, insert - static const IconData solidDesktopArrowDown = IconDataSolid(0xe155); + static const IconData solidDesktopArrowDown = IconData(0xe155, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Desktop Arrow Down icon /// /// https://fontawesome.com/icons/desktop-arrow-down?style=regular /// computer, desktop, download, insert - static const IconData desktopArrowDown = IconDataRegular(0xe155); + static const IconData desktopArrowDown = IconData(0xe155, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Desktop Arrow Down icon /// /// https://fontawesome.com/icons/desktop-arrow-down?style=light /// computer, desktop, download, insert - static const IconData lightDesktopArrowDown = IconDataLight(0xe155); + static const IconData lightDesktopArrowDown = IconData(0xe155, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Desktop Arrow Down icon /// /// https://fontawesome.com/icons/desktop-arrow-down?style=thin /// computer, desktop, download, insert - static const IconData thinDesktopArrowDown = IconDataThin(0xe155); + static const IconData thinDesktopArrowDown = IconData(0xe155, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands DEV icon /// /// https://fontawesome.com/icons/dev?style=brands - static const IconData dev = IconDataBrands(0xf6cc); + static const IconData dev = IconData(0xf6cc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands deviantART icon /// /// https://fontawesome.com/icons/deviantart?style=brands - static const IconData deviantart = IconDataBrands(0xf1bd); + static const IconData deviantart = IconData(0xf1bd, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dharmachakra icon /// /// https://fontawesome.com/icons/dharmachakra?style=solid /// Buddhist, buddhism, buddhist, dharma, religion, wheel, wheel of dharma - static const IconData solidDharmachakra = IconDataSolid(0xf655); + static const IconData solidDharmachakra = IconData(0xf655, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dharmachakra icon /// /// https://fontawesome.com/icons/dharmachakra?style=regular /// Buddhist, buddhism, buddhist, dharma, religion, wheel, wheel of dharma - static const IconData dharmachakra = IconDataRegular(0xf655); + static const IconData dharmachakra = IconData(0xf655, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dharmachakra icon /// /// https://fontawesome.com/icons/dharmachakra?style=light /// Buddhist, buddhism, buddhist, dharma, religion, wheel, wheel of dharma - static const IconData lightDharmachakra = IconDataLight(0xf655); + static const IconData lightDharmachakra = IconData(0xf655, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dharmachakra icon /// /// https://fontawesome.com/icons/dharmachakra?style=thin /// Buddhist, buddhism, buddhist, dharma, religion, wheel, wheel of dharma - static const IconData thinDharmachakra = IconDataThin(0xf655); + static const IconData thinDharmachakra = IconData(0xf655, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands DHL icon /// /// https://fontawesome.com/icons/dhl?style=brands /// Dalsey, Hillblom and Lynn, german, package, shipping - static const IconData dhl = IconDataBrands(0xf790); + static const IconData dhl = IconData(0xf790, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Cells icon /// /// https://fontawesome.com/icons/diagram-cells?style=solid /// cells, chart, gantt, row, subtask, table - static const IconData solidDiagramCells = IconDataSolid(0xe475); + static const IconData solidDiagramCells = IconData(0xe475, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Cells icon /// /// https://fontawesome.com/icons/diagram-cells?style=regular /// cells, chart, gantt, row, subtask, table - static const IconData diagramCells = IconDataRegular(0xe475); + static const IconData diagramCells = IconData(0xe475, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Cells icon /// /// https://fontawesome.com/icons/diagram-cells?style=light /// cells, chart, gantt, row, subtask, table - static const IconData lightDiagramCells = IconDataLight(0xe475); + static const IconData lightDiagramCells = IconData(0xe475, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Cells icon /// /// https://fontawesome.com/icons/diagram-cells?style=thin /// cells, chart, gantt, row, subtask, table - static const IconData thinDiagramCells = IconDataThin(0xe475); + static const IconData thinDiagramCells = IconData(0xe475, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Lean Canvas icon /// /// https://fontawesome.com/icons/diagram-lean-canvas?style=solid /// columns, grid, rows - static const IconData solidDiagramLeanCanvas = IconDataSolid(0xe156); + static const IconData solidDiagramLeanCanvas = IconData(0xe156, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Lean Canvas icon /// /// https://fontawesome.com/icons/diagram-lean-canvas?style=regular /// columns, grid, rows - static const IconData diagramLeanCanvas = IconDataRegular(0xe156); + static const IconData diagramLeanCanvas = IconData(0xe156, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Lean Canvas icon /// /// https://fontawesome.com/icons/diagram-lean-canvas?style=light /// columns, grid, rows - static const IconData lightDiagramLeanCanvas = IconDataLight(0xe156); + static const IconData lightDiagramLeanCanvas = IconData(0xe156, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Lean Canvas icon /// /// https://fontawesome.com/icons/diagram-lean-canvas?style=thin /// columns, grid, rows - static const IconData thinDiagramLeanCanvas = IconDataThin(0xe156); + static const IconData thinDiagramLeanCanvas = IconData(0xe156, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Nested icon /// /// https://fontawesome.com/icons/diagram-nested?style=solid /// cells, chart, directory, gantt, next, table, tree - static const IconData solidDiagramNested = IconDataSolid(0xe157); + static const IconData solidDiagramNested = IconData(0xe157, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Nested icon /// /// https://fontawesome.com/icons/diagram-nested?style=regular /// cells, chart, directory, gantt, next, table, tree - static const IconData diagramNested = IconDataRegular(0xe157); + static const IconData diagramNested = IconData(0xe157, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Nested icon /// /// https://fontawesome.com/icons/diagram-nested?style=light /// cells, chart, directory, gantt, next, table, tree - static const IconData lightDiagramNested = IconDataLight(0xe157); + static const IconData lightDiagramNested = IconData(0xe157, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Nested icon /// /// https://fontawesome.com/icons/diagram-nested?style=thin /// cells, chart, directory, gantt, next, table, tree - static const IconData thinDiagramNested = IconDataThin(0xe157); + static const IconData thinDiagramNested = IconData(0xe157, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Next icon /// /// https://fontawesome.com/icons/diagram-next?style=solid /// cells, chart, gantt, row, subtask, successor, table - static const IconData solidDiagramNext = IconDataSolid(0xe476); + static const IconData solidDiagramNext = IconData(0xe476, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Next icon /// /// https://fontawesome.com/icons/diagram-next?style=regular /// cells, chart, gantt, row, subtask, successor, table - static const IconData diagramNext = IconDataRegular(0xe476); + static const IconData diagramNext = IconData(0xe476, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Next icon /// /// https://fontawesome.com/icons/diagram-next?style=light /// cells, chart, gantt, row, subtask, successor, table - static const IconData lightDiagramNext = IconDataLight(0xe476); + static const IconData lightDiagramNext = IconData(0xe476, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Next icon /// /// https://fontawesome.com/icons/diagram-next?style=thin /// cells, chart, gantt, row, subtask, successor, table - static const IconData thinDiagramNext = IconDataThin(0xe476); + static const IconData thinDiagramNext = IconData(0xe476, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Predecessor icon /// /// https://fontawesome.com/icons/diagram-predecessor?style=solid /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData solidDiagramPredecessor = IconDataSolid(0xe477); + static const IconData solidDiagramPredecessor = IconData(0xe477, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Predecessor icon /// /// https://fontawesome.com/icons/diagram-predecessor?style=regular /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData diagramPredecessor = IconDataRegular(0xe477); + static const IconData diagramPredecessor = IconData(0xe477, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Predecessor icon /// /// https://fontawesome.com/icons/diagram-predecessor?style=light /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData lightDiagramPredecessor = IconDataLight(0xe477); + static const IconData lightDiagramPredecessor = IconData(0xe477, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Predecessor icon /// /// https://fontawesome.com/icons/diagram-predecessor?style=thin /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData thinDiagramPredecessor = IconDataThin(0xe477); + static const IconData thinDiagramPredecessor = IconData(0xe477, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Previous icon /// /// https://fontawesome.com/icons/diagram-previous?style=solid /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData solidDiagramPrevious = IconDataSolid(0xe478); + static const IconData solidDiagramPrevious = IconData(0xe478, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Previous icon /// /// https://fontawesome.com/icons/diagram-previous?style=regular /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData diagramPrevious = IconDataRegular(0xe478); + static const IconData diagramPrevious = IconData(0xe478, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Previous icon /// /// https://fontawesome.com/icons/diagram-previous?style=light /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData lightDiagramPrevious = IconDataLight(0xe478); + static const IconData lightDiagramPrevious = IconData(0xe478, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Previous icon /// /// https://fontawesome.com/icons/diagram-previous?style=thin /// cells, chart, gantt, predecessor, previous, row, subtask, table - static const IconData thinDiagramPrevious = IconDataThin(0xe478); + static const IconData thinDiagramPrevious = IconData(0xe478, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Project icon /// /// https://fontawesome.com/icons/diagram-project?style=solid /// chart, graph, network, pert, statistics - static const IconData solidDiagramProject = IconDataSolid(0xf542); + static const IconData solidDiagramProject = IconData(0xf542, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias project-diagram for icon [solidDiagramProject] @Deprecated('Use "solidDiagramProject" instead.') @@ -28956,7 +28956,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diagram-project?style=regular /// chart, graph, network, pert, statistics - static const IconData diagramProject = IconDataRegular(0xf542); + static const IconData diagramProject = IconData(0xf542, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias project-diagram for icon [diagramProject] @Deprecated('Use "diagramProject" instead.') @@ -28966,7 +28966,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diagram-project?style=light /// chart, graph, network, pert, statistics - static const IconData lightDiagramProject = IconDataLight(0xf542); + static const IconData lightDiagramProject = IconData(0xf542, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias project-diagram for icon [lightDiagramProject] @Deprecated('Use "lightDiagramProject" instead.') @@ -28976,7 +28976,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diagram-project?style=thin /// chart, graph, network, pert, statistics - static const IconData thinDiagramProject = IconDataThin(0xf542); + static const IconData thinDiagramProject = IconData(0xf542, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias project-diagram for icon [thinDiagramProject] @Deprecated('Use "thinDiagramProject" instead.') @@ -28986,103 +28986,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diagram-sankey?style=solid /// chart, timeline - static const IconData solidDiagramSankey = IconDataSolid(0xe158); + static const IconData solidDiagramSankey = IconData(0xe158, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Sankey icon /// /// https://fontawesome.com/icons/diagram-sankey?style=regular /// chart, timeline - static const IconData diagramSankey = IconDataRegular(0xe158); + static const IconData diagramSankey = IconData(0xe158, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Sankey icon /// /// https://fontawesome.com/icons/diagram-sankey?style=light /// chart, timeline - static const IconData lightDiagramSankey = IconDataLight(0xe158); + static const IconData lightDiagramSankey = IconData(0xe158, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Sankey icon /// /// https://fontawesome.com/icons/diagram-sankey?style=thin /// chart, timeline - static const IconData thinDiagramSankey = IconDataThin(0xe158); + static const IconData thinDiagramSankey = IconData(0xe158, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Subtask icon /// /// https://fontawesome.com/icons/diagram-subtask?style=solid /// cells, chart, gantt, next, row, subtask, successor, table, tree - static const IconData solidDiagramSubtask = IconDataSolid(0xe479); + static const IconData solidDiagramSubtask = IconData(0xe479, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Subtask icon /// /// https://fontawesome.com/icons/diagram-subtask?style=regular /// cells, chart, gantt, next, row, subtask, successor, table, tree - static const IconData diagramSubtask = IconDataRegular(0xe479); + static const IconData diagramSubtask = IconData(0xe479, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Subtask icon /// /// https://fontawesome.com/icons/diagram-subtask?style=light /// cells, chart, gantt, next, row, subtask, successor, table, tree - static const IconData lightDiagramSubtask = IconDataLight(0xe479); + static const IconData lightDiagramSubtask = IconData(0xe479, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Subtask icon /// /// https://fontawesome.com/icons/diagram-subtask?style=thin /// cells, chart, gantt, next, row, subtask, successor, table, tree - static const IconData thinDiagramSubtask = IconDataThin(0xe479); + static const IconData thinDiagramSubtask = IconData(0xe479, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Successor icon /// /// https://fontawesome.com/icons/diagram-successor?style=solid /// cells, chart, gantt, next, row, subtask, successor, table - static const IconData solidDiagramSuccessor = IconDataSolid(0xe47a); + static const IconData solidDiagramSuccessor = IconData(0xe47a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Successor icon /// /// https://fontawesome.com/icons/diagram-successor?style=regular /// cells, chart, gantt, next, row, subtask, successor, table - static const IconData diagramSuccessor = IconDataRegular(0xe47a); + static const IconData diagramSuccessor = IconData(0xe47a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Successor icon /// /// https://fontawesome.com/icons/diagram-successor?style=light /// cells, chart, gantt, next, row, subtask, successor, table - static const IconData lightDiagramSuccessor = IconDataLight(0xe47a); + static const IconData lightDiagramSuccessor = IconData(0xe47a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Successor icon /// /// https://fontawesome.com/icons/diagram-successor?style=thin /// cells, chart, gantt, next, row, subtask, successor, table - static const IconData thinDiagramSuccessor = IconDataThin(0xe47a); + static const IconData thinDiagramSuccessor = IconData(0xe47a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diagram Venn icon /// /// https://fontawesome.com/icons/diagram-venn?style=solid /// chart, intersection, logic, overlap - static const IconData solidDiagramVenn = IconDataSolid(0xe15a); + static const IconData solidDiagramVenn = IconData(0xe15a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diagram Venn icon /// /// https://fontawesome.com/icons/diagram-venn?style=regular /// chart, intersection, logic, overlap - static const IconData diagramVenn = IconDataRegular(0xe15a); + static const IconData diagramVenn = IconData(0xe15a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diagram Venn icon /// /// https://fontawesome.com/icons/diagram-venn?style=light /// chart, intersection, logic, overlap - static const IconData lightDiagramVenn = IconDataLight(0xe15a); + static const IconData lightDiagramVenn = IconData(0xe15a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diagram Venn icon /// /// https://fontawesome.com/icons/diagram-venn?style=thin /// chart, intersection, logic, overlap - static const IconData thinDiagramVenn = IconDataThin(0xe15a); + static const IconData thinDiagramVenn = IconData(0xe15a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial icon /// /// https://fontawesome.com/icons/dial?style=solid /// dial, level - static const IconData solidDial = IconDataSolid(0xe15b); + static const IconData solidDial = IconData(0xe15b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dial-med-high for icon [solidDial] @Deprecated('Use "solidDial" instead.') @@ -29092,7 +29092,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dial?style=regular /// dial, level - static const IconData dial = IconDataRegular(0xe15b); + static const IconData dial = IconData(0xe15b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dial-med-high for icon [dial] @Deprecated('Use "dial" instead.') @@ -29102,7 +29102,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dial?style=light /// dial, level - static const IconData lightDial = IconDataLight(0xe15b); + static const IconData lightDial = IconData(0xe15b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dial-med-high for icon [lightDial] @Deprecated('Use "lightDial" instead.') @@ -29112,7 +29112,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dial?style=thin /// dial, level - static const IconData thinDial = IconDataThin(0xe15b); + static const IconData thinDial = IconData(0xe15b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dial-med-high for icon [thinDial] @Deprecated('Use "thinDial" instead.') @@ -29122,271 +29122,271 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dial-high?style=solid /// dial, level - static const IconData solidDialHigh = IconDataSolid(0xe15c); + static const IconData solidDialHigh = IconData(0xe15c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial High icon /// /// https://fontawesome.com/icons/dial-high?style=regular /// dial, level - static const IconData dialHigh = IconDataRegular(0xe15c); + static const IconData dialHigh = IconData(0xe15c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial High icon /// /// https://fontawesome.com/icons/dial-high?style=light /// dial, level - static const IconData lightDialHigh = IconDataLight(0xe15c); + static const IconData lightDialHigh = IconData(0xe15c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial High icon /// /// https://fontawesome.com/icons/dial-high?style=thin /// dial, level - static const IconData thinDialHigh = IconDataThin(0xe15c); + static const IconData thinDialHigh = IconData(0xe15c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Low icon /// /// https://fontawesome.com/icons/dial-low?style=solid /// dial, level - static const IconData solidDialLow = IconDataSolid(0xe15d); + static const IconData solidDialLow = IconData(0xe15d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Low icon /// /// https://fontawesome.com/icons/dial-low?style=regular /// dial, level - static const IconData dialLow = IconDataRegular(0xe15d); + static const IconData dialLow = IconData(0xe15d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Low icon /// /// https://fontawesome.com/icons/dial-low?style=light /// dial, level - static const IconData lightDialLow = IconDataLight(0xe15d); + static const IconData lightDialLow = IconData(0xe15d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Low icon /// /// https://fontawesome.com/icons/dial-low?style=thin /// dial, level - static const IconData thinDialLow = IconDataThin(0xe15d); + static const IconData thinDialLow = IconData(0xe15d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Max icon /// /// https://fontawesome.com/icons/dial-max?style=solid /// dial, level - static const IconData solidDialMax = IconDataSolid(0xe15e); + static const IconData solidDialMax = IconData(0xe15e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Max icon /// /// https://fontawesome.com/icons/dial-max?style=regular /// dial, level - static const IconData dialMax = IconDataRegular(0xe15e); + static const IconData dialMax = IconData(0xe15e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Max icon /// /// https://fontawesome.com/icons/dial-max?style=light /// dial, level - static const IconData lightDialMax = IconDataLight(0xe15e); + static const IconData lightDialMax = IconData(0xe15e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Max icon /// /// https://fontawesome.com/icons/dial-max?style=thin /// dial, level - static const IconData thinDialMax = IconDataThin(0xe15e); + static const IconData thinDialMax = IconData(0xe15e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Med icon /// /// https://fontawesome.com/icons/dial-med?style=solid /// dial, level - static const IconData solidDialMed = IconDataSolid(0xe15f); + static const IconData solidDialMed = IconData(0xe15f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Med icon /// /// https://fontawesome.com/icons/dial-med?style=regular /// dial, level - static const IconData dialMed = IconDataRegular(0xe15f); + static const IconData dialMed = IconData(0xe15f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Med icon /// /// https://fontawesome.com/icons/dial-med?style=light /// dial, level - static const IconData lightDialMed = IconDataLight(0xe15f); + static const IconData lightDialMed = IconData(0xe15f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Med icon /// /// https://fontawesome.com/icons/dial-med?style=thin /// dial, level - static const IconData thinDialMed = IconDataThin(0xe15f); + static const IconData thinDialMed = IconData(0xe15f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Med Low icon /// /// https://fontawesome.com/icons/dial-med-low?style=solid /// dial, level - static const IconData solidDialMedLow = IconDataSolid(0xe160); + static const IconData solidDialMedLow = IconData(0xe160, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Med Low icon /// /// https://fontawesome.com/icons/dial-med-low?style=regular /// dial, level - static const IconData dialMedLow = IconDataRegular(0xe160); + static const IconData dialMedLow = IconData(0xe160, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Med Low icon /// /// https://fontawesome.com/icons/dial-med-low?style=light /// dial, level - static const IconData lightDialMedLow = IconDataLight(0xe160); + static const IconData lightDialMedLow = IconData(0xe160, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Med Low icon /// /// https://fontawesome.com/icons/dial-med-low?style=thin /// dial, level - static const IconData thinDialMedLow = IconDataThin(0xe160); + static const IconData thinDialMedLow = IconData(0xe160, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Min icon /// /// https://fontawesome.com/icons/dial-min?style=solid /// dial, level - static const IconData solidDialMin = IconDataSolid(0xe161); + static const IconData solidDialMin = IconData(0xe161, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Min icon /// /// https://fontawesome.com/icons/dial-min?style=regular /// dial, level - static const IconData dialMin = IconDataRegular(0xe161); + static const IconData dialMin = IconData(0xe161, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Min icon /// /// https://fontawesome.com/icons/dial-min?style=light /// dial, level - static const IconData lightDialMin = IconDataLight(0xe161); + static const IconData lightDialMin = IconData(0xe161, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Min icon /// /// https://fontawesome.com/icons/dial-min?style=thin /// dial, level - static const IconData thinDialMin = IconDataThin(0xe161); + static const IconData thinDialMin = IconData(0xe161, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dial Off icon /// /// https://fontawesome.com/icons/dial-off?style=solid /// dial, level - static const IconData solidDialOff = IconDataSolid(0xe162); + static const IconData solidDialOff = IconData(0xe162, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dial Off icon /// /// https://fontawesome.com/icons/dial-off?style=regular /// dial, level - static const IconData dialOff = IconDataRegular(0xe162); + static const IconData dialOff = IconData(0xe162, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dial Off icon /// /// https://fontawesome.com/icons/dial-off?style=light /// dial, level - static const IconData lightDialOff = IconDataLight(0xe162); + static const IconData lightDialOff = IconData(0xe162, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dial Off icon /// /// https://fontawesome.com/icons/dial-off?style=thin /// dial, level - static const IconData thinDialOff = IconDataThin(0xe162); + static const IconData thinDialOff = IconData(0xe162, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diamond icon /// /// https://fontawesome.com/icons/diamond?style=solid /// ace, card, cards, diamond suit, game, gem, gemstone, poker, suit - static const IconData solidDiamond = IconDataSolid(0xf219); + static const IconData solidDiamond = IconData(0xf219, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diamond icon /// /// https://fontawesome.com/icons/diamond?style=regular /// ace, card, cards, diamond suit, game, gem, gemstone, poker, suit - static const IconData diamond = IconDataRegular(0xf219); + static const IconData diamond = IconData(0xf219, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diamond icon /// /// https://fontawesome.com/icons/diamond?style=light /// ace, card, cards, diamond suit, game, gem, gemstone, poker, suit - static const IconData lightDiamond = IconDataLight(0xf219); + static const IconData lightDiamond = IconData(0xf219, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diamond icon /// /// https://fontawesome.com/icons/diamond?style=thin /// ace, card, cards, diamond suit, game, gem, gemstone, poker, suit - static const IconData thinDiamond = IconDataThin(0xf219); + static const IconData thinDiamond = IconData(0xf219, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diamond Exclamation icon /// /// https://fontawesome.com/icons/diamond-exclamation?style=solid /// attention, caution, danger, failed, required, warning - static const IconData solidDiamondExclamation = IconDataSolid(0xe405); + static const IconData solidDiamondExclamation = IconData(0xe405, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diamond Exclamation icon /// /// https://fontawesome.com/icons/diamond-exclamation?style=regular /// attention, caution, danger, failed, required, warning - static const IconData diamondExclamation = IconDataRegular(0xe405); + static const IconData diamondExclamation = IconData(0xe405, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diamond Exclamation icon /// /// https://fontawesome.com/icons/diamond-exclamation?style=light /// attention, caution, danger, failed, required, warning - static const IconData lightDiamondExclamation = IconDataLight(0xe405); + static const IconData lightDiamondExclamation = IconData(0xe405, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diamond Exclamation icon /// /// https://fontawesome.com/icons/diamond-exclamation?style=thin /// attention, caution, danger, failed, required, warning - static const IconData thinDiamondExclamation = IconDataThin(0xe405); + static const IconData thinDiamondExclamation = IconData(0xe405, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diamond Half icon /// /// https://fontawesome.com/icons/diamond-half?style=solid /// diamond, gem, half, rating - static const IconData solidDiamondHalf = IconDataSolid(0xe5b7); + static const IconData solidDiamondHalf = IconData(0xe5b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diamond Half icon /// /// https://fontawesome.com/icons/diamond-half?style=regular /// diamond, gem, half, rating - static const IconData diamondHalf = IconDataRegular(0xe5b7); + static const IconData diamondHalf = IconData(0xe5b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diamond Half icon /// /// https://fontawesome.com/icons/diamond-half?style=light /// diamond, gem, half, rating - static const IconData lightDiamondHalf = IconDataLight(0xe5b7); + static const IconData lightDiamondHalf = IconData(0xe5b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diamond Half icon /// /// https://fontawesome.com/icons/diamond-half?style=thin /// diamond, gem, half, rating - static const IconData thinDiamondHalf = IconDataThin(0xe5b7); + static const IconData thinDiamondHalf = IconData(0xe5b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diamond Half Stroke icon /// /// https://fontawesome.com/icons/diamond-half-stroke?style=solid /// contrast, diamond, gem, half, rating - static const IconData solidDiamondHalfStroke = IconDataSolid(0xe5b8); + static const IconData solidDiamondHalfStroke = IconData(0xe5b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Diamond Half Stroke icon /// /// https://fontawesome.com/icons/diamond-half-stroke?style=regular /// contrast, diamond, gem, half, rating - static const IconData diamondHalfStroke = IconDataRegular(0xe5b8); + static const IconData diamondHalfStroke = IconData(0xe5b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Diamond Half Stroke icon /// /// https://fontawesome.com/icons/diamond-half-stroke?style=light /// contrast, diamond, gem, half, rating - static const IconData lightDiamondHalfStroke = IconDataLight(0xe5b8); + static const IconData lightDiamondHalfStroke = IconData(0xe5b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Diamond Half Stroke icon /// /// https://fontawesome.com/icons/diamond-half-stroke?style=thin /// contrast, diamond, gem, half, rating - static const IconData thinDiamondHalfStroke = IconDataThin(0xe5b8); + static const IconData thinDiamondHalfStroke = IconData(0xe5b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diamond Turn Right icon /// /// https://fontawesome.com/icons/diamond-turn-right?style=solid /// map, navigation, sign, turn - static const IconData solidDiamondTurnRight = IconDataSolid(0xf5eb); + static const IconData solidDiamondTurnRight = IconData(0xf5eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias directions for icon [solidDiamondTurnRight] @Deprecated('Use "solidDiamondTurnRight" instead.') @@ -29396,7 +29396,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diamond-turn-right?style=regular /// map, navigation, sign, turn - static const IconData diamondTurnRight = IconDataRegular(0xf5eb); + static const IconData diamondTurnRight = IconData(0xf5eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias directions for icon [diamondTurnRight] @Deprecated('Use "diamondTurnRight" instead.') @@ -29406,7 +29406,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diamond-turn-right?style=light /// map, navigation, sign, turn - static const IconData lightDiamondTurnRight = IconDataLight(0xf5eb); + static const IconData lightDiamondTurnRight = IconData(0xf5eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias directions for icon [lightDiamondTurnRight] @Deprecated('Use "lightDiamondTurnRight" instead.') @@ -29416,7 +29416,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diamond-turn-right?style=thin /// map, navigation, sign, turn - static const IconData thinDiamondTurnRight = IconDataThin(0xf5eb); + static const IconData thinDiamondTurnRight = IconData(0xf5eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias directions for icon [thinDiamondTurnRight] @Deprecated('Use "thinDiamondTurnRight" instead.') @@ -29425,359 +29425,359 @@ class FontAwesomeIcons { /// Brands Diaspora icon /// /// https://fontawesome.com/icons/diaspora?style=brands - static const IconData diaspora = IconDataBrands(0xf791); + static const IconData diaspora = IconData(0xf791, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dice icon /// /// https://fontawesome.com/icons/dice?style=solid /// chance, dice, die, gambling, game, game die, roll - static const IconData solidDice = IconDataSolid(0xf522); + static const IconData solidDice = IconData(0xf522, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice icon /// /// https://fontawesome.com/icons/dice?style=regular /// chance, dice, die, gambling, game, game die, roll - static const IconData dice = IconDataRegular(0xf522); + static const IconData dice = IconData(0xf522, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice icon /// /// https://fontawesome.com/icons/dice?style=light /// chance, dice, die, gambling, game, game die, roll - static const IconData lightDice = IconDataLight(0xf522); + static const IconData lightDice = IconData(0xf522, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice icon /// /// https://fontawesome.com/icons/dice?style=thin /// chance, dice, die, gambling, game, game die, roll - static const IconData thinDice = IconDataThin(0xf522); + static const IconData thinDice = IconData(0xf522, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D10 icon /// /// https://fontawesome.com/icons/dice-d10?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD10 = IconDataSolid(0xf6cd); + static const IconData solidDiceD10 = IconData(0xf6cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D10 icon /// /// https://fontawesome.com/icons/dice-d10?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD10 = IconDataRegular(0xf6cd); + static const IconData diceD10 = IconData(0xf6cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D10 icon /// /// https://fontawesome.com/icons/dice-d10?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD10 = IconDataLight(0xf6cd); + static const IconData lightDiceD10 = IconData(0xf6cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D10 icon /// /// https://fontawesome.com/icons/dice-d10?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD10 = IconDataThin(0xf6cd); + static const IconData thinDiceD10 = IconData(0xf6cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D12 icon /// /// https://fontawesome.com/icons/dice-d12?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD12 = IconDataSolid(0xf6ce); + static const IconData solidDiceD12 = IconData(0xf6ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D12 icon /// /// https://fontawesome.com/icons/dice-d12?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD12 = IconDataRegular(0xf6ce); + static const IconData diceD12 = IconData(0xf6ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D12 icon /// /// https://fontawesome.com/icons/dice-d12?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD12 = IconDataLight(0xf6ce); + static const IconData lightDiceD12 = IconData(0xf6ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D12 icon /// /// https://fontawesome.com/icons/dice-d12?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD12 = IconDataThin(0xf6ce); + static const IconData thinDiceD12 = IconData(0xf6ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D20 icon /// /// https://fontawesome.com/icons/dice-d20?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD20 = IconDataSolid(0xf6cf); + static const IconData solidDiceD20 = IconData(0xf6cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D20 icon /// /// https://fontawesome.com/icons/dice-d20?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD20 = IconDataRegular(0xf6cf); + static const IconData diceD20 = IconData(0xf6cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D20 icon /// /// https://fontawesome.com/icons/dice-d20?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD20 = IconDataLight(0xf6cf); + static const IconData lightDiceD20 = IconData(0xf6cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D20 icon /// /// https://fontawesome.com/icons/dice-d20?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD20 = IconDataThin(0xf6cf); + static const IconData thinDiceD20 = IconData(0xf6cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D4 icon /// /// https://fontawesome.com/icons/dice-d4?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD4 = IconDataSolid(0xf6d0); + static const IconData solidDiceD4 = IconData(0xf6d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D4 icon /// /// https://fontawesome.com/icons/dice-d4?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD4 = IconDataRegular(0xf6d0); + static const IconData diceD4 = IconData(0xf6d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D4 icon /// /// https://fontawesome.com/icons/dice-d4?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD4 = IconDataLight(0xf6d0); + static const IconData lightDiceD4 = IconData(0xf6d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D4 icon /// /// https://fontawesome.com/icons/dice-d4?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD4 = IconDataThin(0xf6d0); + static const IconData thinDiceD4 = IconData(0xf6d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D6 icon /// /// https://fontawesome.com/icons/dice-d6?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD6 = IconDataSolid(0xf6d1); + static const IconData solidDiceD6 = IconData(0xf6d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D6 icon /// /// https://fontawesome.com/icons/dice-d6?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD6 = IconDataRegular(0xf6d1); + static const IconData diceD6 = IconData(0xf6d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D6 icon /// /// https://fontawesome.com/icons/dice-d6?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD6 = IconDataLight(0xf6d1); + static const IconData lightDiceD6 = IconData(0xf6d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D6 icon /// /// https://fontawesome.com/icons/dice-d6?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD6 = IconDataThin(0xf6d1); + static const IconData thinDiceD6 = IconData(0xf6d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice D8 icon /// /// https://fontawesome.com/icons/dice-d8?style=solid /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData solidDiceD8 = IconDataSolid(0xf6d2); + static const IconData solidDiceD8 = IconData(0xf6d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice D8 icon /// /// https://fontawesome.com/icons/dice-d8?style=regular /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData diceD8 = IconDataRegular(0xf6d2); + static const IconData diceD8 = IconData(0xf6d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice D8 icon /// /// https://fontawesome.com/icons/dice-d8?style=light /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD8 = IconDataLight(0xf6d2); + static const IconData lightDiceD8 = IconData(0xf6d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice D8 icon /// /// https://fontawesome.com/icons/dice-d8?style=thin /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData thinDiceD8 = IconDataThin(0xf6d2); + static const IconData thinDiceD8 = IconData(0xf6d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice Five icon /// /// https://fontawesome.com/icons/dice-five?style=solid /// Die Face-5, chance, gambling, game, roll - static const IconData solidDiceFive = IconDataSolid(0xf523); + static const IconData solidDiceFive = IconData(0xf523, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice Five icon /// /// https://fontawesome.com/icons/dice-five?style=regular /// Die Face-5, chance, gambling, game, roll - static const IconData diceFive = IconDataRegular(0xf523); + static const IconData diceFive = IconData(0xf523, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice Five icon /// /// https://fontawesome.com/icons/dice-five?style=light /// Die Face-5, chance, gambling, game, roll - static const IconData lightDiceFive = IconDataLight(0xf523); + static const IconData lightDiceFive = IconData(0xf523, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice Five icon /// /// https://fontawesome.com/icons/dice-five?style=thin /// Die Face-5, chance, gambling, game, roll - static const IconData thinDiceFive = IconDataThin(0xf523); + static const IconData thinDiceFive = IconData(0xf523, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice Four icon /// /// https://fontawesome.com/icons/dice-four?style=solid /// Die Face-4, chance, gambling, game, roll - static const IconData solidDiceFour = IconDataSolid(0xf524); + static const IconData solidDiceFour = IconData(0xf524, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice Four icon /// /// https://fontawesome.com/icons/dice-four?style=regular /// Die Face-4, chance, gambling, game, roll - static const IconData diceFour = IconDataRegular(0xf524); + static const IconData diceFour = IconData(0xf524, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice Four icon /// /// https://fontawesome.com/icons/dice-four?style=light /// Die Face-4, chance, gambling, game, roll - static const IconData lightDiceFour = IconDataLight(0xf524); + static const IconData lightDiceFour = IconData(0xf524, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice Four icon /// /// https://fontawesome.com/icons/dice-four?style=thin /// Die Face-4, chance, gambling, game, roll - static const IconData thinDiceFour = IconDataThin(0xf524); + static const IconData thinDiceFour = IconData(0xf524, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice One icon /// /// https://fontawesome.com/icons/dice-one?style=solid /// Die Face-1, chance, gambling, game, roll - static const IconData solidDiceOne = IconDataSolid(0xf525); + static const IconData solidDiceOne = IconData(0xf525, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice One icon /// /// https://fontawesome.com/icons/dice-one?style=regular /// Die Face-1, chance, gambling, game, roll - static const IconData diceOne = IconDataRegular(0xf525); + static const IconData diceOne = IconData(0xf525, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice One icon /// /// https://fontawesome.com/icons/dice-one?style=light /// Die Face-1, chance, gambling, game, roll - static const IconData lightDiceOne = IconDataLight(0xf525); + static const IconData lightDiceOne = IconData(0xf525, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice One icon /// /// https://fontawesome.com/icons/dice-one?style=thin /// Die Face-1, chance, gambling, game, roll - static const IconData thinDiceOne = IconDataThin(0xf525); + static const IconData thinDiceOne = IconData(0xf525, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice Six icon /// /// https://fontawesome.com/icons/dice-six?style=solid /// Die Face-6, chance, gambling, game, roll - static const IconData solidDiceSix = IconDataSolid(0xf526); + static const IconData solidDiceSix = IconData(0xf526, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice Six icon /// /// https://fontawesome.com/icons/dice-six?style=regular /// Die Face-6, chance, gambling, game, roll - static const IconData diceSix = IconDataRegular(0xf526); + static const IconData diceSix = IconData(0xf526, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice Six icon /// /// https://fontawesome.com/icons/dice-six?style=light /// Die Face-6, chance, gambling, game, roll - static const IconData lightDiceSix = IconDataLight(0xf526); + static const IconData lightDiceSix = IconData(0xf526, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice Six icon /// /// https://fontawesome.com/icons/dice-six?style=thin /// Die Face-6, chance, gambling, game, roll - static const IconData thinDiceSix = IconDataThin(0xf526); + static const IconData thinDiceSix = IconData(0xf526, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice Three icon /// /// https://fontawesome.com/icons/dice-three?style=solid /// Die Face-3, chance, gambling, game, roll - static const IconData solidDiceThree = IconDataSolid(0xf527); + static const IconData solidDiceThree = IconData(0xf527, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice Three icon /// /// https://fontawesome.com/icons/dice-three?style=regular /// Die Face-3, chance, gambling, game, roll - static const IconData diceThree = IconDataRegular(0xf527); + static const IconData diceThree = IconData(0xf527, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice Three icon /// /// https://fontawesome.com/icons/dice-three?style=light /// Die Face-3, chance, gambling, game, roll - static const IconData lightDiceThree = IconDataLight(0xf527); + static const IconData lightDiceThree = IconData(0xf527, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice Three icon /// /// https://fontawesome.com/icons/dice-three?style=thin /// Die Face-3, chance, gambling, game, roll - static const IconData thinDiceThree = IconDataThin(0xf527); + static const IconData thinDiceThree = IconData(0xf527, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dice Two icon /// /// https://fontawesome.com/icons/dice-two?style=solid /// Die Face-2, chance, gambling, game, roll - static const IconData solidDiceTwo = IconDataSolid(0xf528); + static const IconData solidDiceTwo = IconData(0xf528, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dice Two icon /// /// https://fontawesome.com/icons/dice-two?style=regular /// Die Face-2, chance, gambling, game, roll - static const IconData diceTwo = IconDataRegular(0xf528); + static const IconData diceTwo = IconData(0xf528, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dice Two icon /// /// https://fontawesome.com/icons/dice-two?style=light /// Die Face-2, chance, gambling, game, roll - static const IconData lightDiceTwo = IconDataLight(0xf528); + static const IconData lightDiceTwo = IconData(0xf528, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dice Two icon /// /// https://fontawesome.com/icons/dice-two?style=thin /// Die Face-2, chance, gambling, game, roll - static const IconData thinDiceTwo = IconDataThin(0xf528); + static const IconData thinDiceTwo = IconData(0xf528, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Digg Logo icon /// /// https://fontawesome.com/icons/digg?style=brands - static const IconData digg = IconDataBrands(0xf1a6); + static const IconData digg = IconData(0xf1a6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Digital Ocean icon /// /// https://fontawesome.com/icons/digital-ocean?style=brands - static const IconData digitalOcean = IconDataBrands(0xf391); + static const IconData digitalOcean = IconData(0xf391, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dinosaur icon /// /// https://fontawesome.com/icons/dinosaur?style=solid /// brachiosaurus, dinosaur, herbivore, jurassic, sauropod, dino - static const IconData solidDinosaur = IconDataSolid(0xe5fe); + static const IconData solidDinosaur = IconData(0xe5fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dinosaur icon /// /// https://fontawesome.com/icons/dinosaur?style=regular /// brachiosaurus, dinosaur, herbivore, jurassic, sauropod, dino - static const IconData dinosaur = IconDataRegular(0xe5fe); + static const IconData dinosaur = IconData(0xe5fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dinosaur icon /// /// https://fontawesome.com/icons/dinosaur?style=light /// brachiosaurus, dinosaur, herbivore, jurassic, sauropod, dino - static const IconData lightDinosaur = IconDataLight(0xe5fe); + static const IconData lightDinosaur = IconData(0xe5fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dinosaur icon /// /// https://fontawesome.com/icons/dinosaur?style=thin /// brachiosaurus, dinosaur, herbivore, jurassic, sauropod, dino - static const IconData thinDinosaur = IconDataThin(0xe5fe); + static const IconData thinDinosaur = IconData(0xe5fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Diploma icon /// /// https://fontawesome.com/icons/diploma?style=solid /// award, certificate, college, education, graduate, graduation, scholar, university - static const IconData solidDiploma = IconDataSolid(0xf5ea); + static const IconData solidDiploma = IconData(0xf5ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias scroll-ribbon for icon [solidDiploma] @Deprecated('Use "solidDiploma" instead.') @@ -29787,7 +29787,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diploma?style=regular /// award, certificate, college, education, graduate, graduation, scholar, university - static const IconData diploma = IconDataRegular(0xf5ea); + static const IconData diploma = IconData(0xf5ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias scroll-ribbon for icon [diploma] @Deprecated('Use "diploma" instead.') @@ -29797,7 +29797,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diploma?style=light /// award, certificate, college, education, graduate, graduation, scholar, university - static const IconData lightDiploma = IconDataLight(0xf5ea); + static const IconData lightDiploma = IconData(0xf5ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias scroll-ribbon for icon [lightDiploma] @Deprecated('Use "lightDiploma" instead.') @@ -29807,7 +29807,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/diploma?style=thin /// award, certificate, college, education, graduate, graduation, scholar, university - static const IconData thinDiploma = IconDataThin(0xf5ea); + static const IconData thinDiploma = IconData(0xf5ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias scroll-ribbon for icon [thinDiploma] @Deprecated('Use "thinDiploma" instead.') @@ -29817,187 +29817,187 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/disc-drive?style=solid /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconData solidDiscDrive = IconDataSolid(0xf8b5); + static const IconData solidDiscDrive = IconData(0xf8b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Disc Drive icon /// /// https://fontawesome.com/icons/disc-drive?style=regular /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconData discDrive = IconDataRegular(0xf8b5); + static const IconData discDrive = IconData(0xf8b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Disc Drive icon /// /// https://fontawesome.com/icons/disc-drive?style=light /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconData lightDiscDrive = IconDataLight(0xf8b5); + static const IconData lightDiscDrive = IconData(0xf8b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Disc Drive icon /// /// https://fontawesome.com/icons/disc-drive?style=thin /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconData thinDiscDrive = IconDataThin(0xf8b5); + static const IconData thinDiscDrive = IconData(0xf8b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Discord icon /// /// https://fontawesome.com/icons/discord?style=brands - static const IconData discord = IconDataBrands(0xf392); + static const IconData discord = IconData(0xf392, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Discourse icon /// /// https://fontawesome.com/icons/discourse?style=brands - static const IconData discourse = IconDataBrands(0xf393); + static const IconData discourse = IconData(0xf393, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Disease icon /// /// https://fontawesome.com/icons/disease?style=solid /// bacteria, cancer, coronavirus, covid-19, flu, illness, infection, pandemic, sickness, virus - static const IconData solidDisease = IconDataSolid(0xf7fa); + static const IconData solidDisease = IconData(0xf7fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Disease icon /// /// https://fontawesome.com/icons/disease?style=regular /// bacteria, cancer, coronavirus, covid-19, flu, illness, infection, pandemic, sickness, virus - static const IconData disease = IconDataRegular(0xf7fa); + static const IconData disease = IconData(0xf7fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Disease icon /// /// https://fontawesome.com/icons/disease?style=light /// bacteria, cancer, coronavirus, covid-19, flu, illness, infection, pandemic, sickness, virus - static const IconData lightDisease = IconDataLight(0xf7fa); + static const IconData lightDisease = IconData(0xf7fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Disease icon /// /// https://fontawesome.com/icons/disease?style=thin /// bacteria, cancer, coronavirus, covid-19, flu, illness, infection, pandemic, sickness, virus - static const IconData thinDisease = IconDataThin(0xf7fa); + static const IconData thinDisease = IconData(0xf7fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display icon /// /// https://fontawesome.com/icons/display?style=solid /// Screen, computer, desktop, imac - static const IconData solidDisplay = IconDataSolid(0xe163); + static const IconData solidDisplay = IconData(0xe163, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Display icon /// /// https://fontawesome.com/icons/display?style=regular /// Screen, computer, desktop, imac - static const IconData display = IconDataRegular(0xe163); + static const IconData display = IconData(0xe163, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Display icon /// /// https://fontawesome.com/icons/display?style=light /// Screen, computer, desktop, imac - static const IconData lightDisplay = IconDataLight(0xe163); + static const IconData lightDisplay = IconData(0xe163, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Display icon /// /// https://fontawesome.com/icons/display?style=thin /// Screen, computer, desktop, imac - static const IconData thinDisplay = IconDataThin(0xe163); + static const IconData thinDisplay = IconData(0xe163, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display Arrow Down icon /// /// https://fontawesome.com/icons/display-arrow-down?style=solid /// computer, desktop, download, insert - static const IconData solidDisplayArrowDown = IconDataSolid(0xe164); + static const IconData solidDisplayArrowDown = IconData(0xe164, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Display Arrow Down icon /// /// https://fontawesome.com/icons/display-arrow-down?style=regular /// computer, desktop, download, insert - static const IconData displayArrowDown = IconDataRegular(0xe164); + static const IconData displayArrowDown = IconData(0xe164, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Display Arrow Down icon /// /// https://fontawesome.com/icons/display-arrow-down?style=light /// computer, desktop, download, insert - static const IconData lightDisplayArrowDown = IconDataLight(0xe164); + static const IconData lightDisplayArrowDown = IconData(0xe164, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Display Arrow Down icon /// /// https://fontawesome.com/icons/display-arrow-down?style=thin /// computer, desktop, download, insert - static const IconData thinDisplayArrowDown = IconDataThin(0xe164); + static const IconData thinDisplayArrowDown = IconData(0xe164, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display Chart Up icon /// /// https://fontawesome.com/icons/display-chart-up?style=solid /// analytics, chart, measure, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData solidDisplayChartUp = IconDataSolid(0xe5e3); + static const IconData solidDisplayChartUp = IconData(0xe5e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Display Chart Up icon /// /// https://fontawesome.com/icons/display-chart-up?style=regular /// analytics, chart, measure, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData displayChartUp = IconDataRegular(0xe5e3); + static const IconData displayChartUp = IconData(0xe5e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Display Chart Up icon /// /// https://fontawesome.com/icons/display-chart-up?style=light /// analytics, chart, measure, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData lightDisplayChartUp = IconDataLight(0xe5e3); + static const IconData lightDisplayChartUp = IconData(0xe5e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Display Chart Up icon /// /// https://fontawesome.com/icons/display-chart-up?style=thin /// analytics, chart, measure, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData thinDisplayChartUp = IconDataThin(0xe5e3); + static const IconData thinDisplayChartUp = IconData(0xe5e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display Chart Up Circle Currency icon /// /// https://fontawesome.com/icons/display-chart-up-circle-currency?style=solid /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading static const IconData solidDisplayChartUpCircleCurrency = - IconDataSolid(0xe5e5); + IconData(0xe5e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Display Chart Up Circle Currency icon /// /// https://fontawesome.com/icons/display-chart-up-circle-currency?style=regular /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData displayChartUpCircleCurrency = IconDataRegular(0xe5e5); + static const IconData displayChartUpCircleCurrency = IconData(0xe5e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Display Chart Up Circle Currency icon /// /// https://fontawesome.com/icons/display-chart-up-circle-currency?style=light /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading static const IconData lightDisplayChartUpCircleCurrency = - IconDataLight(0xe5e5); + IconData(0xe5e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Display Chart Up Circle Currency icon /// /// https://fontawesome.com/icons/display-chart-up-circle-currency?style=thin /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData thinDisplayChartUpCircleCurrency = IconDataThin(0xe5e5); + static const IconData thinDisplayChartUpCircleCurrency = IconData(0xe5e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display Chart Up Circle Dollar icon /// /// https://fontawesome.com/icons/display-chart-up-circle-dollar?style=solid /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData solidDisplayChartUpCircleDollar = IconDataSolid(0xe5e6); + static const IconData solidDisplayChartUpCircleDollar = IconData(0xe5e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Display Chart Up Circle Dollar icon /// /// https://fontawesome.com/icons/display-chart-up-circle-dollar?style=regular /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData displayChartUpCircleDollar = IconDataRegular(0xe5e6); + static const IconData displayChartUpCircleDollar = IconData(0xe5e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Display Chart Up Circle Dollar icon /// /// https://fontawesome.com/icons/display-chart-up-circle-dollar?style=light /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData lightDisplayChartUpCircleDollar = IconDataLight(0xe5e6); + static const IconData lightDisplayChartUpCircleDollar = IconData(0xe5e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Display Chart Up Circle Dollar icon /// /// https://fontawesome.com/icons/display-chart-up-circle-dollar?style=thin /// analytics, chart, currency, measure, money, roi, tracking, trend, computer, display, exchange, graph, investment, monitor, trading - static const IconData thinDisplayChartUpCircleDollar = IconDataThin(0xe5e6); + static const IconData thinDisplayChartUpCircleDollar = IconData(0xe5e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Display Code icon /// /// https://fontawesome.com/icons/display-code?style=solid /// coding, computer, desktop, developing, mysql, sql - static const IconData solidDisplayCode = IconDataSolid(0xe165); + static const IconData solidDisplayCode = IconData(0xe165, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias desktop-code for icon [solidDisplayCode] @Deprecated('Use "solidDisplayCode" instead.') @@ -30007,7 +30007,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-code?style=regular /// coding, computer, desktop, developing, mysql, sql - static const IconData displayCode = IconDataRegular(0xe165); + static const IconData displayCode = IconData(0xe165, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias desktop-code for icon [displayCode] @Deprecated('Use "displayCode" instead.') @@ -30017,7 +30017,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-code?style=light /// coding, computer, desktop, developing, mysql, sql - static const IconData lightDisplayCode = IconDataLight(0xe165); + static const IconData lightDisplayCode = IconData(0xe165, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias desktop-code for icon [lightDisplayCode] @Deprecated('Use "lightDisplayCode" instead.') @@ -30027,7 +30027,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-code?style=thin /// coding, computer, desktop, developing, mysql, sql - static const IconData thinDisplayCode = IconDataThin(0xe165); + static const IconData thinDisplayCode = IconData(0xe165, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias desktop-code for icon [thinDisplayCode] @Deprecated('Use "thinDisplayCode" instead.') @@ -30037,7 +30037,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-medical?style=solid /// computer, desktop, records - static const IconData solidDisplayMedical = IconDataSolid(0xe166); + static const IconData solidDisplayMedical = IconData(0xe166, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias desktop-medical for icon [solidDisplayMedical] @Deprecated('Use "solidDisplayMedical" instead.') @@ -30047,7 +30047,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-medical?style=regular /// computer, desktop, records - static const IconData displayMedical = IconDataRegular(0xe166); + static const IconData displayMedical = IconData(0xe166, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias desktop-medical for icon [displayMedical] @Deprecated('Use "displayMedical" instead.') @@ -30057,7 +30057,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-medical?style=light /// computer, desktop, records - static const IconData lightDisplayMedical = IconDataLight(0xe166); + static const IconData lightDisplayMedical = IconData(0xe166, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias desktop-medical for icon [lightDisplayMedical] @Deprecated('Use "lightDisplayMedical" instead.') @@ -30067,7 +30067,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-medical?style=thin /// computer, desktop, records - static const IconData thinDisplayMedical = IconDataThin(0xe166); + static const IconData thinDisplayMedical = IconData(0xe166, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias desktop-medical for icon [thinDisplayMedical] @Deprecated('Use "thinDisplayMedical" instead.') @@ -30077,7 +30077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-slash?style=solid /// computer, desktop, disabled, disconnect - static const IconData solidDisplaySlash = IconDataSolid(0xe2fa); + static const IconData solidDisplaySlash = IconData(0xe2fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias desktop-slash for icon [solidDisplaySlash] @Deprecated('Use "solidDisplaySlash" instead.') @@ -30087,7 +30087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-slash?style=regular /// computer, desktop, disabled, disconnect - static const IconData displaySlash = IconDataRegular(0xe2fa); + static const IconData displaySlash = IconData(0xe2fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias desktop-slash for icon [displaySlash] @Deprecated('Use "displaySlash" instead.') @@ -30097,7 +30097,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-slash?style=light /// computer, desktop, disabled, disconnect - static const IconData lightDisplaySlash = IconDataLight(0xe2fa); + static const IconData lightDisplaySlash = IconData(0xe2fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias desktop-slash for icon [lightDisplaySlash] @Deprecated('Use "lightDisplaySlash" instead.') @@ -30107,7 +30107,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/display-slash?style=thin /// computer, desktop, disabled, disconnect - static const IconData thinDisplaySlash = IconDataThin(0xe2fa); + static const IconData thinDisplaySlash = IconData(0xe2fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias desktop-slash for icon [thinDisplaySlash] @Deprecated('Use "thinDisplaySlash" instead.') @@ -30118,210 +30118,210 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/distribute-spacing-horizontal?style=solid /// align, line, padding, rectangle, spacing static const IconData solidDistributeSpacingHorizontal = - IconDataSolid(0xe365); + IconData(0xe365, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Distribute Spacing Horizontal icon /// /// https://fontawesome.com/icons/distribute-spacing-horizontal?style=regular /// align, line, padding, rectangle, spacing - static const IconData distributeSpacingHorizontal = IconDataRegular(0xe365); + static const IconData distributeSpacingHorizontal = IconData(0xe365, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Distribute Spacing Horizontal icon /// /// https://fontawesome.com/icons/distribute-spacing-horizontal?style=light /// align, line, padding, rectangle, spacing static const IconData lightDistributeSpacingHorizontal = - IconDataLight(0xe365); + IconData(0xe365, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Distribute Spacing Horizontal icon /// /// https://fontawesome.com/icons/distribute-spacing-horizontal?style=thin /// align, line, padding, rectangle, spacing - static const IconData thinDistributeSpacingHorizontal = IconDataThin(0xe365); + static const IconData thinDistributeSpacingHorizontal = IconData(0xe365, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Distribute Spacing Vertical icon /// /// https://fontawesome.com/icons/distribute-spacing-vertical?style=solid /// align, line, padding, rectangle, spacing - static const IconData solidDistributeSpacingVertical = IconDataSolid(0xe366); + static const IconData solidDistributeSpacingVertical = IconData(0xe366, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Distribute Spacing Vertical icon /// /// https://fontawesome.com/icons/distribute-spacing-vertical?style=regular /// align, line, padding, rectangle, spacing - static const IconData distributeSpacingVertical = IconDataRegular(0xe366); + static const IconData distributeSpacingVertical = IconData(0xe366, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Distribute Spacing Vertical icon /// /// https://fontawesome.com/icons/distribute-spacing-vertical?style=light /// align, line, padding, rectangle, spacing - static const IconData lightDistributeSpacingVertical = IconDataLight(0xe366); + static const IconData lightDistributeSpacingVertical = IconData(0xe366, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Distribute Spacing Vertical icon /// /// https://fontawesome.com/icons/distribute-spacing-vertical?style=thin /// align, line, padding, rectangle, spacing - static const IconData thinDistributeSpacingVertical = IconDataThin(0xe366); + static const IconData thinDistributeSpacingVertical = IconData(0xe366, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ditto icon /// /// https://fontawesome.com/icons/ditto?style=solid /// Quotation Mark, inch, quotation, quote - static const IconData solidDitto = IconDataSolid(0x22); + static const IconData solidDitto = IconData(0x22, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ditto icon /// /// https://fontawesome.com/icons/ditto?style=regular /// Quotation Mark, inch, quotation, quote - static const IconData ditto = IconDataRegular(0x22); + static const IconData ditto = IconData(0x22, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ditto icon /// /// https://fontawesome.com/icons/ditto?style=light /// Quotation Mark, inch, quotation, quote - static const IconData lightDitto = IconDataLight(0x22); + static const IconData lightDitto = IconData(0x22, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ditto icon /// /// https://fontawesome.com/icons/ditto?style=thin /// Quotation Mark, inch, quotation, quote - static const IconData thinDitto = IconDataThin(0x22); + static const IconData thinDitto = IconData(0x22, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Divide icon /// /// https://fontawesome.com/icons/divide?style=solid /// Division Sign, arithmetic, calculus, divide, division, math, sign, ÷ - static const IconData solidDivide = IconDataSolid(0xf529); + static const IconData solidDivide = IconData(0xf529, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Divide icon /// /// https://fontawesome.com/icons/divide?style=regular /// Division Sign, arithmetic, calculus, divide, division, math, sign, ÷ - static const IconData divide = IconDataRegular(0xf529); + static const IconData divide = IconData(0xf529, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Divide icon /// /// https://fontawesome.com/icons/divide?style=light /// Division Sign, arithmetic, calculus, divide, division, math, sign, ÷ - static const IconData lightDivide = IconDataLight(0xf529); + static const IconData lightDivide = IconData(0xf529, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Divide icon /// /// https://fontawesome.com/icons/divide?style=thin /// Division Sign, arithmetic, calculus, divide, division, math, sign, ÷ - static const IconData thinDivide = IconDataThin(0xf529); + static const IconData thinDivide = IconData(0xf529, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dna icon /// /// https://fontawesome.com/icons/dna?style=solid /// biologist, dna, double helix, evolution, gene, genetic, genetics, helix, life, molecule, protein - static const IconData solidDna = IconDataSolid(0xf471); + static const IconData solidDna = IconData(0xf471, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dna icon /// /// https://fontawesome.com/icons/dna?style=regular /// biologist, dna, double helix, evolution, gene, genetic, genetics, helix, life, molecule, protein - static const IconData dna = IconDataRegular(0xf471); + static const IconData dna = IconData(0xf471, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dna icon /// /// https://fontawesome.com/icons/dna?style=light /// biologist, dna, double helix, evolution, gene, genetic, genetics, helix, life, molecule, protein - static const IconData lightDna = IconDataLight(0xf471); + static const IconData lightDna = IconData(0xf471, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dna icon /// /// https://fontawesome.com/icons/dna?style=thin /// biologist, dna, double helix, evolution, gene, genetic, genetics, helix, life, molecule, protein - static const IconData thinDna = IconDataThin(0xf471); + static const IconData thinDna = IconData(0xf471, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Do Not Enter icon /// /// https://fontawesome.com/icons/do-not-enter?style=solid /// 404, closed, not found, traffic, warning - static const IconData solidDoNotEnter = IconDataSolid(0xf5ec); + static const IconData solidDoNotEnter = IconData(0xf5ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Do Not Enter icon /// /// https://fontawesome.com/icons/do-not-enter?style=regular /// 404, closed, not found, traffic, warning - static const IconData doNotEnter = IconDataRegular(0xf5ec); + static const IconData doNotEnter = IconData(0xf5ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Do Not Enter icon /// /// https://fontawesome.com/icons/do-not-enter?style=light /// 404, closed, not found, traffic, warning - static const IconData lightDoNotEnter = IconDataLight(0xf5ec); + static const IconData lightDoNotEnter = IconData(0xf5ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Do Not Enter icon /// /// https://fontawesome.com/icons/do-not-enter?style=thin /// 404, closed, not found, traffic, warning - static const IconData thinDoNotEnter = IconDataThin(0xf5ec); + static const IconData thinDoNotEnter = IconData(0xf5ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands DocHub icon /// /// https://fontawesome.com/icons/dochub?style=brands - static const IconData dochub = IconDataBrands(0xf394); + static const IconData dochub = IconData(0xf394, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Docker icon /// /// https://fontawesome.com/icons/docker?style=brands - static const IconData docker = IconDataBrands(0xf395); + static const IconData docker = IconData(0xf395, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dog icon /// /// https://fontawesome.com/icons/dog?style=solid /// animal, canine, dog, fauna, mammal, pet, pooch, puppy, woof - static const IconData solidDog = IconDataSolid(0xf6d3); + static const IconData solidDog = IconData(0xf6d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dog icon /// /// https://fontawesome.com/icons/dog?style=regular /// animal, canine, dog, fauna, mammal, pet, pooch, puppy, woof - static const IconData dog = IconDataRegular(0xf6d3); + static const IconData dog = IconData(0xf6d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dog icon /// /// https://fontawesome.com/icons/dog?style=light /// animal, canine, dog, fauna, mammal, pet, pooch, puppy, woof - static const IconData lightDog = IconDataLight(0xf6d3); + static const IconData lightDog = IconData(0xf6d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dog icon /// /// https://fontawesome.com/icons/dog?style=thin /// animal, canine, dog, fauna, mammal, pet, pooch, puppy, woof - static const IconData thinDog = IconDataThin(0xf6d3); + static const IconData thinDog = IconData(0xf6d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dog Leashed icon /// /// https://fontawesome.com/icons/dog-leashed?style=solid /// accessibility, animal, blind, canine, fauna, guide, guide dog, mammal, pet, pooch, puppy, walk, woof - static const IconData solidDogLeashed = IconDataSolid(0xf6d4); + static const IconData solidDogLeashed = IconData(0xf6d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dog Leashed icon /// /// https://fontawesome.com/icons/dog-leashed?style=regular /// accessibility, animal, blind, canine, fauna, guide, guide dog, mammal, pet, pooch, puppy, walk, woof - static const IconData dogLeashed = IconDataRegular(0xf6d4); + static const IconData dogLeashed = IconData(0xf6d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dog Leashed icon /// /// https://fontawesome.com/icons/dog-leashed?style=light /// accessibility, animal, blind, canine, fauna, guide, guide dog, mammal, pet, pooch, puppy, walk, woof - static const IconData lightDogLeashed = IconDataLight(0xf6d4); + static const IconData lightDogLeashed = IconData(0xf6d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dog Leashed icon /// /// https://fontawesome.com/icons/dog-leashed?style=thin /// accessibility, animal, blind, canine, fauna, guide, guide dog, mammal, pet, pooch, puppy, walk, woof - static const IconData thinDogLeashed = IconDataThin(0xf6d4); + static const IconData thinDogLeashed = IconData(0xf6d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dollar Sign icon /// /// https://fontawesome.com/icons/dollar-sign?style=solid /// Dollar Sign, coupon, currency, dollar, heavy dollar sign, investment, money, premium, revenue, salary - static const IconData solidDollarSign = IconDataSolid(0x24); + static const IconData solidDollarSign = IconData(0x24, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dollar for icon [solidDollarSign] @Deprecated('Use "solidDollarSign" instead.') @@ -30335,7 +30335,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dollar-sign?style=regular /// Dollar Sign, coupon, currency, dollar, heavy dollar sign, investment, money, premium, revenue, salary - static const IconData dollarSign = IconDataRegular(0x24); + static const IconData dollarSign = IconData(0x24, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dollar for icon [dollarSign] @Deprecated('Use "dollarSign" instead.') @@ -30349,7 +30349,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dollar-sign?style=light /// Dollar Sign, coupon, currency, dollar, heavy dollar sign, investment, money, premium, revenue, salary - static const IconData lightDollarSign = IconDataLight(0x24); + static const IconData lightDollarSign = IconData(0x24, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dollar for icon [lightDollarSign] @Deprecated('Use "lightDollarSign" instead.') @@ -30363,7 +30363,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dollar-sign?style=thin /// Dollar Sign, coupon, currency, dollar, heavy dollar sign, investment, money, premium, revenue, salary - static const IconData thinDollarSign = IconDataThin(0x24); + static const IconData thinDollarSign = IconData(0x24, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dollar for icon [thinDollarSign] @Deprecated('Use "thinDollarSign" instead.') @@ -30377,7 +30377,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dolly?style=solid /// carry, shipping, transport - static const IconData solidDolly = IconDataSolid(0xf472); + static const IconData solidDolly = IconData(0xf472, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dolly-box for icon [solidDolly] @Deprecated('Use "solidDolly" instead.') @@ -30387,7 +30387,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dolly?style=regular /// carry, shipping, transport - static const IconData dolly = IconDataRegular(0xf472); + static const IconData dolly = IconData(0xf472, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dolly-box for icon [dolly] @Deprecated('Use "dolly" instead.') @@ -30397,7 +30397,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dolly?style=light /// carry, shipping, transport - static const IconData lightDolly = IconDataLight(0xf472); + static const IconData lightDolly = IconData(0xf472, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dolly-box for icon [lightDolly] @Deprecated('Use "lightDolly" instead.') @@ -30407,7 +30407,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dolly?style=thin /// carry, shipping, transport - static const IconData thinDolly = IconDataThin(0xf472); + static const IconData thinDolly = IconData(0xf472, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dolly-box for icon [thinDolly] @Deprecated('Use "thinDolly" instead.') @@ -30417,79 +30417,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dolly-empty?style=solid /// carry, inventory, shipping, transport - static const IconData solidDollyEmpty = IconDataSolid(0xf473); + static const IconData solidDollyEmpty = IconData(0xf473, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dolly Empty icon /// /// https://fontawesome.com/icons/dolly-empty?style=regular /// carry, inventory, shipping, transport - static const IconData dollyEmpty = IconDataRegular(0xf473); + static const IconData dollyEmpty = IconData(0xf473, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dolly Empty icon /// /// https://fontawesome.com/icons/dolly-empty?style=light /// carry, inventory, shipping, transport - static const IconData lightDollyEmpty = IconDataLight(0xf473); + static const IconData lightDollyEmpty = IconData(0xf473, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dolly Empty icon /// /// https://fontawesome.com/icons/dolly-empty?style=thin /// carry, inventory, shipping, transport - static const IconData thinDollyEmpty = IconDataThin(0xf473); + static const IconData thinDollyEmpty = IconData(0xf473, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dolphin icon /// /// https://fontawesome.com/icons/dolphin?style=solid /// aquarium, dolphin, fish, flipper, mammal, marine, maritime, porpoise - static const IconData solidDolphin = IconDataSolid(0xe168); + static const IconData solidDolphin = IconData(0xe168, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dolphin icon /// /// https://fontawesome.com/icons/dolphin?style=regular /// aquarium, dolphin, fish, flipper, mammal, marine, maritime, porpoise - static const IconData dolphin = IconDataRegular(0xe168); + static const IconData dolphin = IconData(0xe168, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dolphin icon /// /// https://fontawesome.com/icons/dolphin?style=light /// aquarium, dolphin, fish, flipper, mammal, marine, maritime, porpoise - static const IconData lightDolphin = IconDataLight(0xe168); + static const IconData lightDolphin = IconData(0xe168, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dolphin icon /// /// https://fontawesome.com/icons/dolphin?style=thin /// aquarium, dolphin, fish, flipper, mammal, marine, maritime, porpoise - static const IconData thinDolphin = IconDataThin(0xe168); + static const IconData thinDolphin = IconData(0xe168, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dong Sign icon /// /// https://fontawesome.com/icons/dong-sign?style=solid /// Dong Sign, currency - static const IconData solidDongSign = IconDataSolid(0xe169); + static const IconData solidDongSign = IconData(0xe169, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dong Sign icon /// /// https://fontawesome.com/icons/dong-sign?style=regular /// Dong Sign, currency - static const IconData dongSign = IconDataRegular(0xe169); + static const IconData dongSign = IconData(0xe169, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dong Sign icon /// /// https://fontawesome.com/icons/dong-sign?style=light /// Dong Sign, currency - static const IconData lightDongSign = IconDataLight(0xe169); + static const IconData lightDongSign = IconData(0xe169, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dong Sign icon /// /// https://fontawesome.com/icons/dong-sign?style=thin /// Dong Sign, currency - static const IconData thinDongSign = IconDataThin(0xe169); + static const IconData thinDongSign = IconData(0xe169, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Donut icon /// /// https://fontawesome.com/icons/donut?style=solid /// donut, doughnut, frosting, homer simpson, jimmies, sprinkles - static const IconData solidDonut = IconDataSolid(0xe406); + static const IconData solidDonut = IconData(0xe406, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias doughnut for icon [solidDonut] @Deprecated('Use "solidDonut" instead.') @@ -30499,7 +30499,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/donut?style=regular /// donut, doughnut, frosting, homer simpson, jimmies, sprinkles - static const IconData donut = IconDataRegular(0xe406); + static const IconData donut = IconData(0xe406, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias doughnut for icon [donut] @Deprecated('Use "donut" instead.') @@ -30509,7 +30509,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/donut?style=light /// donut, doughnut, frosting, homer simpson, jimmies, sprinkles - static const IconData lightDonut = IconDataLight(0xe406); + static const IconData lightDonut = IconData(0xe406, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias doughnut for icon [lightDonut] @Deprecated('Use "lightDonut" instead.') @@ -30519,7 +30519,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/donut?style=thin /// donut, doughnut, frosting, homer simpson, jimmies, sprinkles - static const IconData thinDonut = IconDataThin(0xe406); + static const IconData thinDonut = IconData(0xe406, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias doughnut for icon [thinDonut] @Deprecated('Use "thinDonut" instead.') @@ -30529,79 +30529,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/door-closed?style=solid /// doo, door, enter, exit, locked, privacy - static const IconData solidDoorClosed = IconDataSolid(0xf52a); + static const IconData solidDoorClosed = IconData(0xf52a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Door Closed icon /// /// https://fontawesome.com/icons/door-closed?style=regular /// doo, door, enter, exit, locked, privacy - static const IconData doorClosed = IconDataRegular(0xf52a); + static const IconData doorClosed = IconData(0xf52a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Door Closed icon /// /// https://fontawesome.com/icons/door-closed?style=light /// doo, door, enter, exit, locked, privacy - static const IconData lightDoorClosed = IconDataLight(0xf52a); + static const IconData lightDoorClosed = IconData(0xf52a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Door Closed icon /// /// https://fontawesome.com/icons/door-closed?style=thin /// doo, door, enter, exit, locked, privacy - static const IconData thinDoorClosed = IconDataThin(0xf52a); + static const IconData thinDoorClosed = IconData(0xf52a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Door Open icon /// /// https://fontawesome.com/icons/door-open?style=solid /// enter, exit, welcome - static const IconData solidDoorOpen = IconDataSolid(0xf52b); + static const IconData solidDoorOpen = IconData(0xf52b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Door Open icon /// /// https://fontawesome.com/icons/door-open?style=regular /// enter, exit, welcome - static const IconData doorOpen = IconDataRegular(0xf52b); + static const IconData doorOpen = IconData(0xf52b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Door Open icon /// /// https://fontawesome.com/icons/door-open?style=light /// enter, exit, welcome - static const IconData lightDoorOpen = IconDataLight(0xf52b); + static const IconData lightDoorOpen = IconData(0xf52b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Door Open icon /// /// https://fontawesome.com/icons/door-open?style=thin /// enter, exit, welcome - static const IconData thinDoorOpen = IconDataThin(0xf52b); + static const IconData thinDoorOpen = IconData(0xf52b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dove icon /// /// https://fontawesome.com/icons/dove?style=solid /// bird, dove, fauna, fly, flying, peace, war - static const IconData solidDove = IconDataSolid(0xf4ba); + static const IconData solidDove = IconData(0xf4ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dove icon /// /// https://fontawesome.com/icons/dove?style=regular /// bird, dove, fauna, fly, flying, peace, war - static const IconData dove = IconDataRegular(0xf4ba); + static const IconData dove = IconData(0xf4ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dove icon /// /// https://fontawesome.com/icons/dove?style=light /// bird, dove, fauna, fly, flying, peace, war - static const IconData lightDove = IconDataLight(0xf4ba); + static const IconData lightDove = IconData(0xf4ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dove icon /// /// https://fontawesome.com/icons/dove?style=thin /// bird, dove, fauna, fly, flying, peace, war - static const IconData thinDove = IconDataThin(0xf4ba); + static const IconData thinDove = IconData(0xf4ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down icon /// /// https://fontawesome.com/icons/down?style=solid /// download, insert - static const IconData solidDown = IconDataSolid(0xf354); + static const IconData solidDown = IconData(0xf354, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-down for icon [solidDown] @Deprecated('Use "solidDown" instead.') @@ -30611,7 +30611,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down?style=regular /// download, insert - static const IconData down = IconDataRegular(0xf354); + static const IconData down = IconData(0xf354, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-down for icon [down] @Deprecated('Use "down" instead.') @@ -30621,7 +30621,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down?style=light /// download, insert - static const IconData lightDown = IconDataLight(0xf354); + static const IconData lightDown = IconData(0xf354, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-down for icon [lightDown] @Deprecated('Use "lightDown" instead.') @@ -30631,7 +30631,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down?style=thin /// download, insert - static const IconData thinDown = IconDataThin(0xf354); + static const IconData thinDown = IconData(0xf354, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-down for icon [thinDown] @Deprecated('Use "thinDown" instead.') @@ -30641,31 +30641,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-from-dotted-line?style=solid /// download, export, insert, transfer - static const IconData solidDownFromDottedLine = IconDataSolid(0xe407); + static const IconData solidDownFromDottedLine = IconData(0xe407, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Down From Dotted Line icon /// /// https://fontawesome.com/icons/down-from-dotted-line?style=regular /// download, export, insert, transfer - static const IconData downFromDottedLine = IconDataRegular(0xe407); + static const IconData downFromDottedLine = IconData(0xe407, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Down From Dotted Line icon /// /// https://fontawesome.com/icons/down-from-dotted-line?style=light /// download, export, insert, transfer - static const IconData lightDownFromDottedLine = IconDataLight(0xe407); + static const IconData lightDownFromDottedLine = IconData(0xe407, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Down From Dotted Line icon /// /// https://fontawesome.com/icons/down-from-dotted-line?style=thin /// download, export, insert, transfer - static const IconData thinDownFromDottedLine = IconDataThin(0xe407); + static const IconData thinDownFromDottedLine = IconData(0xe407, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down From Line icon /// /// https://fontawesome.com/icons/down-from-line?style=solid /// download, export, insert, transfer - static const IconData solidDownFromLine = IconDataSolid(0xf349); + static const IconData solidDownFromLine = IconData(0xf349, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-top for icon [solidDownFromLine] @Deprecated('Use "solidDownFromLine" instead.') @@ -30675,7 +30675,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-from-line?style=regular /// download, export, insert, transfer - static const IconData downFromLine = IconDataRegular(0xf349); + static const IconData downFromLine = IconData(0xf349, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-top for icon [downFromLine] @Deprecated('Use "downFromLine" instead.') @@ -30685,7 +30685,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-from-line?style=light /// download, export, insert, transfer - static const IconData lightDownFromLine = IconDataLight(0xf349); + static const IconData lightDownFromLine = IconData(0xf349, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-top for icon [lightDownFromLine] @Deprecated('Use "lightDownFromLine" instead.') @@ -30695,7 +30695,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-from-line?style=thin /// download, export, insert, transfer - static const IconData thinDownFromLine = IconDataThin(0xf349); + static const IconData thinDownFromLine = IconData(0xf349, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-top for icon [thinDownFromLine] @Deprecated('Use "thinDownFromLine" instead.') @@ -30705,31 +30705,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-left?style=solid /// South West Black Arrow, diagonal, direction, southwest - static const IconData solidDownLeft = IconDataSolid(0xe16a); + static const IconData solidDownLeft = IconData(0xe16a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Down Left icon /// /// https://fontawesome.com/icons/down-left?style=regular /// South West Black Arrow, diagonal, direction, southwest - static const IconData downLeft = IconDataRegular(0xe16a); + static const IconData downLeft = IconData(0xe16a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Down Left icon /// /// https://fontawesome.com/icons/down-left?style=light /// South West Black Arrow, diagonal, direction, southwest - static const IconData lightDownLeft = IconDataLight(0xe16a); + static const IconData lightDownLeft = IconData(0xe16a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Down Left icon /// /// https://fontawesome.com/icons/down-left?style=thin /// South West Black Arrow, diagonal, direction, southwest - static const IconData thinDownLeft = IconDataThin(0xe16a); + static const IconData thinDownLeft = IconData(0xe16a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down Left And Up Right To Center icon /// /// https://fontawesome.com/icons/down-left-and-up-right-to-center?style=solid /// scale, collapse, fullscreen, minimize, move, resize, shrink, size, smaller - static const IconData solidDownLeftAndUpRightToCenter = IconDataSolid(0xf422); + static const IconData solidDownLeftAndUpRightToCenter = IconData(0xf422, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias compress-alt for icon [solidDownLeftAndUpRightToCenter] @Deprecated('Use "solidDownLeftAndUpRightToCenter" instead.') @@ -30739,7 +30739,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-left-and-up-right-to-center?style=regular /// scale, collapse, fullscreen, minimize, move, resize, shrink, size, smaller - static const IconData downLeftAndUpRightToCenter = IconDataRegular(0xf422); + static const IconData downLeftAndUpRightToCenter = IconData(0xf422, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias compress-alt for icon [downLeftAndUpRightToCenter] @Deprecated('Use "downLeftAndUpRightToCenter" instead.') @@ -30749,7 +30749,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-left-and-up-right-to-center?style=light /// scale, collapse, fullscreen, minimize, move, resize, shrink, size, smaller - static const IconData lightDownLeftAndUpRightToCenter = IconDataLight(0xf422); + static const IconData lightDownLeftAndUpRightToCenter = IconData(0xf422, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias compress-alt for icon [lightDownLeftAndUpRightToCenter] @Deprecated('Use "lightDownLeftAndUpRightToCenter" instead.') @@ -30759,7 +30759,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-left-and-up-right-to-center?style=thin /// scale, collapse, fullscreen, minimize, move, resize, shrink, size, smaller - static const IconData thinDownLeftAndUpRightToCenter = IconDataThin(0xf422); + static const IconData thinDownLeftAndUpRightToCenter = IconData(0xf422, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias compress-alt for icon [thinDownLeftAndUpRightToCenter] @Deprecated('Use "thinDownLeftAndUpRightToCenter" instead.') @@ -30769,7 +30769,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-long?style=solid /// download, long-arrow-down - static const IconData solidDownLong = IconDataSolid(0xf309); + static const IconData solidDownLong = IconData(0xf309, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-down for icon [solidDownLong] @Deprecated('Use "solidDownLong" instead.') @@ -30779,7 +30779,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-long?style=regular /// download, long-arrow-down - static const IconData downLong = IconDataRegular(0xf309); + static const IconData downLong = IconData(0xf309, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-down for icon [downLong] @Deprecated('Use "downLong" instead.') @@ -30789,7 +30789,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-long?style=light /// download, long-arrow-down - static const IconData lightDownLong = IconDataLight(0xf309); + static const IconData lightDownLong = IconData(0xf309, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-down for icon [lightDownLong] @Deprecated('Use "lightDownLong" instead.') @@ -30799,7 +30799,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-long?style=thin /// download, long-arrow-down - static const IconData thinDownLong = IconDataThin(0xf309); + static const IconData thinDownLong = IconData(0xf309, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-down for icon [thinDownLong] @Deprecated('Use "thinDownLong" instead.') @@ -30809,79 +30809,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-right?style=solid /// South East Black Arrow, diagonal, direction, southeast - static const IconData solidDownRight = IconDataSolid(0xe16b); + static const IconData solidDownRight = IconData(0xe16b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Down Right icon /// /// https://fontawesome.com/icons/down-right?style=regular /// South East Black Arrow, diagonal, direction, southeast - static const IconData downRight = IconDataRegular(0xe16b); + static const IconData downRight = IconData(0xe16b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Down Right icon /// /// https://fontawesome.com/icons/down-right?style=light /// South East Black Arrow, diagonal, direction, southeast - static const IconData lightDownRight = IconDataLight(0xe16b); + static const IconData lightDownRight = IconData(0xe16b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Down Right icon /// /// https://fontawesome.com/icons/down-right?style=thin /// South East Black Arrow, diagonal, direction, southeast - static const IconData thinDownRight = IconDataThin(0xe16b); + static const IconData thinDownRight = IconData(0xe16b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down To Bracket icon /// /// https://fontawesome.com/icons/down-to-bracket?style=solid /// download, enter, insert, save, share, transfer - static const IconData solidDownToBracket = IconDataSolid(0xe4e7); + static const IconData solidDownToBracket = IconData(0xe4e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Down To Bracket icon /// /// https://fontawesome.com/icons/down-to-bracket?style=regular /// download, enter, insert, save, share, transfer - static const IconData downToBracket = IconDataRegular(0xe4e7); + static const IconData downToBracket = IconData(0xe4e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Down To Bracket icon /// /// https://fontawesome.com/icons/down-to-bracket?style=light /// download, enter, insert, save, share, transfer - static const IconData lightDownToBracket = IconDataLight(0xe4e7); + static const IconData lightDownToBracket = IconData(0xe4e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Down To Bracket icon /// /// https://fontawesome.com/icons/down-to-bracket?style=thin /// download, enter, insert, save, share, transfer - static const IconData thinDownToBracket = IconDataThin(0xe4e7); + static const IconData thinDownToBracket = IconData(0xe4e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down To Dotted Line icon /// /// https://fontawesome.com/icons/down-to-dotted-line?style=solid /// download, export, insert, transfer - static const IconData solidDownToDottedLine = IconDataSolid(0xe408); + static const IconData solidDownToDottedLine = IconData(0xe408, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Down To Dotted Line icon /// /// https://fontawesome.com/icons/down-to-dotted-line?style=regular /// download, export, insert, transfer - static const IconData downToDottedLine = IconDataRegular(0xe408); + static const IconData downToDottedLine = IconData(0xe408, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Down To Dotted Line icon /// /// https://fontawesome.com/icons/down-to-dotted-line?style=light /// download, export, insert, transfer - static const IconData lightDownToDottedLine = IconDataLight(0xe408); + static const IconData lightDownToDottedLine = IconData(0xe408, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Down To Dotted Line icon /// /// https://fontawesome.com/icons/down-to-dotted-line?style=thin /// download, export, insert, transfer - static const IconData thinDownToDottedLine = IconDataThin(0xe408); + static const IconData thinDownToDottedLine = IconData(0xe408, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Down To Line icon /// /// https://fontawesome.com/icons/down-to-line?style=solid /// download, export, insert, transfer - static const IconData solidDownToLine = IconDataSolid(0xf34a); + static const IconData solidDownToLine = IconData(0xf34a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-bottom for icon [solidDownToLine] @Deprecated('Use "solidDownToLine" instead.') @@ -30891,7 +30891,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-to-line?style=regular /// download, export, insert, transfer - static const IconData downToLine = IconDataRegular(0xf34a); + static const IconData downToLine = IconData(0xf34a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-bottom for icon [downToLine] @Deprecated('Use "downToLine" instead.') @@ -30901,7 +30901,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-to-line?style=light /// download, export, insert, transfer - static const IconData lightDownToLine = IconDataLight(0xf34a); + static const IconData lightDownToLine = IconData(0xf34a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-bottom for icon [lightDownToLine] @Deprecated('Use "lightDownToLine" instead.') @@ -30911,7 +30911,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/down-to-line?style=thin /// download, export, insert, transfer - static const IconData thinDownToLine = IconDataThin(0xf34a); + static const IconData thinDownToLine = IconData(0xf34a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-bottom for icon [thinDownToLine] @Deprecated('Use "thinDownToLine" instead.') @@ -30921,185 +30921,185 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/download?style=solid /// export, hard drive, insert, save, transfer - static const IconData solidDownload = IconDataSolid(0xf019); + static const IconData solidDownload = IconData(0xf019, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Download icon /// /// https://fontawesome.com/icons/download?style=regular /// export, hard drive, insert, save, transfer - static const IconData download = IconDataRegular(0xf019); + static const IconData download = IconData(0xf019, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Download icon /// /// https://fontawesome.com/icons/download?style=light /// export, hard drive, insert, save, transfer - static const IconData lightDownload = IconDataLight(0xf019); + static const IconData lightDownload = IconData(0xf019, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Download icon /// /// https://fontawesome.com/icons/download?style=thin /// export, hard drive, insert, save, transfer - static const IconData thinDownload = IconDataThin(0xf019); + static const IconData thinDownload = IconData(0xf019, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Draft2digital icon /// /// https://fontawesome.com/icons/draft2digital?style=brands - static const IconData draft2digital = IconDataBrands(0xf396); + static const IconData draft2digital = IconData(0xf396, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dragon icon /// /// https://fontawesome.com/icons/dragon?style=solid /// Dungeons & Dragons, d&d, dnd, dragon, fairy tale, fantasy, fire, lizard, serpent - static const IconData solidDragon = IconDataSolid(0xf6d5); + static const IconData solidDragon = IconData(0xf6d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dragon icon /// /// https://fontawesome.com/icons/dragon?style=regular /// Dungeons & Dragons, d&d, dnd, dragon, fairy tale, fantasy, fire, lizard, serpent - static const IconData dragon = IconDataRegular(0xf6d5); + static const IconData dragon = IconData(0xf6d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dragon icon /// /// https://fontawesome.com/icons/dragon?style=light /// Dungeons & Dragons, d&d, dnd, dragon, fairy tale, fantasy, fire, lizard, serpent - static const IconData lightDragon = IconDataLight(0xf6d5); + static const IconData lightDragon = IconData(0xf6d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dragon icon /// /// https://fontawesome.com/icons/dragon?style=thin /// Dungeons & Dragons, d&d, dnd, dragon, fairy tale, fantasy, fire, lizard, serpent - static const IconData thinDragon = IconDataThin(0xf6d5); + static const IconData thinDragon = IconData(0xf6d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Draw Circle icon /// /// https://fontawesome.com/icons/draw-circle?style=solid /// anchors, lines, object, render, shape - static const IconData solidDrawCircle = IconDataSolid(0xf5ed); + static const IconData solidDrawCircle = IconData(0xf5ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Draw Circle icon /// /// https://fontawesome.com/icons/draw-circle?style=regular /// anchors, lines, object, render, shape - static const IconData drawCircle = IconDataRegular(0xf5ed); + static const IconData drawCircle = IconData(0xf5ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Draw Circle icon /// /// https://fontawesome.com/icons/draw-circle?style=light /// anchors, lines, object, render, shape - static const IconData lightDrawCircle = IconDataLight(0xf5ed); + static const IconData lightDrawCircle = IconData(0xf5ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Draw Circle icon /// /// https://fontawesome.com/icons/draw-circle?style=thin /// anchors, lines, object, render, shape - static const IconData thinDrawCircle = IconDataThin(0xf5ed); + static const IconData thinDrawCircle = IconData(0xf5ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Draw Polygon icon /// /// https://fontawesome.com/icons/draw-polygon?style=solid /// anchors, lines, object, render, shape - static const IconData solidDrawPolygon = IconDataSolid(0xf5ee); + static const IconData solidDrawPolygon = IconData(0xf5ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Draw Polygon icon /// /// https://fontawesome.com/icons/draw-polygon?style=regular /// anchors, lines, object, render, shape - static const IconData drawPolygon = IconDataRegular(0xf5ee); + static const IconData drawPolygon = IconData(0xf5ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Draw Polygon icon /// /// https://fontawesome.com/icons/draw-polygon?style=light /// anchors, lines, object, render, shape - static const IconData lightDrawPolygon = IconDataLight(0xf5ee); + static const IconData lightDrawPolygon = IconData(0xf5ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Draw Polygon icon /// /// https://fontawesome.com/icons/draw-polygon?style=thin /// anchors, lines, object, render, shape - static const IconData thinDrawPolygon = IconDataThin(0xf5ee); + static const IconData thinDrawPolygon = IconData(0xf5ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Draw Square icon /// /// https://fontawesome.com/icons/draw-square?style=solid /// anchors, lines, object, render, shape - static const IconData solidDrawSquare = IconDataSolid(0xf5ef); + static const IconData solidDrawSquare = IconData(0xf5ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Draw Square icon /// /// https://fontawesome.com/icons/draw-square?style=regular /// anchors, lines, object, render, shape - static const IconData drawSquare = IconDataRegular(0xf5ef); + static const IconData drawSquare = IconData(0xf5ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Draw Square icon /// /// https://fontawesome.com/icons/draw-square?style=light /// anchors, lines, object, render, shape - static const IconData lightDrawSquare = IconDataLight(0xf5ef); + static const IconData lightDrawSquare = IconData(0xf5ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Draw Square icon /// /// https://fontawesome.com/icons/draw-square?style=thin /// anchors, lines, object, render, shape - static const IconData thinDrawSquare = IconDataThin(0xf5ef); + static const IconData thinDrawSquare = IconData(0xf5ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dreidel icon /// /// https://fontawesome.com/icons/dreidel?style=solid /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData solidDreidel = IconDataSolid(0xf792); + static const IconData solidDreidel = IconData(0xf792, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dreidel icon /// /// https://fontawesome.com/icons/dreidel?style=regular /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData dreidel = IconDataRegular(0xf792); + static const IconData dreidel = IconData(0xf792, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dreidel icon /// /// https://fontawesome.com/icons/dreidel?style=light /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData lightDreidel = IconDataLight(0xf792); + static const IconData lightDreidel = IconData(0xf792, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dreidel icon /// /// https://fontawesome.com/icons/dreidel?style=thin /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData thinDreidel = IconDataThin(0xf792); + static const IconData thinDreidel = IconData(0xf792, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Dribbble icon /// /// https://fontawesome.com/icons/dribbble?style=brands - static const IconData dribbble = IconDataBrands(0xf17d); + static const IconData dribbble = IconData(0xf17d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Drone icon /// /// https://fontawesome.com/icons/drone?style=solid /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData solidDrone = IconDataSolid(0xf85f); + static const IconData solidDrone = IconData(0xf85f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Drone icon /// /// https://fontawesome.com/icons/drone?style=regular /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData drone = IconDataRegular(0xf85f); + static const IconData drone = IconData(0xf85f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Drone icon /// /// https://fontawesome.com/icons/drone?style=light /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData lightDrone = IconDataLight(0xf85f); + static const IconData lightDrone = IconData(0xf85f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Drone icon /// /// https://fontawesome.com/icons/drone?style=thin /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData thinDrone = IconDataThin(0xf85f); + static const IconData thinDrone = IconData(0xf85f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Drone Front icon /// /// https://fontawesome.com/icons/drone-front?style=solid /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData solidDroneFront = IconDataSolid(0xf860); + static const IconData solidDroneFront = IconData(0xf860, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias drone-alt for icon [solidDroneFront] @Deprecated('Use "solidDroneFront" instead.') @@ -31109,7 +31109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/drone-front?style=regular /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData droneFront = IconDataRegular(0xf860); + static const IconData droneFront = IconData(0xf860, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias drone-alt for icon [droneFront] @Deprecated('Use "droneFront" instead.') @@ -31119,7 +31119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/drone-front?style=light /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData lightDroneFront = IconDataLight(0xf860); + static const IconData lightDroneFront = IconData(0xf860, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias drone-alt for icon [lightDroneFront] @Deprecated('Use "lightDroneFront" instead.') @@ -31129,7 +31129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/drone-front?style=thin /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData thinDroneFront = IconDataThin(0xf860); + static const IconData thinDroneFront = IconData(0xf860, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias drone-alt for icon [thinDroneFront] @Deprecated('Use "thinDroneFront" instead.') @@ -31138,13 +31138,13 @@ class FontAwesomeIcons { /// Brands Dropbox icon /// /// https://fontawesome.com/icons/dropbox?style=brands - static const IconData dropbox = IconDataBrands(0xf16b); + static const IconData dropbox = IconData(0xf16b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Droplet icon /// /// https://fontawesome.com/icons/droplet?style=solid /// blood, cold, color, comic, drop, droplet, raindrop, sweat, waterdrop - static const IconData solidDroplet = IconDataSolid(0xf043); + static const IconData solidDroplet = IconData(0xf043, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tint for icon [solidDroplet] @Deprecated('Use "solidDroplet" instead.') @@ -31154,7 +31154,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet?style=regular /// blood, cold, color, comic, drop, droplet, raindrop, sweat, waterdrop - static const IconData droplet = IconDataRegular(0xf043); + static const IconData droplet = IconData(0xf043, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tint for icon [droplet] @Deprecated('Use "droplet" instead.') @@ -31164,7 +31164,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet?style=light /// blood, cold, color, comic, drop, droplet, raindrop, sweat, waterdrop - static const IconData lightDroplet = IconDataLight(0xf043); + static const IconData lightDroplet = IconData(0xf043, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tint for icon [lightDroplet] @Deprecated('Use "lightDroplet" instead.') @@ -31174,7 +31174,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet?style=thin /// blood, cold, color, comic, drop, droplet, raindrop, sweat, waterdrop - static const IconData thinDroplet = IconDataThin(0xf043); + static const IconData thinDroplet = IconData(0xf043, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tint for icon [thinDroplet] @Deprecated('Use "thinDroplet" instead.') @@ -31184,7 +31184,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-degree?style=solid /// air, fog, humidity, temperature, water - static const IconData solidDropletDegree = IconDataSolid(0xf748); + static const IconData solidDropletDegree = IconData(0xf748, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dewpoint for icon [solidDropletDegree] @Deprecated('Use "solidDropletDegree" instead.') @@ -31194,7 +31194,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-degree?style=regular /// air, fog, humidity, temperature, water - static const IconData dropletDegree = IconDataRegular(0xf748); + static const IconData dropletDegree = IconData(0xf748, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dewpoint for icon [dropletDegree] @Deprecated('Use "dropletDegree" instead.') @@ -31204,7 +31204,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-degree?style=light /// air, fog, humidity, temperature, water - static const IconData lightDropletDegree = IconDataLight(0xf748); + static const IconData lightDropletDegree = IconData(0xf748, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dewpoint for icon [lightDropletDegree] @Deprecated('Use "lightDropletDegree" instead.') @@ -31214,7 +31214,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-degree?style=thin /// air, fog, humidity, temperature, water - static const IconData thinDropletDegree = IconDataThin(0xf748); + static const IconData thinDropletDegree = IconData(0xf748, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dewpoint for icon [thinDropletDegree] @Deprecated('Use "thinDropletDegree" instead.') @@ -31224,7 +31224,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-percent?style=solid /// blood, evaporation, fog, oxygen, precipitation, rain - static const IconData solidDropletPercent = IconDataSolid(0xf750); + static const IconData solidDropletPercent = IconData(0xf750, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias humidity for icon [solidDropletPercent] @Deprecated('Use "solidDropletPercent" instead.') @@ -31234,7 +31234,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-percent?style=regular /// blood, evaporation, fog, oxygen, precipitation, rain - static const IconData dropletPercent = IconDataRegular(0xf750); + static const IconData dropletPercent = IconData(0xf750, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias humidity for icon [dropletPercent] @Deprecated('Use "dropletPercent" instead.') @@ -31244,7 +31244,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-percent?style=light /// blood, evaporation, fog, oxygen, precipitation, rain - static const IconData lightDropletPercent = IconDataLight(0xf750); + static const IconData lightDropletPercent = IconData(0xf750, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias humidity for icon [lightDropletPercent] @Deprecated('Use "lightDropletPercent" instead.') @@ -31254,7 +31254,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-percent?style=thin /// blood, evaporation, fog, oxygen, precipitation, rain - static const IconData thinDropletPercent = IconDataThin(0xf750); + static const IconData thinDropletPercent = IconData(0xf750, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias humidity for icon [thinDropletPercent] @Deprecated('Use "thinDropletPercent" instead.') @@ -31264,7 +31264,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-slash?style=solid /// blood, color, disabled, drop, droplet, raindrop, waterdrop - static const IconData solidDropletSlash = IconDataSolid(0xf5c7); + static const IconData solidDropletSlash = IconData(0xf5c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tint-slash for icon [solidDropletSlash] @Deprecated('Use "solidDropletSlash" instead.') @@ -31274,7 +31274,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-slash?style=regular /// blood, color, disabled, drop, droplet, raindrop, waterdrop - static const IconData dropletSlash = IconDataRegular(0xf5c7); + static const IconData dropletSlash = IconData(0xf5c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tint-slash for icon [dropletSlash] @Deprecated('Use "dropletSlash" instead.') @@ -31284,7 +31284,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-slash?style=light /// blood, color, disabled, drop, droplet, raindrop, waterdrop - static const IconData lightDropletSlash = IconDataLight(0xf5c7); + static const IconData lightDropletSlash = IconData(0xf5c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tint-slash for icon [lightDropletSlash] @Deprecated('Use "lightDropletSlash" instead.') @@ -31294,7 +31294,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/droplet-slash?style=thin /// blood, color, disabled, drop, droplet, raindrop, waterdrop - static const IconData thinDropletSlash = IconDataThin(0xf5c7); + static const IconData thinDropletSlash = IconData(0xf5c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tint-slash for icon [thinDropletSlash] @Deprecated('Use "thinDropletSlash" instead.') @@ -31304,132 +31304,132 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/drum?style=solid /// drum, drumsticks, instrument, music, percussion, snare, sound - static const IconData solidDrum = IconDataSolid(0xf569); + static const IconData solidDrum = IconData(0xf569, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Drum icon /// /// https://fontawesome.com/icons/drum?style=regular /// drum, drumsticks, instrument, music, percussion, snare, sound - static const IconData drum = IconDataRegular(0xf569); + static const IconData drum = IconData(0xf569, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Drum icon /// /// https://fontawesome.com/icons/drum?style=light /// drum, drumsticks, instrument, music, percussion, snare, sound - static const IconData lightDrum = IconDataLight(0xf569); + static const IconData lightDrum = IconData(0xf569, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Drum icon /// /// https://fontawesome.com/icons/drum?style=thin /// drum, drumsticks, instrument, music, percussion, snare, sound - static const IconData thinDrum = IconDataThin(0xf569); + static const IconData thinDrum = IconData(0xf569, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Drum Steelpan icon /// /// https://fontawesome.com/icons/drum-steelpan?style=solid /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconData solidDrumSteelpan = IconDataSolid(0xf56a); + static const IconData solidDrumSteelpan = IconData(0xf56a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Drum Steelpan icon /// /// https://fontawesome.com/icons/drum-steelpan?style=regular /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconData drumSteelpan = IconDataRegular(0xf56a); + static const IconData drumSteelpan = IconData(0xf56a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Drum Steelpan icon /// /// https://fontawesome.com/icons/drum-steelpan?style=light /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconData lightDrumSteelpan = IconDataLight(0xf56a); + static const IconData lightDrumSteelpan = IconData(0xf56a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Drum Steelpan icon /// /// https://fontawesome.com/icons/drum-steelpan?style=thin /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconData thinDrumSteelpan = IconDataThin(0xf56a); + static const IconData thinDrumSteelpan = IconData(0xf56a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Drumstick icon /// /// https://fontawesome.com/icons/drumstick?style=solid /// bone, chicken, drumstick, leg, meat, poultry, poultry leg, turkey - static const IconData solidDrumstick = IconDataSolid(0xf6d6); + static const IconData solidDrumstick = IconData(0xf6d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Drumstick icon /// /// https://fontawesome.com/icons/drumstick?style=regular /// bone, chicken, drumstick, leg, meat, poultry, poultry leg, turkey - static const IconData drumstick = IconDataRegular(0xf6d6); + static const IconData drumstick = IconData(0xf6d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Drumstick icon /// /// https://fontawesome.com/icons/drumstick?style=light /// bone, chicken, drumstick, leg, meat, poultry, poultry leg, turkey - static const IconData lightDrumstick = IconDataLight(0xf6d6); + static const IconData lightDrumstick = IconData(0xf6d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Drumstick icon /// /// https://fontawesome.com/icons/drumstick?style=thin /// bone, chicken, drumstick, leg, meat, poultry, poultry leg, turkey - static const IconData thinDrumstick = IconDataThin(0xf6d6); + static const IconData thinDrumstick = IconData(0xf6d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Drumstick Bite icon /// /// https://fontawesome.com/icons/drumstick-bite?style=solid /// bone, chicken, leg, meat, poultry, turkey - static const IconData solidDrumstickBite = IconDataSolid(0xf6d7); + static const IconData solidDrumstickBite = IconData(0xf6d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Drumstick Bite icon /// /// https://fontawesome.com/icons/drumstick-bite?style=regular /// bone, chicken, leg, meat, poultry, turkey - static const IconData drumstickBite = IconDataRegular(0xf6d7); + static const IconData drumstickBite = IconData(0xf6d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Drumstick Bite icon /// /// https://fontawesome.com/icons/drumstick-bite?style=light /// bone, chicken, leg, meat, poultry, turkey - static const IconData lightDrumstickBite = IconDataLight(0xf6d7); + static const IconData lightDrumstickBite = IconData(0xf6d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Drumstick Bite icon /// /// https://fontawesome.com/icons/drumstick-bite?style=thin /// bone, chicken, leg, meat, poultry, turkey - static const IconData thinDrumstickBite = IconDataThin(0xf6d7); + static const IconData thinDrumstickBite = IconData(0xf6d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Drupal Logo icon /// /// https://fontawesome.com/icons/drupal?style=brands - static const IconData drupal = IconDataBrands(0xf1a9); + static const IconData drupal = IconData(0xf1a9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Dryer icon /// /// https://fontawesome.com/icons/dryer?style=solid /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidDryer = IconDataSolid(0xf861); + static const IconData solidDryer = IconData(0xf861, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dryer icon /// /// https://fontawesome.com/icons/dryer?style=regular /// clean, clothes, laundromat, laundry, washing machine - static const IconData dryer = IconDataRegular(0xf861); + static const IconData dryer = IconData(0xf861, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dryer icon /// /// https://fontawesome.com/icons/dryer?style=light /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightDryer = IconDataLight(0xf861); + static const IconData lightDryer = IconData(0xf861, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dryer icon /// /// https://fontawesome.com/icons/dryer?style=thin /// clean, clothes, laundromat, laundry, washing machine - static const IconData thinDryer = IconDataThin(0xf861); + static const IconData thinDryer = IconData(0xf861, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dryer Heat icon /// /// https://fontawesome.com/icons/dryer-heat?style=solid /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidDryerHeat = IconDataSolid(0xf862); + static const IconData solidDryerHeat = IconData(0xf862, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dryer-alt for icon [solidDryerHeat] @Deprecated('Use "solidDryerHeat" instead.') @@ -31439,7 +31439,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dryer-heat?style=regular /// clean, clothes, laundromat, laundry, washing machine - static const IconData dryerHeat = IconDataRegular(0xf862); + static const IconData dryerHeat = IconData(0xf862, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dryer-alt for icon [dryerHeat] @Deprecated('Use "dryerHeat" instead.') @@ -31449,7 +31449,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dryer-heat?style=light /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightDryerHeat = IconDataLight(0xf862); + static const IconData lightDryerHeat = IconData(0xf862, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dryer-alt for icon [lightDryerHeat] @Deprecated('Use "lightDryerHeat" instead.') @@ -31459,7 +31459,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/dryer-heat?style=thin /// clean, clothes, laundromat, laundry, washing machine - static const IconData thinDryerHeat = IconDataThin(0xf862); + static const IconData thinDryerHeat = IconData(0xf862, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dryer-alt for icon [thinDryerHeat] @Deprecated('Use "thinDryerHeat" instead.') @@ -31469,180 +31469,180 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/duck?style=solid /// bath, bird, duck, fauna, quack, rubber - static const IconData solidDuck = IconDataSolid(0xf6d8); + static const IconData solidDuck = IconData(0xf6d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Duck icon /// /// https://fontawesome.com/icons/duck?style=regular /// bath, bird, duck, fauna, quack, rubber - static const IconData duck = IconDataRegular(0xf6d8); + static const IconData duck = IconData(0xf6d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Duck icon /// /// https://fontawesome.com/icons/duck?style=light /// bath, bird, duck, fauna, quack, rubber - static const IconData lightDuck = IconDataLight(0xf6d8); + static const IconData lightDuck = IconData(0xf6d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Duck icon /// /// https://fontawesome.com/icons/duck?style=thin /// bath, bird, duck, fauna, quack, rubber - static const IconData thinDuck = IconDataThin(0xf6d8); + static const IconData thinDuck = IconData(0xf6d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dumbbell icon /// /// https://fontawesome.com/icons/dumbbell?style=solid /// exercise, gym, strength, weight, weight-lifting, workout - static const IconData solidDumbbell = IconDataSolid(0xf44b); + static const IconData solidDumbbell = IconData(0xf44b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dumbbell icon /// /// https://fontawesome.com/icons/dumbbell?style=regular /// exercise, gym, strength, weight, weight-lifting, workout - static const IconData dumbbell = IconDataRegular(0xf44b); + static const IconData dumbbell = IconData(0xf44b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dumbbell icon /// /// https://fontawesome.com/icons/dumbbell?style=light /// exercise, gym, strength, weight, weight-lifting, workout - static const IconData lightDumbbell = IconDataLight(0xf44b); + static const IconData lightDumbbell = IconData(0xf44b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dumbbell icon /// /// https://fontawesome.com/icons/dumbbell?style=thin /// exercise, gym, strength, weight, weight-lifting, workout - static const IconData thinDumbbell = IconDataThin(0xf44b); + static const IconData thinDumbbell = IconData(0xf44b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dumpster icon /// /// https://fontawesome.com/icons/dumpster?style=solid /// alley, bin, commercial, trash, waste - static const IconData solidDumpster = IconDataSolid(0xf793); + static const IconData solidDumpster = IconData(0xf793, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dumpster icon /// /// https://fontawesome.com/icons/dumpster?style=regular /// alley, bin, commercial, trash, waste - static const IconData dumpster = IconDataRegular(0xf793); + static const IconData dumpster = IconData(0xf793, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dumpster icon /// /// https://fontawesome.com/icons/dumpster?style=light /// alley, bin, commercial, trash, waste - static const IconData lightDumpster = IconDataLight(0xf793); + static const IconData lightDumpster = IconData(0xf793, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dumpster icon /// /// https://fontawesome.com/icons/dumpster?style=thin /// alley, bin, commercial, trash, waste - static const IconData thinDumpster = IconDataThin(0xf793); + static const IconData thinDumpster = IconData(0xf793, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dumpster Fire icon /// /// https://fontawesome.com/icons/dumpster-fire?style=solid /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconData solidDumpsterFire = IconDataSolid(0xf794); + static const IconData solidDumpsterFire = IconData(0xf794, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dumpster Fire icon /// /// https://fontawesome.com/icons/dumpster-fire?style=regular /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconData dumpsterFire = IconDataRegular(0xf794); + static const IconData dumpsterFire = IconData(0xf794, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dumpster Fire icon /// /// https://fontawesome.com/icons/dumpster-fire?style=light /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconData lightDumpsterFire = IconDataLight(0xf794); + static const IconData lightDumpsterFire = IconData(0xf794, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dumpster Fire icon /// /// https://fontawesome.com/icons/dumpster-fire?style=thin /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconData thinDumpsterFire = IconDataThin(0xf794); + static const IconData thinDumpsterFire = IconData(0xf794, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Dungeon icon /// /// https://fontawesome.com/icons/dungeon?style=solid /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData solidDungeon = IconDataSolid(0xf6d9); + static const IconData solidDungeon = IconData(0xf6d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Dungeon icon /// /// https://fontawesome.com/icons/dungeon?style=regular /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData dungeon = IconDataRegular(0xf6d9); + static const IconData dungeon = IconData(0xf6d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Dungeon icon /// /// https://fontawesome.com/icons/dungeon?style=light /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData lightDungeon = IconDataLight(0xf6d9); + static const IconData lightDungeon = IconData(0xf6d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Dungeon icon /// /// https://fontawesome.com/icons/dungeon?style=thin /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData thinDungeon = IconDataThin(0xf6d9); + static const IconData thinDungeon = IconData(0xf6d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Dyalog icon /// /// https://fontawesome.com/icons/dyalog?style=brands - static const IconData dyalog = IconDataBrands(0xf399); + static const IconData dyalog = IconData(0xf399, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid E icon /// /// https://fontawesome.com/icons/e?style=solid /// Latin Capital Letter E, Latin Small Letter E, letter - static const IconData solidE = IconDataSolid(0x45); + static const IconData solidE = IconData(0x45, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular E icon /// /// https://fontawesome.com/icons/e?style=regular /// Latin Capital Letter E, Latin Small Letter E, letter - static const IconData e = IconDataRegular(0x45); + static const IconData e = IconData(0x45, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light E icon /// /// https://fontawesome.com/icons/e?style=light /// Latin Capital Letter E, Latin Small Letter E, letter - static const IconData lightE = IconDataLight(0x45); + static const IconData lightE = IconData(0x45, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin E icon /// /// https://fontawesome.com/icons/e?style=thin /// Latin Capital Letter E, Latin Small Letter E, letter - static const IconData thinE = IconDataThin(0x45); + static const IconData thinE = IconData(0x45, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ear icon /// /// https://fontawesome.com/icons/ear?style=solid /// body, ear, head, hearing, listen, lobe - static const IconData solidEar = IconDataSolid(0xf5f0); + static const IconData solidEar = IconData(0xf5f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ear icon /// /// https://fontawesome.com/icons/ear?style=regular /// body, ear, head, hearing, listen, lobe - static const IconData ear = IconDataRegular(0xf5f0); + static const IconData ear = IconData(0xf5f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ear icon /// /// https://fontawesome.com/icons/ear?style=light /// body, ear, head, hearing, listen, lobe - static const IconData lightEar = IconDataLight(0xf5f0); + static const IconData lightEar = IconData(0xf5f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ear icon /// /// https://fontawesome.com/icons/ear?style=thin /// body, ear, head, hearing, listen, lobe - static const IconData thinEar = IconDataThin(0xf5f0); + static const IconData thinEar = IconData(0xf5f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ear Deaf icon /// /// https://fontawesome.com/icons/ear-deaf?style=solid /// ear, hearing, sign language - static const IconData solidEarDeaf = IconDataSolid(0xf2a4); + static const IconData solidEarDeaf = IconData(0xf2a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias deaf for icon [solidEarDeaf] @Deprecated('Use "solidEarDeaf" instead.') @@ -31660,7 +31660,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-deaf?style=regular /// ear, hearing, sign language - static const IconData earDeaf = IconDataRegular(0xf2a4); + static const IconData earDeaf = IconData(0xf2a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias deaf for icon [earDeaf] @Deprecated('Use "earDeaf" instead.') @@ -31678,7 +31678,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-deaf?style=light /// ear, hearing, sign language - static const IconData lightEarDeaf = IconDataLight(0xf2a4); + static const IconData lightEarDeaf = IconData(0xf2a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias deaf for icon [lightEarDeaf] @Deprecated('Use "lightEarDeaf" instead.') @@ -31696,7 +31696,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-deaf?style=thin /// ear, hearing, sign language - static const IconData thinEarDeaf = IconDataThin(0xf2a4); + static const IconData thinEarDeaf = IconData(0xf2a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias deaf for icon [thinEarDeaf] @Deprecated('Use "thinEarDeaf" instead.') @@ -31714,7 +31714,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-listen?style=solid /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData solidEarListen = IconDataSolid(0xf2a2); + static const IconData solidEarListen = IconData(0xf2a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias assistive-listening-systems for icon [solidEarListen] @Deprecated('Use "solidEarListen" instead.') @@ -31724,7 +31724,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-listen?style=regular /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData earListen = IconDataRegular(0xf2a2); + static const IconData earListen = IconData(0xf2a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias assistive-listening-systems for icon [earListen] @Deprecated('Use "earListen" instead.') @@ -31734,7 +31734,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-listen?style=light /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData lightEarListen = IconDataLight(0xf2a2); + static const IconData lightEarListen = IconData(0xf2a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias assistive-listening-systems for icon [lightEarListen] @Deprecated('Use "lightEarListen" instead.') @@ -31744,7 +31744,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-listen?style=thin /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData thinEarListen = IconDataThin(0xf2a2); + static const IconData thinEarListen = IconData(0xf2a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias assistive-listening-systems for icon [thinEarListen] @Deprecated('Use "thinEarListen" instead.') @@ -31754,36 +31754,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ear-muffs?style=solid /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData solidEarMuffs = IconDataSolid(0xf795); + static const IconData solidEarMuffs = IconData(0xf795, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ear Muffs icon /// /// https://fontawesome.com/icons/ear-muffs?style=regular /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData earMuffs = IconDataRegular(0xf795); + static const IconData earMuffs = IconData(0xf795, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ear Muffs icon /// /// https://fontawesome.com/icons/ear-muffs?style=light /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData lightEarMuffs = IconDataLight(0xf795); + static const IconData lightEarMuffs = IconData(0xf795, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ear Muffs icon /// /// https://fontawesome.com/icons/ear-muffs?style=thin /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData thinEarMuffs = IconDataThin(0xf795); + static const IconData thinEarMuffs = IconData(0xf795, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Earlybirds icon /// /// https://fontawesome.com/icons/earlybirds?style=brands - static const IconData earlybirds = IconDataBrands(0xf39a); + static const IconData earlybirds = IconData(0xf39a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Earth Africa icon /// /// https://fontawesome.com/icons/earth-africa?style=solid /// africa, all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidEarthAfrica = IconDataSolid(0xf57c); + static const IconData solidEarthAfrica = IconData(0xf57c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias globe-africa for icon [solidEarthAfrica] @Deprecated('Use "solidEarthAfrica" instead.') @@ -31793,7 +31793,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-africa?style=regular /// africa, all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData earthAfrica = IconDataRegular(0xf57c); + static const IconData earthAfrica = IconData(0xf57c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias globe-africa for icon [earthAfrica] @Deprecated('Use "earthAfrica" instead.') @@ -31803,7 +31803,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-africa?style=light /// africa, all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightEarthAfrica = IconDataLight(0xf57c); + static const IconData lightEarthAfrica = IconData(0xf57c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias globe-africa for icon [lightEarthAfrica] @Deprecated('Use "lightEarthAfrica" instead.') @@ -31813,7 +31813,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-africa?style=thin /// africa, all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData thinEarthAfrica = IconDataThin(0xf57c); + static const IconData thinEarthAfrica = IconData(0xf57c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias globe-africa for icon [thinEarthAfrica] @Deprecated('Use "thinEarthAfrica" instead.') @@ -31823,7 +31823,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-americas?style=solid /// all, america, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidEarthAmericas = IconDataSolid(0xf57d); + static const IconData solidEarthAmericas = IconData(0xf57d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias earth for icon [solidEarthAmericas] @Deprecated('Use "solidEarthAmericas" instead.') @@ -31841,7 +31841,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-americas?style=regular /// all, america, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData earthAmericas = IconDataRegular(0xf57d); + static const IconData earthAmericas = IconData(0xf57d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias earth for icon [earthAmericas] @Deprecated('Use "earthAmericas" instead.') @@ -31859,7 +31859,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-americas?style=light /// all, america, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightEarthAmericas = IconDataLight(0xf57d); + static const IconData lightEarthAmericas = IconData(0xf57d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias earth for icon [lightEarthAmericas] @Deprecated('Use "lightEarthAmericas" instead.') @@ -31877,7 +31877,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-americas?style=thin /// all, america, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData thinEarthAmericas = IconDataThin(0xf57d); + static const IconData thinEarthAmericas = IconData(0xf57d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias earth for icon [thinEarthAmericas] @Deprecated('Use "thinEarthAmericas" instead.') @@ -31895,7 +31895,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-asia?style=solid /// all, asia, australia, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidEarthAsia = IconDataSolid(0xf57e); + static const IconData solidEarthAsia = IconData(0xf57e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias globe-asia for icon [solidEarthAsia] @Deprecated('Use "solidEarthAsia" instead.') @@ -31905,7 +31905,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-asia?style=regular /// all, asia, australia, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData earthAsia = IconDataRegular(0xf57e); + static const IconData earthAsia = IconData(0xf57e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias globe-asia for icon [earthAsia] @Deprecated('Use "earthAsia" instead.') @@ -31915,7 +31915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-asia?style=light /// all, asia, australia, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightEarthAsia = IconDataLight(0xf57e); + static const IconData lightEarthAsia = IconData(0xf57e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias globe-asia for icon [lightEarthAsia] @Deprecated('Use "lightEarthAsia" instead.') @@ -31925,7 +31925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-asia?style=thin /// all, asia, australia, country, earth, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData thinEarthAsia = IconDataThin(0xf57e); + static const IconData thinEarthAsia = IconData(0xf57e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias globe-asia for icon [thinEarthAsia] @Deprecated('Use "thinEarthAsia" instead.') @@ -31935,7 +31935,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-europe?style=solid /// all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidEarthEurope = IconDataSolid(0xf7a2); + static const IconData solidEarthEurope = IconData(0xf7a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias globe-europe for icon [solidEarthEurope] @Deprecated('Use "solidEarthEurope" instead.') @@ -31945,7 +31945,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-europe?style=regular /// all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData earthEurope = IconDataRegular(0xf7a2); + static const IconData earthEurope = IconData(0xf7a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias globe-europe for icon [earthEurope] @Deprecated('Use "earthEurope" instead.') @@ -31955,7 +31955,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-europe?style=light /// all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightEarthEurope = IconDataLight(0xf7a2); + static const IconData lightEarthEurope = IconData(0xf7a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias globe-europe for icon [lightEarthEurope] @Deprecated('Use "lightEarthEurope" instead.') @@ -31965,7 +31965,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-europe?style=thin /// all, country, earth, europe, global, globe, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData thinEarthEurope = IconDataThin(0xf7a2); + static const IconData thinEarthEurope = IconData(0xf7a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias globe-europe for icon [thinEarthEurope] @Deprecated('Use "thinEarthEurope" instead.') @@ -31975,7 +31975,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-oceania?style=solid /// all, australia, country, earth, global, globe, gps, language, localize, location, map, melanesia, micronesia, new zealand, online, place, planet, polynesia, translate, travel, world - static const IconData solidEarthOceania = IconDataSolid(0xe47b); + static const IconData solidEarthOceania = IconData(0xe47b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias globe-oceania for icon [solidEarthOceania] @Deprecated('Use "solidEarthOceania" instead.') @@ -31985,7 +31985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-oceania?style=regular /// all, australia, country, earth, global, globe, gps, language, localize, location, map, melanesia, micronesia, new zealand, online, place, planet, polynesia, translate, travel, world - static const IconData earthOceania = IconDataRegular(0xe47b); + static const IconData earthOceania = IconData(0xe47b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias globe-oceania for icon [earthOceania] @Deprecated('Use "earthOceania" instead.') @@ -31995,7 +31995,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-oceania?style=light /// all, australia, country, earth, global, globe, gps, language, localize, location, map, melanesia, micronesia, new zealand, online, place, planet, polynesia, translate, travel, world - static const IconData lightEarthOceania = IconDataLight(0xe47b); + static const IconData lightEarthOceania = IconData(0xe47b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias globe-oceania for icon [lightEarthOceania] @Deprecated('Use "lightEarthOceania" instead.') @@ -32005,7 +32005,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/earth-oceania?style=thin /// all, australia, country, earth, global, globe, gps, language, localize, location, map, melanesia, micronesia, new zealand, online, place, planet, polynesia, translate, travel, world - static const IconData thinEarthOceania = IconDataThin(0xe47b); + static const IconData thinEarthOceania = IconData(0xe47b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias globe-oceania for icon [thinEarthOceania] @Deprecated('Use "thinEarthOceania" instead.') @@ -32014,197 +32014,197 @@ class FontAwesomeIcons { /// Brands eBay icon /// /// https://fontawesome.com/icons/ebay?style=brands - static const IconData ebay = IconDataBrands(0xf4f4); + static const IconData ebay = IconData(0xf4f4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Eclipse icon /// /// https://fontawesome.com/icons/eclipse?style=solid /// lunar, moon, shadow, solar, sun - static const IconData solidEclipse = IconDataSolid(0xf749); + static const IconData solidEclipse = IconData(0xf749, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eclipse icon /// /// https://fontawesome.com/icons/eclipse?style=regular /// lunar, moon, shadow, solar, sun - static const IconData eclipse = IconDataRegular(0xf749); + static const IconData eclipse = IconData(0xf749, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eclipse icon /// /// https://fontawesome.com/icons/eclipse?style=light /// lunar, moon, shadow, solar, sun - static const IconData lightEclipse = IconDataLight(0xf749); + static const IconData lightEclipse = IconData(0xf749, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eclipse icon /// /// https://fontawesome.com/icons/eclipse?style=thin /// lunar, moon, shadow, solar, sun - static const IconData thinEclipse = IconDataThin(0xf749); + static const IconData thinEclipse = IconData(0xf749, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Edge Browser icon /// /// https://fontawesome.com/icons/edge?style=brands /// browser, ie - static const IconData edge = IconDataBrands(0xf282); + static const IconData edge = IconData(0xf282, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Edge Legacy Browser icon /// /// https://fontawesome.com/icons/edge-legacy?style=brands - static const IconData edgeLegacy = IconDataBrands(0xe078); + static const IconData edgeLegacy = IconData(0xe078, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Egg icon /// /// https://fontawesome.com/icons/egg?style=solid /// breakfast, chicken, easter, egg, food, shell, yolk - static const IconData solidEgg = IconDataSolid(0xf7fb); + static const IconData solidEgg = IconData(0xf7fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Egg icon /// /// https://fontawesome.com/icons/egg?style=regular /// breakfast, chicken, easter, egg, food, shell, yolk - static const IconData egg = IconDataRegular(0xf7fb); + static const IconData egg = IconData(0xf7fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Egg icon /// /// https://fontawesome.com/icons/egg?style=light /// breakfast, chicken, easter, egg, food, shell, yolk - static const IconData lightEgg = IconDataLight(0xf7fb); + static const IconData lightEgg = IconData(0xf7fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Egg icon /// /// https://fontawesome.com/icons/egg?style=thin /// breakfast, chicken, easter, egg, food, shell, yolk - static const IconData thinEgg = IconDataThin(0xf7fb); + static const IconData thinEgg = IconData(0xf7fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Egg Fried icon /// /// https://fontawesome.com/icons/egg-fried?style=solid /// breakfast, chicken, yolk - static const IconData solidEggFried = IconDataSolid(0xf7fc); + static const IconData solidEggFried = IconData(0xf7fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Egg Fried icon /// /// https://fontawesome.com/icons/egg-fried?style=regular /// breakfast, chicken, yolk - static const IconData eggFried = IconDataRegular(0xf7fc); + static const IconData eggFried = IconData(0xf7fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Egg Fried icon /// /// https://fontawesome.com/icons/egg-fried?style=light /// breakfast, chicken, yolk - static const IconData lightEggFried = IconDataLight(0xf7fc); + static const IconData lightEggFried = IconData(0xf7fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Egg Fried icon /// /// https://fontawesome.com/icons/egg-fried?style=thin /// breakfast, chicken, yolk - static const IconData thinEggFried = IconDataThin(0xf7fc); + static const IconData thinEggFried = IconData(0xf7fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eggplant icon /// /// https://fontawesome.com/icons/eggplant?style=solid /// adventure island, aubergine, brinjal, eggplant, purple, vegetable - static const IconData solidEggplant = IconDataSolid(0xe16c); + static const IconData solidEggplant = IconData(0xe16c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eggplant icon /// /// https://fontawesome.com/icons/eggplant?style=regular /// adventure island, aubergine, brinjal, eggplant, purple, vegetable - static const IconData eggplant = IconDataRegular(0xe16c); + static const IconData eggplant = IconData(0xe16c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eggplant icon /// /// https://fontawesome.com/icons/eggplant?style=light /// adventure island, aubergine, brinjal, eggplant, purple, vegetable - static const IconData lightEggplant = IconDataLight(0xe16c); + static const IconData lightEggplant = IconData(0xe16c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eggplant icon /// /// https://fontawesome.com/icons/eggplant?style=thin /// adventure island, aubergine, brinjal, eggplant, purple, vegetable - static const IconData thinEggplant = IconDataThin(0xe16c); + static const IconData thinEggplant = IconData(0xe16c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eject icon /// /// https://fontawesome.com/icons/eject?style=solid /// abort, cancel, cd, discharge, eject, eject button - static const IconData solidEject = IconDataSolid(0xf052); + static const IconData solidEject = IconData(0xf052, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eject icon /// /// https://fontawesome.com/icons/eject?style=regular /// abort, cancel, cd, discharge, eject, eject button - static const IconData eject = IconDataRegular(0xf052); + static const IconData eject = IconData(0xf052, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eject icon /// /// https://fontawesome.com/icons/eject?style=light /// abort, cancel, cd, discharge, eject, eject button - static const IconData lightEject = IconDataLight(0xf052); + static const IconData lightEject = IconData(0xf052, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eject icon /// /// https://fontawesome.com/icons/eject?style=thin /// abort, cancel, cd, discharge, eject, eject button - static const IconData thinEject = IconDataThin(0xf052); + static const IconData thinEject = IconData(0xf052, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Elementor icon /// /// https://fontawesome.com/icons/elementor?style=brands - static const IconData elementor = IconDataBrands(0xf430); + static const IconData elementor = IconData(0xf430, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Elephant icon /// /// https://fontawesome.com/icons/elephant?style=solid /// animal, dumbo, elephan, elephant, fauna, mammal, pachyderm, trunk - static const IconData solidElephant = IconDataSolid(0xf6da); + static const IconData solidElephant = IconData(0xf6da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Elephant icon /// /// https://fontawesome.com/icons/elephant?style=regular /// animal, dumbo, elephan, elephant, fauna, mammal, pachyderm, trunk - static const IconData elephant = IconDataRegular(0xf6da); + static const IconData elephant = IconData(0xf6da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Elephant icon /// /// https://fontawesome.com/icons/elephant?style=light /// animal, dumbo, elephan, elephant, fauna, mammal, pachyderm, trunk - static const IconData lightElephant = IconDataLight(0xf6da); + static const IconData lightElephant = IconData(0xf6da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Elephant icon /// /// https://fontawesome.com/icons/elephant?style=thin /// animal, dumbo, elephan, elephant, fauna, mammal, pachyderm, trunk - static const IconData thinElephant = IconDataThin(0xf6da); + static const IconData thinElephant = IconData(0xf6da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Elevator icon /// /// https://fontawesome.com/icons/elevator?style=solid /// accessibility, elevator, hoist, lift, uer, users-people - static const IconData solidElevator = IconDataSolid(0xe16d); + static const IconData solidElevator = IconData(0xe16d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Elevator icon /// /// https://fontawesome.com/icons/elevator?style=regular /// accessibility, elevator, hoist, lift, uer, users-people - static const IconData elevator = IconDataRegular(0xe16d); + static const IconData elevator = IconData(0xe16d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Elevator icon /// /// https://fontawesome.com/icons/elevator?style=light /// accessibility, elevator, hoist, lift, uer, users-people - static const IconData lightElevator = IconDataLight(0xe16d); + static const IconData lightElevator = IconData(0xe16d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Elevator icon /// /// https://fontawesome.com/icons/elevator?style=thin /// accessibility, elevator, hoist, lift, uer, users-people - static const IconData thinElevator = IconDataThin(0xe16d); + static const IconData thinElevator = IconData(0xe16d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ellipsis icon /// /// https://fontawesome.com/icons/ellipsis?style=solid /// dots, drag, kebab, list, menu, nav, navigation, ol, pacman, reorder, settings, three dots, ul - static const IconData solidEllipsis = IconDataSolid(0xf141); + static const IconData solidEllipsis = IconData(0xf141, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h for icon [solidEllipsis] @Deprecated('Use "solidEllipsis" instead.') @@ -32214,7 +32214,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis?style=regular /// dots, drag, kebab, list, menu, nav, navigation, ol, pacman, reorder, settings, three dots, ul - static const IconData ellipsis = IconDataRegular(0xf141); + static const IconData ellipsis = IconData(0xf141, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h for icon [ellipsis] @Deprecated('Use "ellipsis" instead.') @@ -32224,7 +32224,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis?style=light /// dots, drag, kebab, list, menu, nav, navigation, ol, pacman, reorder, settings, three dots, ul - static const IconData lightEllipsis = IconDataLight(0xf141); + static const IconData lightEllipsis = IconData(0xf141, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h for icon [lightEllipsis] @Deprecated('Use "lightEllipsis" instead.') @@ -32234,7 +32234,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis?style=thin /// dots, drag, kebab, list, menu, nav, navigation, ol, pacman, reorder, settings, three dots, ul - static const IconData thinEllipsis = IconDataThin(0xf141); + static const IconData thinEllipsis = IconData(0xf141, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h for icon [thinEllipsis] @Deprecated('Use "thinEllipsis" instead.') @@ -32244,7 +32244,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke?style=solid /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData solidEllipsisStroke = IconDataSolid(0xf39b); + static const IconData solidEllipsisStroke = IconData(0xf39b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h-alt for icon [solidEllipsisStroke] @Deprecated('Use "solidEllipsisStroke" instead.') @@ -32254,7 +32254,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke?style=regular /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData ellipsisStroke = IconDataRegular(0xf39b); + static const IconData ellipsisStroke = IconData(0xf39b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h-alt for icon [ellipsisStroke] @Deprecated('Use "ellipsisStroke" instead.') @@ -32264,7 +32264,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke?style=light /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData lightEllipsisStroke = IconDataLight(0xf39b); + static const IconData lightEllipsisStroke = IconData(0xf39b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h-alt for icon [lightEllipsisStroke] @Deprecated('Use "lightEllipsisStroke" instead.') @@ -32274,7 +32274,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke?style=thin /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData thinEllipsisStroke = IconDataThin(0xf39b); + static const IconData thinEllipsisStroke = IconData(0xf39b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-h-alt for icon [thinEllipsisStroke] @Deprecated('Use "thinEllipsisStroke" instead.') @@ -32284,7 +32284,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke-vertical?style=solid /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData solidEllipsisStrokeVertical = IconDataSolid(0xf39c); + static const IconData solidEllipsisStrokeVertical = IconData(0xf39c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v-alt for icon [solidEllipsisStrokeVertical] @Deprecated('Use "solidEllipsisStrokeVertical" instead.') @@ -32294,7 +32294,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke-vertical?style=regular /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData ellipsisStrokeVertical = IconDataRegular(0xf39c); + static const IconData ellipsisStrokeVertical = IconData(0xf39c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v-alt for icon [ellipsisStrokeVertical] @Deprecated('Use "ellipsisStrokeVertical" instead.') @@ -32304,7 +32304,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke-vertical?style=light /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData lightEllipsisStrokeVertical = IconDataLight(0xf39c); + static const IconData lightEllipsisStrokeVertical = IconData(0xf39c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v-alt for icon [lightEllipsisStrokeVertical] @Deprecated('Use "lightEllipsisStrokeVertical" instead.') @@ -32314,7 +32314,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-stroke-vertical?style=thin /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData thinEllipsisStrokeVertical = IconDataThin(0xf39c); + static const IconData thinEllipsisStrokeVertical = IconData(0xf39c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v-alt for icon [thinEllipsisStrokeVertical] @Deprecated('Use "thinEllipsisStrokeVertical" instead.') @@ -32324,7 +32324,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-vertical?style=solid /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData solidEllipsisVertical = IconDataSolid(0xf142); + static const IconData solidEllipsisVertical = IconData(0xf142, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v for icon [solidEllipsisVertical] @Deprecated('Use "solidEllipsisVertical" instead.') @@ -32334,7 +32334,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-vertical?style=regular /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData ellipsisVertical = IconDataRegular(0xf142); + static const IconData ellipsisVertical = IconData(0xf142, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v for icon [ellipsisVertical] @Deprecated('Use "ellipsisVertical" instead.') @@ -32344,7 +32344,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-vertical?style=light /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData lightEllipsisVertical = IconDataLight(0xf142); + static const IconData lightEllipsisVertical = IconData(0xf142, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v for icon [lightEllipsisVertical] @Deprecated('Use "lightEllipsisVertical" instead.') @@ -32354,7 +32354,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ellipsis-vertical?style=thin /// bullet, dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, three dots, ul - static const IconData thinEllipsisVertical = IconDataThin(0xf142); + static const IconData thinEllipsisVertical = IconData(0xf142, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ellipsis-v for icon [thinEllipsisVertical] @Deprecated('Use "thinEllipsisVertical" instead.') @@ -32363,71 +32363,71 @@ class FontAwesomeIcons { /// Brands Ello icon /// /// https://fontawesome.com/icons/ello?style=brands - static const IconData ello = IconDataBrands(0xf5f1); + static const IconData ello = IconData(0xf5f1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Ember icon /// /// https://fontawesome.com/icons/ember?style=brands - static const IconData ember = IconDataBrands(0xf423); + static const IconData ember = IconData(0xf423, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Galactic Empire icon /// /// https://fontawesome.com/icons/empire?style=brands - static const IconData empire = IconDataBrands(0xf1d1); + static const IconData empire = IconData(0xf1d1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Empty Set icon /// /// https://fontawesome.com/icons/empty-set?style=solid /// Empty Set, Latin Capital Letter O with Stroke, math, theory - static const IconData solidEmptySet = IconDataSolid(0xf656); + static const IconData solidEmptySet = IconData(0xf656, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Empty Set icon /// /// https://fontawesome.com/icons/empty-set?style=regular /// Empty Set, Latin Capital Letter O with Stroke, math, theory - static const IconData emptySet = IconDataRegular(0xf656); + static const IconData emptySet = IconData(0xf656, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Empty Set icon /// /// https://fontawesome.com/icons/empty-set?style=light /// Empty Set, Latin Capital Letter O with Stroke, math, theory - static const IconData lightEmptySet = IconDataLight(0xf656); + static const IconData lightEmptySet = IconData(0xf656, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Empty Set icon /// /// https://fontawesome.com/icons/empty-set?style=thin /// Empty Set, Latin Capital Letter O with Stroke, math, theory - static const IconData thinEmptySet = IconDataThin(0xf656); + static const IconData thinEmptySet = IconData(0xf656, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Engine icon /// /// https://fontawesome.com/icons/engine?style=solid /// car, engine - static const IconData solidEngine = IconDataSolid(0xe16e); + static const IconData solidEngine = IconData(0xe16e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Engine icon /// /// https://fontawesome.com/icons/engine?style=regular /// car, engine - static const IconData engine = IconDataRegular(0xe16e); + static const IconData engine = IconData(0xe16e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Engine icon /// /// https://fontawesome.com/icons/engine?style=light /// car, engine - static const IconData lightEngine = IconDataLight(0xe16e); + static const IconData lightEngine = IconData(0xe16e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Engine icon /// /// https://fontawesome.com/icons/engine?style=thin /// car, engine - static const IconData thinEngine = IconDataThin(0xe16e); + static const IconData thinEngine = IconData(0xe16e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Engine Warning icon /// /// https://fontawesome.com/icons/engine-warning?style=solid /// alert, automobile, car, failed, mechanic, warning - static const IconData solidEngineWarning = IconDataSolid(0xf5f2); + static const IconData solidEngineWarning = IconData(0xf5f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias engine-exclamation for icon [solidEngineWarning] @Deprecated('Use "solidEngineWarning" instead.') @@ -32437,7 +32437,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/engine-warning?style=regular /// alert, automobile, car, failed, mechanic, warning - static const IconData engineWarning = IconDataRegular(0xf5f2); + static const IconData engineWarning = IconData(0xf5f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias engine-exclamation for icon [engineWarning] @Deprecated('Use "engineWarning" instead.') @@ -32447,7 +32447,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/engine-warning?style=light /// alert, automobile, car, failed, mechanic, warning - static const IconData lightEngineWarning = IconDataLight(0xf5f2); + static const IconData lightEngineWarning = IconData(0xf5f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias engine-exclamation for icon [lightEngineWarning] @Deprecated('Use "lightEngineWarning" instead.') @@ -32457,7 +32457,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/engine-warning?style=thin /// alert, automobile, car, failed, mechanic, warning - static const IconData thinEngineWarning = IconDataThin(0xf5f2); + static const IconData thinEngineWarning = IconData(0xf5f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias engine-exclamation for icon [thinEngineWarning] @Deprecated('Use "thinEngineWarning" instead.') @@ -32467,55 +32467,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelope?style=solid /// Back of Envelope, e-mail, email, envelope, letter, mail, message, newsletter, notification, offer, support - static const IconData solidEnvelope = IconDataSolid(0xf0e0); + static const IconData solidEnvelope = IconData(0xf0e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelope icon /// /// https://fontawesome.com/icons/envelope?style=regular /// Back of Envelope, e-mail, email, envelope, letter, mail, message, newsletter, notification, offer, support - static const IconData envelope = IconDataRegular(0xf0e0); + static const IconData envelope = IconData(0xf0e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelope icon /// /// https://fontawesome.com/icons/envelope?style=light /// Back of Envelope, e-mail, email, envelope, letter, mail, message, newsletter, notification, offer, support - static const IconData lightEnvelope = IconDataLight(0xf0e0); + static const IconData lightEnvelope = IconData(0xf0e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelope icon /// /// https://fontawesome.com/icons/envelope?style=thin /// Back of Envelope, e-mail, email, envelope, letter, mail, message, newsletter, notification, offer, support - static const IconData thinEnvelope = IconDataThin(0xf0e0); + static const IconData thinEnvelope = IconData(0xf0e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelope Circle Check icon /// /// https://fontawesome.com/icons/envelope-circle-check?style=solid /// check, email, enable, envelope, mail, not affected, ok, okay, read, sent, validate, working - static const IconData solidEnvelopeCircleCheck = IconDataSolid(0xe4e8); + static const IconData solidEnvelopeCircleCheck = IconData(0xe4e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelope Circle Check icon /// /// https://fontawesome.com/icons/envelope-circle-check?style=regular /// check, email, enable, envelope, mail, not affected, ok, okay, read, sent, validate, working - static const IconData envelopeCircleCheck = IconDataRegular(0xe4e8); + static const IconData envelopeCircleCheck = IconData(0xe4e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelope Circle Check icon /// /// https://fontawesome.com/icons/envelope-circle-check?style=light /// check, email, enable, envelope, mail, not affected, ok, okay, read, sent, validate, working - static const IconData lightEnvelopeCircleCheck = IconDataLight(0xe4e8); + static const IconData lightEnvelopeCircleCheck = IconData(0xe4e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelope Circle Check icon /// /// https://fontawesome.com/icons/envelope-circle-check?style=thin /// check, email, enable, envelope, mail, not affected, ok, okay, read, sent, validate, working - static const IconData thinEnvelopeCircleCheck = IconDataThin(0xe4e8); + static const IconData thinEnvelopeCircleCheck = IconData(0xe4e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelope Dot icon /// /// https://fontawesome.com/icons/envelope-dot?style=solid /// email - static const IconData solidEnvelopeDot = IconDataSolid(0xe16f); + static const IconData solidEnvelopeDot = IconData(0xe16f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias envelope-badge for icon [solidEnvelopeDot] @Deprecated('Use "solidEnvelopeDot" instead.') @@ -32525,7 +32525,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelope-dot?style=regular /// email - static const IconData envelopeDot = IconDataRegular(0xe16f); + static const IconData envelopeDot = IconData(0xe16f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias envelope-badge for icon [envelopeDot] @Deprecated('Use "envelopeDot" instead.') @@ -32535,7 +32535,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelope-dot?style=light /// email - static const IconData lightEnvelopeDot = IconDataLight(0xe16f); + static const IconData lightEnvelopeDot = IconData(0xe16f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias envelope-badge for icon [lightEnvelopeDot] @Deprecated('Use "lightEnvelopeDot" instead.') @@ -32545,7 +32545,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelope-dot?style=thin /// email - static const IconData thinEnvelopeDot = IconDataThin(0xe16f); + static const IconData thinEnvelopeDot = IconData(0xe16f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias envelope-badge for icon [thinEnvelopeDot] @Deprecated('Use "thinEnvelopeDot" instead.') @@ -32555,103 +32555,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelope-open?style=solid /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData solidEnvelopeOpen = IconDataSolid(0xf2b6); + static const IconData solidEnvelopeOpen = IconData(0xf2b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelope Open icon /// /// https://fontawesome.com/icons/envelope-open?style=regular /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData envelopeOpen = IconDataRegular(0xf2b6); + static const IconData envelopeOpen = IconData(0xf2b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelope Open icon /// /// https://fontawesome.com/icons/envelope-open?style=light /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData lightEnvelopeOpen = IconDataLight(0xf2b6); + static const IconData lightEnvelopeOpen = IconData(0xf2b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelope Open icon /// /// https://fontawesome.com/icons/envelope-open?style=thin /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData thinEnvelopeOpen = IconDataThin(0xf2b6); + static const IconData thinEnvelopeOpen = IconData(0xf2b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelope Open Dollar icon /// /// https://fontawesome.com/icons/envelope-open-dollar?style=solid /// e-mail, email, letter, mail, message, money, newsletter, notification, offer, pay, revenue, salary, transfer - static const IconData solidEnvelopeOpenDollar = IconDataSolid(0xf657); + static const IconData solidEnvelopeOpenDollar = IconData(0xf657, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelope Open Dollar icon /// /// https://fontawesome.com/icons/envelope-open-dollar?style=regular /// e-mail, email, letter, mail, message, money, newsletter, notification, offer, pay, revenue, salary, transfer - static const IconData envelopeOpenDollar = IconDataRegular(0xf657); + static const IconData envelopeOpenDollar = IconData(0xf657, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelope Open Dollar icon /// /// https://fontawesome.com/icons/envelope-open-dollar?style=light /// e-mail, email, letter, mail, message, money, newsletter, notification, offer, pay, revenue, salary, transfer - static const IconData lightEnvelopeOpenDollar = IconDataLight(0xf657); + static const IconData lightEnvelopeOpenDollar = IconData(0xf657, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelope Open Dollar icon /// /// https://fontawesome.com/icons/envelope-open-dollar?style=thin /// e-mail, email, letter, mail, message, money, newsletter, notification, offer, pay, revenue, salary, transfer - static const IconData thinEnvelopeOpenDollar = IconDataThin(0xf657); + static const IconData thinEnvelopeOpenDollar = IconData(0xf657, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelope Open Text icon /// /// https://fontawesome.com/icons/envelope-open-text?style=solid /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData solidEnvelopeOpenText = IconDataSolid(0xf658); + static const IconData solidEnvelopeOpenText = IconData(0xf658, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelope Open Text icon /// /// https://fontawesome.com/icons/envelope-open-text?style=regular /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData envelopeOpenText = IconDataRegular(0xf658); + static const IconData envelopeOpenText = IconData(0xf658, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelope Open Text icon /// /// https://fontawesome.com/icons/envelope-open-text?style=light /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData lightEnvelopeOpenText = IconDataLight(0xf658); + static const IconData lightEnvelopeOpenText = IconData(0xf658, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelope Open Text icon /// /// https://fontawesome.com/icons/envelope-open-text?style=thin /// e-mail, email, letter, mail, message, newsletter, notification, offer, support - static const IconData thinEnvelopeOpenText = IconDataThin(0xf658); + static const IconData thinEnvelopeOpenText = IconData(0xf658, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelopes icon /// /// https://fontawesome.com/icons/envelopes?style=solid /// email - static const IconData solidEnvelopes = IconDataSolid(0xe170); + static const IconData solidEnvelopes = IconData(0xe170, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Envelopes icon /// /// https://fontawesome.com/icons/envelopes?style=regular /// email - static const IconData envelopes = IconDataRegular(0xe170); + static const IconData envelopes = IconData(0xe170, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Envelopes icon /// /// https://fontawesome.com/icons/envelopes?style=light /// email - static const IconData lightEnvelopes = IconDataLight(0xe170); + static const IconData lightEnvelopes = IconData(0xe170, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Envelopes icon /// /// https://fontawesome.com/icons/envelopes?style=thin /// email - static const IconData thinEnvelopes = IconDataThin(0xe170); + static const IconData thinEnvelopes = IconData(0xe170, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Envelopes Bulk icon /// /// https://fontawesome.com/icons/envelopes-bulk?style=solid /// archive, envelope, letter, newsletter, offer, post office, postal, postcard, send, stamp, usps - static const IconData solidEnvelopesBulk = IconDataSolid(0xf674); + static const IconData solidEnvelopesBulk = IconData(0xf674, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mail-bulk for icon [solidEnvelopesBulk] @Deprecated('Use "solidEnvelopesBulk" instead.') @@ -32661,7 +32661,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelopes-bulk?style=regular /// archive, envelope, letter, newsletter, offer, post office, postal, postcard, send, stamp, usps - static const IconData envelopesBulk = IconDataRegular(0xf674); + static const IconData envelopesBulk = IconData(0xf674, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mail-bulk for icon [envelopesBulk] @Deprecated('Use "envelopesBulk" instead.') @@ -32671,7 +32671,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelopes-bulk?style=light /// archive, envelope, letter, newsletter, offer, post office, postal, postcard, send, stamp, usps - static const IconData lightEnvelopesBulk = IconDataLight(0xf674); + static const IconData lightEnvelopesBulk = IconData(0xf674, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mail-bulk for icon [lightEnvelopesBulk] @Deprecated('Use "lightEnvelopesBulk" instead.') @@ -32681,7 +32681,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envelopes-bulk?style=thin /// archive, envelope, letter, newsletter, offer, post office, postal, postcard, send, stamp, usps - static const IconData thinEnvelopesBulk = IconDataThin(0xf674); + static const IconData thinEnvelopesBulk = IconData(0xf674, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mail-bulk for icon [thinEnvelopesBulk] @Deprecated('Use "thinEnvelopesBulk" instead.') @@ -32691,124 +32691,124 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/envira?style=brands /// leaf - static const IconData envira = IconDataBrands(0xf299); + static const IconData envira = IconData(0xf299, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Equals icon /// /// https://fontawesome.com/icons/equals?style=solid /// Equals Sign, arithmetic, even, match, math - static const IconData solidEquals = IconDataSolid(0x3d); + static const IconData solidEquals = IconData(0x3d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Equals icon /// /// https://fontawesome.com/icons/equals?style=regular /// Equals Sign, arithmetic, even, match, math - static const IconData equals = IconDataRegular(0x3d); + static const IconData equals = IconData(0x3d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Equals icon /// /// https://fontawesome.com/icons/equals?style=light /// Equals Sign, arithmetic, even, match, math - static const IconData lightEquals = IconDataLight(0x3d); + static const IconData lightEquals = IconData(0x3d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Equals icon /// /// https://fontawesome.com/icons/equals?style=thin /// Equals Sign, arithmetic, even, match, math - static const IconData thinEquals = IconDataThin(0x3d); + static const IconData thinEquals = IconData(0x3d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eraser icon /// /// https://fontawesome.com/icons/eraser?style=solid /// art, delete, remove, rubber - static const IconData solidEraser = IconDataSolid(0xf12d); + static const IconData solidEraser = IconData(0xf12d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eraser icon /// /// https://fontawesome.com/icons/eraser?style=regular /// art, delete, remove, rubber - static const IconData eraser = IconDataRegular(0xf12d); + static const IconData eraser = IconData(0xf12d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eraser icon /// /// https://fontawesome.com/icons/eraser?style=light /// art, delete, remove, rubber - static const IconData lightEraser = IconDataLight(0xf12d); + static const IconData lightEraser = IconData(0xf12d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eraser icon /// /// https://fontawesome.com/icons/eraser?style=thin /// art, delete, remove, rubber - static const IconData thinEraser = IconDataThin(0xf12d); + static const IconData thinEraser = IconData(0xf12d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Erlang icon /// /// https://fontawesome.com/icons/erlang?style=brands - static const IconData erlang = IconDataBrands(0xf39d); + static const IconData erlang = IconData(0xf39d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Escalator icon /// /// https://fontawesome.com/icons/escalator?style=solid /// elevator, rise, stairs - static const IconData solidEscalator = IconDataSolid(0xe171); + static const IconData solidEscalator = IconData(0xe171, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Escalator icon /// /// https://fontawesome.com/icons/escalator?style=regular /// elevator, rise, stairs - static const IconData escalator = IconDataRegular(0xe171); + static const IconData escalator = IconData(0xe171, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Escalator icon /// /// https://fontawesome.com/icons/escalator?style=light /// elevator, rise, stairs - static const IconData lightEscalator = IconDataLight(0xe171); + static const IconData lightEscalator = IconData(0xe171, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Escalator icon /// /// https://fontawesome.com/icons/escalator?style=thin /// elevator, rise, stairs - static const IconData thinEscalator = IconDataThin(0xe171); + static const IconData thinEscalator = IconData(0xe171, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Ethereum icon /// /// https://fontawesome.com/icons/ethereum?style=brands - static const IconData ethereum = IconDataBrands(0xf42e); + static const IconData ethereum = IconData(0xf42e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ethernet icon /// /// https://fontawesome.com/icons/ethernet?style=solid /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData solidEthernet = IconDataSolid(0xf796); + static const IconData solidEthernet = IconData(0xf796, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ethernet icon /// /// https://fontawesome.com/icons/ethernet?style=regular /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData ethernet = IconDataRegular(0xf796); + static const IconData ethernet = IconData(0xf796, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ethernet icon /// /// https://fontawesome.com/icons/ethernet?style=light /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData lightEthernet = IconDataLight(0xf796); + static const IconData lightEthernet = IconData(0xf796, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ethernet icon /// /// https://fontawesome.com/icons/ethernet?style=thin /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData thinEthernet = IconDataThin(0xf796); + static const IconData thinEthernet = IconData(0xf796, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Etsy icon /// /// https://fontawesome.com/icons/etsy?style=brands - static const IconData etsy = IconDataBrands(0xf2d7); + static const IconData etsy = IconData(0xf2d7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Euro Sign icon /// /// https://fontawesome.com/icons/euro-sign?style=solid /// Euro Sign, currency - static const IconData solidEuroSign = IconDataSolid(0xf153); + static const IconData solidEuroSign = IconData(0xf153, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias eur for icon [solidEuroSign] @Deprecated('Use "solidEuroSign" instead.') @@ -32822,7 +32822,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/euro-sign?style=regular /// Euro Sign, currency - static const IconData euroSign = IconDataRegular(0xf153); + static const IconData euroSign = IconData(0xf153, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias eur for icon [euroSign] @Deprecated('Use "euroSign" instead.') @@ -32836,7 +32836,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/euro-sign?style=light /// Euro Sign, currency - static const IconData lightEuroSign = IconDataLight(0xf153); + static const IconData lightEuroSign = IconData(0xf153, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias eur for icon [lightEuroSign] @Deprecated('Use "lightEuroSign" instead.') @@ -32850,7 +32850,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/euro-sign?style=thin /// Euro Sign, currency - static const IconData thinEuroSign = IconDataThin(0xf153); + static const IconData thinEuroSign = IconData(0xf153, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias eur for icon [thinEuroSign] @Deprecated('Use "thinEuroSign" instead.') @@ -32863,162 +32863,162 @@ class FontAwesomeIcons { /// Brands Evernote icon /// /// https://fontawesome.com/icons/evernote?style=brands - static const IconData evernote = IconDataBrands(0xf839); + static const IconData evernote = IconData(0xf839, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Excavator icon /// /// https://fontawesome.com/icons/excavator?style=solid /// dig, earth, construction, dirt - static const IconData solidExcavator = IconDataSolid(0xe656); + static const IconData solidExcavator = IconData(0xe656, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Excavator icon /// /// https://fontawesome.com/icons/excavator?style=regular /// dig, earth, construction, dirt - static const IconData excavator = IconDataRegular(0xe656); + static const IconData excavator = IconData(0xe656, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Excavator icon /// /// https://fontawesome.com/icons/excavator?style=light /// dig, earth, construction, dirt - static const IconData lightExcavator = IconDataLight(0xe656); + static const IconData lightExcavator = IconData(0xe656, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Excavator icon /// /// https://fontawesome.com/icons/excavator?style=thin /// dig, earth, construction, dirt - static const IconData thinExcavator = IconDataThin(0xe656); + static const IconData thinExcavator = IconData(0xe656, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Exclamation icon /// /// https://fontawesome.com/icons/exclamation?style=solid /// !, Exclamation Mark, alert, attention, danger, error, exclamation, failed, important, mark, notice, notification, notify, outlined, problem, punctuation, red exclamation mark, required, warning, white exclamation mark - static const IconData solidExclamation = IconDataSolid(0x21); + static const IconData solidExclamation = IconData(0x21, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Exclamation icon /// /// https://fontawesome.com/icons/exclamation?style=regular /// !, Exclamation Mark, alert, attention, danger, error, exclamation, failed, important, mark, notice, notification, notify, outlined, problem, punctuation, red exclamation mark, required, warning, white exclamation mark - static const IconData exclamation = IconDataRegular(0x21); + static const IconData exclamation = IconData(0x21, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Exclamation icon /// /// https://fontawesome.com/icons/exclamation?style=light /// !, Exclamation Mark, alert, attention, danger, error, exclamation, failed, important, mark, notice, notification, notify, outlined, problem, punctuation, red exclamation mark, required, warning, white exclamation mark - static const IconData lightExclamation = IconDataLight(0x21); + static const IconData lightExclamation = IconData(0x21, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Exclamation icon /// /// https://fontawesome.com/icons/exclamation?style=thin /// !, Exclamation Mark, alert, attention, danger, error, exclamation, failed, important, mark, notice, notification, notify, outlined, problem, punctuation, red exclamation mark, required, warning, white exclamation mark - static const IconData thinExclamation = IconDataThin(0x21); + static const IconData thinExclamation = IconData(0x21, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Expand icon /// /// https://fontawesome.com/icons/expand?style=solid /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData solidExpand = IconDataSolid(0xf065); + static const IconData solidExpand = IconData(0xf065, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Expand icon /// /// https://fontawesome.com/icons/expand?style=regular /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData expand = IconDataRegular(0xf065); + static const IconData expand = IconData(0xf065, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Expand icon /// /// https://fontawesome.com/icons/expand?style=light /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData lightExpand = IconDataLight(0xf065); + static const IconData lightExpand = IconData(0xf065, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Expand icon /// /// https://fontawesome.com/icons/expand?style=thin /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData thinExpand = IconDataThin(0xf065); + static const IconData thinExpand = IconData(0xf065, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Expand Wide icon /// /// https://fontawesome.com/icons/expand-wide?style=solid /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData solidExpandWide = IconDataSolid(0xf320); + static const IconData solidExpandWide = IconData(0xf320, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Expand Wide icon /// /// https://fontawesome.com/icons/expand-wide?style=regular /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData expandWide = IconDataRegular(0xf320); + static const IconData expandWide = IconData(0xf320, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Expand Wide icon /// /// https://fontawesome.com/icons/expand-wide?style=light /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData lightExpandWide = IconDataLight(0xf320); + static const IconData lightExpandWide = IconData(0xf320, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Expand Wide icon /// /// https://fontawesome.com/icons/expand-wide?style=thin /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData thinExpandWide = IconDataThin(0xf320); + static const IconData thinExpandWide = IconData(0xf320, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands ExpeditedSSL icon /// /// https://fontawesome.com/icons/expeditedssl?style=brands - static const IconData expeditedssl = IconDataBrands(0xf23e); + static const IconData expeditedssl = IconData(0xf23e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Explosion icon /// /// https://fontawesome.com/icons/explosion?style=solid /// blast, blowup, boom, crash, detonation, explosion - static const IconData solidExplosion = IconDataSolid(0xe4e9); + static const IconData solidExplosion = IconData(0xe4e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Explosion icon /// /// https://fontawesome.com/icons/explosion?style=regular /// blast, blowup, boom, crash, detonation, explosion - static const IconData explosion = IconDataRegular(0xe4e9); + static const IconData explosion = IconData(0xe4e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Explosion icon /// /// https://fontawesome.com/icons/explosion?style=light /// blast, blowup, boom, crash, detonation, explosion - static const IconData lightExplosion = IconDataLight(0xe4e9); + static const IconData lightExplosion = IconData(0xe4e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Explosion icon /// /// https://fontawesome.com/icons/explosion?style=thin /// blast, blowup, boom, crash, detonation, explosion - static const IconData thinExplosion = IconDataThin(0xe4e9); + static const IconData thinExplosion = IconData(0xe4e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eye icon /// /// https://fontawesome.com/icons/eye?style=solid /// body, eye, look, optic, see, seen, show, sight, views, visible - static const IconData solidEye = IconDataSolid(0xf06e); + static const IconData solidEye = IconData(0xf06e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eye icon /// /// https://fontawesome.com/icons/eye?style=regular /// body, eye, look, optic, see, seen, show, sight, views, visible - static const IconData eye = IconDataRegular(0xf06e); + static const IconData eye = IconData(0xf06e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eye icon /// /// https://fontawesome.com/icons/eye?style=light /// body, eye, look, optic, see, seen, show, sight, views, visible - static const IconData lightEye = IconDataLight(0xf06e); + static const IconData lightEye = IconData(0xf06e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eye icon /// /// https://fontawesome.com/icons/eye?style=thin /// body, eye, look, optic, see, seen, show, sight, views, visible - static const IconData thinEye = IconDataThin(0xf06e); + static const IconData thinEye = IconData(0xf06e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eye Dropper icon /// /// https://fontawesome.com/icons/eye-dropper?style=solid /// beaker, clone, color, copy, eyedropper, pipette - static const IconData solidEyeDropper = IconDataSolid(0xf1fb); + static const IconData solidEyeDropper = IconData(0xf1fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias eye-dropper-empty for icon [solidEyeDropper] @Deprecated('Use "solidEyeDropper" instead.') @@ -33032,7 +33032,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-dropper?style=regular /// beaker, clone, color, copy, eyedropper, pipette - static const IconData eyeDropper = IconDataRegular(0xf1fb); + static const IconData eyeDropper = IconData(0xf1fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias eye-dropper-empty for icon [eyeDropper] @Deprecated('Use "eyeDropper" instead.') @@ -33046,7 +33046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-dropper?style=light /// beaker, clone, color, copy, eyedropper, pipette - static const IconData lightEyeDropper = IconDataLight(0xf1fb); + static const IconData lightEyeDropper = IconData(0xf1fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias eye-dropper-empty for icon [lightEyeDropper] @Deprecated('Use "lightEyeDropper" instead.') @@ -33060,7 +33060,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-dropper?style=thin /// beaker, clone, color, copy, eyedropper, pipette - static const IconData thinEyeDropper = IconDataThin(0xf1fb); + static const IconData thinEyeDropper = IconData(0xf1fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias eye-dropper-empty for icon [thinEyeDropper] @Deprecated('Use "thinEyeDropper" instead.') @@ -33074,79 +33074,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-dropper-full?style=solid /// color, eyedrop - static const IconData solidEyeDropperFull = IconDataSolid(0xe172); + static const IconData solidEyeDropperFull = IconData(0xe172, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eye Dropper Full icon /// /// https://fontawesome.com/icons/eye-dropper-full?style=regular /// color, eyedrop - static const IconData eyeDropperFull = IconDataRegular(0xe172); + static const IconData eyeDropperFull = IconData(0xe172, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eye Dropper Full icon /// /// https://fontawesome.com/icons/eye-dropper-full?style=light /// color, eyedrop - static const IconData lightEyeDropperFull = IconDataLight(0xe172); + static const IconData lightEyeDropperFull = IconData(0xe172, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eye Dropper Full icon /// /// https://fontawesome.com/icons/eye-dropper-full?style=thin /// color, eyedrop - static const IconData thinEyeDropperFull = IconDataThin(0xe172); + static const IconData thinEyeDropperFull = IconData(0xe172, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eye Dropper Half icon /// /// https://fontawesome.com/icons/eye-dropper-half?style=solid /// color, eyedrop - static const IconData solidEyeDropperHalf = IconDataSolid(0xe173); + static const IconData solidEyeDropperHalf = IconData(0xe173, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eye Dropper Half icon /// /// https://fontawesome.com/icons/eye-dropper-half?style=regular /// color, eyedrop - static const IconData eyeDropperHalf = IconDataRegular(0xe173); + static const IconData eyeDropperHalf = IconData(0xe173, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eye Dropper Half icon /// /// https://fontawesome.com/icons/eye-dropper-half?style=light /// color, eyedrop - static const IconData lightEyeDropperHalf = IconDataLight(0xe173); + static const IconData lightEyeDropperHalf = IconData(0xe173, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eye Dropper Half icon /// /// https://fontawesome.com/icons/eye-dropper-half?style=thin /// color, eyedrop - static const IconData thinEyeDropperHalf = IconDataThin(0xe173); + static const IconData thinEyeDropperHalf = IconData(0xe173, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eye Evil icon /// /// https://fontawesome.com/icons/eye-evil?style=solid /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData solidEyeEvil = IconDataSolid(0xf6db); + static const IconData solidEyeEvil = IconData(0xf6db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eye Evil icon /// /// https://fontawesome.com/icons/eye-evil?style=regular /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData eyeEvil = IconDataRegular(0xf6db); + static const IconData eyeEvil = IconData(0xf6db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eye Evil icon /// /// https://fontawesome.com/icons/eye-evil?style=light /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData lightEyeEvil = IconDataLight(0xf6db); + static const IconData lightEyeEvil = IconData(0xf6db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eye Evil icon /// /// https://fontawesome.com/icons/eye-evil?style=thin /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData thinEyeEvil = IconDataThin(0xf6db); + static const IconData thinEyeEvil = IconData(0xf6db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eye Low Vision icon /// /// https://fontawesome.com/icons/eye-low-vision?style=solid /// blind, eye, sight - static const IconData solidEyeLowVision = IconDataSolid(0xf2a8); + static const IconData solidEyeLowVision = IconData(0xf2a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias low-vision for icon [solidEyeLowVision] @Deprecated('Use "solidEyeLowVision" instead.') @@ -33156,7 +33156,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-low-vision?style=regular /// blind, eye, sight - static const IconData eyeLowVision = IconDataRegular(0xf2a8); + static const IconData eyeLowVision = IconData(0xf2a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias low-vision for icon [eyeLowVision] @Deprecated('Use "eyeLowVision" instead.') @@ -33166,7 +33166,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-low-vision?style=light /// blind, eye, sight - static const IconData lightEyeLowVision = IconDataLight(0xf2a8); + static const IconData lightEyeLowVision = IconData(0xf2a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias low-vision for icon [lightEyeLowVision] @Deprecated('Use "lightEyeLowVision" instead.') @@ -33176,7 +33176,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-low-vision?style=thin /// blind, eye, sight - static const IconData thinEyeLowVision = IconDataThin(0xf2a8); + static const IconData thinEyeLowVision = IconData(0xf2a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias low-vision for icon [thinEyeLowVision] @Deprecated('Use "thinEyeLowVision" instead.') @@ -33186,79 +33186,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/eye-slash?style=solid /// blind, disabled, hide, show, toggle, unseen, views, visible, visiblity - static const IconData solidEyeSlash = IconDataSolid(0xf070); + static const IconData solidEyeSlash = IconData(0xf070, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eye Slash icon /// /// https://fontawesome.com/icons/eye-slash?style=regular /// blind, disabled, hide, show, toggle, unseen, views, visible, visiblity - static const IconData eyeSlash = IconDataRegular(0xf070); + static const IconData eyeSlash = IconData(0xf070, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eye Slash icon /// /// https://fontawesome.com/icons/eye-slash?style=light /// blind, disabled, hide, show, toggle, unseen, views, visible, visiblity - static const IconData lightEyeSlash = IconDataLight(0xf070); + static const IconData lightEyeSlash = IconData(0xf070, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eye Slash icon /// /// https://fontawesome.com/icons/eye-slash?style=thin /// blind, disabled, hide, show, toggle, unseen, views, visible, visiblity - static const IconData thinEyeSlash = IconDataThin(0xf070); + static const IconData thinEyeSlash = IconData(0xf070, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Eyes icon /// /// https://fontawesome.com/icons/eyes?style=solid /// eye, idea, look, see - static const IconData solidEyes = IconDataSolid(0xe367); + static const IconData solidEyes = IconData(0xe367, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Eyes icon /// /// https://fontawesome.com/icons/eyes?style=regular /// eye, idea, look, see - static const IconData eyes = IconDataRegular(0xe367); + static const IconData eyes = IconData(0xe367, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Eyes icon /// /// https://fontawesome.com/icons/eyes?style=light /// eye, idea, look, see - static const IconData lightEyes = IconDataLight(0xe367); + static const IconData lightEyes = IconData(0xe367, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Eyes icon /// /// https://fontawesome.com/icons/eyes?style=thin /// eye, idea, look, see - static const IconData thinEyes = IconDataThin(0xe367); + static const IconData thinEyes = IconData(0xe367, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid F icon /// /// https://fontawesome.com/icons/f?style=solid /// Latin Capital Letter F, Latin Small Letter F, letter - static const IconData solidF = IconDataSolid(0x46); + static const IconData solidF = IconData(0x46, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular F icon /// /// https://fontawesome.com/icons/f?style=regular /// Latin Capital Letter F, Latin Small Letter F, letter - static const IconData f = IconDataRegular(0x46); + static const IconData f = IconData(0x46, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light F icon /// /// https://fontawesome.com/icons/f?style=light /// Latin Capital Letter F, Latin Small Letter F, letter - static const IconData lightF = IconDataLight(0x46); + static const IconData lightF = IconData(0x46, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin F icon /// /// https://fontawesome.com/icons/f?style=thin /// Latin Capital Letter F, Latin Small Letter F, letter - static const IconData thinF = IconDataThin(0x46); + static const IconData thinF = IconData(0x46, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Angry icon /// /// https://fontawesome.com/icons/face-angry?style=solid /// angry, angry face, disapprove, emoticon, face, mad, upset - static const IconData solidFaceAngry = IconDataSolid(0xf556); + static const IconData solidFaceAngry = IconData(0xf556, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias angry for icon [solidFaceAngry] @Deprecated('Use "solidFaceAngry" instead.') @@ -33268,7 +33268,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-angry?style=regular /// angry, angry face, disapprove, emoticon, face, mad, upset - static const IconData faceAngry = IconDataRegular(0xf556); + static const IconData faceAngry = IconData(0xf556, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias angry for icon [faceAngry] @Deprecated('Use "faceAngry" instead.') @@ -33278,7 +33278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-angry?style=light /// angry, angry face, disapprove, emoticon, face, mad, upset - static const IconData lightFaceAngry = IconDataLight(0xf556); + static const IconData lightFaceAngry = IconData(0xf556, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias angry for icon [lightFaceAngry] @Deprecated('Use "lightFaceAngry" instead.') @@ -33288,7 +33288,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-angry?style=thin /// angry, angry face, disapprove, emoticon, face, mad, upset - static const IconData thinFaceAngry = IconDataThin(0xf556); + static const IconData thinFaceAngry = IconData(0xf556, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias angry for icon [thinFaceAngry] @Deprecated('Use "thinFaceAngry" instead.') @@ -33298,103 +33298,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-angry-horns?style=solid /// angry face with horns, demon, devil, face, fantasy, goblin, imp - static const IconData solidFaceAngryHorns = IconDataSolid(0xe368); + static const IconData solidFaceAngryHorns = IconData(0xe368, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Angry Horns icon /// /// https://fontawesome.com/icons/face-angry-horns?style=regular /// angry face with horns, demon, devil, face, fantasy, goblin, imp - static const IconData faceAngryHorns = IconDataRegular(0xe368); + static const IconData faceAngryHorns = IconData(0xe368, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Angry Horns icon /// /// https://fontawesome.com/icons/face-angry-horns?style=light /// angry face with horns, demon, devil, face, fantasy, goblin, imp - static const IconData lightFaceAngryHorns = IconDataLight(0xe368); + static const IconData lightFaceAngryHorns = IconData(0xe368, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Angry Horns icon /// /// https://fontawesome.com/icons/face-angry-horns?style=thin /// angry face with horns, demon, devil, face, fantasy, goblin, imp - static const IconData thinFaceAngryHorns = IconDataThin(0xe368); + static const IconData thinFaceAngryHorns = IconData(0xe368, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Anguished icon /// /// https://fontawesome.com/icons/face-anguished?style=solid /// anguished, anguished face, confusion, face, frown, pain, sadness - static const IconData solidFaceAnguished = IconDataSolid(0xe369); + static const IconData solidFaceAnguished = IconData(0xe369, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Anguished icon /// /// https://fontawesome.com/icons/face-anguished?style=regular /// anguished, anguished face, confusion, face, frown, pain, sadness - static const IconData faceAnguished = IconDataRegular(0xe369); + static const IconData faceAnguished = IconData(0xe369, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Anguished icon /// /// https://fontawesome.com/icons/face-anguished?style=light /// anguished, anguished face, confusion, face, frown, pain, sadness - static const IconData lightFaceAnguished = IconDataLight(0xe369); + static const IconData lightFaceAnguished = IconData(0xe369, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Anguished icon /// /// https://fontawesome.com/icons/face-anguished?style=thin /// anguished, anguished face, confusion, face, frown, pain, sadness - static const IconData thinFaceAnguished = IconDataThin(0xe369); + static const IconData thinFaceAnguished = IconData(0xe369, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Anxious Sweat icon /// /// https://fontawesome.com/icons/face-anxious-sweat?style=solid /// anxiety, anxious face with sweat, blue, cold, concern, face, nervous, rushed, sad, sweat - static const IconData solidFaceAnxiousSweat = IconDataSolid(0xe36a); + static const IconData solidFaceAnxiousSweat = IconData(0xe36a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Anxious Sweat icon /// /// https://fontawesome.com/icons/face-anxious-sweat?style=regular /// anxiety, anxious face with sweat, blue, cold, concern, face, nervous, rushed, sad, sweat - static const IconData faceAnxiousSweat = IconDataRegular(0xe36a); + static const IconData faceAnxiousSweat = IconData(0xe36a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Anxious Sweat icon /// /// https://fontawesome.com/icons/face-anxious-sweat?style=light /// anxiety, anxious face with sweat, blue, cold, concern, face, nervous, rushed, sad, sweat - static const IconData lightFaceAnxiousSweat = IconDataLight(0xe36a); + static const IconData lightFaceAnxiousSweat = IconData(0xe36a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Anxious Sweat icon /// /// https://fontawesome.com/icons/face-anxious-sweat?style=thin /// anxiety, anxious face with sweat, blue, cold, concern, face, nervous, rushed, sad, sweat - static const IconData thinFaceAnxiousSweat = IconDataThin(0xe36a); + static const IconData thinFaceAnxiousSweat = IconData(0xe36a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Astonished icon /// /// https://fontawesome.com/icons/face-astonished?style=solid /// astonished, astonished face, disbelief, face, gasp, shock, shocked, surprise, totally - static const IconData solidFaceAstonished = IconDataSolid(0xe36b); + static const IconData solidFaceAstonished = IconData(0xe36b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Astonished icon /// /// https://fontawesome.com/icons/face-astonished?style=regular /// astonished, astonished face, disbelief, face, gasp, shock, shocked, surprise, totally - static const IconData faceAstonished = IconDataRegular(0xe36b); + static const IconData faceAstonished = IconData(0xe36b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Astonished icon /// /// https://fontawesome.com/icons/face-astonished?style=light /// astonished, astonished face, disbelief, face, gasp, shock, shocked, surprise, totally - static const IconData lightFaceAstonished = IconDataLight(0xe36b); + static const IconData lightFaceAstonished = IconData(0xe36b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Astonished icon /// /// https://fontawesome.com/icons/face-astonished?style=thin /// astonished, astonished face, disbelief, face, gasp, shock, shocked, surprise, totally - static const IconData thinFaceAstonished = IconDataThin(0xe36b); + static const IconData thinFaceAstonished = IconData(0xe36b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Awesome icon /// /// https://fontawesome.com/icons/face-awesome?style=solid /// amazing, awesome, grin, look, smile, troll - static const IconData solidFaceAwesome = IconDataSolid(0xe409); + static const IconData solidFaceAwesome = IconData(0xe409, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias gave-dandy for icon [solidFaceAwesome] @Deprecated('Use "solidFaceAwesome" instead.') @@ -33404,7 +33404,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-awesome?style=regular /// amazing, awesome, grin, look, smile, troll - static const IconData faceAwesome = IconDataRegular(0xe409); + static const IconData faceAwesome = IconData(0xe409, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias gave-dandy for icon [faceAwesome] @Deprecated('Use "faceAwesome" instead.') @@ -33414,7 +33414,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-awesome?style=light /// amazing, awesome, grin, look, smile, troll - static const IconData lightFaceAwesome = IconDataLight(0xe409); + static const IconData lightFaceAwesome = IconData(0xe409, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias gave-dandy for icon [lightFaceAwesome] @Deprecated('Use "lightFaceAwesome" instead.') @@ -33424,7 +33424,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-awesome?style=thin /// amazing, awesome, grin, look, smile, troll - static const IconData thinFaceAwesome = IconDataThin(0xe409); + static const IconData thinFaceAwesome = IconData(0xe409, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias gave-dandy for icon [thinFaceAwesome] @Deprecated('Use "thinFaceAwesome" instead.') @@ -33434,199 +33434,199 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-beam-hand-over-mouth?style=solid /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData solidFaceBeamHandOverMouth = IconDataSolid(0xe47c); + static const IconData solidFaceBeamHandOverMouth = IconData(0xe47c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Beam Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-beam-hand-over-mouth?style=regular /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData faceBeamHandOverMouth = IconDataRegular(0xe47c); + static const IconData faceBeamHandOverMouth = IconData(0xe47c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Beam Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-beam-hand-over-mouth?style=light /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData lightFaceBeamHandOverMouth = IconDataLight(0xe47c); + static const IconData lightFaceBeamHandOverMouth = IconData(0xe47c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Beam Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-beam-hand-over-mouth?style=thin /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData thinFaceBeamHandOverMouth = IconDataThin(0xe47c); + static const IconData thinFaceBeamHandOverMouth = IconData(0xe47c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Clouds icon /// /// https://fontawesome.com/icons/face-clouds?style=solid /// bliss, brain fog, calm, confusion, foggy, forget, haze, smoke - static const IconData solidFaceClouds = IconDataSolid(0xe47d); + static const IconData solidFaceClouds = IconData(0xe47d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Clouds icon /// /// https://fontawesome.com/icons/face-clouds?style=regular /// bliss, brain fog, calm, confusion, foggy, forget, haze, smoke - static const IconData faceClouds = IconDataRegular(0xe47d); + static const IconData faceClouds = IconData(0xe47d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Clouds icon /// /// https://fontawesome.com/icons/face-clouds?style=light /// bliss, brain fog, calm, confusion, foggy, forget, haze, smoke - static const IconData lightFaceClouds = IconDataLight(0xe47d); + static const IconData lightFaceClouds = IconData(0xe47d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Clouds icon /// /// https://fontawesome.com/icons/face-clouds?style=thin /// bliss, brain fog, calm, confusion, foggy, forget, haze, smoke - static const IconData thinFaceClouds = IconDataThin(0xe47d); + static const IconData thinFaceClouds = IconData(0xe47d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Confounded icon /// /// https://fontawesome.com/icons/face-confounded?style=solid /// confounded, confounded face, face, grimace, quiver, scrunched, squiggle - static const IconData solidFaceConfounded = IconDataSolid(0xe36c); + static const IconData solidFaceConfounded = IconData(0xe36c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Confounded icon /// /// https://fontawesome.com/icons/face-confounded?style=regular /// confounded, confounded face, face, grimace, quiver, scrunched, squiggle - static const IconData faceConfounded = IconDataRegular(0xe36c); + static const IconData faceConfounded = IconData(0xe36c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Confounded icon /// /// https://fontawesome.com/icons/face-confounded?style=light /// confounded, confounded face, face, grimace, quiver, scrunched, squiggle - static const IconData lightFaceConfounded = IconDataLight(0xe36c); + static const IconData lightFaceConfounded = IconData(0xe36c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Confounded icon /// /// https://fontawesome.com/icons/face-confounded?style=thin /// confounded, confounded face, face, grimace, quiver, scrunched, squiggle - static const IconData thinFaceConfounded = IconDataThin(0xe36c); + static const IconData thinFaceConfounded = IconData(0xe36c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Confused icon /// /// https://fontawesome.com/icons/face-confused?style=solid /// confused, confused face, face, meh, nonplussed, puzzled - static const IconData solidFaceConfused = IconDataSolid(0xe36d); + static const IconData solidFaceConfused = IconData(0xe36d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Confused icon /// /// https://fontawesome.com/icons/face-confused?style=regular /// confused, confused face, face, meh, nonplussed, puzzled - static const IconData faceConfused = IconDataRegular(0xe36d); + static const IconData faceConfused = IconData(0xe36d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Confused icon /// /// https://fontawesome.com/icons/face-confused?style=light /// confused, confused face, face, meh, nonplussed, puzzled - static const IconData lightFaceConfused = IconDataLight(0xe36d); + static const IconData lightFaceConfused = IconData(0xe36d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Confused icon /// /// https://fontawesome.com/icons/face-confused?style=thin /// confused, confused face, face, meh, nonplussed, puzzled - static const IconData thinFaceConfused = IconDataThin(0xe36d); + static const IconData thinFaceConfused = IconData(0xe36d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Cowboy Hat icon /// /// https://fontawesome.com/icons/face-cowboy-hat?style=solid /// cowboy, cowboy hat face, cowgirl, face, hat - static const IconData solidFaceCowboyHat = IconDataSolid(0xe36e); + static const IconData solidFaceCowboyHat = IconData(0xe36e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Cowboy Hat icon /// /// https://fontawesome.com/icons/face-cowboy-hat?style=regular /// cowboy, cowboy hat face, cowgirl, face, hat - static const IconData faceCowboyHat = IconDataRegular(0xe36e); + static const IconData faceCowboyHat = IconData(0xe36e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Cowboy Hat icon /// /// https://fontawesome.com/icons/face-cowboy-hat?style=light /// cowboy, cowboy hat face, cowgirl, face, hat - static const IconData lightFaceCowboyHat = IconDataLight(0xe36e); + static const IconData lightFaceCowboyHat = IconData(0xe36e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Cowboy Hat icon /// /// https://fontawesome.com/icons/face-cowboy-hat?style=thin /// cowboy, cowboy hat face, cowgirl, face, hat - static const IconData thinFaceCowboyHat = IconDataThin(0xe36e); + static const IconData thinFaceCowboyHat = IconData(0xe36e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Diagonal Mouth icon /// /// https://fontawesome.com/icons/face-diagonal-mouth?style=solid /// confusion, frustration, skepticism - static const IconData solidFaceDiagonalMouth = IconDataSolid(0xe47e); + static const IconData solidFaceDiagonalMouth = IconData(0xe47e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Diagonal Mouth icon /// /// https://fontawesome.com/icons/face-diagonal-mouth?style=regular /// confusion, frustration, skepticism - static const IconData faceDiagonalMouth = IconDataRegular(0xe47e); + static const IconData faceDiagonalMouth = IconData(0xe47e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Diagonal Mouth icon /// /// https://fontawesome.com/icons/face-diagonal-mouth?style=light /// confusion, frustration, skepticism - static const IconData lightFaceDiagonalMouth = IconDataLight(0xe47e); + static const IconData lightFaceDiagonalMouth = IconData(0xe47e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Diagonal Mouth icon /// /// https://fontawesome.com/icons/face-diagonal-mouth?style=thin /// confusion, frustration, skepticism - static const IconData thinFaceDiagonalMouth = IconDataThin(0xe47e); + static const IconData thinFaceDiagonalMouth = IconData(0xe47e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Disappointed icon /// /// https://fontawesome.com/icons/face-disappointed?style=solid /// disappointed, disappointed face, face, sad, sadface - static const IconData solidFaceDisappointed = IconDataSolid(0xe36f); + static const IconData solidFaceDisappointed = IconData(0xe36f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Disappointed icon /// /// https://fontawesome.com/icons/face-disappointed?style=regular /// disappointed, disappointed face, face, sad, sadface - static const IconData faceDisappointed = IconDataRegular(0xe36f); + static const IconData faceDisappointed = IconData(0xe36f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Disappointed icon /// /// https://fontawesome.com/icons/face-disappointed?style=light /// disappointed, disappointed face, face, sad, sadface - static const IconData lightFaceDisappointed = IconDataLight(0xe36f); + static const IconData lightFaceDisappointed = IconData(0xe36f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Disappointed icon /// /// https://fontawesome.com/icons/face-disappointed?style=thin /// disappointed, disappointed face, face, sad, sadface - static const IconData thinFaceDisappointed = IconDataThin(0xe36f); + static const IconData thinFaceDisappointed = IconData(0xe36f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Disguise icon /// /// https://fontawesome.com/icons/face-disguise?style=solid /// disguise, disguised face, face, glasses, groucho, incognito, mustache, nose, spy - static const IconData solidFaceDisguise = IconDataSolid(0xe370); + static const IconData solidFaceDisguise = IconData(0xe370, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Disguise icon /// /// https://fontawesome.com/icons/face-disguise?style=regular /// disguise, disguised face, face, glasses, groucho, incognito, mustache, nose, spy - static const IconData faceDisguise = IconDataRegular(0xe370); + static const IconData faceDisguise = IconData(0xe370, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Disguise icon /// /// https://fontawesome.com/icons/face-disguise?style=light /// disguise, disguised face, face, glasses, groucho, incognito, mustache, nose, spy - static const IconData lightFaceDisguise = IconDataLight(0xe370); + static const IconData lightFaceDisguise = IconData(0xe370, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Disguise icon /// /// https://fontawesome.com/icons/face-disguise?style=thin /// disguise, disguised face, face, glasses, groucho, incognito, mustache, nose, spy - static const IconData thinFaceDisguise = IconDataThin(0xe370); + static const IconData thinFaceDisguise = IconData(0xe370, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Dizzy icon /// /// https://fontawesome.com/icons/face-dizzy?style=solid /// dazed, dead, disapprove, emoticon, face - static const IconData solidFaceDizzy = IconDataSolid(0xf567); + static const IconData solidFaceDizzy = IconData(0xf567, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dizzy for icon [solidFaceDizzy] @Deprecated('Use "solidFaceDizzy" instead.') @@ -33636,7 +33636,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-dizzy?style=regular /// dazed, dead, disapprove, emoticon, face - static const IconData faceDizzy = IconDataRegular(0xf567); + static const IconData faceDizzy = IconData(0xf567, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dizzy for icon [faceDizzy] @Deprecated('Use "faceDizzy" instead.') @@ -33646,7 +33646,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-dizzy?style=light /// dazed, dead, disapprove, emoticon, face - static const IconData lightFaceDizzy = IconDataLight(0xf567); + static const IconData lightFaceDizzy = IconData(0xf567, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dizzy for icon [lightFaceDizzy] @Deprecated('Use "lightFaceDizzy" instead.') @@ -33656,7 +33656,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-dizzy?style=thin /// dazed, dead, disapprove, emoticon, face - static const IconData thinFaceDizzy = IconDataThin(0xf567); + static const IconData thinFaceDizzy = IconData(0xf567, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dizzy for icon [thinFaceDizzy] @Deprecated('Use "thinFaceDizzy" instead.') @@ -33666,103 +33666,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-dotted?style=solid /// default, depression, hidden, hide, invisible, quiet - static const IconData solidFaceDotted = IconDataSolid(0xe47f); + static const IconData solidFaceDotted = IconData(0xe47f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Dotted icon /// /// https://fontawesome.com/icons/face-dotted?style=regular /// default, depression, hidden, hide, invisible, quiet - static const IconData faceDotted = IconDataRegular(0xe47f); + static const IconData faceDotted = IconData(0xe47f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Dotted icon /// /// https://fontawesome.com/icons/face-dotted?style=light /// default, depression, hidden, hide, invisible, quiet - static const IconData lightFaceDotted = IconDataLight(0xe47f); + static const IconData lightFaceDotted = IconData(0xe47f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Dotted icon /// /// https://fontawesome.com/icons/face-dotted?style=thin /// default, depression, hidden, hide, invisible, quiet - static const IconData thinFaceDotted = IconDataThin(0xe47f); + static const IconData thinFaceDotted = IconData(0xe47f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Downcast Sweat icon /// /// https://fontawesome.com/icons/face-downcast-sweat?style=solid /// cold, downcast face with sweat, face, hard work, sweat, tired, tough - static const IconData solidFaceDowncastSweat = IconDataSolid(0xe371); + static const IconData solidFaceDowncastSweat = IconData(0xe371, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Downcast Sweat icon /// /// https://fontawesome.com/icons/face-downcast-sweat?style=regular /// cold, downcast face with sweat, face, hard work, sweat, tired, tough - static const IconData faceDowncastSweat = IconDataRegular(0xe371); + static const IconData faceDowncastSweat = IconData(0xe371, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Downcast Sweat icon /// /// https://fontawesome.com/icons/face-downcast-sweat?style=light /// cold, downcast face with sweat, face, hard work, sweat, tired, tough - static const IconData lightFaceDowncastSweat = IconDataLight(0xe371); + static const IconData lightFaceDowncastSweat = IconData(0xe371, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Downcast Sweat icon /// /// https://fontawesome.com/icons/face-downcast-sweat?style=thin /// cold, downcast face with sweat, face, hard work, sweat, tired, tough - static const IconData thinFaceDowncastSweat = IconDataThin(0xe371); + static const IconData thinFaceDowncastSweat = IconData(0xe371, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Drooling icon /// /// https://fontawesome.com/icons/face-drooling?style=solid /// drool, drooling, drooling face, face, sleep, spit - static const IconData solidFaceDrooling = IconDataSolid(0xe372); + static const IconData solidFaceDrooling = IconData(0xe372, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Drooling icon /// /// https://fontawesome.com/icons/face-drooling?style=regular /// drool, drooling, drooling face, face, sleep, spit - static const IconData faceDrooling = IconDataRegular(0xe372); + static const IconData faceDrooling = IconData(0xe372, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Drooling icon /// /// https://fontawesome.com/icons/face-drooling?style=light /// drool, drooling, drooling face, face, sleep, spit - static const IconData lightFaceDrooling = IconDataLight(0xe372); + static const IconData lightFaceDrooling = IconData(0xe372, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Drooling icon /// /// https://fontawesome.com/icons/face-drooling?style=thin /// drool, drooling, drooling face, face, sleep, spit - static const IconData thinFaceDrooling = IconDataThin(0xe372); + static const IconData thinFaceDrooling = IconData(0xe372, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Exhaling icon /// /// https://fontawesome.com/icons/face-exhaling?style=solid /// breath, exhale, exhaustion, relief, sigh - static const IconData solidFaceExhaling = IconDataSolid(0xe480); + static const IconData solidFaceExhaling = IconData(0xe480, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Exhaling icon /// /// https://fontawesome.com/icons/face-exhaling?style=regular /// breath, exhale, exhaustion, relief, sigh - static const IconData faceExhaling = IconDataRegular(0xe480); + static const IconData faceExhaling = IconData(0xe480, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Exhaling icon /// /// https://fontawesome.com/icons/face-exhaling?style=light /// breath, exhale, exhaustion, relief, sigh - static const IconData lightFaceExhaling = IconDataLight(0xe480); + static const IconData lightFaceExhaling = IconData(0xe480, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Exhaling icon /// /// https://fontawesome.com/icons/face-exhaling?style=thin /// breath, exhale, exhaustion, relief, sigh - static const IconData thinFaceExhaling = IconDataThin(0xe480); + static const IconData thinFaceExhaling = IconData(0xe480, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Explode icon /// /// https://fontawesome.com/icons/face-explode?style=solid /// exploding head, mind blown, omg, shocked, wow - static const IconData solidFaceExplode = IconDataSolid(0xe2fe); + static const IconData solidFaceExplode = IconData(0xe2fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exploding-head for icon [solidFaceExplode] @Deprecated('Use "solidFaceExplode" instead.') @@ -33772,7 +33772,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-explode?style=regular /// exploding head, mind blown, omg, shocked, wow - static const IconData faceExplode = IconDataRegular(0xe2fe); + static const IconData faceExplode = IconData(0xe2fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exploding-head for icon [faceExplode] @Deprecated('Use "faceExplode" instead.') @@ -33782,7 +33782,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-explode?style=light /// exploding head, mind blown, omg, shocked, wow - static const IconData lightFaceExplode = IconDataLight(0xe2fe); + static const IconData lightFaceExplode = IconData(0xe2fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exploding-head for icon [lightFaceExplode] @Deprecated('Use "lightFaceExplode" instead.') @@ -33792,7 +33792,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-explode?style=thin /// exploding head, mind blown, omg, shocked, wow - static const IconData thinFaceExplode = IconDataThin(0xe2fe); + static const IconData thinFaceExplode = IconData(0xe2fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exploding-head for icon [thinFaceExplode] @Deprecated('Use "thinFaceExplode" instead.') @@ -33802,79 +33802,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-expressionless?style=solid /// expressionless, expressionless face, face, inexpressive, meh, unexpressive - static const IconData solidFaceExpressionless = IconDataSolid(0xe373); + static const IconData solidFaceExpressionless = IconData(0xe373, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Expressionless icon /// /// https://fontawesome.com/icons/face-expressionless?style=regular /// expressionless, expressionless face, face, inexpressive, meh, unexpressive - static const IconData faceExpressionless = IconDataRegular(0xe373); + static const IconData faceExpressionless = IconData(0xe373, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Expressionless icon /// /// https://fontawesome.com/icons/face-expressionless?style=light /// expressionless, expressionless face, face, inexpressive, meh, unexpressive - static const IconData lightFaceExpressionless = IconDataLight(0xe373); + static const IconData lightFaceExpressionless = IconData(0xe373, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Expressionless icon /// /// https://fontawesome.com/icons/face-expressionless?style=thin /// expressionless, expressionless face, face, inexpressive, meh, unexpressive - static const IconData thinFaceExpressionless = IconDataThin(0xe373); + static const IconData thinFaceExpressionless = IconData(0xe373, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Eyes Xmarks icon /// /// https://fontawesome.com/icons/face-eyes-xmarks?style=solid /// awe, crossed, dead, disbelief, dizzy, face, knocked out, knocked-out face, shock, sick - static const IconData solidFaceEyesXmarks = IconDataSolid(0xe374); + static const IconData solidFaceEyesXmarks = IconData(0xe374, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Eyes Xmarks icon /// /// https://fontawesome.com/icons/face-eyes-xmarks?style=regular /// awe, crossed, dead, disbelief, dizzy, face, knocked out, knocked-out face, shock, sick - static const IconData faceEyesXmarks = IconDataRegular(0xe374); + static const IconData faceEyesXmarks = IconData(0xe374, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Eyes Xmarks icon /// /// https://fontawesome.com/icons/face-eyes-xmarks?style=light /// awe, crossed, dead, disbelief, dizzy, face, knocked out, knocked-out face, shock, sick - static const IconData lightFaceEyesXmarks = IconDataLight(0xe374); + static const IconData lightFaceEyesXmarks = IconData(0xe374, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Eyes Xmarks icon /// /// https://fontawesome.com/icons/face-eyes-xmarks?style=thin /// awe, crossed, dead, disbelief, dizzy, face, knocked out, knocked-out face, shock, sick - static const IconData thinFaceEyesXmarks = IconDataThin(0xe374); + static const IconData thinFaceEyesXmarks = IconData(0xe374, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Fearful icon /// /// https://fontawesome.com/icons/face-fearful?style=solid /// face, fear, fearful, fearful face, scared, surprise - static const IconData solidFaceFearful = IconDataSolid(0xe375); + static const IconData solidFaceFearful = IconData(0xe375, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Fearful icon /// /// https://fontawesome.com/icons/face-fearful?style=regular /// face, fear, fearful, fearful face, scared, surprise - static const IconData faceFearful = IconDataRegular(0xe375); + static const IconData faceFearful = IconData(0xe375, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Fearful icon /// /// https://fontawesome.com/icons/face-fearful?style=light /// face, fear, fearful, fearful face, scared, surprise - static const IconData lightFaceFearful = IconDataLight(0xe375); + static const IconData lightFaceFearful = IconData(0xe375, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Fearful icon /// /// https://fontawesome.com/icons/face-fearful?style=thin /// face, fear, fearful, fearful face, scared, surprise - static const IconData thinFaceFearful = IconDataThin(0xe375); + static const IconData thinFaceFearful = IconData(0xe375, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Flushed icon /// /// https://fontawesome.com/icons/face-flushed?style=solid /// dazed, embarrassed, emoticon, face, flushed, flushed face - static const IconData solidFaceFlushed = IconDataSolid(0xf579); + static const IconData solidFaceFlushed = IconData(0xf579, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias flushed for icon [solidFaceFlushed] @Deprecated('Use "solidFaceFlushed" instead.') @@ -33884,7 +33884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-flushed?style=regular /// dazed, embarrassed, emoticon, face, flushed, flushed face - static const IconData faceFlushed = IconDataRegular(0xf579); + static const IconData faceFlushed = IconData(0xf579, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias flushed for icon [faceFlushed] @Deprecated('Use "faceFlushed" instead.') @@ -33894,7 +33894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-flushed?style=light /// dazed, embarrassed, emoticon, face, flushed, flushed face - static const IconData lightFaceFlushed = IconDataLight(0xf579); + static const IconData lightFaceFlushed = IconData(0xf579, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias flushed for icon [lightFaceFlushed] @Deprecated('Use "lightFaceFlushed" instead.') @@ -33904,7 +33904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-flushed?style=thin /// dazed, embarrassed, emoticon, face, flushed, flushed face - static const IconData thinFaceFlushed = IconDataThin(0xf579); + static const IconData thinFaceFlushed = IconData(0xf579, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias flushed for icon [thinFaceFlushed] @Deprecated('Use "thinFaceFlushed" instead.') @@ -33914,7 +33914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown?style=solid /// disapprove, emoticon, face, frown, frowning face, rating, sad, uer - static const IconData solidFaceFrown = IconDataSolid(0xf119); + static const IconData solidFaceFrown = IconData(0xf119, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias frown for icon [solidFaceFrown] @Deprecated('Use "solidFaceFrown" instead.') @@ -33924,7 +33924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown?style=regular /// disapprove, emoticon, face, frown, frowning face, rating, sad, uer - static const IconData faceFrown = IconDataRegular(0xf119); + static const IconData faceFrown = IconData(0xf119, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias frown for icon [faceFrown] @Deprecated('Use "faceFrown" instead.') @@ -33934,7 +33934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown?style=light /// disapprove, emoticon, face, frown, frowning face, rating, sad, uer - static const IconData lightFaceFrown = IconDataLight(0xf119); + static const IconData lightFaceFrown = IconData(0xf119, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias frown for icon [lightFaceFrown] @Deprecated('Use "lightFaceFrown" instead.') @@ -33944,7 +33944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown?style=thin /// disapprove, emoticon, face, frown, frowning face, rating, sad, uer - static const IconData thinFaceFrown = IconDataThin(0xf119); + static const IconData thinFaceFrown = IconData(0xf119, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias frown for icon [thinFaceFrown] @Deprecated('Use "thinFaceFrown" instead.') @@ -33954,7 +33954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown-open?style=solid /// disapprove, emoticon, face, frown, frowning face with open mouth, mouth, open, rating, sad - static const IconData solidFaceFrownOpen = IconDataSolid(0xf57a); + static const IconData solidFaceFrownOpen = IconData(0xf57a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias frown-open for icon [solidFaceFrownOpen] @Deprecated('Use "solidFaceFrownOpen" instead.') @@ -33964,7 +33964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown-open?style=regular /// disapprove, emoticon, face, frown, frowning face with open mouth, mouth, open, rating, sad - static const IconData faceFrownOpen = IconDataRegular(0xf57a); + static const IconData faceFrownOpen = IconData(0xf57a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias frown-open for icon [faceFrownOpen] @Deprecated('Use "faceFrownOpen" instead.') @@ -33974,7 +33974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown-open?style=light /// disapprove, emoticon, face, frown, frowning face with open mouth, mouth, open, rating, sad - static const IconData lightFaceFrownOpen = IconDataLight(0xf57a); + static const IconData lightFaceFrownOpen = IconData(0xf57a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias frown-open for icon [lightFaceFrownOpen] @Deprecated('Use "lightFaceFrownOpen" instead.') @@ -33984,7 +33984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown-open?style=thin /// disapprove, emoticon, face, frown, frowning face with open mouth, mouth, open, rating, sad - static const IconData thinFaceFrownOpen = IconDataThin(0xf57a); + static const IconData thinFaceFrownOpen = IconData(0xf57a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias frown-open for icon [thinFaceFrownOpen] @Deprecated('Use "thinFaceFrownOpen" instead.') @@ -33994,55 +33994,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-frown-slight?style=solid /// disapprove, face, frown, sad, slightly frowning face - static const IconData solidFaceFrownSlight = IconDataSolid(0xe376); + static const IconData solidFaceFrownSlight = IconData(0xe376, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Frown Slight icon /// /// https://fontawesome.com/icons/face-frown-slight?style=regular /// disapprove, face, frown, sad, slightly frowning face - static const IconData faceFrownSlight = IconDataRegular(0xe376); + static const IconData faceFrownSlight = IconData(0xe376, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Frown Slight icon /// /// https://fontawesome.com/icons/face-frown-slight?style=light /// disapprove, face, frown, sad, slightly frowning face - static const IconData lightFaceFrownSlight = IconDataLight(0xe376); + static const IconData lightFaceFrownSlight = IconData(0xe376, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Frown Slight icon /// /// https://fontawesome.com/icons/face-frown-slight?style=thin /// disapprove, face, frown, sad, slightly frowning face - static const IconData thinFaceFrownSlight = IconDataThin(0xe376); + static const IconData thinFaceFrownSlight = IconData(0xe376, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Glasses icon /// /// https://fontawesome.com/icons/face-glasses?style=solid /// face, geek, glasses, nerd, nerd face, smile, teeth - static const IconData solidFaceGlasses = IconDataSolid(0xe377); + static const IconData solidFaceGlasses = IconData(0xe377, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Glasses icon /// /// https://fontawesome.com/icons/face-glasses?style=regular /// face, geek, glasses, nerd, nerd face, smile, teeth - static const IconData faceGlasses = IconDataRegular(0xe377); + static const IconData faceGlasses = IconData(0xe377, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Glasses icon /// /// https://fontawesome.com/icons/face-glasses?style=light /// face, geek, glasses, nerd, nerd face, smile, teeth - static const IconData lightFaceGlasses = IconDataLight(0xe377); + static const IconData lightFaceGlasses = IconData(0xe377, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Glasses icon /// /// https://fontawesome.com/icons/face-glasses?style=thin /// face, geek, glasses, nerd, nerd face, smile, teeth - static const IconData thinFaceGlasses = IconDataThin(0xe377); + static const IconData thinFaceGlasses = IconData(0xe377, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Grimace icon /// /// https://fontawesome.com/icons/face-grimace?style=solid /// cringe, emoticon, face, grimace, grimacing face, teeth - static const IconData solidFaceGrimace = IconDataSolid(0xf57f); + static const IconData solidFaceGrimace = IconData(0xf57f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grimace for icon [solidFaceGrimace] @Deprecated('Use "solidFaceGrimace" instead.') @@ -34052,7 +34052,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grimace?style=regular /// cringe, emoticon, face, grimace, grimacing face, teeth - static const IconData faceGrimace = IconDataRegular(0xf57f); + static const IconData faceGrimace = IconData(0xf57f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grimace for icon [faceGrimace] @Deprecated('Use "faceGrimace" instead.') @@ -34062,7 +34062,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grimace?style=light /// cringe, emoticon, face, grimace, grimacing face, teeth - static const IconData lightFaceGrimace = IconDataLight(0xf57f); + static const IconData lightFaceGrimace = IconData(0xf57f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grimace for icon [lightFaceGrimace] @Deprecated('Use "lightFaceGrimace" instead.') @@ -34072,7 +34072,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grimace?style=thin /// cringe, emoticon, face, grimace, grimacing face, teeth - static const IconData thinFaceGrimace = IconDataThin(0xf57f); + static const IconData thinFaceGrimace = IconData(0xf57f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grimace for icon [thinFaceGrimace] @Deprecated('Use "thinFaceGrimace" instead.') @@ -34082,7 +34082,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin?style=solid /// emoticon, face, grin, grinning face, laugh, smile - static const IconData solidFaceGrin = IconDataSolid(0xf580); + static const IconData solidFaceGrin = IconData(0xf580, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin for icon [solidFaceGrin] @Deprecated('Use "solidFaceGrin" instead.') @@ -34092,7 +34092,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin?style=regular /// emoticon, face, grin, grinning face, laugh, smile - static const IconData faceGrin = IconDataRegular(0xf580); + static const IconData faceGrin = IconData(0xf580, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin for icon [faceGrin] @Deprecated('Use "faceGrin" instead.') @@ -34102,7 +34102,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin?style=light /// emoticon, face, grin, grinning face, laugh, smile - static const IconData lightFaceGrin = IconDataLight(0xf580); + static const IconData lightFaceGrin = IconData(0xf580, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin for icon [lightFaceGrin] @Deprecated('Use "lightFaceGrin" instead.') @@ -34112,7 +34112,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin?style=thin /// emoticon, face, grin, grinning face, laugh, smile - static const IconData thinFaceGrin = IconDataThin(0xf580); + static const IconData thinFaceGrin = IconData(0xf580, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin for icon [thinFaceGrin] @Deprecated('Use "thinFaceGrin" instead.') @@ -34122,7 +34122,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam?style=solid /// emoticon, eye, face, grinning face with smiling eyes, laugh, mouth, open, smile - static const IconData solidFaceGrinBeam = IconDataSolid(0xf582); + static const IconData solidFaceGrinBeam = IconData(0xf582, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam for icon [solidFaceGrinBeam] @Deprecated('Use "solidFaceGrinBeam" instead.') @@ -34132,7 +34132,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam?style=regular /// emoticon, eye, face, grinning face with smiling eyes, laugh, mouth, open, smile - static const IconData faceGrinBeam = IconDataRegular(0xf582); + static const IconData faceGrinBeam = IconData(0xf582, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam for icon [faceGrinBeam] @Deprecated('Use "faceGrinBeam" instead.') @@ -34142,7 +34142,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam?style=light /// emoticon, eye, face, grinning face with smiling eyes, laugh, mouth, open, smile - static const IconData lightFaceGrinBeam = IconDataLight(0xf582); + static const IconData lightFaceGrinBeam = IconData(0xf582, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam for icon [lightFaceGrinBeam] @Deprecated('Use "lightFaceGrinBeam" instead.') @@ -34152,7 +34152,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam?style=thin /// emoticon, eye, face, grinning face with smiling eyes, laugh, mouth, open, smile - static const IconData thinFaceGrinBeam = IconDataThin(0xf582); + static const IconData thinFaceGrinBeam = IconData(0xf582, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam for icon [thinFaceGrinBeam] @Deprecated('Use "thinFaceGrinBeam" instead.') @@ -34162,7 +34162,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam-sweat?style=solid /// cold, embarass, emoticon, face, grinning face with sweat, open, smile, sweat - static const IconData solidFaceGrinBeamSweat = IconDataSolid(0xf583); + static const IconData solidFaceGrinBeamSweat = IconData(0xf583, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam-sweat for icon [solidFaceGrinBeamSweat] @Deprecated('Use "solidFaceGrinBeamSweat" instead.') @@ -34172,7 +34172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam-sweat?style=regular /// cold, embarass, emoticon, face, grinning face with sweat, open, smile, sweat - static const IconData faceGrinBeamSweat = IconDataRegular(0xf583); + static const IconData faceGrinBeamSweat = IconData(0xf583, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam-sweat for icon [faceGrinBeamSweat] @Deprecated('Use "faceGrinBeamSweat" instead.') @@ -34182,7 +34182,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam-sweat?style=light /// cold, embarass, emoticon, face, grinning face with sweat, open, smile, sweat - static const IconData lightFaceGrinBeamSweat = IconDataLight(0xf583); + static const IconData lightFaceGrinBeamSweat = IconData(0xf583, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam-sweat for icon [lightFaceGrinBeamSweat] @Deprecated('Use "lightFaceGrinBeamSweat" instead.') @@ -34192,7 +34192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-beam-sweat?style=thin /// cold, embarass, emoticon, face, grinning face with sweat, open, smile, sweat - static const IconData thinFaceGrinBeamSweat = IconDataThin(0xf583); + static const IconData thinFaceGrinBeamSweat = IconData(0xf583, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-beam-sweat for icon [thinFaceGrinBeamSweat] @Deprecated('Use "thinFaceGrinBeamSweat" instead.') @@ -34202,7 +34202,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-hearts?style=solid /// emoticon, eye, face, love, smile, smiling face with heart-eyes - static const IconData solidFaceGrinHearts = IconDataSolid(0xf584); + static const IconData solidFaceGrinHearts = IconData(0xf584, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-hearts for icon [solidFaceGrinHearts] @Deprecated('Use "solidFaceGrinHearts" instead.') @@ -34212,7 +34212,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-hearts?style=regular /// emoticon, eye, face, love, smile, smiling face with heart-eyes - static const IconData faceGrinHearts = IconDataRegular(0xf584); + static const IconData faceGrinHearts = IconData(0xf584, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-hearts for icon [faceGrinHearts] @Deprecated('Use "faceGrinHearts" instead.') @@ -34222,7 +34222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-hearts?style=light /// emoticon, eye, face, love, smile, smiling face with heart-eyes - static const IconData lightFaceGrinHearts = IconDataLight(0xf584); + static const IconData lightFaceGrinHearts = IconData(0xf584, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-hearts for icon [lightFaceGrinHearts] @Deprecated('Use "lightFaceGrinHearts" instead.') @@ -34232,7 +34232,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-hearts?style=thin /// emoticon, eye, face, love, smile, smiling face with heart-eyes - static const IconData thinFaceGrinHearts = IconDataThin(0xf584); + static const IconData thinFaceGrinHearts = IconData(0xf584, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-hearts for icon [thinFaceGrinHearts] @Deprecated('Use "thinFaceGrinHearts" instead.') @@ -34242,7 +34242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint?style=solid /// emoticon, face, grinning squinting face, laugh, mouth, satisfied, smile - static const IconData solidFaceGrinSquint = IconDataSolid(0xf585); + static const IconData solidFaceGrinSquint = IconData(0xf585, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint for icon [solidFaceGrinSquint] @Deprecated('Use "solidFaceGrinSquint" instead.') @@ -34252,7 +34252,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint?style=regular /// emoticon, face, grinning squinting face, laugh, mouth, satisfied, smile - static const IconData faceGrinSquint = IconDataRegular(0xf585); + static const IconData faceGrinSquint = IconData(0xf585, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint for icon [faceGrinSquint] @Deprecated('Use "faceGrinSquint" instead.') @@ -34262,7 +34262,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint?style=light /// emoticon, face, grinning squinting face, laugh, mouth, satisfied, smile - static const IconData lightFaceGrinSquint = IconDataLight(0xf585); + static const IconData lightFaceGrinSquint = IconData(0xf585, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint for icon [lightFaceGrinSquint] @Deprecated('Use "lightFaceGrinSquint" instead.') @@ -34272,7 +34272,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint?style=thin /// emoticon, face, grinning squinting face, laugh, mouth, satisfied, smile - static const IconData thinFaceGrinSquint = IconDataThin(0xf585); + static const IconData thinFaceGrinSquint = IconData(0xf585, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint for icon [thinFaceGrinSquint] @Deprecated('Use "thinFaceGrinSquint" instead.') @@ -34282,7 +34282,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint-tears?style=solid /// emoticon, face, floor, happy, laugh, rolling, rolling on the floor laughing, smile - static const IconData solidFaceGrinSquintTears = IconDataSolid(0xf586); + static const IconData solidFaceGrinSquintTears = IconData(0xf586, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint-tears for icon [solidFaceGrinSquintTears] @Deprecated('Use "solidFaceGrinSquintTears" instead.') @@ -34292,7 +34292,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint-tears?style=regular /// emoticon, face, floor, happy, laugh, rolling, rolling on the floor laughing, smile - static const IconData faceGrinSquintTears = IconDataRegular(0xf586); + static const IconData faceGrinSquintTears = IconData(0xf586, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint-tears for icon [faceGrinSquintTears] @Deprecated('Use "faceGrinSquintTears" instead.') @@ -34302,7 +34302,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint-tears?style=light /// emoticon, face, floor, happy, laugh, rolling, rolling on the floor laughing, smile - static const IconData lightFaceGrinSquintTears = IconDataLight(0xf586); + static const IconData lightFaceGrinSquintTears = IconData(0xf586, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint-tears for icon [lightFaceGrinSquintTears] @Deprecated('Use "lightFaceGrinSquintTears" instead.') @@ -34312,7 +34312,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-squint-tears?style=thin /// emoticon, face, floor, happy, laugh, rolling, rolling on the floor laughing, smile - static const IconData thinFaceGrinSquintTears = IconDataThin(0xf586); + static const IconData thinFaceGrinSquintTears = IconData(0xf586, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-squint-tears for icon [thinFaceGrinSquintTears] @Deprecated('Use "thinFaceGrinSquintTears" instead.') @@ -34322,7 +34322,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-stars?style=solid /// emoticon, eyes, face, grinning, quality, star, star-struck, starry-eyed, vip - static const IconData solidFaceGrinStars = IconDataSolid(0xf587); + static const IconData solidFaceGrinStars = IconData(0xf587, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-stars for icon [solidFaceGrinStars] @Deprecated('Use "solidFaceGrinStars" instead.') @@ -34332,7 +34332,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-stars?style=regular /// emoticon, eyes, face, grinning, quality, star, star-struck, starry-eyed, vip - static const IconData faceGrinStars = IconDataRegular(0xf587); + static const IconData faceGrinStars = IconData(0xf587, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-stars for icon [faceGrinStars] @Deprecated('Use "faceGrinStars" instead.') @@ -34342,7 +34342,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-stars?style=light /// emoticon, eyes, face, grinning, quality, star, star-struck, starry-eyed, vip - static const IconData lightFaceGrinStars = IconDataLight(0xf587); + static const IconData lightFaceGrinStars = IconData(0xf587, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-stars for icon [lightFaceGrinStars] @Deprecated('Use "lightFaceGrinStars" instead.') @@ -34352,7 +34352,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-stars?style=thin /// emoticon, eyes, face, grinning, quality, star, star-struck, starry-eyed, vip - static const IconData thinFaceGrinStars = IconDataThin(0xf587); + static const IconData thinFaceGrinStars = IconData(0xf587, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-stars for icon [thinFaceGrinStars] @Deprecated('Use "thinFaceGrinStars" instead.') @@ -34362,7 +34362,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tears?style=solid /// LOL, emoticon, face, face with tears of joy, joy, laugh, tear - static const IconData solidFaceGrinTears = IconDataSolid(0xf588); + static const IconData solidFaceGrinTears = IconData(0xf588, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-tears for icon [solidFaceGrinTears] @Deprecated('Use "solidFaceGrinTears" instead.') @@ -34372,7 +34372,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tears?style=regular /// LOL, emoticon, face, face with tears of joy, joy, laugh, tear - static const IconData faceGrinTears = IconDataRegular(0xf588); + static const IconData faceGrinTears = IconData(0xf588, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-tears for icon [faceGrinTears] @Deprecated('Use "faceGrinTears" instead.') @@ -34382,7 +34382,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tears?style=light /// LOL, emoticon, face, face with tears of joy, joy, laugh, tear - static const IconData lightFaceGrinTears = IconDataLight(0xf588); + static const IconData lightFaceGrinTears = IconData(0xf588, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-tears for icon [lightFaceGrinTears] @Deprecated('Use "lightFaceGrinTears" instead.') @@ -34392,7 +34392,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tears?style=thin /// LOL, emoticon, face, face with tears of joy, joy, laugh, tear - static const IconData thinFaceGrinTears = IconDataThin(0xf588); + static const IconData thinFaceGrinTears = IconData(0xf588, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-tears for icon [thinFaceGrinTears] @Deprecated('Use "thinFaceGrinTears" instead.') @@ -34402,7 +34402,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue?style=solid /// LOL, emoticon, face, face with tongue, tongue - static const IconData solidFaceGrinTongue = IconDataSolid(0xf589); + static const IconData solidFaceGrinTongue = IconData(0xf589, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue for icon [solidFaceGrinTongue] @Deprecated('Use "solidFaceGrinTongue" instead.') @@ -34412,7 +34412,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue?style=regular /// LOL, emoticon, face, face with tongue, tongue - static const IconData faceGrinTongue = IconDataRegular(0xf589); + static const IconData faceGrinTongue = IconData(0xf589, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue for icon [faceGrinTongue] @Deprecated('Use "faceGrinTongue" instead.') @@ -34422,7 +34422,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue?style=light /// LOL, emoticon, face, face with tongue, tongue - static const IconData lightFaceGrinTongue = IconDataLight(0xf589); + static const IconData lightFaceGrinTongue = IconData(0xf589, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue for icon [lightFaceGrinTongue] @Deprecated('Use "lightFaceGrinTongue" instead.') @@ -34432,7 +34432,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue?style=thin /// LOL, emoticon, face, face with tongue, tongue - static const IconData thinFaceGrinTongue = IconDataThin(0xf589); + static const IconData thinFaceGrinTongue = IconData(0xf589, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue for icon [thinFaceGrinTongue] @Deprecated('Use "thinFaceGrinTongue" instead.') @@ -34442,7 +34442,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-squint?style=solid /// LOL, emoticon, eye, face, horrible, squinting face with tongue, taste, tongue - static const IconData solidFaceGrinTongueSquint = IconDataSolid(0xf58a); + static const IconData solidFaceGrinTongueSquint = IconData(0xf58a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-squint for icon [solidFaceGrinTongueSquint] @Deprecated('Use "solidFaceGrinTongueSquint" instead.') @@ -34452,7 +34452,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-squint?style=regular /// LOL, emoticon, eye, face, horrible, squinting face with tongue, taste, tongue - static const IconData faceGrinTongueSquint = IconDataRegular(0xf58a); + static const IconData faceGrinTongueSquint = IconData(0xf58a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-squint for icon [faceGrinTongueSquint] @Deprecated('Use "faceGrinTongueSquint" instead.') @@ -34462,7 +34462,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-squint?style=light /// LOL, emoticon, eye, face, horrible, squinting face with tongue, taste, tongue - static const IconData lightFaceGrinTongueSquint = IconDataLight(0xf58a); + static const IconData lightFaceGrinTongueSquint = IconData(0xf58a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-squint for icon [lightFaceGrinTongueSquint] @Deprecated('Use "lightFaceGrinTongueSquint" instead.') @@ -34472,7 +34472,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-squint?style=thin /// LOL, emoticon, eye, face, horrible, squinting face with tongue, taste, tongue - static const IconData thinFaceGrinTongueSquint = IconDataThin(0xf58a); + static const IconData thinFaceGrinTongueSquint = IconData(0xf58a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-squint for icon [thinFaceGrinTongueSquint] @Deprecated('Use "thinFaceGrinTongueSquint" instead.') @@ -34482,7 +34482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-wink?style=solid /// LOL, emoticon, eye, face, joke, tongue, wink, winking face with tongue - static const IconData solidFaceGrinTongueWink = IconDataSolid(0xf58b); + static const IconData solidFaceGrinTongueWink = IconData(0xf58b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-wink for icon [solidFaceGrinTongueWink] @Deprecated('Use "solidFaceGrinTongueWink" instead.') @@ -34492,7 +34492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-wink?style=regular /// LOL, emoticon, eye, face, joke, tongue, wink, winking face with tongue - static const IconData faceGrinTongueWink = IconDataRegular(0xf58b); + static const IconData faceGrinTongueWink = IconData(0xf58b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-wink for icon [faceGrinTongueWink] @Deprecated('Use "faceGrinTongueWink" instead.') @@ -34502,7 +34502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-wink?style=light /// LOL, emoticon, eye, face, joke, tongue, wink, winking face with tongue - static const IconData lightFaceGrinTongueWink = IconDataLight(0xf58b); + static const IconData lightFaceGrinTongueWink = IconData(0xf58b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-wink for icon [lightFaceGrinTongueWink] @Deprecated('Use "lightFaceGrinTongueWink" instead.') @@ -34512,7 +34512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-tongue-wink?style=thin /// LOL, emoticon, eye, face, joke, tongue, wink, winking face with tongue - static const IconData thinFaceGrinTongueWink = IconDataThin(0xf58b); + static const IconData thinFaceGrinTongueWink = IconData(0xf58b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-tongue-wink for icon [thinFaceGrinTongueWink] @Deprecated('Use "thinFaceGrinTongueWink" instead.') @@ -34522,7 +34522,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wide?style=solid /// emoticon, face, grinning face with big eyes, laugh, mouth, open, smile - static const IconData solidFaceGrinWide = IconDataSolid(0xf581); + static const IconData solidFaceGrinWide = IconData(0xf581, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-alt for icon [solidFaceGrinWide] @Deprecated('Use "solidFaceGrinWide" instead.') @@ -34532,7 +34532,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wide?style=regular /// emoticon, face, grinning face with big eyes, laugh, mouth, open, smile - static const IconData faceGrinWide = IconDataRegular(0xf581); + static const IconData faceGrinWide = IconData(0xf581, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-alt for icon [faceGrinWide] @Deprecated('Use "faceGrinWide" instead.') @@ -34542,7 +34542,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wide?style=light /// emoticon, face, grinning face with big eyes, laugh, mouth, open, smile - static const IconData lightFaceGrinWide = IconDataLight(0xf581); + static const IconData lightFaceGrinWide = IconData(0xf581, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-alt for icon [lightFaceGrinWide] @Deprecated('Use "lightFaceGrinWide" instead.') @@ -34552,7 +34552,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wide?style=thin /// emoticon, face, grinning face with big eyes, laugh, mouth, open, smile - static const IconData thinFaceGrinWide = IconDataThin(0xf581); + static const IconData thinFaceGrinWide = IconData(0xf581, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-alt for icon [thinFaceGrinWide] @Deprecated('Use "thinFaceGrinWide" instead.') @@ -34562,7 +34562,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wink?style=solid /// emoticon, face, flirt, laugh, smile - static const IconData solidFaceGrinWink = IconDataSolid(0xf58c); + static const IconData solidFaceGrinWink = IconData(0xf58c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grin-wink for icon [solidFaceGrinWink] @Deprecated('Use "solidFaceGrinWink" instead.') @@ -34572,7 +34572,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wink?style=regular /// emoticon, face, flirt, laugh, smile - static const IconData faceGrinWink = IconDataRegular(0xf58c); + static const IconData faceGrinWink = IconData(0xf58c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grin-wink for icon [faceGrinWink] @Deprecated('Use "faceGrinWink" instead.') @@ -34582,7 +34582,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wink?style=light /// emoticon, face, flirt, laugh, smile - static const IconData lightFaceGrinWink = IconDataLight(0xf58c); + static const IconData lightFaceGrinWink = IconData(0xf58c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grin-wink for icon [lightFaceGrinWink] @Deprecated('Use "lightFaceGrinWink" instead.') @@ -34592,7 +34592,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-grin-wink?style=thin /// emoticon, face, flirt, laugh, smile - static const IconData thinFaceGrinWink = IconDataThin(0xf58c); + static const IconData thinFaceGrinWink = IconData(0xf58c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grin-wink for icon [thinFaceGrinWink] @Deprecated('Use "thinFaceGrinWink" instead.') @@ -34602,175 +34602,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-hand-over-mouth?style=solid /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData solidFaceHandOverMouth = IconDataSolid(0xe378); + static const IconData solidFaceHandOverMouth = IconData(0xe378, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-hand-over-mouth?style=regular /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData faceHandOverMouth = IconDataRegular(0xe378); + static const IconData faceHandOverMouth = IconData(0xe378, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-hand-over-mouth?style=light /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData lightFaceHandOverMouth = IconDataLight(0xe378); + static const IconData lightFaceHandOverMouth = IconData(0xe378, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Hand Over Mouth icon /// /// https://fontawesome.com/icons/face-hand-over-mouth?style=thin /// awe, face with hand over mouth, realization, shock, sudden, sudden realization, surprise, whoops - static const IconData thinFaceHandOverMouth = IconDataThin(0xe378); + static const IconData thinFaceHandOverMouth = IconData(0xe378, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Hand Peeking icon /// /// https://fontawesome.com/icons/face-hand-peeking?style=solid /// disgust, embarass, eye, fright, hide, look, sneak - static const IconData solidFaceHandPeeking = IconDataSolid(0xe481); + static const IconData solidFaceHandPeeking = IconData(0xe481, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Hand Peeking icon /// /// https://fontawesome.com/icons/face-hand-peeking?style=regular /// disgust, embarass, eye, fright, hide, look, sneak - static const IconData faceHandPeeking = IconDataRegular(0xe481); + static const IconData faceHandPeeking = IconData(0xe481, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Hand Peeking icon /// /// https://fontawesome.com/icons/face-hand-peeking?style=light /// disgust, embarass, eye, fright, hide, look, sneak - static const IconData lightFaceHandPeeking = IconDataLight(0xe481); + static const IconData lightFaceHandPeeking = IconData(0xe481, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Hand Peeking icon /// /// https://fontawesome.com/icons/face-hand-peeking?style=thin /// disgust, embarass, eye, fright, hide, look, sneak - static const IconData thinFaceHandPeeking = IconDataThin(0xe481); + static const IconData thinFaceHandPeeking = IconData(0xe481, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Hand Yawn icon /// /// https://fontawesome.com/icons/face-hand-yawn?style=solid /// bored, tired, yawn, yawning face - static const IconData solidFaceHandYawn = IconDataSolid(0xe379); + static const IconData solidFaceHandYawn = IconData(0xe379, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Hand Yawn icon /// /// https://fontawesome.com/icons/face-hand-yawn?style=regular /// bored, tired, yawn, yawning face - static const IconData faceHandYawn = IconDataRegular(0xe379); + static const IconData faceHandYawn = IconData(0xe379, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Hand Yawn icon /// /// https://fontawesome.com/icons/face-hand-yawn?style=light /// bored, tired, yawn, yawning face - static const IconData lightFaceHandYawn = IconDataLight(0xe379); + static const IconData lightFaceHandYawn = IconData(0xe379, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Hand Yawn icon /// /// https://fontawesome.com/icons/face-hand-yawn?style=thin /// bored, tired, yawn, yawning face - static const IconData thinFaceHandYawn = IconDataThin(0xe379); + static const IconData thinFaceHandYawn = IconData(0xe379, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Head Bandage icon /// /// https://fontawesome.com/icons/face-head-bandage?style=solid /// bandage, clumsy, face, face with head-bandage, hurt, ill, injury - static const IconData solidFaceHeadBandage = IconDataSolid(0xe37a); + static const IconData solidFaceHeadBandage = IconData(0xe37a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Head Bandage icon /// /// https://fontawesome.com/icons/face-head-bandage?style=regular /// bandage, clumsy, face, face with head-bandage, hurt, ill, injury - static const IconData faceHeadBandage = IconDataRegular(0xe37a); + static const IconData faceHeadBandage = IconData(0xe37a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Head Bandage icon /// /// https://fontawesome.com/icons/face-head-bandage?style=light /// bandage, clumsy, face, face with head-bandage, hurt, ill, injury - static const IconData lightFaceHeadBandage = IconDataLight(0xe37a); + static const IconData lightFaceHeadBandage = IconData(0xe37a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Head Bandage icon /// /// https://fontawesome.com/icons/face-head-bandage?style=thin /// bandage, clumsy, face, face with head-bandage, hurt, ill, injury - static const IconData thinFaceHeadBandage = IconDataThin(0xe37a); + static const IconData thinFaceHeadBandage = IconData(0xe37a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Holding Back Tears icon /// /// https://fontawesome.com/icons/face-holding-back-tears?style=solid /// anger, cry, emotion, sad, upset - static const IconData solidFaceHoldingBackTears = IconDataSolid(0xe482); + static const IconData solidFaceHoldingBackTears = IconData(0xe482, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Holding Back Tears icon /// /// https://fontawesome.com/icons/face-holding-back-tears?style=regular /// anger, cry, emotion, sad, upset - static const IconData faceHoldingBackTears = IconDataRegular(0xe482); + static const IconData faceHoldingBackTears = IconData(0xe482, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Holding Back Tears icon /// /// https://fontawesome.com/icons/face-holding-back-tears?style=light /// anger, cry, emotion, sad, upset - static const IconData lightFaceHoldingBackTears = IconDataLight(0xe482); + static const IconData lightFaceHoldingBackTears = IconData(0xe482, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Holding Back Tears icon /// /// https://fontawesome.com/icons/face-holding-back-tears?style=thin /// anger, cry, emotion, sad, upset - static const IconData thinFaceHoldingBackTears = IconDataThin(0xe482); + static const IconData thinFaceHoldingBackTears = IconData(0xe482, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Hushed icon /// /// https://fontawesome.com/icons/face-hushed?style=solid /// face, hushed, hushed face, stunned, surprise, surprised, wow - static const IconData solidFaceHushed = IconDataSolid(0xe37b); + static const IconData solidFaceHushed = IconData(0xe37b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Hushed icon /// /// https://fontawesome.com/icons/face-hushed?style=regular /// face, hushed, hushed face, stunned, surprise, surprised, wow - static const IconData faceHushed = IconDataRegular(0xe37b); + static const IconData faceHushed = IconData(0xe37b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Hushed icon /// /// https://fontawesome.com/icons/face-hushed?style=light /// face, hushed, hushed face, stunned, surprise, surprised, wow - static const IconData lightFaceHushed = IconDataLight(0xe37b); + static const IconData lightFaceHushed = IconData(0xe37b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Hushed icon /// /// https://fontawesome.com/icons/face-hushed?style=thin /// face, hushed, hushed face, stunned, surprise, surprised, wow - static const IconData thinFaceHushed = IconDataThin(0xe37b); + static const IconData thinFaceHushed = IconData(0xe37b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Icicles icon /// /// https://fontawesome.com/icons/face-icicles?style=solid /// blue-faced, chill, cold, cold face, cool, freezing, frostbite, frozen, ice, icicles - static const IconData solidFaceIcicles = IconDataSolid(0xe37c); + static const IconData solidFaceIcicles = IconData(0xe37c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Icicles icon /// /// https://fontawesome.com/icons/face-icicles?style=regular /// blue-faced, chill, cold, cold face, cool, freezing, frostbite, frozen, ice, icicles - static const IconData faceIcicles = IconDataRegular(0xe37c); + static const IconData faceIcicles = IconData(0xe37c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Icicles icon /// /// https://fontawesome.com/icons/face-icicles?style=light /// blue-faced, chill, cold, cold face, cool, freezing, frostbite, frozen, ice, icicles - static const IconData lightFaceIcicles = IconDataLight(0xe37c); + static const IconData lightFaceIcicles = IconData(0xe37c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Icicles icon /// /// https://fontawesome.com/icons/face-icicles?style=thin /// blue-faced, chill, cold, cold face, cool, freezing, frostbite, frozen, ice, icicles - static const IconData thinFaceIcicles = IconDataThin(0xe37c); + static const IconData thinFaceIcicles = IconData(0xe37c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Kiss icon /// /// https://fontawesome.com/icons/face-kiss?style=solid /// beso, emoticon, face, kiss, kissing face, love, smooch - static const IconData solidFaceKiss = IconDataSolid(0xf596); + static const IconData solidFaceKiss = IconData(0xf596, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias kiss for icon [solidFaceKiss] @Deprecated('Use "solidFaceKiss" instead.') @@ -34780,7 +34780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss?style=regular /// beso, emoticon, face, kiss, kissing face, love, smooch - static const IconData faceKiss = IconDataRegular(0xf596); + static const IconData faceKiss = IconData(0xf596, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias kiss for icon [faceKiss] @Deprecated('Use "faceKiss" instead.') @@ -34790,7 +34790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss?style=light /// beso, emoticon, face, kiss, kissing face, love, smooch - static const IconData lightFaceKiss = IconDataLight(0xf596); + static const IconData lightFaceKiss = IconData(0xf596, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias kiss for icon [lightFaceKiss] @Deprecated('Use "lightFaceKiss" instead.') @@ -34800,7 +34800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss?style=thin /// beso, emoticon, face, kiss, kissing face, love, smooch - static const IconData thinFaceKiss = IconDataThin(0xf596); + static const IconData thinFaceKiss = IconData(0xf596, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias kiss for icon [thinFaceKiss] @Deprecated('Use "thinFaceKiss" instead.') @@ -34810,7 +34810,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-beam?style=solid /// beso, emoticon, eye, face, kiss, kissing face with smiling eyes, love, smile, smooch - static const IconData solidFaceKissBeam = IconDataSolid(0xf597); + static const IconData solidFaceKissBeam = IconData(0xf597, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias kiss-beam for icon [solidFaceKissBeam] @Deprecated('Use "solidFaceKissBeam" instead.') @@ -34820,7 +34820,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-beam?style=regular /// beso, emoticon, eye, face, kiss, kissing face with smiling eyes, love, smile, smooch - static const IconData faceKissBeam = IconDataRegular(0xf597); + static const IconData faceKissBeam = IconData(0xf597, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias kiss-beam for icon [faceKissBeam] @Deprecated('Use "faceKissBeam" instead.') @@ -34830,7 +34830,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-beam?style=light /// beso, emoticon, eye, face, kiss, kissing face with smiling eyes, love, smile, smooch - static const IconData lightFaceKissBeam = IconDataLight(0xf597); + static const IconData lightFaceKissBeam = IconData(0xf597, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias kiss-beam for icon [lightFaceKissBeam] @Deprecated('Use "lightFaceKissBeam" instead.') @@ -34840,7 +34840,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-beam?style=thin /// beso, emoticon, eye, face, kiss, kissing face with smiling eyes, love, smile, smooch - static const IconData thinFaceKissBeam = IconDataThin(0xf597); + static const IconData thinFaceKissBeam = IconData(0xf597, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias kiss-beam for icon [thinFaceKissBeam] @Deprecated('Use "thinFaceKissBeam" instead.') @@ -34850,31 +34850,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-closed-eyes?style=solid /// closed, eye, face, heart, kiss, kissing face with closed eyes, love - static const IconData solidFaceKissClosedEyes = IconDataSolid(0xe37d); + static const IconData solidFaceKissClosedEyes = IconData(0xe37d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Kiss Closed Eyes icon /// /// https://fontawesome.com/icons/face-kiss-closed-eyes?style=regular /// closed, eye, face, heart, kiss, kissing face with closed eyes, love - static const IconData faceKissClosedEyes = IconDataRegular(0xe37d); + static const IconData faceKissClosedEyes = IconData(0xe37d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Kiss Closed Eyes icon /// /// https://fontawesome.com/icons/face-kiss-closed-eyes?style=light /// closed, eye, face, heart, kiss, kissing face with closed eyes, love - static const IconData lightFaceKissClosedEyes = IconDataLight(0xe37d); + static const IconData lightFaceKissClosedEyes = IconData(0xe37d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Kiss Closed Eyes icon /// /// https://fontawesome.com/icons/face-kiss-closed-eyes?style=thin /// closed, eye, face, heart, kiss, kissing face with closed eyes, love - static const IconData thinFaceKissClosedEyes = IconDataThin(0xe37d); + static const IconData thinFaceKissClosedEyes = IconData(0xe37d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Kiss Wink Heart icon /// /// https://fontawesome.com/icons/face-kiss-wink-heart?style=solid /// beso, emoticon, face, face blowing a kiss, kiss, love, smooch - static const IconData solidFaceKissWinkHeart = IconDataSolid(0xf598); + static const IconData solidFaceKissWinkHeart = IconData(0xf598, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias kiss-wink-heart for icon [solidFaceKissWinkHeart] @Deprecated('Use "solidFaceKissWinkHeart" instead.') @@ -34884,7 +34884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-wink-heart?style=regular /// beso, emoticon, face, face blowing a kiss, kiss, love, smooch - static const IconData faceKissWinkHeart = IconDataRegular(0xf598); + static const IconData faceKissWinkHeart = IconData(0xf598, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias kiss-wink-heart for icon [faceKissWinkHeart] @Deprecated('Use "faceKissWinkHeart" instead.') @@ -34894,7 +34894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-wink-heart?style=light /// beso, emoticon, face, face blowing a kiss, kiss, love, smooch - static const IconData lightFaceKissWinkHeart = IconDataLight(0xf598); + static const IconData lightFaceKissWinkHeart = IconData(0xf598, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias kiss-wink-heart for icon [lightFaceKissWinkHeart] @Deprecated('Use "lightFaceKissWinkHeart" instead.') @@ -34904,7 +34904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-kiss-wink-heart?style=thin /// beso, emoticon, face, face blowing a kiss, kiss, love, smooch - static const IconData thinFaceKissWinkHeart = IconDataThin(0xf598); + static const IconData thinFaceKissWinkHeart = IconData(0xf598, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias kiss-wink-heart for icon [thinFaceKissWinkHeart] @Deprecated('Use "thinFaceKissWinkHeart" instead.') @@ -34914,7 +34914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh?style=solid /// LOL, emoticon, face, laugh, smile - static const IconData solidFaceLaugh = IconDataSolid(0xf599); + static const IconData solidFaceLaugh = IconData(0xf599, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias laugh for icon [solidFaceLaugh] @Deprecated('Use "solidFaceLaugh" instead.') @@ -34924,7 +34924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh?style=regular /// LOL, emoticon, face, laugh, smile - static const IconData faceLaugh = IconDataRegular(0xf599); + static const IconData faceLaugh = IconData(0xf599, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias laugh for icon [faceLaugh] @Deprecated('Use "faceLaugh" instead.') @@ -34934,7 +34934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh?style=light /// LOL, emoticon, face, laugh, smile - static const IconData lightFaceLaugh = IconDataLight(0xf599); + static const IconData lightFaceLaugh = IconData(0xf599, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias laugh for icon [lightFaceLaugh] @Deprecated('Use "lightFaceLaugh" instead.') @@ -34944,7 +34944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh?style=thin /// LOL, emoticon, face, laugh, smile - static const IconData thinFaceLaugh = IconDataThin(0xf599); + static const IconData thinFaceLaugh = IconData(0xf599, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias laugh for icon [thinFaceLaugh] @Deprecated('Use "thinFaceLaugh" instead.') @@ -34954,7 +34954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-beam?style=solid /// LOL, beaming face with smiling eyes, emoticon, eye, face, grin, happy, smile - static const IconData solidFaceLaughBeam = IconDataSolid(0xf59a); + static const IconData solidFaceLaughBeam = IconData(0xf59a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias laugh-beam for icon [solidFaceLaughBeam] @Deprecated('Use "solidFaceLaughBeam" instead.') @@ -34964,7 +34964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-beam?style=regular /// LOL, beaming face with smiling eyes, emoticon, eye, face, grin, happy, smile - static const IconData faceLaughBeam = IconDataRegular(0xf59a); + static const IconData faceLaughBeam = IconData(0xf59a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias laugh-beam for icon [faceLaughBeam] @Deprecated('Use "faceLaughBeam" instead.') @@ -34974,7 +34974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-beam?style=light /// LOL, beaming face with smiling eyes, emoticon, eye, face, grin, happy, smile - static const IconData lightFaceLaughBeam = IconDataLight(0xf59a); + static const IconData lightFaceLaughBeam = IconData(0xf59a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias laugh-beam for icon [lightFaceLaughBeam] @Deprecated('Use "lightFaceLaughBeam" instead.') @@ -34984,7 +34984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-beam?style=thin /// LOL, beaming face with smiling eyes, emoticon, eye, face, grin, happy, smile - static const IconData thinFaceLaughBeam = IconDataThin(0xf59a); + static const IconData thinFaceLaughBeam = IconData(0xf59a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias laugh-beam for icon [thinFaceLaughBeam] @Deprecated('Use "thinFaceLaughBeam" instead.') @@ -34994,7 +34994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-squint?style=solid /// LOL, emoticon, face, happy, smile - static const IconData solidFaceLaughSquint = IconDataSolid(0xf59b); + static const IconData solidFaceLaughSquint = IconData(0xf59b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias laugh-squint for icon [solidFaceLaughSquint] @Deprecated('Use "solidFaceLaughSquint" instead.') @@ -35004,7 +35004,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-squint?style=regular /// LOL, emoticon, face, happy, smile - static const IconData faceLaughSquint = IconDataRegular(0xf59b); + static const IconData faceLaughSquint = IconData(0xf59b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias laugh-squint for icon [faceLaughSquint] @Deprecated('Use "faceLaughSquint" instead.') @@ -35014,7 +35014,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-squint?style=light /// LOL, emoticon, face, happy, smile - static const IconData lightFaceLaughSquint = IconDataLight(0xf59b); + static const IconData lightFaceLaughSquint = IconData(0xf59b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias laugh-squint for icon [lightFaceLaughSquint] @Deprecated('Use "lightFaceLaughSquint" instead.') @@ -35024,7 +35024,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-squint?style=thin /// LOL, emoticon, face, happy, smile - static const IconData thinFaceLaughSquint = IconDataThin(0xf59b); + static const IconData thinFaceLaughSquint = IconData(0xf59b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias laugh-squint for icon [thinFaceLaughSquint] @Deprecated('Use "thinFaceLaughSquint" instead.') @@ -35034,7 +35034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-wink?style=solid /// LOL, emoticon, face, happy, smile - static const IconData solidFaceLaughWink = IconDataSolid(0xf59c); + static const IconData solidFaceLaughWink = IconData(0xf59c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias laugh-wink for icon [solidFaceLaughWink] @Deprecated('Use "solidFaceLaughWink" instead.') @@ -35044,7 +35044,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-wink?style=regular /// LOL, emoticon, face, happy, smile - static const IconData faceLaughWink = IconDataRegular(0xf59c); + static const IconData faceLaughWink = IconData(0xf59c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias laugh-wink for icon [faceLaughWink] @Deprecated('Use "faceLaughWink" instead.') @@ -35054,7 +35054,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-wink?style=light /// LOL, emoticon, face, happy, smile - static const IconData lightFaceLaughWink = IconDataLight(0xf59c); + static const IconData lightFaceLaughWink = IconData(0xf59c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias laugh-wink for icon [lightFaceLaughWink] @Deprecated('Use "lightFaceLaughWink" instead.') @@ -35064,7 +35064,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-laugh-wink?style=thin /// LOL, emoticon, face, happy, smile - static const IconData thinFaceLaughWink = IconDataThin(0xf59c); + static const IconData thinFaceLaughWink = IconData(0xf59c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias laugh-wink for icon [thinFaceLaughWink] @Deprecated('Use "thinFaceLaughWink" instead.') @@ -35074,55 +35074,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-lying?style=solid /// dishonesty, face, fake, liar, lie, long nose, lying face, pinocchio - static const IconData solidFaceLying = IconDataSolid(0xe37e); + static const IconData solidFaceLying = IconData(0xe37e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Lying icon /// /// https://fontawesome.com/icons/face-lying?style=regular /// dishonesty, face, fake, liar, lie, long nose, lying face, pinocchio - static const IconData faceLying = IconDataRegular(0xe37e); + static const IconData faceLying = IconData(0xe37e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Lying icon /// /// https://fontawesome.com/icons/face-lying?style=light /// dishonesty, face, fake, liar, lie, long nose, lying face, pinocchio - static const IconData lightFaceLying = IconDataLight(0xe37e); + static const IconData lightFaceLying = IconData(0xe37e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Lying icon /// /// https://fontawesome.com/icons/face-lying?style=thin /// dishonesty, face, fake, liar, lie, long nose, lying face, pinocchio - static const IconData thinFaceLying = IconDataThin(0xe37e); + static const IconData thinFaceLying = IconData(0xe37e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Mask icon /// /// https://fontawesome.com/icons/face-mask?style=solid /// cold, coronavirus, covid, covid-19, doctor, face, face with medical mask, mask, medical, sick, surgical - static const IconData solidFaceMask = IconDataSolid(0xe37f); + static const IconData solidFaceMask = IconData(0xe37f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Mask icon /// /// https://fontawesome.com/icons/face-mask?style=regular /// cold, coronavirus, covid, covid-19, doctor, face, face with medical mask, mask, medical, sick, surgical - static const IconData faceMask = IconDataRegular(0xe37f); + static const IconData faceMask = IconData(0xe37f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Mask icon /// /// https://fontawesome.com/icons/face-mask?style=light /// cold, coronavirus, covid, covid-19, doctor, face, face with medical mask, mask, medical, sick, surgical - static const IconData lightFaceMask = IconDataLight(0xe37f); + static const IconData lightFaceMask = IconData(0xe37f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Mask icon /// /// https://fontawesome.com/icons/face-mask?style=thin /// cold, coronavirus, covid, covid-19, doctor, face, face with medical mask, mask, medical, sick, surgical - static const IconData thinFaceMask = IconDataThin(0xe37f); + static const IconData thinFaceMask = IconData(0xe37f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Meh icon /// /// https://fontawesome.com/icons/face-meh?style=solid /// deadpan, default, emoticon, face, meh, neutral, neutral face, rating, uer - static const IconData solidFaceMeh = IconDataSolid(0xf11a); + static const IconData solidFaceMeh = IconData(0xf11a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias meh for icon [solidFaceMeh] @Deprecated('Use "solidFaceMeh" instead.') @@ -35132,7 +35132,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh?style=regular /// deadpan, default, emoticon, face, meh, neutral, neutral face, rating, uer - static const IconData faceMeh = IconDataRegular(0xf11a); + static const IconData faceMeh = IconData(0xf11a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias meh for icon [faceMeh] @Deprecated('Use "faceMeh" instead.') @@ -35142,7 +35142,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh?style=light /// deadpan, default, emoticon, face, meh, neutral, neutral face, rating, uer - static const IconData lightFaceMeh = IconDataLight(0xf11a); + static const IconData lightFaceMeh = IconData(0xf11a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias meh for icon [lightFaceMeh] @Deprecated('Use "lightFaceMeh" instead.') @@ -35152,7 +35152,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh?style=thin /// deadpan, default, emoticon, face, meh, neutral, neutral face, rating, uer - static const IconData thinFaceMeh = IconDataThin(0xf11a); + static const IconData thinFaceMeh = IconData(0xf11a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias meh for icon [thinFaceMeh] @Deprecated('Use "thinFaceMeh" instead.') @@ -35162,7 +35162,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh-blank?style=solid /// emoticon, face, face without mouth, mouth, neutral, quiet, rating, silent - static const IconData solidFaceMehBlank = IconDataSolid(0xf5a4); + static const IconData solidFaceMehBlank = IconData(0xf5a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias meh-blank for icon [solidFaceMehBlank] @Deprecated('Use "solidFaceMehBlank" instead.') @@ -35172,7 +35172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh-blank?style=regular /// emoticon, face, face without mouth, mouth, neutral, quiet, rating, silent - static const IconData faceMehBlank = IconDataRegular(0xf5a4); + static const IconData faceMehBlank = IconData(0xf5a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias meh-blank for icon [faceMehBlank] @Deprecated('Use "faceMehBlank" instead.') @@ -35182,7 +35182,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh-blank?style=light /// emoticon, face, face without mouth, mouth, neutral, quiet, rating, silent - static const IconData lightFaceMehBlank = IconDataLight(0xf5a4); + static const IconData lightFaceMehBlank = IconData(0xf5a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias meh-blank for icon [lightFaceMehBlank] @Deprecated('Use "lightFaceMehBlank" instead.') @@ -35192,7 +35192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-meh-blank?style=thin /// emoticon, face, face without mouth, mouth, neutral, quiet, rating, silent - static const IconData thinFaceMehBlank = IconDataThin(0xf5a4); + static const IconData thinFaceMehBlank = IconData(0xf5a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias meh-blank for icon [thinFaceMehBlank] @Deprecated('Use "thinFaceMehBlank" instead.') @@ -35202,271 +35202,271 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-melting?style=solid /// embarass, hot, sarcasm, shame - static const IconData solidFaceMelting = IconDataSolid(0xe483); + static const IconData solidFaceMelting = IconData(0xe483, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Melting icon /// /// https://fontawesome.com/icons/face-melting?style=regular /// embarass, hot, sarcasm, shame - static const IconData faceMelting = IconDataRegular(0xe483); + static const IconData faceMelting = IconData(0xe483, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Melting icon /// /// https://fontawesome.com/icons/face-melting?style=light /// embarass, hot, sarcasm, shame - static const IconData lightFaceMelting = IconDataLight(0xe483); + static const IconData lightFaceMelting = IconData(0xe483, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Melting icon /// /// https://fontawesome.com/icons/face-melting?style=thin /// embarass, hot, sarcasm, shame - static const IconData thinFaceMelting = IconDataThin(0xe483); + static const IconData thinFaceMelting = IconData(0xe483, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Monocle icon /// /// https://fontawesome.com/icons/face-monocle?style=solid /// face with monocle, stuffy, thinking, wealthy - static const IconData solidFaceMonocle = IconDataSolid(0xe380); + static const IconData solidFaceMonocle = IconData(0xe380, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Monocle icon /// /// https://fontawesome.com/icons/face-monocle?style=regular /// face with monocle, stuffy, thinking, wealthy - static const IconData faceMonocle = IconDataRegular(0xe380); + static const IconData faceMonocle = IconData(0xe380, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Monocle icon /// /// https://fontawesome.com/icons/face-monocle?style=light /// face with monocle, stuffy, thinking, wealthy - static const IconData lightFaceMonocle = IconDataLight(0xe380); + static const IconData lightFaceMonocle = IconData(0xe380, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Monocle icon /// /// https://fontawesome.com/icons/face-monocle?style=thin /// face with monocle, stuffy, thinking, wealthy - static const IconData thinFaceMonocle = IconDataThin(0xe380); + static const IconData thinFaceMonocle = IconData(0xe380, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Nauseated icon /// /// https://fontawesome.com/icons/face-nauseated?style=solid /// digust, face, flu, green, mr yuck, nauseated, nauseated face, sickness, vomit - static const IconData solidFaceNauseated = IconDataSolid(0xe381); + static const IconData solidFaceNauseated = IconData(0xe381, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Nauseated icon /// /// https://fontawesome.com/icons/face-nauseated?style=regular /// digust, face, flu, green, mr yuck, nauseated, nauseated face, sickness, vomit - static const IconData faceNauseated = IconDataRegular(0xe381); + static const IconData faceNauseated = IconData(0xe381, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Nauseated icon /// /// https://fontawesome.com/icons/face-nauseated?style=light /// digust, face, flu, green, mr yuck, nauseated, nauseated face, sickness, vomit - static const IconData lightFaceNauseated = IconDataLight(0xe381); + static const IconData lightFaceNauseated = IconData(0xe381, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Nauseated icon /// /// https://fontawesome.com/icons/face-nauseated?style=thin /// digust, face, flu, green, mr yuck, nauseated, nauseated face, sickness, vomit - static const IconData thinFaceNauseated = IconDataThin(0xe381); + static const IconData thinFaceNauseated = IconData(0xe381, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Nose Steam icon /// /// https://fontawesome.com/icons/face-nose-steam?style=solid /// angry, face, face with steam from nose, frustrated, mad, steaming, triumph, upset, won - static const IconData solidFaceNoseSteam = IconDataSolid(0xe382); + static const IconData solidFaceNoseSteam = IconData(0xe382, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Nose Steam icon /// /// https://fontawesome.com/icons/face-nose-steam?style=regular /// angry, face, face with steam from nose, frustrated, mad, steaming, triumph, upset, won - static const IconData faceNoseSteam = IconDataRegular(0xe382); + static const IconData faceNoseSteam = IconData(0xe382, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Nose Steam icon /// /// https://fontawesome.com/icons/face-nose-steam?style=light /// angry, face, face with steam from nose, frustrated, mad, steaming, triumph, upset, won - static const IconData lightFaceNoseSteam = IconDataLight(0xe382); + static const IconData lightFaceNoseSteam = IconData(0xe382, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Nose Steam icon /// /// https://fontawesome.com/icons/face-nose-steam?style=thin /// angry, face, face with steam from nose, frustrated, mad, steaming, triumph, upset, won - static const IconData thinFaceNoseSteam = IconDataThin(0xe382); + static const IconData thinFaceNoseSteam = IconData(0xe382, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Party icon /// /// https://fontawesome.com/icons/face-party?style=solid /// celebration, hat, horn, party, partying face - static const IconData solidFaceParty = IconDataSolid(0xe383); + static const IconData solidFaceParty = IconData(0xe383, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Party icon /// /// https://fontawesome.com/icons/face-party?style=regular /// celebration, hat, horn, party, partying face - static const IconData faceParty = IconDataRegular(0xe383); + static const IconData faceParty = IconData(0xe383, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Party icon /// /// https://fontawesome.com/icons/face-party?style=light /// celebration, hat, horn, party, partying face - static const IconData lightFaceParty = IconDataLight(0xe383); + static const IconData lightFaceParty = IconData(0xe383, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Party icon /// /// https://fontawesome.com/icons/face-party?style=thin /// celebration, hat, horn, party, partying face - static const IconData thinFaceParty = IconDataThin(0xe383); + static const IconData thinFaceParty = IconData(0xe383, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Pensive icon /// /// https://fontawesome.com/icons/face-pensive?style=solid /// dejected, face, pensive, pensive face, remorse, sad, sorrow - static const IconData solidFacePensive = IconDataSolid(0xe384); + static const IconData solidFacePensive = IconData(0xe384, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Pensive icon /// /// https://fontawesome.com/icons/face-pensive?style=regular /// dejected, face, pensive, pensive face, remorse, sad, sorrow - static const IconData facePensive = IconDataRegular(0xe384); + static const IconData facePensive = IconData(0xe384, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Pensive icon /// /// https://fontawesome.com/icons/face-pensive?style=light /// dejected, face, pensive, pensive face, remorse, sad, sorrow - static const IconData lightFacePensive = IconDataLight(0xe384); + static const IconData lightFacePensive = IconData(0xe384, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Pensive icon /// /// https://fontawesome.com/icons/face-pensive?style=thin /// dejected, face, pensive, pensive face, remorse, sad, sorrow - static const IconData thinFacePensive = IconDataThin(0xe384); + static const IconData thinFacePensive = IconData(0xe384, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Persevering icon /// /// https://fontawesome.com/icons/face-persevering?style=solid /// face, frustration, helpless, persevere, persevering face, scrunched - static const IconData solidFacePersevering = IconDataSolid(0xe385); + static const IconData solidFacePersevering = IconData(0xe385, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Persevering icon /// /// https://fontawesome.com/icons/face-persevering?style=regular /// face, frustration, helpless, persevere, persevering face, scrunched - static const IconData facePersevering = IconDataRegular(0xe385); + static const IconData facePersevering = IconData(0xe385, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Persevering icon /// /// https://fontawesome.com/icons/face-persevering?style=light /// face, frustration, helpless, persevere, persevering face, scrunched - static const IconData lightFacePersevering = IconDataLight(0xe385); + static const IconData lightFacePersevering = IconData(0xe385, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Persevering icon /// /// https://fontawesome.com/icons/face-persevering?style=thin /// face, frustration, helpless, persevere, persevering face, scrunched - static const IconData thinFacePersevering = IconDataThin(0xe385); + static const IconData thinFacePersevering = IconData(0xe385, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Pleading icon /// /// https://fontawesome.com/icons/face-pleading?style=solid /// begging, glossy, mercy, pleading face, puppy eyes, simp - static const IconData solidFacePleading = IconDataSolid(0xe386); + static const IconData solidFacePleading = IconData(0xe386, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Pleading icon /// /// https://fontawesome.com/icons/face-pleading?style=regular /// begging, glossy, mercy, pleading face, puppy eyes, simp - static const IconData facePleading = IconDataRegular(0xe386); + static const IconData facePleading = IconData(0xe386, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Pleading icon /// /// https://fontawesome.com/icons/face-pleading?style=light /// begging, glossy, mercy, pleading face, puppy eyes, simp - static const IconData lightFacePleading = IconDataLight(0xe386); + static const IconData lightFacePleading = IconData(0xe386, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Pleading icon /// /// https://fontawesome.com/icons/face-pleading?style=thin /// begging, glossy, mercy, pleading face, puppy eyes, simp - static const IconData thinFacePleading = IconDataThin(0xe386); + static const IconData thinFacePleading = IconData(0xe386, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Pouting icon /// /// https://fontawesome.com/icons/face-pouting?style=solid /// angry, face, mad, pouting, pouting face, rage, red - static const IconData solidFacePouting = IconDataSolid(0xe387); + static const IconData solidFacePouting = IconData(0xe387, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Pouting icon /// /// https://fontawesome.com/icons/face-pouting?style=regular /// angry, face, mad, pouting, pouting face, rage, red - static const IconData facePouting = IconDataRegular(0xe387); + static const IconData facePouting = IconData(0xe387, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Pouting icon /// /// https://fontawesome.com/icons/face-pouting?style=light /// angry, face, mad, pouting, pouting face, rage, red - static const IconData lightFacePouting = IconDataLight(0xe387); + static const IconData lightFacePouting = IconData(0xe387, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Pouting icon /// /// https://fontawesome.com/icons/face-pouting?style=thin /// angry, face, mad, pouting, pouting face, rage, red - static const IconData thinFacePouting = IconDataThin(0xe387); + static const IconData thinFacePouting = IconData(0xe387, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Raised Eyebrow icon /// /// https://fontawesome.com/icons/face-raised-eyebrow?style=solid /// colbert, disapproval, disbelief, distrust, face with raised eyebrow, mild surprise, scepticism, skeptic, surprise, the rock - static const IconData solidFaceRaisedEyebrow = IconDataSolid(0xe388); + static const IconData solidFaceRaisedEyebrow = IconData(0xe388, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Raised Eyebrow icon /// /// https://fontawesome.com/icons/face-raised-eyebrow?style=regular /// colbert, disapproval, disbelief, distrust, face with raised eyebrow, mild surprise, scepticism, skeptic, surprise, the rock - static const IconData faceRaisedEyebrow = IconDataRegular(0xe388); + static const IconData faceRaisedEyebrow = IconData(0xe388, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Raised Eyebrow icon /// /// https://fontawesome.com/icons/face-raised-eyebrow?style=light /// colbert, disapproval, disbelief, distrust, face with raised eyebrow, mild surprise, scepticism, skeptic, surprise, the rock - static const IconData lightFaceRaisedEyebrow = IconDataLight(0xe388); + static const IconData lightFaceRaisedEyebrow = IconData(0xe388, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Raised Eyebrow icon /// /// https://fontawesome.com/icons/face-raised-eyebrow?style=thin /// colbert, disapproval, disbelief, distrust, face with raised eyebrow, mild surprise, scepticism, skeptic, surprise, the rock - static const IconData thinFaceRaisedEyebrow = IconDataThin(0xe388); + static const IconData thinFaceRaisedEyebrow = IconData(0xe388, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Relieved icon /// /// https://fontawesome.com/icons/face-relieved?style=solid /// content, face, happy, pleased, relieved, relieved face - static const IconData solidFaceRelieved = IconDataSolid(0xe389); + static const IconData solidFaceRelieved = IconData(0xe389, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Relieved icon /// /// https://fontawesome.com/icons/face-relieved?style=regular /// content, face, happy, pleased, relieved, relieved face - static const IconData faceRelieved = IconDataRegular(0xe389); + static const IconData faceRelieved = IconData(0xe389, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Relieved icon /// /// https://fontawesome.com/icons/face-relieved?style=light /// content, face, happy, pleased, relieved, relieved face - static const IconData lightFaceRelieved = IconDataLight(0xe389); + static const IconData lightFaceRelieved = IconData(0xe389, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Relieved icon /// /// https://fontawesome.com/icons/face-relieved?style=thin /// content, face, happy, pleased, relieved, relieved face - static const IconData thinFaceRelieved = IconDataThin(0xe389); + static const IconData thinFaceRelieved = IconData(0xe389, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Rolling Eyes icon /// /// https://fontawesome.com/icons/face-rolling-eyes?style=solid /// emoticon, eyeroll, eyes, face, face with rolling eyes, neutral, rating, rolling - static const IconData solidFaceRollingEyes = IconDataSolid(0xf5a5); + static const IconData solidFaceRollingEyes = IconData(0xf5a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias meh-rolling-eyes for icon [solidFaceRollingEyes] @Deprecated('Use "solidFaceRollingEyes" instead.') @@ -35476,7 +35476,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-rolling-eyes?style=regular /// emoticon, eyeroll, eyes, face, face with rolling eyes, neutral, rating, rolling - static const IconData faceRollingEyes = IconDataRegular(0xf5a5); + static const IconData faceRollingEyes = IconData(0xf5a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias meh-rolling-eyes for icon [faceRollingEyes] @Deprecated('Use "faceRollingEyes" instead.') @@ -35486,7 +35486,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-rolling-eyes?style=light /// emoticon, eyeroll, eyes, face, face with rolling eyes, neutral, rating, rolling - static const IconData lightFaceRollingEyes = IconDataLight(0xf5a5); + static const IconData lightFaceRollingEyes = IconData(0xf5a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias meh-rolling-eyes for icon [lightFaceRollingEyes] @Deprecated('Use "lightFaceRollingEyes" instead.') @@ -35496,7 +35496,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-rolling-eyes?style=thin /// emoticon, eyeroll, eyes, face, face with rolling eyes, neutral, rating, rolling - static const IconData thinFaceRollingEyes = IconDataThin(0xf5a5); + static const IconData thinFaceRollingEyes = IconData(0xf5a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias meh-rolling-eyes for icon [thinFaceRollingEyes] @Deprecated('Use "thinFaceRollingEyes" instead.') @@ -35506,7 +35506,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-cry?style=solid /// cry, emoticon, face, loudly crying face, sad, sob, tear, tears - static const IconData solidFaceSadCry = IconDataSolid(0xf5b3); + static const IconData solidFaceSadCry = IconData(0xf5b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sad-cry for icon [solidFaceSadCry] @Deprecated('Use "solidFaceSadCry" instead.') @@ -35516,7 +35516,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-cry?style=regular /// cry, emoticon, face, loudly crying face, sad, sob, tear, tears - static const IconData faceSadCry = IconDataRegular(0xf5b3); + static const IconData faceSadCry = IconData(0xf5b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sad-cry for icon [faceSadCry] @Deprecated('Use "faceSadCry" instead.') @@ -35526,7 +35526,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-cry?style=light /// cry, emoticon, face, loudly crying face, sad, sob, tear, tears - static const IconData lightFaceSadCry = IconDataLight(0xf5b3); + static const IconData lightFaceSadCry = IconData(0xf5b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sad-cry for icon [lightFaceSadCry] @Deprecated('Use "lightFaceSadCry" instead.') @@ -35536,7 +35536,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-cry?style=thin /// cry, emoticon, face, loudly crying face, sad, sob, tear, tears - static const IconData thinFaceSadCry = IconDataThin(0xf5b3); + static const IconData thinFaceSadCry = IconData(0xf5b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sad-cry for icon [thinFaceSadCry] @Deprecated('Use "thinFaceSadCry" instead.') @@ -35546,31 +35546,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-sweat?style=solid /// disappointed, face, relieved, sad but relieved face, whew - static const IconData solidFaceSadSweat = IconDataSolid(0xe38a); + static const IconData solidFaceSadSweat = IconData(0xe38a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Sad Sweat icon /// /// https://fontawesome.com/icons/face-sad-sweat?style=regular /// disappointed, face, relieved, sad but relieved face, whew - static const IconData faceSadSweat = IconDataRegular(0xe38a); + static const IconData faceSadSweat = IconData(0xe38a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Sad Sweat icon /// /// https://fontawesome.com/icons/face-sad-sweat?style=light /// disappointed, face, relieved, sad but relieved face, whew - static const IconData lightFaceSadSweat = IconDataLight(0xe38a); + static const IconData lightFaceSadSweat = IconData(0xe38a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Sad Sweat icon /// /// https://fontawesome.com/icons/face-sad-sweat?style=thin /// disappointed, face, relieved, sad but relieved face, whew - static const IconData thinFaceSadSweat = IconDataThin(0xe38a); + static const IconData thinFaceSadSweat = IconData(0xe38a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Sad Tear icon /// /// https://fontawesome.com/icons/face-sad-tear?style=solid /// cry, crying face, emoticon, face, sad, tear, tears - static const IconData solidFaceSadTear = IconDataSolid(0xf5b4); + static const IconData solidFaceSadTear = IconData(0xf5b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sad-tear for icon [solidFaceSadTear] @Deprecated('Use "solidFaceSadTear" instead.') @@ -35580,7 +35580,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-tear?style=regular /// cry, crying face, emoticon, face, sad, tear, tears - static const IconData faceSadTear = IconDataRegular(0xf5b4); + static const IconData faceSadTear = IconData(0xf5b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sad-tear for icon [faceSadTear] @Deprecated('Use "faceSadTear" instead.') @@ -35590,7 +35590,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-tear?style=light /// cry, crying face, emoticon, face, sad, tear, tears - static const IconData lightFaceSadTear = IconDataLight(0xf5b4); + static const IconData lightFaceSadTear = IconData(0xf5b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sad-tear for icon [lightFaceSadTear] @Deprecated('Use "lightFaceSadTear" instead.') @@ -35600,7 +35600,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-sad-tear?style=thin /// cry, crying face, emoticon, face, sad, tear, tears - static const IconData thinFaceSadTear = IconDataThin(0xf5b4); + static const IconData thinFaceSadTear = IconData(0xf5b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sad-tear for icon [thinFaceSadTear] @Deprecated('Use "thinFaceSadTear" instead.') @@ -35610,127 +35610,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-saluting?style=solid /// honor, respect, salute - static const IconData solidFaceSaluting = IconDataSolid(0xe484); + static const IconData solidFaceSaluting = IconData(0xe484, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Saluting icon /// /// https://fontawesome.com/icons/face-saluting?style=regular /// honor, respect, salute - static const IconData faceSaluting = IconDataRegular(0xe484); + static const IconData faceSaluting = IconData(0xe484, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Saluting icon /// /// https://fontawesome.com/icons/face-saluting?style=light /// honor, respect, salute - static const IconData lightFaceSaluting = IconDataLight(0xe484); + static const IconData lightFaceSaluting = IconData(0xe484, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Saluting icon /// /// https://fontawesome.com/icons/face-saluting?style=thin /// honor, respect, salute - static const IconData thinFaceSaluting = IconDataThin(0xe484); + static const IconData thinFaceSaluting = IconData(0xe484, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Scream icon /// /// https://fontawesome.com/icons/face-scream?style=solid /// face, face screaming in fear, fear, home alone, munch, scared, scream - static const IconData solidFaceScream = IconDataSolid(0xe38b); + static const IconData solidFaceScream = IconData(0xe38b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Scream icon /// /// https://fontawesome.com/icons/face-scream?style=regular /// face, face screaming in fear, fear, home alone, munch, scared, scream - static const IconData faceScream = IconDataRegular(0xe38b); + static const IconData faceScream = IconData(0xe38b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Scream icon /// /// https://fontawesome.com/icons/face-scream?style=light /// face, face screaming in fear, fear, home alone, munch, scared, scream - static const IconData lightFaceScream = IconDataLight(0xe38b); + static const IconData lightFaceScream = IconData(0xe38b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Scream icon /// /// https://fontawesome.com/icons/face-scream?style=thin /// face, face screaming in fear, fear, home alone, munch, scared, scream - static const IconData thinFaceScream = IconDataThin(0xe38b); + static const IconData thinFaceScream = IconData(0xe38b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Shush icon /// /// https://fontawesome.com/icons/face-shush?style=solid /// finger, hush, quiet, shh, shush, shushing face - static const IconData solidFaceShush = IconDataSolid(0xe38c); + static const IconData solidFaceShush = IconData(0xe38c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Shush icon /// /// https://fontawesome.com/icons/face-shush?style=regular /// finger, hush, quiet, shh, shush, shushing face - static const IconData faceShush = IconDataRegular(0xe38c); + static const IconData faceShush = IconData(0xe38c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Shush icon /// /// https://fontawesome.com/icons/face-shush?style=light /// finger, hush, quiet, shh, shush, shushing face - static const IconData lightFaceShush = IconDataLight(0xe38c); + static const IconData lightFaceShush = IconData(0xe38c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Shush icon /// /// https://fontawesome.com/icons/face-shush?style=thin /// finger, hush, quiet, shh, shush, shushing face - static const IconData thinFaceShush = IconDataThin(0xe38c); + static const IconData thinFaceShush = IconData(0xe38c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Sleeping icon /// /// https://fontawesome.com/icons/face-sleeping?style=solid /// face, sleep, sleeping face, snooze, snoring, zzz - static const IconData solidFaceSleeping = IconDataSolid(0xe38d); + static const IconData solidFaceSleeping = IconData(0xe38d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Sleeping icon /// /// https://fontawesome.com/icons/face-sleeping?style=regular /// face, sleep, sleeping face, snooze, snoring, zzz - static const IconData faceSleeping = IconDataRegular(0xe38d); + static const IconData faceSleeping = IconData(0xe38d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Sleeping icon /// /// https://fontawesome.com/icons/face-sleeping?style=light /// face, sleep, sleeping face, snooze, snoring, zzz - static const IconData lightFaceSleeping = IconDataLight(0xe38d); + static const IconData lightFaceSleeping = IconData(0xe38d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Sleeping icon /// /// https://fontawesome.com/icons/face-sleeping?style=thin /// face, sleep, sleeping face, snooze, snoring, zzz - static const IconData thinFaceSleeping = IconDataThin(0xe38d); + static const IconData thinFaceSleeping = IconData(0xe38d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Sleepy icon /// /// https://fontawesome.com/icons/face-sleepy?style=solid /// bubble, face, sleep, sleepy face, snooze, snot, tear, tired - static const IconData solidFaceSleepy = IconDataSolid(0xe38e); + static const IconData solidFaceSleepy = IconData(0xe38e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Sleepy icon /// /// https://fontawesome.com/icons/face-sleepy?style=regular /// bubble, face, sleep, sleepy face, snooze, snot, tear, tired - static const IconData faceSleepy = IconDataRegular(0xe38e); + static const IconData faceSleepy = IconData(0xe38e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Sleepy icon /// /// https://fontawesome.com/icons/face-sleepy?style=light /// bubble, face, sleep, sleepy face, snooze, snot, tear, tired - static const IconData lightFaceSleepy = IconDataLight(0xe38e); + static const IconData lightFaceSleepy = IconData(0xe38e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Sleepy icon /// /// https://fontawesome.com/icons/face-sleepy?style=thin /// bubble, face, sleep, sleepy face, snooze, snot, tear, tired - static const IconData thinFaceSleepy = IconDataThin(0xe38e); + static const IconData thinFaceSleepy = IconData(0xe38e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile icon /// /// https://fontawesome.com/icons/face-smile?style=solid /// approve, default, emoticon, face, happy, rating, satisfied, slightly smiling face, smile, uer - static const IconData solidFaceSmile = IconDataSolid(0xf118); + static const IconData solidFaceSmile = IconData(0xf118, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias smile for icon [solidFaceSmile] @Deprecated('Use "solidFaceSmile" instead.') @@ -35740,7 +35740,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile?style=regular /// approve, default, emoticon, face, happy, rating, satisfied, slightly smiling face, smile, uer - static const IconData faceSmile = IconDataRegular(0xf118); + static const IconData faceSmile = IconData(0xf118, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias smile for icon [faceSmile] @Deprecated('Use "faceSmile" instead.') @@ -35750,7 +35750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile?style=light /// approve, default, emoticon, face, happy, rating, satisfied, slightly smiling face, smile, uer - static const IconData lightFaceSmile = IconDataLight(0xf118); + static const IconData lightFaceSmile = IconData(0xf118, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias smile for icon [lightFaceSmile] @Deprecated('Use "lightFaceSmile" instead.') @@ -35760,7 +35760,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile?style=thin /// approve, default, emoticon, face, happy, rating, satisfied, slightly smiling face, smile, uer - static const IconData thinFaceSmile = IconDataThin(0xf118); + static const IconData thinFaceSmile = IconData(0xf118, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias smile for icon [thinFaceSmile] @Deprecated('Use "thinFaceSmile" instead.') @@ -35770,7 +35770,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-beam?style=solid /// blush, emoticon, eye, face, happy, positive, smile, smiling face with smiling eyes - static const IconData solidFaceSmileBeam = IconDataSolid(0xf5b8); + static const IconData solidFaceSmileBeam = IconData(0xf5b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias smile-beam for icon [solidFaceSmileBeam] @Deprecated('Use "solidFaceSmileBeam" instead.') @@ -35780,7 +35780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-beam?style=regular /// blush, emoticon, eye, face, happy, positive, smile, smiling face with smiling eyes - static const IconData faceSmileBeam = IconDataRegular(0xf5b8); + static const IconData faceSmileBeam = IconData(0xf5b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias smile-beam for icon [faceSmileBeam] @Deprecated('Use "faceSmileBeam" instead.') @@ -35790,7 +35790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-beam?style=light /// blush, emoticon, eye, face, happy, positive, smile, smiling face with smiling eyes - static const IconData lightFaceSmileBeam = IconDataLight(0xf5b8); + static const IconData lightFaceSmileBeam = IconData(0xf5b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias smile-beam for icon [lightFaceSmileBeam] @Deprecated('Use "lightFaceSmileBeam" instead.') @@ -35800,7 +35800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-beam?style=thin /// blush, emoticon, eye, face, happy, positive, smile, smiling face with smiling eyes - static const IconData thinFaceSmileBeam = IconDataThin(0xf5b8); + static const IconData thinFaceSmileBeam = IconData(0xf5b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias smile-beam for icon [thinFaceSmileBeam] @Deprecated('Use "thinFaceSmileBeam" instead.') @@ -35810,79 +35810,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-halo?style=solid /// angel, face, fantasy, halo, happy, innocent, smiling face with halo - static const IconData solidFaceSmileHalo = IconDataSolid(0xe38f); + static const IconData solidFaceSmileHalo = IconData(0xe38f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Halo icon /// /// https://fontawesome.com/icons/face-smile-halo?style=regular /// angel, face, fantasy, halo, happy, innocent, smiling face with halo - static const IconData faceSmileHalo = IconDataRegular(0xe38f); + static const IconData faceSmileHalo = IconData(0xe38f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Halo icon /// /// https://fontawesome.com/icons/face-smile-halo?style=light /// angel, face, fantasy, halo, happy, innocent, smiling face with halo - static const IconData lightFaceSmileHalo = IconDataLight(0xe38f); + static const IconData lightFaceSmileHalo = IconData(0xe38f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Halo icon /// /// https://fontawesome.com/icons/face-smile-halo?style=thin /// angel, face, fantasy, halo, happy, innocent, smiling face with halo - static const IconData thinFaceSmileHalo = IconDataThin(0xe38f); + static const IconData thinFaceSmileHalo = IconData(0xe38f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Hearts icon /// /// https://fontawesome.com/icons/face-smile-hearts?style=solid /// adore, crush, happy, hearts, in love, love, smiling face with hearts - static const IconData solidFaceSmileHearts = IconDataSolid(0xe390); + static const IconData solidFaceSmileHearts = IconData(0xe390, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Hearts icon /// /// https://fontawesome.com/icons/face-smile-hearts?style=regular /// adore, crush, happy, hearts, in love, love, smiling face with hearts - static const IconData faceSmileHearts = IconDataRegular(0xe390); + static const IconData faceSmileHearts = IconData(0xe390, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Hearts icon /// /// https://fontawesome.com/icons/face-smile-hearts?style=light /// adore, crush, happy, hearts, in love, love, smiling face with hearts - static const IconData lightFaceSmileHearts = IconDataLight(0xe390); + static const IconData lightFaceSmileHearts = IconData(0xe390, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Hearts icon /// /// https://fontawesome.com/icons/face-smile-hearts?style=thin /// adore, crush, happy, hearts, in love, love, smiling face with hearts - static const IconData thinFaceSmileHearts = IconDataThin(0xe390); + static const IconData thinFaceSmileHearts = IconData(0xe390, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Horns icon /// /// https://fontawesome.com/icons/face-smile-horns?style=solid /// face, fairy tale, fantasy, goblin, horns, imp, smile, smiling face with horns - static const IconData solidFaceSmileHorns = IconDataSolid(0xe391); + static const IconData solidFaceSmileHorns = IconData(0xe391, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Horns icon /// /// https://fontawesome.com/icons/face-smile-horns?style=regular /// face, fairy tale, fantasy, goblin, horns, imp, smile, smiling face with horns - static const IconData faceSmileHorns = IconDataRegular(0xe391); + static const IconData faceSmileHorns = IconData(0xe391, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Horns icon /// /// https://fontawesome.com/icons/face-smile-horns?style=light /// face, fairy tale, fantasy, goblin, horns, imp, smile, smiling face with horns - static const IconData lightFaceSmileHorns = IconDataLight(0xe391); + static const IconData lightFaceSmileHorns = IconData(0xe391, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Horns icon /// /// https://fontawesome.com/icons/face-smile-horns?style=thin /// face, fairy tale, fantasy, goblin, horns, imp, smile, smiling face with horns - static const IconData thinFaceSmileHorns = IconDataThin(0xe391); + static const IconData thinFaceSmileHorns = IconData(0xe391, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Plus icon /// /// https://fontawesome.com/icons/face-smile-plus?style=solid /// add, emoticon, face, follow, happy, new - static const IconData solidFaceSmilePlus = IconDataSolid(0xf5b9); + static const IconData solidFaceSmilePlus = IconData(0xf5b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias smile-plus for icon [solidFaceSmilePlus] @Deprecated('Use "solidFaceSmilePlus" instead.') @@ -35892,7 +35892,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-plus?style=regular /// add, emoticon, face, follow, happy, new - static const IconData faceSmilePlus = IconDataRegular(0xf5b9); + static const IconData faceSmilePlus = IconData(0xf5b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias smile-plus for icon [faceSmilePlus] @Deprecated('Use "faceSmilePlus" instead.') @@ -35902,7 +35902,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-plus?style=light /// add, emoticon, face, follow, happy, new - static const IconData lightFaceSmilePlus = IconDataLight(0xf5b9); + static const IconData lightFaceSmilePlus = IconData(0xf5b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias smile-plus for icon [lightFaceSmilePlus] @Deprecated('Use "lightFaceSmilePlus" instead.') @@ -35912,7 +35912,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-plus?style=thin /// add, emoticon, face, follow, happy, new - static const IconData thinFaceSmilePlus = IconDataThin(0xf5b9); + static const IconData thinFaceSmilePlus = IconData(0xf5b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias smile-plus for icon [thinFaceSmilePlus] @Deprecated('Use "thinFaceSmilePlus" instead.') @@ -35922,103 +35922,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-relaxed?style=solid /// face, outlined, relaxed, smile, smiling face - static const IconData solidFaceSmileRelaxed = IconDataSolid(0xe392); + static const IconData solidFaceSmileRelaxed = IconData(0xe392, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Relaxed icon /// /// https://fontawesome.com/icons/face-smile-relaxed?style=regular /// face, outlined, relaxed, smile, smiling face - static const IconData faceSmileRelaxed = IconDataRegular(0xe392); + static const IconData faceSmileRelaxed = IconData(0xe392, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Relaxed icon /// /// https://fontawesome.com/icons/face-smile-relaxed?style=light /// face, outlined, relaxed, smile, smiling face - static const IconData lightFaceSmileRelaxed = IconDataLight(0xe392); + static const IconData lightFaceSmileRelaxed = IconData(0xe392, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Relaxed icon /// /// https://fontawesome.com/icons/face-smile-relaxed?style=thin /// face, outlined, relaxed, smile, smiling face - static const IconData thinFaceSmileRelaxed = IconDataThin(0xe392); + static const IconData thinFaceSmileRelaxed = IconData(0xe392, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Tear icon /// /// https://fontawesome.com/icons/face-smile-tear?style=solid /// cry, grateful, proud, relieved, smiling, smiling face with tear, tear, touched - static const IconData solidFaceSmileTear = IconDataSolid(0xe393); + static const IconData solidFaceSmileTear = IconData(0xe393, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Tear icon /// /// https://fontawesome.com/icons/face-smile-tear?style=regular /// cry, grateful, proud, relieved, smiling, smiling face with tear, tear, touched - static const IconData faceSmileTear = IconDataRegular(0xe393); + static const IconData faceSmileTear = IconData(0xe393, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Tear icon /// /// https://fontawesome.com/icons/face-smile-tear?style=light /// cry, grateful, proud, relieved, smiling, smiling face with tear, tear, touched - static const IconData lightFaceSmileTear = IconDataLight(0xe393); + static const IconData lightFaceSmileTear = IconData(0xe393, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Tear icon /// /// https://fontawesome.com/icons/face-smile-tear?style=thin /// cry, grateful, proud, relieved, smiling, smiling face with tear, tear, touched - static const IconData thinFaceSmileTear = IconDataThin(0xe393); + static const IconData thinFaceSmileTear = IconData(0xe393, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Tongue icon /// /// https://fontawesome.com/icons/face-smile-tongue?style=solid /// delicious, face, face savoring food, savoring, savouring, smile, yum - static const IconData solidFaceSmileTongue = IconDataSolid(0xe394); + static const IconData solidFaceSmileTongue = IconData(0xe394, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Tongue icon /// /// https://fontawesome.com/icons/face-smile-tongue?style=regular /// delicious, face, face savoring food, savoring, savouring, smile, yum - static const IconData faceSmileTongue = IconDataRegular(0xe394); + static const IconData faceSmileTongue = IconData(0xe394, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Tongue icon /// /// https://fontawesome.com/icons/face-smile-tongue?style=light /// delicious, face, face savoring food, savoring, savouring, smile, yum - static const IconData lightFaceSmileTongue = IconDataLight(0xe394); + static const IconData lightFaceSmileTongue = IconData(0xe394, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Tongue icon /// /// https://fontawesome.com/icons/face-smile-tongue?style=thin /// delicious, face, face savoring food, savoring, savouring, smile, yum - static const IconData thinFaceSmileTongue = IconDataThin(0xe394); + static const IconData thinFaceSmileTongue = IconData(0xe394, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Upside Down icon /// /// https://fontawesome.com/icons/face-smile-upside-down?style=solid /// awkward, face, humor, irony, sarcasm, silly, upside-down, upside-down face - static const IconData solidFaceSmileUpsideDown = IconDataSolid(0xe395); + static const IconData solidFaceSmileUpsideDown = IconData(0xe395, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smile Upside Down icon /// /// https://fontawesome.com/icons/face-smile-upside-down?style=regular /// awkward, face, humor, irony, sarcasm, silly, upside-down, upside-down face - static const IconData faceSmileUpsideDown = IconDataRegular(0xe395); + static const IconData faceSmileUpsideDown = IconData(0xe395, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smile Upside Down icon /// /// https://fontawesome.com/icons/face-smile-upside-down?style=light /// awkward, face, humor, irony, sarcasm, silly, upside-down, upside-down face - static const IconData lightFaceSmileUpsideDown = IconDataLight(0xe395); + static const IconData lightFaceSmileUpsideDown = IconData(0xe395, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smile Upside Down icon /// /// https://fontawesome.com/icons/face-smile-upside-down?style=thin /// awkward, face, humor, irony, sarcasm, silly, upside-down, upside-down face - static const IconData thinFaceSmileUpsideDown = IconDataThin(0xe395); + static const IconData thinFaceSmileUpsideDown = IconData(0xe395, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smile Wink icon /// /// https://fontawesome.com/icons/face-smile-wink?style=solid /// emoticon, face, happy, hint, joke, wink, winking face - static const IconData solidFaceSmileWink = IconDataSolid(0xf4da); + static const IconData solidFaceSmileWink = IconData(0xf4da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias smile-wink for icon [solidFaceSmileWink] @Deprecated('Use "solidFaceSmileWink" instead.') @@ -36028,7 +36028,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-wink?style=regular /// emoticon, face, happy, hint, joke, wink, winking face - static const IconData faceSmileWink = IconDataRegular(0xf4da); + static const IconData faceSmileWink = IconData(0xf4da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias smile-wink for icon [faceSmileWink] @Deprecated('Use "faceSmileWink" instead.') @@ -36038,7 +36038,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-wink?style=light /// emoticon, face, happy, hint, joke, wink, winking face - static const IconData lightFaceSmileWink = IconDataLight(0xf4da); + static const IconData lightFaceSmileWink = IconData(0xf4da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias smile-wink for icon [lightFaceSmileWink] @Deprecated('Use "lightFaceSmileWink" instead.') @@ -36048,7 +36048,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smile-wink?style=thin /// emoticon, face, happy, hint, joke, wink, winking face - static const IconData thinFaceSmileWink = IconDataThin(0xf4da); + static const IconData thinFaceSmileWink = IconData(0xf4da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias smile-wink for icon [thinFaceSmileWink] @Deprecated('Use "thinFaceSmileWink" instead.') @@ -36058,103 +36058,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-smiling-hands?style=solid /// care, face, hug, hugging, hugging face, jazz hands, love, support, wave - static const IconData solidFaceSmilingHands = IconDataSolid(0xe396); + static const IconData solidFaceSmilingHands = IconData(0xe396, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smiling Hands icon /// /// https://fontawesome.com/icons/face-smiling-hands?style=regular /// care, face, hug, hugging, hugging face, jazz hands, love, support, wave - static const IconData faceSmilingHands = IconDataRegular(0xe396); + static const IconData faceSmilingHands = IconData(0xe396, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smiling Hands icon /// /// https://fontawesome.com/icons/face-smiling-hands?style=light /// care, face, hug, hugging, hugging face, jazz hands, love, support, wave - static const IconData lightFaceSmilingHands = IconDataLight(0xe396); + static const IconData lightFaceSmilingHands = IconData(0xe396, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smiling Hands icon /// /// https://fontawesome.com/icons/face-smiling-hands?style=thin /// care, face, hug, hugging, hugging face, jazz hands, love, support, wave - static const IconData thinFaceSmilingHands = IconDataThin(0xe396); + static const IconData thinFaceSmilingHands = IconData(0xe396, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Smirking icon /// /// https://fontawesome.com/icons/face-smirking?style=solid /// face, flirt, grin, sexual, smirk, smirking face, suggestive, wry - static const IconData solidFaceSmirking = IconDataSolid(0xe397); + static const IconData solidFaceSmirking = IconData(0xe397, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Smirking icon /// /// https://fontawesome.com/icons/face-smirking?style=regular /// face, flirt, grin, sexual, smirk, smirking face, suggestive, wry - static const IconData faceSmirking = IconDataRegular(0xe397); + static const IconData faceSmirking = IconData(0xe397, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Smirking icon /// /// https://fontawesome.com/icons/face-smirking?style=light /// face, flirt, grin, sexual, smirk, smirking face, suggestive, wry - static const IconData lightFaceSmirking = IconDataLight(0xe397); + static const IconData lightFaceSmirking = IconData(0xe397, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Smirking icon /// /// https://fontawesome.com/icons/face-smirking?style=thin /// face, flirt, grin, sexual, smirk, smirking face, suggestive, wry - static const IconData thinFaceSmirking = IconDataThin(0xe397); + static const IconData thinFaceSmirking = IconData(0xe397, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Spiral Eyes icon /// /// https://fontawesome.com/icons/face-spiral-eyes?style=solid /// disorient, dizzy, hypnosis, hypnotize - static const IconData solidFaceSpiralEyes = IconDataSolid(0xe485); + static const IconData solidFaceSpiralEyes = IconData(0xe485, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Spiral Eyes icon /// /// https://fontawesome.com/icons/face-spiral-eyes?style=regular /// disorient, dizzy, hypnosis, hypnotize - static const IconData faceSpiralEyes = IconDataRegular(0xe485); + static const IconData faceSpiralEyes = IconData(0xe485, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Spiral Eyes icon /// /// https://fontawesome.com/icons/face-spiral-eyes?style=light /// disorient, dizzy, hypnosis, hypnotize - static const IconData lightFaceSpiralEyes = IconDataLight(0xe485); + static const IconData lightFaceSpiralEyes = IconData(0xe485, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Spiral Eyes icon /// /// https://fontawesome.com/icons/face-spiral-eyes?style=thin /// disorient, dizzy, hypnosis, hypnotize - static const IconData thinFaceSpiralEyes = IconDataThin(0xe485); + static const IconData thinFaceSpiralEyes = IconData(0xe485, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Sunglasses icon /// /// https://fontawesome.com/icons/face-sunglasses?style=solid /// bright, cool, face, friend, shades, smiling face with sunglasses, sun, sunglasses - static const IconData solidFaceSunglasses = IconDataSolid(0xe398); + static const IconData solidFaceSunglasses = IconData(0xe398, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Sunglasses icon /// /// https://fontawesome.com/icons/face-sunglasses?style=regular /// bright, cool, face, friend, shades, smiling face with sunglasses, sun, sunglasses - static const IconData faceSunglasses = IconDataRegular(0xe398); + static const IconData faceSunglasses = IconData(0xe398, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Sunglasses icon /// /// https://fontawesome.com/icons/face-sunglasses?style=light /// bright, cool, face, friend, shades, smiling face with sunglasses, sun, sunglasses - static const IconData lightFaceSunglasses = IconDataLight(0xe398); + static const IconData lightFaceSunglasses = IconData(0xe398, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Sunglasses icon /// /// https://fontawesome.com/icons/face-sunglasses?style=thin /// bright, cool, face, friend, shades, smiling face with sunglasses, sun, sunglasses - static const IconData thinFaceSunglasses = IconDataThin(0xe398); + static const IconData thinFaceSunglasses = IconData(0xe398, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Surprise icon /// /// https://fontawesome.com/icons/face-surprise?style=solid /// emoticon, face, face with open mouth, mouth, open, shocked, sympathy - static const IconData solidFaceSurprise = IconDataSolid(0xf5c2); + static const IconData solidFaceSurprise = IconData(0xf5c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias surprise for icon [solidFaceSurprise] @Deprecated('Use "solidFaceSurprise" instead.') @@ -36164,7 +36164,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-surprise?style=regular /// emoticon, face, face with open mouth, mouth, open, shocked, sympathy - static const IconData faceSurprise = IconDataRegular(0xf5c2); + static const IconData faceSurprise = IconData(0xf5c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias surprise for icon [faceSurprise] @Deprecated('Use "faceSurprise" instead.') @@ -36174,7 +36174,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-surprise?style=light /// emoticon, face, face with open mouth, mouth, open, shocked, sympathy - static const IconData lightFaceSurprise = IconDataLight(0xf5c2); + static const IconData lightFaceSurprise = IconData(0xf5c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias surprise for icon [lightFaceSurprise] @Deprecated('Use "lightFaceSurprise" instead.') @@ -36184,7 +36184,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-surprise?style=thin /// emoticon, face, face with open mouth, mouth, open, shocked, sympathy - static const IconData thinFaceSurprise = IconDataThin(0xf5c2); + static const IconData thinFaceSurprise = IconData(0xf5c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias surprise for icon [thinFaceSurprise] @Deprecated('Use "thinFaceSurprise" instead.') @@ -36194,79 +36194,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-swear?style=solid /// anger, curse, cursing, cussing, face with symbols on mouth, grawlix, swearing, symbols - static const IconData solidFaceSwear = IconDataSolid(0xe399); + static const IconData solidFaceSwear = IconData(0xe399, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Swear icon /// /// https://fontawesome.com/icons/face-swear?style=regular /// anger, curse, cursing, cussing, face with symbols on mouth, grawlix, swearing, symbols - static const IconData faceSwear = IconDataRegular(0xe399); + static const IconData faceSwear = IconData(0xe399, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Swear icon /// /// https://fontawesome.com/icons/face-swear?style=light /// anger, curse, cursing, cussing, face with symbols on mouth, grawlix, swearing, symbols - static const IconData lightFaceSwear = IconDataLight(0xe399); + static const IconData lightFaceSwear = IconData(0xe399, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Swear icon /// /// https://fontawesome.com/icons/face-swear?style=thin /// anger, curse, cursing, cussing, face with symbols on mouth, grawlix, swearing, symbols - static const IconData thinFaceSwear = IconDataThin(0xe399); + static const IconData thinFaceSwear = IconData(0xe399, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Thermometer icon /// /// https://fontawesome.com/icons/face-thermometer?style=solid /// cold, coronavirus, covid, covid-19, face, face with thermometer, fever, flu, ill, sick, thermometer - static const IconData solidFaceThermometer = IconDataSolid(0xe39a); + static const IconData solidFaceThermometer = IconData(0xe39a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Thermometer icon /// /// https://fontawesome.com/icons/face-thermometer?style=regular /// cold, coronavirus, covid, covid-19, face, face with thermometer, fever, flu, ill, sick, thermometer - static const IconData faceThermometer = IconDataRegular(0xe39a); + static const IconData faceThermometer = IconData(0xe39a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Thermometer icon /// /// https://fontawesome.com/icons/face-thermometer?style=light /// cold, coronavirus, covid, covid-19, face, face with thermometer, fever, flu, ill, sick, thermometer - static const IconData lightFaceThermometer = IconDataLight(0xe39a); + static const IconData lightFaceThermometer = IconData(0xe39a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Thermometer icon /// /// https://fontawesome.com/icons/face-thermometer?style=thin /// cold, coronavirus, covid, covid-19, face, face with thermometer, fever, flu, ill, sick, thermometer - static const IconData thinFaceThermometer = IconDataThin(0xe39a); + static const IconData thinFaceThermometer = IconData(0xe39a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Thinking icon /// /// https://fontawesome.com/icons/face-thinking?style=solid /// chin, face, idea, shade, thinking, thinking face, thumb - static const IconData solidFaceThinking = IconDataSolid(0xe39b); + static const IconData solidFaceThinking = IconData(0xe39b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Thinking icon /// /// https://fontawesome.com/icons/face-thinking?style=regular /// chin, face, idea, shade, thinking, thinking face, thumb - static const IconData faceThinking = IconDataRegular(0xe39b); + static const IconData faceThinking = IconData(0xe39b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Thinking icon /// /// https://fontawesome.com/icons/face-thinking?style=light /// chin, face, idea, shade, thinking, thinking face, thumb - static const IconData lightFaceThinking = IconDataLight(0xe39b); + static const IconData lightFaceThinking = IconData(0xe39b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Thinking icon /// /// https://fontawesome.com/icons/face-thinking?style=thin /// chin, face, idea, shade, thinking, thinking face, thumb - static const IconData thinFaceThinking = IconDataThin(0xe39b); + static const IconData thinFaceThinking = IconData(0xe39b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Tired icon /// /// https://fontawesome.com/icons/face-tired?style=solid /// angry, emoticon, face, grumpy, tired, tired face, upset - static const IconData solidFaceTired = IconDataSolid(0xf5c8); + static const IconData solidFaceTired = IconData(0xf5c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tired for icon [solidFaceTired] @Deprecated('Use "solidFaceTired" instead.') @@ -36276,7 +36276,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-tired?style=regular /// angry, emoticon, face, grumpy, tired, tired face, upset - static const IconData faceTired = IconDataRegular(0xf5c8); + static const IconData faceTired = IconData(0xf5c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tired for icon [faceTired] @Deprecated('Use "faceTired" instead.') @@ -36286,7 +36286,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-tired?style=light /// angry, emoticon, face, grumpy, tired, tired face, upset - static const IconData lightFaceTired = IconDataLight(0xf5c8); + static const IconData lightFaceTired = IconData(0xf5c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tired for icon [lightFaceTired] @Deprecated('Use "lightFaceTired" instead.') @@ -36296,7 +36296,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-tired?style=thin /// angry, emoticon, face, grumpy, tired, tired face, upset - static const IconData thinFaceTired = IconDataThin(0xf5c8); + static const IconData thinFaceTired = IconData(0xf5c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tired for icon [thinFaceTired] @Deprecated('Use "thinFaceTired" instead.') @@ -36306,439 +36306,439 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/face-tissue?style=solid /// face, gesundheit, sneeze, sneezing face, tears - static const IconData solidFaceTissue = IconDataSolid(0xe39c); + static const IconData solidFaceTissue = IconData(0xe39c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Tissue icon /// /// https://fontawesome.com/icons/face-tissue?style=regular /// face, gesundheit, sneeze, sneezing face, tears - static const IconData faceTissue = IconDataRegular(0xe39c); + static const IconData faceTissue = IconData(0xe39c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Tissue icon /// /// https://fontawesome.com/icons/face-tissue?style=light /// face, gesundheit, sneeze, sneezing face, tears - static const IconData lightFaceTissue = IconDataLight(0xe39c); + static const IconData lightFaceTissue = IconData(0xe39c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Tissue icon /// /// https://fontawesome.com/icons/face-tissue?style=thin /// face, gesundheit, sneeze, sneezing face, tears - static const IconData thinFaceTissue = IconDataThin(0xe39c); + static const IconData thinFaceTissue = IconData(0xe39c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Tongue Money icon /// /// https://fontawesome.com/icons/face-tongue-money?style=solid /// coupon, dollar, face, greed, money, money-mouth face, mouth, premium, rich, vip - static const IconData solidFaceTongueMoney = IconDataSolid(0xe39d); + static const IconData solidFaceTongueMoney = IconData(0xe39d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Tongue Money icon /// /// https://fontawesome.com/icons/face-tongue-money?style=regular /// coupon, dollar, face, greed, money, money-mouth face, mouth, premium, rich, vip - static const IconData faceTongueMoney = IconDataRegular(0xe39d); + static const IconData faceTongueMoney = IconData(0xe39d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Tongue Money icon /// /// https://fontawesome.com/icons/face-tongue-money?style=light /// coupon, dollar, face, greed, money, money-mouth face, mouth, premium, rich, vip - static const IconData lightFaceTongueMoney = IconDataLight(0xe39d); + static const IconData lightFaceTongueMoney = IconData(0xe39d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Tongue Money icon /// /// https://fontawesome.com/icons/face-tongue-money?style=thin /// coupon, dollar, face, greed, money, money-mouth face, mouth, premium, rich, vip - static const IconData thinFaceTongueMoney = IconDataThin(0xe39d); + static const IconData thinFaceTongueMoney = IconData(0xe39d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Tongue Sweat icon /// /// https://fontawesome.com/icons/face-tongue-sweat?style=solid /// fever, feverish, heat stroke, hot, hot face, overheat, red-faced, stroke, sweating - static const IconData solidFaceTongueSweat = IconDataSolid(0xe39e); + static const IconData solidFaceTongueSweat = IconData(0xe39e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Tongue Sweat icon /// /// https://fontawesome.com/icons/face-tongue-sweat?style=regular /// fever, feverish, heat stroke, hot, hot face, overheat, red-faced, stroke, sweating - static const IconData faceTongueSweat = IconDataRegular(0xe39e); + static const IconData faceTongueSweat = IconData(0xe39e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Tongue Sweat icon /// /// https://fontawesome.com/icons/face-tongue-sweat?style=light /// fever, feverish, heat stroke, hot, hot face, overheat, red-faced, stroke, sweating - static const IconData lightFaceTongueSweat = IconDataLight(0xe39e); + static const IconData lightFaceTongueSweat = IconData(0xe39e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Tongue Sweat icon /// /// https://fontawesome.com/icons/face-tongue-sweat?style=thin /// fever, feverish, heat stroke, hot, hot face, overheat, red-faced, stroke, sweating - static const IconData thinFaceTongueSweat = IconDataThin(0xe39e); + static const IconData thinFaceTongueSweat = IconData(0xe39e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Unamused icon /// /// https://fontawesome.com/icons/face-unamused?style=solid /// dissatisfied, face, frown, grumpy, irritated, meh, skeptical, unamused, unamused face, unhappy, unimpressed - static const IconData solidFaceUnamused = IconDataSolid(0xe39f); + static const IconData solidFaceUnamused = IconData(0xe39f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Unamused icon /// /// https://fontawesome.com/icons/face-unamused?style=regular /// dissatisfied, face, frown, grumpy, irritated, meh, skeptical, unamused, unamused face, unhappy, unimpressed - static const IconData faceUnamused = IconDataRegular(0xe39f); + static const IconData faceUnamused = IconData(0xe39f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Unamused icon /// /// https://fontawesome.com/icons/face-unamused?style=light /// dissatisfied, face, frown, grumpy, irritated, meh, skeptical, unamused, unamused face, unhappy, unimpressed - static const IconData lightFaceUnamused = IconDataLight(0xe39f); + static const IconData lightFaceUnamused = IconData(0xe39f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Unamused icon /// /// https://fontawesome.com/icons/face-unamused?style=thin /// dissatisfied, face, frown, grumpy, irritated, meh, skeptical, unamused, unamused face, unhappy, unimpressed - static const IconData thinFaceUnamused = IconDataThin(0xe39f); + static const IconData thinFaceUnamused = IconData(0xe39f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Viewfinder icon /// /// https://fontawesome.com/icons/face-viewfinder?style=solid /// face id, facial, identity, recognition, scan, smile - static const IconData solidFaceViewfinder = IconDataSolid(0xe2ff); + static const IconData solidFaceViewfinder = IconData(0xe2ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Viewfinder icon /// /// https://fontawesome.com/icons/face-viewfinder?style=regular /// face id, facial, identity, recognition, scan, smile - static const IconData faceViewfinder = IconDataRegular(0xe2ff); + static const IconData faceViewfinder = IconData(0xe2ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Viewfinder icon /// /// https://fontawesome.com/icons/face-viewfinder?style=light /// face id, facial, identity, recognition, scan, smile - static const IconData lightFaceViewfinder = IconDataLight(0xe2ff); + static const IconData lightFaceViewfinder = IconData(0xe2ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Viewfinder icon /// /// https://fontawesome.com/icons/face-viewfinder?style=thin /// face id, facial, identity, recognition, scan, smile - static const IconData thinFaceViewfinder = IconDataThin(0xe2ff); + static const IconData thinFaceViewfinder = IconData(0xe2ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Vomit icon /// /// https://fontawesome.com/icons/face-vomit?style=solid /// face vomiting, flu, poison, sick, spew, throw up, vomit - static const IconData solidFaceVomit = IconDataSolid(0xe3a0); + static const IconData solidFaceVomit = IconData(0xe3a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Vomit icon /// /// https://fontawesome.com/icons/face-vomit?style=regular /// face vomiting, flu, poison, sick, spew, throw up, vomit - static const IconData faceVomit = IconDataRegular(0xe3a0); + static const IconData faceVomit = IconData(0xe3a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Vomit icon /// /// https://fontawesome.com/icons/face-vomit?style=light /// face vomiting, flu, poison, sick, spew, throw up, vomit - static const IconData lightFaceVomit = IconDataLight(0xe3a0); + static const IconData lightFaceVomit = IconData(0xe3a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Vomit icon /// /// https://fontawesome.com/icons/face-vomit?style=thin /// face vomiting, flu, poison, sick, spew, throw up, vomit - static const IconData thinFaceVomit = IconDataThin(0xe3a0); + static const IconData thinFaceVomit = IconData(0xe3a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Weary icon /// /// https://fontawesome.com/icons/face-weary?style=solid /// distraught, face, tired, wailing, weary, weary face - static const IconData solidFaceWeary = IconDataSolid(0xe3a1); + static const IconData solidFaceWeary = IconData(0xe3a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Weary icon /// /// https://fontawesome.com/icons/face-weary?style=regular /// distraught, face, tired, wailing, weary, weary face - static const IconData faceWeary = IconDataRegular(0xe3a1); + static const IconData faceWeary = IconData(0xe3a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Weary icon /// /// https://fontawesome.com/icons/face-weary?style=light /// distraught, face, tired, wailing, weary, weary face - static const IconData lightFaceWeary = IconDataLight(0xe3a1); + static const IconData lightFaceWeary = IconData(0xe3a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Weary icon /// /// https://fontawesome.com/icons/face-weary?style=thin /// distraught, face, tired, wailing, weary, weary face - static const IconData thinFaceWeary = IconDataThin(0xe3a1); + static const IconData thinFaceWeary = IconData(0xe3a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Woozy icon /// /// https://fontawesome.com/icons/face-woozy?style=solid /// disgust, dizzy, drunk, exhaustion, intoxicated, tipsy, uneven eyes, wasckiness, wavy mouth, woozy face - static const IconData solidFaceWoozy = IconDataSolid(0xe3a2); + static const IconData solidFaceWoozy = IconData(0xe3a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Woozy icon /// /// https://fontawesome.com/icons/face-woozy?style=regular /// disgust, dizzy, drunk, exhaustion, intoxicated, tipsy, uneven eyes, wasckiness, wavy mouth, woozy face - static const IconData faceWoozy = IconDataRegular(0xe3a2); + static const IconData faceWoozy = IconData(0xe3a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Woozy icon /// /// https://fontawesome.com/icons/face-woozy?style=light /// disgust, dizzy, drunk, exhaustion, intoxicated, tipsy, uneven eyes, wasckiness, wavy mouth, woozy face - static const IconData lightFaceWoozy = IconDataLight(0xe3a2); + static const IconData lightFaceWoozy = IconData(0xe3a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Woozy icon /// /// https://fontawesome.com/icons/face-woozy?style=thin /// disgust, dizzy, drunk, exhaustion, intoxicated, tipsy, uneven eyes, wasckiness, wavy mouth, woozy face - static const IconData thinFaceWoozy = IconDataThin(0xe3a2); + static const IconData thinFaceWoozy = IconData(0xe3a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Worried icon /// /// https://fontawesome.com/icons/face-worried?style=solid /// face, sad, sadface, worried, worried face - static const IconData solidFaceWorried = IconDataSolid(0xe3a3); + static const IconData solidFaceWorried = IconData(0xe3a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Worried icon /// /// https://fontawesome.com/icons/face-worried?style=regular /// face, sad, sadface, worried, worried face - static const IconData faceWorried = IconDataRegular(0xe3a3); + static const IconData faceWorried = IconData(0xe3a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Worried icon /// /// https://fontawesome.com/icons/face-worried?style=light /// face, sad, sadface, worried, worried face - static const IconData lightFaceWorried = IconDataLight(0xe3a3); + static const IconData lightFaceWorried = IconData(0xe3a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Worried icon /// /// https://fontawesome.com/icons/face-worried?style=thin /// face, sad, sadface, worried, worried face - static const IconData thinFaceWorried = IconDataThin(0xe3a3); + static const IconData thinFaceWorried = IconData(0xe3a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Zany icon /// /// https://fontawesome.com/icons/face-zany?style=solid /// crazy, excited, eye, goofy, large, small, tongue, wild, zany face - static const IconData solidFaceZany = IconDataSolid(0xe3a4); + static const IconData solidFaceZany = IconData(0xe3a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Zany icon /// /// https://fontawesome.com/icons/face-zany?style=regular /// crazy, excited, eye, goofy, large, small, tongue, wild, zany face - static const IconData faceZany = IconDataRegular(0xe3a4); + static const IconData faceZany = IconData(0xe3a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Zany icon /// /// https://fontawesome.com/icons/face-zany?style=light /// crazy, excited, eye, goofy, large, small, tongue, wild, zany face - static const IconData lightFaceZany = IconDataLight(0xe3a4); + static const IconData lightFaceZany = IconData(0xe3a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Zany icon /// /// https://fontawesome.com/icons/face-zany?style=thin /// crazy, excited, eye, goofy, large, small, tongue, wild, zany face - static const IconData thinFaceZany = IconDataThin(0xe3a4); + static const IconData thinFaceZany = IconData(0xe3a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Face Zipper icon /// /// https://fontawesome.com/icons/face-zipper?style=solid /// face, lips, mouth, quiet, sealed, secret, zipper, zipper-mouth face - static const IconData solidFaceZipper = IconDataSolid(0xe3a5); + static const IconData solidFaceZipper = IconData(0xe3a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Face Zipper icon /// /// https://fontawesome.com/icons/face-zipper?style=regular /// face, lips, mouth, quiet, sealed, secret, zipper, zipper-mouth face - static const IconData faceZipper = IconDataRegular(0xe3a5); + static const IconData faceZipper = IconData(0xe3a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Face Zipper icon /// /// https://fontawesome.com/icons/face-zipper?style=light /// face, lips, mouth, quiet, sealed, secret, zipper, zipper-mouth face - static const IconData lightFaceZipper = IconDataLight(0xe3a5); + static const IconData lightFaceZipper = IconData(0xe3a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Face Zipper icon /// /// https://fontawesome.com/icons/face-zipper?style=thin /// face, lips, mouth, quiet, sealed, secret, zipper, zipper-mouth face - static const IconData thinFaceZipper = IconDataThin(0xe3a5); + static const IconData thinFaceZipper = IconData(0xe3a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Facebook icon /// /// https://fontawesome.com/icons/facebook?style=brands /// fabook, facebook-official, fb, social network - static const IconData facebook = IconDataBrands(0xf09a); + static const IconData facebook = IconData(0xf09a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Facebook F icon /// /// https://fontawesome.com/icons/facebook-f?style=brands /// fabook, facebook, fb - static const IconData facebookF = IconDataBrands(0xf39e); + static const IconData facebookF = IconData(0xf39e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Facebook Messenger icon /// /// https://fontawesome.com/icons/facebook-messenger?style=brands /// fabook, fb - static const IconData facebookMessenger = IconDataBrands(0xf39f); + static const IconData facebookMessenger = IconData(0xf39f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Falafel icon /// /// https://fontawesome.com/icons/falafel?style=solid /// chickpea, falafel, garbanzo, meatball - static const IconData solidFalafel = IconDataSolid(0xe40a); + static const IconData solidFalafel = IconData(0xe40a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Falafel icon /// /// https://fontawesome.com/icons/falafel?style=regular /// chickpea, falafel, garbanzo, meatball - static const IconData falafel = IconDataRegular(0xe40a); + static const IconData falafel = IconData(0xe40a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Falafel icon /// /// https://fontawesome.com/icons/falafel?style=light /// chickpea, falafel, garbanzo, meatball - static const IconData lightFalafel = IconDataLight(0xe40a); + static const IconData lightFalafel = IconData(0xe40a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Falafel icon /// /// https://fontawesome.com/icons/falafel?style=thin /// chickpea, falafel, garbanzo, meatball - static const IconData thinFalafel = IconDataThin(0xe40a); + static const IconData thinFalafel = IconData(0xe40a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Family icon /// /// https://fontawesome.com/icons/family?style=solid /// adults, child, famil, family, folk, kid, parent, together, uer - static const IconData solidFamily = IconDataSolid(0xe300); + static const IconData solidFamily = IconData(0xe300, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Family icon /// /// https://fontawesome.com/icons/family?style=regular /// adults, child, famil, family, folk, kid, parent, together, uer - static const IconData family = IconDataRegular(0xe300); + static const IconData family = IconData(0xe300, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Family icon /// /// https://fontawesome.com/icons/family?style=light /// adults, child, famil, family, folk, kid, parent, together, uer - static const IconData lightFamily = IconDataLight(0xe300); + static const IconData lightFamily = IconData(0xe300, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Family icon /// /// https://fontawesome.com/icons/family?style=thin /// adults, child, famil, family, folk, kid, parent, together, uer - static const IconData thinFamily = IconDataThin(0xe300); + static const IconData thinFamily = IconData(0xe300, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Family Dress icon /// /// https://fontawesome.com/icons/family-dress?style=solid /// adults, child, family, folk, kid, parent, together, uer - static const IconData solidFamilyDress = IconDataSolid(0xe301); + static const IconData solidFamilyDress = IconData(0xe301, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Family Dress icon /// /// https://fontawesome.com/icons/family-dress?style=regular /// adults, child, family, folk, kid, parent, together, uer - static const IconData familyDress = IconDataRegular(0xe301); + static const IconData familyDress = IconData(0xe301, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Family Dress icon /// /// https://fontawesome.com/icons/family-dress?style=light /// adults, child, family, folk, kid, parent, together, uer - static const IconData lightFamilyDress = IconDataLight(0xe301); + static const IconData lightFamilyDress = IconData(0xe301, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Family Dress icon /// /// https://fontawesome.com/icons/family-dress?style=thin /// adults, child, family, folk, kid, parent, together, uer - static const IconData thinFamilyDress = IconDataThin(0xe301); + static const IconData thinFamilyDress = IconData(0xe301, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Family Pants icon /// /// https://fontawesome.com/icons/family-pants?style=solid /// adults, child, family, folk, kid, parent, together, uer - static const IconData solidFamilyPants = IconDataSolid(0xe302); + static const IconData solidFamilyPants = IconData(0xe302, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Family Pants icon /// /// https://fontawesome.com/icons/family-pants?style=regular /// adults, child, family, folk, kid, parent, together, uer - static const IconData familyPants = IconDataRegular(0xe302); + static const IconData familyPants = IconData(0xe302, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Family Pants icon /// /// https://fontawesome.com/icons/family-pants?style=light /// adults, child, family, folk, kid, parent, together, uer - static const IconData lightFamilyPants = IconDataLight(0xe302); + static const IconData lightFamilyPants = IconData(0xe302, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Family Pants icon /// /// https://fontawesome.com/icons/family-pants?style=thin /// adults, child, family, folk, kid, parent, together, uer - static const IconData thinFamilyPants = IconDataThin(0xe302); + static const IconData thinFamilyPants = IconData(0xe302, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fan icon /// /// https://fontawesome.com/icons/fan?style=solid /// ac, air conditioning, blade, blower, cool, hot - static const IconData solidFan = IconDataSolid(0xf863); + static const IconData solidFan = IconData(0xf863, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fan icon /// /// https://fontawesome.com/icons/fan?style=regular /// ac, air conditioning, blade, blower, cool, hot - static const IconData fan = IconDataRegular(0xf863); + static const IconData fan = IconData(0xf863, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fan icon /// /// https://fontawesome.com/icons/fan?style=light /// ac, air conditioning, blade, blower, cool, hot - static const IconData lightFan = IconDataLight(0xf863); + static const IconData lightFan = IconData(0xf863, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fan icon /// /// https://fontawesome.com/icons/fan?style=thin /// ac, air conditioning, blade, blower, cool, hot - static const IconData thinFan = IconDataThin(0xf863); + static const IconData thinFan = IconData(0xf863, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fan Table icon /// /// https://fontawesome.com/icons/fan-table?style=solid /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData solidFanTable = IconDataSolid(0xe004); + static const IconData solidFanTable = IconData(0xe004, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fan Table icon /// /// https://fontawesome.com/icons/fan-table?style=regular /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData fanTable = IconDataRegular(0xe004); + static const IconData fanTable = IconData(0xe004, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fan Table icon /// /// https://fontawesome.com/icons/fan-table?style=light /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData lightFanTable = IconDataLight(0xe004); + static const IconData lightFanTable = IconData(0xe004, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fan Table icon /// /// https://fontawesome.com/icons/fan-table?style=thin /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData thinFanTable = IconDataThin(0xe004); + static const IconData thinFanTable = IconData(0xe004, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Fantasy Flight-games icon /// /// https://fontawesome.com/icons/fantasy-flight-games?style=brands /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, tabletop - static const IconData fantasyFlightGames = IconDataBrands(0xf6dc); + static const IconData fantasyFlightGames = IconData(0xf6dc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Farm icon /// /// https://fontawesome.com/icons/farm?style=solid /// agriculture, barn, dairy, farming, ranch, silo - static const IconData solidFarm = IconDataSolid(0xf864); + static const IconData solidFarm = IconData(0xf864, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias barn-silo for icon [solidFarm] @Deprecated('Use "solidFarm" instead.') @@ -36748,7 +36748,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/farm?style=regular /// agriculture, barn, dairy, farming, ranch, silo - static const IconData farm = IconDataRegular(0xf864); + static const IconData farm = IconData(0xf864, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias barn-silo for icon [farm] @Deprecated('Use "farm" instead.') @@ -36758,7 +36758,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/farm?style=light /// agriculture, barn, dairy, farming, ranch, silo - static const IconData lightFarm = IconDataLight(0xf864); + static const IconData lightFarm = IconData(0xf864, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias barn-silo for icon [lightFarm] @Deprecated('Use "lightFarm" instead.') @@ -36768,7 +36768,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/farm?style=thin /// agriculture, barn, dairy, farming, ranch, silo - static const IconData thinFarm = IconDataThin(0xf864); + static const IconData thinFarm = IconData(0xf864, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias barn-silo for icon [thinFarm] @Deprecated('Use "thinFarm" instead.') @@ -36778,103 +36778,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/faucet?style=solid /// covid-19, drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData solidFaucet = IconDataSolid(0xe005); + static const IconData solidFaucet = IconData(0xe005, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Faucet icon /// /// https://fontawesome.com/icons/faucet?style=regular /// covid-19, drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData faucet = IconDataRegular(0xe005); + static const IconData faucet = IconData(0xe005, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Faucet icon /// /// https://fontawesome.com/icons/faucet?style=light /// covid-19, drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData lightFaucet = IconDataLight(0xe005); + static const IconData lightFaucet = IconData(0xe005, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Faucet icon /// /// https://fontawesome.com/icons/faucet?style=thin /// covid-19, drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData thinFaucet = IconDataThin(0xe005); + static const IconData thinFaucet = IconData(0xe005, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Faucet Drip icon /// /// https://fontawesome.com/icons/faucet-drip?style=solid /// drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData solidFaucetDrip = IconDataSolid(0xe006); + static const IconData solidFaucetDrip = IconData(0xe006, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Faucet Drip icon /// /// https://fontawesome.com/icons/faucet-drip?style=regular /// drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData faucetDrip = IconDataRegular(0xe006); + static const IconData faucetDrip = IconData(0xe006, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Faucet Drip icon /// /// https://fontawesome.com/icons/faucet-drip?style=light /// drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData lightFaucetDrip = IconDataLight(0xe006); + static const IconData lightFaucetDrip = IconData(0xe006, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Faucet Drip icon /// /// https://fontawesome.com/icons/faucet-drip?style=thin /// drinking, drip, house, hygiene, kitchen, potable, potable water, sanitation, sink, water - static const IconData thinFaucetDrip = IconDataThin(0xe006); + static const IconData thinFaucetDrip = IconData(0xe006, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fax icon /// /// https://fontawesome.com/icons/fax?style=solid /// Fax Icon, business, communicate, copy, facsimile, fax, fax machine, send - static const IconData solidFax = IconDataSolid(0xf1ac); + static const IconData solidFax = IconData(0xf1ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fax icon /// /// https://fontawesome.com/icons/fax?style=regular /// Fax Icon, business, communicate, copy, facsimile, fax, fax machine, send - static const IconData fax = IconDataRegular(0xf1ac); + static const IconData fax = IconData(0xf1ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fax icon /// /// https://fontawesome.com/icons/fax?style=light /// Fax Icon, business, communicate, copy, facsimile, fax, fax machine, send - static const IconData lightFax = IconDataLight(0xf1ac); + static const IconData lightFax = IconData(0xf1ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fax icon /// /// https://fontawesome.com/icons/fax?style=thin /// Fax Icon, business, communicate, copy, facsimile, fax, fax machine, send - static const IconData thinFax = IconDataThin(0xf1ac); + static const IconData thinFax = IconData(0xf1ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Feather icon /// /// https://fontawesome.com/icons/feather?style=solid /// bird, feather, flight, light, plucked, plumage, quill, write - static const IconData solidFeather = IconDataSolid(0xf52d); + static const IconData solidFeather = IconData(0xf52d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Feather icon /// /// https://fontawesome.com/icons/feather?style=regular /// bird, feather, flight, light, plucked, plumage, quill, write - static const IconData feather = IconDataRegular(0xf52d); + static const IconData feather = IconData(0xf52d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Feather icon /// /// https://fontawesome.com/icons/feather?style=light /// bird, feather, flight, light, plucked, plumage, quill, write - static const IconData lightFeather = IconDataLight(0xf52d); + static const IconData lightFeather = IconData(0xf52d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Feather icon /// /// https://fontawesome.com/icons/feather?style=thin /// bird, feather, flight, light, plucked, plumage, quill, write - static const IconData thinFeather = IconDataThin(0xf52d); + static const IconData thinFeather = IconData(0xf52d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Feather Pointed icon /// /// https://fontawesome.com/icons/feather-pointed?style=solid /// bird, light, plucked, quill, write - static const IconData solidFeatherPointed = IconDataSolid(0xf56b); + static const IconData solidFeatherPointed = IconData(0xf56b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias feather-alt for icon [solidFeatherPointed] @Deprecated('Use "solidFeatherPointed" instead.') @@ -36884,7 +36884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/feather-pointed?style=regular /// bird, light, plucked, quill, write - static const IconData featherPointed = IconDataRegular(0xf56b); + static const IconData featherPointed = IconData(0xf56b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias feather-alt for icon [featherPointed] @Deprecated('Use "featherPointed" instead.') @@ -36894,7 +36894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/feather-pointed?style=light /// bird, light, plucked, quill, write - static const IconData lightFeatherPointed = IconDataLight(0xf56b); + static const IconData lightFeatherPointed = IconData(0xf56b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias feather-alt for icon [lightFeatherPointed] @Deprecated('Use "lightFeatherPointed" instead.') @@ -36904,7 +36904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/feather-pointed?style=thin /// bird, light, plucked, quill, write - static const IconData thinFeatherPointed = IconDataThin(0xf56b); + static const IconData thinFeatherPointed = IconData(0xf56b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias feather-alt for icon [thinFeatherPointed] @Deprecated('Use "thinFeatherPointed" instead.') @@ -36914,91 +36914,91 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fedex?style=brands /// Federal Express, package, shipping - static const IconData fedex = IconDataBrands(0xf797); + static const IconData fedex = IconData(0xf797, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Fedora icon /// /// https://fontawesome.com/icons/fedora?style=brands /// linux, operating system, os - static const IconData fedora = IconDataBrands(0xf798); + static const IconData fedora = IconData(0xf798, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Fence icon /// /// https://fontawesome.com/icons/fence?style=solid /// fencing, picket, planks, wall, wood - static const IconData solidFence = IconDataSolid(0xe303); + static const IconData solidFence = IconData(0xe303, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fence icon /// /// https://fontawesome.com/icons/fence?style=regular /// fencing, picket, planks, wall, wood - static const IconData fence = IconDataRegular(0xe303); + static const IconData fence = IconData(0xe303, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fence icon /// /// https://fontawesome.com/icons/fence?style=light /// fencing, picket, planks, wall, wood - static const IconData lightFence = IconDataLight(0xe303); + static const IconData lightFence = IconData(0xe303, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fence icon /// /// https://fontawesome.com/icons/fence?style=thin /// fencing, picket, planks, wall, wood - static const IconData thinFence = IconDataThin(0xe303); + static const IconData thinFence = IconData(0xe303, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ferris Wheel icon /// /// https://fontawesome.com/icons/ferris-wheel?style=solid /// amusement park, fair, ferris, ferris wheel, ride, theme park, wheel - static const IconData solidFerrisWheel = IconDataSolid(0xe174); + static const IconData solidFerrisWheel = IconData(0xe174, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ferris Wheel icon /// /// https://fontawesome.com/icons/ferris-wheel?style=regular /// amusement park, fair, ferris, ferris wheel, ride, theme park, wheel - static const IconData ferrisWheel = IconDataRegular(0xe174); + static const IconData ferrisWheel = IconData(0xe174, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ferris Wheel icon /// /// https://fontawesome.com/icons/ferris-wheel?style=light /// amusement park, fair, ferris, ferris wheel, ride, theme park, wheel - static const IconData lightFerrisWheel = IconDataLight(0xe174); + static const IconData lightFerrisWheel = IconData(0xe174, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ferris Wheel icon /// /// https://fontawesome.com/icons/ferris-wheel?style=thin /// amusement park, fair, ferris, ferris wheel, ride, theme park, wheel - static const IconData thinFerrisWheel = IconDataThin(0xe174); + static const IconData thinFerrisWheel = IconData(0xe174, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ferry icon /// /// https://fontawesome.com/icons/ferry?style=solid /// barge, boat, carry, ferryboat, ship - static const IconData solidFerry = IconDataSolid(0xe4ea); + static const IconData solidFerry = IconData(0xe4ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ferry icon /// /// https://fontawesome.com/icons/ferry?style=regular /// barge, boat, carry, ferryboat, ship - static const IconData ferry = IconDataRegular(0xe4ea); + static const IconData ferry = IconData(0xe4ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ferry icon /// /// https://fontawesome.com/icons/ferry?style=light /// barge, boat, carry, ferryboat, ship - static const IconData lightFerry = IconDataLight(0xe4ea); + static const IconData lightFerry = IconData(0xe4ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ferry icon /// /// https://fontawesome.com/icons/ferry?style=thin /// barge, boat, carry, ferryboat, ship - static const IconData thinFerry = IconDataThin(0xe4ea); + static const IconData thinFerry = IconData(0xe4ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Field Hockey Stick Ball icon /// /// https://fontawesome.com/icons/field-hockey-stick-ball?style=solid /// ball, field, field hockey, game, hockey, sport, stick - static const IconData solidFieldHockeyStickBall = IconDataSolid(0xf44c); + static const IconData solidFieldHockeyStickBall = IconData(0xf44c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias field-hockey for icon [solidFieldHockeyStickBall] @Deprecated('Use "solidFieldHockeyStickBall" instead.') @@ -37008,7 +37008,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/field-hockey-stick-ball?style=regular /// ball, field, field hockey, game, hockey, sport, stick - static const IconData fieldHockeyStickBall = IconDataRegular(0xf44c); + static const IconData fieldHockeyStickBall = IconData(0xf44c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias field-hockey for icon [fieldHockeyStickBall] @Deprecated('Use "fieldHockeyStickBall" instead.') @@ -37018,7 +37018,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/field-hockey-stick-ball?style=light /// ball, field, field hockey, game, hockey, sport, stick - static const IconData lightFieldHockeyStickBall = IconDataLight(0xf44c); + static const IconData lightFieldHockeyStickBall = IconData(0xf44c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias field-hockey for icon [lightFieldHockeyStickBall] @Deprecated('Use "lightFieldHockeyStickBall" instead.') @@ -37028,7 +37028,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/field-hockey-stick-ball?style=thin /// ball, field, field hockey, game, hockey, sport, stick - static const IconData thinFieldHockeyStickBall = IconDataThin(0xf44c); + static const IconData thinFieldHockeyStickBall = IconData(0xf44c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias field-hockey for icon [thinFieldHockeyStickBall] @Deprecated('Use "thinFieldHockeyStickBall" instead.') @@ -37038,37 +37038,37 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/figma?style=brands /// app, design, interface - static const IconData figma = IconDataBrands(0xf799); + static const IconData figma = IconData(0xf799, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid File icon /// /// https://fontawesome.com/icons/file?style=solid /// Empty Document, cv, document, new, page, page facing up, pdf, resume - static const IconData solidFile = IconDataSolid(0xf15b); + static const IconData solidFile = IconData(0xf15b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File icon /// /// https://fontawesome.com/icons/file?style=regular /// Empty Document, cv, document, new, page, page facing up, pdf, resume - static const IconData file = IconDataRegular(0xf15b); + static const IconData file = IconData(0xf15b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File icon /// /// https://fontawesome.com/icons/file?style=light /// Empty Document, cv, document, new, page, page facing up, pdf, resume - static const IconData lightFile = IconDataLight(0xf15b); + static const IconData lightFile = IconData(0xf15b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File icon /// /// https://fontawesome.com/icons/file?style=thin /// Empty Document, cv, document, new, page, page facing up, pdf, resume - static const IconData thinFile = IconDataThin(0xf15b); + static const IconData thinFile = IconData(0xf15b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Arrow Down icon /// /// https://fontawesome.com/icons/file-arrow-down?style=solid /// document, export, insert, save - static const IconData solidFileArrowDown = IconDataSolid(0xf56d); + static const IconData solidFileArrowDown = IconData(0xf56d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-download for icon [solidFileArrowDown] @Deprecated('Use "solidFileArrowDown" instead.') @@ -37078,7 +37078,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-down?style=regular /// document, export, insert, save - static const IconData fileArrowDown = IconDataRegular(0xf56d); + static const IconData fileArrowDown = IconData(0xf56d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-download for icon [fileArrowDown] @Deprecated('Use "fileArrowDown" instead.') @@ -37088,7 +37088,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-down?style=light /// document, export, insert, save - static const IconData lightFileArrowDown = IconDataLight(0xf56d); + static const IconData lightFileArrowDown = IconData(0xf56d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-download for icon [lightFileArrowDown] @Deprecated('Use "lightFileArrowDown" instead.') @@ -37098,7 +37098,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-down?style=thin /// document, export, insert, save - static const IconData thinFileArrowDown = IconDataThin(0xf56d); + static const IconData thinFileArrowDown = IconData(0xf56d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-download for icon [thinFileArrowDown] @Deprecated('Use "thinFileArrowDown" instead.') @@ -37108,7 +37108,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-up?style=solid /// document, import, page, save, upgrade - static const IconData solidFileArrowUp = IconDataSolid(0xf574); + static const IconData solidFileArrowUp = IconData(0xf574, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-upload for icon [solidFileArrowUp] @Deprecated('Use "solidFileArrowUp" instead.') @@ -37118,7 +37118,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-up?style=regular /// document, import, page, save, upgrade - static const IconData fileArrowUp = IconDataRegular(0xf574); + static const IconData fileArrowUp = IconData(0xf574, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-upload for icon [fileArrowUp] @Deprecated('Use "fileArrowUp" instead.') @@ -37128,7 +37128,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-up?style=light /// document, import, page, save, upgrade - static const IconData lightFileArrowUp = IconDataLight(0xf574); + static const IconData lightFileArrowUp = IconData(0xf574, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-upload for icon [lightFileArrowUp] @Deprecated('Use "lightFileArrowUp" instead.') @@ -37138,7 +37138,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-arrow-up?style=thin /// document, import, page, save, upgrade - static const IconData thinFileArrowUp = IconDataThin(0xf574); + static const IconData thinFileArrowUp = IconData(0xf574, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-upload for icon [thinFileArrowUp] @Deprecated('Use "thinFileArrowUp" instead.') @@ -37148,55 +37148,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-audio?style=solid /// document, mp3, music, page, play, sound - static const IconData solidFileAudio = IconDataSolid(0xf1c7); + static const IconData solidFileAudio = IconData(0xf1c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Audio icon /// /// https://fontawesome.com/icons/file-audio?style=regular /// document, mp3, music, page, play, sound - static const IconData fileAudio = IconDataRegular(0xf1c7); + static const IconData fileAudio = IconData(0xf1c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Audio icon /// /// https://fontawesome.com/icons/file-audio?style=light /// document, mp3, music, page, play, sound - static const IconData lightFileAudio = IconDataLight(0xf1c7); + static const IconData lightFileAudio = IconData(0xf1c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Audio icon /// /// https://fontawesome.com/icons/file-audio?style=thin /// document, mp3, music, page, play, sound - static const IconData thinFileAudio = IconDataThin(0xf1c7); + static const IconData thinFileAudio = IconData(0xf1c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Binary icon /// /// https://fontawesome.com/icons/file-binary?style=solid /// binary, code, computer - static const IconData solidFileBinary = IconDataSolid(0xe175); + static const IconData solidFileBinary = IconData(0xe175, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Binary icon /// /// https://fontawesome.com/icons/file-binary?style=regular /// binary, code, computer - static const IconData fileBinary = IconDataRegular(0xe175); + static const IconData fileBinary = IconData(0xe175, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Binary icon /// /// https://fontawesome.com/icons/file-binary?style=light /// binary, code, computer - static const IconData lightFileBinary = IconDataLight(0xe175); + static const IconData lightFileBinary = IconData(0xe175, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Binary icon /// /// https://fontawesome.com/icons/file-binary?style=thin /// binary, code, computer - static const IconData thinFileBinary = IconDataThin(0xe175); + static const IconData thinFileBinary = IconData(0xe175, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Certificate icon /// /// https://fontawesome.com/icons/file-certificate?style=solid /// award, diploma, document, license - static const IconData solidFileCertificate = IconDataSolid(0xf5f3); + static const IconData solidFileCertificate = IconData(0xf5f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-award for icon [solidFileCertificate] @Deprecated('Use "solidFileCertificate" instead.') @@ -37206,7 +37206,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-certificate?style=regular /// award, diploma, document, license - static const IconData fileCertificate = IconDataRegular(0xf5f3); + static const IconData fileCertificate = IconData(0xf5f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-award for icon [fileCertificate] @Deprecated('Use "fileCertificate" instead.') @@ -37216,7 +37216,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-certificate?style=light /// award, diploma, document, license - static const IconData lightFileCertificate = IconDataLight(0xf5f3); + static const IconData lightFileCertificate = IconData(0xf5f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-award for icon [lightFileCertificate] @Deprecated('Use "lightFileCertificate" instead.') @@ -37226,7 +37226,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-certificate?style=thin /// award, diploma, document, license - static const IconData thinFileCertificate = IconDataThin(0xf5f3); + static const IconData thinFileCertificate = IconData(0xf5f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-award for icon [thinFileCertificate] @Deprecated('Use "thinFileCertificate" instead.') @@ -37236,7 +37236,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-chart-column?style=solid /// analytics, data, document, projection, report, revenue - static const IconData solidFileChartColumn = IconDataSolid(0xf659); + static const IconData solidFileChartColumn = IconData(0xf659, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-chart-line for icon [solidFileChartColumn] @Deprecated('Use "solidFileChartColumn" instead.') @@ -37246,7 +37246,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-chart-column?style=regular /// analytics, data, document, projection, report, revenue - static const IconData fileChartColumn = IconDataRegular(0xf659); + static const IconData fileChartColumn = IconData(0xf659, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-chart-line for icon [fileChartColumn] @Deprecated('Use "fileChartColumn" instead.') @@ -37256,7 +37256,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-chart-column?style=light /// analytics, data, document, projection, report, revenue - static const IconData lightFileChartColumn = IconDataLight(0xf659); + static const IconData lightFileChartColumn = IconData(0xf659, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-chart-line for icon [lightFileChartColumn] @Deprecated('Use "lightFileChartColumn" instead.') @@ -37266,7 +37266,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-chart-column?style=thin /// analytics, data, document, projection, report, revenue - static const IconData thinFileChartColumn = IconDataThin(0xf659); + static const IconData thinFileChartColumn = IconData(0xf659, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-chart-line for icon [thinFileChartColumn] @Deprecated('Use "thinFileChartColumn" instead.') @@ -37276,295 +37276,295 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-chart-pie?style=solid /// analytics, data, document, projection, report, revenue - static const IconData solidFileChartPie = IconDataSolid(0xf65a); + static const IconData solidFileChartPie = IconData(0xf65a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Chart Pie icon /// /// https://fontawesome.com/icons/file-chart-pie?style=regular /// analytics, data, document, projection, report, revenue - static const IconData fileChartPie = IconDataRegular(0xf65a); + static const IconData fileChartPie = IconData(0xf65a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Chart Pie icon /// /// https://fontawesome.com/icons/file-chart-pie?style=light /// analytics, data, document, projection, report, revenue - static const IconData lightFileChartPie = IconDataLight(0xf65a); + static const IconData lightFileChartPie = IconData(0xf65a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Chart Pie icon /// /// https://fontawesome.com/icons/file-chart-pie?style=thin /// analytics, data, document, projection, report, revenue - static const IconData thinFileChartPie = IconDataThin(0xf65a); + static const IconData thinFileChartPie = IconData(0xf65a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Check icon /// /// https://fontawesome.com/icons/file-check?style=solid /// accept, agree, confirm, document, done, enable, ok, select, success, synced, tick, todo, validate, working - static const IconData solidFileCheck = IconDataSolid(0xf316); + static const IconData solidFileCheck = IconData(0xf316, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Check icon /// /// https://fontawesome.com/icons/file-check?style=regular /// accept, agree, confirm, document, done, enable, ok, select, success, synced, tick, todo, validate, working - static const IconData fileCheck = IconDataRegular(0xf316); + static const IconData fileCheck = IconData(0xf316, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Check icon /// /// https://fontawesome.com/icons/file-check?style=light /// accept, agree, confirm, document, done, enable, ok, select, success, synced, tick, todo, validate, working - static const IconData lightFileCheck = IconDataLight(0xf316); + static const IconData lightFileCheck = IconData(0xf316, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Check icon /// /// https://fontawesome.com/icons/file-check?style=thin /// accept, agree, confirm, document, done, enable, ok, select, success, synced, tick, todo, validate, working - static const IconData thinFileCheck = IconDataThin(0xf316); + static const IconData thinFileCheck = IconData(0xf316, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Check icon /// /// https://fontawesome.com/icons/file-circle-check?style=solid /// document, enable, file, not affected, ok, okay, paper, validate, working - static const IconData solidFileCircleCheck = IconDataSolid(0xe5a0); + static const IconData solidFileCircleCheck = IconData(0xe5a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Check icon /// /// https://fontawesome.com/icons/file-circle-check?style=regular /// document, enable, file, not affected, ok, okay, paper, validate, working - static const IconData fileCircleCheck = IconDataRegular(0xe5a0); + static const IconData fileCircleCheck = IconData(0xe5a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Check icon /// /// https://fontawesome.com/icons/file-circle-check?style=light /// document, enable, file, not affected, ok, okay, paper, validate, working - static const IconData lightFileCircleCheck = IconDataLight(0xe5a0); + static const IconData lightFileCircleCheck = IconData(0xe5a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Check icon /// /// https://fontawesome.com/icons/file-circle-check?style=thin /// document, enable, file, not affected, ok, okay, paper, validate, working - static const IconData thinFileCircleCheck = IconDataThin(0xe5a0); + static const IconData thinFileCircleCheck = IconData(0xe5a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Exclamation icon /// /// https://fontawesome.com/icons/file-circle-exclamation?style=solid /// document, failed, file, paper - static const IconData solidFileCircleExclamation = IconDataSolid(0xe4eb); + static const IconData solidFileCircleExclamation = IconData(0xe4eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Exclamation icon /// /// https://fontawesome.com/icons/file-circle-exclamation?style=regular /// document, failed, file, paper - static const IconData fileCircleExclamation = IconDataRegular(0xe4eb); + static const IconData fileCircleExclamation = IconData(0xe4eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Exclamation icon /// /// https://fontawesome.com/icons/file-circle-exclamation?style=light /// document, failed, file, paper - static const IconData lightFileCircleExclamation = IconDataLight(0xe4eb); + static const IconData lightFileCircleExclamation = IconData(0xe4eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Exclamation icon /// /// https://fontawesome.com/icons/file-circle-exclamation?style=thin /// document, failed, file, paper - static const IconData thinFileCircleExclamation = IconDataThin(0xe4eb); + static const IconData thinFileCircleExclamation = IconData(0xe4eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Info icon /// /// https://fontawesome.com/icons/file-circle-info?style=solid /// details, document, info, new, page, pdf - static const IconData solidFileCircleInfo = IconDataSolid(0xe493); + static const IconData solidFileCircleInfo = IconData(0xe493, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Info icon /// /// https://fontawesome.com/icons/file-circle-info?style=regular /// details, document, info, new, page, pdf - static const IconData fileCircleInfo = IconDataRegular(0xe493); + static const IconData fileCircleInfo = IconData(0xe493, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Info icon /// /// https://fontawesome.com/icons/file-circle-info?style=light /// details, document, info, new, page, pdf - static const IconData lightFileCircleInfo = IconDataLight(0xe493); + static const IconData lightFileCircleInfo = IconData(0xe493, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Info icon /// /// https://fontawesome.com/icons/file-circle-info?style=thin /// details, document, info, new, page, pdf - static const IconData thinFileCircleInfo = IconDataThin(0xe493); + static const IconData thinFileCircleInfo = IconData(0xe493, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Minus icon /// /// https://fontawesome.com/icons/file-circle-minus?style=solid /// document, file, paper - static const IconData solidFileCircleMinus = IconDataSolid(0xe4ed); + static const IconData solidFileCircleMinus = IconData(0xe4ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Minus icon /// /// https://fontawesome.com/icons/file-circle-minus?style=regular /// document, file, paper - static const IconData fileCircleMinus = IconDataRegular(0xe4ed); + static const IconData fileCircleMinus = IconData(0xe4ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Minus icon /// /// https://fontawesome.com/icons/file-circle-minus?style=light /// document, file, paper - static const IconData lightFileCircleMinus = IconDataLight(0xe4ed); + static const IconData lightFileCircleMinus = IconData(0xe4ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Minus icon /// /// https://fontawesome.com/icons/file-circle-minus?style=thin /// document, file, paper - static const IconData thinFileCircleMinus = IconDataThin(0xe4ed); + static const IconData thinFileCircleMinus = IconData(0xe4ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Plus icon /// /// https://fontawesome.com/icons/file-circle-plus?style=solid /// add, document, file, new, page, paper, pdf - static const IconData solidFileCirclePlus = IconDataSolid(0xe494); + static const IconData solidFileCirclePlus = IconData(0xe494, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Plus icon /// /// https://fontawesome.com/icons/file-circle-plus?style=regular /// add, document, file, new, page, paper, pdf - static const IconData fileCirclePlus = IconDataRegular(0xe494); + static const IconData fileCirclePlus = IconData(0xe494, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Plus icon /// /// https://fontawesome.com/icons/file-circle-plus?style=light /// add, document, file, new, page, paper, pdf - static const IconData lightFileCirclePlus = IconDataLight(0xe494); + static const IconData lightFileCirclePlus = IconData(0xe494, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Plus icon /// /// https://fontawesome.com/icons/file-circle-plus?style=thin /// add, document, file, new, page, paper, pdf - static const IconData thinFileCirclePlus = IconDataThin(0xe494); + static const IconData thinFileCirclePlus = IconData(0xe494, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Question icon /// /// https://fontawesome.com/icons/file-circle-question?style=solid /// document, file, paper - static const IconData solidFileCircleQuestion = IconDataSolid(0xe4ef); + static const IconData solidFileCircleQuestion = IconData(0xe4ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Question icon /// /// https://fontawesome.com/icons/file-circle-question?style=regular /// document, file, paper - static const IconData fileCircleQuestion = IconDataRegular(0xe4ef); + static const IconData fileCircleQuestion = IconData(0xe4ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Question icon /// /// https://fontawesome.com/icons/file-circle-question?style=light /// document, file, paper - static const IconData lightFileCircleQuestion = IconDataLight(0xe4ef); + static const IconData lightFileCircleQuestion = IconData(0xe4ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Question icon /// /// https://fontawesome.com/icons/file-circle-question?style=thin /// document, file, paper - static const IconData thinFileCircleQuestion = IconDataThin(0xe4ef); + static const IconData thinFileCircleQuestion = IconData(0xe4ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Circle Xmark icon /// /// https://fontawesome.com/icons/file-circle-xmark?style=solid /// document, file, paper, uncheck - static const IconData solidFileCircleXmark = IconDataSolid(0xe5a1); + static const IconData solidFileCircleXmark = IconData(0xe5a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Circle Xmark icon /// /// https://fontawesome.com/icons/file-circle-xmark?style=regular /// document, file, paper, uncheck - static const IconData fileCircleXmark = IconDataRegular(0xe5a1); + static const IconData fileCircleXmark = IconData(0xe5a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Circle Xmark icon /// /// https://fontawesome.com/icons/file-circle-xmark?style=light /// document, file, paper, uncheck - static const IconData lightFileCircleXmark = IconDataLight(0xe5a1); + static const IconData lightFileCircleXmark = IconData(0xe5a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Circle Xmark icon /// /// https://fontawesome.com/icons/file-circle-xmark?style=thin /// document, file, paper, uncheck - static const IconData thinFileCircleXmark = IconDataThin(0xe5a1); + static const IconData thinFileCircleXmark = IconData(0xe5a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Code icon /// /// https://fontawesome.com/icons/file-code?style=solid /// css, development, document, html, mysql, sql - static const IconData solidFileCode = IconDataSolid(0xf1c9); + static const IconData solidFileCode = IconData(0xf1c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Code icon /// /// https://fontawesome.com/icons/file-code?style=regular /// css, development, document, html, mysql, sql - static const IconData fileCode = IconDataRegular(0xf1c9); + static const IconData fileCode = IconData(0xf1c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Code icon /// /// https://fontawesome.com/icons/file-code?style=light /// css, development, document, html, mysql, sql - static const IconData lightFileCode = IconDataLight(0xf1c9); + static const IconData lightFileCode = IconData(0xf1c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Code icon /// /// https://fontawesome.com/icons/file-code?style=thin /// css, development, document, html, mysql, sql - static const IconData thinFileCode = IconDataThin(0xf1c9); + static const IconData thinFileCode = IconData(0xf1c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Contract icon /// /// https://fontawesome.com/icons/file-contract?style=solid /// agreement, binding, document, legal, signature, username - static const IconData solidFileContract = IconDataSolid(0xf56c); + static const IconData solidFileContract = IconData(0xf56c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Contract icon /// /// https://fontawesome.com/icons/file-contract?style=regular /// agreement, binding, document, legal, signature, username - static const IconData fileContract = IconDataRegular(0xf56c); + static const IconData fileContract = IconData(0xf56c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Contract icon /// /// https://fontawesome.com/icons/file-contract?style=light /// agreement, binding, document, legal, signature, username - static const IconData lightFileContract = IconDataLight(0xf56c); + static const IconData lightFileContract = IconData(0xf56c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Contract icon /// /// https://fontawesome.com/icons/file-contract?style=thin /// agreement, binding, document, legal, signature, username - static const IconData thinFileContract = IconDataThin(0xf56c); + static const IconData thinFileContract = IconData(0xf56c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Csv icon /// /// https://fontawesome.com/icons/file-csv?style=solid /// document, excel, numbers, spreadsheets, table - static const IconData solidFileCsv = IconDataSolid(0xf6dd); + static const IconData solidFileCsv = IconData(0xf6dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Csv icon /// /// https://fontawesome.com/icons/file-csv?style=regular /// document, excel, numbers, spreadsheets, table - static const IconData fileCsv = IconDataRegular(0xf6dd); + static const IconData fileCsv = IconData(0xf6dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Csv icon /// /// https://fontawesome.com/icons/file-csv?style=light /// document, excel, numbers, spreadsheets, table - static const IconData lightFileCsv = IconDataLight(0xf6dd); + static const IconData lightFileCsv = IconData(0xf6dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Csv icon /// /// https://fontawesome.com/icons/file-csv?style=thin /// document, excel, numbers, spreadsheets, table - static const IconData thinFileCsv = IconDataThin(0xf6dd); + static const IconData thinFileCsv = IconData(0xf6dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Dashed Line icon /// /// https://fontawesome.com/icons/file-dashed-line?style=solid /// begin, divide, edit, end, format, split - static const IconData solidFileDashedLine = IconDataSolid(0xf877); + static const IconData solidFileDashedLine = IconData(0xf877, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias page-break for icon [solidFileDashedLine] @Deprecated('Use "solidFileDashedLine" instead.') @@ -37574,7 +37574,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-dashed-line?style=regular /// begin, divide, edit, end, format, split - static const IconData fileDashedLine = IconDataRegular(0xf877); + static const IconData fileDashedLine = IconData(0xf877, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias page-break for icon [fileDashedLine] @Deprecated('Use "fileDashedLine" instead.') @@ -37584,7 +37584,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-dashed-line?style=light /// begin, divide, edit, end, format, split - static const IconData lightFileDashedLine = IconDataLight(0xf877); + static const IconData lightFileDashedLine = IconData(0xf877, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias page-break for icon [lightFileDashedLine] @Deprecated('Use "lightFileDashedLine" instead.') @@ -37594,7 +37594,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-dashed-line?style=thin /// begin, divide, edit, end, format, split - static const IconData thinFileDashedLine = IconDataThin(0xf877); + static const IconData thinFileDashedLine = IconData(0xf877, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias page-break for icon [thinFileDashedLine] @Deprecated('Use "thinFileDashedLine" instead.') @@ -37604,103 +37604,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-doc?style=solid /// file, microsoft, paper, writing, document - static const IconData solidFileDoc = IconDataSolid(0xe5ed); + static const IconData solidFileDoc = IconData(0xe5ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Doc icon /// /// https://fontawesome.com/icons/file-doc?style=regular /// file, microsoft, paper, writing, document - static const IconData fileDoc = IconDataRegular(0xe5ed); + static const IconData fileDoc = IconData(0xe5ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Doc icon /// /// https://fontawesome.com/icons/file-doc?style=light /// file, microsoft, paper, writing, document - static const IconData lightFileDoc = IconDataLight(0xe5ed); + static const IconData lightFileDoc = IconData(0xe5ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Doc icon /// /// https://fontawesome.com/icons/file-doc?style=thin /// file, microsoft, paper, writing, document - static const IconData thinFileDoc = IconDataThin(0xe5ed); + static const IconData thinFileDoc = IconData(0xe5ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Eps icon /// /// https://fontawesome.com/icons/file-eps?style=solid /// Document with Picture, document, image, eps, img, vector - static const IconData solidFileEps = IconDataSolid(0xe644); + static const IconData solidFileEps = IconData(0xe644, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Eps icon /// /// https://fontawesome.com/icons/file-eps?style=regular /// Document with Picture, document, image, eps, img, vector - static const IconData fileEps = IconDataRegular(0xe644); + static const IconData fileEps = IconData(0xe644, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Eps icon /// /// https://fontawesome.com/icons/file-eps?style=light /// Document with Picture, document, image, eps, img, vector - static const IconData lightFileEps = IconDataLight(0xe644); + static const IconData lightFileEps = IconData(0xe644, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Eps icon /// /// https://fontawesome.com/icons/file-eps?style=thin /// Document with Picture, document, image, eps, img, vector - static const IconData thinFileEps = IconDataThin(0xe644); + static const IconData thinFileEps = IconData(0xe644, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Excel icon /// /// https://fontawesome.com/icons/file-excel?style=solid /// csv, document, numbers, spreadsheets, table - static const IconData solidFileExcel = IconDataSolid(0xf1c3); + static const IconData solidFileExcel = IconData(0xf1c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Excel icon /// /// https://fontawesome.com/icons/file-excel?style=regular /// csv, document, numbers, spreadsheets, table - static const IconData fileExcel = IconDataRegular(0xf1c3); + static const IconData fileExcel = IconData(0xf1c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Excel icon /// /// https://fontawesome.com/icons/file-excel?style=light /// csv, document, numbers, spreadsheets, table - static const IconData lightFileExcel = IconDataLight(0xf1c3); + static const IconData lightFileExcel = IconData(0xf1c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Excel icon /// /// https://fontawesome.com/icons/file-excel?style=thin /// csv, document, numbers, spreadsheets, table - static const IconData thinFileExcel = IconDataThin(0xf1c3); + static const IconData thinFileExcel = IconData(0xf1c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Exclamation icon /// /// https://fontawesome.com/icons/file-exclamation?style=solid /// alert, document, failed, important, page - static const IconData solidFileExclamation = IconDataSolid(0xf31a); + static const IconData solidFileExclamation = IconData(0xf31a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Exclamation icon /// /// https://fontawesome.com/icons/file-exclamation?style=regular /// alert, document, failed, important, page - static const IconData fileExclamation = IconDataRegular(0xf31a); + static const IconData fileExclamation = IconData(0xf31a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Exclamation icon /// /// https://fontawesome.com/icons/file-exclamation?style=light /// alert, document, failed, important, page - static const IconData lightFileExclamation = IconDataLight(0xf31a); + static const IconData lightFileExclamation = IconData(0xf31a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Exclamation icon /// /// https://fontawesome.com/icons/file-exclamation?style=thin /// alert, document, failed, important, page - static const IconData thinFileExclamation = IconDataThin(0xf31a); + static const IconData thinFileExclamation = IconData(0xf31a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Export icon /// /// https://fontawesome.com/icons/file-export?style=solid /// download, save - static const IconData solidFileExport = IconDataSolid(0xf56e); + static const IconData solidFileExport = IconData(0xf56e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-from-file for icon [solidFileExport] @Deprecated('Use "solidFileExport" instead.') @@ -37710,7 +37710,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-export?style=regular /// download, save - static const IconData fileExport = IconDataRegular(0xf56e); + static const IconData fileExport = IconData(0xf56e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-from-file for icon [fileExport] @Deprecated('Use "fileExport" instead.') @@ -37720,7 +37720,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-export?style=light /// download, save - static const IconData lightFileExport = IconDataLight(0xf56e); + static const IconData lightFileExport = IconData(0xf56e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-from-file for icon [lightFileExport] @Deprecated('Use "lightFileExport" instead.') @@ -37730,7 +37730,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-export?style=thin /// download, save - static const IconData thinFileExport = IconDataThin(0xf56e); + static const IconData thinFileExport = IconData(0xf56e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-from-file for icon [thinFileExport] @Deprecated('Use "thinFileExport" instead.') @@ -37740,79 +37740,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-gif?style=solid /// document, image, animation, gif, graphics interchange format, jif - static const IconData solidFileGif = IconDataSolid(0xe645); + static const IconData solidFileGif = IconData(0xe645, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Gif icon /// /// https://fontawesome.com/icons/file-gif?style=regular /// document, image, animation, gif, graphics interchange format, jif - static const IconData fileGif = IconDataRegular(0xe645); + static const IconData fileGif = IconData(0xe645, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Gif icon /// /// https://fontawesome.com/icons/file-gif?style=light /// document, image, animation, gif, graphics interchange format, jif - static const IconData lightFileGif = IconDataLight(0xe645); + static const IconData lightFileGif = IconData(0xe645, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Gif icon /// /// https://fontawesome.com/icons/file-gif?style=thin /// document, image, animation, gif, graphics interchange format, jif - static const IconData thinFileGif = IconDataThin(0xe645); + static const IconData thinFileGif = IconData(0xe645, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Heart icon /// /// https://fontawesome.com/icons/file-heart?style=solid /// favorite, love, wishlist - static const IconData solidFileHeart = IconDataSolid(0xe176); + static const IconData solidFileHeart = IconData(0xe176, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Heart icon /// /// https://fontawesome.com/icons/file-heart?style=regular /// favorite, love, wishlist - static const IconData fileHeart = IconDataRegular(0xe176); + static const IconData fileHeart = IconData(0xe176, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Heart icon /// /// https://fontawesome.com/icons/file-heart?style=light /// favorite, love, wishlist - static const IconData lightFileHeart = IconDataLight(0xe176); + static const IconData lightFileHeart = IconData(0xe176, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Heart icon /// /// https://fontawesome.com/icons/file-heart?style=thin /// favorite, love, wishlist - static const IconData thinFileHeart = IconDataThin(0xe176); + static const IconData thinFileHeart = IconData(0xe176, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Image icon /// /// https://fontawesome.com/icons/file-image?style=solid /// Document with Picture, document, image, img, jpg, photo, png - static const IconData solidFileImage = IconDataSolid(0xf1c5); + static const IconData solidFileImage = IconData(0xf1c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Image icon /// /// https://fontawesome.com/icons/file-image?style=regular /// Document with Picture, document, image, img, jpg, photo, png - static const IconData fileImage = IconDataRegular(0xf1c5); + static const IconData fileImage = IconData(0xf1c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Image icon /// /// https://fontawesome.com/icons/file-image?style=light /// Document with Picture, document, image, img, jpg, photo, png - static const IconData lightFileImage = IconDataLight(0xf1c5); + static const IconData lightFileImage = IconData(0xf1c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Image icon /// /// https://fontawesome.com/icons/file-image?style=thin /// Document with Picture, document, image, img, jpg, photo, png - static const IconData thinFileImage = IconDataThin(0xf1c5); + static const IconData thinFileImage = IconData(0xf1c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Import icon /// /// https://fontawesome.com/icons/file-import?style=solid /// copy, document, insert, send, upload - static const IconData solidFileImport = IconDataSolid(0xf56f); + static const IconData solidFileImport = IconData(0xf56f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-to-file for icon [solidFileImport] @Deprecated('Use "solidFileImport" instead.') @@ -37822,7 +37822,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-import?style=regular /// copy, document, insert, send, upload - static const IconData fileImport = IconDataRegular(0xf56f); + static const IconData fileImport = IconData(0xf56f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-to-file for icon [fileImport] @Deprecated('Use "fileImport" instead.') @@ -37832,7 +37832,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-import?style=light /// copy, document, insert, send, upload - static const IconData lightFileImport = IconDataLight(0xf56f); + static const IconData lightFileImport = IconData(0xf56f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-to-file for icon [lightFileImport] @Deprecated('Use "lightFileImport" instead.') @@ -37842,7 +37842,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-import?style=thin /// copy, document, insert, send, upload - static const IconData thinFileImport = IconDataThin(0xf56f); + static const IconData thinFileImport = IconData(0xf56f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-right-to-file for icon [thinFileImport] @Deprecated('Use "thinFileImport" instead.') @@ -37852,79 +37852,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-invoice?style=solid /// account, bill, charge, document, payment, receipt - static const IconData solidFileInvoice = IconDataSolid(0xf570); + static const IconData solidFileInvoice = IconData(0xf570, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Invoice icon /// /// https://fontawesome.com/icons/file-invoice?style=regular /// account, bill, charge, document, payment, receipt - static const IconData fileInvoice = IconDataRegular(0xf570); + static const IconData fileInvoice = IconData(0xf570, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Invoice icon /// /// https://fontawesome.com/icons/file-invoice?style=light /// account, bill, charge, document, payment, receipt - static const IconData lightFileInvoice = IconDataLight(0xf570); + static const IconData lightFileInvoice = IconData(0xf570, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Invoice icon /// /// https://fontawesome.com/icons/file-invoice?style=thin /// account, bill, charge, document, payment, receipt - static const IconData thinFileInvoice = IconDataThin(0xf570); + static const IconData thinFileInvoice = IconData(0xf570, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Invoice Dollar icon /// /// https://fontawesome.com/icons/file-invoice-dollar?style=solid /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, revenue, salary, usd - static const IconData solidFileInvoiceDollar = IconDataSolid(0xf571); + static const IconData solidFileInvoiceDollar = IconData(0xf571, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Invoice Dollar icon /// /// https://fontawesome.com/icons/file-invoice-dollar?style=regular /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, revenue, salary, usd - static const IconData fileInvoiceDollar = IconDataRegular(0xf571); + static const IconData fileInvoiceDollar = IconData(0xf571, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Invoice Dollar icon /// /// https://fontawesome.com/icons/file-invoice-dollar?style=light /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, revenue, salary, usd - static const IconData lightFileInvoiceDollar = IconDataLight(0xf571); + static const IconData lightFileInvoiceDollar = IconData(0xf571, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Invoice Dollar icon /// /// https://fontawesome.com/icons/file-invoice-dollar?style=thin /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, revenue, salary, usd - static const IconData thinFileInvoiceDollar = IconDataThin(0xf571); + static const IconData thinFileInvoiceDollar = IconData(0xf571, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Jpg icon /// /// https://fontawesome.com/icons/file-jpg?style=solid /// Document with Picture, document, image, jpg, photo - static const IconData solidFileJpg = IconDataSolid(0xe646); + static const IconData solidFileJpg = IconData(0xe646, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Jpg icon /// /// https://fontawesome.com/icons/file-jpg?style=regular /// Document with Picture, document, image, jpg, photo - static const IconData fileJpg = IconDataRegular(0xe646); + static const IconData fileJpg = IconData(0xe646, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Jpg icon /// /// https://fontawesome.com/icons/file-jpg?style=light /// Document with Picture, document, image, jpg, photo - static const IconData lightFileJpg = IconDataLight(0xe646); + static const IconData lightFileJpg = IconData(0xe646, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Jpg icon /// /// https://fontawesome.com/icons/file-jpg?style=thin /// Document with Picture, document, image, jpg, photo - static const IconData thinFileJpg = IconDataThin(0xe646); + static const IconData thinFileJpg = IconData(0xe646, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Lines icon /// /// https://fontawesome.com/icons/file-lines?style=solid /// Document, Document with Text, document, file-text, invoice, new, page, pdf - static const IconData solidFileLines = IconDataSolid(0xf15c); + static const IconData solidFileLines = IconData(0xf15c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-alt for icon [solidFileLines] @Deprecated('Use "solidFileLines" instead.') @@ -37938,7 +37938,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-lines?style=regular /// Document, Document with Text, document, file-text, invoice, new, page, pdf - static const IconData fileLines = IconDataRegular(0xf15c); + static const IconData fileLines = IconData(0xf15c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-alt for icon [fileLines] @Deprecated('Use "fileLines" instead.') @@ -37952,7 +37952,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-lines?style=light /// Document, Document with Text, document, file-text, invoice, new, page, pdf - static const IconData lightFileLines = IconDataLight(0xf15c); + static const IconData lightFileLines = IconData(0xf15c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-alt for icon [lightFileLines] @Deprecated('Use "lightFileLines" instead.') @@ -37966,7 +37966,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-lines?style=thin /// Document, Document with Text, document, file-text, invoice, new, page, pdf - static const IconData thinFileLines = IconDataThin(0xf15c); + static const IconData thinFileLines = IconData(0xf15c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-alt for icon [thinFileLines] @Deprecated('Use "thinFileLines" instead.') @@ -37980,31 +37980,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-lock?style=solid /// contract, encrypt, lock, padlock, privacy, private, protect - static const IconData solidFileLock = IconDataSolid(0xe3a6); + static const IconData solidFileLock = IconData(0xe3a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Lock icon /// /// https://fontawesome.com/icons/file-lock?style=regular /// contract, encrypt, lock, padlock, privacy, private, protect - static const IconData fileLock = IconDataRegular(0xe3a6); + static const IconData fileLock = IconData(0xe3a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Lock icon /// /// https://fontawesome.com/icons/file-lock?style=light /// contract, encrypt, lock, padlock, privacy, private, protect - static const IconData lightFileLock = IconDataLight(0xe3a6); + static const IconData lightFileLock = IconData(0xe3a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Lock icon /// /// https://fontawesome.com/icons/file-lock?style=thin /// contract, encrypt, lock, padlock, privacy, private, protect - static const IconData thinFileLock = IconDataThin(0xe3a6); + static const IconData thinFileLock = IconData(0xe3a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Magnifying Glass icon /// /// https://fontawesome.com/icons/file-magnifying-glass?style=solid /// document, find, look, magnifier, scan - static const IconData solidFileMagnifyingGlass = IconDataSolid(0xf865); + static const IconData solidFileMagnifyingGlass = IconData(0xf865, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-search for icon [solidFileMagnifyingGlass] @Deprecated('Use "solidFileMagnifyingGlass" instead.') @@ -38014,7 +38014,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-magnifying-glass?style=regular /// document, find, look, magnifier, scan - static const IconData fileMagnifyingGlass = IconDataRegular(0xf865); + static const IconData fileMagnifyingGlass = IconData(0xf865, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-search for icon [fileMagnifyingGlass] @Deprecated('Use "fileMagnifyingGlass" instead.') @@ -38024,7 +38024,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-magnifying-glass?style=light /// document, find, look, magnifier, scan - static const IconData lightFileMagnifyingGlass = IconDataLight(0xf865); + static const IconData lightFileMagnifyingGlass = IconData(0xf865, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-search for icon [lightFileMagnifyingGlass] @Deprecated('Use "lightFileMagnifyingGlass" instead.') @@ -38034,7 +38034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-magnifying-glass?style=thin /// document, find, look, magnifier, scan - static const IconData thinFileMagnifyingGlass = IconDataThin(0xf865); + static const IconData thinFileMagnifyingGlass = IconData(0xf865, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-search for icon [thinFileMagnifyingGlass] @Deprecated('Use "thinFileMagnifyingGlass" instead.') @@ -38044,175 +38044,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-medical?style=solid /// document, health, history, prescription, record - static const IconData solidFileMedical = IconDataSolid(0xf477); + static const IconData solidFileMedical = IconData(0xf477, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Medical icon /// /// https://fontawesome.com/icons/file-medical?style=regular /// document, health, history, prescription, record - static const IconData fileMedical = IconDataRegular(0xf477); + static const IconData fileMedical = IconData(0xf477, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Medical icon /// /// https://fontawesome.com/icons/file-medical?style=light /// document, health, history, prescription, record - static const IconData lightFileMedical = IconDataLight(0xf477); + static const IconData lightFileMedical = IconData(0xf477, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Medical icon /// /// https://fontawesome.com/icons/file-medical?style=thin /// document, health, history, prescription, record - static const IconData thinFileMedical = IconDataThin(0xf477); + static const IconData thinFileMedical = IconData(0xf477, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Minus icon /// /// https://fontawesome.com/icons/file-minus?style=solid /// delete, document, negative, remove - static const IconData solidFileMinus = IconDataSolid(0xf318); + static const IconData solidFileMinus = IconData(0xf318, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Minus icon /// /// https://fontawesome.com/icons/file-minus?style=regular /// delete, document, negative, remove - static const IconData fileMinus = IconDataRegular(0xf318); + static const IconData fileMinus = IconData(0xf318, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Minus icon /// /// https://fontawesome.com/icons/file-minus?style=light /// delete, document, negative, remove - static const IconData lightFileMinus = IconDataLight(0xf318); + static const IconData lightFileMinus = IconData(0xf318, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Minus icon /// /// https://fontawesome.com/icons/file-minus?style=thin /// delete, document, negative, remove - static const IconData thinFileMinus = IconDataThin(0xf318); + static const IconData thinFileMinus = IconData(0xf318, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Mov icon /// /// https://fontawesome.com/icons/file-mov?style=solid /// document, film, mov, movie, video - static const IconData solidFileMov = IconDataSolid(0xe647); + static const IconData solidFileMov = IconData(0xe647, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Mov icon /// /// https://fontawesome.com/icons/file-mov?style=regular /// document, film, mov, movie, video - static const IconData fileMov = IconDataRegular(0xe647); + static const IconData fileMov = IconData(0xe647, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Mov icon /// /// https://fontawesome.com/icons/file-mov?style=light /// document, film, mov, movie, video - static const IconData lightFileMov = IconDataLight(0xe647); + static const IconData lightFileMov = IconData(0xe647, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Mov icon /// /// https://fontawesome.com/icons/file-mov?style=thin /// document, film, mov, movie, video - static const IconData thinFileMov = IconDataThin(0xe647); + static const IconData thinFileMov = IconData(0xe647, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Mp3 icon /// /// https://fontawesome.com/icons/file-mp3?style=solid /// mp3, music, page, play, sound, document - static const IconData solidFileMp3 = IconDataSolid(0xe648); + static const IconData solidFileMp3 = IconData(0xe648, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Mp3 icon /// /// https://fontawesome.com/icons/file-mp3?style=regular /// mp3, music, page, play, sound, document - static const IconData fileMp3 = IconDataRegular(0xe648); + static const IconData fileMp3 = IconData(0xe648, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Mp3 icon /// /// https://fontawesome.com/icons/file-mp3?style=light /// mp3, music, page, play, sound, document - static const IconData lightFileMp3 = IconDataLight(0xe648); + static const IconData lightFileMp3 = IconData(0xe648, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Mp3 icon /// /// https://fontawesome.com/icons/file-mp3?style=thin /// mp3, music, page, play, sound, document - static const IconData thinFileMp3 = IconDataThin(0xe648); + static const IconData thinFileMp3 = IconData(0xe648, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Mp4 icon /// /// https://fontawesome.com/icons/file-mp4?style=solid /// document, film, movie, mp4, mpeg, video - static const IconData solidFileMp4 = IconDataSolid(0xe649); + static const IconData solidFileMp4 = IconData(0xe649, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Mp4 icon /// /// https://fontawesome.com/icons/file-mp4?style=regular /// document, film, movie, mp4, mpeg, video - static const IconData fileMp4 = IconDataRegular(0xe649); + static const IconData fileMp4 = IconData(0xe649, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Mp4 icon /// /// https://fontawesome.com/icons/file-mp4?style=light /// document, film, movie, mp4, mpeg, video - static const IconData lightFileMp4 = IconDataLight(0xe649); + static const IconData lightFileMp4 = IconData(0xe649, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Mp4 icon /// /// https://fontawesome.com/icons/file-mp4?style=thin /// document, film, movie, mp4, mpeg, video - static const IconData thinFileMp4 = IconDataThin(0xe649); + static const IconData thinFileMp4 = IconData(0xe649, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Music icon /// /// https://fontawesome.com/icons/file-music?style=solid /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconData solidFileMusic = IconDataSolid(0xf8b6); + static const IconData solidFileMusic = IconData(0xf8b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Music icon /// /// https://fontawesome.com/icons/file-music?style=regular /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconData fileMusic = IconDataRegular(0xf8b6); + static const IconData fileMusic = IconData(0xf8b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Music icon /// /// https://fontawesome.com/icons/file-music?style=light /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconData lightFileMusic = IconDataLight(0xf8b6); + static const IconData lightFileMusic = IconData(0xf8b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Music icon /// /// https://fontawesome.com/icons/file-music?style=thin /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconData thinFileMusic = IconDataThin(0xf8b6); + static const IconData thinFileMusic = IconData(0xf8b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Pdf icon /// /// https://fontawesome.com/icons/file-pdf?style=solid /// acrobat, document, preview, save - static const IconData solidFilePdf = IconDataSolid(0xf1c1); + static const IconData solidFilePdf = IconData(0xf1c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Pdf icon /// /// https://fontawesome.com/icons/file-pdf?style=regular /// acrobat, document, preview, save - static const IconData filePdf = IconDataRegular(0xf1c1); + static const IconData filePdf = IconData(0xf1c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Pdf icon /// /// https://fontawesome.com/icons/file-pdf?style=light /// acrobat, document, preview, save - static const IconData lightFilePdf = IconDataLight(0xf1c1); + static const IconData lightFilePdf = IconData(0xf1c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Pdf icon /// /// https://fontawesome.com/icons/file-pdf?style=thin /// acrobat, document, preview, save - static const IconData thinFilePdf = IconDataThin(0xf1c1); + static const IconData thinFilePdf = IconData(0xf1c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Pen icon /// /// https://fontawesome.com/icons/file-pen?style=solid /// edit, memo, modify, pen, pencil, update, write - static const IconData solidFilePen = IconDataSolid(0xf31c); + static const IconData solidFilePen = IconData(0xf31c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-edit for icon [solidFilePen] @Deprecated('Use "solidFilePen" instead.') @@ -38222,7 +38222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-pen?style=regular /// edit, memo, modify, pen, pencil, update, write - static const IconData filePen = IconDataRegular(0xf31c); + static const IconData filePen = IconData(0xf31c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-edit for icon [filePen] @Deprecated('Use "filePen" instead.') @@ -38232,7 +38232,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-pen?style=light /// edit, memo, modify, pen, pencil, update, write - static const IconData lightFilePen = IconDataLight(0xf31c); + static const IconData lightFilePen = IconData(0xf31c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-edit for icon [lightFilePen] @Deprecated('Use "lightFilePen" instead.') @@ -38242,7 +38242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-pen?style=thin /// edit, memo, modify, pen, pencil, update, write - static const IconData thinFilePen = IconDataThin(0xf31c); + static const IconData thinFilePen = IconData(0xf31c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-edit for icon [thinFilePen] @Deprecated('Use "thinFilePen" instead.') @@ -38252,343 +38252,343 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-plus?style=solid /// add, create, document, medical, new, positive - static const IconData solidFilePlus = IconDataSolid(0xf319); + static const IconData solidFilePlus = IconData(0xf319, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Plus icon /// /// https://fontawesome.com/icons/file-plus?style=regular /// add, create, document, medical, new, positive - static const IconData filePlus = IconDataRegular(0xf319); + static const IconData filePlus = IconData(0xf319, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Plus icon /// /// https://fontawesome.com/icons/file-plus?style=light /// add, create, document, medical, new, positive - static const IconData lightFilePlus = IconDataLight(0xf319); + static const IconData lightFilePlus = IconData(0xf319, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Plus icon /// /// https://fontawesome.com/icons/file-plus?style=thin /// add, create, document, medical, new, positive - static const IconData thinFilePlus = IconDataThin(0xf319); + static const IconData thinFilePlus = IconData(0xf319, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Plus Minus icon /// /// https://fontawesome.com/icons/file-plus-minus?style=solid /// add, difference, math, subtract - static const IconData solidFilePlusMinus = IconDataSolid(0xe177); + static const IconData solidFilePlusMinus = IconData(0xe177, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Plus Minus icon /// /// https://fontawesome.com/icons/file-plus-minus?style=regular /// add, difference, math, subtract - static const IconData filePlusMinus = IconDataRegular(0xe177); + static const IconData filePlusMinus = IconData(0xe177, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Plus Minus icon /// /// https://fontawesome.com/icons/file-plus-minus?style=light /// add, difference, math, subtract - static const IconData lightFilePlusMinus = IconDataLight(0xe177); + static const IconData lightFilePlusMinus = IconData(0xe177, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Plus Minus icon /// /// https://fontawesome.com/icons/file-plus-minus?style=thin /// add, difference, math, subtract - static const IconData thinFilePlusMinus = IconDataThin(0xe177); + static const IconData thinFilePlusMinus = IconData(0xe177, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Png icon /// /// https://fontawesome.com/icons/file-png?style=solid /// Document with Picture, document, image, jpg, photo - static const IconData solidFilePng = IconDataSolid(0xe666); + static const IconData solidFilePng = IconData(0xe666, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Png icon /// /// https://fontawesome.com/icons/file-png?style=regular /// Document with Picture, document, image, jpg, photo - static const IconData filePng = IconDataRegular(0xe666); + static const IconData filePng = IconData(0xe666, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Png icon /// /// https://fontawesome.com/icons/file-png?style=light /// Document with Picture, document, image, jpg, photo - static const IconData lightFilePng = IconDataLight(0xe666); + static const IconData lightFilePng = IconData(0xe666, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Png icon /// /// https://fontawesome.com/icons/file-png?style=thin /// Document with Picture, document, image, jpg, photo - static const IconData thinFilePng = IconDataThin(0xe666); + static const IconData thinFilePng = IconData(0xe666, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Powerpoint icon /// /// https://fontawesome.com/icons/file-powerpoint?style=solid /// display, document, keynote, presentation - static const IconData solidFilePowerpoint = IconDataSolid(0xf1c4); + static const IconData solidFilePowerpoint = IconData(0xf1c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Powerpoint icon /// /// https://fontawesome.com/icons/file-powerpoint?style=regular /// display, document, keynote, presentation - static const IconData filePowerpoint = IconDataRegular(0xf1c4); + static const IconData filePowerpoint = IconData(0xf1c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Powerpoint icon /// /// https://fontawesome.com/icons/file-powerpoint?style=light /// display, document, keynote, presentation - static const IconData lightFilePowerpoint = IconDataLight(0xf1c4); + static const IconData lightFilePowerpoint = IconData(0xf1c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Powerpoint icon /// /// https://fontawesome.com/icons/file-powerpoint?style=thin /// display, document, keynote, presentation - static const IconData thinFilePowerpoint = IconDataThin(0xf1c4); + static const IconData thinFilePowerpoint = IconData(0xf1c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Ppt icon /// /// https://fontawesome.com/icons/file-ppt?style=solid /// document, file, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk, keynote - static const IconData solidFilePpt = IconDataSolid(0xe64a); + static const IconData solidFilePpt = IconData(0xe64a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Ppt icon /// /// https://fontawesome.com/icons/file-ppt?style=regular /// document, file, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk, keynote - static const IconData filePpt = IconDataRegular(0xe64a); + static const IconData filePpt = IconData(0xe64a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Ppt icon /// /// https://fontawesome.com/icons/file-ppt?style=light /// document, file, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk, keynote - static const IconData lightFilePpt = IconDataLight(0xe64a); + static const IconData lightFilePpt = IconData(0xe64a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Ppt icon /// /// https://fontawesome.com/icons/file-ppt?style=thin /// document, file, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk, keynote - static const IconData thinFilePpt = IconDataThin(0xe64a); + static const IconData thinFilePpt = IconData(0xe64a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Prescription icon /// /// https://fontawesome.com/icons/file-prescription?style=solid /// document, drugs, medical, medicine, rx - static const IconData solidFilePrescription = IconDataSolid(0xf572); + static const IconData solidFilePrescription = IconData(0xf572, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Prescription icon /// /// https://fontawesome.com/icons/file-prescription?style=regular /// document, drugs, medical, medicine, rx - static const IconData filePrescription = IconDataRegular(0xf572); + static const IconData filePrescription = IconData(0xf572, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Prescription icon /// /// https://fontawesome.com/icons/file-prescription?style=light /// document, drugs, medical, medicine, rx - static const IconData lightFilePrescription = IconDataLight(0xf572); + static const IconData lightFilePrescription = IconData(0xf572, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Prescription icon /// /// https://fontawesome.com/icons/file-prescription?style=thin /// document, drugs, medical, medicine, rx - static const IconData thinFilePrescription = IconDataThin(0xf572); + static const IconData thinFilePrescription = IconData(0xf572, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Shield icon /// /// https://fontawesome.com/icons/file-shield?style=solid /// antivirus, data, document, protect, safe, safety, secure - static const IconData solidFileShield = IconDataSolid(0xe4f0); + static const IconData solidFileShield = IconData(0xe4f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Shield icon /// /// https://fontawesome.com/icons/file-shield?style=regular /// antivirus, data, document, protect, safe, safety, secure - static const IconData fileShield = IconDataRegular(0xe4f0); + static const IconData fileShield = IconData(0xe4f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Shield icon /// /// https://fontawesome.com/icons/file-shield?style=light /// antivirus, data, document, protect, safe, safety, secure - static const IconData lightFileShield = IconDataLight(0xe4f0); + static const IconData lightFileShield = IconData(0xe4f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Shield icon /// /// https://fontawesome.com/icons/file-shield?style=thin /// antivirus, data, document, protect, safe, safety, secure - static const IconData thinFileShield = IconDataThin(0xe4f0); + static const IconData thinFileShield = IconData(0xe4f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Signature icon /// /// https://fontawesome.com/icons/file-signature?style=solid /// John Hancock, contract, document, name, username - static const IconData solidFileSignature = IconDataSolid(0xf573); + static const IconData solidFileSignature = IconData(0xf573, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Signature icon /// /// https://fontawesome.com/icons/file-signature?style=regular /// John Hancock, contract, document, name, username - static const IconData fileSignature = IconDataRegular(0xf573); + static const IconData fileSignature = IconData(0xf573, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Signature icon /// /// https://fontawesome.com/icons/file-signature?style=light /// John Hancock, contract, document, name, username - static const IconData lightFileSignature = IconDataLight(0xf573); + static const IconData lightFileSignature = IconData(0xf573, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Signature icon /// /// https://fontawesome.com/icons/file-signature?style=thin /// John Hancock, contract, document, name, username - static const IconData thinFileSignature = IconDataThin(0xf573); + static const IconData thinFileSignature = IconData(0xf573, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Slash icon /// /// https://fontawesome.com/icons/file-slash?style=solid /// cancel, delete, disabled, paper, remove - static const IconData solidFileSlash = IconDataSolid(0xe3a7); + static const IconData solidFileSlash = IconData(0xe3a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Slash icon /// /// https://fontawesome.com/icons/file-slash?style=regular /// cancel, delete, disabled, paper, remove - static const IconData fileSlash = IconDataRegular(0xe3a7); + static const IconData fileSlash = IconData(0xe3a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Slash icon /// /// https://fontawesome.com/icons/file-slash?style=light /// cancel, delete, disabled, paper, remove - static const IconData lightFileSlash = IconDataLight(0xe3a7); + static const IconData lightFileSlash = IconData(0xe3a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Slash icon /// /// https://fontawesome.com/icons/file-slash?style=thin /// cancel, delete, disabled, paper, remove - static const IconData thinFileSlash = IconDataThin(0xe3a7); + static const IconData thinFileSlash = IconData(0xe3a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Spreadsheet icon /// /// https://fontawesome.com/icons/file-spreadsheet?style=solid /// csv, document, excel, numbers, sheets, xls - static const IconData solidFileSpreadsheet = IconDataSolid(0xf65b); + static const IconData solidFileSpreadsheet = IconData(0xf65b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Spreadsheet icon /// /// https://fontawesome.com/icons/file-spreadsheet?style=regular /// csv, document, excel, numbers, sheets, xls - static const IconData fileSpreadsheet = IconDataRegular(0xf65b); + static const IconData fileSpreadsheet = IconData(0xf65b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Spreadsheet icon /// /// https://fontawesome.com/icons/file-spreadsheet?style=light /// csv, document, excel, numbers, sheets, xls - static const IconData lightFileSpreadsheet = IconDataLight(0xf65b); + static const IconData lightFileSpreadsheet = IconData(0xf65b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Spreadsheet icon /// /// https://fontawesome.com/icons/file-spreadsheet?style=thin /// csv, document, excel, numbers, sheets, xls - static const IconData thinFileSpreadsheet = IconDataThin(0xf65b); + static const IconData thinFileSpreadsheet = IconData(0xf65b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Svg icon /// /// https://fontawesome.com/icons/file-svg?style=solid /// document, image, scalable vector graphic, svg, vector - static const IconData solidFileSvg = IconDataSolid(0xe64b); + static const IconData solidFileSvg = IconData(0xe64b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Svg icon /// /// https://fontawesome.com/icons/file-svg?style=regular /// document, image, scalable vector graphic, svg, vector - static const IconData fileSvg = IconDataRegular(0xe64b); + static const IconData fileSvg = IconData(0xe64b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Svg icon /// /// https://fontawesome.com/icons/file-svg?style=light /// document, image, scalable vector graphic, svg, vector - static const IconData lightFileSvg = IconDataLight(0xe64b); + static const IconData lightFileSvg = IconData(0xe64b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Svg icon /// /// https://fontawesome.com/icons/file-svg?style=thin /// document, image, scalable vector graphic, svg, vector - static const IconData thinFileSvg = IconDataThin(0xe64b); + static const IconData thinFileSvg = IconData(0xe64b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File User icon /// /// https://fontawesome.com/icons/file-user?style=solid /// account, cv, document, employee, page, personnel, profile, resume, uer - static const IconData solidFileUser = IconDataSolid(0xf65c); + static const IconData solidFileUser = IconData(0xf65c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File User icon /// /// https://fontawesome.com/icons/file-user?style=regular /// account, cv, document, employee, page, personnel, profile, resume, uer - static const IconData fileUser = IconDataRegular(0xf65c); + static const IconData fileUser = IconData(0xf65c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File User icon /// /// https://fontawesome.com/icons/file-user?style=light /// account, cv, document, employee, page, personnel, profile, resume, uer - static const IconData lightFileUser = IconDataLight(0xf65c); + static const IconData lightFileUser = IconData(0xf65c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File User icon /// /// https://fontawesome.com/icons/file-user?style=thin /// account, cv, document, employee, page, personnel, profile, resume, uer - static const IconData thinFileUser = IconDataThin(0xf65c); + static const IconData thinFileUser = IconData(0xf65c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Vector icon /// /// https://fontawesome.com/icons/file-vector?style=solid /// document, svg, vector, eps, image - static const IconData solidFileVector = IconDataSolid(0xe64c); + static const IconData solidFileVector = IconData(0xe64c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Vector icon /// /// https://fontawesome.com/icons/file-vector?style=regular /// document, svg, vector, eps, image - static const IconData fileVector = IconDataRegular(0xe64c); + static const IconData fileVector = IconData(0xe64c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Vector icon /// /// https://fontawesome.com/icons/file-vector?style=light /// document, svg, vector, eps, image - static const IconData lightFileVector = IconDataLight(0xe64c); + static const IconData lightFileVector = IconData(0xe64c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Vector icon /// /// https://fontawesome.com/icons/file-vector?style=thin /// document, svg, vector, eps, image - static const IconData thinFileVector = IconDataThin(0xe64c); + static const IconData thinFileVector = IconData(0xe64c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Video icon /// /// https://fontawesome.com/icons/file-video?style=solid /// document, m4v, movie, mp4, play - static const IconData solidFileVideo = IconDataSolid(0xf1c8); + static const IconData solidFileVideo = IconData(0xf1c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Video icon /// /// https://fontawesome.com/icons/file-video?style=regular /// document, m4v, movie, mp4, play - static const IconData fileVideo = IconDataRegular(0xf1c8); + static const IconData fileVideo = IconData(0xf1c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Video icon /// /// https://fontawesome.com/icons/file-video?style=light /// document, m4v, movie, mp4, play - static const IconData lightFileVideo = IconDataLight(0xf1c8); + static const IconData lightFileVideo = IconData(0xf1c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Video icon /// /// https://fontawesome.com/icons/file-video?style=thin /// document, m4v, movie, mp4, play - static const IconData thinFileVideo = IconDataThin(0xf1c8); + static const IconData thinFileVideo = IconData(0xf1c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Waveform icon /// /// https://fontawesome.com/icons/file-waveform?style=solid /// document, health, history, prescription, record - static const IconData solidFileWaveform = IconDataSolid(0xf478); + static const IconData solidFileWaveform = IconData(0xf478, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-medical-alt for icon [solidFileWaveform] @Deprecated('Use "solidFileWaveform" instead.') @@ -38598,7 +38598,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-waveform?style=regular /// document, health, history, prescription, record - static const IconData fileWaveform = IconDataRegular(0xf478); + static const IconData fileWaveform = IconData(0xf478, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-medical-alt for icon [fileWaveform] @Deprecated('Use "fileWaveform" instead.') @@ -38608,7 +38608,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-waveform?style=light /// document, health, history, prescription, record - static const IconData lightFileWaveform = IconDataLight(0xf478); + static const IconData lightFileWaveform = IconData(0xf478, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-medical-alt for icon [lightFileWaveform] @Deprecated('Use "lightFileWaveform" instead.') @@ -38618,7 +38618,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-waveform?style=thin /// document, health, history, prescription, record - static const IconData thinFileWaveform = IconDataThin(0xf478); + static const IconData thinFileWaveform = IconData(0xf478, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-medical-alt for icon [thinFileWaveform] @Deprecated('Use "thinFileWaveform" instead.') @@ -38628,55 +38628,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-word?style=solid /// document, edit, page, text, writing - static const IconData solidFileWord = IconDataSolid(0xf1c2); + static const IconData solidFileWord = IconData(0xf1c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Word icon /// /// https://fontawesome.com/icons/file-word?style=regular /// document, edit, page, text, writing - static const IconData fileWord = IconDataRegular(0xf1c2); + static const IconData fileWord = IconData(0xf1c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Word icon /// /// https://fontawesome.com/icons/file-word?style=light /// document, edit, page, text, writing - static const IconData lightFileWord = IconDataLight(0xf1c2); + static const IconData lightFileWord = IconData(0xf1c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Word icon /// /// https://fontawesome.com/icons/file-word?style=thin /// document, edit, page, text, writing - static const IconData thinFileWord = IconDataThin(0xf1c2); + static const IconData thinFileWord = IconData(0xf1c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Xls icon /// /// https://fontawesome.com/icons/file-xls?style=solid /// document, excel, file, numbers, spreadsheets, table, csv - static const IconData solidFileXls = IconDataSolid(0xe64d); + static const IconData solidFileXls = IconData(0xe64d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Xls icon /// /// https://fontawesome.com/icons/file-xls?style=regular /// document, excel, file, numbers, spreadsheets, table, csv - static const IconData fileXls = IconDataRegular(0xe64d); + static const IconData fileXls = IconData(0xe64d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Xls icon /// /// https://fontawesome.com/icons/file-xls?style=light /// document, excel, file, numbers, spreadsheets, table, csv - static const IconData lightFileXls = IconDataLight(0xe64d); + static const IconData lightFileXls = IconData(0xe64d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Xls icon /// /// https://fontawesome.com/icons/file-xls?style=thin /// document, excel, file, numbers, spreadsheets, table, csv - static const IconData thinFileXls = IconDataThin(0xe64d); + static const IconData thinFileXls = IconData(0xe64d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Xmark icon /// /// https://fontawesome.com/icons/file-xmark?style=solid /// archive, delete, document, remove, uncheck, x - static const IconData solidFileXmark = IconDataSolid(0xf317); + static const IconData solidFileXmark = IconData(0xf317, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-times for icon [solidFileXmark] @Deprecated('Use "solidFileXmark" instead.') @@ -38686,7 +38686,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-xmark?style=regular /// archive, delete, document, remove, uncheck, x - static const IconData fileXmark = IconDataRegular(0xf317); + static const IconData fileXmark = IconData(0xf317, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-times for icon [fileXmark] @Deprecated('Use "fileXmark" instead.') @@ -38696,7 +38696,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-xmark?style=light /// archive, delete, document, remove, uncheck, x - static const IconData lightFileXmark = IconDataLight(0xf317); + static const IconData lightFileXmark = IconData(0xf317, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-times for icon [lightFileXmark] @Deprecated('Use "lightFileXmark" instead.') @@ -38706,7 +38706,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-xmark?style=thin /// archive, delete, document, remove, uncheck, x - static const IconData thinFileXmark = IconDataThin(0xf317); + static const IconData thinFileXmark = IconData(0xf317, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-times for icon [thinFileXmark] @Deprecated('Use "thinFileXmark" instead.') @@ -38716,55 +38716,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-xml?style=solid /// data, document, file, language, markup, extensible - static const IconData solidFileXml = IconDataSolid(0xe654); + static const IconData solidFileXml = IconData(0xe654, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Xml icon /// /// https://fontawesome.com/icons/file-xml?style=regular /// data, document, file, language, markup, extensible - static const IconData fileXml = IconDataRegular(0xe654); + static const IconData fileXml = IconData(0xe654, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Xml icon /// /// https://fontawesome.com/icons/file-xml?style=light /// data, document, file, language, markup, extensible - static const IconData lightFileXml = IconDataLight(0xe654); + static const IconData lightFileXml = IconData(0xe654, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Xml icon /// /// https://fontawesome.com/icons/file-xml?style=thin /// data, document, file, language, markup, extensible - static const IconData thinFileXml = IconDataThin(0xe654); + static const IconData thinFileXml = IconData(0xe654, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Zip icon /// /// https://fontawesome.com/icons/file-zip?style=solid /// file, paper, document, archive - static const IconData solidFileZip = IconDataSolid(0xe5ee); + static const IconData solidFileZip = IconData(0xe5ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular File Zip icon /// /// https://fontawesome.com/icons/file-zip?style=regular /// file, paper, document, archive - static const IconData fileZip = IconDataRegular(0xe5ee); + static const IconData fileZip = IconData(0xe5ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light File Zip icon /// /// https://fontawesome.com/icons/file-zip?style=light /// file, paper, document, archive - static const IconData lightFileZip = IconDataLight(0xe5ee); + static const IconData lightFileZip = IconData(0xe5ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin File Zip icon /// /// https://fontawesome.com/icons/file-zip?style=thin /// file, paper, document, archive - static const IconData thinFileZip = IconDataThin(0xe5ee); + static const IconData thinFileZip = IconData(0xe5ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid File Zipper icon /// /// https://fontawesome.com/icons/file-zipper?style=solid /// .zip, bundle, compress, compression, download, zip - static const IconData solidFileZipper = IconDataSolid(0xf1c6); + static const IconData solidFileZipper = IconData(0xf1c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-archive for icon [solidFileZipper] @Deprecated('Use "solidFileZipper" instead.') @@ -38774,7 +38774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-zipper?style=regular /// .zip, bundle, compress, compression, download, zip - static const IconData fileZipper = IconDataRegular(0xf1c6); + static const IconData fileZipper = IconData(0xf1c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-archive for icon [fileZipper] @Deprecated('Use "fileZipper" instead.') @@ -38784,7 +38784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-zipper?style=light /// .zip, bundle, compress, compression, download, zip - static const IconData lightFileZipper = IconDataLight(0xf1c6); + static const IconData lightFileZipper = IconData(0xf1c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-archive for icon [lightFileZipper] @Deprecated('Use "lightFileZipper" instead.') @@ -38794,7 +38794,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/file-zipper?style=thin /// .zip, bundle, compress, compression, download, zip - static const IconData thinFileZipper = IconDataThin(0xf1c6); + static const IconData thinFileZipper = IconData(0xf1c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-archive for icon [thinFileZipper] @Deprecated('Use "thinFileZipper" instead.') @@ -38804,127 +38804,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/files?style=solid /// history, multiple - static const IconData solidFiles = IconDataSolid(0xe178); + static const IconData solidFiles = IconData(0xe178, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Files icon /// /// https://fontawesome.com/icons/files?style=regular /// history, multiple - static const IconData files = IconDataRegular(0xe178); + static const IconData files = IconData(0xe178, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Files icon /// /// https://fontawesome.com/icons/files?style=light /// history, multiple - static const IconData lightFiles = IconDataLight(0xe178); + static const IconData lightFiles = IconData(0xe178, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Files icon /// /// https://fontawesome.com/icons/files?style=thin /// history, multiple - static const IconData thinFiles = IconDataThin(0xe178); + static const IconData thinFiles = IconData(0xe178, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Files Medical icon /// /// https://fontawesome.com/icons/files-medical?style=solid /// document, health, history, prescription, record - static const IconData solidFilesMedical = IconDataSolid(0xf7fd); + static const IconData solidFilesMedical = IconData(0xf7fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Files Medical icon /// /// https://fontawesome.com/icons/files-medical?style=regular /// document, health, history, prescription, record - static const IconData filesMedical = IconDataRegular(0xf7fd); + static const IconData filesMedical = IconData(0xf7fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Files Medical icon /// /// https://fontawesome.com/icons/files-medical?style=light /// document, health, history, prescription, record - static const IconData lightFilesMedical = IconDataLight(0xf7fd); + static const IconData lightFilesMedical = IconData(0xf7fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Files Medical icon /// /// https://fontawesome.com/icons/files-medical?style=thin /// document, health, history, prescription, record - static const IconData thinFilesMedical = IconDataThin(0xf7fd); + static const IconData thinFilesMedical = IconData(0xf7fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fill icon /// /// https://fontawesome.com/icons/fill?style=solid /// bucket, color, paint, paint bucket - static const IconData solidFill = IconDataSolid(0xf575); + static const IconData solidFill = IconData(0xf575, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fill icon /// /// https://fontawesome.com/icons/fill?style=regular /// bucket, color, paint, paint bucket - static const IconData fill = IconDataRegular(0xf575); + static const IconData fill = IconData(0xf575, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fill icon /// /// https://fontawesome.com/icons/fill?style=light /// bucket, color, paint, paint bucket - static const IconData lightFill = IconDataLight(0xf575); + static const IconData lightFill = IconData(0xf575, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fill icon /// /// https://fontawesome.com/icons/fill?style=thin /// bucket, color, paint, paint bucket - static const IconData thinFill = IconDataThin(0xf575); + static const IconData thinFill = IconData(0xf575, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fill Drip icon /// /// https://fontawesome.com/icons/fill-drip?style=solid /// bucket, color, drop, paint, paint bucket, spill - static const IconData solidFillDrip = IconDataSolid(0xf576); + static const IconData solidFillDrip = IconData(0xf576, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fill Drip icon /// /// https://fontawesome.com/icons/fill-drip?style=regular /// bucket, color, drop, paint, paint bucket, spill - static const IconData fillDrip = IconDataRegular(0xf576); + static const IconData fillDrip = IconData(0xf576, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fill Drip icon /// /// https://fontawesome.com/icons/fill-drip?style=light /// bucket, color, drop, paint, paint bucket, spill - static const IconData lightFillDrip = IconDataLight(0xf576); + static const IconData lightFillDrip = IconData(0xf576, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fill Drip icon /// /// https://fontawesome.com/icons/fill-drip?style=thin /// bucket, color, drop, paint, paint bucket, spill - static const IconData thinFillDrip = IconDataThin(0xf576); + static const IconData thinFillDrip = IconData(0xf576, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Film icon /// /// https://fontawesome.com/icons/film?style=solid /// cinema, film, film frames, frames, movie, strip, video - static const IconData solidFilm = IconDataSolid(0xf008); + static const IconData solidFilm = IconData(0xf008, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Film icon /// /// https://fontawesome.com/icons/film?style=regular /// cinema, film, film frames, frames, movie, strip, video - static const IconData film = IconDataRegular(0xf008); + static const IconData film = IconData(0xf008, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Film icon /// /// https://fontawesome.com/icons/film?style=light /// cinema, film, film frames, frames, movie, strip, video - static const IconData lightFilm = IconDataLight(0xf008); + static const IconData lightFilm = IconData(0xf008, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Film icon /// /// https://fontawesome.com/icons/film?style=thin /// cinema, film, film frames, frames, movie, strip, video - static const IconData thinFilm = IconDataThin(0xf008); + static const IconData thinFilm = IconData(0xf008, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Film Canister icon /// /// https://fontawesome.com/icons/film-canister?style=solid /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData solidFilmCanister = IconDataSolid(0xf8b7); + static const IconData solidFilmCanister = IconData(0xf8b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias film-cannister for icon [solidFilmCanister] @Deprecated('Use "solidFilmCanister" instead.') @@ -38934,7 +38934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-canister?style=regular /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData filmCanister = IconDataRegular(0xf8b7); + static const IconData filmCanister = IconData(0xf8b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias film-cannister for icon [filmCanister] @Deprecated('Use "filmCanister" instead.') @@ -38944,7 +38944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-canister?style=light /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData lightFilmCanister = IconDataLight(0xf8b7); + static const IconData lightFilmCanister = IconData(0xf8b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias film-cannister for icon [lightFilmCanister] @Deprecated('Use "lightFilmCanister" instead.') @@ -38954,7 +38954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-canister?style=thin /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData thinFilmCanister = IconDataThin(0xf8b7); + static const IconData thinFilmCanister = IconData(0xf8b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias film-cannister for icon [thinFilmCanister] @Deprecated('Use "thinFilmCanister" instead.') @@ -38964,7 +38964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-simple?style=solid /// cinema, movie, strip, video - static const IconData solidFilmSimple = IconDataSolid(0xf3a0); + static const IconData solidFilmSimple = IconData(0xf3a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias film-alt for icon [solidFilmSimple] @Deprecated('Use "solidFilmSimple" instead.') @@ -38974,7 +38974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-simple?style=regular /// cinema, movie, strip, video - static const IconData filmSimple = IconDataRegular(0xf3a0); + static const IconData filmSimple = IconData(0xf3a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias film-alt for icon [filmSimple] @Deprecated('Use "filmSimple" instead.') @@ -38984,7 +38984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-simple?style=light /// cinema, movie, strip, video - static const IconData lightFilmSimple = IconDataLight(0xf3a0); + static const IconData lightFilmSimple = IconData(0xf3a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias film-alt for icon [lightFilmSimple] @Deprecated('Use "lightFilmSimple" instead.') @@ -38994,7 +38994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-simple?style=thin /// cinema, movie, strip, video - static const IconData thinFilmSimple = IconDataThin(0xf3a0); + static const IconData thinFilmSimple = IconData(0xf3a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias film-alt for icon [thinFilmSimple] @Deprecated('Use "thinFilmSimple" instead.') @@ -39004,79 +39004,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/film-slash?style=solid /// cinema, disabled, movie, strip, video - static const IconData solidFilmSlash = IconDataSolid(0xe179); + static const IconData solidFilmSlash = IconData(0xe179, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Film Slash icon /// /// https://fontawesome.com/icons/film-slash?style=regular /// cinema, disabled, movie, strip, video - static const IconData filmSlash = IconDataRegular(0xe179); + static const IconData filmSlash = IconData(0xe179, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Film Slash icon /// /// https://fontawesome.com/icons/film-slash?style=light /// cinema, disabled, movie, strip, video - static const IconData lightFilmSlash = IconDataLight(0xe179); + static const IconData lightFilmSlash = IconData(0xe179, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Film Slash icon /// /// https://fontawesome.com/icons/film-slash?style=thin /// cinema, disabled, movie, strip, video - static const IconData thinFilmSlash = IconDataThin(0xe179); + static const IconData thinFilmSlash = IconData(0xe179, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Films icon /// /// https://fontawesome.com/icons/films?style=solid /// films, videos - static const IconData solidFilms = IconDataSolid(0xe17a); + static const IconData solidFilms = IconData(0xe17a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Films icon /// /// https://fontawesome.com/icons/films?style=regular /// films, videos - static const IconData films = IconDataRegular(0xe17a); + static const IconData films = IconData(0xe17a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Films icon /// /// https://fontawesome.com/icons/films?style=light /// films, videos - static const IconData lightFilms = IconDataLight(0xe17a); + static const IconData lightFilms = IconData(0xe17a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Films icon /// /// https://fontawesome.com/icons/films?style=thin /// films, videos - static const IconData thinFilms = IconDataThin(0xe17a); + static const IconData thinFilms = IconData(0xe17a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Filter icon /// /// https://fontawesome.com/icons/filter?style=solid /// funnel, options, separate, sort - static const IconData solidFilter = IconDataSolid(0xf0b0); + static const IconData solidFilter = IconData(0xf0b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Filter icon /// /// https://fontawesome.com/icons/filter?style=regular /// funnel, options, separate, sort - static const IconData filter = IconDataRegular(0xf0b0); + static const IconData filter = IconData(0xf0b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Filter icon /// /// https://fontawesome.com/icons/filter?style=light /// funnel, options, separate, sort - static const IconData lightFilter = IconDataLight(0xf0b0); + static const IconData lightFilter = IconData(0xf0b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Filter icon /// /// https://fontawesome.com/icons/filter?style=thin /// funnel, options, separate, sort - static const IconData thinFilter = IconDataThin(0xf0b0); + static const IconData thinFilter = IconData(0xf0b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Filter Circle Dollar icon /// /// https://fontawesome.com/icons/filter-circle-dollar?style=solid /// filter, money, options, premium, separate, sort - static const IconData solidFilterCircleDollar = IconDataSolid(0xf662); + static const IconData solidFilterCircleDollar = IconData(0xf662, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias funnel-dollar for icon [solidFilterCircleDollar] @Deprecated('Use "solidFilterCircleDollar" instead.') @@ -39086,7 +39086,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/filter-circle-dollar?style=regular /// filter, money, options, premium, separate, sort - static const IconData filterCircleDollar = IconDataRegular(0xf662); + static const IconData filterCircleDollar = IconData(0xf662, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias funnel-dollar for icon [filterCircleDollar] @Deprecated('Use "filterCircleDollar" instead.') @@ -39096,7 +39096,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/filter-circle-dollar?style=light /// filter, money, options, premium, separate, sort - static const IconData lightFilterCircleDollar = IconDataLight(0xf662); + static const IconData lightFilterCircleDollar = IconData(0xf662, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias funnel-dollar for icon [lightFilterCircleDollar] @Deprecated('Use "lightFilterCircleDollar" instead.') @@ -39106,7 +39106,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/filter-circle-dollar?style=thin /// filter, money, options, premium, separate, sort - static const IconData thinFilterCircleDollar = IconDataThin(0xf662); + static const IconData thinFilterCircleDollar = IconData(0xf662, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias funnel-dollar for icon [thinFilterCircleDollar] @Deprecated('Use "thinFilterCircleDollar" instead.') @@ -39116,199 +39116,199 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/filter-circle-xmark?style=solid /// cancel, funnel, options, remove, separate, sort, uncheck - static const IconData solidFilterCircleXmark = IconDataSolid(0xe17b); + static const IconData solidFilterCircleXmark = IconData(0xe17b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Filter Circle Xmark icon /// /// https://fontawesome.com/icons/filter-circle-xmark?style=regular /// cancel, funnel, options, remove, separate, sort, uncheck - static const IconData filterCircleXmark = IconDataRegular(0xe17b); + static const IconData filterCircleXmark = IconData(0xe17b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Filter Circle Xmark icon /// /// https://fontawesome.com/icons/filter-circle-xmark?style=light /// cancel, funnel, options, remove, separate, sort, uncheck - static const IconData lightFilterCircleXmark = IconDataLight(0xe17b); + static const IconData lightFilterCircleXmark = IconData(0xe17b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Filter Circle Xmark icon /// /// https://fontawesome.com/icons/filter-circle-xmark?style=thin /// cancel, funnel, options, remove, separate, sort, uncheck - static const IconData thinFilterCircleXmark = IconDataThin(0xe17b); + static const IconData thinFilterCircleXmark = IconData(0xe17b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Filter List icon /// /// https://fontawesome.com/icons/filter-list?style=solid /// cheatsheet, funnel, options, separate, sort, summary - static const IconData solidFilterList = IconDataSolid(0xe17c); + static const IconData solidFilterList = IconData(0xe17c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Filter List icon /// /// https://fontawesome.com/icons/filter-list?style=regular /// cheatsheet, funnel, options, separate, sort, summary - static const IconData filterList = IconDataRegular(0xe17c); + static const IconData filterList = IconData(0xe17c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Filter List icon /// /// https://fontawesome.com/icons/filter-list?style=light /// cheatsheet, funnel, options, separate, sort, summary - static const IconData lightFilterList = IconDataLight(0xe17c); + static const IconData lightFilterList = IconData(0xe17c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Filter List icon /// /// https://fontawesome.com/icons/filter-list?style=thin /// cheatsheet, funnel, options, separate, sort, summary - static const IconData thinFilterList = IconDataThin(0xe17c); + static const IconData thinFilterList = IconData(0xe17c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Filter Slash icon /// /// https://fontawesome.com/icons/filter-slash?style=solid /// disabled, funnel, options, separate, sort - static const IconData solidFilterSlash = IconDataSolid(0xe17d); + static const IconData solidFilterSlash = IconData(0xe17d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Filter Slash icon /// /// https://fontawesome.com/icons/filter-slash?style=regular /// disabled, funnel, options, separate, sort - static const IconData filterSlash = IconDataRegular(0xe17d); + static const IconData filterSlash = IconData(0xe17d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Filter Slash icon /// /// https://fontawesome.com/icons/filter-slash?style=light /// disabled, funnel, options, separate, sort - static const IconData lightFilterSlash = IconDataLight(0xe17d); + static const IconData lightFilterSlash = IconData(0xe17d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Filter Slash icon /// /// https://fontawesome.com/icons/filter-slash?style=thin /// disabled, funnel, options, separate, sort - static const IconData thinFilterSlash = IconDataThin(0xe17d); + static const IconData thinFilterSlash = IconData(0xe17d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Filters icon /// /// https://fontawesome.com/icons/filters?style=solid /// funnel, options, separate, sort - static const IconData solidFilters = IconDataSolid(0xe17e); + static const IconData solidFilters = IconData(0xe17e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Filters icon /// /// https://fontawesome.com/icons/filters?style=regular /// funnel, options, separate, sort - static const IconData filters = IconDataRegular(0xe17e); + static const IconData filters = IconData(0xe17e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Filters icon /// /// https://fontawesome.com/icons/filters?style=light /// funnel, options, separate, sort - static const IconData lightFilters = IconDataLight(0xe17e); + static const IconData lightFilters = IconData(0xe17e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Filters icon /// /// https://fontawesome.com/icons/filters?style=thin /// funnel, options, separate, sort - static const IconData thinFilters = IconDataThin(0xe17e); + static const IconData thinFilters = IconData(0xe17e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fingerprint icon /// /// https://fontawesome.com/icons/fingerprint?style=solid /// human, id, identification, lock, privacy, smudge, touch, unique, unlock - static const IconData solidFingerprint = IconDataSolid(0xf577); + static const IconData solidFingerprint = IconData(0xf577, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fingerprint icon /// /// https://fontawesome.com/icons/fingerprint?style=regular /// human, id, identification, lock, privacy, smudge, touch, unique, unlock - static const IconData fingerprint = IconDataRegular(0xf577); + static const IconData fingerprint = IconData(0xf577, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fingerprint icon /// /// https://fontawesome.com/icons/fingerprint?style=light /// human, id, identification, lock, privacy, smudge, touch, unique, unlock - static const IconData lightFingerprint = IconDataLight(0xf577); + static const IconData lightFingerprint = IconData(0xf577, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fingerprint icon /// /// https://fontawesome.com/icons/fingerprint?style=thin /// human, id, identification, lock, privacy, smudge, touch, unique, unlock - static const IconData thinFingerprint = IconDataThin(0xf577); + static const IconData thinFingerprint = IconData(0xf577, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fire icon /// /// https://fontawesome.com/icons/fire?style=solid /// burn, caliente, fire, flame, heat, hot, popular, tool - static const IconData solidFire = IconDataSolid(0xf06d); + static const IconData solidFire = IconData(0xf06d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fire icon /// /// https://fontawesome.com/icons/fire?style=regular /// burn, caliente, fire, flame, heat, hot, popular, tool - static const IconData fire = IconDataRegular(0xf06d); + static const IconData fire = IconData(0xf06d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fire icon /// /// https://fontawesome.com/icons/fire?style=light /// burn, caliente, fire, flame, heat, hot, popular, tool - static const IconData lightFire = IconDataLight(0xf06d); + static const IconData lightFire = IconData(0xf06d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fire icon /// /// https://fontawesome.com/icons/fire?style=thin /// burn, caliente, fire, flame, heat, hot, popular, tool - static const IconData thinFire = IconDataThin(0xf06d); + static const IconData thinFire = IconData(0xf06d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fire Burner icon /// /// https://fontawesome.com/icons/fire-burner?style=solid /// cook, fire, flame, kitchen, stove - static const IconData solidFireBurner = IconDataSolid(0xe4f1); + static const IconData solidFireBurner = IconData(0xe4f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fire Burner icon /// /// https://fontawesome.com/icons/fire-burner?style=regular /// cook, fire, flame, kitchen, stove - static const IconData fireBurner = IconDataRegular(0xe4f1); + static const IconData fireBurner = IconData(0xe4f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fire Burner icon /// /// https://fontawesome.com/icons/fire-burner?style=light /// cook, fire, flame, kitchen, stove - static const IconData lightFireBurner = IconDataLight(0xe4f1); + static const IconData lightFireBurner = IconData(0xe4f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fire Burner icon /// /// https://fontawesome.com/icons/fire-burner?style=thin /// cook, fire, flame, kitchen, stove - static const IconData thinFireBurner = IconDataThin(0xe4f1); + static const IconData thinFireBurner = IconData(0xe4f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fire Extinguisher icon /// /// https://fontawesome.com/icons/fire-extinguisher?style=solid /// burn, caliente, extinguish, fire, fire extinguisher, fire fighter, flame, heat, hot, quench, rescue - static const IconData solidFireExtinguisher = IconDataSolid(0xf134); + static const IconData solidFireExtinguisher = IconData(0xf134, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fire Extinguisher icon /// /// https://fontawesome.com/icons/fire-extinguisher?style=regular /// burn, caliente, extinguish, fire, fire extinguisher, fire fighter, flame, heat, hot, quench, rescue - static const IconData fireExtinguisher = IconDataRegular(0xf134); + static const IconData fireExtinguisher = IconData(0xf134, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fire Extinguisher icon /// /// https://fontawesome.com/icons/fire-extinguisher?style=light /// burn, caliente, extinguish, fire, fire extinguisher, fire fighter, flame, heat, hot, quench, rescue - static const IconData lightFireExtinguisher = IconDataLight(0xf134); + static const IconData lightFireExtinguisher = IconData(0xf134, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fire Extinguisher icon /// /// https://fontawesome.com/icons/fire-extinguisher?style=thin /// burn, caliente, extinguish, fire, fire extinguisher, fire fighter, flame, heat, hot, quench, rescue - static const IconData thinFireExtinguisher = IconDataThin(0xf134); + static const IconData thinFireExtinguisher = IconData(0xf134, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fire Flame icon /// /// https://fontawesome.com/icons/fire-flame?style=solid /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData solidFireFlame = IconDataSolid(0xf6df); + static const IconData solidFireFlame = IconData(0xf6df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias flame for icon [solidFireFlame] @Deprecated('Use "solidFireFlame" instead.') @@ -39318,7 +39318,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame?style=regular /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData fireFlame = IconDataRegular(0xf6df); + static const IconData fireFlame = IconData(0xf6df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias flame for icon [fireFlame] @Deprecated('Use "fireFlame" instead.') @@ -39328,7 +39328,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame?style=light /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData lightFireFlame = IconDataLight(0xf6df); + static const IconData lightFireFlame = IconData(0xf6df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias flame for icon [lightFireFlame] @Deprecated('Use "lightFireFlame" instead.') @@ -39338,7 +39338,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame?style=thin /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData thinFireFlame = IconDataThin(0xf6df); + static const IconData thinFireFlame = IconData(0xf6df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias flame for icon [thinFireFlame] @Deprecated('Use "thinFireFlame" instead.') @@ -39348,7 +39348,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-curved?style=solid /// burn, caliente, flame, heat, hot, popular - static const IconData solidFireFlameCurved = IconDataSolid(0xf7e4); + static const IconData solidFireFlameCurved = IconData(0xf7e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fire-alt for icon [solidFireFlameCurved] @Deprecated('Use "solidFireFlameCurved" instead.') @@ -39358,7 +39358,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-curved?style=regular /// burn, caliente, flame, heat, hot, popular - static const IconData fireFlameCurved = IconDataRegular(0xf7e4); + static const IconData fireFlameCurved = IconData(0xf7e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fire-alt for icon [fireFlameCurved] @Deprecated('Use "fireFlameCurved" instead.') @@ -39368,7 +39368,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-curved?style=light /// burn, caliente, flame, heat, hot, popular - static const IconData lightFireFlameCurved = IconDataLight(0xf7e4); + static const IconData lightFireFlameCurved = IconData(0xf7e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fire-alt for icon [lightFireFlameCurved] @Deprecated('Use "lightFireFlameCurved" instead.') @@ -39378,7 +39378,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-curved?style=thin /// burn, caliente, flame, heat, hot, popular - static const IconData thinFireFlameCurved = IconDataThin(0xf7e4); + static const IconData thinFireFlameCurved = IconData(0xf7e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fire-alt for icon [thinFireFlameCurved] @Deprecated('Use "thinFireFlameCurved" instead.') @@ -39388,7 +39388,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-simple?style=solid /// caliente, energy, fire, flame, gas, heat, hot - static const IconData solidFireFlameSimple = IconDataSolid(0xf46a); + static const IconData solidFireFlameSimple = IconData(0xf46a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias burn for icon [solidFireFlameSimple] @Deprecated('Use "solidFireFlameSimple" instead.') @@ -39398,7 +39398,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-simple?style=regular /// caliente, energy, fire, flame, gas, heat, hot - static const IconData fireFlameSimple = IconDataRegular(0xf46a); + static const IconData fireFlameSimple = IconData(0xf46a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias burn for icon [fireFlameSimple] @Deprecated('Use "fireFlameSimple" instead.') @@ -39408,7 +39408,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-simple?style=light /// caliente, energy, fire, flame, gas, heat, hot - static const IconData lightFireFlameSimple = IconDataLight(0xf46a); + static const IconData lightFireFlameSimple = IconData(0xf46a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias burn for icon [lightFireFlameSimple] @Deprecated('Use "lightFireFlameSimple" instead.') @@ -39418,7 +39418,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-flame-simple?style=thin /// caliente, energy, fire, flame, gas, heat, hot - static const IconData thinFireFlameSimple = IconDataThin(0xf46a); + static const IconData thinFireFlameSimple = IconData(0xf46a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias burn for icon [thinFireFlameSimple] @Deprecated('Use "thinFireFlameSimple" instead.') @@ -39428,274 +39428,274 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fire-hydrant?style=solid /// fire, irrigate, water - static const IconData solidFireHydrant = IconDataSolid(0xe17f); + static const IconData solidFireHydrant = IconData(0xe17f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fire Hydrant icon /// /// https://fontawesome.com/icons/fire-hydrant?style=regular /// fire, irrigate, water - static const IconData fireHydrant = IconDataRegular(0xe17f); + static const IconData fireHydrant = IconData(0xe17f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fire Hydrant icon /// /// https://fontawesome.com/icons/fire-hydrant?style=light /// fire, irrigate, water - static const IconData lightFireHydrant = IconDataLight(0xe17f); + static const IconData lightFireHydrant = IconData(0xe17f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fire Hydrant icon /// /// https://fontawesome.com/icons/fire-hydrant?style=thin /// fire, irrigate, water - static const IconData thinFireHydrant = IconDataThin(0xe17f); + static const IconData thinFireHydrant = IconData(0xe17f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fire Smoke icon /// /// https://fontawesome.com/icons/fire-smoke?style=solid /// burn, caliente, flame, fog, heat, hot - static const IconData solidFireSmoke = IconDataSolid(0xf74b); + static const IconData solidFireSmoke = IconData(0xf74b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fire Smoke icon /// /// https://fontawesome.com/icons/fire-smoke?style=regular /// burn, caliente, flame, fog, heat, hot - static const IconData fireSmoke = IconDataRegular(0xf74b); + static const IconData fireSmoke = IconData(0xf74b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fire Smoke icon /// /// https://fontawesome.com/icons/fire-smoke?style=light /// burn, caliente, flame, fog, heat, hot - static const IconData lightFireSmoke = IconDataLight(0xf74b); + static const IconData lightFireSmoke = IconData(0xf74b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fire Smoke icon /// /// https://fontawesome.com/icons/fire-smoke?style=thin /// burn, caliente, flame, fog, heat, hot - static const IconData thinFireSmoke = IconDataThin(0xf74b); + static const IconData thinFireSmoke = IconData(0xf74b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Firefox icon /// /// https://fontawesome.com/icons/firefox?style=brands /// browser - static const IconData firefox = IconDataBrands(0xf269); + static const IconData firefox = IconData(0xf269, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Firefox Browser icon /// /// https://fontawesome.com/icons/firefox-browser?style=brands /// browser - static const IconData firefoxBrowser = IconDataBrands(0xe007); + static const IconData firefoxBrowser = IconData(0xe007, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Fireplace icon /// /// https://fontawesome.com/icons/fireplace?style=solid /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData solidFireplace = IconDataSolid(0xf79a); + static const IconData solidFireplace = IconData(0xf79a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fireplace icon /// /// https://fontawesome.com/icons/fireplace?style=regular /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData fireplace = IconDataRegular(0xf79a); + static const IconData fireplace = IconData(0xf79a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fireplace icon /// /// https://fontawesome.com/icons/fireplace?style=light /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData lightFireplace = IconDataLight(0xf79a); + static const IconData lightFireplace = IconData(0xf79a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fireplace icon /// /// https://fontawesome.com/icons/fireplace?style=thin /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData thinFireplace = IconDataThin(0xf79a); + static const IconData thinFireplace = IconData(0xf79a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands First Order icon /// /// https://fontawesome.com/icons/first-order?style=brands - static const IconData firstOrder = IconDataBrands(0xf2b0); + static const IconData firstOrder = IconData(0xf2b0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate First Order icon /// /// https://fontawesome.com/icons/first-order-alt?style=brands - static const IconData firstOrderAlt = IconDataBrands(0xf50a); + static const IconData firstOrderAlt = IconData(0xf50a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands firstdraft icon /// /// https://fontawesome.com/icons/firstdraft?style=brands - static const IconData firstdraft = IconDataBrands(0xf3a1); + static const IconData firstdraft = IconData(0xf3a1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Fish icon /// /// https://fontawesome.com/icons/fish?style=solid /// Pisces, fauna, fish, gold, seafood, swimming, zodiac - static const IconData solidFish = IconDataSolid(0xf578); + static const IconData solidFish = IconData(0xf578, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fish icon /// /// https://fontawesome.com/icons/fish?style=regular /// Pisces, fauna, fish, gold, seafood, swimming, zodiac - static const IconData fish = IconDataRegular(0xf578); + static const IconData fish = IconData(0xf578, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fish icon /// /// https://fontawesome.com/icons/fish?style=light /// Pisces, fauna, fish, gold, seafood, swimming, zodiac - static const IconData lightFish = IconDataLight(0xf578); + static const IconData lightFish = IconData(0xf578, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fish icon /// /// https://fontawesome.com/icons/fish?style=thin /// Pisces, fauna, fish, gold, seafood, swimming, zodiac - static const IconData thinFish = IconDataThin(0xf578); + static const IconData thinFish = IconData(0xf578, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fish Bones icon /// /// https://fontawesome.com/icons/fish-bones?style=solid /// dead, fish, skeleton - static const IconData solidFishBones = IconDataSolid(0xe304); + static const IconData solidFishBones = IconData(0xe304, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fish Bones icon /// /// https://fontawesome.com/icons/fish-bones?style=regular /// dead, fish, skeleton - static const IconData fishBones = IconDataRegular(0xe304); + static const IconData fishBones = IconData(0xe304, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fish Bones icon /// /// https://fontawesome.com/icons/fish-bones?style=light /// dead, fish, skeleton - static const IconData lightFishBones = IconDataLight(0xe304); + static const IconData lightFishBones = IconData(0xe304, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fish Bones icon /// /// https://fontawesome.com/icons/fish-bones?style=thin /// dead, fish, skeleton - static const IconData thinFishBones = IconDataThin(0xe304); + static const IconData thinFishBones = IconData(0xe304, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fish Cooked icon /// /// https://fontawesome.com/icons/fish-cooked?style=solid /// grilled, health, salmon, seafood, tuna - static const IconData solidFishCooked = IconDataSolid(0xf7fe); + static const IconData solidFishCooked = IconData(0xf7fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fish Cooked icon /// /// https://fontawesome.com/icons/fish-cooked?style=regular /// grilled, health, salmon, seafood, tuna - static const IconData fishCooked = IconDataRegular(0xf7fe); + static const IconData fishCooked = IconData(0xf7fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fish Cooked icon /// /// https://fontawesome.com/icons/fish-cooked?style=light /// grilled, health, salmon, seafood, tuna - static const IconData lightFishCooked = IconDataLight(0xf7fe); + static const IconData lightFishCooked = IconData(0xf7fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fish Cooked icon /// /// https://fontawesome.com/icons/fish-cooked?style=thin /// grilled, health, salmon, seafood, tuna - static const IconData thinFishCooked = IconDataThin(0xf7fe); + static const IconData thinFishCooked = IconData(0xf7fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fish Fins icon /// /// https://fontawesome.com/icons/fish-fins?style=solid /// fish, fishery, pisces, seafood - static const IconData solidFishFins = IconDataSolid(0xe4f2); + static const IconData solidFishFins = IconData(0xe4f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fish Fins icon /// /// https://fontawesome.com/icons/fish-fins?style=regular /// fish, fishery, pisces, seafood - static const IconData fishFins = IconDataRegular(0xe4f2); + static const IconData fishFins = IconData(0xe4f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fish Fins icon /// /// https://fontawesome.com/icons/fish-fins?style=light /// fish, fishery, pisces, seafood - static const IconData lightFishFins = IconDataLight(0xe4f2); + static const IconData lightFishFins = IconData(0xe4f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fish Fins icon /// /// https://fontawesome.com/icons/fish-fins?style=thin /// fish, fishery, pisces, seafood - static const IconData thinFishFins = IconDataThin(0xe4f2); + static const IconData thinFishFins = IconData(0xe4f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fishing Rod icon /// /// https://fontawesome.com/icons/fishing-rod?style=solid /// bait, cast, fish, fishing pole, pole - static const IconData solidFishingRod = IconDataSolid(0xe3a8); + static const IconData solidFishingRod = IconData(0xe3a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fishing Rod icon /// /// https://fontawesome.com/icons/fishing-rod?style=regular /// bait, cast, fish, fishing pole, pole - static const IconData fishingRod = IconDataRegular(0xe3a8); + static const IconData fishingRod = IconData(0xe3a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fishing Rod icon /// /// https://fontawesome.com/icons/fishing-rod?style=light /// bait, cast, fish, fishing pole, pole - static const IconData lightFishingRod = IconDataLight(0xe3a8); + static const IconData lightFishingRod = IconData(0xe3a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fishing Rod icon /// /// https://fontawesome.com/icons/fishing-rod?style=thin /// bait, cast, fish, fishing pole, pole - static const IconData thinFishingRod = IconDataThin(0xe3a8); + static const IconData thinFishingRod = IconData(0xe3a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flag icon /// /// https://fontawesome.com/icons/flag?style=solid /// black flag, country, notice, notification, notify, pole, report, symbol, waving - static const IconData solidFlag = IconDataSolid(0xf024); + static const IconData solidFlag = IconData(0xf024, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flag icon /// /// https://fontawesome.com/icons/flag?style=regular /// black flag, country, notice, notification, notify, pole, report, symbol, waving - static const IconData flag = IconDataRegular(0xf024); + static const IconData flag = IconData(0xf024, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flag icon /// /// https://fontawesome.com/icons/flag?style=light /// black flag, country, notice, notification, notify, pole, report, symbol, waving - static const IconData lightFlag = IconDataLight(0xf024); + static const IconData lightFlag = IconData(0xf024, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flag icon /// /// https://fontawesome.com/icons/flag?style=thin /// black flag, country, notice, notification, notify, pole, report, symbol, waving - static const IconData thinFlag = IconDataThin(0xf024); + static const IconData thinFlag = IconData(0xf024, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flag Checkered icon /// /// https://fontawesome.com/icons/flag-checkered?style=solid /// checkered, chequered, chequered flag, finish, notice, notification, notify, pole, racing, report, start, symbol, win - static const IconData solidFlagCheckered = IconDataSolid(0xf11e); + static const IconData solidFlagCheckered = IconData(0xf11e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flag Checkered icon /// /// https://fontawesome.com/icons/flag-checkered?style=regular /// checkered, chequered, chequered flag, finish, notice, notification, notify, pole, racing, report, start, symbol, win - static const IconData flagCheckered = IconDataRegular(0xf11e); + static const IconData flagCheckered = IconData(0xf11e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flag Checkered icon /// /// https://fontawesome.com/icons/flag-checkered?style=light /// checkered, chequered, chequered flag, finish, notice, notification, notify, pole, racing, report, start, symbol, win - static const IconData lightFlagCheckered = IconDataLight(0xf11e); + static const IconData lightFlagCheckered = IconData(0xf11e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flag Checkered icon /// /// https://fontawesome.com/icons/flag-checkered?style=thin /// checkered, chequered, chequered flag, finish, notice, notification, notify, pole, racing, report, start, symbol, win - static const IconData thinFlagCheckered = IconDataThin(0xf11e); + static const IconData thinFlagCheckered = IconData(0xf11e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flag Pennant icon /// /// https://fontawesome.com/icons/flag-pennant?style=solid /// banner, flag, post, sign, sports, triangular flag, win - static const IconData solidFlagPennant = IconDataSolid(0xf456); + static const IconData solidFlagPennant = IconData(0xf456, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pennant for icon [solidFlagPennant] @Deprecated('Use "solidFlagPennant" instead.') @@ -39705,7 +39705,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-pennant?style=regular /// banner, flag, post, sign, sports, triangular flag, win - static const IconData flagPennant = IconDataRegular(0xf456); + static const IconData flagPennant = IconData(0xf456, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pennant for icon [flagPennant] @Deprecated('Use "flagPennant" instead.') @@ -39715,7 +39715,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-pennant?style=light /// banner, flag, post, sign, sports, triangular flag, win - static const IconData lightFlagPennant = IconDataLight(0xf456); + static const IconData lightFlagPennant = IconData(0xf456, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pennant for icon [lightFlagPennant] @Deprecated('Use "lightFlagPennant" instead.') @@ -39725,7 +39725,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-pennant?style=thin /// banner, flag, post, sign, sports, triangular flag, win - static const IconData thinFlagPennant = IconDataThin(0xf456); + static const IconData thinFlagPennant = IconData(0xf456, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pennant for icon [thinFlagPennant] @Deprecated('Use "thinFlagPennant" instead.') @@ -39735,7 +39735,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-swallowtail?style=solid /// country, notice, notification, notify, pole, report, symbol - static const IconData solidFlagSwallowtail = IconDataSolid(0xf74c); + static const IconData solidFlagSwallowtail = IconData(0xf74c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias flag-alt for icon [solidFlagSwallowtail] @Deprecated('Use "solidFlagSwallowtail" instead.') @@ -39745,7 +39745,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-swallowtail?style=regular /// country, notice, notification, notify, pole, report, symbol - static const IconData flagSwallowtail = IconDataRegular(0xf74c); + static const IconData flagSwallowtail = IconData(0xf74c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias flag-alt for icon [flagSwallowtail] @Deprecated('Use "flagSwallowtail" instead.') @@ -39755,7 +39755,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-swallowtail?style=light /// country, notice, notification, notify, pole, report, symbol - static const IconData lightFlagSwallowtail = IconDataLight(0xf74c); + static const IconData lightFlagSwallowtail = IconData(0xf74c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias flag-alt for icon [lightFlagSwallowtail] @Deprecated('Use "lightFlagSwallowtail" instead.') @@ -39765,7 +39765,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-swallowtail?style=thin /// country, notice, notification, notify, pole, report, symbol - static const IconData thinFlagSwallowtail = IconDataThin(0xf74c); + static const IconData thinFlagSwallowtail = IconData(0xf74c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias flag-alt for icon [thinFlagSwallowtail] @Deprecated('Use "thinFlagSwallowtail" instead.') @@ -39775,103 +39775,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flag-usa?style=solid /// betsy ross, country, fla, flag: United States, old glory, stars, stripes, symbol - static const IconData solidFlagUsa = IconDataSolid(0xf74d); + static const IconData solidFlagUsa = IconData(0xf74d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flag Usa icon /// /// https://fontawesome.com/icons/flag-usa?style=regular /// betsy ross, country, fla, flag: United States, old glory, stars, stripes, symbol - static const IconData flagUsa = IconDataRegular(0xf74d); + static const IconData flagUsa = IconData(0xf74d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flag Usa icon /// /// https://fontawesome.com/icons/flag-usa?style=light /// betsy ross, country, fla, flag: United States, old glory, stars, stripes, symbol - static const IconData lightFlagUsa = IconDataLight(0xf74d); + static const IconData lightFlagUsa = IconData(0xf74d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flag Usa icon /// /// https://fontawesome.com/icons/flag-usa?style=thin /// betsy ross, country, fla, flag: United States, old glory, stars, stripes, symbol - static const IconData thinFlagUsa = IconDataThin(0xf74d); + static const IconData thinFlagUsa = IconData(0xf74d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flashlight icon /// /// https://fontawesome.com/icons/flashlight?style=solid /// camping, electric, equipment, flashlight, hide and seek, lamp, light, tool, torch - static const IconData solidFlashlight = IconDataSolid(0xf8b8); + static const IconData solidFlashlight = IconData(0xf8b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flashlight icon /// /// https://fontawesome.com/icons/flashlight?style=regular /// camping, electric, equipment, flashlight, hide and seek, lamp, light, tool, torch - static const IconData flashlight = IconDataRegular(0xf8b8); + static const IconData flashlight = IconData(0xf8b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flashlight icon /// /// https://fontawesome.com/icons/flashlight?style=light /// camping, electric, equipment, flashlight, hide and seek, lamp, light, tool, torch - static const IconData lightFlashlight = IconDataLight(0xf8b8); + static const IconData lightFlashlight = IconData(0xf8b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flashlight icon /// /// https://fontawesome.com/icons/flashlight?style=thin /// camping, electric, equipment, flashlight, hide and seek, lamp, light, tool, torch - static const IconData thinFlashlight = IconDataThin(0xf8b8); + static const IconData thinFlashlight = IconData(0xf8b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flask icon /// /// https://fontawesome.com/icons/flask?style=solid /// beaker, chemicals, experiment, experimental, knowledge, labs, liquid, potion, science, vial - static const IconData solidFlask = IconDataSolid(0xf0c3); + static const IconData solidFlask = IconData(0xf0c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flask icon /// /// https://fontawesome.com/icons/flask?style=regular /// beaker, chemicals, experiment, experimental, knowledge, labs, liquid, potion, science, vial - static const IconData flask = IconDataRegular(0xf0c3); + static const IconData flask = IconData(0xf0c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flask icon /// /// https://fontawesome.com/icons/flask?style=light /// beaker, chemicals, experiment, experimental, knowledge, labs, liquid, potion, science, vial - static const IconData lightFlask = IconDataLight(0xf0c3); + static const IconData lightFlask = IconData(0xf0c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flask icon /// /// https://fontawesome.com/icons/flask?style=thin /// beaker, chemicals, experiment, experimental, knowledge, labs, liquid, potion, science, vial - static const IconData thinFlask = IconDataThin(0xf0c3); + static const IconData thinFlask = IconData(0xf0c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flask Gear icon /// /// https://fontawesome.com/icons/flask-gear?style=solid /// beaker, chemicals, experiment, experimental, gear, labs, liquid, science, settings, vial, potion - static const IconData solidFlaskGear = IconDataSolid(0xe5f1); + static const IconData solidFlaskGear = IconData(0xe5f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flask Gear icon /// /// https://fontawesome.com/icons/flask-gear?style=regular /// beaker, chemicals, experiment, experimental, gear, labs, liquid, science, settings, vial, potion - static const IconData flaskGear = IconDataRegular(0xe5f1); + static const IconData flaskGear = IconData(0xe5f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flask Gear icon /// /// https://fontawesome.com/icons/flask-gear?style=light /// beaker, chemicals, experiment, experimental, gear, labs, liquid, science, settings, vial, potion - static const IconData lightFlaskGear = IconDataLight(0xe5f1); + static const IconData lightFlaskGear = IconData(0xe5f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flask Gear icon /// /// https://fontawesome.com/icons/flask-gear?style=thin /// beaker, chemicals, experiment, experimental, gear, labs, liquid, science, settings, vial, potion - static const IconData thinFlaskGear = IconDataThin(0xe5f1); + static const IconData thinFlaskGear = IconData(0xe5f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flask Round Poison icon /// /// https://fontawesome.com/icons/flask-round-poison?style=solid /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, beverage, container, drink, halloween, health, holiday, potion, power - static const IconData solidFlaskRoundPoison = IconDataSolid(0xf6e0); + static const IconData solidFlaskRoundPoison = IconData(0xf6e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias flask-poison for icon [solidFlaskRoundPoison] @Deprecated('Use "solidFlaskRoundPoison" instead.') @@ -39881,7 +39881,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-poison?style=regular /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, beverage, container, drink, halloween, health, holiday, potion, power - static const IconData flaskRoundPoison = IconDataRegular(0xf6e0); + static const IconData flaskRoundPoison = IconData(0xf6e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias flask-poison for icon [flaskRoundPoison] @Deprecated('Use "flaskRoundPoison" instead.') @@ -39891,7 +39891,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-poison?style=light /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, beverage, container, drink, halloween, health, holiday, potion, power - static const IconData lightFlaskRoundPoison = IconDataLight(0xf6e0); + static const IconData lightFlaskRoundPoison = IconData(0xf6e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias flask-poison for icon [lightFlaskRoundPoison] @Deprecated('Use "lightFlaskRoundPoison" instead.') @@ -39901,7 +39901,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-poison?style=thin /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, beverage, container, drink, halloween, health, holiday, potion, power - static const IconData thinFlaskRoundPoison = IconDataThin(0xf6e0); + static const IconData thinFlaskRoundPoison = IconData(0xf6e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias flask-poison for icon [thinFlaskRoundPoison] @Deprecated('Use "thinFlaskRoundPoison" instead.') @@ -39911,7 +39911,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-potion?style=solid /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, knowledge, magic, mana, potion, science - static const IconData solidFlaskRoundPotion = IconDataSolid(0xf6e1); + static const IconData solidFlaskRoundPotion = IconData(0xf6e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias flask-potion for icon [solidFlaskRoundPotion] @Deprecated('Use "solidFlaskRoundPotion" instead.') @@ -39921,7 +39921,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-potion?style=regular /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, knowledge, magic, mana, potion, science - static const IconData flaskRoundPotion = IconDataRegular(0xf6e1); + static const IconData flaskRoundPotion = IconData(0xf6e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias flask-potion for icon [flaskRoundPotion] @Deprecated('Use "flaskRoundPotion" instead.') @@ -39931,7 +39931,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-potion?style=light /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, knowledge, magic, mana, potion, science - static const IconData lightFlaskRoundPotion = IconDataLight(0xf6e1); + static const IconData lightFlaskRoundPotion = IconData(0xf6e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias flask-potion for icon [lightFlaskRoundPotion] @Deprecated('Use "lightFlaskRoundPotion" instead.') @@ -39941,7 +39941,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-round-potion?style=thin /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, knowledge, magic, mana, potion, science - static const IconData thinFlaskRoundPotion = IconDataThin(0xf6e1); + static const IconData thinFlaskRoundPotion = IconData(0xf6e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias flask-potion for icon [thinFlaskRoundPotion] @Deprecated('Use "thinFlaskRoundPotion" instead.') @@ -39951,89 +39951,89 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/flask-vial?style=solid /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, ampule, chemistry, lab, laboratory, potion, test, test tube - static const IconData solidFlaskVial = IconDataSolid(0xe4f3); + static const IconData solidFlaskVial = IconData(0xe4f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flask Vial icon /// /// https://fontawesome.com/icons/flask-vial?style=regular /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, ampule, chemistry, lab, laboratory, potion, test, test tube - static const IconData flaskVial = IconDataRegular(0xe4f3); + static const IconData flaskVial = IconData(0xe4f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flask Vial icon /// /// https://fontawesome.com/icons/flask-vial?style=light /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, ampule, chemistry, lab, laboratory, potion, test, test tube - static const IconData lightFlaskVial = IconDataLight(0xe4f3); + static const IconData lightFlaskVial = IconData(0xe4f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flask Vial icon /// /// https://fontawesome.com/icons/flask-vial?style=thin /// beaker, chemicals, experiment, experimental, labs, liquid, science, vial, ampule, chemistry, lab, laboratory, potion, test, test tube - static const IconData thinFlaskVial = IconDataThin(0xe4f3); + static const IconData thinFlaskVial = IconData(0xe4f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flatbread icon /// /// https://fontawesome.com/icons/flatbread?style=solid /// arepa, flatbread, lavash, naan, pita - static const IconData solidFlatbread = IconDataSolid(0xe40b); + static const IconData solidFlatbread = IconData(0xe40b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flatbread icon /// /// https://fontawesome.com/icons/flatbread?style=regular /// arepa, flatbread, lavash, naan, pita - static const IconData flatbread = IconDataRegular(0xe40b); + static const IconData flatbread = IconData(0xe40b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flatbread icon /// /// https://fontawesome.com/icons/flatbread?style=light /// arepa, flatbread, lavash, naan, pita - static const IconData lightFlatbread = IconDataLight(0xe40b); + static const IconData lightFlatbread = IconData(0xe40b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flatbread icon /// /// https://fontawesome.com/icons/flatbread?style=thin /// arepa, flatbread, lavash, naan, pita - static const IconData thinFlatbread = IconDataThin(0xe40b); + static const IconData thinFlatbread = IconData(0xe40b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flatbread Stuffed icon /// /// https://fontawesome.com/icons/flatbread-stuffed?style=solid /// chickpea, falafel, garbanzo, gyro, kebab, pita, sandwich - static const IconData solidFlatbreadStuffed = IconDataSolid(0xe40c); + static const IconData solidFlatbreadStuffed = IconData(0xe40c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flatbread Stuffed icon /// /// https://fontawesome.com/icons/flatbread-stuffed?style=regular /// chickpea, falafel, garbanzo, gyro, kebab, pita, sandwich - static const IconData flatbreadStuffed = IconDataRegular(0xe40c); + static const IconData flatbreadStuffed = IconData(0xe40c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flatbread Stuffed icon /// /// https://fontawesome.com/icons/flatbread-stuffed?style=light /// chickpea, falafel, garbanzo, gyro, kebab, pita, sandwich - static const IconData lightFlatbreadStuffed = IconDataLight(0xe40c); + static const IconData lightFlatbreadStuffed = IconData(0xe40c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flatbread Stuffed icon /// /// https://fontawesome.com/icons/flatbread-stuffed?style=thin /// chickpea, falafel, garbanzo, gyro, kebab, pita, sandwich - static const IconData thinFlatbreadStuffed = IconDataThin(0xe40c); + static const IconData thinFlatbreadStuffed = IconData(0xe40c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Flickr icon /// /// https://fontawesome.com/icons/flickr?style=brands - static const IconData flickr = IconDataBrands(0xf16e); + static const IconData flickr = IconData(0xf16e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Flipboard icon /// /// https://fontawesome.com/icons/flipboard?style=brands - static const IconData flipboard = IconDataBrands(0xf44d); + static const IconData flipboard = IconData(0xf44d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Floppy Disk icon /// /// https://fontawesome.com/icons/floppy-disk?style=solid /// Black Hard Shell Floppy Disk, computer, disk, download, floppy, floppy disk, floppy-o - static const IconData solidFloppyDisk = IconDataSolid(0xf0c7); + static const IconData solidFloppyDisk = IconData(0xf0c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias save for icon [solidFloppyDisk] @Deprecated('Use "solidFloppyDisk" instead.') @@ -40043,7 +40043,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk?style=regular /// Black Hard Shell Floppy Disk, computer, disk, download, floppy, floppy disk, floppy-o - static const IconData floppyDisk = IconDataRegular(0xf0c7); + static const IconData floppyDisk = IconData(0xf0c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias save for icon [floppyDisk] @Deprecated('Use "floppyDisk" instead.') @@ -40053,7 +40053,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk?style=light /// Black Hard Shell Floppy Disk, computer, disk, download, floppy, floppy disk, floppy-o - static const IconData lightFloppyDisk = IconDataLight(0xf0c7); + static const IconData lightFloppyDisk = IconData(0xf0c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias save for icon [lightFloppyDisk] @Deprecated('Use "lightFloppyDisk" instead.') @@ -40063,7 +40063,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk?style=thin /// Black Hard Shell Floppy Disk, computer, disk, download, floppy, floppy disk, floppy-o - static const IconData thinFloppyDisk = IconDataThin(0xf0c7); + static const IconData thinFloppyDisk = IconData(0xf0c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias save for icon [thinFloppyDisk] @Deprecated('Use "thinFloppyDisk" instead.') @@ -40073,7 +40073,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-arrow-right?style=solid /// disk, download, floppy, floppy-o - static const IconData solidFloppyDiskCircleArrowRight = IconDataSolid(0xe180); + static const IconData solidFloppyDiskCircleArrowRight = IconData(0xe180, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias save-circle-arrow-right for icon [solidFloppyDiskCircleArrowRight] @Deprecated('Use "solidFloppyDiskCircleArrowRight" instead.') @@ -40084,7 +40084,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-arrow-right?style=regular /// disk, download, floppy, floppy-o - static const IconData floppyDiskCircleArrowRight = IconDataRegular(0xe180); + static const IconData floppyDiskCircleArrowRight = IconData(0xe180, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias save-circle-arrow-right for icon [floppyDiskCircleArrowRight] @Deprecated('Use "floppyDiskCircleArrowRight" instead.') @@ -40094,7 +40094,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-arrow-right?style=light /// disk, download, floppy, floppy-o - static const IconData lightFloppyDiskCircleArrowRight = IconDataLight(0xe180); + static const IconData lightFloppyDiskCircleArrowRight = IconData(0xe180, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias save-circle-arrow-right for icon [lightFloppyDiskCircleArrowRight] @Deprecated('Use "lightFloppyDiskCircleArrowRight" instead.') @@ -40105,7 +40105,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-arrow-right?style=thin /// disk, download, floppy, floppy-o - static const IconData thinFloppyDiskCircleArrowRight = IconDataThin(0xe180); + static const IconData thinFloppyDiskCircleArrowRight = IconData(0xe180, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias save-circle-arrow-right for icon [thinFloppyDiskCircleArrowRight] @Deprecated('Use "thinFloppyDiskCircleArrowRight" instead.') @@ -40116,7 +40116,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-xmark?style=solid /// disk, download, floppy, floppy-o, uncheck - static const IconData solidFloppyDiskCircleXmark = IconDataSolid(0xe181); + static const IconData solidFloppyDiskCircleXmark = IconData(0xe181, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias floppy-disk-times for icon [solidFloppyDiskCircleXmark] @Deprecated('Use "solidFloppyDiskCircleXmark" instead.') @@ -40134,7 +40134,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-xmark?style=regular /// disk, download, floppy, floppy-o, uncheck - static const IconData floppyDiskCircleXmark = IconDataRegular(0xe181); + static const IconData floppyDiskCircleXmark = IconData(0xe181, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias floppy-disk-times for icon [floppyDiskCircleXmark] @Deprecated('Use "floppyDiskCircleXmark" instead.') @@ -40152,7 +40152,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-xmark?style=light /// disk, download, floppy, floppy-o, uncheck - static const IconData lightFloppyDiskCircleXmark = IconDataLight(0xe181); + static const IconData lightFloppyDiskCircleXmark = IconData(0xe181, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias floppy-disk-times for icon [lightFloppyDiskCircleXmark] @Deprecated('Use "lightFloppyDiskCircleXmark" instead.') @@ -40170,7 +40170,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-circle-xmark?style=thin /// disk, download, floppy, floppy-o, uncheck - static const IconData thinFloppyDiskCircleXmark = IconDataThin(0xe181); + static const IconData thinFloppyDiskCircleXmark = IconData(0xe181, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias floppy-disk-times for icon [thinFloppyDiskCircleXmark] @Deprecated('Use "thinFloppyDiskCircleXmark" instead.') @@ -40188,228 +40188,228 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/floppy-disk-pen?style=solid /// edit, modify, save, save as - static const IconData solidFloppyDiskPen = IconDataSolid(0xe182); + static const IconData solidFloppyDiskPen = IconData(0xe182, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Floppy Disk Pen icon /// /// https://fontawesome.com/icons/floppy-disk-pen?style=regular /// edit, modify, save, save as - static const IconData floppyDiskPen = IconDataRegular(0xe182); + static const IconData floppyDiskPen = IconData(0xe182, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Floppy Disk Pen icon /// /// https://fontawesome.com/icons/floppy-disk-pen?style=light /// edit, modify, save, save as - static const IconData lightFloppyDiskPen = IconDataLight(0xe182); + static const IconData lightFloppyDiskPen = IconData(0xe182, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Floppy Disk Pen icon /// /// https://fontawesome.com/icons/floppy-disk-pen?style=thin /// edit, modify, save, save as - static const IconData thinFloppyDiskPen = IconDataThin(0xe182); + static const IconData thinFloppyDiskPen = IconData(0xe182, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Floppy Disks icon /// /// https://fontawesome.com/icons/floppy-disks?style=solid /// save, save as - static const IconData solidFloppyDisks = IconDataSolid(0xe183); + static const IconData solidFloppyDisks = IconData(0xe183, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Floppy Disks icon /// /// https://fontawesome.com/icons/floppy-disks?style=regular /// save, save as - static const IconData floppyDisks = IconDataRegular(0xe183); + static const IconData floppyDisks = IconData(0xe183, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Floppy Disks icon /// /// https://fontawesome.com/icons/floppy-disks?style=light /// save, save as - static const IconData lightFloppyDisks = IconDataLight(0xe183); + static const IconData lightFloppyDisks = IconData(0xe183, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Floppy Disks icon /// /// https://fontawesome.com/icons/floppy-disks?style=thin /// save, save as - static const IconData thinFloppyDisks = IconDataThin(0xe183); + static const IconData thinFloppyDisks = IconData(0xe183, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Florin Sign icon /// /// https://fontawesome.com/icons/florin-sign?style=solid /// currency - static const IconData solidFlorinSign = IconDataSolid(0xe184); + static const IconData solidFlorinSign = IconData(0xe184, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Florin Sign icon /// /// https://fontawesome.com/icons/florin-sign?style=regular /// currency - static const IconData florinSign = IconDataRegular(0xe184); + static const IconData florinSign = IconData(0xe184, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Florin Sign icon /// /// https://fontawesome.com/icons/florin-sign?style=light /// currency - static const IconData lightFlorinSign = IconDataLight(0xe184); + static const IconData lightFlorinSign = IconData(0xe184, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Florin Sign icon /// /// https://fontawesome.com/icons/florin-sign?style=thin /// currency - static const IconData thinFlorinSign = IconDataThin(0xe184); + static const IconData thinFlorinSign = IconData(0xe184, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flower icon /// /// https://fontawesome.com/icons/flower?style=solid /// Black Florette, blossom, daffodil, flower, nature, spring, summer - static const IconData solidFlower = IconDataSolid(0xf7ff); + static const IconData solidFlower = IconData(0xf7ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flower icon /// /// https://fontawesome.com/icons/flower?style=regular /// Black Florette, blossom, daffodil, flower, nature, spring, summer - static const IconData flower = IconDataRegular(0xf7ff); + static const IconData flower = IconData(0xf7ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flower icon /// /// https://fontawesome.com/icons/flower?style=light /// Black Florette, blossom, daffodil, flower, nature, spring, summer - static const IconData lightFlower = IconDataLight(0xf7ff); + static const IconData lightFlower = IconData(0xf7ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flower icon /// /// https://fontawesome.com/icons/flower?style=thin /// Black Florette, blossom, daffodil, flower, nature, spring, summer - static const IconData thinFlower = IconDataThin(0xf7ff); + static const IconData thinFlower = IconData(0xf7ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flower Daffodil icon /// /// https://fontawesome.com/icons/flower-daffodil?style=solid /// Flower, nature, spring, summer - static const IconData solidFlowerDaffodil = IconDataSolid(0xf800); + static const IconData solidFlowerDaffodil = IconData(0xf800, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flower Daffodil icon /// /// https://fontawesome.com/icons/flower-daffodil?style=regular /// Flower, nature, spring, summer - static const IconData flowerDaffodil = IconDataRegular(0xf800); + static const IconData flowerDaffodil = IconData(0xf800, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flower Daffodil icon /// /// https://fontawesome.com/icons/flower-daffodil?style=light /// Flower, nature, spring, summer - static const IconData lightFlowerDaffodil = IconDataLight(0xf800); + static const IconData lightFlowerDaffodil = IconData(0xf800, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flower Daffodil icon /// /// https://fontawesome.com/icons/flower-daffodil?style=thin /// Flower, nature, spring, summer - static const IconData thinFlowerDaffodil = IconDataThin(0xf800); + static const IconData thinFlowerDaffodil = IconData(0xf800, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flower Tulip icon /// /// https://fontawesome.com/icons/flower-tulip?style=solid /// flower, nature, spring, summer, tulip - static const IconData solidFlowerTulip = IconDataSolid(0xf801); + static const IconData solidFlowerTulip = IconData(0xf801, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flower Tulip icon /// /// https://fontawesome.com/icons/flower-tulip?style=regular /// flower, nature, spring, summer, tulip - static const IconData flowerTulip = IconDataRegular(0xf801); + static const IconData flowerTulip = IconData(0xf801, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flower Tulip icon /// /// https://fontawesome.com/icons/flower-tulip?style=light /// flower, nature, spring, summer, tulip - static const IconData lightFlowerTulip = IconDataLight(0xf801); + static const IconData lightFlowerTulip = IconData(0xf801, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flower Tulip icon /// /// https://fontawesome.com/icons/flower-tulip?style=thin /// flower, nature, spring, summer, tulip - static const IconData thinFlowerTulip = IconDataThin(0xf801); + static const IconData thinFlowerTulip = IconData(0xf801, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flute icon /// /// https://fontawesome.com/icons/flute?style=solid /// aerophone, instrument, music, pied piper, woodwind - static const IconData solidFlute = IconDataSolid(0xf8b9); + static const IconData solidFlute = IconData(0xf8b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flute icon /// /// https://fontawesome.com/icons/flute?style=regular /// aerophone, instrument, music, pied piper, woodwind - static const IconData flute = IconDataRegular(0xf8b9); + static const IconData flute = IconData(0xf8b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flute icon /// /// https://fontawesome.com/icons/flute?style=light /// aerophone, instrument, music, pied piper, woodwind - static const IconData lightFlute = IconDataLight(0xf8b9); + static const IconData lightFlute = IconData(0xf8b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flute icon /// /// https://fontawesome.com/icons/flute?style=thin /// aerophone, instrument, music, pied piper, woodwind - static const IconData thinFlute = IconDataThin(0xf8b9); + static const IconData thinFlute = IconData(0xf8b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Flux Capacitor icon /// /// https://fontawesome.com/icons/flux-capacitor?style=solid /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time machine, time travel - static const IconData solidFluxCapacitor = IconDataSolid(0xf8ba); + static const IconData solidFluxCapacitor = IconData(0xf8ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flux Capacitor icon /// /// https://fontawesome.com/icons/flux-capacitor?style=regular /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time machine, time travel - static const IconData fluxCapacitor = IconDataRegular(0xf8ba); + static const IconData fluxCapacitor = IconData(0xf8ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flux Capacitor icon /// /// https://fontawesome.com/icons/flux-capacitor?style=light /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time machine, time travel - static const IconData lightFluxCapacitor = IconDataLight(0xf8ba); + static const IconData lightFluxCapacitor = IconData(0xf8ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flux Capacitor icon /// /// https://fontawesome.com/icons/flux-capacitor?style=thin /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time machine, time travel - static const IconData thinFluxCapacitor = IconDataThin(0xf8ba); + static const IconData thinFluxCapacitor = IconData(0xf8ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Fly icon /// /// https://fontawesome.com/icons/fly?style=brands - static const IconData fly = IconDataBrands(0xf417); + static const IconData fly = IconData(0xf417, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Flying Disc icon /// /// https://fontawesome.com/icons/flying-disc?style=solid /// flying disc, frisbee, ultimate - static const IconData solidFlyingDisc = IconDataSolid(0xe3a9); + static const IconData solidFlyingDisc = IconData(0xe3a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Flying Disc icon /// /// https://fontawesome.com/icons/flying-disc?style=regular /// flying disc, frisbee, ultimate - static const IconData flyingDisc = IconDataRegular(0xe3a9); + static const IconData flyingDisc = IconData(0xe3a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Flying Disc icon /// /// https://fontawesome.com/icons/flying-disc?style=light /// flying disc, frisbee, ultimate - static const IconData lightFlyingDisc = IconDataLight(0xe3a9); + static const IconData lightFlyingDisc = IconData(0xe3a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Flying Disc icon /// /// https://fontawesome.com/icons/flying-disc?style=thin /// flying disc, frisbee, ultimate - static const IconData thinFlyingDisc = IconDataThin(0xe3a9); + static const IconData thinFlyingDisc = IconData(0xe3a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder icon /// /// https://fontawesome.com/icons/folder?style=solid /// Black Folder, archive, directory, document, file, file folder, folder - static const IconData solidFolder = IconDataSolid(0xf07b); + static const IconData solidFolder = IconData(0xf07b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-blank for icon [solidFolder] @Deprecated('Use "solidFolder" instead.') @@ -40419,7 +40419,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder?style=regular /// Black Folder, archive, directory, document, file, file folder, folder - static const IconData folder = IconDataRegular(0xf07b); + static const IconData folder = IconData(0xf07b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-blank for icon [folder] @Deprecated('Use "folder" instead.') @@ -40429,7 +40429,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder?style=light /// Black Folder, archive, directory, document, file, file folder, folder - static const IconData lightFolder = IconDataLight(0xf07b); + static const IconData lightFolder = IconData(0xf07b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-blank for icon [lightFolder] @Deprecated('Use "lightFolder" instead.') @@ -40439,7 +40439,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder?style=thin /// Black Folder, archive, directory, document, file, file folder, folder - static const IconData thinFolder = IconDataThin(0xf07b); + static const IconData thinFolder = IconData(0xf07b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-blank for icon [thinFolder] @Deprecated('Use "thinFolder" instead.') @@ -40449,7 +40449,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-down?style=solid /// archive, directory, document, download, file, insert, save - static const IconData solidFolderArrowDown = IconDataSolid(0xe053); + static const IconData solidFolderArrowDown = IconData(0xe053, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-download for icon [solidFolderArrowDown] @Deprecated('Use "solidFolderArrowDown" instead.') @@ -40459,7 +40459,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-down?style=regular /// archive, directory, document, download, file, insert, save - static const IconData folderArrowDown = IconDataRegular(0xe053); + static const IconData folderArrowDown = IconData(0xe053, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-download for icon [folderArrowDown] @Deprecated('Use "folderArrowDown" instead.') @@ -40469,7 +40469,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-down?style=light /// archive, directory, document, download, file, insert, save - static const IconData lightFolderArrowDown = IconDataLight(0xe053); + static const IconData lightFolderArrowDown = IconData(0xe053, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-download for icon [lightFolderArrowDown] @Deprecated('Use "lightFolderArrowDown" instead.') @@ -40479,7 +40479,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-down?style=thin /// archive, directory, document, download, file, insert, save - static const IconData thinFolderArrowDown = IconDataThin(0xe053); + static const IconData thinFolderArrowDown = IconData(0xe053, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-download for icon [thinFolderArrowDown] @Deprecated('Use "thinFolderArrowDown" instead.') @@ -40489,7 +40489,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-up?style=solid /// archive, directory, document, file, save, upgrade, upload - static const IconData solidFolderArrowUp = IconDataSolid(0xe054); + static const IconData solidFolderArrowUp = IconData(0xe054, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-upload for icon [solidFolderArrowUp] @Deprecated('Use "solidFolderArrowUp" instead.') @@ -40499,7 +40499,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-up?style=regular /// archive, directory, document, file, save, upgrade, upload - static const IconData folderArrowUp = IconDataRegular(0xe054); + static const IconData folderArrowUp = IconData(0xe054, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-upload for icon [folderArrowUp] @Deprecated('Use "folderArrowUp" instead.') @@ -40509,7 +40509,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-up?style=light /// archive, directory, document, file, save, upgrade, upload - static const IconData lightFolderArrowUp = IconDataLight(0xe054); + static const IconData lightFolderArrowUp = IconData(0xe054, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-upload for icon [lightFolderArrowUp] @Deprecated('Use "lightFolderArrowUp" instead.') @@ -40519,7 +40519,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-arrow-up?style=thin /// archive, directory, document, file, save, upgrade, upload - static const IconData thinFolderArrowUp = IconDataThin(0xe054); + static const IconData thinFolderArrowUp = IconData(0xe054, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-upload for icon [thinFolderArrowUp] @Deprecated('Use "thinFolderArrowUp" instead.') @@ -40529,79 +40529,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-bookmark?style=solid /// favorite, file, remember - static const IconData solidFolderBookmark = IconDataSolid(0xe186); + static const IconData solidFolderBookmark = IconData(0xe186, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Bookmark icon /// /// https://fontawesome.com/icons/folder-bookmark?style=regular /// favorite, file, remember - static const IconData folderBookmark = IconDataRegular(0xe186); + static const IconData folderBookmark = IconData(0xe186, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Bookmark icon /// /// https://fontawesome.com/icons/folder-bookmark?style=light /// favorite, file, remember - static const IconData lightFolderBookmark = IconDataLight(0xe186); + static const IconData lightFolderBookmark = IconData(0xe186, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Bookmark icon /// /// https://fontawesome.com/icons/folder-bookmark?style=thin /// favorite, file, remember - static const IconData thinFolderBookmark = IconDataThin(0xe186); + static const IconData thinFolderBookmark = IconData(0xe186, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Check icon /// /// https://fontawesome.com/icons/folder-check?style=solid /// archive, directory, document, file, file folder, folder, Black Folder - static const IconData solidFolderCheck = IconDataSolid(0xe64e); + static const IconData solidFolderCheck = IconData(0xe64e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Check icon /// /// https://fontawesome.com/icons/folder-check?style=regular /// archive, directory, document, file, file folder, folder, Black Folder - static const IconData folderCheck = IconDataRegular(0xe64e); + static const IconData folderCheck = IconData(0xe64e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Check icon /// /// https://fontawesome.com/icons/folder-check?style=light /// archive, directory, document, file, file folder, folder, Black Folder - static const IconData lightFolderCheck = IconDataLight(0xe64e); + static const IconData lightFolderCheck = IconData(0xe64e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Check icon /// /// https://fontawesome.com/icons/folder-check?style=thin /// archive, directory, document, file, file folder, folder, Black Folder - static const IconData thinFolderCheck = IconDataThin(0xe64e); + static const IconData thinFolderCheck = IconData(0xe64e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Closed icon /// /// https://fontawesome.com/icons/folder-closed?style=solid /// file - static const IconData solidFolderClosed = IconDataSolid(0xe185); + static const IconData solidFolderClosed = IconData(0xe185, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Closed icon /// /// https://fontawesome.com/icons/folder-closed?style=regular /// file - static const IconData folderClosed = IconDataRegular(0xe185); + static const IconData folderClosed = IconData(0xe185, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Closed icon /// /// https://fontawesome.com/icons/folder-closed?style=light /// file - static const IconData lightFolderClosed = IconDataLight(0xe185); + static const IconData lightFolderClosed = IconData(0xe185, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Closed icon /// /// https://fontawesome.com/icons/folder-closed?style=thin /// file - static const IconData thinFolderClosed = IconDataThin(0xe185); + static const IconData thinFolderClosed = IconData(0xe185, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Gear icon /// /// https://fontawesome.com/icons/folder-gear?style=solid /// admin, cog, configuration, file, modify, preferences, settings - static const IconData solidFolderGear = IconDataSolid(0xe187); + static const IconData solidFolderGear = IconData(0xe187, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-cog for icon [solidFolderGear] @Deprecated('Use "solidFolderGear" instead.') @@ -40611,7 +40611,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-gear?style=regular /// admin, cog, configuration, file, modify, preferences, settings - static const IconData folderGear = IconDataRegular(0xe187); + static const IconData folderGear = IconData(0xe187, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-cog for icon [folderGear] @Deprecated('Use "folderGear" instead.') @@ -40621,7 +40621,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-gear?style=light /// admin, cog, configuration, file, modify, preferences, settings - static const IconData lightFolderGear = IconDataLight(0xe187); + static const IconData lightFolderGear = IconData(0xe187, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-cog for icon [lightFolderGear] @Deprecated('Use "lightFolderGear" instead.') @@ -40631,7 +40631,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-gear?style=thin /// admin, cog, configuration, file, modify, preferences, settings - static const IconData thinFolderGear = IconDataThin(0xe187); + static const IconData thinFolderGear = IconData(0xe187, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-cog for icon [thinFolderGear] @Deprecated('Use "thinFolderGear" instead.') @@ -40641,79 +40641,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-grid?style=solid /// contents, file - static const IconData solidFolderGrid = IconDataSolid(0xe188); + static const IconData solidFolderGrid = IconData(0xe188, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Grid icon /// /// https://fontawesome.com/icons/folder-grid?style=regular /// contents, file - static const IconData folderGrid = IconDataRegular(0xe188); + static const IconData folderGrid = IconData(0xe188, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Grid icon /// /// https://fontawesome.com/icons/folder-grid?style=light /// contents, file - static const IconData lightFolderGrid = IconDataLight(0xe188); + static const IconData lightFolderGrid = IconData(0xe188, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Grid icon /// /// https://fontawesome.com/icons/folder-grid?style=thin /// contents, file - static const IconData thinFolderGrid = IconDataThin(0xe188); + static const IconData thinFolderGrid = IconData(0xe188, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Heart icon /// /// https://fontawesome.com/icons/folder-heart?style=solid /// favorite, file, wishlist - static const IconData solidFolderHeart = IconDataSolid(0xe189); + static const IconData solidFolderHeart = IconData(0xe189, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Heart icon /// /// https://fontawesome.com/icons/folder-heart?style=regular /// favorite, file, wishlist - static const IconData folderHeart = IconDataRegular(0xe189); + static const IconData folderHeart = IconData(0xe189, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Heart icon /// /// https://fontawesome.com/icons/folder-heart?style=light /// favorite, file, wishlist - static const IconData lightFolderHeart = IconDataLight(0xe189); + static const IconData lightFolderHeart = IconData(0xe189, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Heart icon /// /// https://fontawesome.com/icons/folder-heart?style=thin /// favorite, file, wishlist - static const IconData thinFolderHeart = IconDataThin(0xe189); + static const IconData thinFolderHeart = IconData(0xe189, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Image icon /// /// https://fontawesome.com/icons/folder-image?style=solid /// file, image, img, photos - static const IconData solidFolderImage = IconDataSolid(0xe18a); + static const IconData solidFolderImage = IconData(0xe18a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Image icon /// /// https://fontawesome.com/icons/folder-image?style=regular /// file, image, img, photos - static const IconData folderImage = IconDataRegular(0xe18a); + static const IconData folderImage = IconData(0xe18a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Image icon /// /// https://fontawesome.com/icons/folder-image?style=light /// file, image, img, photos - static const IconData lightFolderImage = IconDataLight(0xe18a); + static const IconData lightFolderImage = IconData(0xe18a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Image icon /// /// https://fontawesome.com/icons/folder-image?style=thin /// file, image, img, photos - static const IconData thinFolderImage = IconDataThin(0xe18a); + static const IconData thinFolderImage = IconData(0xe18a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Magnifying Glass icon /// /// https://fontawesome.com/icons/folder-magnifying-glass?style=solid /// file, magnifier, search - static const IconData solidFolderMagnifyingGlass = IconDataSolid(0xe18b); + static const IconData solidFolderMagnifyingGlass = IconData(0xe18b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-search for icon [solidFolderMagnifyingGlass] @Deprecated('Use "solidFolderMagnifyingGlass" instead.') @@ -40723,7 +40723,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-magnifying-glass?style=regular /// file, magnifier, search - static const IconData folderMagnifyingGlass = IconDataRegular(0xe18b); + static const IconData folderMagnifyingGlass = IconData(0xe18b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-search for icon [folderMagnifyingGlass] @Deprecated('Use "folderMagnifyingGlass" instead.') @@ -40733,7 +40733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-magnifying-glass?style=light /// file, magnifier, search - static const IconData lightFolderMagnifyingGlass = IconDataLight(0xe18b); + static const IconData lightFolderMagnifyingGlass = IconData(0xe18b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-search for icon [lightFolderMagnifyingGlass] @Deprecated('Use "lightFolderMagnifyingGlass" instead.') @@ -40743,7 +40743,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-magnifying-glass?style=thin /// file, magnifier, search - static const IconData thinFolderMagnifyingGlass = IconDataThin(0xe18b); + static const IconData thinFolderMagnifyingGlass = IconData(0xe18b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-search for icon [thinFolderMagnifyingGlass] @Deprecated('Use "thinFolderMagnifyingGlass" instead.') @@ -40753,175 +40753,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-medical?style=solid /// health, patient, record - static const IconData solidFolderMedical = IconDataSolid(0xe18c); + static const IconData solidFolderMedical = IconData(0xe18c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Medical icon /// /// https://fontawesome.com/icons/folder-medical?style=regular /// health, patient, record - static const IconData folderMedical = IconDataRegular(0xe18c); + static const IconData folderMedical = IconData(0xe18c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Medical icon /// /// https://fontawesome.com/icons/folder-medical?style=light /// health, patient, record - static const IconData lightFolderMedical = IconDataLight(0xe18c); + static const IconData lightFolderMedical = IconData(0xe18c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Medical icon /// /// https://fontawesome.com/icons/folder-medical?style=thin /// health, patient, record - static const IconData thinFolderMedical = IconDataThin(0xe18c); + static const IconData thinFolderMedical = IconData(0xe18c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Minus icon /// /// https://fontawesome.com/icons/folder-minus?style=solid /// archive, delete, directory, document, file, negative, remove - static const IconData solidFolderMinus = IconDataSolid(0xf65d); + static const IconData solidFolderMinus = IconData(0xf65d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Minus icon /// /// https://fontawesome.com/icons/folder-minus?style=regular /// archive, delete, directory, document, file, negative, remove - static const IconData folderMinus = IconDataRegular(0xf65d); + static const IconData folderMinus = IconData(0xf65d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Minus icon /// /// https://fontawesome.com/icons/folder-minus?style=light /// archive, delete, directory, document, file, negative, remove - static const IconData lightFolderMinus = IconDataLight(0xf65d); + static const IconData lightFolderMinus = IconData(0xf65d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Minus icon /// /// https://fontawesome.com/icons/folder-minus?style=thin /// archive, delete, directory, document, file, negative, remove - static const IconData thinFolderMinus = IconDataThin(0xf65d); + static const IconData thinFolderMinus = IconData(0xf65d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Music icon /// /// https://fontawesome.com/icons/folder-music?style=solid /// audio, mp3 - static const IconData solidFolderMusic = IconDataSolid(0xe18d); + static const IconData solidFolderMusic = IconData(0xe18d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Music icon /// /// https://fontawesome.com/icons/folder-music?style=regular /// audio, mp3 - static const IconData folderMusic = IconDataRegular(0xe18d); + static const IconData folderMusic = IconData(0xe18d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Music icon /// /// https://fontawesome.com/icons/folder-music?style=light /// audio, mp3 - static const IconData lightFolderMusic = IconDataLight(0xe18d); + static const IconData lightFolderMusic = IconData(0xe18d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Music icon /// /// https://fontawesome.com/icons/folder-music?style=thin /// audio, mp3 - static const IconData thinFolderMusic = IconDataThin(0xe18d); + static const IconData thinFolderMusic = IconData(0xe18d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Open icon /// /// https://fontawesome.com/icons/folder-open?style=solid /// Open Folder, archive, directory, document, empty, file, folder, new, open, open file folder - static const IconData solidFolderOpen = IconDataSolid(0xf07c); + static const IconData solidFolderOpen = IconData(0xf07c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Open icon /// /// https://fontawesome.com/icons/folder-open?style=regular /// Open Folder, archive, directory, document, empty, file, folder, new, open, open file folder - static const IconData folderOpen = IconDataRegular(0xf07c); + static const IconData folderOpen = IconData(0xf07c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Open icon /// /// https://fontawesome.com/icons/folder-open?style=light /// Open Folder, archive, directory, document, empty, file, folder, new, open, open file folder - static const IconData lightFolderOpen = IconDataLight(0xf07c); + static const IconData lightFolderOpen = IconData(0xf07c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Open icon /// /// https://fontawesome.com/icons/folder-open?style=thin /// Open Folder, archive, directory, document, empty, file, folder, new, open, open file folder - static const IconData thinFolderOpen = IconDataThin(0xf07c); + static const IconData thinFolderOpen = IconData(0xf07c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Plus icon /// /// https://fontawesome.com/icons/folder-plus?style=solid /// add, archive, create, directory, document, file, new, positive - static const IconData solidFolderPlus = IconDataSolid(0xf65e); + static const IconData solidFolderPlus = IconData(0xf65e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Plus icon /// /// https://fontawesome.com/icons/folder-plus?style=regular /// add, archive, create, directory, document, file, new, positive - static const IconData folderPlus = IconDataRegular(0xf65e); + static const IconData folderPlus = IconData(0xf65e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Plus icon /// /// https://fontawesome.com/icons/folder-plus?style=light /// add, archive, create, directory, document, file, new, positive - static const IconData lightFolderPlus = IconDataLight(0xf65e); + static const IconData lightFolderPlus = IconData(0xf65e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Plus icon /// /// https://fontawesome.com/icons/folder-plus?style=thin /// add, archive, create, directory, document, file, new, positive - static const IconData thinFolderPlus = IconDataThin(0xf65e); + static const IconData thinFolderPlus = IconData(0xf65e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Tree icon /// /// https://fontawesome.com/icons/folder-tree?style=solid /// archive, directory, document, file, search, structure - static const IconData solidFolderTree = IconDataSolid(0xf802); + static const IconData solidFolderTree = IconData(0xf802, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder Tree icon /// /// https://fontawesome.com/icons/folder-tree?style=regular /// archive, directory, document, file, search, structure - static const IconData folderTree = IconDataRegular(0xf802); + static const IconData folderTree = IconData(0xf802, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder Tree icon /// /// https://fontawesome.com/icons/folder-tree?style=light /// archive, directory, document, file, search, structure - static const IconData lightFolderTree = IconDataLight(0xf802); + static const IconData lightFolderTree = IconData(0xf802, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder Tree icon /// /// https://fontawesome.com/icons/folder-tree?style=thin /// archive, directory, document, file, search, structure - static const IconData thinFolderTree = IconDataThin(0xf802); + static const IconData thinFolderTree = IconData(0xf802, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder User icon /// /// https://fontawesome.com/icons/folder-user?style=solid /// contacts, cv, employee, file, resume, uer - static const IconData solidFolderUser = IconDataSolid(0xe18e); + static const IconData solidFolderUser = IconData(0xe18e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folder User icon /// /// https://fontawesome.com/icons/folder-user?style=regular /// contacts, cv, employee, file, resume, uer - static const IconData folderUser = IconDataRegular(0xe18e); + static const IconData folderUser = IconData(0xe18e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folder User icon /// /// https://fontawesome.com/icons/folder-user?style=light /// contacts, cv, employee, file, resume, uer - static const IconData lightFolderUser = IconDataLight(0xe18e); + static const IconData lightFolderUser = IconData(0xe18e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folder User icon /// /// https://fontawesome.com/icons/folder-user?style=thin /// contacts, cv, employee, file, resume, uer - static const IconData thinFolderUser = IconDataThin(0xe18e); + static const IconData thinFolderUser = IconData(0xe18e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Folder Xmark icon /// /// https://fontawesome.com/icons/folder-xmark?style=solid /// archive, delete, directory, document, file, remove, uncheck, x - static const IconData solidFolderXmark = IconDataSolid(0xf65f); + static const IconData solidFolderXmark = IconData(0xf65f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias folder-times for icon [solidFolderXmark] @Deprecated('Use "solidFolderXmark" instead.') @@ -40931,7 +40931,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-xmark?style=regular /// archive, delete, directory, document, file, remove, uncheck, x - static const IconData folderXmark = IconDataRegular(0xf65f); + static const IconData folderXmark = IconData(0xf65f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias folder-times for icon [folderXmark] @Deprecated('Use "folderXmark" instead.') @@ -40941,7 +40941,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-xmark?style=light /// archive, delete, directory, document, file, remove, uncheck, x - static const IconData lightFolderXmark = IconDataLight(0xf65f); + static const IconData lightFolderXmark = IconData(0xf65f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias folder-times for icon [lightFolderXmark] @Deprecated('Use "lightFolderXmark" instead.') @@ -40951,7 +40951,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folder-xmark?style=thin /// archive, delete, directory, document, file, remove, uncheck, x - static const IconData thinFolderXmark = IconDataThin(0xf65f); + static const IconData thinFolderXmark = IconData(0xf65f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias folder-times for icon [thinFolderXmark] @Deprecated('Use "thinFolderXmark" instead.') @@ -40961,79 +40961,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/folders?style=solid /// archive, copy, directory, document, duplicate, file - static const IconData solidFolders = IconDataSolid(0xf660); + static const IconData solidFolders = IconData(0xf660, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Folders icon /// /// https://fontawesome.com/icons/folders?style=regular /// archive, copy, directory, document, duplicate, file - static const IconData folders = IconDataRegular(0xf660); + static const IconData folders = IconData(0xf660, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Folders icon /// /// https://fontawesome.com/icons/folders?style=light /// archive, copy, directory, document, duplicate, file - static const IconData lightFolders = IconDataLight(0xf660); + static const IconData lightFolders = IconData(0xf660, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Folders icon /// /// https://fontawesome.com/icons/folders?style=thin /// archive, copy, directory, document, duplicate, file - static const IconData thinFolders = IconDataThin(0xf660); + static const IconData thinFolders = IconData(0xf660, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fondue Pot icon /// /// https://fontawesome.com/icons/fondue-pot?style=solid /// cheese, chocolate, fondu, fondue, melted, pot, swiss - static const IconData solidFonduePot = IconDataSolid(0xe40d); + static const IconData solidFonduePot = IconData(0xe40d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fondue Pot icon /// /// https://fontawesome.com/icons/fondue-pot?style=regular /// cheese, chocolate, fondu, fondue, melted, pot, swiss - static const IconData fonduePot = IconDataRegular(0xe40d); + static const IconData fonduePot = IconData(0xe40d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fondue Pot icon /// /// https://fontawesome.com/icons/fondue-pot?style=light /// cheese, chocolate, fondu, fondue, melted, pot, swiss - static const IconData lightFonduePot = IconDataLight(0xe40d); + static const IconData lightFonduePot = IconData(0xe40d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fondue Pot icon /// /// https://fontawesome.com/icons/fondue-pot?style=thin /// cheese, chocolate, fondu, fondue, melted, pot, swiss - static const IconData thinFonduePot = IconDataThin(0xe40d); + static const IconData thinFonduePot = IconData(0xe40d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Font icon /// /// https://fontawesome.com/icons/font?style=solid /// alphabet, glyph, text, type, typeface - static const IconData solidFont = IconDataSolid(0xf031); + static const IconData solidFont = IconData(0xf031, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Font icon /// /// https://fontawesome.com/icons/font?style=regular /// alphabet, glyph, text, type, typeface - static const IconData font = IconDataRegular(0xf031); + static const IconData font = IconData(0xf031, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Font icon /// /// https://fontawesome.com/icons/font?style=light /// alphabet, glyph, text, type, typeface - static const IconData lightFont = IconDataLight(0xf031); + static const IconData lightFont = IconData(0xf031, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Font icon /// /// https://fontawesome.com/icons/font?style=thin /// alphabet, glyph, text, type, typeface - static const IconData thinFont = IconDataThin(0xf031); + static const IconData thinFont = IconData(0xf031, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Font Awesome icon /// /// https://fontawesome.com/icons/font-awesome?style=solid /// awesome, flag, font, icons, typeface - static const IconData solidFontAwesome = IconDataSolid(0xf2b4); + static const IconData solidFontAwesome = IconData(0xf2b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-flag for icon [solidFontAwesome] @Deprecated('Use "solidFontAwesome" instead.') @@ -41047,7 +41047,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/font-awesome?style=regular /// awesome, flag, font, icons, typeface - static const IconData fontAwesome = IconDataRegular(0xf2b4); + static const IconData fontAwesome = IconData(0xf2b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-flag for icon [fontAwesome] @Deprecated('Use "fontAwesome" instead.') @@ -41061,7 +41061,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/font-awesome?style=light /// awesome, flag, font, icons, typeface - static const IconData lightFontAwesome = IconDataLight(0xf2b4); + static const IconData lightFontAwesome = IconData(0xf2b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-flag for icon [lightFontAwesome] @Deprecated('Use "lightFontAwesome" instead.') @@ -41075,7 +41075,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/font-awesome?style=thin /// awesome, flag, font, icons, typeface - static const IconData thinFontAwesome = IconDataThin(0xf2b4); + static const IconData thinFontAwesome = IconData(0xf2b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-flag for icon [thinFontAwesome] @Deprecated('Use "thinFontAwesome" instead.') @@ -41089,7 +41089,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/font-awesome?style=brands /// awesome, flag, font, icons, typeface - static const IconData brandsFontAwesome = IconDataBrands(0xf2b4); + static const IconData brandsFontAwesome = IconData(0xf2b4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-flag for icon [brandsFontAwesome] @Deprecated('Use "brandsFontAwesome" instead.') @@ -41103,41 +41103,41 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/font-case?style=solid /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData solidFontCase = IconDataSolid(0xf866); + static const IconData solidFontCase = IconData(0xf866, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Font Case icon /// /// https://fontawesome.com/icons/font-case?style=regular /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData fontCase = IconDataRegular(0xf866); + static const IconData fontCase = IconData(0xf866, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Font Case icon /// /// https://fontawesome.com/icons/font-case?style=light /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData lightFontCase = IconDataLight(0xf866); + static const IconData lightFontCase = IconData(0xf866, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Font Case icon /// /// https://fontawesome.com/icons/font-case?style=thin /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData thinFontCase = IconDataThin(0xf866); + static const IconData thinFontCase = IconData(0xf866, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Fonticons icon /// /// https://fontawesome.com/icons/fonticons?style=brands - static const IconData fonticons = IconDataBrands(0xf280); + static const IconData fonticons = IconData(0xf280, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Fonticons Fi icon /// /// https://fontawesome.com/icons/fonticons-fi?style=brands - static const IconData fonticonsFi = IconDataBrands(0xf3a2); + static const IconData fonticonsFi = IconData(0xf3a2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Football icon /// /// https://fontawesome.com/icons/football?style=solid /// american, american football, ball, fall, football, nfl, pigskin, seasonal - static const IconData solidFootball = IconDataSolid(0xf44e); + static const IconData solidFootball = IconData(0xf44e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias football-ball for icon [solidFootball] @Deprecated('Use "solidFootball" instead.') @@ -41147,7 +41147,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/football?style=regular /// american, american football, ball, fall, football, nfl, pigskin, seasonal - static const IconData football = IconDataRegular(0xf44e); + static const IconData football = IconData(0xf44e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias football-ball for icon [football] @Deprecated('Use "football" instead.') @@ -41157,7 +41157,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/football?style=light /// american, american football, ball, fall, football, nfl, pigskin, seasonal - static const IconData lightFootball = IconDataLight(0xf44e); + static const IconData lightFootball = IconData(0xf44e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias football-ball for icon [lightFootball] @Deprecated('Use "lightFootball" instead.') @@ -41167,7 +41167,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/football?style=thin /// american, american football, ball, fall, football, nfl, pigskin, seasonal - static const IconData thinFootball = IconDataThin(0xf44e); + static const IconData thinFootball = IconData(0xf44e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias football-ball for icon [thinFootball] @Deprecated('Use "thinFootball" instead.') @@ -41177,31 +41177,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/football-helmet?style=solid /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData solidFootballHelmet = IconDataSolid(0xf44f); + static const IconData solidFootballHelmet = IconData(0xf44f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Football Helmet icon /// /// https://fontawesome.com/icons/football-helmet?style=regular /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData footballHelmet = IconDataRegular(0xf44f); + static const IconData footballHelmet = IconData(0xf44f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Football Helmet icon /// /// https://fontawesome.com/icons/football-helmet?style=light /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData lightFootballHelmet = IconDataLight(0xf44f); + static const IconData lightFootballHelmet = IconData(0xf44f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Football Helmet icon /// /// https://fontawesome.com/icons/football-helmet?style=thin /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData thinFootballHelmet = IconDataThin(0xf44f); + static const IconData thinFootballHelmet = IconData(0xf44f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fork icon /// /// https://fontawesome.com/icons/fork?style=solid /// cutlery, dining, food, fork, silverware - static const IconData solidFork = IconDataSolid(0xf2e3); + static const IconData solidFork = IconData(0xf2e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias utensil-fork for icon [solidFork] @Deprecated('Use "solidFork" instead.') @@ -41211,7 +41211,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork?style=regular /// cutlery, dining, food, fork, silverware - static const IconData fork = IconDataRegular(0xf2e3); + static const IconData fork = IconData(0xf2e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias utensil-fork for icon [fork] @Deprecated('Use "fork" instead.') @@ -41221,7 +41221,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork?style=light /// cutlery, dining, food, fork, silverware - static const IconData lightFork = IconDataLight(0xf2e3); + static const IconData lightFork = IconData(0xf2e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias utensil-fork for icon [lightFork] @Deprecated('Use "lightFork" instead.') @@ -41231,7 +41231,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork?style=thin /// cutlery, dining, food, fork, silverware - static const IconData thinFork = IconDataThin(0xf2e3); + static const IconData thinFork = IconData(0xf2e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias utensil-fork for icon [thinFork] @Deprecated('Use "thinFork" instead.') @@ -41241,7 +41241,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork-knife?style=solid /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData solidForkKnife = IconDataSolid(0xf2e6); + static const IconData solidForkKnife = IconData(0xf2e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias utensils-alt for icon [solidForkKnife] @Deprecated('Use "solidForkKnife" instead.') @@ -41251,7 +41251,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork-knife?style=regular /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData forkKnife = IconDataRegular(0xf2e6); + static const IconData forkKnife = IconData(0xf2e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias utensils-alt for icon [forkKnife] @Deprecated('Use "forkKnife" instead.') @@ -41261,7 +41261,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork-knife?style=light /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData lightForkKnife = IconDataLight(0xf2e6); + static const IconData lightForkKnife = IconData(0xf2e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias utensils-alt for icon [lightForkKnife] @Deprecated('Use "lightForkKnife" instead.') @@ -41271,7 +41271,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/fork-knife?style=thin /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData thinForkKnife = IconDataThin(0xf2e6); + static const IconData thinForkKnife = IconData(0xf2e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias utensils-alt for icon [thinForkKnife] @Deprecated('Use "thinForkKnife" instead.') @@ -41281,96 +41281,96 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forklift?style=solid /// archive, inventory, lorry, maintenance, pallet, shipping, tractor, warehouse - static const IconData solidForklift = IconDataSolid(0xf47a); + static const IconData solidForklift = IconData(0xf47a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Forklift icon /// /// https://fontawesome.com/icons/forklift?style=regular /// archive, inventory, lorry, maintenance, pallet, shipping, tractor, warehouse - static const IconData forklift = IconDataRegular(0xf47a); + static const IconData forklift = IconData(0xf47a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Forklift icon /// /// https://fontawesome.com/icons/forklift?style=light /// archive, inventory, lorry, maintenance, pallet, shipping, tractor, warehouse - static const IconData lightForklift = IconDataLight(0xf47a); + static const IconData lightForklift = IconData(0xf47a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Forklift icon /// /// https://fontawesome.com/icons/forklift?style=thin /// archive, inventory, lorry, maintenance, pallet, shipping, tractor, warehouse - static const IconData thinForklift = IconDataThin(0xf47a); + static const IconData thinForklift = IconData(0xf47a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Fort icon /// /// https://fontawesome.com/icons/fort?style=solid /// turret, castle, fort, fortress, garrison, palace - static const IconData solidFort = IconDataSolid(0xe486); + static const IconData solidFort = IconData(0xe486, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Fort icon /// /// https://fontawesome.com/icons/fort?style=regular /// turret, castle, fort, fortress, garrison, palace - static const IconData fort = IconDataRegular(0xe486); + static const IconData fort = IconData(0xe486, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Fort icon /// /// https://fontawesome.com/icons/fort?style=light /// turret, castle, fort, fortress, garrison, palace - static const IconData lightFort = IconDataLight(0xe486); + static const IconData lightFort = IconData(0xe486, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Fort icon /// /// https://fontawesome.com/icons/fort?style=thin /// turret, castle, fort, fortress, garrison, palace - static const IconData thinFort = IconDataThin(0xe486); + static const IconData thinFort = IconData(0xe486, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Fort Awesome icon /// /// https://fontawesome.com/icons/fort-awesome?style=brands /// castle - static const IconData fortAwesome = IconDataBrands(0xf286); + static const IconData fortAwesome = IconData(0xf286, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate Fort Awesome icon /// /// https://fontawesome.com/icons/fort-awesome-alt?style=brands /// castle - static const IconData fortAwesomeAlt = IconDataBrands(0xf3a3); + static const IconData fortAwesomeAlt = IconData(0xf3a3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Forumbee icon /// /// https://fontawesome.com/icons/forumbee?style=brands - static const IconData forumbee = IconDataBrands(0xf211); + static const IconData forumbee = IconData(0xf211, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Forward icon /// /// https://fontawesome.com/icons/forward?style=solid /// arrow, double, fast, fast-forward button, forward, next, skip - static const IconData solidForward = IconDataSolid(0xf04e); + static const IconData solidForward = IconData(0xf04e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Forward icon /// /// https://fontawesome.com/icons/forward?style=regular /// arrow, double, fast, fast-forward button, forward, next, skip - static const IconData forward = IconDataRegular(0xf04e); + static const IconData forward = IconData(0xf04e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Forward icon /// /// https://fontawesome.com/icons/forward?style=light /// arrow, double, fast, fast-forward button, forward, next, skip - static const IconData lightForward = IconDataLight(0xf04e); + static const IconData lightForward = IconData(0xf04e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Forward icon /// /// https://fontawesome.com/icons/forward?style=thin /// arrow, double, fast, fast-forward button, forward, next, skip - static const IconData thinForward = IconDataThin(0xf04e); + static const IconData thinForward = IconData(0xf04e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Forward Fast icon /// /// https://fontawesome.com/icons/forward-fast?style=solid /// arrow, end, last, next, next scene, next track, next track button, quick, triangle - static const IconData solidForwardFast = IconDataSolid(0xf050); + static const IconData solidForwardFast = IconData(0xf050, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fast-forward for icon [solidForwardFast] @Deprecated('Use "solidForwardFast" instead.') @@ -41380,7 +41380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-fast?style=regular /// arrow, end, last, next, next scene, next track, next track button, quick, triangle - static const IconData forwardFast = IconDataRegular(0xf050); + static const IconData forwardFast = IconData(0xf050, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fast-forward for icon [forwardFast] @Deprecated('Use "forwardFast" instead.') @@ -41390,7 +41390,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-fast?style=light /// arrow, end, last, next, next scene, next track, next track button, quick, triangle - static const IconData lightForwardFast = IconDataLight(0xf050); + static const IconData lightForwardFast = IconData(0xf050, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fast-forward for icon [lightForwardFast] @Deprecated('Use "lightForwardFast" instead.') @@ -41400,7 +41400,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-fast?style=thin /// arrow, end, last, next, next scene, next track, next track button, quick, triangle - static const IconData thinForwardFast = IconDataThin(0xf050); + static const IconData thinForwardFast = IconData(0xf050, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fast-forward for icon [thinForwardFast] @Deprecated('Use "thinForwardFast" instead.') @@ -41410,7 +41410,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-step?style=solid /// end, last, next - static const IconData solidForwardStep = IconDataSolid(0xf051); + static const IconData solidForwardStep = IconData(0xf051, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias step-forward for icon [solidForwardStep] @Deprecated('Use "solidForwardStep" instead.') @@ -41420,7 +41420,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-step?style=regular /// end, last, next - static const IconData forwardStep = IconDataRegular(0xf051); + static const IconData forwardStep = IconData(0xf051, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias step-forward for icon [forwardStep] @Deprecated('Use "forwardStep" instead.') @@ -41430,7 +41430,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-step?style=light /// end, last, next - static const IconData lightForwardStep = IconDataLight(0xf051); + static const IconData lightForwardStep = IconData(0xf051, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias step-forward for icon [lightForwardStep] @Deprecated('Use "lightForwardStep" instead.') @@ -41440,7 +41440,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/forward-step?style=thin /// end, last, next - static const IconData thinForwardStep = IconDataThin(0xf051); + static const IconData thinForwardStep = IconData(0xf051, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias step-forward for icon [thinForwardStep] @Deprecated('Use "thinForwardStep" instead.') @@ -41449,148 +41449,148 @@ class FontAwesomeIcons { /// Brands Foursquare icon /// /// https://fontawesome.com/icons/foursquare?style=brands - static const IconData foursquare = IconDataBrands(0xf180); + static const IconData foursquare = IconData(0xf180, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Frame icon /// /// https://fontawesome.com/icons/frame?style=solid /// artboard, crop, grid, group, viewbox - static const IconData solidFrame = IconDataSolid(0xe495); + static const IconData solidFrame = IconData(0xe495, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Frame icon /// /// https://fontawesome.com/icons/frame?style=regular /// artboard, crop, grid, group, viewbox - static const IconData frame = IconDataRegular(0xe495); + static const IconData frame = IconData(0xe495, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Frame icon /// /// https://fontawesome.com/icons/frame?style=light /// artboard, crop, grid, group, viewbox - static const IconData lightFrame = IconDataLight(0xe495); + static const IconData lightFrame = IconData(0xe495, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Frame icon /// /// https://fontawesome.com/icons/frame?style=thin /// artboard, crop, grid, group, viewbox - static const IconData thinFrame = IconDataThin(0xe495); + static const IconData thinFrame = IconData(0xe495, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Franc Sign icon /// /// https://fontawesome.com/icons/franc-sign?style=solid /// French Franc Sign, currency - static const IconData solidFrancSign = IconDataSolid(0xe18f); + static const IconData solidFrancSign = IconData(0xe18f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Franc Sign icon /// /// https://fontawesome.com/icons/franc-sign?style=regular /// French Franc Sign, currency - static const IconData francSign = IconDataRegular(0xe18f); + static const IconData francSign = IconData(0xe18f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Franc Sign icon /// /// https://fontawesome.com/icons/franc-sign?style=light /// French Franc Sign, currency - static const IconData lightFrancSign = IconDataLight(0xe18f); + static const IconData lightFrancSign = IconData(0xe18f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Franc Sign icon /// /// https://fontawesome.com/icons/franc-sign?style=thin /// French Franc Sign, currency - static const IconData thinFrancSign = IconDataThin(0xe18f); + static const IconData thinFrancSign = IconData(0xe18f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands freeCodeCamp icon /// /// https://fontawesome.com/icons/free-code-camp?style=brands - static const IconData freeCodeCamp = IconDataBrands(0xf2c5); + static const IconData freeCodeCamp = IconData(0xf2c5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands FreeBSD icon /// /// https://fontawesome.com/icons/freebsd?style=brands - static const IconData freebsd = IconDataBrands(0xf3a4); + static const IconData freebsd = IconData(0xf3a4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid French Fries icon /// /// https://fontawesome.com/icons/french-fries?style=solid /// chips, fast food, french, french fries, fried, fries, ketchup, potato, poutine - static const IconData solidFrenchFries = IconDataSolid(0xf803); + static const IconData solidFrenchFries = IconData(0xf803, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular French Fries icon /// /// https://fontawesome.com/icons/french-fries?style=regular /// chips, fast food, french, french fries, fried, fries, ketchup, potato, poutine - static const IconData frenchFries = IconDataRegular(0xf803); + static const IconData frenchFries = IconData(0xf803, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light French Fries icon /// /// https://fontawesome.com/icons/french-fries?style=light /// chips, fast food, french, french fries, fried, fries, ketchup, potato, poutine - static const IconData lightFrenchFries = IconDataLight(0xf803); + static const IconData lightFrenchFries = IconData(0xf803, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin French Fries icon /// /// https://fontawesome.com/icons/french-fries?style=thin /// chips, fast food, french, french fries, fried, fries, ketchup, potato, poutine - static const IconData thinFrenchFries = IconDataThin(0xf803); + static const IconData thinFrenchFries = IconData(0xf803, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Frog icon /// /// https://fontawesome.com/icons/frog?style=solid /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData solidFrog = IconDataSolid(0xf52e); + static const IconData solidFrog = IconData(0xf52e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Frog icon /// /// https://fontawesome.com/icons/frog?style=regular /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData frog = IconDataRegular(0xf52e); + static const IconData frog = IconData(0xf52e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Frog icon /// /// https://fontawesome.com/icons/frog?style=light /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData lightFrog = IconDataLight(0xf52e); + static const IconData lightFrog = IconData(0xf52e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Frog icon /// /// https://fontawesome.com/icons/frog?style=thin /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData thinFrog = IconDataThin(0xf52e); + static const IconData thinFrog = IconData(0xf52e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Fulcrum icon /// /// https://fontawesome.com/icons/fulcrum?style=brands - static const IconData fulcrum = IconDataBrands(0xf50b); + static const IconData fulcrum = IconData(0xf50b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Function icon /// /// https://fontawesome.com/icons/function?style=solid /// math, mathematics - static const IconData solidFunction = IconDataSolid(0xf661); + static const IconData solidFunction = IconData(0xf661, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Function icon /// /// https://fontawesome.com/icons/function?style=regular /// math, mathematics - static const IconData function = IconDataRegular(0xf661); + static const IconData function = IconData(0xf661, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Function icon /// /// https://fontawesome.com/icons/function?style=light /// math, mathematics - static const IconData lightFunction = IconDataLight(0xf661); + static const IconData lightFunction = IconData(0xf661, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Function icon /// /// https://fontawesome.com/icons/function?style=thin /// math, mathematics - static const IconData thinFunction = IconDataThin(0xf661); + static const IconData thinFunction = IconData(0xf661, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Futbol icon /// /// https://fontawesome.com/icons/futbol?style=solid /// ball, football, mls, soccer, soccer ball - static const IconData solidFutbol = IconDataSolid(0xf1e3); + static const IconData solidFutbol = IconData(0xf1e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias futbol-ball for icon [solidFutbol] @Deprecated('Use "solidFutbol" instead.') @@ -41604,7 +41604,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/futbol?style=regular /// ball, football, mls, soccer, soccer ball - static const IconData futbol = IconDataRegular(0xf1e3); + static const IconData futbol = IconData(0xf1e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias futbol-ball for icon [futbol] @Deprecated('Use "futbol" instead.') @@ -41618,7 +41618,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/futbol?style=light /// ball, football, mls, soccer, soccer ball - static const IconData lightFutbol = IconDataLight(0xf1e3); + static const IconData lightFutbol = IconData(0xf1e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias futbol-ball for icon [lightFutbol] @Deprecated('Use "lightFutbol" instead.') @@ -41632,7 +41632,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/futbol?style=thin /// ball, football, mls, soccer, soccer ball - static const IconData thinFutbol = IconDataThin(0xf1e3); + static const IconData thinFutbol = IconData(0xf1e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias futbol-ball for icon [thinFutbol] @Deprecated('Use "thinFutbol" instead.') @@ -41646,115 +41646,115 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/g?style=solid /// Latin Capital Letter G, Latin Small Letter G, letter - static const IconData solidG = IconDataSolid(0x47); + static const IconData solidG = IconData(0x47, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular G icon /// /// https://fontawesome.com/icons/g?style=regular /// Latin Capital Letter G, Latin Small Letter G, letter - static const IconData g = IconDataRegular(0x47); + static const IconData g = IconData(0x47, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light G icon /// /// https://fontawesome.com/icons/g?style=light /// Latin Capital Letter G, Latin Small Letter G, letter - static const IconData lightG = IconDataLight(0x47); + static const IconData lightG = IconData(0x47, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin G icon /// /// https://fontawesome.com/icons/g?style=thin /// Latin Capital Letter G, Latin Small Letter G, letter - static const IconData thinG = IconDataThin(0x47); + static const IconData thinG = IconData(0x47, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Galactic Republic icon /// /// https://fontawesome.com/icons/galactic-republic?style=brands /// politics, star wars - static const IconData galacticRepublic = IconDataBrands(0xf50c); + static const IconData galacticRepublic = IconData(0xf50c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Galactic Senate icon /// /// https://fontawesome.com/icons/galactic-senate?style=brands /// star wars - static const IconData galacticSenate = IconDataBrands(0xf50d); + static const IconData galacticSenate = IconData(0xf50d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Galaxy icon /// /// https://fontawesome.com/icons/galaxy?style=solid /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData solidGalaxy = IconDataSolid(0xe008); + static const IconData solidGalaxy = IconData(0xe008, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Galaxy icon /// /// https://fontawesome.com/icons/galaxy?style=regular /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData galaxy = IconDataRegular(0xe008); + static const IconData galaxy = IconData(0xe008, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Galaxy icon /// /// https://fontawesome.com/icons/galaxy?style=light /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData lightGalaxy = IconDataLight(0xe008); + static const IconData lightGalaxy = IconData(0xe008, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Galaxy icon /// /// https://fontawesome.com/icons/galaxy?style=thin /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData thinGalaxy = IconDataThin(0xe008); + static const IconData thinGalaxy = IconData(0xe008, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gallery Thumbnails icon /// /// https://fontawesome.com/icons/gallery-thumbnails?style=solid /// carousel, gallery, grid, screen, view - static const IconData solidGalleryThumbnails = IconDataSolid(0xe3aa); + static const IconData solidGalleryThumbnails = IconData(0xe3aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gallery Thumbnails icon /// /// https://fontawesome.com/icons/gallery-thumbnails?style=regular /// carousel, gallery, grid, screen, view - static const IconData galleryThumbnails = IconDataRegular(0xe3aa); + static const IconData galleryThumbnails = IconData(0xe3aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gallery Thumbnails icon /// /// https://fontawesome.com/icons/gallery-thumbnails?style=light /// carousel, gallery, grid, screen, view - static const IconData lightGalleryThumbnails = IconDataLight(0xe3aa); + static const IconData lightGalleryThumbnails = IconData(0xe3aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gallery Thumbnails icon /// /// https://fontawesome.com/icons/gallery-thumbnails?style=thin /// carousel, gallery, grid, screen, view - static const IconData thinGalleryThumbnails = IconDataThin(0xe3aa); + static const IconData thinGalleryThumbnails = IconData(0xe3aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Game Board icon /// /// https://fontawesome.com/icons/game-board?style=solid /// checkers, chess, gaming, grid, tabletop - static const IconData solidGameBoard = IconDataSolid(0xf867); + static const IconData solidGameBoard = IconData(0xf867, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Game Board icon /// /// https://fontawesome.com/icons/game-board?style=regular /// checkers, chess, gaming, grid, tabletop - static const IconData gameBoard = IconDataRegular(0xf867); + static const IconData gameBoard = IconData(0xf867, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Game Board icon /// /// https://fontawesome.com/icons/game-board?style=light /// checkers, chess, gaming, grid, tabletop - static const IconData lightGameBoard = IconDataLight(0xf867); + static const IconData lightGameBoard = IconData(0xf867, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Game Board icon /// /// https://fontawesome.com/icons/game-board?style=thin /// checkers, chess, gaming, grid, tabletop - static const IconData thinGameBoard = IconDataThin(0xf867); + static const IconData thinGameBoard = IconData(0xf867, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Game Board Simple icon /// /// https://fontawesome.com/icons/game-board-simple?style=solid /// checkers, chess, gaming, grid, tabletop - static const IconData solidGameBoardSimple = IconDataSolid(0xf868); + static const IconData solidGameBoardSimple = IconData(0xf868, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias game-board-alt for icon [solidGameBoardSimple] @Deprecated('Use "solidGameBoardSimple" instead.') @@ -41764,7 +41764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/game-board-simple?style=regular /// checkers, chess, gaming, grid, tabletop - static const IconData gameBoardSimple = IconDataRegular(0xf868); + static const IconData gameBoardSimple = IconData(0xf868, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias game-board-alt for icon [gameBoardSimple] @Deprecated('Use "gameBoardSimple" instead.') @@ -41774,7 +41774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/game-board-simple?style=light /// checkers, chess, gaming, grid, tabletop - static const IconData lightGameBoardSimple = IconDataLight(0xf868); + static const IconData lightGameBoardSimple = IconData(0xf868, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias game-board-alt for icon [lightGameBoardSimple] @Deprecated('Use "lightGameBoardSimple" instead.') @@ -41784,7 +41784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/game-board-simple?style=thin /// checkers, chess, gaming, grid, tabletop - static const IconData thinGameBoardSimple = IconDataThin(0xf868); + static const IconData thinGameBoardSimple = IconData(0xf868, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias game-board-alt for icon [thinGameBoardSimple] @Deprecated('Use "thinGameBoardSimple" instead.') @@ -41794,79 +41794,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/game-console-handheld?style=solid /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData solidGameConsoleHandheld = IconDataSolid(0xf8bb); + static const IconData solidGameConsoleHandheld = IconData(0xf8bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Game Console Handheld icon /// /// https://fontawesome.com/icons/game-console-handheld?style=regular /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData gameConsoleHandheld = IconDataRegular(0xf8bb); + static const IconData gameConsoleHandheld = IconData(0xf8bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Game Console Handheld icon /// /// https://fontawesome.com/icons/game-console-handheld?style=light /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData lightGameConsoleHandheld = IconDataLight(0xf8bb); + static const IconData lightGameConsoleHandheld = IconData(0xf8bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Game Console Handheld icon /// /// https://fontawesome.com/icons/game-console-handheld?style=thin /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData thinGameConsoleHandheld = IconDataThin(0xf8bb); + static const IconData thinGameConsoleHandheld = IconData(0xf8bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Game Console Handheld Crank icon /// /// https://fontawesome.com/icons/game-console-handheld-crank?style=solid /// panic, playdate, video games - static const IconData solidGameConsoleHandheldCrank = IconDataSolid(0xe5b9); + static const IconData solidGameConsoleHandheldCrank = IconData(0xe5b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Game Console Handheld Crank icon /// /// https://fontawesome.com/icons/game-console-handheld-crank?style=regular /// panic, playdate, video games - static const IconData gameConsoleHandheldCrank = IconDataRegular(0xe5b9); + static const IconData gameConsoleHandheldCrank = IconData(0xe5b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Game Console Handheld Crank icon /// /// https://fontawesome.com/icons/game-console-handheld-crank?style=light /// panic, playdate, video games - static const IconData lightGameConsoleHandheldCrank = IconDataLight(0xe5b9); + static const IconData lightGameConsoleHandheldCrank = IconData(0xe5b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Game Console Handheld Crank icon /// /// https://fontawesome.com/icons/game-console-handheld-crank?style=thin /// panic, playdate, video games - static const IconData thinGameConsoleHandheldCrank = IconDataThin(0xe5b9); + static const IconData thinGameConsoleHandheldCrank = IconData(0xe5b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gamepad icon /// /// https://fontawesome.com/icons/gamepad?style=solid /// arcade, controller, d-pad, joystick, playstore, video, video game - static const IconData solidGamepad = IconDataSolid(0xf11b); + static const IconData solidGamepad = IconData(0xf11b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gamepad icon /// /// https://fontawesome.com/icons/gamepad?style=regular /// arcade, controller, d-pad, joystick, playstore, video, video game - static const IconData gamepad = IconDataRegular(0xf11b); + static const IconData gamepad = IconData(0xf11b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gamepad icon /// /// https://fontawesome.com/icons/gamepad?style=light /// arcade, controller, d-pad, joystick, playstore, video, video game - static const IconData lightGamepad = IconDataLight(0xf11b); + static const IconData lightGamepad = IconData(0xf11b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gamepad icon /// /// https://fontawesome.com/icons/gamepad?style=thin /// arcade, controller, d-pad, joystick, playstore, video, video game - static const IconData thinGamepad = IconDataThin(0xf11b); + static const IconData thinGamepad = IconData(0xf11b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gamepad Modern icon /// /// https://fontawesome.com/icons/gamepad-modern?style=solid /// arcade, controller, d-pad, game, joystick, playstore, video, video game - static const IconData solidGamepadModern = IconDataSolid(0xe5a2); + static const IconData solidGamepadModern = IconData(0xe5a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias gamepad-alt for icon [solidGamepadModern] @Deprecated('Use "solidGamepadModern" instead.') @@ -41876,7 +41876,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gamepad-modern?style=regular /// arcade, controller, d-pad, game, joystick, playstore, video, video game - static const IconData gamepadModern = IconDataRegular(0xe5a2); + static const IconData gamepadModern = IconData(0xe5a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias gamepad-alt for icon [gamepadModern] @Deprecated('Use "gamepadModern" instead.') @@ -41886,7 +41886,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gamepad-modern?style=light /// arcade, controller, d-pad, game, joystick, playstore, video, video game - static const IconData lightGamepadModern = IconDataLight(0xe5a2); + static const IconData lightGamepadModern = IconData(0xe5a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias gamepad-alt for icon [lightGamepadModern] @Deprecated('Use "lightGamepadModern" instead.') @@ -41896,7 +41896,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gamepad-modern?style=thin /// arcade, controller, d-pad, game, joystick, playstore, video, video game - static const IconData thinGamepadModern = IconDataThin(0xe5a2); + static const IconData thinGamepadModern = IconData(0xe5a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias gamepad-alt for icon [thinGamepadModern] @Deprecated('Use "thinGamepadModern" instead.') @@ -41906,151 +41906,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/garage?style=solid /// auto, car, door, storage, structure, warehouse - static const IconData solidGarage = IconDataSolid(0xe009); + static const IconData solidGarage = IconData(0xe009, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Garage icon /// /// https://fontawesome.com/icons/garage?style=regular /// auto, car, door, storage, structure, warehouse - static const IconData garage = IconDataRegular(0xe009); + static const IconData garage = IconData(0xe009, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Garage icon /// /// https://fontawesome.com/icons/garage?style=light /// auto, car, door, storage, structure, warehouse - static const IconData lightGarage = IconDataLight(0xe009); + static const IconData lightGarage = IconData(0xe009, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Garage icon /// /// https://fontawesome.com/icons/garage?style=thin /// auto, car, door, storage, structure, warehouse - static const IconData thinGarage = IconDataThin(0xe009); + static const IconData thinGarage = IconData(0xe009, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Garage Car icon /// /// https://fontawesome.com/icons/garage-car?style=solid /// auto, car, door, storage, structure, warehouse - static const IconData solidGarageCar = IconDataSolid(0xe00a); + static const IconData solidGarageCar = IconData(0xe00a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Garage Car icon /// /// https://fontawesome.com/icons/garage-car?style=regular /// auto, car, door, storage, structure, warehouse - static const IconData garageCar = IconDataRegular(0xe00a); + static const IconData garageCar = IconData(0xe00a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Garage Car icon /// /// https://fontawesome.com/icons/garage-car?style=light /// auto, car, door, storage, structure, warehouse - static const IconData lightGarageCar = IconDataLight(0xe00a); + static const IconData lightGarageCar = IconData(0xe00a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Garage Car icon /// /// https://fontawesome.com/icons/garage-car?style=thin /// auto, car, door, storage, structure, warehouse - static const IconData thinGarageCar = IconDataThin(0xe00a); + static const IconData thinGarageCar = IconData(0xe00a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Garage Open icon /// /// https://fontawesome.com/icons/garage-open?style=solid /// auto, car, door, storage, structure, warehouse - static const IconData solidGarageOpen = IconDataSolid(0xe00b); + static const IconData solidGarageOpen = IconData(0xe00b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Garage Open icon /// /// https://fontawesome.com/icons/garage-open?style=regular /// auto, car, door, storage, structure, warehouse - static const IconData garageOpen = IconDataRegular(0xe00b); + static const IconData garageOpen = IconData(0xe00b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Garage Open icon /// /// https://fontawesome.com/icons/garage-open?style=light /// auto, car, door, storage, structure, warehouse - static const IconData lightGarageOpen = IconDataLight(0xe00b); + static const IconData lightGarageOpen = IconData(0xe00b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Garage Open icon /// /// https://fontawesome.com/icons/garage-open?style=thin /// auto, car, door, storage, structure, warehouse - static const IconData thinGarageOpen = IconDataThin(0xe00b); + static const IconData thinGarageOpen = IconData(0xe00b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Garlic icon /// /// https://fontawesome.com/icons/garlic?style=solid /// ail, flavor, garlic, vampire - static const IconData solidGarlic = IconDataSolid(0xe40e); + static const IconData solidGarlic = IconData(0xe40e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Garlic icon /// /// https://fontawesome.com/icons/garlic?style=regular /// ail, flavor, garlic, vampire - static const IconData garlic = IconDataRegular(0xe40e); + static const IconData garlic = IconData(0xe40e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Garlic icon /// /// https://fontawesome.com/icons/garlic?style=light /// ail, flavor, garlic, vampire - static const IconData lightGarlic = IconDataLight(0xe40e); + static const IconData lightGarlic = IconData(0xe40e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Garlic icon /// /// https://fontawesome.com/icons/garlic?style=thin /// ail, flavor, garlic, vampire - static const IconData thinGarlic = IconDataThin(0xe40e); + static const IconData thinGarlic = IconData(0xe40e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gas Pump icon /// /// https://fontawesome.com/icons/gas-pump?style=solid /// car, diesel, fuel, fuel pump, fuelpump, gas, gasoline, petrol, pump, station - static const IconData solidGasPump = IconDataSolid(0xf52f); + static const IconData solidGasPump = IconData(0xf52f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gas Pump icon /// /// https://fontawesome.com/icons/gas-pump?style=regular /// car, diesel, fuel, fuel pump, fuelpump, gas, gasoline, petrol, pump, station - static const IconData gasPump = IconDataRegular(0xf52f); + static const IconData gasPump = IconData(0xf52f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gas Pump icon /// /// https://fontawesome.com/icons/gas-pump?style=light /// car, diesel, fuel, fuel pump, fuelpump, gas, gasoline, petrol, pump, station - static const IconData lightGasPump = IconDataLight(0xf52f); + static const IconData lightGasPump = IconData(0xf52f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gas Pump icon /// /// https://fontawesome.com/icons/gas-pump?style=thin /// car, diesel, fuel, fuel pump, fuelpump, gas, gasoline, petrol, pump, station - static const IconData thinGasPump = IconDataThin(0xf52f); + static const IconData thinGasPump = IconData(0xf52f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gas Pump Slash icon /// /// https://fontawesome.com/icons/gas-pump-slash?style=solid /// car, disabled, empty, fuel, gasoline, petrol - static const IconData solidGasPumpSlash = IconDataSolid(0xf5f4); + static const IconData solidGasPumpSlash = IconData(0xf5f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gas Pump Slash icon /// /// https://fontawesome.com/icons/gas-pump-slash?style=regular /// car, disabled, empty, fuel, gasoline, petrol - static const IconData gasPumpSlash = IconDataRegular(0xf5f4); + static const IconData gasPumpSlash = IconData(0xf5f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gas Pump Slash icon /// /// https://fontawesome.com/icons/gas-pump-slash?style=light /// car, disabled, empty, fuel, gasoline, petrol - static const IconData lightGasPumpSlash = IconDataLight(0xf5f4); + static const IconData lightGasPumpSlash = IconData(0xf5f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gas Pump Slash icon /// /// https://fontawesome.com/icons/gas-pump-slash?style=thin /// car, disabled, empty, fuel, gasoline, petrol - static const IconData thinGasPumpSlash = IconDataThin(0xf5f4); + static const IconData thinGasPumpSlash = IconData(0xf5f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gauge icon /// /// https://fontawesome.com/icons/gauge?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGauge = IconDataSolid(0xf624); + static const IconData solidGauge = IconData(0xf624, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dashboard for icon [solidGauge] @Deprecated('Use "solidGauge" instead.') @@ -42068,7 +42068,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gauge = IconDataRegular(0xf624); + static const IconData gauge = IconData(0xf624, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dashboard for icon [gauge] @Deprecated('Use "gauge" instead.') @@ -42086,7 +42086,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGauge = IconDataLight(0xf624); + static const IconData lightGauge = IconData(0xf624, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dashboard for icon [lightGauge] @Deprecated('Use "lightGauge" instead.') @@ -42104,7 +42104,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGauge = IconDataThin(0xf624); + static const IconData thinGauge = IconData(0xf624, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dashboard for icon [thinGauge] @Deprecated('Use "thinGauge" instead.') @@ -42122,79 +42122,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-circle-bolt?style=solid /// dashboard, electric, ev, fast, odometer, speed, speedometer - static const IconData solidGaugeCircleBolt = IconDataSolid(0xe496); + static const IconData solidGaugeCircleBolt = IconData(0xe496, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gauge Circle Bolt icon /// /// https://fontawesome.com/icons/gauge-circle-bolt?style=regular /// dashboard, electric, ev, fast, odometer, speed, speedometer - static const IconData gaugeCircleBolt = IconDataRegular(0xe496); + static const IconData gaugeCircleBolt = IconData(0xe496, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gauge Circle Bolt icon /// /// https://fontawesome.com/icons/gauge-circle-bolt?style=light /// dashboard, electric, ev, fast, odometer, speed, speedometer - static const IconData lightGaugeCircleBolt = IconDataLight(0xe496); + static const IconData lightGaugeCircleBolt = IconData(0xe496, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gauge Circle Bolt icon /// /// https://fontawesome.com/icons/gauge-circle-bolt?style=thin /// dashboard, electric, ev, fast, odometer, speed, speedometer - static const IconData thinGaugeCircleBolt = IconDataThin(0xe496); + static const IconData thinGaugeCircleBolt = IconData(0xe496, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gauge Circle Minus icon /// /// https://fontawesome.com/icons/gauge-circle-minus?style=solid /// dashboard, decrease, fast, odometer, speed, speedometer - static const IconData solidGaugeCircleMinus = IconDataSolid(0xe497); + static const IconData solidGaugeCircleMinus = IconData(0xe497, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gauge Circle Minus icon /// /// https://fontawesome.com/icons/gauge-circle-minus?style=regular /// dashboard, decrease, fast, odometer, speed, speedometer - static const IconData gaugeCircleMinus = IconDataRegular(0xe497); + static const IconData gaugeCircleMinus = IconData(0xe497, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gauge Circle Minus icon /// /// https://fontawesome.com/icons/gauge-circle-minus?style=light /// dashboard, decrease, fast, odometer, speed, speedometer - static const IconData lightGaugeCircleMinus = IconDataLight(0xe497); + static const IconData lightGaugeCircleMinus = IconData(0xe497, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gauge Circle Minus icon /// /// https://fontawesome.com/icons/gauge-circle-minus?style=thin /// dashboard, decrease, fast, odometer, speed, speedometer - static const IconData thinGaugeCircleMinus = IconDataThin(0xe497); + static const IconData thinGaugeCircleMinus = IconData(0xe497, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gauge Circle Plus icon /// /// https://fontawesome.com/icons/gauge-circle-plus?style=solid /// dashboard, fast, increase, odometer, speed, speedometer - static const IconData solidGaugeCirclePlus = IconDataSolid(0xe498); + static const IconData solidGaugeCirclePlus = IconData(0xe498, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gauge Circle Plus icon /// /// https://fontawesome.com/icons/gauge-circle-plus?style=regular /// dashboard, fast, increase, odometer, speed, speedometer - static const IconData gaugeCirclePlus = IconDataRegular(0xe498); + static const IconData gaugeCirclePlus = IconData(0xe498, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gauge Circle Plus icon /// /// https://fontawesome.com/icons/gauge-circle-plus?style=light /// dashboard, fast, increase, odometer, speed, speedometer - static const IconData lightGaugeCirclePlus = IconDataLight(0xe498); + static const IconData lightGaugeCirclePlus = IconData(0xe498, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gauge Circle Plus icon /// /// https://fontawesome.com/icons/gauge-circle-plus?style=thin /// dashboard, fast, increase, odometer, speed, speedometer - static const IconData thinGaugeCirclePlus = IconDataThin(0xe498); + static const IconData thinGaugeCirclePlus = IconData(0xe498, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gauge High icon /// /// https://fontawesome.com/icons/gauge-high?style=solid /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData solidGaugeHigh = IconDataSolid(0xf625); + static const IconData solidGaugeHigh = IconData(0xf625, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt for icon [solidGaugeHigh] @Deprecated('Use "solidGaugeHigh" instead.') @@ -42208,7 +42208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-high?style=regular /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData gaugeHigh = IconDataRegular(0xf625); + static const IconData gaugeHigh = IconData(0xf625, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt for icon [gaugeHigh] @Deprecated('Use "gaugeHigh" instead.') @@ -42222,7 +42222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-high?style=light /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData lightGaugeHigh = IconDataLight(0xf625); + static const IconData lightGaugeHigh = IconData(0xf625, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt for icon [lightGaugeHigh] @Deprecated('Use "lightGaugeHigh" instead.') @@ -42236,7 +42236,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-high?style=thin /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData thinGaugeHigh = IconDataThin(0xf625); + static const IconData thinGaugeHigh = IconData(0xf625, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt for icon [thinGaugeHigh] @Deprecated('Use "thinGaugeHigh" instead.') @@ -42250,7 +42250,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-low?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGaugeLow = IconDataSolid(0xf627); + static const IconData solidGaugeLow = IconData(0xf627, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slow for icon [solidGaugeLow] @Deprecated('Use "solidGaugeLow" instead.') @@ -42260,7 +42260,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-low?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gaugeLow = IconDataRegular(0xf627); + static const IconData gaugeLow = IconData(0xf627, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slow for icon [gaugeLow] @Deprecated('Use "gaugeLow" instead.') @@ -42270,7 +42270,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-low?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGaugeLow = IconDataLight(0xf627); + static const IconData lightGaugeLow = IconData(0xf627, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slow for icon [lightGaugeLow] @Deprecated('Use "lightGaugeLow" instead.') @@ -42280,7 +42280,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-low?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGaugeLow = IconDataThin(0xf627); + static const IconData thinGaugeLow = IconData(0xf627, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slow for icon [thinGaugeLow] @Deprecated('Use "thinGaugeLow" instead.') @@ -42290,7 +42290,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-max?style=solid /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData solidGaugeMax = IconDataSolid(0xf626); + static const IconData solidGaugeMax = IconData(0xf626, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-fastest for icon [solidGaugeMax] @Deprecated('Use "solidGaugeMax" instead.') @@ -42300,7 +42300,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-max?style=regular /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData gaugeMax = IconDataRegular(0xf626); + static const IconData gaugeMax = IconData(0xf626, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-fastest for icon [gaugeMax] @Deprecated('Use "gaugeMax" instead.') @@ -42310,7 +42310,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-max?style=light /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData lightGaugeMax = IconDataLight(0xf626); + static const IconData lightGaugeMax = IconData(0xf626, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-fastest for icon [lightGaugeMax] @Deprecated('Use "lightGaugeMax" instead.') @@ -42320,7 +42320,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-max?style=thin /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData thinGaugeMax = IconDataThin(0xf626); + static const IconData thinGaugeMax = IconData(0xf626, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-fastest for icon [thinGaugeMax] @Deprecated('Use "thinGaugeMax" instead.') @@ -42330,7 +42330,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-min?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGaugeMin = IconDataSolid(0xf628); + static const IconData solidGaugeMin = IconData(0xf628, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slowest for icon [solidGaugeMin] @Deprecated('Use "solidGaugeMin" instead.') @@ -42340,7 +42340,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-min?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gaugeMin = IconDataRegular(0xf628); + static const IconData gaugeMin = IconData(0xf628, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slowest for icon [gaugeMin] @Deprecated('Use "gaugeMin" instead.') @@ -42350,7 +42350,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-min?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGaugeMin = IconDataLight(0xf628); + static const IconData lightGaugeMin = IconData(0xf628, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slowest for icon [lightGaugeMin] @Deprecated('Use "lightGaugeMin" instead.') @@ -42360,7 +42360,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-min?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGaugeMin = IconDataThin(0xf628); + static const IconData thinGaugeMin = IconData(0xf628, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-alt-slowest for icon [thinGaugeMin] @Deprecated('Use "thinGaugeMin" instead.') @@ -42370,7 +42370,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGaugeSimple = IconDataSolid(0xf629); + static const IconData solidGaugeSimple = IconData(0xf629, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias gauge-simple-med for icon [solidGaugeSimple] @Deprecated('Use "solidGaugeSimple" instead.') @@ -42384,7 +42384,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gaugeSimple = IconDataRegular(0xf629); + static const IconData gaugeSimple = IconData(0xf629, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias gauge-simple-med for icon [gaugeSimple] @Deprecated('Use "gaugeSimple" instead.') @@ -42398,7 +42398,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGaugeSimple = IconDataLight(0xf629); + static const IconData lightGaugeSimple = IconData(0xf629, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias gauge-simple-med for icon [lightGaugeSimple] @Deprecated('Use "lightGaugeSimple" instead.') @@ -42412,7 +42412,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGaugeSimple = IconDataThin(0xf629); + static const IconData thinGaugeSimple = IconData(0xf629, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias gauge-simple-med for icon [thinGaugeSimple] @Deprecated('Use "thinGaugeSimple" instead.') @@ -42426,7 +42426,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-high?style=solid /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData solidGaugeSimpleHigh = IconDataSolid(0xf62a); + static const IconData solidGaugeSimpleHigh = IconData(0xf62a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer for icon [solidGaugeSimpleHigh] @Deprecated('Use "solidGaugeSimpleHigh" instead.') @@ -42440,7 +42440,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-high?style=regular /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData gaugeSimpleHigh = IconDataRegular(0xf62a); + static const IconData gaugeSimpleHigh = IconData(0xf62a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer for icon [gaugeSimpleHigh] @Deprecated('Use "gaugeSimpleHigh" instead.') @@ -42454,7 +42454,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-high?style=light /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData lightGaugeSimpleHigh = IconDataLight(0xf62a); + static const IconData lightGaugeSimpleHigh = IconData(0xf62a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer for icon [lightGaugeSimpleHigh] @Deprecated('Use "lightGaugeSimpleHigh" instead.') @@ -42468,7 +42468,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-high?style=thin /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData thinGaugeSimpleHigh = IconDataThin(0xf62a); + static const IconData thinGaugeSimpleHigh = IconData(0xf62a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer for icon [thinGaugeSimpleHigh] @Deprecated('Use "thinGaugeSimpleHigh" instead.') @@ -42482,7 +42482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-low?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGaugeSimpleLow = IconDataSolid(0xf62c); + static const IconData solidGaugeSimpleLow = IconData(0xf62c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slow for icon [solidGaugeSimpleLow] @Deprecated('Use "solidGaugeSimpleLow" instead.') @@ -42492,7 +42492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-low?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gaugeSimpleLow = IconDataRegular(0xf62c); + static const IconData gaugeSimpleLow = IconData(0xf62c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slow for icon [gaugeSimpleLow] @Deprecated('Use "gaugeSimpleLow" instead.') @@ -42502,7 +42502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-low?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGaugeSimpleLow = IconDataLight(0xf62c); + static const IconData lightGaugeSimpleLow = IconData(0xf62c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slow for icon [lightGaugeSimpleLow] @Deprecated('Use "lightGaugeSimpleLow" instead.') @@ -42512,7 +42512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-low?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGaugeSimpleLow = IconDataThin(0xf62c); + static const IconData thinGaugeSimpleLow = IconData(0xf62c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slow for icon [thinGaugeSimpleLow] @Deprecated('Use "thinGaugeSimpleLow" instead.') @@ -42522,7 +42522,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-max?style=solid /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData solidGaugeSimpleMax = IconDataSolid(0xf62b); + static const IconData solidGaugeSimpleMax = IconData(0xf62b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-fastest for icon [solidGaugeSimpleMax] @Deprecated('Use "solidGaugeSimpleMax" instead.') @@ -42532,7 +42532,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-max?style=regular /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData gaugeSimpleMax = IconDataRegular(0xf62b); + static const IconData gaugeSimpleMax = IconData(0xf62b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-fastest for icon [gaugeSimpleMax] @Deprecated('Use "gaugeSimpleMax" instead.') @@ -42542,7 +42542,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-max?style=light /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData lightGaugeSimpleMax = IconDataLight(0xf62b); + static const IconData lightGaugeSimpleMax = IconData(0xf62b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-fastest for icon [lightGaugeSimpleMax] @Deprecated('Use "lightGaugeSimpleMax" instead.') @@ -42552,7 +42552,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-max?style=thin /// dashboard, fast, odometer, quick, speed, speedometer - static const IconData thinGaugeSimpleMax = IconDataThin(0xf62b); + static const IconData thinGaugeSimpleMax = IconData(0xf62b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-fastest for icon [thinGaugeSimpleMax] @Deprecated('Use "thinGaugeSimpleMax" instead.') @@ -42562,7 +42562,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-min?style=solid /// dashboard, fast, odometer, speed, speedometer - static const IconData solidGaugeSimpleMin = IconDataSolid(0xf62d); + static const IconData solidGaugeSimpleMin = IconData(0xf62d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slowest for icon [solidGaugeSimpleMin] @Deprecated('Use "solidGaugeSimpleMin" instead.') @@ -42572,7 +42572,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-min?style=regular /// dashboard, fast, odometer, speed, speedometer - static const IconData gaugeSimpleMin = IconDataRegular(0xf62d); + static const IconData gaugeSimpleMin = IconData(0xf62d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slowest for icon [gaugeSimpleMin] @Deprecated('Use "gaugeSimpleMin" instead.') @@ -42582,7 +42582,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-min?style=light /// dashboard, fast, odometer, speed, speedometer - static const IconData lightGaugeSimpleMin = IconDataLight(0xf62d); + static const IconData lightGaugeSimpleMin = IconData(0xf62d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slowest for icon [lightGaugeSimpleMin] @Deprecated('Use "lightGaugeSimpleMin" instead.') @@ -42592,7 +42592,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gauge-simple-min?style=thin /// dashboard, fast, odometer, speed, speedometer - static const IconData thinGaugeSimpleMin = IconDataThin(0xf62d); + static const IconData thinGaugeSimpleMin = IconData(0xf62d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tachometer-slowest for icon [thinGaugeSimpleMin] @Deprecated('Use "thinGaugeSimpleMin" instead.') @@ -42602,7 +42602,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gavel?style=solid /// hammer, judge, law, lawyer, opinion - static const IconData solidGavel = IconDataSolid(0xf0e3); + static const IconData solidGavel = IconData(0xf0e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias legal for icon [solidGavel] @Deprecated('Use "solidGavel" instead.') @@ -42612,7 +42612,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gavel?style=regular /// hammer, judge, law, lawyer, opinion - static const IconData gavel = IconDataRegular(0xf0e3); + static const IconData gavel = IconData(0xf0e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias legal for icon [gavel] @Deprecated('Use "gavel" instead.') @@ -42622,7 +42622,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gavel?style=light /// hammer, judge, law, lawyer, opinion - static const IconData lightGavel = IconDataLight(0xf0e3); + static const IconData lightGavel = IconData(0xf0e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias legal for icon [lightGavel] @Deprecated('Use "lightGavel" instead.') @@ -42632,7 +42632,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gavel?style=thin /// hammer, judge, law, lawyer, opinion - static const IconData thinGavel = IconDataThin(0xf0e3); + static const IconData thinGavel = IconData(0xf0e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias legal for icon [thinGavel] @Deprecated('Use "thinGavel" instead.') @@ -42642,7 +42642,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gear?style=solid /// cog, cogwheel, configuration, gear, mechanical, modify, settings, sprocket, tool, wheel - static const IconData solidGear = IconDataSolid(0xf013); + static const IconData solidGear = IconData(0xf013, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cog for icon [solidGear] @Deprecated('Use "solidGear" instead.') @@ -42652,7 +42652,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gear?style=regular /// cog, cogwheel, configuration, gear, mechanical, modify, settings, sprocket, tool, wheel - static const IconData gear = IconDataRegular(0xf013); + static const IconData gear = IconData(0xf013, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cog for icon [gear] @Deprecated('Use "gear" instead.') @@ -42662,7 +42662,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gear?style=light /// cog, cogwheel, configuration, gear, mechanical, modify, settings, sprocket, tool, wheel - static const IconData lightGear = IconDataLight(0xf013); + static const IconData lightGear = IconData(0xf013, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cog for icon [lightGear] @Deprecated('Use "lightGear" instead.') @@ -42672,7 +42672,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gear?style=thin /// cog, cogwheel, configuration, gear, mechanical, modify, settings, sprocket, tool, wheel - static const IconData thinGear = IconDataThin(0xf013); + static const IconData thinGear = IconData(0xf013, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cog for icon [thinGear] @Deprecated('Use "thinGear" instead.') @@ -42682,79 +42682,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gear-code?style=solid /// code, cogwheel, develop, digital, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData solidGearCode = IconDataSolid(0xe5e8); + static const IconData solidGearCode = IconData(0xe5e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gear Code icon /// /// https://fontawesome.com/icons/gear-code?style=regular /// code, cogwheel, develop, digital, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData gearCode = IconDataRegular(0xe5e8); + static const IconData gearCode = IconData(0xe5e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gear Code icon /// /// https://fontawesome.com/icons/gear-code?style=light /// code, cogwheel, develop, digital, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData lightGearCode = IconDataLight(0xe5e8); + static const IconData lightGearCode = IconData(0xe5e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gear Code icon /// /// https://fontawesome.com/icons/gear-code?style=thin /// code, cogwheel, develop, digital, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData thinGearCode = IconDataThin(0xe5e8); + static const IconData thinGearCode = IconData(0xe5e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gear Complex icon /// /// https://fontawesome.com/icons/gear-complex?style=solid /// cogwheel, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData solidGearComplex = IconDataSolid(0xe5e9); + static const IconData solidGearComplex = IconData(0xe5e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gear Complex icon /// /// https://fontawesome.com/icons/gear-complex?style=regular /// cogwheel, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData gearComplex = IconDataRegular(0xe5e9); + static const IconData gearComplex = IconData(0xe5e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gear Complex icon /// /// https://fontawesome.com/icons/gear-complex?style=light /// cogwheel, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData lightGearComplex = IconDataLight(0xe5e9); + static const IconData lightGearComplex = IconData(0xe5e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gear Complex icon /// /// https://fontawesome.com/icons/gear-complex?style=thin /// cogwheel, gear, mechanical, settings, sprocket, tool, wheel, cog - static const IconData thinGearComplex = IconDataThin(0xe5e9); + static const IconData thinGearComplex = IconData(0xe5e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gear Complex Code icon /// /// https://fontawesome.com/icons/gear-complex-code?style=solid /// code, cogwheel, develop, gear, mechanical, settings, sprocket, tool, wheel, cog, digital - static const IconData solidGearComplexCode = IconDataSolid(0xe5eb); + static const IconData solidGearComplexCode = IconData(0xe5eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gear Complex Code icon /// /// https://fontawesome.com/icons/gear-complex-code?style=regular /// code, cogwheel, develop, gear, mechanical, settings, sprocket, tool, wheel, cog, digital - static const IconData gearComplexCode = IconDataRegular(0xe5eb); + static const IconData gearComplexCode = IconData(0xe5eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gear Complex Code icon /// /// https://fontawesome.com/icons/gear-complex-code?style=light /// code, cogwheel, develop, gear, mechanical, settings, sprocket, tool, wheel, cog, digital - static const IconData lightGearComplexCode = IconDataLight(0xe5eb); + static const IconData lightGearComplexCode = IconData(0xe5eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gear Complex Code icon /// /// https://fontawesome.com/icons/gear-complex-code?style=thin /// code, cogwheel, develop, gear, mechanical, settings, sprocket, tool, wheel, cog, digital - static const IconData thinGearComplexCode = IconDataThin(0xe5eb); + static const IconData thinGearComplexCode = IconData(0xe5eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gears icon /// /// https://fontawesome.com/icons/gears?style=solid /// configuration, gears, mechanical, modify, settings, sprocket, wheel - static const IconData solidGears = IconDataSolid(0xf085); + static const IconData solidGears = IconData(0xf085, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cogs for icon [solidGears] @Deprecated('Use "solidGears" instead.') @@ -42764,7 +42764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gears?style=regular /// configuration, gears, mechanical, modify, settings, sprocket, wheel - static const IconData gears = IconDataRegular(0xf085); + static const IconData gears = IconData(0xf085, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cogs for icon [gears] @Deprecated('Use "gears" instead.') @@ -42774,7 +42774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gears?style=light /// configuration, gears, mechanical, modify, settings, sprocket, wheel - static const IconData lightGears = IconDataLight(0xf085); + static const IconData lightGears = IconData(0xf085, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cogs for icon [lightGears] @Deprecated('Use "lightGears" instead.') @@ -42784,7 +42784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gears?style=thin /// configuration, gears, mechanical, modify, settings, sprocket, wheel - static const IconData thinGears = IconDataThin(0xf085); + static const IconData thinGears = IconData(0xf085, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cogs for icon [thinGears] @Deprecated('Use "thinGears" instead.') @@ -42794,324 +42794,324 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gem?style=solid /// diamond, gem, gem stone, jewel, jewelry, sapphire, stone, treasure - static const IconData solidGem = IconDataSolid(0xf3a5); + static const IconData solidGem = IconData(0xf3a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gem icon /// /// https://fontawesome.com/icons/gem?style=regular /// diamond, gem, gem stone, jewel, jewelry, sapphire, stone, treasure - static const IconData gem = IconDataRegular(0xf3a5); + static const IconData gem = IconData(0xf3a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gem icon /// /// https://fontawesome.com/icons/gem?style=light /// diamond, gem, gem stone, jewel, jewelry, sapphire, stone, treasure - static const IconData lightGem = IconDataLight(0xf3a5); + static const IconData lightGem = IconData(0xf3a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gem icon /// /// https://fontawesome.com/icons/gem?style=thin /// diamond, gem, gem stone, jewel, jewelry, sapphire, stone, treasure - static const IconData thinGem = IconDataThin(0xf3a5); + static const IconData thinGem = IconData(0xf3a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Genderless icon /// /// https://fontawesome.com/icons/genderless?style=solid /// androgynous, asexual, gender, sexless - static const IconData solidGenderless = IconDataSolid(0xf22d); + static const IconData solidGenderless = IconData(0xf22d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Genderless icon /// /// https://fontawesome.com/icons/genderless?style=regular /// androgynous, asexual, gender, sexless - static const IconData genderless = IconDataRegular(0xf22d); + static const IconData genderless = IconData(0xf22d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Genderless icon /// /// https://fontawesome.com/icons/genderless?style=light /// androgynous, asexual, gender, sexless - static const IconData lightGenderless = IconDataLight(0xf22d); + static const IconData lightGenderless = IconData(0xf22d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Genderless icon /// /// https://fontawesome.com/icons/genderless?style=thin /// androgynous, asexual, gender, sexless - static const IconData thinGenderless = IconDataThin(0xf22d); + static const IconData thinGenderless = IconData(0xf22d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Get Pocket icon /// /// https://fontawesome.com/icons/get-pocket?style=brands - static const IconData getPocket = IconDataBrands(0xf265); + static const IconData getPocket = IconData(0xf265, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands GG Currency icon /// /// https://fontawesome.com/icons/gg?style=brands - static const IconData gg = IconDataBrands(0xf260); + static const IconData gg = IconData(0xf260, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands GG Currency Circle icon /// /// https://fontawesome.com/icons/gg-circle?style=brands - static const IconData ggCircle = IconDataBrands(0xf261); + static const IconData ggCircle = IconData(0xf261, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ghost icon /// /// https://fontawesome.com/icons/ghost?style=solid /// apparition, blinky, clyde, creature, face, fairy tale, fantasy, floating, ghost, halloween, holiday, inky, monster, pacman, pinky, spirit - static const IconData solidGhost = IconDataSolid(0xf6e2); + static const IconData solidGhost = IconData(0xf6e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ghost icon /// /// https://fontawesome.com/icons/ghost?style=regular /// apparition, blinky, clyde, creature, face, fairy tale, fantasy, floating, ghost, halloween, holiday, inky, monster, pacman, pinky, spirit - static const IconData ghost = IconDataRegular(0xf6e2); + static const IconData ghost = IconData(0xf6e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ghost icon /// /// https://fontawesome.com/icons/ghost?style=light /// apparition, blinky, clyde, creature, face, fairy tale, fantasy, floating, ghost, halloween, holiday, inky, monster, pacman, pinky, spirit - static const IconData lightGhost = IconDataLight(0xf6e2); + static const IconData lightGhost = IconData(0xf6e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ghost icon /// /// https://fontawesome.com/icons/ghost?style=thin /// apparition, blinky, clyde, creature, face, fairy tale, fantasy, floating, ghost, halloween, holiday, inky, monster, pacman, pinky, spirit - static const IconData thinGhost = IconDataThin(0xf6e2); + static const IconData thinGhost = IconData(0xf6e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gif icon /// /// https://fontawesome.com/icons/gif?style=solid /// animation, img - static const IconData solidGif = IconDataSolid(0xe190); + static const IconData solidGif = IconData(0xe190, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gif icon /// /// https://fontawesome.com/icons/gif?style=regular /// animation, img - static const IconData gif = IconDataRegular(0xe190); + static const IconData gif = IconData(0xe190, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gif icon /// /// https://fontawesome.com/icons/gif?style=light /// animation, img - static const IconData lightGif = IconDataLight(0xe190); + static const IconData lightGif = IconData(0xe190, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gif icon /// /// https://fontawesome.com/icons/gif?style=thin /// animation, img - static const IconData thinGif = IconDataThin(0xe190); + static const IconData thinGif = IconData(0xe190, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gift icon /// /// https://fontawesome.com/icons/gift?style=solid /// box, celebration, christmas, generosity, gift, giving, holiday, party, present, wrapped, wrapped gift, xmas - static const IconData solidGift = IconDataSolid(0xf06b); + static const IconData solidGift = IconData(0xf06b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gift icon /// /// https://fontawesome.com/icons/gift?style=regular /// box, celebration, christmas, generosity, gift, giving, holiday, party, present, wrapped, wrapped gift, xmas - static const IconData gift = IconDataRegular(0xf06b); + static const IconData gift = IconData(0xf06b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gift icon /// /// https://fontawesome.com/icons/gift?style=light /// box, celebration, christmas, generosity, gift, giving, holiday, party, present, wrapped, wrapped gift, xmas - static const IconData lightGift = IconDataLight(0xf06b); + static const IconData lightGift = IconData(0xf06b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gift icon /// /// https://fontawesome.com/icons/gift?style=thin /// box, celebration, christmas, generosity, gift, giving, holiday, party, present, wrapped, wrapped gift, xmas - static const IconData thinGift = IconDataThin(0xf06b); + static const IconData thinGift = IconData(0xf06b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gift Card icon /// /// https://fontawesome.com/icons/gift-card?style=solid /// christmas, generosity, giving, holiday, money, party, present, salary, wrapped, xmas - static const IconData solidGiftCard = IconDataSolid(0xf663); + static const IconData solidGiftCard = IconData(0xf663, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gift Card icon /// /// https://fontawesome.com/icons/gift-card?style=regular /// christmas, generosity, giving, holiday, money, party, present, salary, wrapped, xmas - static const IconData giftCard = IconDataRegular(0xf663); + static const IconData giftCard = IconData(0xf663, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gift Card icon /// /// https://fontawesome.com/icons/gift-card?style=light /// christmas, generosity, giving, holiday, money, party, present, salary, wrapped, xmas - static const IconData lightGiftCard = IconDataLight(0xf663); + static const IconData lightGiftCard = IconData(0xf663, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gift Card icon /// /// https://fontawesome.com/icons/gift-card?style=thin /// christmas, generosity, giving, holiday, money, party, present, salary, wrapped, xmas - static const IconData thinGiftCard = IconDataThin(0xf663); + static const IconData thinGiftCard = IconData(0xf663, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gifts icon /// /// https://fontawesome.com/icons/gifts?style=solid /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData solidGifts = IconDataSolid(0xf79c); + static const IconData solidGifts = IconData(0xf79c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gifts icon /// /// https://fontawesome.com/icons/gifts?style=regular /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData gifts = IconDataRegular(0xf79c); + static const IconData gifts = IconData(0xf79c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gifts icon /// /// https://fontawesome.com/icons/gifts?style=light /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData lightGifts = IconDataLight(0xf79c); + static const IconData lightGifts = IconData(0xf79c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gifts icon /// /// https://fontawesome.com/icons/gifts?style=thin /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData thinGifts = IconDataThin(0xf79c); + static const IconData thinGifts = IconData(0xf79c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gingerbread Man icon /// /// https://fontawesome.com/icons/gingerbread-man?style=solid /// cookie, decoration, frosting, holiday - static const IconData solidGingerbreadMan = IconDataSolid(0xf79d); + static const IconData solidGingerbreadMan = IconData(0xf79d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gingerbread Man icon /// /// https://fontawesome.com/icons/gingerbread-man?style=regular /// cookie, decoration, frosting, holiday - static const IconData gingerbreadMan = IconDataRegular(0xf79d); + static const IconData gingerbreadMan = IconData(0xf79d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gingerbread Man icon /// /// https://fontawesome.com/icons/gingerbread-man?style=light /// cookie, decoration, frosting, holiday - static const IconData lightGingerbreadMan = IconDataLight(0xf79d); + static const IconData lightGingerbreadMan = IconData(0xf79d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gingerbread Man icon /// /// https://fontawesome.com/icons/gingerbread-man?style=thin /// cookie, decoration, frosting, holiday - static const IconData thinGingerbreadMan = IconDataThin(0xf79d); + static const IconData thinGingerbreadMan = IconData(0xf79d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Git icon /// /// https://fontawesome.com/icons/git?style=brands - static const IconData git = IconDataBrands(0xf1d3); + static const IconData git = IconData(0xf1d3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Git Alt icon /// /// https://fontawesome.com/icons/git-alt?style=brands - static const IconData gitAlt = IconDataBrands(0xf841); + static const IconData gitAlt = IconData(0xf841, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands GitHub icon /// /// https://fontawesome.com/icons/github?style=brands /// octocat - static const IconData github = IconDataBrands(0xf09b); + static const IconData github = IconData(0xf09b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate GitHub icon /// /// https://fontawesome.com/icons/github-alt?style=brands /// octocat - static const IconData githubAlt = IconDataBrands(0xf113); + static const IconData githubAlt = IconData(0xf113, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands GitKraken icon /// /// https://fontawesome.com/icons/gitkraken?style=brands - static const IconData gitkraken = IconDataBrands(0xf3a6); + static const IconData gitkraken = IconData(0xf3a6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands GitLab icon /// /// https://fontawesome.com/icons/gitlab?style=brands /// Axosoft - static const IconData gitlab = IconDataBrands(0xf296); + static const IconData gitlab = IconData(0xf296, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Gitter icon /// /// https://fontawesome.com/icons/gitter?style=brands - static const IconData gitter = IconDataBrands(0xf426); + static const IconData gitter = IconData(0xf426, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Glass icon /// /// https://fontawesome.com/icons/glass?style=solid /// alcohol, beverage, drink, glass, glass of milk, milk, water - static const IconData solidGlass = IconDataSolid(0xf804); + static const IconData solidGlass = IconData(0xf804, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glass icon /// /// https://fontawesome.com/icons/glass?style=regular /// alcohol, beverage, drink, glass, glass of milk, milk, water - static const IconData glass = IconDataRegular(0xf804); + static const IconData glass = IconData(0xf804, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glass icon /// /// https://fontawesome.com/icons/glass?style=light /// alcohol, beverage, drink, glass, glass of milk, milk, water - static const IconData lightGlass = IconDataLight(0xf804); + static const IconData lightGlass = IconData(0xf804, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glass icon /// /// https://fontawesome.com/icons/glass?style=thin /// alcohol, beverage, drink, glass, glass of milk, milk, water - static const IconData thinGlass = IconDataThin(0xf804); + static const IconData thinGlass = IconData(0xf804, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glass Citrus icon /// /// https://fontawesome.com/icons/glass-citrus?style=solid /// cocktail, drink, lemonade, refreshing, water - static const IconData solidGlassCitrus = IconDataSolid(0xf869); + static const IconData solidGlassCitrus = IconData(0xf869, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glass Citrus icon /// /// https://fontawesome.com/icons/glass-citrus?style=regular /// cocktail, drink, lemonade, refreshing, water - static const IconData glassCitrus = IconDataRegular(0xf869); + static const IconData glassCitrus = IconData(0xf869, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glass Citrus icon /// /// https://fontawesome.com/icons/glass-citrus?style=light /// cocktail, drink, lemonade, refreshing, water - static const IconData lightGlassCitrus = IconDataLight(0xf869); + static const IconData lightGlassCitrus = IconData(0xf869, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glass Citrus icon /// /// https://fontawesome.com/icons/glass-citrus?style=thin /// cocktail, drink, lemonade, refreshing, water - static const IconData thinGlassCitrus = IconDataThin(0xf869); + static const IconData thinGlassCitrus = IconData(0xf869, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glass Empty icon /// /// https://fontawesome.com/icons/glass-empty?style=solid /// drink, water - static const IconData solidGlassEmpty = IconDataSolid(0xe191); + static const IconData solidGlassEmpty = IconData(0xe191, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glass Empty icon /// /// https://fontawesome.com/icons/glass-empty?style=regular /// drink, water - static const IconData glassEmpty = IconDataRegular(0xe191); + static const IconData glassEmpty = IconData(0xe191, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glass Empty icon /// /// https://fontawesome.com/icons/glass-empty?style=light /// drink, water - static const IconData lightGlassEmpty = IconDataLight(0xe191); + static const IconData lightGlassEmpty = IconData(0xe191, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glass Empty icon /// /// https://fontawesome.com/icons/glass-empty?style=thin /// drink, water - static const IconData thinGlassEmpty = IconDataThin(0xe191); + static const IconData thinGlassEmpty = IconData(0xe191, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glass Half icon /// /// https://fontawesome.com/icons/glass-half?style=solid /// drink, optimism, pessimism, water - static const IconData solidGlassHalf = IconDataSolid(0xe192); + static const IconData solidGlassHalf = IconData(0xe192, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-half-empty for icon [solidGlassHalf] @Deprecated('Use "solidGlassHalf" instead.') @@ -43125,7 +43125,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glass-half?style=regular /// drink, optimism, pessimism, water - static const IconData glassHalf = IconDataRegular(0xe192); + static const IconData glassHalf = IconData(0xe192, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-half-empty for icon [glassHalf] @Deprecated('Use "glassHalf" instead.') @@ -43139,7 +43139,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glass-half?style=light /// drink, optimism, pessimism, water - static const IconData lightGlassHalf = IconDataLight(0xe192); + static const IconData lightGlassHalf = IconData(0xe192, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-half-empty for icon [lightGlassHalf] @Deprecated('Use "lightGlassHalf" instead.') @@ -43153,7 +43153,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glass-half?style=thin /// drink, optimism, pessimism, water - static const IconData thinGlassHalf = IconDataThin(0xe192); + static const IconData thinGlassHalf = IconData(0xe192, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-half-empty for icon [thinGlassHalf] @Deprecated('Use "thinGlassHalf" instead.') @@ -43167,79 +43167,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glass-water?style=solid /// potable, water - static const IconData solidGlassWater = IconDataSolid(0xe4f4); + static const IconData solidGlassWater = IconData(0xe4f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glass Water icon /// /// https://fontawesome.com/icons/glass-water?style=regular /// potable, water - static const IconData glassWater = IconDataRegular(0xe4f4); + static const IconData glassWater = IconData(0xe4f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glass Water icon /// /// https://fontawesome.com/icons/glass-water?style=light /// potable, water - static const IconData lightGlassWater = IconDataLight(0xe4f4); + static const IconData lightGlassWater = IconData(0xe4f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glass Water icon /// /// https://fontawesome.com/icons/glass-water?style=thin /// potable, water - static const IconData thinGlassWater = IconDataThin(0xe4f4); + static const IconData thinGlassWater = IconData(0xe4f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glass Water Droplet icon /// /// https://fontawesome.com/icons/glass-water-droplet?style=solid /// potable, water - static const IconData solidGlassWaterDroplet = IconDataSolid(0xe4f5); + static const IconData solidGlassWaterDroplet = IconData(0xe4f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glass Water Droplet icon /// /// https://fontawesome.com/icons/glass-water-droplet?style=regular /// potable, water - static const IconData glassWaterDroplet = IconDataRegular(0xe4f5); + static const IconData glassWaterDroplet = IconData(0xe4f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glass Water Droplet icon /// /// https://fontawesome.com/icons/glass-water-droplet?style=light /// potable, water - static const IconData lightGlassWaterDroplet = IconDataLight(0xe4f5); + static const IconData lightGlassWaterDroplet = IconData(0xe4f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glass Water Droplet icon /// /// https://fontawesome.com/icons/glass-water-droplet?style=thin /// potable, water - static const IconData thinGlassWaterDroplet = IconDataThin(0xe4f5); + static const IconData thinGlassWaterDroplet = IconData(0xe4f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glasses icon /// /// https://fontawesome.com/icons/glasses?style=solid /// hipster, nerd, reading, sight, spectacles, vision - static const IconData solidGlasses = IconDataSolid(0xf530); + static const IconData solidGlasses = IconData(0xf530, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Glasses icon /// /// https://fontawesome.com/icons/glasses?style=regular /// hipster, nerd, reading, sight, spectacles, vision - static const IconData glasses = IconDataRegular(0xf530); + static const IconData glasses = IconData(0xf530, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Glasses icon /// /// https://fontawesome.com/icons/glasses?style=light /// hipster, nerd, reading, sight, spectacles, vision - static const IconData lightGlasses = IconDataLight(0xf530); + static const IconData lightGlasses = IconData(0xf530, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Glasses icon /// /// https://fontawesome.com/icons/glasses?style=thin /// hipster, nerd, reading, sight, spectacles, vision - static const IconData thinGlasses = IconDataThin(0xf530); + static const IconData thinGlasses = IconData(0xf530, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Glasses Round icon /// /// https://fontawesome.com/icons/glasses-round?style=solid /// clothing, eye, eyeglasses, eyewear, glasses, hipster, nerd, reading, sight, spectacles, vision - static const IconData solidGlassesRound = IconDataSolid(0xf5f5); + static const IconData solidGlassesRound = IconData(0xf5f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glasses-alt for icon [solidGlassesRound] @Deprecated('Use "solidGlassesRound" instead.') @@ -43249,7 +43249,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glasses-round?style=regular /// clothing, eye, eyeglasses, eyewear, glasses, hipster, nerd, reading, sight, spectacles, vision - static const IconData glassesRound = IconDataRegular(0xf5f5); + static const IconData glassesRound = IconData(0xf5f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glasses-alt for icon [glassesRound] @Deprecated('Use "glassesRound" instead.') @@ -43259,7 +43259,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glasses-round?style=light /// clothing, eye, eyeglasses, eyewear, glasses, hipster, nerd, reading, sight, spectacles, vision - static const IconData lightGlassesRound = IconDataLight(0xf5f5); + static const IconData lightGlassesRound = IconData(0xf5f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glasses-alt for icon [lightGlassesRound] @Deprecated('Use "lightGlassesRound" instead.') @@ -43269,7 +43269,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/glasses-round?style=thin /// clothing, eye, eyeglasses, eyewear, glasses, hipster, nerd, reading, sight, spectacles, vision - static const IconData thinGlassesRound = IconDataThin(0xf5f5); + static const IconData thinGlassesRound = IconData(0xf5f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glasses-alt for icon [thinGlassesRound] @Deprecated('Use "thinGlassesRound" instead.') @@ -43278,148 +43278,148 @@ class FontAwesomeIcons { /// Brands Glide icon /// /// https://fontawesome.com/icons/glide?style=brands - static const IconData glide = IconDataBrands(0xf2a5); + static const IconData glide = IconData(0xf2a5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Glide G icon /// /// https://fontawesome.com/icons/glide-g?style=brands - static const IconData glideG = IconDataBrands(0xf2a6); + static const IconData glideG = IconData(0xf2a6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Globe icon /// /// https://fontawesome.com/icons/globe?style=solid /// all, coordinates, country, earth, global, globe, globe with meridians, gps, internet, language, localize, location, map, meridians, network, online, place, planet, translate, travel, world, www - static const IconData solidGlobe = IconDataSolid(0xf0ac); + static const IconData solidGlobe = IconData(0xf0ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Globe icon /// /// https://fontawesome.com/icons/globe?style=regular /// all, coordinates, country, earth, global, globe, globe with meridians, gps, internet, language, localize, location, map, meridians, network, online, place, planet, translate, travel, world, www - static const IconData globe = IconDataRegular(0xf0ac); + static const IconData globe = IconData(0xf0ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Globe icon /// /// https://fontawesome.com/icons/globe?style=light /// all, coordinates, country, earth, global, globe, globe with meridians, gps, internet, language, localize, location, map, meridians, network, online, place, planet, translate, travel, world, www - static const IconData lightGlobe = IconDataLight(0xf0ac); + static const IconData lightGlobe = IconData(0xf0ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Globe icon /// /// https://fontawesome.com/icons/globe?style=thin /// all, coordinates, country, earth, global, globe, globe with meridians, gps, internet, language, localize, location, map, meridians, network, online, place, planet, translate, travel, world, www - static const IconData thinGlobe = IconDataThin(0xf0ac); + static const IconData thinGlobe = IconData(0xf0ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Globe Pointer icon /// /// https://fontawesome.com/icons/globe-pointer?style=solid /// World Wide Web, find, globe, search, www, cyberspace, internet, link, net, website - static const IconData solidGlobePointer = IconDataSolid(0xe60e); + static const IconData solidGlobePointer = IconData(0xe60e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Globe Pointer icon /// /// https://fontawesome.com/icons/globe-pointer?style=regular /// World Wide Web, find, globe, search, www, cyberspace, internet, link, net, website - static const IconData globePointer = IconDataRegular(0xe60e); + static const IconData globePointer = IconData(0xe60e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Globe Pointer icon /// /// https://fontawesome.com/icons/globe-pointer?style=light /// World Wide Web, find, globe, search, www, cyberspace, internet, link, net, website - static const IconData lightGlobePointer = IconDataLight(0xe60e); + static const IconData lightGlobePointer = IconData(0xe60e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Globe Pointer icon /// /// https://fontawesome.com/icons/globe-pointer?style=thin /// World Wide Web, find, globe, search, www, cyberspace, internet, link, net, website - static const IconData thinGlobePointer = IconDataThin(0xe60e); + static const IconData thinGlobePointer = IconData(0xe60e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Globe Snow icon /// /// https://fontawesome.com/icons/globe-snow?style=solid /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData solidGlobeSnow = IconDataSolid(0xf7a3); + static const IconData solidGlobeSnow = IconData(0xf7a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Globe Snow icon /// /// https://fontawesome.com/icons/globe-snow?style=regular /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData globeSnow = IconDataRegular(0xf7a3); + static const IconData globeSnow = IconData(0xf7a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Globe Snow icon /// /// https://fontawesome.com/icons/globe-snow?style=light /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData lightGlobeSnow = IconDataLight(0xf7a3); + static const IconData lightGlobeSnow = IconData(0xf7a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Globe Snow icon /// /// https://fontawesome.com/icons/globe-snow?style=thin /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData thinGlobeSnow = IconDataThin(0xf7a3); + static const IconData thinGlobeSnow = IconData(0xf7a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Globe Stand icon /// /// https://fontawesome.com/icons/globe-stand?style=solid /// earth, geography, global, localize, location, map, travel, world, www - static const IconData solidGlobeStand = IconDataSolid(0xf5f6); + static const IconData solidGlobeStand = IconData(0xf5f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Globe Stand icon /// /// https://fontawesome.com/icons/globe-stand?style=regular /// earth, geography, global, localize, location, map, travel, world, www - static const IconData globeStand = IconDataRegular(0xf5f6); + static const IconData globeStand = IconData(0xf5f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Globe Stand icon /// /// https://fontawesome.com/icons/globe-stand?style=light /// earth, geography, global, localize, location, map, travel, world, www - static const IconData lightGlobeStand = IconDataLight(0xf5f6); + static const IconData lightGlobeStand = IconData(0xf5f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Globe Stand icon /// /// https://fontawesome.com/icons/globe-stand?style=thin /// earth, geography, global, localize, location, map, travel, world, www - static const IconData thinGlobeStand = IconDataThin(0xf5f6); + static const IconData thinGlobeStand = IconData(0xf5f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Goal Net icon /// /// https://fontawesome.com/icons/goal-net?style=solid /// goal, goal net, hockey, lacrosse, net, penalty, soccer - static const IconData solidGoalNet = IconDataSolid(0xe3ab); + static const IconData solidGoalNet = IconData(0xe3ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Goal Net icon /// /// https://fontawesome.com/icons/goal-net?style=regular /// goal, goal net, hockey, lacrosse, net, penalty, soccer - static const IconData goalNet = IconDataRegular(0xe3ab); + static const IconData goalNet = IconData(0xe3ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Goal Net icon /// /// https://fontawesome.com/icons/goal-net?style=light /// goal, goal net, hockey, lacrosse, net, penalty, soccer - static const IconData lightGoalNet = IconDataLight(0xe3ab); + static const IconData lightGoalNet = IconData(0xe3ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Goal Net icon /// /// https://fontawesome.com/icons/goal-net?style=thin /// goal, goal net, hockey, lacrosse, net, penalty, soccer - static const IconData thinGoalNet = IconDataThin(0xe3ab); + static const IconData thinGoalNet = IconData(0xe3ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Gofore icon /// /// https://fontawesome.com/icons/gofore?style=brands - static const IconData gofore = IconDataBrands(0xf3a7); + static const IconData gofore = IconData(0xf3a7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Go icon /// /// https://fontawesome.com/icons/golang?style=brands - static const IconData golang = IconDataBrands(0xe40f); + static const IconData golang = IconData(0xe40f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Golf Ball Tee icon /// /// https://fontawesome.com/icons/golf-ball-tee?style=solid /// caddy, eagle, putt, tee - static const IconData solidGolfBallTee = IconDataSolid(0xf450); + static const IconData solidGolfBallTee = IconData(0xf450, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias golf-ball for icon [solidGolfBallTee] @Deprecated('Use "solidGolfBallTee" instead.') @@ -43429,7 +43429,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/golf-ball-tee?style=regular /// caddy, eagle, putt, tee - static const IconData golfBallTee = IconDataRegular(0xf450); + static const IconData golfBallTee = IconData(0xf450, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias golf-ball for icon [golfBallTee] @Deprecated('Use "golfBallTee" instead.') @@ -43439,7 +43439,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/golf-ball-tee?style=light /// caddy, eagle, putt, tee - static const IconData lightGolfBallTee = IconDataLight(0xf450); + static const IconData lightGolfBallTee = IconData(0xf450, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias golf-ball for icon [lightGolfBallTee] @Deprecated('Use "lightGolfBallTee" instead.') @@ -43449,7 +43449,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/golf-ball-tee?style=thin /// caddy, eagle, putt, tee - static const IconData thinGolfBallTee = IconDataThin(0xf450); + static const IconData thinGolfBallTee = IconData(0xf450, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias golf-ball for icon [thinGolfBallTee] @Deprecated('Use "thinGolfBallTee" instead.') @@ -43459,132 +43459,132 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/golf-club?style=solid /// caddy, eagle, putt, tee - static const IconData solidGolfClub = IconDataSolid(0xf451); + static const IconData solidGolfClub = IconData(0xf451, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Golf Club icon /// /// https://fontawesome.com/icons/golf-club?style=regular /// caddy, eagle, putt, tee - static const IconData golfClub = IconDataRegular(0xf451); + static const IconData golfClub = IconData(0xf451, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Golf Club icon /// /// https://fontawesome.com/icons/golf-club?style=light /// caddy, eagle, putt, tee - static const IconData lightGolfClub = IconDataLight(0xf451); + static const IconData lightGolfClub = IconData(0xf451, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Golf Club icon /// /// https://fontawesome.com/icons/golf-club?style=thin /// caddy, eagle, putt, tee - static const IconData thinGolfClub = IconDataThin(0xf451); + static const IconData thinGolfClub = IconData(0xf451, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Golf Flag Hole icon /// /// https://fontawesome.com/icons/golf-flag-hole?style=solid /// bogey, eagle, flag in hole, golf, hole, putt - static const IconData solidGolfFlagHole = IconDataSolid(0xe3ac); + static const IconData solidGolfFlagHole = IconData(0xe3ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Golf Flag Hole icon /// /// https://fontawesome.com/icons/golf-flag-hole?style=regular /// bogey, eagle, flag in hole, golf, hole, putt - static const IconData golfFlagHole = IconDataRegular(0xe3ac); + static const IconData golfFlagHole = IconData(0xe3ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Golf Flag Hole icon /// /// https://fontawesome.com/icons/golf-flag-hole?style=light /// bogey, eagle, flag in hole, golf, hole, putt - static const IconData lightGolfFlagHole = IconDataLight(0xe3ac); + static const IconData lightGolfFlagHole = IconData(0xe3ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Golf Flag Hole icon /// /// https://fontawesome.com/icons/golf-flag-hole?style=thin /// bogey, eagle, flag in hole, golf, hole, putt - static const IconData thinGolfFlagHole = IconDataThin(0xe3ac); + static const IconData thinGolfFlagHole = IconData(0xe3ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Goodreads icon /// /// https://fontawesome.com/icons/goodreads?style=brands - static const IconData goodreads = IconDataBrands(0xf3a8); + static const IconData goodreads = IconData(0xf3a8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Goodreads G icon /// /// https://fontawesome.com/icons/goodreads-g?style=brands - static const IconData goodreadsG = IconDataBrands(0xf3a9); + static const IconData goodreadsG = IconData(0xf3a9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Logo icon /// /// https://fontawesome.com/icons/google?style=brands - static const IconData google = IconDataBrands(0xf1a0); + static const IconData google = IconData(0xf1a0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Drive icon /// /// https://fontawesome.com/icons/google-drive?style=brands - static const IconData googleDrive = IconDataBrands(0xf3aa); + static const IconData googleDrive = IconData(0xf3aa, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Pay icon /// /// https://fontawesome.com/icons/google-pay?style=brands - static const IconData googlePay = IconDataBrands(0xe079); + static const IconData googlePay = IconData(0xe079, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Play icon /// /// https://fontawesome.com/icons/google-play?style=brands /// playstore - static const IconData googlePlay = IconDataBrands(0xf3ab); + static const IconData googlePlay = IconData(0xf3ab, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Plus icon /// /// https://fontawesome.com/icons/google-plus?style=brands /// google-plus-circle, google-plus-official - static const IconData googlePlus = IconDataBrands(0xf2b3); + static const IconData googlePlus = IconData(0xf2b3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Plus G icon /// /// https://fontawesome.com/icons/google-plus-g?style=brands /// google-plus, social network - static const IconData googlePlusG = IconDataBrands(0xf0d5); + static const IconData googlePlusG = IconData(0xf0d5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Scholar icon /// /// https://fontawesome.com/icons/google-scholar?style=brands - static const IconData googleScholar = IconDataBrands(0xe63b); + static const IconData googleScholar = IconData(0xe63b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Google Wallet icon /// /// https://fontawesome.com/icons/google-wallet?style=brands - static const IconData googleWallet = IconDataBrands(0xf1ee); + static const IconData googleWallet = IconData(0xf1ee, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Gopuram icon /// /// https://fontawesome.com/icons/gopuram?style=solid /// building, entrance, hinduism, temple, tower - static const IconData solidGopuram = IconDataSolid(0xf664); + static const IconData solidGopuram = IconData(0xf664, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gopuram icon /// /// https://fontawesome.com/icons/gopuram?style=regular /// building, entrance, hinduism, temple, tower - static const IconData gopuram = IconDataRegular(0xf664); + static const IconData gopuram = IconData(0xf664, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gopuram icon /// /// https://fontawesome.com/icons/gopuram?style=light /// building, entrance, hinduism, temple, tower - static const IconData lightGopuram = IconDataLight(0xf664); + static const IconData lightGopuram = IconData(0xf664, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gopuram icon /// /// https://fontawesome.com/icons/gopuram?style=thin /// building, entrance, hinduism, temple, tower - static const IconData thinGopuram = IconDataThin(0xf664); + static const IconData thinGopuram = IconData(0xf664, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Graduation Cap icon /// /// https://fontawesome.com/icons/graduation-cap?style=solid /// cap, celebration, ceremony, clothing, college, graduate, graduation, graduation cap, hat, learning, school, student - static const IconData solidGraduationCap = IconDataSolid(0xf19d); + static const IconData solidGraduationCap = IconData(0xf19d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mortar-board for icon [solidGraduationCap] @Deprecated('Use "solidGraduationCap" instead.') @@ -43594,7 +43594,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/graduation-cap?style=regular /// cap, celebration, ceremony, clothing, college, graduate, graduation, graduation cap, hat, learning, school, student - static const IconData graduationCap = IconDataRegular(0xf19d); + static const IconData graduationCap = IconData(0xf19d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mortar-board for icon [graduationCap] @Deprecated('Use "graduationCap" instead.') @@ -43604,7 +43604,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/graduation-cap?style=light /// cap, celebration, ceremony, clothing, college, graduate, graduation, graduation cap, hat, learning, school, student - static const IconData lightGraduationCap = IconDataLight(0xf19d); + static const IconData lightGraduationCap = IconData(0xf19d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mortar-board for icon [lightGraduationCap] @Deprecated('Use "lightGraduationCap" instead.') @@ -43614,7 +43614,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/graduation-cap?style=thin /// cap, celebration, ceremony, clothing, college, graduate, graduation, graduation cap, hat, learning, school, student - static const IconData thinGraduationCap = IconDataThin(0xf19d); + static const IconData thinGraduationCap = IconData(0xf19d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mortar-board for icon [thinGraduationCap] @Deprecated('Use "thinGraduationCap" instead.') @@ -43624,162 +43624,162 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/gramophone?style=solid /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData solidGramophone = IconDataSolid(0xf8bd); + static const IconData solidGramophone = IconData(0xf8bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gramophone icon /// /// https://fontawesome.com/icons/gramophone?style=regular /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData gramophone = IconDataRegular(0xf8bd); + static const IconData gramophone = IconData(0xf8bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gramophone icon /// /// https://fontawesome.com/icons/gramophone?style=light /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData lightGramophone = IconDataLight(0xf8bd); + static const IconData lightGramophone = IconData(0xf8bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gramophone icon /// /// https://fontawesome.com/icons/gramophone?style=thin /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData thinGramophone = IconDataThin(0xf8bd); + static const IconData thinGramophone = IconData(0xf8bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grapes icon /// /// https://fontawesome.com/icons/grapes?style=solid /// fruit, grape, grapes, raisin, vine, vineyard, wine - static const IconData solidGrapes = IconDataSolid(0xe306); + static const IconData solidGrapes = IconData(0xe306, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grapes icon /// /// https://fontawesome.com/icons/grapes?style=regular /// fruit, grape, grapes, raisin, vine, vineyard, wine - static const IconData grapes = IconDataRegular(0xe306); + static const IconData grapes = IconData(0xe306, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grapes icon /// /// https://fontawesome.com/icons/grapes?style=light /// fruit, grape, grapes, raisin, vine, vineyard, wine - static const IconData lightGrapes = IconDataLight(0xe306); + static const IconData lightGrapes = IconData(0xe306, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grapes icon /// /// https://fontawesome.com/icons/grapes?style=thin /// fruit, grape, grapes, raisin, vine, vineyard, wine - static const IconData thinGrapes = IconDataThin(0xe306); + static const IconData thinGrapes = IconData(0xe306, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grate icon /// /// https://fontawesome.com/icons/grate?style=solid /// drain, manhole - static const IconData solidGrate = IconDataSolid(0xe193); + static const IconData solidGrate = IconData(0xe193, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grate icon /// /// https://fontawesome.com/icons/grate?style=regular /// drain, manhole - static const IconData grate = IconDataRegular(0xe193); + static const IconData grate = IconData(0xe193, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grate icon /// /// https://fontawesome.com/icons/grate?style=light /// drain, manhole - static const IconData lightGrate = IconDataLight(0xe193); + static const IconData lightGrate = IconData(0xe193, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grate icon /// /// https://fontawesome.com/icons/grate?style=thin /// drain, manhole - static const IconData thinGrate = IconDataThin(0xe193); + static const IconData thinGrate = IconData(0xe193, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grate Droplet icon /// /// https://fontawesome.com/icons/grate-droplet?style=solid /// drain, manhole - static const IconData solidGrateDroplet = IconDataSolid(0xe194); + static const IconData solidGrateDroplet = IconData(0xe194, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grate Droplet icon /// /// https://fontawesome.com/icons/grate-droplet?style=regular /// drain, manhole - static const IconData grateDroplet = IconDataRegular(0xe194); + static const IconData grateDroplet = IconData(0xe194, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grate Droplet icon /// /// https://fontawesome.com/icons/grate-droplet?style=light /// drain, manhole - static const IconData lightGrateDroplet = IconDataLight(0xe194); + static const IconData lightGrateDroplet = IconData(0xe194, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grate Droplet icon /// /// https://fontawesome.com/icons/grate-droplet?style=thin /// drain, manhole - static const IconData thinGrateDroplet = IconDataThin(0xe194); + static const IconData thinGrateDroplet = IconData(0xe194, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Gratipay (Gittip) icon /// /// https://fontawesome.com/icons/gratipay?style=brands /// favorite, heart, like, love - static const IconData gratipay = IconDataBrands(0xf184); + static const IconData gratipay = IconData(0xf184, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Grav icon /// /// https://fontawesome.com/icons/grav?style=brands - static const IconData grav = IconDataBrands(0xf2d6); + static const IconData grav = IconData(0xf2d6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Greater Than icon /// /// https://fontawesome.com/icons/greater-than?style=solid /// Greater-Than Sign, arithmetic, compare, math - static const IconData solidGreaterThan = IconDataSolid(0x3e); + static const IconData solidGreaterThan = IconData(0x3e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Greater Than icon /// /// https://fontawesome.com/icons/greater-than?style=regular /// Greater-Than Sign, arithmetic, compare, math - static const IconData greaterThan = IconDataRegular(0x3e); + static const IconData greaterThan = IconData(0x3e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Greater Than icon /// /// https://fontawesome.com/icons/greater-than?style=light /// Greater-Than Sign, arithmetic, compare, math - static const IconData lightGreaterThan = IconDataLight(0x3e); + static const IconData lightGreaterThan = IconData(0x3e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Greater Than icon /// /// https://fontawesome.com/icons/greater-than?style=thin /// Greater-Than Sign, arithmetic, compare, math - static const IconData thinGreaterThan = IconDataThin(0x3e); + static const IconData thinGreaterThan = IconData(0x3e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Greater Than Equal icon /// /// https://fontawesome.com/icons/greater-than-equal?style=solid /// arithmetic, compare, math - static const IconData solidGreaterThanEqual = IconDataSolid(0xf532); + static const IconData solidGreaterThanEqual = IconData(0xf532, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Greater Than Equal icon /// /// https://fontawesome.com/icons/greater-than-equal?style=regular /// arithmetic, compare, math - static const IconData greaterThanEqual = IconDataRegular(0xf532); + static const IconData greaterThanEqual = IconData(0xf532, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Greater Than Equal icon /// /// https://fontawesome.com/icons/greater-than-equal?style=light /// arithmetic, compare, math - static const IconData lightGreaterThanEqual = IconDataLight(0xf532); + static const IconData lightGreaterThanEqual = IconData(0xf532, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Greater Than Equal icon /// /// https://fontawesome.com/icons/greater-than-equal?style=thin /// arithmetic, compare, math - static const IconData thinGreaterThanEqual = IconDataThin(0xf532); + static const IconData thinGreaterThanEqual = IconData(0xf532, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid icon /// /// https://fontawesome.com/icons/grid?style=solid /// collection, grid, app, compact, filter, sort - static const IconData solidGrid = IconDataSolid(0xe195); + static const IconData solidGrid = IconData(0xe195, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grid-3 for icon [solidGrid] @Deprecated('Use "solidGrid" instead.') @@ -43789,7 +43789,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grid?style=regular /// collection, grid, app, compact, filter, sort - static const IconData grid = IconDataRegular(0xe195); + static const IconData grid = IconData(0xe195, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grid-3 for icon [grid] @Deprecated('Use "grid" instead.') @@ -43799,7 +43799,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grid?style=light /// collection, grid, app, compact, filter, sort - static const IconData lightGrid = IconDataLight(0xe195); + static const IconData lightGrid = IconData(0xe195, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grid-3 for icon [lightGrid] @Deprecated('Use "lightGrid" instead.') @@ -43809,7 +43809,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grid?style=thin /// collection, grid, app, compact, filter, sort - static const IconData thinGrid = IconDataThin(0xe195); + static const IconData thinGrid = IconData(0xe195, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grid-3 for icon [thinGrid] @Deprecated('Use "thinGrid" instead.') @@ -43819,343 +43819,343 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grid-2?style=solid /// collection, grid, app, filter, sort - static const IconData solidGrid2 = IconDataSolid(0xe196); + static const IconData solidGrid2 = IconData(0xe196, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid 2 icon /// /// https://fontawesome.com/icons/grid-2?style=regular /// collection, grid, app, filter, sort - static const IconData grid2 = IconDataRegular(0xe196); + static const IconData grid2 = IconData(0xe196, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid 2 icon /// /// https://fontawesome.com/icons/grid-2?style=light /// collection, grid, app, filter, sort - static const IconData lightGrid2 = IconDataLight(0xe196); + static const IconData lightGrid2 = IconData(0xe196, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid 2 icon /// /// https://fontawesome.com/icons/grid-2?style=thin /// collection, grid, app, filter, sort - static const IconData thinGrid2 = IconDataThin(0xe196); + static const IconData thinGrid2 = IconData(0xe196, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid 2 Plus icon /// /// https://fontawesome.com/icons/grid-2-plus?style=solid /// collection, grid, add, app, filter, sort - static const IconData solidGrid2Plus = IconDataSolid(0xe197); + static const IconData solidGrid2Plus = IconData(0xe197, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid 2 Plus icon /// /// https://fontawesome.com/icons/grid-2-plus?style=regular /// collection, grid, add, app, filter, sort - static const IconData grid2Plus = IconDataRegular(0xe197); + static const IconData grid2Plus = IconData(0xe197, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid 2 Plus icon /// /// https://fontawesome.com/icons/grid-2-plus?style=light /// collection, grid, add, app, filter, sort - static const IconData lightGrid2Plus = IconDataLight(0xe197); + static const IconData lightGrid2Plus = IconData(0xe197, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid 2 Plus icon /// /// https://fontawesome.com/icons/grid-2-plus?style=thin /// collection, grid, add, app, filter, sort - static const IconData thinGrid2Plus = IconDataThin(0xe197); + static const IconData thinGrid2Plus = IconData(0xe197, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid 4 icon /// /// https://fontawesome.com/icons/grid-4?style=solid /// collection, grid, app, compact, filter, sort - static const IconData solidGrid4 = IconDataSolid(0xe198); + static const IconData solidGrid4 = IconData(0xe198, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid 4 icon /// /// https://fontawesome.com/icons/grid-4?style=regular /// collection, grid, app, compact, filter, sort - static const IconData grid4 = IconDataRegular(0xe198); + static const IconData grid4 = IconData(0xe198, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid 4 icon /// /// https://fontawesome.com/icons/grid-4?style=light /// collection, grid, app, compact, filter, sort - static const IconData lightGrid4 = IconDataLight(0xe198); + static const IconData lightGrid4 = IconData(0xe198, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid 4 icon /// /// https://fontawesome.com/icons/grid-4?style=thin /// collection, grid, app, compact, filter, sort - static const IconData thinGrid4 = IconDataThin(0xe198); + static const IconData thinGrid4 = IconData(0xe198, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid 5 icon /// /// https://fontawesome.com/icons/grid-5?style=solid /// collection, grid, app, compact, filter, sort - static const IconData solidGrid5 = IconDataSolid(0xe199); + static const IconData solidGrid5 = IconData(0xe199, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid 5 icon /// /// https://fontawesome.com/icons/grid-5?style=regular /// collection, grid, app, compact, filter, sort - static const IconData grid5 = IconDataRegular(0xe199); + static const IconData grid5 = IconData(0xe199, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid 5 icon /// /// https://fontawesome.com/icons/grid-5?style=light /// collection, grid, app, compact, filter, sort - static const IconData lightGrid5 = IconDataLight(0xe199); + static const IconData lightGrid5 = IconData(0xe199, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid 5 icon /// /// https://fontawesome.com/icons/grid-5?style=thin /// collection, grid, app, compact, filter, sort - static const IconData thinGrid5 = IconDataThin(0xe199); + static const IconData thinGrid5 = IconData(0xe199, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Dividers icon /// /// https://fontawesome.com/icons/grid-dividers?style=solid /// collection, grid, app, grid, line, square - static const IconData solidGridDividers = IconDataSolid(0xe3ad); + static const IconData solidGridDividers = IconData(0xe3ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Dividers icon /// /// https://fontawesome.com/icons/grid-dividers?style=regular /// collection, grid, app, grid, line, square - static const IconData gridDividers = IconDataRegular(0xe3ad); + static const IconData gridDividers = IconData(0xe3ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Dividers icon /// /// https://fontawesome.com/icons/grid-dividers?style=light /// collection, grid, app, grid, line, square - static const IconData lightGridDividers = IconDataLight(0xe3ad); + static const IconData lightGridDividers = IconData(0xe3ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Dividers icon /// /// https://fontawesome.com/icons/grid-dividers?style=thin /// collection, grid, app, grid, line, square - static const IconData thinGridDividers = IconDataThin(0xe3ad); + static const IconData thinGridDividers = IconData(0xe3ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Horizontal icon /// /// https://fontawesome.com/icons/grid-horizontal?style=solid /// collection, grid, app, dashboard, launcher, square - static const IconData solidGridHorizontal = IconDataSolid(0xe307); + static const IconData solidGridHorizontal = IconData(0xe307, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Horizontal icon /// /// https://fontawesome.com/icons/grid-horizontal?style=regular /// collection, grid, app, dashboard, launcher, square - static const IconData gridHorizontal = IconDataRegular(0xe307); + static const IconData gridHorizontal = IconData(0xe307, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Horizontal icon /// /// https://fontawesome.com/icons/grid-horizontal?style=light /// collection, grid, app, dashboard, launcher, square - static const IconData lightGridHorizontal = IconDataLight(0xe307); + static const IconData lightGridHorizontal = IconData(0xe307, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Horizontal icon /// /// https://fontawesome.com/icons/grid-horizontal?style=thin /// collection, grid, app, dashboard, launcher, square - static const IconData thinGridHorizontal = IconDataThin(0xe307); + static const IconData thinGridHorizontal = IconData(0xe307, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Round icon /// /// https://fontawesome.com/icons/grid-round?style=solid /// grid, app, collection, filter, sort - static const IconData solidGridRound = IconDataSolid(0xe5da); + static const IconData solidGridRound = IconData(0xe5da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Round icon /// /// https://fontawesome.com/icons/grid-round?style=regular /// grid, app, collection, filter, sort - static const IconData gridRound = IconDataRegular(0xe5da); + static const IconData gridRound = IconData(0xe5da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Round icon /// /// https://fontawesome.com/icons/grid-round?style=light /// grid, app, collection, filter, sort - static const IconData lightGridRound = IconDataLight(0xe5da); + static const IconData lightGridRound = IconData(0xe5da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Round icon /// /// https://fontawesome.com/icons/grid-round?style=thin /// grid, app, collection, filter, sort - static const IconData thinGridRound = IconDataThin(0xe5da); + static const IconData thinGridRound = IconData(0xe5da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Round 2 icon /// /// https://fontawesome.com/icons/grid-round-2?style=solid /// grid, app, collection, filter, sort - static const IconData solidGridRound2 = IconDataSolid(0xe5db); + static const IconData solidGridRound2 = IconData(0xe5db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Round 2 icon /// /// https://fontawesome.com/icons/grid-round-2?style=regular /// grid, app, collection, filter, sort - static const IconData gridRound2 = IconDataRegular(0xe5db); + static const IconData gridRound2 = IconData(0xe5db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Round 2 icon /// /// https://fontawesome.com/icons/grid-round-2?style=light /// grid, app, collection, filter, sort - static const IconData lightGridRound2 = IconDataLight(0xe5db); + static const IconData lightGridRound2 = IconData(0xe5db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Round 2 icon /// /// https://fontawesome.com/icons/grid-round-2?style=thin /// grid, app, collection, filter, sort - static const IconData thinGridRound2 = IconDataThin(0xe5db); + static const IconData thinGridRound2 = IconData(0xe5db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Round 2 Plus icon /// /// https://fontawesome.com/icons/grid-round-2-plus?style=solid /// grid, add, app, collection, filter, sort - static const IconData solidGridRound2Plus = IconDataSolid(0xe5dc); + static const IconData solidGridRound2Plus = IconData(0xe5dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Round 2 Plus icon /// /// https://fontawesome.com/icons/grid-round-2-plus?style=regular /// grid, add, app, collection, filter, sort - static const IconData gridRound2Plus = IconDataRegular(0xe5dc); + static const IconData gridRound2Plus = IconData(0xe5dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Round 2 Plus icon /// /// https://fontawesome.com/icons/grid-round-2-plus?style=light /// grid, add, app, collection, filter, sort - static const IconData lightGridRound2Plus = IconDataLight(0xe5dc); + static const IconData lightGridRound2Plus = IconData(0xe5dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Round 2 Plus icon /// /// https://fontawesome.com/icons/grid-round-2-plus?style=thin /// grid, add, app, collection, filter, sort - static const IconData thinGridRound2Plus = IconDataThin(0xe5dc); + static const IconData thinGridRound2Plus = IconData(0xe5dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Round 4 icon /// /// https://fontawesome.com/icons/grid-round-4?style=solid /// grid, app, collection, filter, sort - static const IconData solidGridRound4 = IconDataSolid(0xe5dd); + static const IconData solidGridRound4 = IconData(0xe5dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Round 4 icon /// /// https://fontawesome.com/icons/grid-round-4?style=regular /// grid, app, collection, filter, sort - static const IconData gridRound4 = IconDataRegular(0xe5dd); + static const IconData gridRound4 = IconData(0xe5dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Round 4 icon /// /// https://fontawesome.com/icons/grid-round-4?style=light /// grid, app, collection, filter, sort - static const IconData lightGridRound4 = IconDataLight(0xe5dd); + static const IconData lightGridRound4 = IconData(0xe5dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Round 4 icon /// /// https://fontawesome.com/icons/grid-round-4?style=thin /// grid, app, collection, filter, sort - static const IconData thinGridRound4 = IconDataThin(0xe5dd); + static const IconData thinGridRound4 = IconData(0xe5dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grid Round 5 icon /// /// https://fontawesome.com/icons/grid-round-5?style=solid /// grid, app, collection, filter, sort - static const IconData solidGridRound5 = IconDataSolid(0xe5de); + static const IconData solidGridRound5 = IconData(0xe5de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grid Round 5 icon /// /// https://fontawesome.com/icons/grid-round-5?style=regular /// grid, app, collection, filter, sort - static const IconData gridRound5 = IconDataRegular(0xe5de); + static const IconData gridRound5 = IconData(0xe5de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grid Round 5 icon /// /// https://fontawesome.com/icons/grid-round-5?style=light /// grid, app, collection, filter, sort - static const IconData lightGridRound5 = IconDataLight(0xe5de); + static const IconData lightGridRound5 = IconData(0xe5de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grid Round 5 icon /// /// https://fontawesome.com/icons/grid-round-5?style=thin /// grid, app, collection, filter, sort - static const IconData thinGridRound5 = IconDataThin(0xe5de); + static const IconData thinGridRound5 = IconData(0xe5de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grill icon /// /// https://fontawesome.com/icons/grill?style=solid /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData solidGrill = IconDataSolid(0xe5a3); + static const IconData solidGrill = IconData(0xe5a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grill icon /// /// https://fontawesome.com/icons/grill?style=regular /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData grill = IconDataRegular(0xe5a3); + static const IconData grill = IconData(0xe5a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grill icon /// /// https://fontawesome.com/icons/grill?style=light /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData lightGrill = IconDataLight(0xe5a3); + static const IconData lightGrill = IconData(0xe5a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grill icon /// /// https://fontawesome.com/icons/grill?style=thin /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData thinGrill = IconDataThin(0xe5a3); + static const IconData thinGrill = IconData(0xe5a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grill Fire icon /// /// https://fontawesome.com/icons/grill-fire?style=solid /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData solidGrillFire = IconDataSolid(0xe5a4); + static const IconData solidGrillFire = IconData(0xe5a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grill Fire icon /// /// https://fontawesome.com/icons/grill-fire?style=regular /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData grillFire = IconDataRegular(0xe5a4); + static const IconData grillFire = IconData(0xe5a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grill Fire icon /// /// https://fontawesome.com/icons/grill-fire?style=light /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData lightGrillFire = IconDataLight(0xe5a4); + static const IconData lightGrillFire = IconData(0xe5a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grill Fire icon /// /// https://fontawesome.com/icons/grill-fire?style=thin /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData thinGrillFire = IconDataThin(0xe5a4); + static const IconData thinGrillFire = IconData(0xe5a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grill Hot icon /// /// https://fontawesome.com/icons/grill-hot?style=solid /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData solidGrillHot = IconDataSolid(0xe5a5); + static const IconData solidGrillHot = IconData(0xe5a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grill Hot icon /// /// https://fontawesome.com/icons/grill-hot?style=regular /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData grillHot = IconDataRegular(0xe5a5); + static const IconData grillHot = IconData(0xe5a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grill Hot icon /// /// https://fontawesome.com/icons/grill-hot?style=light /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData lightGrillHot = IconDataLight(0xe5a5); + static const IconData lightGrillHot = IconData(0xe5a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grill Hot icon /// /// https://fontawesome.com/icons/grill-hot?style=thin /// barbecue, barbeque, bbq, burger, charcoal, cook, cookout, hot, smoke - static const IconData thinGrillHot = IconDataThin(0xe5a5); + static const IconData thinGrillHot = IconData(0xe5a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grip icon /// /// https://fontawesome.com/icons/grip?style=solid /// affordance, drag, drop, grab, handle - static const IconData solidGrip = IconDataSolid(0xf58d); + static const IconData solidGrip = IconData(0xf58d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias grip-horizontal for icon [solidGrip] @Deprecated('Use "solidGrip" instead.') @@ -44165,7 +44165,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grip?style=regular /// affordance, drag, drop, grab, handle - static const IconData grip = IconDataRegular(0xf58d); + static const IconData grip = IconData(0xf58d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias grip-horizontal for icon [grip] @Deprecated('Use "grip" instead.') @@ -44175,7 +44175,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grip?style=light /// affordance, drag, drop, grab, handle - static const IconData lightGrip = IconDataLight(0xf58d); + static const IconData lightGrip = IconData(0xf58d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias grip-horizontal for icon [lightGrip] @Deprecated('Use "lightGrip" instead.') @@ -44185,7 +44185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grip?style=thin /// affordance, drag, drop, grab, handle - static const IconData thinGrip = IconDataThin(0xf58d); + static const IconData thinGrip = IconData(0xf58d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias grip-horizontal for icon [thinGrip] @Deprecated('Use "thinGrip" instead.') @@ -44195,637 +44195,637 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/grip-dots?style=solid /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData solidGripDots = IconDataSolid(0xe410); + static const IconData solidGripDots = IconData(0xe410, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grip Dots icon /// /// https://fontawesome.com/icons/grip-dots?style=regular /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData gripDots = IconDataRegular(0xe410); + static const IconData gripDots = IconData(0xe410, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grip Dots icon /// /// https://fontawesome.com/icons/grip-dots?style=light /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData lightGripDots = IconDataLight(0xe410); + static const IconData lightGripDots = IconData(0xe410, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grip Dots icon /// /// https://fontawesome.com/icons/grip-dots?style=thin /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData thinGripDots = IconDataThin(0xe410); + static const IconData thinGripDots = IconData(0xe410, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grip Dots Vertical icon /// /// https://fontawesome.com/icons/grip-dots-vertical?style=solid /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData solidGripDotsVertical = IconDataSolid(0xe411); + static const IconData solidGripDotsVertical = IconData(0xe411, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grip Dots Vertical icon /// /// https://fontawesome.com/icons/grip-dots-vertical?style=regular /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData gripDotsVertical = IconDataRegular(0xe411); + static const IconData gripDotsVertical = IconData(0xe411, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grip Dots Vertical icon /// /// https://fontawesome.com/icons/grip-dots-vertical?style=light /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData lightGripDotsVertical = IconDataLight(0xe411); + static const IconData lightGripDotsVertical = IconData(0xe411, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grip Dots Vertical icon /// /// https://fontawesome.com/icons/grip-dots-vertical?style=thin /// circles, drag, drop, ellipsis, grab, grid, handle, move - static const IconData thinGripDotsVertical = IconDataThin(0xe411); + static const IconData thinGripDotsVertical = IconData(0xe411, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grip Lines icon /// /// https://fontawesome.com/icons/grip-lines?style=solid /// affordance, drag, drop, grab, handle - static const IconData solidGripLines = IconDataSolid(0xf7a4); + static const IconData solidGripLines = IconData(0xf7a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grip Lines icon /// /// https://fontawesome.com/icons/grip-lines?style=regular /// affordance, drag, drop, grab, handle - static const IconData gripLines = IconDataRegular(0xf7a4); + static const IconData gripLines = IconData(0xf7a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grip Lines icon /// /// https://fontawesome.com/icons/grip-lines?style=light /// affordance, drag, drop, grab, handle - static const IconData lightGripLines = IconDataLight(0xf7a4); + static const IconData lightGripLines = IconData(0xf7a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grip Lines icon /// /// https://fontawesome.com/icons/grip-lines?style=thin /// affordance, drag, drop, grab, handle - static const IconData thinGripLines = IconDataThin(0xf7a4); + static const IconData thinGripLines = IconData(0xf7a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grip Lines Vertical icon /// /// https://fontawesome.com/icons/grip-lines-vertical?style=solid /// affordance, drag, drop, grab, handle - static const IconData solidGripLinesVertical = IconDataSolid(0xf7a5); + static const IconData solidGripLinesVertical = IconData(0xf7a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grip Lines Vertical icon /// /// https://fontawesome.com/icons/grip-lines-vertical?style=regular /// affordance, drag, drop, grab, handle - static const IconData gripLinesVertical = IconDataRegular(0xf7a5); + static const IconData gripLinesVertical = IconData(0xf7a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grip Lines Vertical icon /// /// https://fontawesome.com/icons/grip-lines-vertical?style=light /// affordance, drag, drop, grab, handle - static const IconData lightGripLinesVertical = IconDataLight(0xf7a5); + static const IconData lightGripLinesVertical = IconData(0xf7a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grip Lines Vertical icon /// /// https://fontawesome.com/icons/grip-lines-vertical?style=thin /// affordance, drag, drop, grab, handle - static const IconData thinGripLinesVertical = IconDataThin(0xf7a5); + static const IconData thinGripLinesVertical = IconData(0xf7a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Grip Vertical icon /// /// https://fontawesome.com/icons/grip-vertical?style=solid /// affordance, drag, drop, grab, handle - static const IconData solidGripVertical = IconDataSolid(0xf58e); + static const IconData solidGripVertical = IconData(0xf58e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Grip Vertical icon /// /// https://fontawesome.com/icons/grip-vertical?style=regular /// affordance, drag, drop, grab, handle - static const IconData gripVertical = IconDataRegular(0xf58e); + static const IconData gripVertical = IconData(0xf58e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Grip Vertical icon /// /// https://fontawesome.com/icons/grip-vertical?style=light /// affordance, drag, drop, grab, handle - static const IconData lightGripVertical = IconDataLight(0xf58e); + static const IconData lightGripVertical = IconData(0xf58e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Grip Vertical icon /// /// https://fontawesome.com/icons/grip-vertical?style=thin /// affordance, drag, drop, grab, handle - static const IconData thinGripVertical = IconDataThin(0xf58e); + static const IconData thinGripVertical = IconData(0xf58e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Gripfire, Inc. icon /// /// https://fontawesome.com/icons/gripfire?style=brands - static const IconData gripfire = IconDataBrands(0xf3ac); + static const IconData gripfire = IconData(0xf3ac, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Group Arrows Rotate icon /// /// https://fontawesome.com/icons/group-arrows-rotate?style=solid /// community, engagement, spin, sync - static const IconData solidGroupArrowsRotate = IconDataSolid(0xe4f6); + static const IconData solidGroupArrowsRotate = IconData(0xe4f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Group Arrows Rotate icon /// /// https://fontawesome.com/icons/group-arrows-rotate?style=regular /// community, engagement, spin, sync - static const IconData groupArrowsRotate = IconDataRegular(0xe4f6); + static const IconData groupArrowsRotate = IconData(0xe4f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Group Arrows Rotate icon /// /// https://fontawesome.com/icons/group-arrows-rotate?style=light /// community, engagement, spin, sync - static const IconData lightGroupArrowsRotate = IconDataLight(0xe4f6); + static const IconData lightGroupArrowsRotate = IconData(0xe4f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Group Arrows Rotate icon /// /// https://fontawesome.com/icons/group-arrows-rotate?style=thin /// community, engagement, spin, sync - static const IconData thinGroupArrowsRotate = IconDataThin(0xe4f6); + static const IconData thinGroupArrowsRotate = IconData(0xe4f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Grunt icon /// /// https://fontawesome.com/icons/grunt?style=brands - static const IconData grunt = IconDataBrands(0xf3ad); + static const IconData grunt = IconData(0xf3ad, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Guarani Sign icon /// /// https://fontawesome.com/icons/guarani-sign?style=solid /// Guarani Sign, currency - static const IconData solidGuaraniSign = IconDataSolid(0xe19a); + static const IconData solidGuaraniSign = IconData(0xe19a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Guarani Sign icon /// /// https://fontawesome.com/icons/guarani-sign?style=regular /// Guarani Sign, currency - static const IconData guaraniSign = IconDataRegular(0xe19a); + static const IconData guaraniSign = IconData(0xe19a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Guarani Sign icon /// /// https://fontawesome.com/icons/guarani-sign?style=light /// Guarani Sign, currency - static const IconData lightGuaraniSign = IconDataLight(0xe19a); + static const IconData lightGuaraniSign = IconData(0xe19a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Guarani Sign icon /// /// https://fontawesome.com/icons/guarani-sign?style=thin /// Guarani Sign, currency - static const IconData thinGuaraniSign = IconDataThin(0xe19a); + static const IconData thinGuaraniSign = IconData(0xe19a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Guilded icon /// /// https://fontawesome.com/icons/guilded?style=brands - static const IconData guilded = IconDataBrands(0xe07e); + static const IconData guilded = IconData(0xe07e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Guitar icon /// /// https://fontawesome.com/icons/guitar?style=solid /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData solidGuitar = IconDataSolid(0xf7a6); + static const IconData solidGuitar = IconData(0xf7a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Guitar icon /// /// https://fontawesome.com/icons/guitar?style=regular /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData guitar = IconDataRegular(0xf7a6); + static const IconData guitar = IconData(0xf7a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Guitar icon /// /// https://fontawesome.com/icons/guitar?style=light /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitar = IconDataLight(0xf7a6); + static const IconData lightGuitar = IconData(0xf7a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Guitar icon /// /// https://fontawesome.com/icons/guitar?style=thin /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData thinGuitar = IconDataThin(0xf7a6); + static const IconData thinGuitar = IconData(0xf7a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Guitar Electric icon /// /// https://fontawesome.com/icons/guitar-electric?style=solid /// axe, guitar, instrument, music, rock, rock and roll, song, strings - static const IconData solidGuitarElectric = IconDataSolid(0xf8be); + static const IconData solidGuitarElectric = IconData(0xf8be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Guitar Electric icon /// /// https://fontawesome.com/icons/guitar-electric?style=regular /// axe, guitar, instrument, music, rock, rock and roll, song, strings - static const IconData guitarElectric = IconDataRegular(0xf8be); + static const IconData guitarElectric = IconData(0xf8be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Guitar Electric icon /// /// https://fontawesome.com/icons/guitar-electric?style=light /// axe, guitar, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitarElectric = IconDataLight(0xf8be); + static const IconData lightGuitarElectric = IconData(0xf8be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Guitar Electric icon /// /// https://fontawesome.com/icons/guitar-electric?style=thin /// axe, guitar, instrument, music, rock, rock and roll, song, strings - static const IconData thinGuitarElectric = IconDataThin(0xf8be); + static const IconData thinGuitarElectric = IconData(0xf8be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Guitars icon /// /// https://fontawesome.com/icons/guitars?style=solid /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconData solidGuitars = IconDataSolid(0xf8bf); + static const IconData solidGuitars = IconData(0xf8bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Guitars icon /// /// https://fontawesome.com/icons/guitars?style=regular /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconData guitars = IconDataRegular(0xf8bf); + static const IconData guitars = IconData(0xf8bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Guitars icon /// /// https://fontawesome.com/icons/guitars?style=light /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitars = IconDataLight(0xf8bf); + static const IconData lightGuitars = IconData(0xf8bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Guitars icon /// /// https://fontawesome.com/icons/guitars?style=thin /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconData thinGuitars = IconDataThin(0xf8bf); + static const IconData thinGuitars = IconData(0xf8bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Gulp icon /// /// https://fontawesome.com/icons/gulp?style=brands - static const IconData gulp = IconDataBrands(0xf3ae); + static const IconData gulp = IconData(0xf3ae, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Gun icon /// /// https://fontawesome.com/icons/gun?style=solid /// firearm, pistol, weapon - static const IconData solidGun = IconDataSolid(0xe19b); + static const IconData solidGun = IconData(0xe19b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gun icon /// /// https://fontawesome.com/icons/gun?style=regular /// firearm, pistol, weapon - static const IconData gun = IconDataRegular(0xe19b); + static const IconData gun = IconData(0xe19b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gun icon /// /// https://fontawesome.com/icons/gun?style=light /// firearm, pistol, weapon - static const IconData lightGun = IconDataLight(0xe19b); + static const IconData lightGun = IconData(0xe19b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gun icon /// /// https://fontawesome.com/icons/gun?style=thin /// firearm, pistol, weapon - static const IconData thinGun = IconDataThin(0xe19b); + static const IconData thinGun = IconData(0xe19b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gun Slash icon /// /// https://fontawesome.com/icons/gun-slash?style=solid /// disabled, firearm, pistol, weapon - static const IconData solidGunSlash = IconDataSolid(0xe19c); + static const IconData solidGunSlash = IconData(0xe19c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gun Slash icon /// /// https://fontawesome.com/icons/gun-slash?style=regular /// disabled, firearm, pistol, weapon - static const IconData gunSlash = IconDataRegular(0xe19c); + static const IconData gunSlash = IconData(0xe19c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gun Slash icon /// /// https://fontawesome.com/icons/gun-slash?style=light /// disabled, firearm, pistol, weapon - static const IconData lightGunSlash = IconDataLight(0xe19c); + static const IconData lightGunSlash = IconData(0xe19c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gun Slash icon /// /// https://fontawesome.com/icons/gun-slash?style=thin /// disabled, firearm, pistol, weapon - static const IconData thinGunSlash = IconDataThin(0xe19c); + static const IconData thinGunSlash = IconData(0xe19c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Gun Squirt icon /// /// https://fontawesome.com/icons/gun-squirt?style=solid /// firearm, gun, handgun, pistol, revolver, super soaker, tool, water, water pistol, weapon - static const IconData solidGunSquirt = IconDataSolid(0xe19d); + static const IconData solidGunSquirt = IconData(0xe19d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Gun Squirt icon /// /// https://fontawesome.com/icons/gun-squirt?style=regular /// firearm, gun, handgun, pistol, revolver, super soaker, tool, water, water pistol, weapon - static const IconData gunSquirt = IconDataRegular(0xe19d); + static const IconData gunSquirt = IconData(0xe19d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Gun Squirt icon /// /// https://fontawesome.com/icons/gun-squirt?style=light /// firearm, gun, handgun, pistol, revolver, super soaker, tool, water, water pistol, weapon - static const IconData lightGunSquirt = IconDataLight(0xe19d); + static const IconData lightGunSquirt = IconData(0xe19d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Gun Squirt icon /// /// https://fontawesome.com/icons/gun-squirt?style=thin /// firearm, gun, handgun, pistol, revolver, super soaker, tool, water, water pistol, weapon - static const IconData thinGunSquirt = IconDataThin(0xe19d); + static const IconData thinGunSquirt = IconData(0xe19d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H icon /// /// https://fontawesome.com/icons/h?style=solid /// Latin Capital Letter H, Latin Small Letter H, letter - static const IconData solidH = IconDataSolid(0x48); + static const IconData solidH = IconData(0x48, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H icon /// /// https://fontawesome.com/icons/h?style=regular /// Latin Capital Letter H, Latin Small Letter H, letter - static const IconData h = IconDataRegular(0x48); + static const IconData h = IconData(0x48, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H icon /// /// https://fontawesome.com/icons/h?style=light /// Latin Capital Letter H, Latin Small Letter H, letter - static const IconData lightH = IconDataLight(0x48); + static const IconData lightH = IconData(0x48, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H icon /// /// https://fontawesome.com/icons/h?style=thin /// Latin Capital Letter H, Latin Small Letter H, letter - static const IconData thinH = IconDataThin(0x48); + static const IconData thinH = IconData(0x48, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H1 icon /// /// https://fontawesome.com/icons/h1?style=solid /// format, header, text, title - static const IconData solidH1 = IconDataSolid(0xf313); + static const IconData solidH1 = IconData(0xf313, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H1 icon /// /// https://fontawesome.com/icons/h1?style=regular /// format, header, text, title - static const IconData h1 = IconDataRegular(0xf313); + static const IconData h1 = IconData(0xf313, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H1 icon /// /// https://fontawesome.com/icons/h1?style=light /// format, header, text, title - static const IconData lightH1 = IconDataLight(0xf313); + static const IconData lightH1 = IconData(0xf313, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H1 icon /// /// https://fontawesome.com/icons/h1?style=thin /// format, header, text, title - static const IconData thinH1 = IconDataThin(0xf313); + static const IconData thinH1 = IconData(0xf313, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H2 icon /// /// https://fontawesome.com/icons/h2?style=solid /// format, header, text, title - static const IconData solidH2 = IconDataSolid(0xf314); + static const IconData solidH2 = IconData(0xf314, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H2 icon /// /// https://fontawesome.com/icons/h2?style=regular /// format, header, text, title - static const IconData h2 = IconDataRegular(0xf314); + static const IconData h2 = IconData(0xf314, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H2 icon /// /// https://fontawesome.com/icons/h2?style=light /// format, header, text, title - static const IconData lightH2 = IconDataLight(0xf314); + static const IconData lightH2 = IconData(0xf314, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H2 icon /// /// https://fontawesome.com/icons/h2?style=thin /// format, header, text, title - static const IconData thinH2 = IconDataThin(0xf314); + static const IconData thinH2 = IconData(0xf314, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H3 icon /// /// https://fontawesome.com/icons/h3?style=solid /// format, header, text, title - static const IconData solidH3 = IconDataSolid(0xf315); + static const IconData solidH3 = IconData(0xf315, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H3 icon /// /// https://fontawesome.com/icons/h3?style=regular /// format, header, text, title - static const IconData h3 = IconDataRegular(0xf315); + static const IconData h3 = IconData(0xf315, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H3 icon /// /// https://fontawesome.com/icons/h3?style=light /// format, header, text, title - static const IconData lightH3 = IconDataLight(0xf315); + static const IconData lightH3 = IconData(0xf315, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H3 icon /// /// https://fontawesome.com/icons/h3?style=thin /// format, header, text, title - static const IconData thinH3 = IconDataThin(0xf315); + static const IconData thinH3 = IconData(0xf315, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H4 icon /// /// https://fontawesome.com/icons/h4?style=solid /// format, header, text, title - static const IconData solidH4 = IconDataSolid(0xf86a); + static const IconData solidH4 = IconData(0xf86a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H4 icon /// /// https://fontawesome.com/icons/h4?style=regular /// format, header, text, title - static const IconData h4 = IconDataRegular(0xf86a); + static const IconData h4 = IconData(0xf86a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H4 icon /// /// https://fontawesome.com/icons/h4?style=light /// format, header, text, title - static const IconData lightH4 = IconDataLight(0xf86a); + static const IconData lightH4 = IconData(0xf86a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H4 icon /// /// https://fontawesome.com/icons/h4?style=thin /// format, header, text, title - static const IconData thinH4 = IconDataThin(0xf86a); + static const IconData thinH4 = IconData(0xf86a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H5 icon /// /// https://fontawesome.com/icons/h5?style=solid /// format, header, text, title - static const IconData solidH5 = IconDataSolid(0xe412); + static const IconData solidH5 = IconData(0xe412, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H5 icon /// /// https://fontawesome.com/icons/h5?style=regular /// format, header, text, title - static const IconData h5 = IconDataRegular(0xe412); + static const IconData h5 = IconData(0xe412, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H5 icon /// /// https://fontawesome.com/icons/h5?style=light /// format, header, text, title - static const IconData lightH5 = IconDataLight(0xe412); + static const IconData lightH5 = IconData(0xe412, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H5 icon /// /// https://fontawesome.com/icons/h5?style=thin /// format, header, text, title - static const IconData thinH5 = IconDataThin(0xe412); + static const IconData thinH5 = IconData(0xe412, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid H6 icon /// /// https://fontawesome.com/icons/h6?style=solid /// format, header, text, title - static const IconData solidH6 = IconDataSolid(0xe413); + static const IconData solidH6 = IconData(0xe413, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular H6 icon /// /// https://fontawesome.com/icons/h6?style=regular /// format, header, text, title - static const IconData h6 = IconDataRegular(0xe413); + static const IconData h6 = IconData(0xe413, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light H6 icon /// /// https://fontawesome.com/icons/h6?style=light /// format, header, text, title - static const IconData lightH6 = IconDataLight(0xe413); + static const IconData lightH6 = IconData(0xe413, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin H6 icon /// /// https://fontawesome.com/icons/h6?style=thin /// format, header, text, title - static const IconData thinH6 = IconDataThin(0xe413); + static const IconData thinH6 = IconData(0xe413, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Hacker News icon /// /// https://fontawesome.com/icons/hacker-news?style=brands - static const IconData hackerNews = IconDataBrands(0xf1d4); + static const IconData hackerNews = IconData(0xf1d4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Hackerrank icon /// /// https://fontawesome.com/icons/hackerrank?style=brands - static const IconData hackerrank = IconDataBrands(0xf5f7); + static const IconData hackerrank = IconData(0xf5f7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hammer icon /// /// https://fontawesome.com/icons/hammer?style=solid /// admin, configuration, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool - static const IconData solidHammer = IconDataSolid(0xf6e3); + static const IconData solidHammer = IconData(0xf6e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hammer icon /// /// https://fontawesome.com/icons/hammer?style=regular /// admin, configuration, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool - static const IconData hammer = IconDataRegular(0xf6e3); + static const IconData hammer = IconData(0xf6e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hammer icon /// /// https://fontawesome.com/icons/hammer?style=light /// admin, configuration, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool - static const IconData lightHammer = IconDataLight(0xf6e3); + static const IconData lightHammer = IconData(0xf6e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hammer icon /// /// https://fontawesome.com/icons/hammer?style=thin /// admin, configuration, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool - static const IconData thinHammer = IconDataThin(0xf6e3); + static const IconData thinHammer = IconData(0xf6e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hammer Brush icon /// /// https://fontawesome.com/icons/hammer-brush?style=solid /// admin, bristles, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool, art, configuration, paint, remodel - static const IconData solidHammerBrush = IconDataSolid(0xe620); + static const IconData solidHammerBrush = IconData(0xe620, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hammer Brush icon /// /// https://fontawesome.com/icons/hammer-brush?style=regular /// admin, bristles, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool, art, configuration, paint, remodel - static const IconData hammerBrush = IconDataRegular(0xe620); + static const IconData hammerBrush = IconData(0xe620, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hammer Brush icon /// /// https://fontawesome.com/icons/hammer-brush?style=light /// admin, bristles, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool, art, configuration, paint, remodel - static const IconData lightHammerBrush = IconDataLight(0xe620); + static const IconData lightHammerBrush = IconData(0xe620, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hammer Brush icon /// /// https://fontawesome.com/icons/hammer-brush?style=thin /// admin, bristles, equipment, fix, hammer, maintenance, modify, recovery, repair, settings, tool, art, configuration, paint, remodel - static const IconData thinHammerBrush = IconDataThin(0xe620); + static const IconData thinHammerBrush = IconData(0xe620, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hammer Crash icon /// /// https://fontawesome.com/icons/hammer-crash?style=solid /// break, crash, glass, maintenance, pound, smash - static const IconData solidHammerCrash = IconDataSolid(0xe414); + static const IconData solidHammerCrash = IconData(0xe414, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hammer Crash icon /// /// https://fontawesome.com/icons/hammer-crash?style=regular /// break, crash, glass, maintenance, pound, smash - static const IconData hammerCrash = IconDataRegular(0xe414); + static const IconData hammerCrash = IconData(0xe414, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hammer Crash icon /// /// https://fontawesome.com/icons/hammer-crash?style=light /// break, crash, glass, maintenance, pound, smash - static const IconData lightHammerCrash = IconDataLight(0xe414); + static const IconData lightHammerCrash = IconData(0xe414, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hammer Crash icon /// /// https://fontawesome.com/icons/hammer-crash?style=thin /// break, crash, glass, maintenance, pound, smash - static const IconData thinHammerCrash = IconDataThin(0xe414); + static const IconData thinHammerCrash = IconData(0xe414, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hammer War icon /// /// https://fontawesome.com/icons/hammer-war?style=solid /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconData solidHammerWar = IconDataSolid(0xf6e4); + static const IconData solidHammerWar = IconData(0xf6e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hammer War icon /// /// https://fontawesome.com/icons/hammer-war?style=regular /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconData hammerWar = IconDataRegular(0xf6e4); + static const IconData hammerWar = IconData(0xf6e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hammer War icon /// /// https://fontawesome.com/icons/hammer-war?style=light /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconData lightHammerWar = IconDataLight(0xf6e4); + static const IconData lightHammerWar = IconData(0xf6e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hammer War icon /// /// https://fontawesome.com/icons/hammer-war?style=thin /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconData thinHammerWar = IconDataThin(0xf6e4); + static const IconData thinHammerWar = IconData(0xf6e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hamsa icon /// /// https://fontawesome.com/icons/hamsa?style=solid /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData solidHamsa = IconDataSolid(0xf665); + static const IconData solidHamsa = IconData(0xf665, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hamsa icon /// /// https://fontawesome.com/icons/hamsa?style=regular /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData hamsa = IconDataRegular(0xf665); + static const IconData hamsa = IconData(0xf665, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hamsa icon /// /// https://fontawesome.com/icons/hamsa?style=light /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData lightHamsa = IconDataLight(0xf665); + static const IconData lightHamsa = IconData(0xf665, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hamsa icon /// /// https://fontawesome.com/icons/hamsa?style=thin /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData thinHamsa = IconDataThin(0xf665); + static const IconData thinHamsa = IconData(0xf665, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand icon /// /// https://fontawesome.com/icons/hand?style=solid /// Raised Hand, backhand, game, halt, palm, raised, raised back of hand, request, roshambo, stop - static const IconData solidHand = IconDataSolid(0xf256); + static const IconData solidHand = IconData(0xf256, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hand-paper for icon [solidHand] @Deprecated('Use "solidHand" instead.') @@ -44835,7 +44835,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand?style=regular /// Raised Hand, backhand, game, halt, palm, raised, raised back of hand, request, roshambo, stop - static const IconData hand = IconDataRegular(0xf256); + static const IconData hand = IconData(0xf256, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hand-paper for icon [hand] @Deprecated('Use "hand" instead.') @@ -44845,7 +44845,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand?style=light /// Raised Hand, backhand, game, halt, palm, raised, raised back of hand, request, roshambo, stop - static const IconData lightHand = IconDataLight(0xf256); + static const IconData lightHand = IconData(0xf256, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hand-paper for icon [lightHand] @Deprecated('Use "lightHand" instead.') @@ -44855,7 +44855,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand?style=thin /// Raised Hand, backhand, game, halt, palm, raised, raised back of hand, request, roshambo, stop - static const IconData thinHand = IconDataThin(0xf256); + static const IconData thinHand = IconData(0xf256, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hand-paper for icon [thinHand] @Deprecated('Use "thinHand" instead.') @@ -44865,7 +44865,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-back-fist?style=solid /// fist, game, roshambo - static const IconData solidHandBackFist = IconDataSolid(0xf255); + static const IconData solidHandBackFist = IconData(0xf255, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hand-rock for icon [solidHandBackFist] @Deprecated('Use "solidHandBackFist" instead.') @@ -44875,7 +44875,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-back-fist?style=regular /// fist, game, roshambo - static const IconData handBackFist = IconDataRegular(0xf255); + static const IconData handBackFist = IconData(0xf255, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hand-rock for icon [handBackFist] @Deprecated('Use "handBackFist" instead.') @@ -44885,7 +44885,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-back-fist?style=light /// fist, game, roshambo - static const IconData lightHandBackFist = IconDataLight(0xf255); + static const IconData lightHandBackFist = IconData(0xf255, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hand-rock for icon [lightHandBackFist] @Deprecated('Use "lightHandBackFist" instead.') @@ -44895,7 +44895,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-back-fist?style=thin /// fist, game, roshambo - static const IconData thinHandBackFist = IconDataThin(0xf255); + static const IconData thinHandBackFist = IconData(0xf255, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hand-rock for icon [thinHandBackFist] @Deprecated('Use "thinHandBackFist" instead.') @@ -44905,127 +44905,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-back-point-down?style=solid /// backhand, backhand index pointing down, direction, down, finger, hand, point - static const IconData solidHandBackPointDown = IconDataSolid(0xe19e); + static const IconData solidHandBackPointDown = IconData(0xe19e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Back Point Down icon /// /// https://fontawesome.com/icons/hand-back-point-down?style=regular /// backhand, backhand index pointing down, direction, down, finger, hand, point - static const IconData handBackPointDown = IconDataRegular(0xe19e); + static const IconData handBackPointDown = IconData(0xe19e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Back Point Down icon /// /// https://fontawesome.com/icons/hand-back-point-down?style=light /// backhand, backhand index pointing down, direction, down, finger, hand, point - static const IconData lightHandBackPointDown = IconDataLight(0xe19e); + static const IconData lightHandBackPointDown = IconData(0xe19e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Back Point Down icon /// /// https://fontawesome.com/icons/hand-back-point-down?style=thin /// backhand, backhand index pointing down, direction, down, finger, hand, point - static const IconData thinHandBackPointDown = IconDataThin(0xe19e); + static const IconData thinHandBackPointDown = IconData(0xe19e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Back Point Left icon /// /// https://fontawesome.com/icons/hand-back-point-left?style=solid /// backhand, backhand index pointing left, direction, finger, hand, index, point - static const IconData solidHandBackPointLeft = IconDataSolid(0xe19f); + static const IconData solidHandBackPointLeft = IconData(0xe19f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Back Point Left icon /// /// https://fontawesome.com/icons/hand-back-point-left?style=regular /// backhand, backhand index pointing left, direction, finger, hand, index, point - static const IconData handBackPointLeft = IconDataRegular(0xe19f); + static const IconData handBackPointLeft = IconData(0xe19f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Back Point Left icon /// /// https://fontawesome.com/icons/hand-back-point-left?style=light /// backhand, backhand index pointing left, direction, finger, hand, index, point - static const IconData lightHandBackPointLeft = IconDataLight(0xe19f); + static const IconData lightHandBackPointLeft = IconData(0xe19f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Back Point Left icon /// /// https://fontawesome.com/icons/hand-back-point-left?style=thin /// backhand, backhand index pointing left, direction, finger, hand, index, point - static const IconData thinHandBackPointLeft = IconDataThin(0xe19f); + static const IconData thinHandBackPointLeft = IconData(0xe19f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Back Point Ribbon icon /// /// https://fontawesome.com/icons/hand-back-point-ribbon?style=solid /// remember, remind - static const IconData solidHandBackPointRibbon = IconDataSolid(0xe1a0); + static const IconData solidHandBackPointRibbon = IconData(0xe1a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Back Point Ribbon icon /// /// https://fontawesome.com/icons/hand-back-point-ribbon?style=regular /// remember, remind - static const IconData handBackPointRibbon = IconDataRegular(0xe1a0); + static const IconData handBackPointRibbon = IconData(0xe1a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Back Point Ribbon icon /// /// https://fontawesome.com/icons/hand-back-point-ribbon?style=light /// remember, remind - static const IconData lightHandBackPointRibbon = IconDataLight(0xe1a0); + static const IconData lightHandBackPointRibbon = IconData(0xe1a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Back Point Ribbon icon /// /// https://fontawesome.com/icons/hand-back-point-ribbon?style=thin /// remember, remind - static const IconData thinHandBackPointRibbon = IconDataThin(0xe1a0); + static const IconData thinHandBackPointRibbon = IconData(0xe1a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Back Point Right icon /// /// https://fontawesome.com/icons/hand-back-point-right?style=solid /// backhand, backhand index pointing right, direction, finger, hand, index, point - static const IconData solidHandBackPointRight = IconDataSolid(0xe1a1); + static const IconData solidHandBackPointRight = IconData(0xe1a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Back Point Right icon /// /// https://fontawesome.com/icons/hand-back-point-right?style=regular /// backhand, backhand index pointing right, direction, finger, hand, index, point - static const IconData handBackPointRight = IconDataRegular(0xe1a1); + static const IconData handBackPointRight = IconData(0xe1a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Back Point Right icon /// /// https://fontawesome.com/icons/hand-back-point-right?style=light /// backhand, backhand index pointing right, direction, finger, hand, index, point - static const IconData lightHandBackPointRight = IconDataLight(0xe1a1); + static const IconData lightHandBackPointRight = IconData(0xe1a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Back Point Right icon /// /// https://fontawesome.com/icons/hand-back-point-right?style=thin /// backhand, backhand index pointing right, direction, finger, hand, index, point - static const IconData thinHandBackPointRight = IconDataThin(0xe1a1); + static const IconData thinHandBackPointRight = IconData(0xe1a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Back Point Up icon /// /// https://fontawesome.com/icons/hand-back-point-up?style=solid /// backhand, backhand index pointing up, direction, finger, hand, point, up - static const IconData solidHandBackPointUp = IconDataSolid(0xe1a2); + static const IconData solidHandBackPointUp = IconData(0xe1a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Back Point Up icon /// /// https://fontawesome.com/icons/hand-back-point-up?style=regular /// backhand, backhand index pointing up, direction, finger, hand, point, up - static const IconData handBackPointUp = IconDataRegular(0xe1a2); + static const IconData handBackPointUp = IconData(0xe1a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Back Point Up icon /// /// https://fontawesome.com/icons/hand-back-point-up?style=light /// backhand, backhand index pointing up, direction, finger, hand, point, up - static const IconData lightHandBackPointUp = IconDataLight(0xe1a2); + static const IconData lightHandBackPointUp = IconData(0xe1a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Back Point Up icon /// /// https://fontawesome.com/icons/hand-back-point-up?style=thin /// backhand, backhand index pointing up, direction, finger, hand, point, up - static const IconData thinHandBackPointUp = IconDataThin(0xe1a2); + static const IconData thinHandBackPointUp = IconData(0xe1a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Dots icon /// /// https://fontawesome.com/icons/hand-dots?style=solid /// allergy, freckles, hand, hives, palm, pox, skin, spots - static const IconData solidHandDots = IconDataSolid(0xf461); + static const IconData solidHandDots = IconData(0xf461, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias allergies for icon [solidHandDots] @Deprecated('Use "solidHandDots" instead.') @@ -45035,7 +45035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-dots?style=regular /// allergy, freckles, hand, hives, palm, pox, skin, spots - static const IconData handDots = IconDataRegular(0xf461); + static const IconData handDots = IconData(0xf461, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias allergies for icon [handDots] @Deprecated('Use "handDots" instead.') @@ -45045,7 +45045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-dots?style=light /// allergy, freckles, hand, hives, palm, pox, skin, spots - static const IconData lightHandDots = IconDataLight(0xf461); + static const IconData lightHandDots = IconData(0xf461, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias allergies for icon [lightHandDots] @Deprecated('Use "lightHandDots" instead.') @@ -45055,7 +45055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-dots?style=thin /// allergy, freckles, hand, hives, palm, pox, skin, spots - static const IconData thinHandDots = IconDataThin(0xf461); + static const IconData thinHandDots = IconData(0xf461, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias allergies for icon [thinHandDots] @Deprecated('Use "thinHandDots" instead.') @@ -45065,31 +45065,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-fingers-crossed?style=solid /// cross, crossed fingers, finger, hand, hope, luck, promise - static const IconData solidHandFingersCrossed = IconDataSolid(0xe1a3); + static const IconData solidHandFingersCrossed = IconData(0xe1a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Fingers Crossed icon /// /// https://fontawesome.com/icons/hand-fingers-crossed?style=regular /// cross, crossed fingers, finger, hand, hope, luck, promise - static const IconData handFingersCrossed = IconDataRegular(0xe1a3); + static const IconData handFingersCrossed = IconData(0xe1a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Fingers Crossed icon /// /// https://fontawesome.com/icons/hand-fingers-crossed?style=light /// cross, crossed fingers, finger, hand, hope, luck, promise - static const IconData lightHandFingersCrossed = IconDataLight(0xe1a3); + static const IconData lightHandFingersCrossed = IconData(0xe1a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Fingers Crossed icon /// /// https://fontawesome.com/icons/hand-fingers-crossed?style=thin /// cross, crossed fingers, finger, hand, hope, luck, promise - static const IconData thinHandFingersCrossed = IconDataThin(0xe1a3); + static const IconData thinHandFingersCrossed = IconData(0xe1a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Fist icon /// /// https://fontawesome.com/icons/hand-fist?style=solid /// Dungeons & Dragons, clenched, d&d, dnd, fantasy, fist, hand, ki, monk, punch, raised fist, resist, strength, unarmed combat - static const IconData solidHandFist = IconDataSolid(0xf6de); + static const IconData solidHandFist = IconData(0xf6de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fist-raised for icon [solidHandFist] @Deprecated('Use "solidHandFist" instead.') @@ -45099,7 +45099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-fist?style=regular /// Dungeons & Dragons, clenched, d&d, dnd, fantasy, fist, hand, ki, monk, punch, raised fist, resist, strength, unarmed combat - static const IconData handFist = IconDataRegular(0xf6de); + static const IconData handFist = IconData(0xf6de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fist-raised for icon [handFist] @Deprecated('Use "handFist" instead.') @@ -45109,7 +45109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-fist?style=light /// Dungeons & Dragons, clenched, d&d, dnd, fantasy, fist, hand, ki, monk, punch, raised fist, resist, strength, unarmed combat - static const IconData lightHandFist = IconDataLight(0xf6de); + static const IconData lightHandFist = IconData(0xf6de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fist-raised for icon [lightHandFist] @Deprecated('Use "lightHandFist" instead.') @@ -45119,7 +45119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-fist?style=thin /// Dungeons & Dragons, clenched, d&d, dnd, fantasy, fist, hand, ki, monk, punch, raised fist, resist, strength, unarmed combat - static const IconData thinHandFist = IconDataThin(0xf6de); + static const IconData thinHandFist = IconData(0xf6de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fist-raised for icon [thinHandFist] @Deprecated('Use "thinHandFist" instead.') @@ -45129,103 +45129,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-heart?style=solid /// care, charity, donate, help, palm, wishlist - static const IconData solidHandHeart = IconDataSolid(0xf4bc); + static const IconData solidHandHeart = IconData(0xf4bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Heart icon /// /// https://fontawesome.com/icons/hand-heart?style=regular /// care, charity, donate, help, palm, wishlist - static const IconData handHeart = IconDataRegular(0xf4bc); + static const IconData handHeart = IconData(0xf4bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Heart icon /// /// https://fontawesome.com/icons/hand-heart?style=light /// care, charity, donate, help, palm, wishlist - static const IconData lightHandHeart = IconDataLight(0xf4bc); + static const IconData lightHandHeart = IconData(0xf4bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Heart icon /// /// https://fontawesome.com/icons/hand-heart?style=thin /// care, charity, donate, help, palm, wishlist - static const IconData thinHandHeart = IconDataThin(0xf4bc); + static const IconData thinHandHeart = IconData(0xf4bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding icon /// /// https://fontawesome.com/icons/hand-holding?style=solid /// carry, lift - static const IconData solidHandHolding = IconDataSolid(0xf4bd); + static const IconData solidHandHolding = IconData(0xf4bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding icon /// /// https://fontawesome.com/icons/hand-holding?style=regular /// carry, lift - static const IconData handHolding = IconDataRegular(0xf4bd); + static const IconData handHolding = IconData(0xf4bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding icon /// /// https://fontawesome.com/icons/hand-holding?style=light /// carry, lift - static const IconData lightHandHolding = IconDataLight(0xf4bd); + static const IconData lightHandHolding = IconData(0xf4bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding icon /// /// https://fontawesome.com/icons/hand-holding?style=thin /// carry, lift - static const IconData thinHandHolding = IconDataThin(0xf4bd); + static const IconData thinHandHolding = IconData(0xf4bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Box icon /// /// https://fontawesome.com/icons/hand-holding-box?style=solid /// carry, gift, handling, lift, package - static const IconData solidHandHoldingBox = IconDataSolid(0xf47b); + static const IconData solidHandHoldingBox = IconData(0xf47b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Box icon /// /// https://fontawesome.com/icons/hand-holding-box?style=regular /// carry, gift, handling, lift, package - static const IconData handHoldingBox = IconDataRegular(0xf47b); + static const IconData handHoldingBox = IconData(0xf47b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Box icon /// /// https://fontawesome.com/icons/hand-holding-box?style=light /// carry, gift, handling, lift, package - static const IconData lightHandHoldingBox = IconDataLight(0xf47b); + static const IconData lightHandHoldingBox = IconData(0xf47b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Box icon /// /// https://fontawesome.com/icons/hand-holding-box?style=thin /// carry, gift, handling, lift, package - static const IconData thinHandHoldingBox = IconDataThin(0xf47b); + static const IconData thinHandHoldingBox = IconData(0xf47b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Circle Dollar icon /// /// https://fontawesome.com/icons/hand-holding-circle-dollar?style=solid /// revenue, carry, coupon, dollar sign, donate, donation, giving, investment, money, premium, price, salary - static const IconData solidHandHoldingCircleDollar = IconDataSolid(0xe621); + static const IconData solidHandHoldingCircleDollar = IconData(0xe621, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Circle Dollar icon /// /// https://fontawesome.com/icons/hand-holding-circle-dollar?style=regular /// revenue, carry, coupon, dollar sign, donate, donation, giving, investment, money, premium, price, salary - static const IconData handHoldingCircleDollar = IconDataRegular(0xe621); + static const IconData handHoldingCircleDollar = IconData(0xe621, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Circle Dollar icon /// /// https://fontawesome.com/icons/hand-holding-circle-dollar?style=light /// revenue, carry, coupon, dollar sign, donate, donation, giving, investment, money, premium, price, salary - static const IconData lightHandHoldingCircleDollar = IconDataLight(0xe621); + static const IconData lightHandHoldingCircleDollar = IconData(0xe621, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Circle Dollar icon /// /// https://fontawesome.com/icons/hand-holding-circle-dollar?style=thin /// revenue, carry, coupon, dollar sign, donate, donation, giving, investment, money, premium, price, salary - static const IconData thinHandHoldingCircleDollar = IconDataThin(0xe621); + static const IconData thinHandHoldingCircleDollar = IconData(0xe621, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Dollar icon /// /// https://fontawesome.com/icons/hand-holding-dollar?style=solid /// $, carry, coupon, dollar sign, donate, donation, giving, investment, lift, money, premium, price, revenue, salary - static const IconData solidHandHoldingDollar = IconDataSolid(0xf4c0); + static const IconData solidHandHoldingDollar = IconData(0xf4c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-usd for icon [solidHandHoldingDollar] @Deprecated('Use "solidHandHoldingDollar" instead.') @@ -45235,7 +45235,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-dollar?style=regular /// $, carry, coupon, dollar sign, donate, donation, giving, investment, lift, money, premium, price, revenue, salary - static const IconData handHoldingDollar = IconDataRegular(0xf4c0); + static const IconData handHoldingDollar = IconData(0xf4c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-usd for icon [handHoldingDollar] @Deprecated('Use "handHoldingDollar" instead.') @@ -45245,7 +45245,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-dollar?style=light /// $, carry, coupon, dollar sign, donate, donation, giving, investment, lift, money, premium, price, revenue, salary - static const IconData lightHandHoldingDollar = IconDataLight(0xf4c0); + static const IconData lightHandHoldingDollar = IconData(0xf4c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-usd for icon [lightHandHoldingDollar] @Deprecated('Use "lightHandHoldingDollar" instead.') @@ -45255,7 +45255,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-dollar?style=thin /// $, carry, coupon, dollar sign, donate, donation, giving, investment, lift, money, premium, price, revenue, salary - static const IconData thinHandHoldingDollar = IconDataThin(0xf4c0); + static const IconData thinHandHoldingDollar = IconData(0xf4c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-usd for icon [thinHandHoldingDollar] @Deprecated('Use "thinHandHoldingDollar" instead.') @@ -45265,7 +45265,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-droplet?style=solid /// blood, carry, covid-19, drought, grow, lift, sanitation - static const IconData solidHandHoldingDroplet = IconDataSolid(0xf4c1); + static const IconData solidHandHoldingDroplet = IconData(0xf4c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-water for icon [solidHandHoldingDroplet] @Deprecated('Use "solidHandHoldingDroplet" instead.') @@ -45275,7 +45275,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-droplet?style=regular /// blood, carry, covid-19, drought, grow, lift, sanitation - static const IconData handHoldingDroplet = IconDataRegular(0xf4c1); + static const IconData handHoldingDroplet = IconData(0xf4c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-water for icon [handHoldingDroplet] @Deprecated('Use "handHoldingDroplet" instead.') @@ -45285,7 +45285,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-droplet?style=light /// blood, carry, covid-19, drought, grow, lift, sanitation - static const IconData lightHandHoldingDroplet = IconDataLight(0xf4c1); + static const IconData lightHandHoldingDroplet = IconData(0xf4c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-water for icon [lightHandHoldingDroplet] @Deprecated('Use "lightHandHoldingDroplet" instead.') @@ -45295,7 +45295,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-droplet?style=thin /// blood, carry, covid-19, drought, grow, lift, sanitation - static const IconData thinHandHoldingDroplet = IconDataThin(0xf4c1); + static const IconData thinHandHoldingDroplet = IconData(0xf4c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hand-holding-water for icon [thinHandHoldingDroplet] @Deprecated('Use "thinHandHoldingDroplet" instead.') @@ -45305,535 +45305,535 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hand-holding-hand?style=solid /// care, give, help, hold, protect - static const IconData solidHandHoldingHand = IconDataSolid(0xe4f7); + static const IconData solidHandHoldingHand = IconData(0xe4f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Hand icon /// /// https://fontawesome.com/icons/hand-holding-hand?style=regular /// care, give, help, hold, protect - static const IconData handHoldingHand = IconDataRegular(0xe4f7); + static const IconData handHoldingHand = IconData(0xe4f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Hand icon /// /// https://fontawesome.com/icons/hand-holding-hand?style=light /// care, give, help, hold, protect - static const IconData lightHandHoldingHand = IconDataLight(0xe4f7); + static const IconData lightHandHoldingHand = IconData(0xe4f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Hand icon /// /// https://fontawesome.com/icons/hand-holding-hand?style=thin /// care, give, help, hold, protect - static const IconData thinHandHoldingHand = IconDataThin(0xe4f7); + static const IconData thinHandHoldingHand = IconData(0xe4f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Heart icon /// /// https://fontawesome.com/icons/hand-holding-heart?style=solid /// carry, charity, gift, lift, package, wishlist - static const IconData solidHandHoldingHeart = IconDataSolid(0xf4be); + static const IconData solidHandHoldingHeart = IconData(0xf4be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Heart icon /// /// https://fontawesome.com/icons/hand-holding-heart?style=regular /// carry, charity, gift, lift, package, wishlist - static const IconData handHoldingHeart = IconDataRegular(0xf4be); + static const IconData handHoldingHeart = IconData(0xf4be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Heart icon /// /// https://fontawesome.com/icons/hand-holding-heart?style=light /// carry, charity, gift, lift, package, wishlist - static const IconData lightHandHoldingHeart = IconDataLight(0xf4be); + static const IconData lightHandHoldingHeart = IconData(0xf4be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Heart icon /// /// https://fontawesome.com/icons/hand-holding-heart?style=thin /// carry, charity, gift, lift, package, wishlist - static const IconData thinHandHoldingHeart = IconDataThin(0xf4be); + static const IconData thinHandHoldingHeart = IconData(0xf4be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Magic icon /// /// https://fontawesome.com/icons/hand-holding-magic?style=solid /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconData solidHandHoldingMagic = IconDataSolid(0xf6e5); + static const IconData solidHandHoldingMagic = IconData(0xf6e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Magic icon /// /// https://fontawesome.com/icons/hand-holding-magic?style=regular /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconData handHoldingMagic = IconDataRegular(0xf6e5); + static const IconData handHoldingMagic = IconData(0xf6e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Magic icon /// /// https://fontawesome.com/icons/hand-holding-magic?style=light /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconData lightHandHoldingMagic = IconDataLight(0xf6e5); + static const IconData lightHandHoldingMagic = IconData(0xf6e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Magic icon /// /// https://fontawesome.com/icons/hand-holding-magic?style=thin /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconData thinHandHoldingMagic = IconDataThin(0xf6e5); + static const IconData thinHandHoldingMagic = IconData(0xf6e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Medical icon /// /// https://fontawesome.com/icons/hand-holding-medical?style=solid /// care, covid-19, donate, help - static const IconData solidHandHoldingMedical = IconDataSolid(0xe05c); + static const IconData solidHandHoldingMedical = IconData(0xe05c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Medical icon /// /// https://fontawesome.com/icons/hand-holding-medical?style=regular /// care, covid-19, donate, help - static const IconData handHoldingMedical = IconDataRegular(0xe05c); + static const IconData handHoldingMedical = IconData(0xe05c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Medical icon /// /// https://fontawesome.com/icons/hand-holding-medical?style=light /// care, covid-19, donate, help - static const IconData lightHandHoldingMedical = IconDataLight(0xe05c); + static const IconData lightHandHoldingMedical = IconData(0xe05c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Medical icon /// /// https://fontawesome.com/icons/hand-holding-medical?style=thin /// care, covid-19, donate, help - static const IconData thinHandHoldingMedical = IconDataThin(0xe05c); + static const IconData thinHandHoldingMedical = IconData(0xe05c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Seedling icon /// /// https://fontawesome.com/icons/hand-holding-seedling?style=solid /// carry, grow, lift, plant - static const IconData solidHandHoldingSeedling = IconDataSolid(0xf4bf); + static const IconData solidHandHoldingSeedling = IconData(0xf4bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Seedling icon /// /// https://fontawesome.com/icons/hand-holding-seedling?style=regular /// carry, grow, lift, plant - static const IconData handHoldingSeedling = IconDataRegular(0xf4bf); + static const IconData handHoldingSeedling = IconData(0xf4bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Seedling icon /// /// https://fontawesome.com/icons/hand-holding-seedling?style=light /// carry, grow, lift, plant - static const IconData lightHandHoldingSeedling = IconDataLight(0xf4bf); + static const IconData lightHandHoldingSeedling = IconData(0xf4bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Seedling icon /// /// https://fontawesome.com/icons/hand-holding-seedling?style=thin /// carry, grow, lift, plant - static const IconData thinHandHoldingSeedling = IconDataThin(0xf4bf); + static const IconData thinHandHoldingSeedling = IconData(0xf4bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Holding Skull icon /// /// https://fontawesome.com/icons/hand-holding-skull?style=solid /// hamlet, shakespeare, yorick - static const IconData solidHandHoldingSkull = IconDataSolid(0xe1a4); + static const IconData solidHandHoldingSkull = IconData(0xe1a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Holding Skull icon /// /// https://fontawesome.com/icons/hand-holding-skull?style=regular /// hamlet, shakespeare, yorick - static const IconData handHoldingSkull = IconDataRegular(0xe1a4); + static const IconData handHoldingSkull = IconData(0xe1a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Holding Skull icon /// /// https://fontawesome.com/icons/hand-holding-skull?style=light /// hamlet, shakespeare, yorick - static const IconData lightHandHoldingSkull = IconDataLight(0xe1a4); + static const IconData lightHandHoldingSkull = IconData(0xe1a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Holding Skull icon /// /// https://fontawesome.com/icons/hand-holding-skull?style=thin /// hamlet, shakespeare, yorick - static const IconData thinHandHoldingSkull = IconDataThin(0xe1a4); + static const IconData thinHandHoldingSkull = IconData(0xe1a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Horns icon /// /// https://fontawesome.com/icons/hand-horns?style=solid /// devil horns, finger, hand, horns, rock, rock-on, sign of the horns - static const IconData solidHandHorns = IconDataSolid(0xe1a9); + static const IconData solidHandHorns = IconData(0xe1a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Horns icon /// /// https://fontawesome.com/icons/hand-horns?style=regular /// devil horns, finger, hand, horns, rock, rock-on, sign of the horns - static const IconData handHorns = IconDataRegular(0xe1a9); + static const IconData handHorns = IconData(0xe1a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Horns icon /// /// https://fontawesome.com/icons/hand-horns?style=light /// devil horns, finger, hand, horns, rock, rock-on, sign of the horns - static const IconData lightHandHorns = IconDataLight(0xe1a9); + static const IconData lightHandHorns = IconData(0xe1a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Horns icon /// /// https://fontawesome.com/icons/hand-horns?style=thin /// devil horns, finger, hand, horns, rock, rock-on, sign of the horns - static const IconData thinHandHorns = IconDataThin(0xe1a9); + static const IconData thinHandHorns = IconData(0xe1a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Lizard icon /// /// https://fontawesome.com/icons/hand-lizard?style=solid /// game, roshambo - static const IconData solidHandLizard = IconDataSolid(0xf258); + static const IconData solidHandLizard = IconData(0xf258, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Lizard icon /// /// https://fontawesome.com/icons/hand-lizard?style=regular /// game, roshambo - static const IconData handLizard = IconDataRegular(0xf258); + static const IconData handLizard = IconData(0xf258, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Lizard icon /// /// https://fontawesome.com/icons/hand-lizard?style=light /// game, roshambo - static const IconData lightHandLizard = IconDataLight(0xf258); + static const IconData lightHandLizard = IconData(0xf258, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Lizard icon /// /// https://fontawesome.com/icons/hand-lizard?style=thin /// game, roshambo - static const IconData thinHandLizard = IconDataThin(0xf258); + static const IconData thinHandLizard = IconData(0xf258, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Love icon /// /// https://fontawesome.com/icons/hand-love?style=solid /// ILY, hand, love-you gesture, peace - static const IconData solidHandLove = IconDataSolid(0xe1a5); + static const IconData solidHandLove = IconData(0xe1a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Love icon /// /// https://fontawesome.com/icons/hand-love?style=regular /// ILY, hand, love-you gesture, peace - static const IconData handLove = IconDataRegular(0xe1a5); + static const IconData handLove = IconData(0xe1a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Love icon /// /// https://fontawesome.com/icons/hand-love?style=light /// ILY, hand, love-you gesture, peace - static const IconData lightHandLove = IconDataLight(0xe1a5); + static const IconData lightHandLove = IconData(0xe1a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Love icon /// /// https://fontawesome.com/icons/hand-love?style=thin /// ILY, hand, love-you gesture, peace - static const IconData thinHandLove = IconDataThin(0xe1a5); + static const IconData thinHandLove = IconData(0xe1a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Middle Finger icon /// /// https://fontawesome.com/icons/hand-middle-finger?style=solid /// finger, flip the bird, gesture, hand, hate, middle finger, rude - static const IconData solidHandMiddleFinger = IconDataSolid(0xf806); + static const IconData solidHandMiddleFinger = IconData(0xf806, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Middle Finger icon /// /// https://fontawesome.com/icons/hand-middle-finger?style=regular /// finger, flip the bird, gesture, hand, hate, middle finger, rude - static const IconData handMiddleFinger = IconDataRegular(0xf806); + static const IconData handMiddleFinger = IconData(0xf806, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Middle Finger icon /// /// https://fontawesome.com/icons/hand-middle-finger?style=light /// finger, flip the bird, gesture, hand, hate, middle finger, rude - static const IconData lightHandMiddleFinger = IconDataLight(0xf806); + static const IconData lightHandMiddleFinger = IconData(0xf806, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Middle Finger icon /// /// https://fontawesome.com/icons/hand-middle-finger?style=thin /// finger, flip the bird, gesture, hand, hate, middle finger, rude - static const IconData thinHandMiddleFinger = IconDataThin(0xf806); + static const IconData thinHandMiddleFinger = IconData(0xf806, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Peace icon /// /// https://fontawesome.com/icons/hand-peace?style=solid /// hand, rest, truce, v, victory, victory hand - static const IconData solidHandPeace = IconDataSolid(0xf25b); + static const IconData solidHandPeace = IconData(0xf25b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Peace icon /// /// https://fontawesome.com/icons/hand-peace?style=regular /// hand, rest, truce, v, victory, victory hand - static const IconData handPeace = IconDataRegular(0xf25b); + static const IconData handPeace = IconData(0xf25b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Peace icon /// /// https://fontawesome.com/icons/hand-peace?style=light /// hand, rest, truce, v, victory, victory hand - static const IconData lightHandPeace = IconDataLight(0xf25b); + static const IconData lightHandPeace = IconData(0xf25b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Peace icon /// /// https://fontawesome.com/icons/hand-peace?style=thin /// hand, rest, truce, v, victory, victory hand - static const IconData thinHandPeace = IconDataThin(0xf25b); + static const IconData thinHandPeace = IconData(0xf25b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Point Down icon /// /// https://fontawesome.com/icons/hand-point-down?style=solid /// finger, hand-o-down, point - static const IconData solidHandPointDown = IconDataSolid(0xf0a7); + static const IconData solidHandPointDown = IconData(0xf0a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Point Down icon /// /// https://fontawesome.com/icons/hand-point-down?style=regular /// finger, hand-o-down, point - static const IconData handPointDown = IconDataRegular(0xf0a7); + static const IconData handPointDown = IconData(0xf0a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Point Down icon /// /// https://fontawesome.com/icons/hand-point-down?style=light /// finger, hand-o-down, point - static const IconData lightHandPointDown = IconDataLight(0xf0a7); + static const IconData lightHandPointDown = IconData(0xf0a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Point Down icon /// /// https://fontawesome.com/icons/hand-point-down?style=thin /// finger, hand-o-down, point - static const IconData thinHandPointDown = IconDataThin(0xf0a7); + static const IconData thinHandPointDown = IconData(0xf0a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Point Left icon /// /// https://fontawesome.com/icons/hand-point-left?style=solid /// back, finger, hand-o-left, left, point, previous - static const IconData solidHandPointLeft = IconDataSolid(0xf0a5); + static const IconData solidHandPointLeft = IconData(0xf0a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Point Left icon /// /// https://fontawesome.com/icons/hand-point-left?style=regular /// back, finger, hand-o-left, left, point, previous - static const IconData handPointLeft = IconDataRegular(0xf0a5); + static const IconData handPointLeft = IconData(0xf0a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Point Left icon /// /// https://fontawesome.com/icons/hand-point-left?style=light /// back, finger, hand-o-left, left, point, previous - static const IconData lightHandPointLeft = IconDataLight(0xf0a5); + static const IconData lightHandPointLeft = IconData(0xf0a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Point Left icon /// /// https://fontawesome.com/icons/hand-point-left?style=thin /// back, finger, hand-o-left, left, point, previous - static const IconData thinHandPointLeft = IconDataThin(0xf0a5); + static const IconData thinHandPointLeft = IconData(0xf0a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Point Ribbon icon /// /// https://fontawesome.com/icons/hand-point-ribbon?style=solid /// remember, remind - static const IconData solidHandPointRibbon = IconDataSolid(0xe1a6); + static const IconData solidHandPointRibbon = IconData(0xe1a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Point Ribbon icon /// /// https://fontawesome.com/icons/hand-point-ribbon?style=regular /// remember, remind - static const IconData handPointRibbon = IconDataRegular(0xe1a6); + static const IconData handPointRibbon = IconData(0xe1a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Point Ribbon icon /// /// https://fontawesome.com/icons/hand-point-ribbon?style=light /// remember, remind - static const IconData lightHandPointRibbon = IconDataLight(0xe1a6); + static const IconData lightHandPointRibbon = IconData(0xe1a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Point Ribbon icon /// /// https://fontawesome.com/icons/hand-point-ribbon?style=thin /// remember, remind - static const IconData thinHandPointRibbon = IconDataThin(0xe1a6); + static const IconData thinHandPointRibbon = IconData(0xe1a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Point Right icon /// /// https://fontawesome.com/icons/hand-point-right?style=solid /// finger, forward, hand-o-right, next, point, right - static const IconData solidHandPointRight = IconDataSolid(0xf0a4); + static const IconData solidHandPointRight = IconData(0xf0a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Point Right icon /// /// https://fontawesome.com/icons/hand-point-right?style=regular /// finger, forward, hand-o-right, next, point, right - static const IconData handPointRight = IconDataRegular(0xf0a4); + static const IconData handPointRight = IconData(0xf0a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Point Right icon /// /// https://fontawesome.com/icons/hand-point-right?style=light /// finger, forward, hand-o-right, next, point, right - static const IconData lightHandPointRight = IconDataLight(0xf0a4); + static const IconData lightHandPointRight = IconData(0xf0a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Point Right icon /// /// https://fontawesome.com/icons/hand-point-right?style=thin /// finger, forward, hand-o-right, next, point, right - static const IconData thinHandPointRight = IconDataThin(0xf0a4); + static const IconData thinHandPointRight = IconData(0xf0a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Point Up icon /// /// https://fontawesome.com/icons/hand-point-up?style=solid /// finger, hand, hand-o-up, index, index pointing up, point, request, up, upgrade - static const IconData solidHandPointUp = IconDataSolid(0xf0a6); + static const IconData solidHandPointUp = IconData(0xf0a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Point Up icon /// /// https://fontawesome.com/icons/hand-point-up?style=regular /// finger, hand, hand-o-up, index, index pointing up, point, request, up, upgrade - static const IconData handPointUp = IconDataRegular(0xf0a6); + static const IconData handPointUp = IconData(0xf0a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Point Up icon /// /// https://fontawesome.com/icons/hand-point-up?style=light /// finger, hand, hand-o-up, index, index pointing up, point, request, up, upgrade - static const IconData lightHandPointUp = IconDataLight(0xf0a6); + static const IconData lightHandPointUp = IconData(0xf0a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Point Up icon /// /// https://fontawesome.com/icons/hand-point-up?style=thin /// finger, hand, hand-o-up, index, index pointing up, point, request, up, upgrade - static const IconData thinHandPointUp = IconDataThin(0xf0a6); + static const IconData thinHandPointUp = IconData(0xf0a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Pointer icon /// /// https://fontawesome.com/icons/hand-pointer?style=solid /// arrow, cursor, select - static const IconData solidHandPointer = IconDataSolid(0xf25a); + static const IconData solidHandPointer = IconData(0xf25a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Pointer icon /// /// https://fontawesome.com/icons/hand-pointer?style=regular /// arrow, cursor, select - static const IconData handPointer = IconDataRegular(0xf25a); + static const IconData handPointer = IconData(0xf25a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Pointer icon /// /// https://fontawesome.com/icons/hand-pointer?style=light /// arrow, cursor, select - static const IconData lightHandPointer = IconDataLight(0xf25a); + static const IconData lightHandPointer = IconData(0xf25a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Pointer icon /// /// https://fontawesome.com/icons/hand-pointer?style=thin /// arrow, cursor, select - static const IconData thinHandPointer = IconDataThin(0xf25a); + static const IconData thinHandPointer = IconData(0xf25a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Scissors icon /// /// https://fontawesome.com/icons/hand-scissors?style=solid /// cut, game, roshambo - static const IconData solidHandScissors = IconDataSolid(0xf257); + static const IconData solidHandScissors = IconData(0xf257, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Scissors icon /// /// https://fontawesome.com/icons/hand-scissors?style=regular /// cut, game, roshambo - static const IconData handScissors = IconDataRegular(0xf257); + static const IconData handScissors = IconData(0xf257, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Scissors icon /// /// https://fontawesome.com/icons/hand-scissors?style=light /// cut, game, roshambo - static const IconData lightHandScissors = IconDataLight(0xf257); + static const IconData lightHandScissors = IconData(0xf257, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Scissors icon /// /// https://fontawesome.com/icons/hand-scissors?style=thin /// cut, game, roshambo - static const IconData thinHandScissors = IconDataThin(0xf257); + static const IconData thinHandScissors = IconData(0xf257, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Sparkles icon /// /// https://fontawesome.com/icons/hand-sparkles?style=solid /// clean, covid-19, hygiene, magic, palm, soap, wash - static const IconData solidHandSparkles = IconDataSolid(0xe05d); + static const IconData solidHandSparkles = IconData(0xe05d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Sparkles icon /// /// https://fontawesome.com/icons/hand-sparkles?style=regular /// clean, covid-19, hygiene, magic, palm, soap, wash - static const IconData handSparkles = IconDataRegular(0xe05d); + static const IconData handSparkles = IconData(0xe05d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Sparkles icon /// /// https://fontawesome.com/icons/hand-sparkles?style=light /// clean, covid-19, hygiene, magic, palm, soap, wash - static const IconData lightHandSparkles = IconDataLight(0xe05d); + static const IconData lightHandSparkles = IconData(0xe05d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Sparkles icon /// /// https://fontawesome.com/icons/hand-sparkles?style=thin /// clean, covid-19, hygiene, magic, palm, soap, wash - static const IconData thinHandSparkles = IconDataThin(0xe05d); + static const IconData thinHandSparkles = IconData(0xe05d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Spock icon /// /// https://fontawesome.com/icons/hand-spock?style=solid /// finger, hand, live long, palm, prosper, salute, spock, star trek, vulcan, vulcan salute - static const IconData solidHandSpock = IconDataSolid(0xf259); + static const IconData solidHandSpock = IconData(0xf259, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Spock icon /// /// https://fontawesome.com/icons/hand-spock?style=regular /// finger, hand, live long, palm, prosper, salute, spock, star trek, vulcan, vulcan salute - static const IconData handSpock = IconDataRegular(0xf259); + static const IconData handSpock = IconData(0xf259, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Spock icon /// /// https://fontawesome.com/icons/hand-spock?style=light /// finger, hand, live long, palm, prosper, salute, spock, star trek, vulcan, vulcan salute - static const IconData lightHandSpock = IconDataLight(0xf259); + static const IconData lightHandSpock = IconData(0xf259, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Spock icon /// /// https://fontawesome.com/icons/hand-spock?style=thin /// finger, hand, live long, palm, prosper, salute, spock, star trek, vulcan, vulcan salute - static const IconData thinHandSpock = IconDataThin(0xf259); + static const IconData thinHandSpock = IconData(0xf259, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hand Wave icon /// /// https://fontawesome.com/icons/hand-wave?style=solid /// hand, hello, palm, request, wave, waving, waving hand - static const IconData solidHandWave = IconDataSolid(0xe1a7); + static const IconData solidHandWave = IconData(0xe1a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hand Wave icon /// /// https://fontawesome.com/icons/hand-wave?style=regular /// hand, hello, palm, request, wave, waving, waving hand - static const IconData handWave = IconDataRegular(0xe1a7); + static const IconData handWave = IconData(0xe1a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hand Wave icon /// /// https://fontawesome.com/icons/hand-wave?style=light /// hand, hello, palm, request, wave, waving, waving hand - static const IconData lightHandWave = IconDataLight(0xe1a7); + static const IconData lightHandWave = IconData(0xe1a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hand Wave icon /// /// https://fontawesome.com/icons/hand-wave?style=thin /// hand, hello, palm, request, wave, waving, waving hand - static const IconData thinHandWave = IconDataThin(0xe1a7); + static const IconData thinHandWave = IconData(0xe1a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Handcuffs icon /// /// https://fontawesome.com/icons/handcuffs?style=solid /// arrest, criminal, handcuffs, jail, lock, police, wrist - static const IconData solidHandcuffs = IconDataSolid(0xe4f8); + static const IconData solidHandcuffs = IconData(0xe4f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Handcuffs icon /// /// https://fontawesome.com/icons/handcuffs?style=regular /// arrest, criminal, handcuffs, jail, lock, police, wrist - static const IconData handcuffs = IconDataRegular(0xe4f8); + static const IconData handcuffs = IconData(0xe4f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Handcuffs icon /// /// https://fontawesome.com/icons/handcuffs?style=light /// arrest, criminal, handcuffs, jail, lock, police, wrist - static const IconData lightHandcuffs = IconDataLight(0xe4f8); + static const IconData lightHandcuffs = IconData(0xe4f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Handcuffs icon /// /// https://fontawesome.com/icons/handcuffs?style=thin /// arrest, criminal, handcuffs, jail, lock, police, wrist - static const IconData thinHandcuffs = IconDataThin(0xe4f8); + static const IconData thinHandcuffs = IconData(0xe4f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands icon /// /// https://fontawesome.com/icons/hands?style=solid /// Translate, asl, deaf, hands - static const IconData solidHands = IconDataSolid(0xf2a7); + static const IconData solidHands = IconData(0xf2a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign-language for icon [solidHands] @Deprecated('Use "solidHands" instead.') @@ -45847,7 +45847,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands?style=regular /// Translate, asl, deaf, hands - static const IconData hands = IconDataRegular(0xf2a7); + static const IconData hands = IconData(0xf2a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign-language for icon [hands] @Deprecated('Use "hands" instead.') @@ -45861,7 +45861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands?style=light /// Translate, asl, deaf, hands - static const IconData lightHands = IconDataLight(0xf2a7); + static const IconData lightHands = IconData(0xf2a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign-language for icon [lightHands] @Deprecated('Use "lightHands" instead.') @@ -45875,7 +45875,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands?style=thin /// Translate, asl, deaf, hands - static const IconData thinHands = IconDataThin(0xf2a7); + static const IconData thinHands = IconData(0xf2a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign-language for icon [thinHands] @Deprecated('Use "thinHands" instead.') @@ -45889,7 +45889,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-asl-interpreting?style=solid /// asl, deaf, finger, hand, interpret, speak - static const IconData solidHandsAslInterpreting = IconDataSolid(0xf2a3); + static const IconData solidHandsAslInterpreting = IconData(0xf2a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias american-sign-language-interpreting for icon [solidHandsAslInterpreting] @Deprecated('Use "solidHandsAslInterpreting" instead.') @@ -45909,7 +45909,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-asl-interpreting?style=regular /// asl, deaf, finger, hand, interpret, speak - static const IconData handsAslInterpreting = IconDataRegular(0xf2a3); + static const IconData handsAslInterpreting = IconData(0xf2a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias american-sign-language-interpreting for icon [handsAslInterpreting] @Deprecated('Use "handsAslInterpreting" instead.') @@ -45928,7 +45928,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-asl-interpreting?style=light /// asl, deaf, finger, hand, interpret, speak - static const IconData lightHandsAslInterpreting = IconDataLight(0xf2a3); + static const IconData lightHandsAslInterpreting = IconData(0xf2a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias american-sign-language-interpreting for icon [lightHandsAslInterpreting] @Deprecated('Use "lightHandsAslInterpreting" instead.') @@ -45948,7 +45948,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-asl-interpreting?style=thin /// asl, deaf, finger, hand, interpret, speak - static const IconData thinHandsAslInterpreting = IconDataThin(0xf2a3); + static const IconData thinHandsAslInterpreting = IconData(0xf2a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias american-sign-language-interpreting for icon [thinHandsAslInterpreting] @Deprecated('Use "thinHandsAslInterpreting" instead.') @@ -45968,31 +45968,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-bound?style=solid /// abduction, bound, handcuff, wrist - static const IconData solidHandsBound = IconDataSolid(0xe4f9); + static const IconData solidHandsBound = IconData(0xe4f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hands Bound icon /// /// https://fontawesome.com/icons/hands-bound?style=regular /// abduction, bound, handcuff, wrist - static const IconData handsBound = IconDataRegular(0xe4f9); + static const IconData handsBound = IconData(0xe4f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hands Bound icon /// /// https://fontawesome.com/icons/hands-bound?style=light /// abduction, bound, handcuff, wrist - static const IconData lightHandsBound = IconDataLight(0xe4f9); + static const IconData lightHandsBound = IconData(0xe4f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hands Bound icon /// /// https://fontawesome.com/icons/hands-bound?style=thin /// abduction, bound, handcuff, wrist - static const IconData thinHandsBound = IconDataThin(0xe4f9); + static const IconData thinHandsBound = IconData(0xe4f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands Bubbles icon /// /// https://fontawesome.com/icons/hands-bubbles?style=solid /// covid-19, hygiene, soap, wash - static const IconData solidHandsBubbles = IconDataSolid(0xe05e); + static const IconData solidHandsBubbles = IconData(0xe05e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hands-wash for icon [solidHandsBubbles] @Deprecated('Use "solidHandsBubbles" instead.') @@ -46002,7 +46002,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-bubbles?style=regular /// covid-19, hygiene, soap, wash - static const IconData handsBubbles = IconDataRegular(0xe05e); + static const IconData handsBubbles = IconData(0xe05e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hands-wash for icon [handsBubbles] @Deprecated('Use "handsBubbles" instead.') @@ -46012,7 +46012,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-bubbles?style=light /// covid-19, hygiene, soap, wash - static const IconData lightHandsBubbles = IconDataLight(0xe05e); + static const IconData lightHandsBubbles = IconData(0xe05e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hands-wash for icon [lightHandsBubbles] @Deprecated('Use "lightHandsBubbles" instead.') @@ -46022,7 +46022,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-bubbles?style=thin /// covid-19, hygiene, soap, wash - static const IconData thinHandsBubbles = IconDataThin(0xe05e); + static const IconData thinHandsBubbles = IconData(0xe05e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hands-wash for icon [thinHandsBubbles] @Deprecated('Use "thinHandsBubbles" instead.') @@ -46032,103 +46032,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-clapping?style=solid /// applause, clap, clapping hands, hand - static const IconData solidHandsClapping = IconDataSolid(0xe1a8); + static const IconData solidHandsClapping = IconData(0xe1a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hands Clapping icon /// /// https://fontawesome.com/icons/hands-clapping?style=regular /// applause, clap, clapping hands, hand - static const IconData handsClapping = IconDataRegular(0xe1a8); + static const IconData handsClapping = IconData(0xe1a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hands Clapping icon /// /// https://fontawesome.com/icons/hands-clapping?style=light /// applause, clap, clapping hands, hand - static const IconData lightHandsClapping = IconDataLight(0xe1a8); + static const IconData lightHandsClapping = IconData(0xe1a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hands Clapping icon /// /// https://fontawesome.com/icons/hands-clapping?style=thin /// applause, clap, clapping hands, hand - static const IconData thinHandsClapping = IconDataThin(0xe1a8); + static const IconData thinHandsClapping = IconData(0xe1a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands Holding icon /// /// https://fontawesome.com/icons/hands-holding?style=solid /// carry, hold, lift - static const IconData solidHandsHolding = IconDataSolid(0xf4c2); + static const IconData solidHandsHolding = IconData(0xf4c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hands Holding icon /// /// https://fontawesome.com/icons/hands-holding?style=regular /// carry, hold, lift - static const IconData handsHolding = IconDataRegular(0xf4c2); + static const IconData handsHolding = IconData(0xf4c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hands Holding icon /// /// https://fontawesome.com/icons/hands-holding?style=light /// carry, hold, lift - static const IconData lightHandsHolding = IconDataLight(0xf4c2); + static const IconData lightHandsHolding = IconData(0xf4c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hands Holding icon /// /// https://fontawesome.com/icons/hands-holding?style=thin /// carry, hold, lift - static const IconData thinHandsHolding = IconDataThin(0xf4c2); + static const IconData thinHandsHolding = IconData(0xf4c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands Holding Child icon /// /// https://fontawesome.com/icons/hands-holding-child?style=solid /// care, give, help, hold, parent, protect - static const IconData solidHandsHoldingChild = IconDataSolid(0xe4fa); + static const IconData solidHandsHoldingChild = IconData(0xe4fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hands Holding Child icon /// /// https://fontawesome.com/icons/hands-holding-child?style=regular /// care, give, help, hold, parent, protect - static const IconData handsHoldingChild = IconDataRegular(0xe4fa); + static const IconData handsHoldingChild = IconData(0xe4fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hands Holding Child icon /// /// https://fontawesome.com/icons/hands-holding-child?style=light /// care, give, help, hold, parent, protect - static const IconData lightHandsHoldingChild = IconDataLight(0xe4fa); + static const IconData lightHandsHoldingChild = IconData(0xe4fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hands Holding Child icon /// /// https://fontawesome.com/icons/hands-holding-child?style=thin /// care, give, help, hold, parent, protect - static const IconData thinHandsHoldingChild = IconDataThin(0xe4fa); + static const IconData thinHandsHoldingChild = IconData(0xe4fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands Holding Circle icon /// /// https://fontawesome.com/icons/hands-holding-circle?style=solid /// circle, gift, protection - static const IconData solidHandsHoldingCircle = IconDataSolid(0xe4fb); + static const IconData solidHandsHoldingCircle = IconData(0xe4fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hands Holding Circle icon /// /// https://fontawesome.com/icons/hands-holding-circle?style=regular /// circle, gift, protection - static const IconData handsHoldingCircle = IconDataRegular(0xe4fb); + static const IconData handsHoldingCircle = IconData(0xe4fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hands Holding Circle icon /// /// https://fontawesome.com/icons/hands-holding-circle?style=light /// circle, gift, protection - static const IconData lightHandsHoldingCircle = IconDataLight(0xe4fb); + static const IconData lightHandsHoldingCircle = IconData(0xe4fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hands Holding Circle icon /// /// https://fontawesome.com/icons/hands-holding-circle?style=thin /// circle, gift, protection - static const IconData thinHandsHoldingCircle = IconDataThin(0xe4fb); + static const IconData thinHandsHoldingCircle = IconData(0xe4fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hands Holding Diamond icon /// /// https://fontawesome.com/icons/hands-holding-diamond?style=solid /// carry, gift, handling, package, shipping - static const IconData solidHandsHoldingDiamond = IconDataSolid(0xf47c); + static const IconData solidHandsHoldingDiamond = IconData(0xf47c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hand-receiving for icon [solidHandsHoldingDiamond] @Deprecated('Use "solidHandsHoldingDiamond" instead.') @@ -46138,7 +46138,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-diamond?style=regular /// carry, gift, handling, package, shipping - static const IconData handsHoldingDiamond = IconDataRegular(0xf47c); + static const IconData handsHoldingDiamond = IconData(0xf47c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hand-receiving for icon [handsHoldingDiamond] @Deprecated('Use "handsHoldingDiamond" instead.') @@ -46148,7 +46148,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-diamond?style=light /// carry, gift, handling, package, shipping - static const IconData lightHandsHoldingDiamond = IconDataLight(0xf47c); + static const IconData lightHandsHoldingDiamond = IconData(0xf47c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hand-receiving for icon [lightHandsHoldingDiamond] @Deprecated('Use "lightHandsHoldingDiamond" instead.') @@ -46158,7 +46158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-diamond?style=thin /// carry, gift, handling, package, shipping - static const IconData thinHandsHoldingDiamond = IconDataThin(0xf47c); + static const IconData thinHandsHoldingDiamond = IconData(0xf47c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hand-receiving for icon [thinHandsHoldingDiamond] @Deprecated('Use "thinHandsHoldingDiamond" instead.') @@ -46168,7 +46168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-dollar?style=solid /// $, carry, coupon, dollar sign, donation, giving, hold, investment, money, premium, price, revenue, salary, usd - static const IconData solidHandsHoldingDollar = IconDataSolid(0xf4c5); + static const IconData solidHandsHoldingDollar = IconData(0xf4c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hands-usd for icon [solidHandsHoldingDollar] @Deprecated('Use "solidHandsHoldingDollar" instead.') @@ -46178,7 +46178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-dollar?style=regular /// $, carry, coupon, dollar sign, donation, giving, hold, investment, money, premium, price, revenue, salary, usd - static const IconData handsHoldingDollar = IconDataRegular(0xf4c5); + static const IconData handsHoldingDollar = IconData(0xf4c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hands-usd for icon [handsHoldingDollar] @Deprecated('Use "handsHoldingDollar" instead.') @@ -46188,7 +46188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-dollar?style=light /// $, carry, coupon, dollar sign, donation, giving, hold, investment, money, premium, price, revenue, salary, usd - static const IconData lightHandsHoldingDollar = IconDataLight(0xf4c5); + static const IconData lightHandsHoldingDollar = IconData(0xf4c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hands-usd for icon [lightHandsHoldingDollar] @Deprecated('Use "lightHandsHoldingDollar" instead.') @@ -46198,7 +46198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-dollar?style=thin /// $, carry, coupon, dollar sign, donation, giving, hold, investment, money, premium, price, revenue, salary, usd - static const IconData thinHandsHoldingDollar = IconDataThin(0xf4c5); + static const IconData thinHandsHoldingDollar = IconData(0xf4c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hands-usd for icon [thinHandsHoldingDollar] @Deprecated('Use "thinHandsHoldingDollar" instead.') @@ -46208,7 +46208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-heart?style=solid /// carry, gift, help, hold, lift, wishlist - static const IconData solidHandsHoldingHeart = IconDataSolid(0xf4c3); + static const IconData solidHandsHoldingHeart = IconData(0xf4c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hands-heart for icon [solidHandsHoldingHeart] @Deprecated('Use "solidHandsHoldingHeart" instead.') @@ -46218,7 +46218,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-heart?style=regular /// carry, gift, help, hold, lift, wishlist - static const IconData handsHoldingHeart = IconDataRegular(0xf4c3); + static const IconData handsHoldingHeart = IconData(0xf4c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hands-heart for icon [handsHoldingHeart] @Deprecated('Use "handsHoldingHeart" instead.') @@ -46228,7 +46228,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-heart?style=light /// carry, gift, help, hold, lift, wishlist - static const IconData lightHandsHoldingHeart = IconDataLight(0xf4c3); + static const IconData lightHandsHoldingHeart = IconData(0xf4c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hands-heart for icon [lightHandsHoldingHeart] @Deprecated('Use "lightHandsHoldingHeart" instead.') @@ -46238,7 +46238,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-holding-heart?style=thin /// carry, gift, help, hold, lift, wishlist - static const IconData thinHandsHoldingHeart = IconDataThin(0xf4c3); + static const IconData thinHandsHoldingHeart = IconData(0xf4c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hands-heart for icon [thinHandsHoldingHeart] @Deprecated('Use "thinHandsHoldingHeart" instead.') @@ -46248,7 +46248,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-praying?style=solid /// kneel, preach, religion, worship - static const IconData solidHandsPraying = IconDataSolid(0xf684); + static const IconData solidHandsPraying = IconData(0xf684, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias praying-hands for icon [solidHandsPraying] @Deprecated('Use "solidHandsPraying" instead.') @@ -46258,7 +46258,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-praying?style=regular /// kneel, preach, religion, worship - static const IconData handsPraying = IconDataRegular(0xf684); + static const IconData handsPraying = IconData(0xf684, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias praying-hands for icon [handsPraying] @Deprecated('Use "handsPraying" instead.') @@ -46268,7 +46268,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-praying?style=light /// kneel, preach, religion, worship - static const IconData lightHandsPraying = IconDataLight(0xf684); + static const IconData lightHandsPraying = IconData(0xf684, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias praying-hands for icon [lightHandsPraying] @Deprecated('Use "lightHandsPraying" instead.') @@ -46278,7 +46278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hands-praying?style=thin /// kneel, preach, religion, worship - static const IconData thinHandsPraying = IconDataThin(0xf684); + static const IconData thinHandsPraying = IconData(0xf684, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias praying-hands for icon [thinHandsPraying] @Deprecated('Use "thinHandsPraying" instead.') @@ -46288,31 +46288,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake?style=solid /// agreement, greeting, meeting, partnership - static const IconData solidHandshake = IconDataSolid(0xf2b5); + static const IconData solidHandshake = IconData(0xf2b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Handshake icon /// /// https://fontawesome.com/icons/handshake?style=regular /// agreement, greeting, meeting, partnership - static const IconData handshake = IconDataRegular(0xf2b5); + static const IconData handshake = IconData(0xf2b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Handshake icon /// /// https://fontawesome.com/icons/handshake?style=light /// agreement, greeting, meeting, partnership - static const IconData lightHandshake = IconDataLight(0xf2b5); + static const IconData lightHandshake = IconData(0xf2b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Handshake icon /// /// https://fontawesome.com/icons/handshake?style=thin /// agreement, greeting, meeting, partnership - static const IconData thinHandshake = IconDataThin(0xf2b5); + static const IconData thinHandshake = IconData(0xf2b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Handshake Angle icon /// /// https://fontawesome.com/icons/handshake-angle?style=solid /// aid, assistance, handshake, partnership, volunteering - static const IconData solidHandshakeAngle = IconDataSolid(0xf4c4); + static const IconData solidHandshakeAngle = IconData(0xf4c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hands-helping for icon [solidHandshakeAngle] @Deprecated('Use "solidHandshakeAngle" instead.') @@ -46322,7 +46322,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-angle?style=regular /// aid, assistance, handshake, partnership, volunteering - static const IconData handshakeAngle = IconDataRegular(0xf4c4); + static const IconData handshakeAngle = IconData(0xf4c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hands-helping for icon [handshakeAngle] @Deprecated('Use "handshakeAngle" instead.') @@ -46332,7 +46332,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-angle?style=light /// aid, assistance, handshake, partnership, volunteering - static const IconData lightHandshakeAngle = IconDataLight(0xf4c4); + static const IconData lightHandshakeAngle = IconData(0xf4c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hands-helping for icon [lightHandshakeAngle] @Deprecated('Use "lightHandshakeAngle" instead.') @@ -46342,7 +46342,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-angle?style=thin /// aid, assistance, handshake, partnership, volunteering - static const IconData thinHandshakeAngle = IconDataThin(0xf4c4); + static const IconData thinHandshakeAngle = IconData(0xf4c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hands-helping for icon [thinHandshakeAngle] @Deprecated('Use "thinHandshakeAngle" instead.') @@ -46352,7 +46352,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple?style=solid /// agreement, greeting, hand, handshake, meeting, partnership, shake - static const IconData solidHandshakeSimple = IconDataSolid(0xf4c6); + static const IconData solidHandshakeSimple = IconData(0xf4c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt for icon [solidHandshakeSimple] @Deprecated('Use "solidHandshakeSimple" instead.') @@ -46362,7 +46362,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple?style=regular /// agreement, greeting, hand, handshake, meeting, partnership, shake - static const IconData handshakeSimple = IconDataRegular(0xf4c6); + static const IconData handshakeSimple = IconData(0xf4c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt for icon [handshakeSimple] @Deprecated('Use "handshakeSimple" instead.') @@ -46372,7 +46372,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple?style=light /// agreement, greeting, hand, handshake, meeting, partnership, shake - static const IconData lightHandshakeSimple = IconDataLight(0xf4c6); + static const IconData lightHandshakeSimple = IconData(0xf4c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt for icon [lightHandshakeSimple] @Deprecated('Use "lightHandshakeSimple" instead.') @@ -46382,7 +46382,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple?style=thin /// agreement, greeting, hand, handshake, meeting, partnership, shake - static const IconData thinHandshakeSimple = IconDataThin(0xf4c6); + static const IconData thinHandshakeSimple = IconData(0xf4c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt for icon [thinHandshakeSimple] @Deprecated('Use "thinHandshakeSimple" instead.') @@ -46392,7 +46392,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple-slash?style=solid /// broken, covid-19, disabled, social distance - static const IconData solidHandshakeSimpleSlash = IconDataSolid(0xe05f); + static const IconData solidHandshakeSimpleSlash = IconData(0xe05f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt-slash for icon [solidHandshakeSimpleSlash] @Deprecated('Use "solidHandshakeSimpleSlash" instead.') @@ -46402,7 +46402,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple-slash?style=regular /// broken, covid-19, disabled, social distance - static const IconData handshakeSimpleSlash = IconDataRegular(0xe05f); + static const IconData handshakeSimpleSlash = IconData(0xe05f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt-slash for icon [handshakeSimpleSlash] @Deprecated('Use "handshakeSimpleSlash" instead.') @@ -46412,7 +46412,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple-slash?style=light /// broken, covid-19, disabled, social distance - static const IconData lightHandshakeSimpleSlash = IconDataLight(0xe05f); + static const IconData lightHandshakeSimpleSlash = IconData(0xe05f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt-slash for icon [lightHandshakeSimpleSlash] @Deprecated('Use "lightHandshakeSimpleSlash" instead.') @@ -46422,7 +46422,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-simple-slash?style=thin /// broken, covid-19, disabled, social distance - static const IconData thinHandshakeSimpleSlash = IconDataThin(0xe05f); + static const IconData thinHandshakeSimpleSlash = IconData(0xe05f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias handshake-alt-slash for icon [thinHandshakeSimpleSlash] @Deprecated('Use "thinHandshakeSimpleSlash" instead.') @@ -46432,55 +46432,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/handshake-slash?style=solid /// broken, covid-19, disabled, social distance - static const IconData solidHandshakeSlash = IconDataSolid(0xe060); + static const IconData solidHandshakeSlash = IconData(0xe060, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Handshake Slash icon /// /// https://fontawesome.com/icons/handshake-slash?style=regular /// broken, covid-19, disabled, social distance - static const IconData handshakeSlash = IconDataRegular(0xe060); + static const IconData handshakeSlash = IconData(0xe060, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Handshake Slash icon /// /// https://fontawesome.com/icons/handshake-slash?style=light /// broken, covid-19, disabled, social distance - static const IconData lightHandshakeSlash = IconDataLight(0xe060); + static const IconData lightHandshakeSlash = IconData(0xe060, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Handshake Slash icon /// /// https://fontawesome.com/icons/handshake-slash?style=thin /// broken, covid-19, disabled, social distance - static const IconData thinHandshakeSlash = IconDataThin(0xe060); + static const IconData thinHandshakeSlash = IconData(0xe060, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hanukiah icon /// /// https://fontawesome.com/icons/hanukiah?style=solid /// candelabrum, candle, candlestick, hanukkah, jewish, judaism, light, menorah, religion - static const IconData solidHanukiah = IconDataSolid(0xf6e6); + static const IconData solidHanukiah = IconData(0xf6e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hanukiah icon /// /// https://fontawesome.com/icons/hanukiah?style=regular /// candelabrum, candle, candlestick, hanukkah, jewish, judaism, light, menorah, religion - static const IconData hanukiah = IconDataRegular(0xf6e6); + static const IconData hanukiah = IconData(0xf6e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hanukiah icon /// /// https://fontawesome.com/icons/hanukiah?style=light /// candelabrum, candle, candlestick, hanukkah, jewish, judaism, light, menorah, religion - static const IconData lightHanukiah = IconDataLight(0xf6e6); + static const IconData lightHanukiah = IconData(0xf6e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hanukiah icon /// /// https://fontawesome.com/icons/hanukiah?style=thin /// candelabrum, candle, candlestick, hanukkah, jewish, judaism, light, menorah, religion - static const IconData thinHanukiah = IconDataThin(0xf6e6); + static const IconData thinHanukiah = IconData(0xf6e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hard Drive icon /// /// https://fontawesome.com/icons/hard-drive?style=solid /// Hard Disk, cpu, hard drive, harddrive, machine, save, storage - static const IconData solidHardDrive = IconDataSolid(0xf0a0); + static const IconData solidHardDrive = IconData(0xf0a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hdd for icon [solidHardDrive] @Deprecated('Use "solidHardDrive" instead.') @@ -46490,7 +46490,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hard-drive?style=regular /// Hard Disk, cpu, hard drive, harddrive, machine, save, storage - static const IconData hardDrive = IconDataRegular(0xf0a0); + static const IconData hardDrive = IconData(0xf0a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hdd for icon [hardDrive] @Deprecated('Use "hardDrive" instead.') @@ -46500,7 +46500,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hard-drive?style=light /// Hard Disk, cpu, hard drive, harddrive, machine, save, storage - static const IconData lightHardDrive = IconDataLight(0xf0a0); + static const IconData lightHardDrive = IconData(0xf0a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hdd for icon [lightHardDrive] @Deprecated('Use "lightHardDrive" instead.') @@ -46510,7 +46510,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hard-drive?style=thin /// Hard Disk, cpu, hard drive, harddrive, machine, save, storage - static const IconData thinHardDrive = IconDataThin(0xf0a0); + static const IconData thinHardDrive = IconData(0xf0a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hdd for icon [thinHardDrive] @Deprecated('Use "thinHardDrive" instead.') @@ -46519,373 +46519,373 @@ class FontAwesomeIcons { /// Brands Hashnode icon /// /// https://fontawesome.com/icons/hashnode?style=brands - static const IconData hashnode = IconDataBrands(0xe499); + static const IconData hashnode = IconData(0xe499, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hashtag icon /// /// https://fontawesome.com/icons/hashtag?style=solid /// Number Sign, Twitter, instagram, pound, social media, tag - static const IconData solidHashtag = IconDataSolid(0x23); + static const IconData solidHashtag = IconData(0x23, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hashtag icon /// /// https://fontawesome.com/icons/hashtag?style=regular /// Number Sign, Twitter, instagram, pound, social media, tag - static const IconData hashtag = IconDataRegular(0x23); + static const IconData hashtag = IconData(0x23, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hashtag icon /// /// https://fontawesome.com/icons/hashtag?style=light /// Number Sign, Twitter, instagram, pound, social media, tag - static const IconData lightHashtag = IconDataLight(0x23); + static const IconData lightHashtag = IconData(0x23, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hashtag icon /// /// https://fontawesome.com/icons/hashtag?style=thin /// Number Sign, Twitter, instagram, pound, social media, tag - static const IconData thinHashtag = IconDataThin(0x23); + static const IconData thinHashtag = IconData(0x23, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hashtag Lock icon /// /// https://fontawesome.com/icons/hashtag-lock?style=solid /// number lock, numeric lock, numlock, padlock, privacy - static const IconData solidHashtagLock = IconDataSolid(0xe415); + static const IconData solidHashtagLock = IconData(0xe415, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hashtag Lock icon /// /// https://fontawesome.com/icons/hashtag-lock?style=regular /// number lock, numeric lock, numlock, padlock, privacy - static const IconData hashtagLock = IconDataRegular(0xe415); + static const IconData hashtagLock = IconData(0xe415, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hashtag Lock icon /// /// https://fontawesome.com/icons/hashtag-lock?style=light /// number lock, numeric lock, numlock, padlock, privacy - static const IconData lightHashtagLock = IconDataLight(0xe415); + static const IconData lightHashtagLock = IconData(0xe415, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hashtag Lock icon /// /// https://fontawesome.com/icons/hashtag-lock?style=thin /// number lock, numeric lock, numlock, padlock, privacy - static const IconData thinHashtagLock = IconDataThin(0xe415); + static const IconData thinHashtagLock = IconData(0xe415, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Beach icon /// /// https://fontawesome.com/icons/hat-beach?style=solid /// beach, flower, shade, sun, hat - static const IconData solidHatBeach = IconDataSolid(0xe606); + static const IconData solidHatBeach = IconData(0xe606, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Beach icon /// /// https://fontawesome.com/icons/hat-beach?style=regular /// beach, flower, shade, sun, hat - static const IconData hatBeach = IconDataRegular(0xe606); + static const IconData hatBeach = IconData(0xe606, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Beach icon /// /// https://fontawesome.com/icons/hat-beach?style=light /// beach, flower, shade, sun, hat - static const IconData lightHatBeach = IconDataLight(0xe606); + static const IconData lightHatBeach = IconData(0xe606, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Beach icon /// /// https://fontawesome.com/icons/hat-beach?style=thin /// beach, flower, shade, sun, hat - static const IconData thinHatBeach = IconDataThin(0xe606); + static const IconData thinHatBeach = IconData(0xe606, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Chef icon /// /// https://fontawesome.com/icons/hat-chef?style=solid /// cook, cuisine, culinary, dining, kitchen - static const IconData solidHatChef = IconDataSolid(0xf86b); + static const IconData solidHatChef = IconData(0xf86b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Chef icon /// /// https://fontawesome.com/icons/hat-chef?style=regular /// cook, cuisine, culinary, dining, kitchen - static const IconData hatChef = IconDataRegular(0xf86b); + static const IconData hatChef = IconData(0xf86b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Chef icon /// /// https://fontawesome.com/icons/hat-chef?style=light /// cook, cuisine, culinary, dining, kitchen - static const IconData lightHatChef = IconDataLight(0xf86b); + static const IconData lightHatChef = IconData(0xf86b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Chef icon /// /// https://fontawesome.com/icons/hat-chef?style=thin /// cook, cuisine, culinary, dining, kitchen - static const IconData thinHatChef = IconDataThin(0xf86b); + static const IconData thinHatChef = IconData(0xf86b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Cowboy icon /// /// https://fontawesome.com/icons/hat-cowboy?style=solid /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData solidHatCowboy = IconDataSolid(0xf8c0); + static const IconData solidHatCowboy = IconData(0xf8c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Cowboy icon /// /// https://fontawesome.com/icons/hat-cowboy?style=regular /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData hatCowboy = IconDataRegular(0xf8c0); + static const IconData hatCowboy = IconData(0xf8c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Cowboy icon /// /// https://fontawesome.com/icons/hat-cowboy?style=light /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData lightHatCowboy = IconDataLight(0xf8c0); + static const IconData lightHatCowboy = IconData(0xf8c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Cowboy icon /// /// https://fontawesome.com/icons/hat-cowboy?style=thin /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData thinHatCowboy = IconDataThin(0xf8c0); + static const IconData thinHatCowboy = IconData(0xf8c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Cowboy Side icon /// /// https://fontawesome.com/icons/hat-cowboy-side?style=solid /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData solidHatCowboySide = IconDataSolid(0xf8c1); + static const IconData solidHatCowboySide = IconData(0xf8c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Cowboy Side icon /// /// https://fontawesome.com/icons/hat-cowboy-side?style=regular /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData hatCowboySide = IconDataRegular(0xf8c1); + static const IconData hatCowboySide = IconData(0xf8c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Cowboy Side icon /// /// https://fontawesome.com/icons/hat-cowboy-side?style=light /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData lightHatCowboySide = IconDataLight(0xf8c1); + static const IconData lightHatCowboySide = IconData(0xf8c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Cowboy Side icon /// /// https://fontawesome.com/icons/hat-cowboy-side?style=thin /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData thinHatCowboySide = IconDataThin(0xf8c1); + static const IconData thinHatCowboySide = IconData(0xf8c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Santa icon /// /// https://fontawesome.com/icons/hat-santa?style=solid /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData solidHatSanta = IconDataSolid(0xf7a7); + static const IconData solidHatSanta = IconData(0xf7a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Santa icon /// /// https://fontawesome.com/icons/hat-santa?style=regular /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData hatSanta = IconDataRegular(0xf7a7); + static const IconData hatSanta = IconData(0xf7a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Santa icon /// /// https://fontawesome.com/icons/hat-santa?style=light /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData lightHatSanta = IconDataLight(0xf7a7); + static const IconData lightHatSanta = IconData(0xf7a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Santa icon /// /// https://fontawesome.com/icons/hat-santa?style=thin /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData thinHatSanta = IconDataThin(0xf7a7); + static const IconData thinHatSanta = IconData(0xf7a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Winter icon /// /// https://fontawesome.com/icons/hat-winter?style=solid /// accessory, clothing, cold, head, knitted, seasonal - static const IconData solidHatWinter = IconDataSolid(0xf7a8); + static const IconData solidHatWinter = IconData(0xf7a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Winter icon /// /// https://fontawesome.com/icons/hat-winter?style=regular /// accessory, clothing, cold, head, knitted, seasonal - static const IconData hatWinter = IconDataRegular(0xf7a8); + static const IconData hatWinter = IconData(0xf7a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Winter icon /// /// https://fontawesome.com/icons/hat-winter?style=light /// accessory, clothing, cold, head, knitted, seasonal - static const IconData lightHatWinter = IconDataLight(0xf7a8); + static const IconData lightHatWinter = IconData(0xf7a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Winter icon /// /// https://fontawesome.com/icons/hat-winter?style=thin /// accessory, clothing, cold, head, knitted, seasonal - static const IconData thinHatWinter = IconDataThin(0xf7a8); + static const IconData thinHatWinter = IconData(0xf7a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Witch icon /// /// https://fontawesome.com/icons/hat-witch?style=solid /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData solidHatWitch = IconDataSolid(0xf6e7); + static const IconData solidHatWitch = IconData(0xf6e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Witch icon /// /// https://fontawesome.com/icons/hat-witch?style=regular /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData hatWitch = IconDataRegular(0xf6e7); + static const IconData hatWitch = IconData(0xf6e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Witch icon /// /// https://fontawesome.com/icons/hat-witch?style=light /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData lightHatWitch = IconDataLight(0xf6e7); + static const IconData lightHatWitch = IconData(0xf6e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Witch icon /// /// https://fontawesome.com/icons/hat-witch?style=thin /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData thinHatWitch = IconDataThin(0xf6e7); + static const IconData thinHatWitch = IconData(0xf6e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hat Wizard icon /// /// https://fontawesome.com/icons/hat-wizard?style=solid /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconData solidHatWizard = IconDataSolid(0xf6e8); + static const IconData solidHatWizard = IconData(0xf6e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hat Wizard icon /// /// https://fontawesome.com/icons/hat-wizard?style=regular /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconData hatWizard = IconDataRegular(0xf6e8); + static const IconData hatWizard = IconData(0xf6e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hat Wizard icon /// /// https://fontawesome.com/icons/hat-wizard?style=light /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconData lightHatWizard = IconDataLight(0xf6e8); + static const IconData lightHatWizard = IconData(0xf6e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hat Wizard icon /// /// https://fontawesome.com/icons/hat-wizard?style=thin /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconData thinHatWizard = IconDataThin(0xf6e8); + static const IconData thinHatWizard = IconData(0xf6e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side icon /// /// https://fontawesome.com/icons/head-side?style=solid /// bald, face, profile, uer, user - static const IconData solidHeadSide = IconDataSolid(0xf6e9); + static const IconData solidHeadSide = IconData(0xf6e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side icon /// /// https://fontawesome.com/icons/head-side?style=regular /// bald, face, profile, uer, user - static const IconData headSide = IconDataRegular(0xf6e9); + static const IconData headSide = IconData(0xf6e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side icon /// /// https://fontawesome.com/icons/head-side?style=light /// bald, face, profile, uer, user - static const IconData lightHeadSide = IconDataLight(0xf6e9); + static const IconData lightHeadSide = IconData(0xf6e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side icon /// /// https://fontawesome.com/icons/head-side?style=thin /// bald, face, profile, uer, user - static const IconData thinHeadSide = IconDataThin(0xf6e9); + static const IconData thinHeadSide = IconData(0xf6e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Brain icon /// /// https://fontawesome.com/icons/head-side-brain?style=solid /// diagnosis, face, knowledge, mental health, profile, psychiatric, psychiatry, scholar, uer - static const IconData solidHeadSideBrain = IconDataSolid(0xf808); + static const IconData solidHeadSideBrain = IconData(0xf808, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Brain icon /// /// https://fontawesome.com/icons/head-side-brain?style=regular /// diagnosis, face, knowledge, mental health, profile, psychiatric, psychiatry, scholar, uer - static const IconData headSideBrain = IconDataRegular(0xf808); + static const IconData headSideBrain = IconData(0xf808, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Brain icon /// /// https://fontawesome.com/icons/head-side-brain?style=light /// diagnosis, face, knowledge, mental health, profile, psychiatric, psychiatry, scholar, uer - static const IconData lightHeadSideBrain = IconDataLight(0xf808); + static const IconData lightHeadSideBrain = IconData(0xf808, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Brain icon /// /// https://fontawesome.com/icons/head-side-brain?style=thin /// diagnosis, face, knowledge, mental health, profile, psychiatric, psychiatry, scholar, uer - static const IconData thinHeadSideBrain = IconDataThin(0xf808); + static const IconData thinHeadSideBrain = IconData(0xf808, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Cough icon /// /// https://fontawesome.com/icons/head-side-cough?style=solid /// cough, covid-19, germs, lungs, respiratory, sick, uer - static const IconData solidHeadSideCough = IconDataSolid(0xe061); + static const IconData solidHeadSideCough = IconData(0xe061, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Cough icon /// /// https://fontawesome.com/icons/head-side-cough?style=regular /// cough, covid-19, germs, lungs, respiratory, sick, uer - static const IconData headSideCough = IconDataRegular(0xe061); + static const IconData headSideCough = IconData(0xe061, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Cough icon /// /// https://fontawesome.com/icons/head-side-cough?style=light /// cough, covid-19, germs, lungs, respiratory, sick, uer - static const IconData lightHeadSideCough = IconDataLight(0xe061); + static const IconData lightHeadSideCough = IconData(0xe061, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Cough icon /// /// https://fontawesome.com/icons/head-side-cough?style=thin /// cough, covid-19, germs, lungs, respiratory, sick, uer - static const IconData thinHeadSideCough = IconDataThin(0xe061); + static const IconData thinHeadSideCough = IconData(0xe061, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Cough Slash icon /// /// https://fontawesome.com/icons/head-side-cough-slash?style=solid /// cough, covid-19, disabled, germs, lungs, respiratory, sick, uer - static const IconData solidHeadSideCoughSlash = IconDataSolid(0xe062); + static const IconData solidHeadSideCoughSlash = IconData(0xe062, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Cough Slash icon /// /// https://fontawesome.com/icons/head-side-cough-slash?style=regular /// cough, covid-19, disabled, germs, lungs, respiratory, sick, uer - static const IconData headSideCoughSlash = IconDataRegular(0xe062); + static const IconData headSideCoughSlash = IconData(0xe062, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Cough Slash icon /// /// https://fontawesome.com/icons/head-side-cough-slash?style=light /// cough, covid-19, disabled, germs, lungs, respiratory, sick, uer - static const IconData lightHeadSideCoughSlash = IconDataLight(0xe062); + static const IconData lightHeadSideCoughSlash = IconData(0xe062, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Cough Slash icon /// /// https://fontawesome.com/icons/head-side-cough-slash?style=thin /// cough, covid-19, disabled, germs, lungs, respiratory, sick, uer - static const IconData thinHeadSideCoughSlash = IconDataThin(0xe062); + static const IconData thinHeadSideCoughSlash = IconData(0xe062, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Gear icon /// /// https://fontawesome.com/icons/head-side-gear?style=solid /// ai, android, augmented, cybernetics, face, gear, learning, machine, profile, robot, settings, thinking, thought, user, artificial intelligence, bald - static const IconData solidHeadSideGear = IconDataSolid(0xe611); + static const IconData solidHeadSideGear = IconData(0xe611, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Gear icon /// /// https://fontawesome.com/icons/head-side-gear?style=regular /// ai, android, augmented, cybernetics, face, gear, learning, machine, profile, robot, settings, thinking, thought, user, artificial intelligence, bald - static const IconData headSideGear = IconDataRegular(0xe611); + static const IconData headSideGear = IconData(0xe611, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Gear icon /// /// https://fontawesome.com/icons/head-side-gear?style=light /// ai, android, augmented, cybernetics, face, gear, learning, machine, profile, robot, settings, thinking, thought, user, artificial intelligence, bald - static const IconData lightHeadSideGear = IconDataLight(0xe611); + static const IconData lightHeadSideGear = IconData(0xe611, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Gear icon /// /// https://fontawesome.com/icons/head-side-gear?style=thin /// ai, android, augmented, cybernetics, face, gear, learning, machine, profile, robot, settings, thinking, thought, user, artificial intelligence, bald - static const IconData thinHeadSideGear = IconDataThin(0xe611); + static const IconData thinHeadSideGear = IconData(0xe611, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Goggles icon /// /// https://fontawesome.com/icons/head-side-goggles?style=solid /// 3d, augmented, face, occulus, profile, reality, uer, virtual - static const IconData solidHeadSideGoggles = IconDataSolid(0xf6ea); + static const IconData solidHeadSideGoggles = IconData(0xf6ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias head-vr for icon [solidHeadSideGoggles] @Deprecated('Use "solidHeadSideGoggles" instead.') @@ -46895,7 +46895,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/head-side-goggles?style=regular /// 3d, augmented, face, occulus, profile, reality, uer, virtual - static const IconData headSideGoggles = IconDataRegular(0xf6ea); + static const IconData headSideGoggles = IconData(0xf6ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias head-vr for icon [headSideGoggles] @Deprecated('Use "headSideGoggles" instead.') @@ -46905,7 +46905,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/head-side-goggles?style=light /// 3d, augmented, face, occulus, profile, reality, uer, virtual - static const IconData lightHeadSideGoggles = IconDataLight(0xf6ea); + static const IconData lightHeadSideGoggles = IconData(0xf6ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias head-vr for icon [lightHeadSideGoggles] @Deprecated('Use "lightHeadSideGoggles" instead.') @@ -46915,7 +46915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/head-side-goggles?style=thin /// 3d, augmented, face, occulus, profile, reality, uer, virtual - static const IconData thinHeadSideGoggles = IconDataThin(0xf6ea); + static const IconData thinHeadSideGoggles = IconData(0xf6ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias head-vr for icon [thinHeadSideGoggles] @Deprecated('Use "thinHeadSideGoggles" instead.') @@ -46925,127 +46925,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/head-side-headphones?style=solid /// amplifier, bluetooth, earphone, headset, listen, microphone, music, uer - static const IconData solidHeadSideHeadphones = IconDataSolid(0xf8c2); + static const IconData solidHeadSideHeadphones = IconData(0xf8c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Headphones icon /// /// https://fontawesome.com/icons/head-side-headphones?style=regular /// amplifier, bluetooth, earphone, headset, listen, microphone, music, uer - static const IconData headSideHeadphones = IconDataRegular(0xf8c2); + static const IconData headSideHeadphones = IconData(0xf8c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Headphones icon /// /// https://fontawesome.com/icons/head-side-headphones?style=light /// amplifier, bluetooth, earphone, headset, listen, microphone, music, uer - static const IconData lightHeadSideHeadphones = IconDataLight(0xf8c2); + static const IconData lightHeadSideHeadphones = IconData(0xf8c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Headphones icon /// /// https://fontawesome.com/icons/head-side-headphones?style=thin /// amplifier, bluetooth, earphone, headset, listen, microphone, music, uer - static const IconData thinHeadSideHeadphones = IconDataThin(0xf8c2); + static const IconData thinHeadSideHeadphones = IconData(0xf8c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Heart icon /// /// https://fontawesome.com/icons/head-side-heart?style=solid /// care, love, thought, uer, wishlist - static const IconData solidHeadSideHeart = IconDataSolid(0xe1aa); + static const IconData solidHeadSideHeart = IconData(0xe1aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Heart icon /// /// https://fontawesome.com/icons/head-side-heart?style=regular /// care, love, thought, uer, wishlist - static const IconData headSideHeart = IconDataRegular(0xe1aa); + static const IconData headSideHeart = IconData(0xe1aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Heart icon /// /// https://fontawesome.com/icons/head-side-heart?style=light /// care, love, thought, uer, wishlist - static const IconData lightHeadSideHeart = IconDataLight(0xe1aa); + static const IconData lightHeadSideHeart = IconData(0xe1aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Heart icon /// /// https://fontawesome.com/icons/head-side-heart?style=thin /// care, love, thought, uer, wishlist - static const IconData thinHeadSideHeart = IconDataThin(0xe1aa); + static const IconData thinHeadSideHeart = IconData(0xe1aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Mask icon /// /// https://fontawesome.com/icons/head-side-mask?style=solid /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, uer, virus - static const IconData solidHeadSideMask = IconDataSolid(0xe063); + static const IconData solidHeadSideMask = IconData(0xe063, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Mask icon /// /// https://fontawesome.com/icons/head-side-mask?style=regular /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, uer, virus - static const IconData headSideMask = IconDataRegular(0xe063); + static const IconData headSideMask = IconData(0xe063, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Mask icon /// /// https://fontawesome.com/icons/head-side-mask?style=light /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, uer, virus - static const IconData lightHeadSideMask = IconDataLight(0xe063); + static const IconData lightHeadSideMask = IconData(0xe063, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Mask icon /// /// https://fontawesome.com/icons/head-side-mask?style=thin /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, uer, virus - static const IconData thinHeadSideMask = IconDataThin(0xe063); + static const IconData thinHeadSideMask = IconData(0xe063, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Medical icon /// /// https://fontawesome.com/icons/head-side-medical?style=solid /// diagnosis, face, mental health, profile, psychiatric, psychiatry, uer - static const IconData solidHeadSideMedical = IconDataSolid(0xf809); + static const IconData solidHeadSideMedical = IconData(0xf809, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Medical icon /// /// https://fontawesome.com/icons/head-side-medical?style=regular /// diagnosis, face, mental health, profile, psychiatric, psychiatry, uer - static const IconData headSideMedical = IconDataRegular(0xf809); + static const IconData headSideMedical = IconData(0xf809, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Medical icon /// /// https://fontawesome.com/icons/head-side-medical?style=light /// diagnosis, face, mental health, profile, psychiatric, psychiatry, uer - static const IconData lightHeadSideMedical = IconDataLight(0xf809); + static const IconData lightHeadSideMedical = IconData(0xf809, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Medical icon /// /// https://fontawesome.com/icons/head-side-medical?style=thin /// diagnosis, face, mental health, profile, psychiatric, psychiatry, uer - static const IconData thinHeadSideMedical = IconDataThin(0xf809); + static const IconData thinHeadSideMedical = IconData(0xf809, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Head Side Virus icon /// /// https://fontawesome.com/icons/head-side-virus?style=solid /// cold, coronavirus, covid-19, flu, infection, pandemic, sick, uer - static const IconData solidHeadSideVirus = IconDataSolid(0xe064); + static const IconData solidHeadSideVirus = IconData(0xe064, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Head Side Virus icon /// /// https://fontawesome.com/icons/head-side-virus?style=regular /// cold, coronavirus, covid-19, flu, infection, pandemic, sick, uer - static const IconData headSideVirus = IconDataRegular(0xe064); + static const IconData headSideVirus = IconData(0xe064, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Head Side Virus icon /// /// https://fontawesome.com/icons/head-side-virus?style=light /// cold, coronavirus, covid-19, flu, infection, pandemic, sick, uer - static const IconData lightHeadSideVirus = IconDataLight(0xe064); + static const IconData lightHeadSideVirus = IconData(0xe064, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Head Side Virus icon /// /// https://fontawesome.com/icons/head-side-virus?style=thin /// cold, coronavirus, covid-19, flu, infection, pandemic, sick, uer - static const IconData thinHeadSideVirus = IconDataThin(0xe064); + static const IconData thinHeadSideVirus = IconData(0xe064, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heading icon /// /// https://fontawesome.com/icons/heading?style=solid /// format, header, text, title - static const IconData solidHeading = IconDataSolid(0xf1dc); + static const IconData solidHeading = IconData(0xf1dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias header for icon [solidHeading] @Deprecated('Use "solidHeading" instead.') @@ -47055,7 +47055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heading?style=regular /// format, header, text, title - static const IconData heading = IconDataRegular(0xf1dc); + static const IconData heading = IconData(0xf1dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias header for icon [heading] @Deprecated('Use "heading" instead.') @@ -47065,7 +47065,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heading?style=light /// format, header, text, title - static const IconData lightHeading = IconDataLight(0xf1dc); + static const IconData lightHeading = IconData(0xf1dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias header for icon [lightHeading] @Deprecated('Use "lightHeading" instead.') @@ -47075,7 +47075,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heading?style=thin /// format, header, text, title - static const IconData thinHeading = IconDataThin(0xf1dc); + static const IconData thinHeading = IconData(0xf1dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias header for icon [thinHeading] @Deprecated('Use "thinHeading" instead.') @@ -47085,31 +47085,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/headphones?style=solid /// audio, earbud, headphone, listen, music, sound, speaker - static const IconData solidHeadphones = IconDataSolid(0xf025); + static const IconData solidHeadphones = IconData(0xf025, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Headphones icon /// /// https://fontawesome.com/icons/headphones?style=regular /// audio, earbud, headphone, listen, music, sound, speaker - static const IconData headphones = IconDataRegular(0xf025); + static const IconData headphones = IconData(0xf025, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Headphones icon /// /// https://fontawesome.com/icons/headphones?style=light /// audio, earbud, headphone, listen, music, sound, speaker - static const IconData lightHeadphones = IconDataLight(0xf025); + static const IconData lightHeadphones = IconData(0xf025, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Headphones icon /// /// https://fontawesome.com/icons/headphones?style=thin /// audio, earbud, headphone, listen, music, sound, speaker - static const IconData thinHeadphones = IconDataThin(0xf025); + static const IconData thinHeadphones = IconData(0xf025, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Headphones Simple icon /// /// https://fontawesome.com/icons/headphones-simple?style=solid /// audio, listen, music, sound, speaker - static const IconData solidHeadphonesSimple = IconDataSolid(0xf58f); + static const IconData solidHeadphonesSimple = IconData(0xf58f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias headphones-alt for icon [solidHeadphonesSimple] @Deprecated('Use "solidHeadphonesSimple" instead.') @@ -47119,7 +47119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/headphones-simple?style=regular /// audio, listen, music, sound, speaker - static const IconData headphonesSimple = IconDataRegular(0xf58f); + static const IconData headphonesSimple = IconData(0xf58f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias headphones-alt for icon [headphonesSimple] @Deprecated('Use "headphonesSimple" instead.') @@ -47129,7 +47129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/headphones-simple?style=light /// audio, listen, music, sound, speaker - static const IconData lightHeadphonesSimple = IconDataLight(0xf58f); + static const IconData lightHeadphonesSimple = IconData(0xf58f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias headphones-alt for icon [lightHeadphonesSimple] @Deprecated('Use "lightHeadphonesSimple" instead.') @@ -47139,7 +47139,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/headphones-simple?style=thin /// audio, listen, music, sound, speaker - static const IconData thinHeadphonesSimple = IconDataThin(0xf58f); + static const IconData thinHeadphonesSimple = IconData(0xf58f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias headphones-alt for icon [thinHeadphonesSimple] @Deprecated('Use "thinHeadphonesSimple" instead.') @@ -47149,199 +47149,199 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/headset?style=solid /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData solidHeadset = IconDataSolid(0xf590); + static const IconData solidHeadset = IconData(0xf590, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Headset icon /// /// https://fontawesome.com/icons/headset?style=regular /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData headset = IconDataRegular(0xf590); + static const IconData headset = IconData(0xf590, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Headset icon /// /// https://fontawesome.com/icons/headset?style=light /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData lightHeadset = IconDataLight(0xf590); + static const IconData lightHeadset = IconData(0xf590, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Headset icon /// /// https://fontawesome.com/icons/headset?style=thin /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData thinHeadset = IconDataThin(0xf590); + static const IconData thinHeadset = IconData(0xf590, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart icon /// /// https://fontawesome.com/icons/heart?style=solid /// ace, black, black heart, blue, blue heart, brown, brown heart, card, evil, favorite, game, green, green heart, heart, heart suit, like, love, orange, orange heart, purple, purple heart, red heart, relationship, valentine, white, white heart, wicked, wishlist, yellow, yellow heart - static const IconData solidHeart = IconDataSolid(0xf004); + static const IconData solidHeart = IconData(0xf004, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart icon /// /// https://fontawesome.com/icons/heart?style=regular /// ace, black, black heart, blue, blue heart, brown, brown heart, card, evil, favorite, game, green, green heart, heart, heart suit, like, love, orange, orange heart, purple, purple heart, red heart, relationship, valentine, white, white heart, wicked, wishlist, yellow, yellow heart - static const IconData heart = IconDataRegular(0xf004); + static const IconData heart = IconData(0xf004, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart icon /// /// https://fontawesome.com/icons/heart?style=light /// ace, black, black heart, blue, blue heart, brown, brown heart, card, evil, favorite, game, green, green heart, heart, heart suit, like, love, orange, orange heart, purple, purple heart, red heart, relationship, valentine, white, white heart, wicked, wishlist, yellow, yellow heart - static const IconData lightHeart = IconDataLight(0xf004); + static const IconData lightHeart = IconData(0xf004, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart icon /// /// https://fontawesome.com/icons/heart?style=thin /// ace, black, black heart, blue, blue heart, brown, brown heart, card, evil, favorite, game, green, green heart, heart, heart suit, like, love, orange, orange heart, purple, purple heart, red heart, relationship, valentine, white, white heart, wicked, wishlist, yellow, yellow heart - static const IconData thinHeart = IconDataThin(0xf004); + static const IconData thinHeart = IconData(0xf004, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Bolt icon /// /// https://fontawesome.com/icons/heart-circle-bolt?style=solid /// cardiogram, ekg, electric, heart, love, pacemaker - static const IconData solidHeartCircleBolt = IconDataSolid(0xe4fc); + static const IconData solidHeartCircleBolt = IconData(0xe4fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Bolt icon /// /// https://fontawesome.com/icons/heart-circle-bolt?style=regular /// cardiogram, ekg, electric, heart, love, pacemaker - static const IconData heartCircleBolt = IconDataRegular(0xe4fc); + static const IconData heartCircleBolt = IconData(0xe4fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Bolt icon /// /// https://fontawesome.com/icons/heart-circle-bolt?style=light /// cardiogram, ekg, electric, heart, love, pacemaker - static const IconData lightHeartCircleBolt = IconDataLight(0xe4fc); + static const IconData lightHeartCircleBolt = IconData(0xe4fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Bolt icon /// /// https://fontawesome.com/icons/heart-circle-bolt?style=thin /// cardiogram, ekg, electric, heart, love, pacemaker - static const IconData thinHeartCircleBolt = IconDataThin(0xe4fc); + static const IconData thinHeartCircleBolt = IconData(0xe4fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Check icon /// /// https://fontawesome.com/icons/heart-circle-check?style=solid /// enable, favorite, heart, love, not affected, ok, okay, validate, working - static const IconData solidHeartCircleCheck = IconDataSolid(0xe4fd); + static const IconData solidHeartCircleCheck = IconData(0xe4fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Check icon /// /// https://fontawesome.com/icons/heart-circle-check?style=regular /// enable, favorite, heart, love, not affected, ok, okay, validate, working - static const IconData heartCircleCheck = IconDataRegular(0xe4fd); + static const IconData heartCircleCheck = IconData(0xe4fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Check icon /// /// https://fontawesome.com/icons/heart-circle-check?style=light /// enable, favorite, heart, love, not affected, ok, okay, validate, working - static const IconData lightHeartCircleCheck = IconDataLight(0xe4fd); + static const IconData lightHeartCircleCheck = IconData(0xe4fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Check icon /// /// https://fontawesome.com/icons/heart-circle-check?style=thin /// enable, favorite, heart, love, not affected, ok, okay, validate, working - static const IconData thinHeartCircleCheck = IconDataThin(0xe4fd); + static const IconData thinHeartCircleCheck = IconData(0xe4fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Exclamation icon /// /// https://fontawesome.com/icons/heart-circle-exclamation?style=solid /// failed, favorite, heart, love - static const IconData solidHeartCircleExclamation = IconDataSolid(0xe4fe); + static const IconData solidHeartCircleExclamation = IconData(0xe4fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Exclamation icon /// /// https://fontawesome.com/icons/heart-circle-exclamation?style=regular /// failed, favorite, heart, love - static const IconData heartCircleExclamation = IconDataRegular(0xe4fe); + static const IconData heartCircleExclamation = IconData(0xe4fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Exclamation icon /// /// https://fontawesome.com/icons/heart-circle-exclamation?style=light /// failed, favorite, heart, love - static const IconData lightHeartCircleExclamation = IconDataLight(0xe4fe); + static const IconData lightHeartCircleExclamation = IconData(0xe4fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Exclamation icon /// /// https://fontawesome.com/icons/heart-circle-exclamation?style=thin /// failed, favorite, heart, love - static const IconData thinHeartCircleExclamation = IconDataThin(0xe4fe); + static const IconData thinHeartCircleExclamation = IconData(0xe4fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Minus icon /// /// https://fontawesome.com/icons/heart-circle-minus?style=solid /// favorite, heart, love - static const IconData solidHeartCircleMinus = IconDataSolid(0xe4ff); + static const IconData solidHeartCircleMinus = IconData(0xe4ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Minus icon /// /// https://fontawesome.com/icons/heart-circle-minus?style=regular /// favorite, heart, love - static const IconData heartCircleMinus = IconDataRegular(0xe4ff); + static const IconData heartCircleMinus = IconData(0xe4ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Minus icon /// /// https://fontawesome.com/icons/heart-circle-minus?style=light /// favorite, heart, love - static const IconData lightHeartCircleMinus = IconDataLight(0xe4ff); + static const IconData lightHeartCircleMinus = IconData(0xe4ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Minus icon /// /// https://fontawesome.com/icons/heart-circle-minus?style=thin /// favorite, heart, love - static const IconData thinHeartCircleMinus = IconDataThin(0xe4ff); + static const IconData thinHeartCircleMinus = IconData(0xe4ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Plus icon /// /// https://fontawesome.com/icons/heart-circle-plus?style=solid /// favorite, heart, love - static const IconData solidHeartCirclePlus = IconDataSolid(0xe500); + static const IconData solidHeartCirclePlus = IconData(0xe500, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Plus icon /// /// https://fontawesome.com/icons/heart-circle-plus?style=regular /// favorite, heart, love - static const IconData heartCirclePlus = IconDataRegular(0xe500); + static const IconData heartCirclePlus = IconData(0xe500, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Plus icon /// /// https://fontawesome.com/icons/heart-circle-plus?style=light /// favorite, heart, love - static const IconData lightHeartCirclePlus = IconDataLight(0xe500); + static const IconData lightHeartCirclePlus = IconData(0xe500, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Plus icon /// /// https://fontawesome.com/icons/heart-circle-plus?style=thin /// favorite, heart, love - static const IconData thinHeartCirclePlus = IconDataThin(0xe500); + static const IconData thinHeartCirclePlus = IconData(0xe500, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Circle Xmark icon /// /// https://fontawesome.com/icons/heart-circle-xmark?style=solid /// favorite, heart, love, uncheck - static const IconData solidHeartCircleXmark = IconDataSolid(0xe501); + static const IconData solidHeartCircleXmark = IconData(0xe501, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Circle Xmark icon /// /// https://fontawesome.com/icons/heart-circle-xmark?style=regular /// favorite, heart, love, uncheck - static const IconData heartCircleXmark = IconDataRegular(0xe501); + static const IconData heartCircleXmark = IconData(0xe501, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Circle Xmark icon /// /// https://fontawesome.com/icons/heart-circle-xmark?style=light /// favorite, heart, love, uncheck - static const IconData lightHeartCircleXmark = IconDataLight(0xe501); + static const IconData lightHeartCircleXmark = IconData(0xe501, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Circle Xmark icon /// /// https://fontawesome.com/icons/heart-circle-xmark?style=thin /// favorite, heart, love, uncheck - static const IconData thinHeartCircleXmark = IconDataThin(0xe501); + static const IconData thinHeartCircleXmark = IconData(0xe501, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Crack icon /// /// https://fontawesome.com/icons/heart-crack?style=solid /// break, breakup, broken, broken heart, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData solidHeartCrack = IconDataSolid(0xf7a9); + static const IconData solidHeartCrack = IconData(0xf7a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-broken for icon [solidHeartCrack] @Deprecated('Use "solidHeartCrack" instead.') @@ -47351,7 +47351,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-crack?style=regular /// break, breakup, broken, broken heart, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData heartCrack = IconDataRegular(0xf7a9); + static const IconData heartCrack = IconData(0xf7a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-broken for icon [heartCrack] @Deprecated('Use "heartCrack" instead.') @@ -47361,7 +47361,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-crack?style=light /// break, breakup, broken, broken heart, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData lightHeartCrack = IconDataLight(0xf7a9); + static const IconData lightHeartCrack = IconData(0xf7a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-broken for icon [lightHeartCrack] @Deprecated('Use "lightHeartCrack" instead.') @@ -47371,7 +47371,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-crack?style=thin /// break, breakup, broken, broken heart, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData thinHeartCrack = IconDataThin(0xf7a9); + static const IconData thinHeartCrack = IconData(0xf7a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-broken for icon [thinHeartCrack] @Deprecated('Use "thinHeartCrack" instead.') @@ -47381,31 +47381,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-half?style=solid /// favorite, heart, rating - static const IconData solidHeartHalf = IconDataSolid(0xe1ab); + static const IconData solidHeartHalf = IconData(0xe1ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heart Half icon /// /// https://fontawesome.com/icons/heart-half?style=regular /// favorite, heart, rating - static const IconData heartHalf = IconDataRegular(0xe1ab); + static const IconData heartHalf = IconData(0xe1ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heart Half icon /// /// https://fontawesome.com/icons/heart-half?style=light /// favorite, heart, rating - static const IconData lightHeartHalf = IconDataLight(0xe1ab); + static const IconData lightHeartHalf = IconData(0xe1ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heart Half icon /// /// https://fontawesome.com/icons/heart-half?style=thin /// favorite, heart, rating - static const IconData thinHeartHalf = IconDataThin(0xe1ab); + static const IconData thinHeartHalf = IconData(0xe1ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Heart Half Stroke icon /// /// https://fontawesome.com/icons/heart-half-stroke?style=solid /// favorite, heart, rating - static const IconData solidHeartHalfStroke = IconDataSolid(0xe1ac); + static const IconData solidHeartHalfStroke = IconData(0xe1ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-half-alt for icon [solidHeartHalfStroke] @Deprecated('Use "solidHeartHalfStroke" instead.') @@ -47415,7 +47415,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-half-stroke?style=regular /// favorite, heart, rating - static const IconData heartHalfStroke = IconDataRegular(0xe1ac); + static const IconData heartHalfStroke = IconData(0xe1ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-half-alt for icon [heartHalfStroke] @Deprecated('Use "heartHalfStroke" instead.') @@ -47425,7 +47425,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-half-stroke?style=light /// favorite, heart, rating - static const IconData lightHeartHalfStroke = IconDataLight(0xe1ac); + static const IconData lightHeartHalfStroke = IconData(0xe1ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-half-alt for icon [lightHeartHalfStroke] @Deprecated('Use "lightHeartHalfStroke" instead.') @@ -47435,7 +47435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-half-stroke?style=thin /// favorite, heart, rating - static const IconData thinHeartHalfStroke = IconDataThin(0xe1ac); + static const IconData thinHeartHalfStroke = IconData(0xe1ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-half-alt for icon [thinHeartHalfStroke] @Deprecated('Use "thinHeartHalfStroke" instead.') @@ -47445,7 +47445,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-pulse?style=solid /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData solidHeartPulse = IconDataSolid(0xf21e); + static const IconData solidHeartPulse = IconData(0xf21e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heartbeat for icon [solidHeartPulse] @Deprecated('Use "solidHeartPulse" instead.') @@ -47455,7 +47455,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-pulse?style=regular /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData heartPulse = IconDataRegular(0xf21e); + static const IconData heartPulse = IconData(0xf21e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heartbeat for icon [heartPulse] @Deprecated('Use "heartPulse" instead.') @@ -47465,7 +47465,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-pulse?style=light /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData lightHeartPulse = IconDataLight(0xf21e); + static const IconData lightHeartPulse = IconData(0xf21e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heartbeat for icon [lightHeartPulse] @Deprecated('Use "lightHeartPulse" instead.') @@ -47475,7 +47475,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heart-pulse?style=thin /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData thinHeartPulse = IconDataThin(0xf21e); + static const IconData thinHeartPulse = IconData(0xf21e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heartbeat for icon [thinHeartPulse] @Deprecated('Use "thinHeartPulse" instead.') @@ -47485,103 +47485,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/heat?style=solid /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData solidHeat = IconDataSolid(0xe00c); + static const IconData solidHeat = IconData(0xe00c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Heat icon /// /// https://fontawesome.com/icons/heat?style=regular /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData heat = IconDataRegular(0xe00c); + static const IconData heat = IconData(0xe00c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Heat icon /// /// https://fontawesome.com/icons/heat?style=light /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData lightHeat = IconDataLight(0xe00c); + static const IconData lightHeat = IconData(0xe00c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Heat icon /// /// https://fontawesome.com/icons/heat?style=thin /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData thinHeat = IconDataThin(0xe00c); + static const IconData thinHeat = IconData(0xe00c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Helicopter icon /// /// https://fontawesome.com/icons/helicopter?style=solid /// airwolf, apache, chopper, flight, fly, helicopter, travel, vehicle - static const IconData solidHelicopter = IconDataSolid(0xf533); + static const IconData solidHelicopter = IconData(0xf533, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Helicopter icon /// /// https://fontawesome.com/icons/helicopter?style=regular /// airwolf, apache, chopper, flight, fly, helicopter, travel, vehicle - static const IconData helicopter = IconDataRegular(0xf533); + static const IconData helicopter = IconData(0xf533, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Helicopter icon /// /// https://fontawesome.com/icons/helicopter?style=light /// airwolf, apache, chopper, flight, fly, helicopter, travel, vehicle - static const IconData lightHelicopter = IconDataLight(0xf533); + static const IconData lightHelicopter = IconData(0xf533, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Helicopter icon /// /// https://fontawesome.com/icons/helicopter?style=thin /// airwolf, apache, chopper, flight, fly, helicopter, travel, vehicle - static const IconData thinHelicopter = IconDataThin(0xf533); + static const IconData thinHelicopter = IconData(0xf533, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Helicopter Symbol icon /// /// https://fontawesome.com/icons/helicopter-symbol?style=solid /// chopper, helicopter, landing pad, whirlybird - static const IconData solidHelicopterSymbol = IconDataSolid(0xe502); + static const IconData solidHelicopterSymbol = IconData(0xe502, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Helicopter Symbol icon /// /// https://fontawesome.com/icons/helicopter-symbol?style=regular /// chopper, helicopter, landing pad, whirlybird - static const IconData helicopterSymbol = IconDataRegular(0xe502); + static const IconData helicopterSymbol = IconData(0xe502, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Helicopter Symbol icon /// /// https://fontawesome.com/icons/helicopter-symbol?style=light /// chopper, helicopter, landing pad, whirlybird - static const IconData lightHelicopterSymbol = IconDataLight(0xe502); + static const IconData lightHelicopterSymbol = IconData(0xe502, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Helicopter Symbol icon /// /// https://fontawesome.com/icons/helicopter-symbol?style=thin /// chopper, helicopter, landing pad, whirlybird - static const IconData thinHelicopterSymbol = IconDataThin(0xe502); + static const IconData thinHelicopterSymbol = IconData(0xe502, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Helmet Battle icon /// /// https://fontawesome.com/icons/helmet-battle?style=solid /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData solidHelmetBattle = IconDataSolid(0xf6eb); + static const IconData solidHelmetBattle = IconData(0xf6eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Helmet Battle icon /// /// https://fontawesome.com/icons/helmet-battle?style=regular /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData helmetBattle = IconDataRegular(0xf6eb); + static const IconData helmetBattle = IconData(0xf6eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Helmet Battle icon /// /// https://fontawesome.com/icons/helmet-battle?style=light /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData lightHelmetBattle = IconDataLight(0xf6eb); + static const IconData lightHelmetBattle = IconData(0xf6eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Helmet Battle icon /// /// https://fontawesome.com/icons/helmet-battle?style=thin /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData thinHelmetBattle = IconDataThin(0xf6eb); + static const IconData thinHelmetBattle = IconData(0xf6eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Helmet Safety icon /// /// https://fontawesome.com/icons/helmet-safety?style=solid /// construction, hardhat, helmet, maintenance, safety - static const IconData solidHelmetSafety = IconDataSolid(0xf807); + static const IconData solidHelmetSafety = IconData(0xf807, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hard-hat for icon [solidHelmetSafety] @Deprecated('Use "solidHelmetSafety" instead.') @@ -47595,7 +47595,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/helmet-safety?style=regular /// construction, hardhat, helmet, maintenance, safety - static const IconData helmetSafety = IconDataRegular(0xf807); + static const IconData helmetSafety = IconData(0xf807, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hard-hat for icon [helmetSafety] @Deprecated('Use "helmetSafety" instead.') @@ -47609,7 +47609,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/helmet-safety?style=light /// construction, hardhat, helmet, maintenance, safety - static const IconData lightHelmetSafety = IconDataLight(0xf807); + static const IconData lightHelmetSafety = IconData(0xf807, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hard-hat for icon [lightHelmetSafety] @Deprecated('Use "lightHelmetSafety" instead.') @@ -47623,7 +47623,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/helmet-safety?style=thin /// construction, hardhat, helmet, maintenance, safety - static const IconData thinHelmetSafety = IconDataThin(0xf807); + static const IconData thinHelmetSafety = IconData(0xf807, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hard-hat for icon [thinHelmetSafety] @Deprecated('Use "thinHelmetSafety" instead.') @@ -47637,151 +47637,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/helmet-un?style=solid /// helmet, united nations - static const IconData solidHelmetUn = IconDataSolid(0xe503); + static const IconData solidHelmetUn = IconData(0xe503, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Helmet Un icon /// /// https://fontawesome.com/icons/helmet-un?style=regular /// helmet, united nations - static const IconData helmetUn = IconDataRegular(0xe503); + static const IconData helmetUn = IconData(0xe503, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Helmet Un icon /// /// https://fontawesome.com/icons/helmet-un?style=light /// helmet, united nations - static const IconData lightHelmetUn = IconDataLight(0xe503); + static const IconData lightHelmetUn = IconData(0xe503, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Helmet Un icon /// /// https://fontawesome.com/icons/helmet-un?style=thin /// helmet, united nations - static const IconData thinHelmetUn = IconDataThin(0xe503); + static const IconData thinHelmetUn = IconData(0xe503, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon icon /// /// https://fontawesome.com/icons/hexagon?style=solid /// Horizontal Black Hexagon, geometry, honeycomb, polygon, shape - static const IconData solidHexagon = IconDataSolid(0xf312); + static const IconData solidHexagon = IconData(0xf312, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon icon /// /// https://fontawesome.com/icons/hexagon?style=regular /// Horizontal Black Hexagon, geometry, honeycomb, polygon, shape - static const IconData hexagon = IconDataRegular(0xf312); + static const IconData hexagon = IconData(0xf312, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon icon /// /// https://fontawesome.com/icons/hexagon?style=light /// Horizontal Black Hexagon, geometry, honeycomb, polygon, shape - static const IconData lightHexagon = IconDataLight(0xf312); + static const IconData lightHexagon = IconData(0xf312, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon icon /// /// https://fontawesome.com/icons/hexagon?style=thin /// Horizontal Black Hexagon, geometry, honeycomb, polygon, shape - static const IconData thinHexagon = IconDataThin(0xf312); + static const IconData thinHexagon = IconData(0xf312, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Check icon /// /// https://fontawesome.com/icons/hexagon-check?style=solid /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData solidHexagonCheck = IconDataSolid(0xe416); + static const IconData solidHexagonCheck = IconData(0xe416, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Check icon /// /// https://fontawesome.com/icons/hexagon-check?style=regular /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData hexagonCheck = IconDataRegular(0xe416); + static const IconData hexagonCheck = IconData(0xe416, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Check icon /// /// https://fontawesome.com/icons/hexagon-check?style=light /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData lightHexagonCheck = IconDataLight(0xe416); + static const IconData lightHexagonCheck = IconData(0xe416, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Check icon /// /// https://fontawesome.com/icons/hexagon-check?style=thin /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData thinHexagonCheck = IconDataThin(0xe416); + static const IconData thinHexagonCheck = IconData(0xe416, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Divide icon /// /// https://fontawesome.com/icons/hexagon-divide?style=solid /// algebra, arithmetic, division - static const IconData solidHexagonDivide = IconDataSolid(0xe1ad); + static const IconData solidHexagonDivide = IconData(0xe1ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Divide icon /// /// https://fontawesome.com/icons/hexagon-divide?style=regular /// algebra, arithmetic, division - static const IconData hexagonDivide = IconDataRegular(0xe1ad); + static const IconData hexagonDivide = IconData(0xe1ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Divide icon /// /// https://fontawesome.com/icons/hexagon-divide?style=light /// algebra, arithmetic, division - static const IconData lightHexagonDivide = IconDataLight(0xe1ad); + static const IconData lightHexagonDivide = IconData(0xe1ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Divide icon /// /// https://fontawesome.com/icons/hexagon-divide?style=thin /// algebra, arithmetic, division - static const IconData thinHexagonDivide = IconDataThin(0xe1ad); + static const IconData thinHexagonDivide = IconData(0xe1ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Exclamation icon /// /// https://fontawesome.com/icons/hexagon-exclamation?style=solid /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData solidHexagonExclamation = IconDataSolid(0xe417); + static const IconData solidHexagonExclamation = IconData(0xe417, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Exclamation icon /// /// https://fontawesome.com/icons/hexagon-exclamation?style=regular /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData hexagonExclamation = IconDataRegular(0xe417); + static const IconData hexagonExclamation = IconData(0xe417, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Exclamation icon /// /// https://fontawesome.com/icons/hexagon-exclamation?style=light /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData lightHexagonExclamation = IconDataLight(0xe417); + static const IconData lightHexagonExclamation = IconData(0xe417, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Exclamation icon /// /// https://fontawesome.com/icons/hexagon-exclamation?style=thin /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData thinHexagonExclamation = IconDataThin(0xe417); + static const IconData thinHexagonExclamation = IconData(0xe417, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Image icon /// /// https://fontawesome.com/icons/hexagon-image?style=solid /// blockchain, crypto, data, image, img, nft, non-fungible token, photo - static const IconData solidHexagonImage = IconDataSolid(0xe504); + static const IconData solidHexagonImage = IconData(0xe504, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Image icon /// /// https://fontawesome.com/icons/hexagon-image?style=regular /// blockchain, crypto, data, image, img, nft, non-fungible token, photo - static const IconData hexagonImage = IconDataRegular(0xe504); + static const IconData hexagonImage = IconData(0xe504, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Image icon /// /// https://fontawesome.com/icons/hexagon-image?style=light /// blockchain, crypto, data, image, img, nft, non-fungible token, photo - static const IconData lightHexagonImage = IconDataLight(0xe504); + static const IconData lightHexagonImage = IconData(0xe504, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Image icon /// /// https://fontawesome.com/icons/hexagon-image?style=thin /// blockchain, crypto, data, image, img, nft, non-fungible token, photo - static const IconData thinHexagonImage = IconDataThin(0xe504); + static const IconData thinHexagonImage = IconData(0xe504, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Minus icon /// /// https://fontawesome.com/icons/hexagon-minus?style=solid /// delete, hide, negative, remove, shape, trash - static const IconData solidHexagonMinus = IconDataSolid(0xf307); + static const IconData solidHexagonMinus = IconData(0xf307, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias minus-hexagon for icon [solidHexagonMinus] @Deprecated('Use "solidHexagonMinus" instead.') @@ -47791,7 +47791,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-minus?style=regular /// delete, hide, negative, remove, shape, trash - static const IconData hexagonMinus = IconDataRegular(0xf307); + static const IconData hexagonMinus = IconData(0xf307, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias minus-hexagon for icon [hexagonMinus] @Deprecated('Use "hexagonMinus" instead.') @@ -47801,7 +47801,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-minus?style=light /// delete, hide, negative, remove, shape, trash - static const IconData lightHexagonMinus = IconDataLight(0xf307); + static const IconData lightHexagonMinus = IconData(0xf307, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias minus-hexagon for icon [lightHexagonMinus] @Deprecated('Use "lightHexagonMinus" instead.') @@ -47811,7 +47811,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-minus?style=thin /// delete, hide, negative, remove, shape, trash - static const IconData thinHexagonMinus = IconDataThin(0xf307); + static const IconData thinHexagonMinus = IconData(0xf307, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias minus-hexagon for icon [thinHexagonMinus] @Deprecated('Use "thinHexagonMinus" instead.') @@ -47821,7 +47821,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-plus?style=solid /// add, create, expand, new, positive, shape - static const IconData solidHexagonPlus = IconDataSolid(0xf300); + static const IconData solidHexagonPlus = IconData(0xf300, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias plus-hexagon for icon [solidHexagonPlus] @Deprecated('Use "solidHexagonPlus" instead.') @@ -47831,7 +47831,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-plus?style=regular /// add, create, expand, new, positive, shape - static const IconData hexagonPlus = IconDataRegular(0xf300); + static const IconData hexagonPlus = IconData(0xf300, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias plus-hexagon for icon [hexagonPlus] @Deprecated('Use "hexagonPlus" instead.') @@ -47841,7 +47841,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-plus?style=light /// add, create, expand, new, positive, shape - static const IconData lightHexagonPlus = IconDataLight(0xf300); + static const IconData lightHexagonPlus = IconData(0xf300, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias plus-hexagon for icon [lightHexagonPlus] @Deprecated('Use "lightHexagonPlus" instead.') @@ -47851,7 +47851,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-plus?style=thin /// add, create, expand, new, positive, shape - static const IconData thinHexagonPlus = IconDataThin(0xf300); + static const IconData thinHexagonPlus = IconData(0xf300, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias plus-hexagon for icon [thinHexagonPlus] @Deprecated('Use "thinHexagonPlus" instead.') @@ -47861,55 +47861,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-vertical-nft?style=solid /// NFT, blockchain, crypto, data, non-fungible token - static const IconData solidHexagonVerticalNft = IconDataSolid(0xe505); + static const IconData solidHexagonVerticalNft = IconData(0xe505, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Vertical Nft icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft?style=regular /// NFT, blockchain, crypto, data, non-fungible token - static const IconData hexagonVerticalNft = IconDataRegular(0xe505); + static const IconData hexagonVerticalNft = IconData(0xe505, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Vertical Nft icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft?style=light /// NFT, blockchain, crypto, data, non-fungible token - static const IconData lightHexagonVerticalNft = IconDataLight(0xe505); + static const IconData lightHexagonVerticalNft = IconData(0xe505, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Vertical Nft icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft?style=thin /// NFT, blockchain, crypto, data, non-fungible token - static const IconData thinHexagonVerticalNft = IconDataThin(0xe505); + static const IconData thinHexagonVerticalNft = IconData(0xe505, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Vertical Nft Slanted icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft-slanted?style=solid /// NFT, blockchain, crypto, data, non-fungible token - static const IconData solidHexagonVerticalNftSlanted = IconDataSolid(0xe506); + static const IconData solidHexagonVerticalNftSlanted = IconData(0xe506, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hexagon Vertical Nft Slanted icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft-slanted?style=regular /// NFT, blockchain, crypto, data, non-fungible token - static const IconData hexagonVerticalNftSlanted = IconDataRegular(0xe506); + static const IconData hexagonVerticalNftSlanted = IconData(0xe506, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hexagon Vertical Nft Slanted icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft-slanted?style=light /// NFT, blockchain, crypto, data, non-fungible token - static const IconData lightHexagonVerticalNftSlanted = IconDataLight(0xe506); + static const IconData lightHexagonVerticalNftSlanted = IconData(0xe506, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hexagon Vertical Nft Slanted icon /// /// https://fontawesome.com/icons/hexagon-vertical-nft-slanted?style=thin /// NFT, blockchain, crypto, data, non-fungible token - static const IconData thinHexagonVerticalNftSlanted = IconDataThin(0xe506); + static const IconData thinHexagonVerticalNftSlanted = IconData(0xe506, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hexagon Xmark icon /// /// https://fontawesome.com/icons/hexagon-xmark?style=solid /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData solidHexagonXmark = IconDataSolid(0xf2ee); + static const IconData solidHexagonXmark = IconData(0xf2ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias times-hexagon for icon [solidHexagonXmark] @Deprecated('Use "solidHexagonXmark" instead.') @@ -47923,7 +47923,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-xmark?style=regular /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData hexagonXmark = IconDataRegular(0xf2ee); + static const IconData hexagonXmark = IconData(0xf2ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias times-hexagon for icon [hexagonXmark] @Deprecated('Use "hexagonXmark" instead.') @@ -47937,7 +47937,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-xmark?style=light /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData lightHexagonXmark = IconDataLight(0xf2ee); + static const IconData lightHexagonXmark = IconData(0xf2ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias times-hexagon for icon [lightHexagonXmark] @Deprecated('Use "lightHexagonXmark" instead.') @@ -47951,7 +47951,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hexagon-xmark?style=thin /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData thinHexagonXmark = IconDataThin(0xf2ee); + static const IconData thinHexagonXmark = IconData(0xf2ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias times-hexagon for icon [thinHexagonXmark] @Deprecated('Use "thinHexagonXmark" instead.') @@ -47965,7 +47965,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/high-definition?style=solid /// img, resolution, retina, video - static const IconData solidHighDefinition = IconDataSolid(0xe1ae); + static const IconData solidHighDefinition = IconData(0xe1ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-hd for icon [solidHighDefinition] @Deprecated('Use "solidHighDefinition" instead.') @@ -47975,7 +47975,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/high-definition?style=regular /// img, resolution, retina, video - static const IconData highDefinition = IconDataRegular(0xe1ae); + static const IconData highDefinition = IconData(0xe1ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-hd for icon [highDefinition] @Deprecated('Use "highDefinition" instead.') @@ -47985,7 +47985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/high-definition?style=light /// img, resolution, retina, video - static const IconData lightHighDefinition = IconDataLight(0xe1ae); + static const IconData lightHighDefinition = IconData(0xe1ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-hd for icon [lightHighDefinition] @Deprecated('Use "lightHighDefinition" instead.') @@ -47995,7 +47995,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/high-definition?style=thin /// img, resolution, retina, video - static const IconData thinHighDefinition = IconDataThin(0xe1ae); + static const IconData thinHighDefinition = IconData(0xe1ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-hd for icon [thinHighDefinition] @Deprecated('Use "thinHighDefinition" instead.') @@ -48005,464 +48005,464 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/highlighter?style=solid /// edit, marker, modify, sharpie, update, write - static const IconData solidHighlighter = IconDataSolid(0xf591); + static const IconData solidHighlighter = IconData(0xf591, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Highlighter icon /// /// https://fontawesome.com/icons/highlighter?style=regular /// edit, marker, modify, sharpie, update, write - static const IconData highlighter = IconDataRegular(0xf591); + static const IconData highlighter = IconData(0xf591, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Highlighter icon /// /// https://fontawesome.com/icons/highlighter?style=light /// edit, marker, modify, sharpie, update, write - static const IconData lightHighlighter = IconDataLight(0xf591); + static const IconData lightHighlighter = IconData(0xf591, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Highlighter icon /// /// https://fontawesome.com/icons/highlighter?style=thin /// edit, marker, modify, sharpie, update, write - static const IconData thinHighlighter = IconDataThin(0xf591); + static const IconData thinHighlighter = IconData(0xf591, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Highlighter Line icon /// /// https://fontawesome.com/icons/highlighter-line?style=solid /// highlight, marker, select - static const IconData solidHighlighterLine = IconDataSolid(0xe1af); + static const IconData solidHighlighterLine = IconData(0xe1af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Highlighter Line icon /// /// https://fontawesome.com/icons/highlighter-line?style=regular /// highlight, marker, select - static const IconData highlighterLine = IconDataRegular(0xe1af); + static const IconData highlighterLine = IconData(0xe1af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Highlighter Line icon /// /// https://fontawesome.com/icons/highlighter-line?style=light /// highlight, marker, select - static const IconData lightHighlighterLine = IconDataLight(0xe1af); + static const IconData lightHighlighterLine = IconData(0xe1af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Highlighter Line icon /// /// https://fontawesome.com/icons/highlighter-line?style=thin /// highlight, marker, select - static const IconData thinHighlighterLine = IconDataThin(0xe1af); + static const IconData thinHighlighterLine = IconData(0xe1af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hill Avalanche icon /// /// https://fontawesome.com/icons/hill-avalanche?style=solid /// mudslide, snow, winter - static const IconData solidHillAvalanche = IconDataSolid(0xe507); + static const IconData solidHillAvalanche = IconData(0xe507, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hill Avalanche icon /// /// https://fontawesome.com/icons/hill-avalanche?style=regular /// mudslide, snow, winter - static const IconData hillAvalanche = IconDataRegular(0xe507); + static const IconData hillAvalanche = IconData(0xe507, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hill Avalanche icon /// /// https://fontawesome.com/icons/hill-avalanche?style=light /// mudslide, snow, winter - static const IconData lightHillAvalanche = IconDataLight(0xe507); + static const IconData lightHillAvalanche = IconData(0xe507, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hill Avalanche icon /// /// https://fontawesome.com/icons/hill-avalanche?style=thin /// mudslide, snow, winter - static const IconData thinHillAvalanche = IconDataThin(0xe507); + static const IconData thinHillAvalanche = IconData(0xe507, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hill Rockslide icon /// /// https://fontawesome.com/icons/hill-rockslide?style=solid /// mudslide - static const IconData solidHillRockslide = IconDataSolid(0xe508); + static const IconData solidHillRockslide = IconData(0xe508, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hill Rockslide icon /// /// https://fontawesome.com/icons/hill-rockslide?style=regular /// mudslide - static const IconData hillRockslide = IconDataRegular(0xe508); + static const IconData hillRockslide = IconData(0xe508, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hill Rockslide icon /// /// https://fontawesome.com/icons/hill-rockslide?style=light /// mudslide - static const IconData lightHillRockslide = IconDataLight(0xe508); + static const IconData lightHillRockslide = IconData(0xe508, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hill Rockslide icon /// /// https://fontawesome.com/icons/hill-rockslide?style=thin /// mudslide - static const IconData thinHillRockslide = IconDataThin(0xe508); + static const IconData thinHillRockslide = IconData(0xe508, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hippo icon /// /// https://fontawesome.com/icons/hippo?style=solid /// animal, fauna, hippo, hippopotamus, hungry, mammal - static const IconData solidHippo = IconDataSolid(0xf6ed); + static const IconData solidHippo = IconData(0xf6ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hippo icon /// /// https://fontawesome.com/icons/hippo?style=regular /// animal, fauna, hippo, hippopotamus, hungry, mammal - static const IconData hippo = IconDataRegular(0xf6ed); + static const IconData hippo = IconData(0xf6ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hippo icon /// /// https://fontawesome.com/icons/hippo?style=light /// animal, fauna, hippo, hippopotamus, hungry, mammal - static const IconData lightHippo = IconDataLight(0xf6ed); + static const IconData lightHippo = IconData(0xf6ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hippo icon /// /// https://fontawesome.com/icons/hippo?style=thin /// animal, fauna, hippo, hippopotamus, hungry, mammal - static const IconData thinHippo = IconDataThin(0xf6ed); + static const IconData thinHippo = IconData(0xf6ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Hips icon /// /// https://fontawesome.com/icons/hips?style=brands - static const IconData hips = IconDataBrands(0xf452); + static const IconData hips = IconData(0xf452, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands HireAHelper icon /// /// https://fontawesome.com/icons/hire-a-helper?style=brands - static const IconData hireAHelper = IconDataBrands(0xf3b0); + static const IconData hireAHelper = IconData(0xf3b0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Hive Blockchain Network icon /// /// https://fontawesome.com/icons/hive?style=brands - static const IconData hive = IconDataBrands(0xe07f); + static const IconData hive = IconData(0xe07f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hockey Mask icon /// /// https://fontawesome.com/icons/hockey-mask?style=solid /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconData solidHockeyMask = IconDataSolid(0xf6ee); + static const IconData solidHockeyMask = IconData(0xf6ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hockey Mask icon /// /// https://fontawesome.com/icons/hockey-mask?style=regular /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconData hockeyMask = IconDataRegular(0xf6ee); + static const IconData hockeyMask = IconData(0xf6ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hockey Mask icon /// /// https://fontawesome.com/icons/hockey-mask?style=light /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconData lightHockeyMask = IconDataLight(0xf6ee); + static const IconData lightHockeyMask = IconData(0xf6ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hockey Mask icon /// /// https://fontawesome.com/icons/hockey-mask?style=thin /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconData thinHockeyMask = IconDataThin(0xf6ee); + static const IconData thinHockeyMask = IconData(0xf6ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hockey Puck icon /// /// https://fontawesome.com/icons/hockey-puck?style=solid /// ice, nhl, sport - static const IconData solidHockeyPuck = IconDataSolid(0xf453); + static const IconData solidHockeyPuck = IconData(0xf453, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hockey Puck icon /// /// https://fontawesome.com/icons/hockey-puck?style=regular /// ice, nhl, sport - static const IconData hockeyPuck = IconDataRegular(0xf453); + static const IconData hockeyPuck = IconData(0xf453, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hockey Puck icon /// /// https://fontawesome.com/icons/hockey-puck?style=light /// ice, nhl, sport - static const IconData lightHockeyPuck = IconDataLight(0xf453); + static const IconData lightHockeyPuck = IconData(0xf453, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hockey Puck icon /// /// https://fontawesome.com/icons/hockey-puck?style=thin /// ice, nhl, sport - static const IconData thinHockeyPuck = IconDataThin(0xf453); + static const IconData thinHockeyPuck = IconData(0xf453, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hockey Stick Puck icon /// /// https://fontawesome.com/icons/hockey-stick-puck?style=solid /// game, hockey, ice, ice hockey, nhl, puck, sport, stick - static const IconData solidHockeyStickPuck = IconDataSolid(0xe3ae); + static const IconData solidHockeyStickPuck = IconData(0xe3ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hockey Stick Puck icon /// /// https://fontawesome.com/icons/hockey-stick-puck?style=regular /// game, hockey, ice, ice hockey, nhl, puck, sport, stick - static const IconData hockeyStickPuck = IconDataRegular(0xe3ae); + static const IconData hockeyStickPuck = IconData(0xe3ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hockey Stick Puck icon /// /// https://fontawesome.com/icons/hockey-stick-puck?style=light /// game, hockey, ice, ice hockey, nhl, puck, sport, stick - static const IconData lightHockeyStickPuck = IconDataLight(0xe3ae); + static const IconData lightHockeyStickPuck = IconData(0xe3ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hockey Stick Puck icon /// /// https://fontawesome.com/icons/hockey-stick-puck?style=thin /// game, hockey, ice, ice hockey, nhl, puck, sport, stick - static const IconData thinHockeyStickPuck = IconDataThin(0xe3ae); + static const IconData thinHockeyStickPuck = IconData(0xe3ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hockey Sticks icon /// /// https://fontawesome.com/icons/hockey-sticks?style=solid /// ice, nhl, sport - static const IconData solidHockeySticks = IconDataSolid(0xf454); + static const IconData solidHockeySticks = IconData(0xf454, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hockey Sticks icon /// /// https://fontawesome.com/icons/hockey-sticks?style=regular /// ice, nhl, sport - static const IconData hockeySticks = IconDataRegular(0xf454); + static const IconData hockeySticks = IconData(0xf454, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hockey Sticks icon /// /// https://fontawesome.com/icons/hockey-sticks?style=light /// ice, nhl, sport - static const IconData lightHockeySticks = IconDataLight(0xf454); + static const IconData lightHockeySticks = IconData(0xf454, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hockey Sticks icon /// /// https://fontawesome.com/icons/hockey-sticks?style=thin /// ice, nhl, sport - static const IconData thinHockeySticks = IconDataThin(0xf454); + static const IconData thinHockeySticks = IconData(0xf454, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Holly Berry icon /// /// https://fontawesome.com/icons/holly-berry?style=solid /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconData solidHollyBerry = IconDataSolid(0xf7aa); + static const IconData solidHollyBerry = IconData(0xf7aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Holly Berry icon /// /// https://fontawesome.com/icons/holly-berry?style=regular /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconData hollyBerry = IconDataRegular(0xf7aa); + static const IconData hollyBerry = IconData(0xf7aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Holly Berry icon /// /// https://fontawesome.com/icons/holly-berry?style=light /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconData lightHollyBerry = IconDataLight(0xf7aa); + static const IconData lightHollyBerry = IconData(0xf7aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Holly Berry icon /// /// https://fontawesome.com/icons/holly-berry?style=thin /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconData thinHollyBerry = IconDataThin(0xf7aa); + static const IconData thinHollyBerry = IconData(0xf7aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Honey Pot icon /// /// https://fontawesome.com/icons/honey-pot?style=solid /// Winnie the pooh, drip, honey, jar, sweet - static const IconData solidHoneyPot = IconDataSolid(0xe418); + static const IconData solidHoneyPot = IconData(0xe418, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Honey Pot icon /// /// https://fontawesome.com/icons/honey-pot?style=regular /// Winnie the pooh, drip, honey, jar, sweet - static const IconData honeyPot = IconDataRegular(0xe418); + static const IconData honeyPot = IconData(0xe418, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Honey Pot icon /// /// https://fontawesome.com/icons/honey-pot?style=light /// Winnie the pooh, drip, honey, jar, sweet - static const IconData lightHoneyPot = IconDataLight(0xe418); + static const IconData lightHoneyPot = IconData(0xe418, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Honey Pot icon /// /// https://fontawesome.com/icons/honey-pot?style=thin /// Winnie the pooh, drip, honey, jar, sweet - static const IconData thinHoneyPot = IconDataThin(0xe418); + static const IconData thinHoneyPot = IconData(0xe418, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hood Cloak icon /// /// https://fontawesome.com/icons/hood-cloak?style=solid /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconData solidHoodCloak = IconDataSolid(0xf6ef); + static const IconData solidHoodCloak = IconData(0xf6ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hood Cloak icon /// /// https://fontawesome.com/icons/hood-cloak?style=regular /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconData hoodCloak = IconDataRegular(0xf6ef); + static const IconData hoodCloak = IconData(0xf6ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hood Cloak icon /// /// https://fontawesome.com/icons/hood-cloak?style=light /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconData lightHoodCloak = IconDataLight(0xf6ef); + static const IconData lightHoodCloak = IconData(0xf6ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hood Cloak icon /// /// https://fontawesome.com/icons/hood-cloak?style=thin /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconData thinHoodCloak = IconDataThin(0xf6ef); + static const IconData thinHoodCloak = IconData(0xf6ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Hooli icon /// /// https://fontawesome.com/icons/hooli?style=brands - static const IconData hooli = IconDataBrands(0xf427); + static const IconData hooli = IconData(0xf427, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Horizontal Rule icon /// /// https://fontawesome.com/icons/horizontal-rule?style=solid /// Horizontal Bar, divider, hr, line, page break - static const IconData solidHorizontalRule = IconDataSolid(0xf86c); + static const IconData solidHorizontalRule = IconData(0xf86c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Horizontal Rule icon /// /// https://fontawesome.com/icons/horizontal-rule?style=regular /// Horizontal Bar, divider, hr, line, page break - static const IconData horizontalRule = IconDataRegular(0xf86c); + static const IconData horizontalRule = IconData(0xf86c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Horizontal Rule icon /// /// https://fontawesome.com/icons/horizontal-rule?style=light /// Horizontal Bar, divider, hr, line, page break - static const IconData lightHorizontalRule = IconDataLight(0xf86c); + static const IconData lightHorizontalRule = IconData(0xf86c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Horizontal Rule icon /// /// https://fontawesome.com/icons/horizontal-rule?style=thin /// Horizontal Bar, divider, hr, line, page break - static const IconData thinHorizontalRule = IconDataThin(0xf86c); + static const IconData thinHorizontalRule = IconData(0xf86c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Hornbill icon /// /// https://fontawesome.com/icons/hornbill?style=brands - static const IconData hornbill = IconDataBrands(0xf592); + static const IconData hornbill = IconData(0xf592, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Horse icon /// /// https://fontawesome.com/icons/horse?style=solid /// equestrian, equus, fauna, horse, mammmal, mare, neigh, pony, racehorse, racing - static const IconData solidHorse = IconDataSolid(0xf6f0); + static const IconData solidHorse = IconData(0xf6f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Horse icon /// /// https://fontawesome.com/icons/horse?style=regular /// equestrian, equus, fauna, horse, mammmal, mare, neigh, pony, racehorse, racing - static const IconData horse = IconDataRegular(0xf6f0); + static const IconData horse = IconData(0xf6f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Horse icon /// /// https://fontawesome.com/icons/horse?style=light /// equestrian, equus, fauna, horse, mammmal, mare, neigh, pony, racehorse, racing - static const IconData lightHorse = IconDataLight(0xf6f0); + static const IconData lightHorse = IconData(0xf6f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Horse icon /// /// https://fontawesome.com/icons/horse?style=thin /// equestrian, equus, fauna, horse, mammmal, mare, neigh, pony, racehorse, racing - static const IconData thinHorse = IconDataThin(0xf6f0); + static const IconData thinHorse = IconData(0xf6f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Horse Head icon /// /// https://fontawesome.com/icons/horse-head?style=solid /// equus, fauna, mammmal, mare, neigh, pony - static const IconData solidHorseHead = IconDataSolid(0xf7ab); + static const IconData solidHorseHead = IconData(0xf7ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Horse Head icon /// /// https://fontawesome.com/icons/horse-head?style=regular /// equus, fauna, mammmal, mare, neigh, pony - static const IconData horseHead = IconDataRegular(0xf7ab); + static const IconData horseHead = IconData(0xf7ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Horse Head icon /// /// https://fontawesome.com/icons/horse-head?style=light /// equus, fauna, mammmal, mare, neigh, pony - static const IconData lightHorseHead = IconDataLight(0xf7ab); + static const IconData lightHorseHead = IconData(0xf7ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Horse Head icon /// /// https://fontawesome.com/icons/horse-head?style=thin /// equus, fauna, mammmal, mare, neigh, pony - static const IconData thinHorseHead = IconDataThin(0xf7ab); + static const IconData thinHorseHead = IconData(0xf7ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Horse Saddle icon /// /// https://fontawesome.com/icons/horse-saddle?style=solid /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconData solidHorseSaddle = IconDataSolid(0xf8c3); + static const IconData solidHorseSaddle = IconData(0xf8c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Horse Saddle icon /// /// https://fontawesome.com/icons/horse-saddle?style=regular /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconData horseSaddle = IconDataRegular(0xf8c3); + static const IconData horseSaddle = IconData(0xf8c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Horse Saddle icon /// /// https://fontawesome.com/icons/horse-saddle?style=light /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconData lightHorseSaddle = IconDataLight(0xf8c3); + static const IconData lightHorseSaddle = IconData(0xf8c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Horse Saddle icon /// /// https://fontawesome.com/icons/horse-saddle?style=thin /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconData thinHorseSaddle = IconDataThin(0xf8c3); + static const IconData thinHorseSaddle = IconData(0xf8c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hose icon /// /// https://fontawesome.com/icons/hose?style=solid /// fire, irrigation, water - static const IconData solidHose = IconDataSolid(0xe419); + static const IconData solidHose = IconData(0xe419, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hose icon /// /// https://fontawesome.com/icons/hose?style=regular /// fire, irrigation, water - static const IconData hose = IconDataRegular(0xe419); + static const IconData hose = IconData(0xe419, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hose icon /// /// https://fontawesome.com/icons/hose?style=light /// fire, irrigation, water - static const IconData lightHose = IconDataLight(0xe419); + static const IconData lightHose = IconData(0xe419, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hose icon /// /// https://fontawesome.com/icons/hose?style=thin /// fire, irrigation, water - static const IconData thinHose = IconDataThin(0xe419); + static const IconData thinHose = IconData(0xe419, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hose Reel icon /// /// https://fontawesome.com/icons/hose-reel?style=solid /// fire, irrigation, water - static const IconData solidHoseReel = IconDataSolid(0xe41a); + static const IconData solidHoseReel = IconData(0xe41a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hose Reel icon /// /// https://fontawesome.com/icons/hose-reel?style=regular /// fire, irrigation, water - static const IconData hoseReel = IconDataRegular(0xe41a); + static const IconData hoseReel = IconData(0xe41a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hose Reel icon /// /// https://fontawesome.com/icons/hose-reel?style=light /// fire, irrigation, water - static const IconData lightHoseReel = IconDataLight(0xe41a); + static const IconData lightHoseReel = IconData(0xe41a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hose Reel icon /// /// https://fontawesome.com/icons/hose-reel?style=thin /// fire, irrigation, water - static const IconData thinHoseReel = IconDataThin(0xe41a); + static const IconData thinHoseReel = IconData(0xe41a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hospital icon /// /// https://fontawesome.com/icons/hospital?style=solid /// building, covid-19, doctor, emergency room, hospital, medical center, medicine - static const IconData solidHospital = IconDataSolid(0xf0f8); + static const IconData solidHospital = IconData(0xf0f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hospital-alt for icon [solidHospital] @Deprecated('Use "solidHospital" instead.') @@ -48476,7 +48476,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hospital?style=regular /// building, covid-19, doctor, emergency room, hospital, medical center, medicine - static const IconData hospital = IconDataRegular(0xf0f8); + static const IconData hospital = IconData(0xf0f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hospital-alt for icon [hospital] @Deprecated('Use "hospital" instead.') @@ -48490,7 +48490,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hospital?style=light /// building, covid-19, doctor, emergency room, hospital, medical center, medicine - static const IconData lightHospital = IconDataLight(0xf0f8); + static const IconData lightHospital = IconData(0xf0f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hospital-alt for icon [lightHospital] @Deprecated('Use "lightHospital" instead.') @@ -48504,7 +48504,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hospital?style=thin /// building, covid-19, doctor, emergency room, hospital, medical center, medicine - static const IconData thinHospital = IconDataThin(0xf0f8); + static const IconData thinHospital = IconData(0xf0f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hospital-alt for icon [thinHospital] @Deprecated('Use "thinHospital" instead.') @@ -48518,55 +48518,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hospital-user?style=solid /// covid-19, doctor, network, patient, primary care, uer - static const IconData solidHospitalUser = IconDataSolid(0xf80d); + static const IconData solidHospitalUser = IconData(0xf80d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hospital User icon /// /// https://fontawesome.com/icons/hospital-user?style=regular /// covid-19, doctor, network, patient, primary care, uer - static const IconData hospitalUser = IconDataRegular(0xf80d); + static const IconData hospitalUser = IconData(0xf80d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hospital User icon /// /// https://fontawesome.com/icons/hospital-user?style=light /// covid-19, doctor, network, patient, primary care, uer - static const IconData lightHospitalUser = IconDataLight(0xf80d); + static const IconData lightHospitalUser = IconData(0xf80d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hospital User icon /// /// https://fontawesome.com/icons/hospital-user?style=thin /// covid-19, doctor, network, patient, primary care, uer - static const IconData thinHospitalUser = IconDataThin(0xf80d); + static const IconData thinHospitalUser = IconData(0xf80d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hospitals icon /// /// https://fontawesome.com/icons/hospitals?style=solid /// emergency, insurance, network - static const IconData solidHospitals = IconDataSolid(0xf80e); + static const IconData solidHospitals = IconData(0xf80e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hospitals icon /// /// https://fontawesome.com/icons/hospitals?style=regular /// emergency, insurance, network - static const IconData hospitals = IconDataRegular(0xf80e); + static const IconData hospitals = IconData(0xf80e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hospitals icon /// /// https://fontawesome.com/icons/hospitals?style=light /// emergency, insurance, network - static const IconData lightHospitals = IconDataLight(0xf80e); + static const IconData lightHospitals = IconData(0xf80e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hospitals icon /// /// https://fontawesome.com/icons/hospitals?style=thin /// emergency, insurance, network - static const IconData thinHospitals = IconDataThin(0xf80e); + static const IconData thinHospitals = IconData(0xf80e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hot Tub Person icon /// /// https://fontawesome.com/icons/hot-tub-person?style=solid /// jacuzzi, spa, uer - static const IconData solidHotTubPerson = IconDataSolid(0xf593); + static const IconData solidHotTubPerson = IconData(0xf593, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hot-tub for icon [solidHotTubPerson] @Deprecated('Use "solidHotTubPerson" instead.') @@ -48576,7 +48576,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hot-tub-person?style=regular /// jacuzzi, spa, uer - static const IconData hotTubPerson = IconDataRegular(0xf593); + static const IconData hotTubPerson = IconData(0xf593, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hot-tub for icon [hotTubPerson] @Deprecated('Use "hotTubPerson" instead.') @@ -48586,7 +48586,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hot-tub-person?style=light /// jacuzzi, spa, uer - static const IconData lightHotTubPerson = IconDataLight(0xf593); + static const IconData lightHotTubPerson = IconData(0xf593, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hot-tub for icon [lightHotTubPerson] @Deprecated('Use "lightHotTubPerson" instead.') @@ -48596,7 +48596,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hot-tub-person?style=thin /// jacuzzi, spa, uer - static const IconData thinHotTubPerson = IconDataThin(0xf593); + static const IconData thinHotTubPerson = IconData(0xf593, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hot-tub for icon [thinHotTubPerson] @Deprecated('Use "thinHotTubPerson" instead.') @@ -48606,60 +48606,60 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hotdog?style=solid /// bun, chili, frankfurt, frankfurter, hot dog, hotdog, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData solidHotdog = IconDataSolid(0xf80f); + static const IconData solidHotdog = IconData(0xf80f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hotdog icon /// /// https://fontawesome.com/icons/hotdog?style=regular /// bun, chili, frankfurt, frankfurter, hot dog, hotdog, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData hotdog = IconDataRegular(0xf80f); + static const IconData hotdog = IconData(0xf80f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hotdog icon /// /// https://fontawesome.com/icons/hotdog?style=light /// bun, chili, frankfurt, frankfurter, hot dog, hotdog, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData lightHotdog = IconDataLight(0xf80f); + static const IconData lightHotdog = IconData(0xf80f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hotdog icon /// /// https://fontawesome.com/icons/hotdog?style=thin /// bun, chili, frankfurt, frankfurter, hot dog, hotdog, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData thinHotdog = IconDataThin(0xf80f); + static const IconData thinHotdog = IconData(0xf80f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hotel icon /// /// https://fontawesome.com/icons/hotel?style=solid /// building, hotel, inn, lodging, motel, resort, travel - static const IconData solidHotel = IconDataSolid(0xf594); + static const IconData solidHotel = IconData(0xf594, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hotel icon /// /// https://fontawesome.com/icons/hotel?style=regular /// building, hotel, inn, lodging, motel, resort, travel - static const IconData hotel = IconDataRegular(0xf594); + static const IconData hotel = IconData(0xf594, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hotel icon /// /// https://fontawesome.com/icons/hotel?style=light /// building, hotel, inn, lodging, motel, resort, travel - static const IconData lightHotel = IconDataLight(0xf594); + static const IconData lightHotel = IconData(0xf594, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hotel icon /// /// https://fontawesome.com/icons/hotel?style=thin /// building, hotel, inn, lodging, motel, resort, travel - static const IconData thinHotel = IconDataThin(0xf594); + static const IconData thinHotel = IconData(0xf594, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Hotjar icon /// /// https://fontawesome.com/icons/hotjar?style=brands - static const IconData hotjar = IconDataBrands(0xf3b1); + static const IconData hotjar = IconData(0xf3b1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hourglass icon /// /// https://fontawesome.com/icons/hourglass?style=solid /// hour, hourglass, hourglass not done, minute, sand, stopwatch, time, timer - static const IconData solidHourglass = IconDataSolid(0xf254); + static const IconData solidHourglass = IconData(0xf254, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-empty for icon [solidHourglass] @Deprecated('Use "solidHourglass" instead.') @@ -48669,7 +48669,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass?style=regular /// hour, hourglass, hourglass not done, minute, sand, stopwatch, time, timer - static const IconData hourglass = IconDataRegular(0xf254); + static const IconData hourglass = IconData(0xf254, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-empty for icon [hourglass] @Deprecated('Use "hourglass" instead.') @@ -48679,7 +48679,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass?style=light /// hour, hourglass, hourglass not done, minute, sand, stopwatch, time, timer - static const IconData lightHourglass = IconDataLight(0xf254); + static const IconData lightHourglass = IconData(0xf254, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-empty for icon [lightHourglass] @Deprecated('Use "lightHourglass" instead.') @@ -48689,7 +48689,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass?style=thin /// hour, hourglass, hourglass not done, minute, sand, stopwatch, time, timer - static const IconData thinHourglass = IconDataThin(0xf254); + static const IconData thinHourglass = IconData(0xf254, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-empty for icon [thinHourglass] @Deprecated('Use "thinHourglass" instead.') @@ -48699,31 +48699,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-clock?style=solid /// countdown, hour, hourglass, hourglass not done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData solidHourglassClock = IconDataSolid(0xe41b); + static const IconData solidHourglassClock = IconData(0xe41b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hourglass Clock icon /// /// https://fontawesome.com/icons/hourglass-clock?style=regular /// countdown, hour, hourglass, hourglass not done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData hourglassClock = IconDataRegular(0xe41b); + static const IconData hourglassClock = IconData(0xe41b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hourglass Clock icon /// /// https://fontawesome.com/icons/hourglass-clock?style=light /// countdown, hour, hourglass, hourglass not done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData lightHourglassClock = IconDataLight(0xe41b); + static const IconData lightHourglassClock = IconData(0xe41b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hourglass Clock icon /// /// https://fontawesome.com/icons/hourglass-clock?style=thin /// countdown, hour, hourglass, hourglass not done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData thinHourglassClock = IconDataThin(0xe41b); + static const IconData thinHourglassClock = IconData(0xe41b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hourglass End icon /// /// https://fontawesome.com/icons/hourglass-end?style=solid /// hour, hourglass done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData solidHourglassEnd = IconDataSolid(0xf253); + static const IconData solidHourglassEnd = IconData(0xf253, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-3 for icon [solidHourglassEnd] @Deprecated('Use "solidHourglassEnd" instead.') @@ -48733,7 +48733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-end?style=regular /// hour, hourglass done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData hourglassEnd = IconDataRegular(0xf253); + static const IconData hourglassEnd = IconData(0xf253, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-3 for icon [hourglassEnd] @Deprecated('Use "hourglassEnd" instead.') @@ -48743,7 +48743,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-end?style=light /// hour, hourglass done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData lightHourglassEnd = IconDataLight(0xf253); + static const IconData lightHourglassEnd = IconData(0xf253, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-3 for icon [lightHourglassEnd] @Deprecated('Use "lightHourglassEnd" instead.') @@ -48753,7 +48753,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-end?style=thin /// hour, hourglass done, minute, pending, sand, stopwatch, time, timer, waiting - static const IconData thinHourglassEnd = IconDataThin(0xf253); + static const IconData thinHourglassEnd = IconData(0xf253, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-3 for icon [thinHourglassEnd] @Deprecated('Use "thinHourglassEnd" instead.') @@ -48763,7 +48763,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-half?style=solid /// hour, minute, pending, sand, stopwatch, time, waiting - static const IconData solidHourglassHalf = IconDataSolid(0xf252); + static const IconData solidHourglassHalf = IconData(0xf252, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-2 for icon [solidHourglassHalf] @Deprecated('Use "solidHourglassHalf" instead.') @@ -48773,7 +48773,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-half?style=regular /// hour, minute, pending, sand, stopwatch, time, waiting - static const IconData hourglassHalf = IconDataRegular(0xf252); + static const IconData hourglassHalf = IconData(0xf252, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-2 for icon [hourglassHalf] @Deprecated('Use "hourglassHalf" instead.') @@ -48783,7 +48783,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-half?style=light /// hour, minute, pending, sand, stopwatch, time, waiting - static const IconData lightHourglassHalf = IconDataLight(0xf252); + static const IconData lightHourglassHalf = IconData(0xf252, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-2 for icon [lightHourglassHalf] @Deprecated('Use "lightHourglassHalf" instead.') @@ -48793,7 +48793,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-half?style=thin /// hour, minute, pending, sand, stopwatch, time, waiting - static const IconData thinHourglassHalf = IconDataThin(0xf252); + static const IconData thinHourglassHalf = IconData(0xf252, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-2 for icon [thinHourglassHalf] @Deprecated('Use "thinHourglassHalf" instead.') @@ -48803,7 +48803,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-start?style=solid /// hour, minute, sand, stopwatch, time, waiting - static const IconData solidHourglassStart = IconDataSolid(0xf251); + static const IconData solidHourglassStart = IconData(0xf251, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-1 for icon [solidHourglassStart] @Deprecated('Use "solidHourglassStart" instead.') @@ -48813,7 +48813,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-start?style=regular /// hour, minute, sand, stopwatch, time, waiting - static const IconData hourglassStart = IconDataRegular(0xf251); + static const IconData hourglassStart = IconData(0xf251, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-1 for icon [hourglassStart] @Deprecated('Use "hourglassStart" instead.') @@ -48823,7 +48823,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-start?style=light /// hour, minute, sand, stopwatch, time, waiting - static const IconData lightHourglassStart = IconDataLight(0xf251); + static const IconData lightHourglassStart = IconData(0xf251, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-1 for icon [lightHourglassStart] @Deprecated('Use "lightHourglassStart" instead.') @@ -48833,7 +48833,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hourglass-start?style=thin /// hour, minute, sand, stopwatch, time, waiting - static const IconData thinHourglassStart = IconDataThin(0xf251); + static const IconData thinHourglassStart = IconData(0xf251, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hourglass-1 for icon [thinHourglassStart] @Deprecated('Use "thinHourglassStart" instead.') @@ -48843,7 +48843,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house?style=solid /// abode, building, home, house, main, residence - static const IconData solidHouse = IconDataSolid(0xf015); + static const IconData solidHouse = IconData(0xf015, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias home for icon [solidHouse] @Deprecated('Use "solidHouse" instead.') @@ -48861,7 +48861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house?style=regular /// abode, building, home, house, main, residence - static const IconData house = IconDataRegular(0xf015); + static const IconData house = IconData(0xf015, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias home for icon [house] @Deprecated('Use "house" instead.') @@ -48879,7 +48879,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house?style=light /// abode, building, home, house, main, residence - static const IconData lightHouse = IconDataLight(0xf015); + static const IconData lightHouse = IconData(0xf015, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias home for icon [lightHouse] @Deprecated('Use "lightHouse" instead.') @@ -48897,7 +48897,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house?style=thin /// abode, building, home, house, main, residence - static const IconData thinHouse = IconDataThin(0xf015); + static const IconData thinHouse = IconData(0xf015, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias home for icon [thinHouse] @Deprecated('Use "thinHouse" instead.') @@ -48915,7 +48915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-blank?style=solid /// abode, building, house, main - static const IconData solidHouseBlank = IconDataSolid(0xe487); + static const IconData solidHouseBlank = IconData(0xe487, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias home-blank for icon [solidHouseBlank] @Deprecated('Use "solidHouseBlank" instead.') @@ -48925,7 +48925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-blank?style=regular /// abode, building, house, main - static const IconData houseBlank = IconDataRegular(0xe487); + static const IconData houseBlank = IconData(0xe487, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias home-blank for icon [houseBlank] @Deprecated('Use "houseBlank" instead.') @@ -48935,7 +48935,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-blank?style=light /// abode, building, house, main - static const IconData lightHouseBlank = IconDataLight(0xe487); + static const IconData lightHouseBlank = IconData(0xe487, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias home-blank for icon [lightHouseBlank] @Deprecated('Use "lightHouseBlank" instead.') @@ -48945,7 +48945,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-blank?style=thin /// abode, building, house, main - static const IconData thinHouseBlank = IconDataThin(0xe487); + static const IconData thinHouseBlank = IconData(0xe487, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias home-blank for icon [thinHouseBlank] @Deprecated('Use "thinHouseBlank" instead.') @@ -48955,31 +48955,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-building?style=solid /// abode, apartment, building, city, home, residence, suburbs, urban - static const IconData solidHouseBuilding = IconDataSolid(0xe1b1); + static const IconData solidHouseBuilding = IconData(0xe1b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Building icon /// /// https://fontawesome.com/icons/house-building?style=regular /// abode, apartment, building, city, home, residence, suburbs, urban - static const IconData houseBuilding = IconDataRegular(0xe1b1); + static const IconData houseBuilding = IconData(0xe1b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Building icon /// /// https://fontawesome.com/icons/house-building?style=light /// abode, apartment, building, city, home, residence, suburbs, urban - static const IconData lightHouseBuilding = IconDataLight(0xe1b1); + static const IconData lightHouseBuilding = IconData(0xe1b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Building icon /// /// https://fontawesome.com/icons/house-building?style=thin /// abode, apartment, building, city, home, residence, suburbs, urban - static const IconData thinHouseBuilding = IconDataThin(0xe1b1); + static const IconData thinHouseBuilding = IconData(0xe1b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Chimney icon /// /// https://fontawesome.com/icons/house-chimney?style=solid /// abode, building, chimney, house, main, residence, smokestack - static const IconData solidHouseChimney = IconDataSolid(0xe3af); + static const IconData solidHouseChimney = IconData(0xe3af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias home-lg for icon [solidHouseChimney] @Deprecated('Use "solidHouseChimney" instead.') @@ -48989,7 +48989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney?style=regular /// abode, building, chimney, house, main, residence, smokestack - static const IconData houseChimney = IconDataRegular(0xe3af); + static const IconData houseChimney = IconData(0xe3af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias home-lg for icon [houseChimney] @Deprecated('Use "houseChimney" instead.') @@ -48999,7 +48999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney?style=light /// abode, building, chimney, house, main, residence, smokestack - static const IconData lightHouseChimney = IconDataLight(0xe3af); + static const IconData lightHouseChimney = IconData(0xe3af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias home-lg for icon [lightHouseChimney] @Deprecated('Use "lightHouseChimney" instead.') @@ -49009,7 +49009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney?style=thin /// abode, building, chimney, house, main, residence, smokestack - static const IconData thinHouseChimney = IconDataThin(0xe3af); + static const IconData thinHouseChimney = IconData(0xe3af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias home-lg for icon [thinHouseChimney] @Deprecated('Use "thinHouseChimney" instead.') @@ -49019,31 +49019,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-blank?style=solid /// abode, building, house, main - static const IconData solidHouseChimneyBlank = IconDataSolid(0xe3b0); + static const IconData solidHouseChimneyBlank = IconData(0xe3b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Chimney Blank icon /// /// https://fontawesome.com/icons/house-chimney-blank?style=regular /// abode, building, house, main - static const IconData houseChimneyBlank = IconDataRegular(0xe3b0); + static const IconData houseChimneyBlank = IconData(0xe3b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Chimney Blank icon /// /// https://fontawesome.com/icons/house-chimney-blank?style=light /// abode, building, house, main - static const IconData lightHouseChimneyBlank = IconDataLight(0xe3b0); + static const IconData lightHouseChimneyBlank = IconData(0xe3b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Chimney Blank icon /// /// https://fontawesome.com/icons/house-chimney-blank?style=thin /// abode, building, house, main - static const IconData thinHouseChimneyBlank = IconDataThin(0xe3b0); + static const IconData thinHouseChimneyBlank = IconData(0xe3b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Chimney Crack icon /// /// https://fontawesome.com/icons/house-chimney-crack?style=solid /// building, devastation, disaster, earthquake, home, insurance - static const IconData solidHouseChimneyCrack = IconDataSolid(0xf6f1); + static const IconData solidHouseChimneyCrack = IconData(0xf6f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias house-damage for icon [solidHouseChimneyCrack] @Deprecated('Use "solidHouseChimneyCrack" instead.') @@ -49053,7 +49053,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-crack?style=regular /// building, devastation, disaster, earthquake, home, insurance - static const IconData houseChimneyCrack = IconDataRegular(0xf6f1); + static const IconData houseChimneyCrack = IconData(0xf6f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias house-damage for icon [houseChimneyCrack] @Deprecated('Use "houseChimneyCrack" instead.') @@ -49063,7 +49063,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-crack?style=light /// building, devastation, disaster, earthquake, home, insurance - static const IconData lightHouseChimneyCrack = IconDataLight(0xf6f1); + static const IconData lightHouseChimneyCrack = IconData(0xf6f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias house-damage for icon [lightHouseChimneyCrack] @Deprecated('Use "lightHouseChimneyCrack" instead.') @@ -49073,7 +49073,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-crack?style=thin /// building, devastation, disaster, earthquake, home, insurance - static const IconData thinHouseChimneyCrack = IconDataThin(0xf6f1); + static const IconData thinHouseChimneyCrack = IconData(0xf6f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias house-damage for icon [thinHouseChimneyCrack] @Deprecated('Use "thinHouseChimneyCrack" instead.') @@ -49083,31 +49083,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-heart?style=solid /// care, home, love, wishlist - static const IconData solidHouseChimneyHeart = IconDataSolid(0xe1b2); + static const IconData solidHouseChimneyHeart = IconData(0xe1b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Chimney Heart icon /// /// https://fontawesome.com/icons/house-chimney-heart?style=regular /// care, home, love, wishlist - static const IconData houseChimneyHeart = IconDataRegular(0xe1b2); + static const IconData houseChimneyHeart = IconData(0xe1b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Chimney Heart icon /// /// https://fontawesome.com/icons/house-chimney-heart?style=light /// care, home, love, wishlist - static const IconData lightHouseChimneyHeart = IconDataLight(0xe1b2); + static const IconData lightHouseChimneyHeart = IconData(0xe1b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Chimney Heart icon /// /// https://fontawesome.com/icons/house-chimney-heart?style=thin /// care, home, love, wishlist - static const IconData thinHouseChimneyHeart = IconDataThin(0xe1b2); + static const IconData thinHouseChimneyHeart = IconData(0xe1b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Chimney Medical icon /// /// https://fontawesome.com/icons/house-chimney-medical?style=solid /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData solidHouseChimneyMedical = IconDataSolid(0xf7f2); + static const IconData solidHouseChimneyMedical = IconData(0xf7f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias clinic-medical for icon [solidHouseChimneyMedical] @Deprecated('Use "solidHouseChimneyMedical" instead.') @@ -49117,7 +49117,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-medical?style=regular /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData houseChimneyMedical = IconDataRegular(0xf7f2); + static const IconData houseChimneyMedical = IconData(0xf7f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias clinic-medical for icon [houseChimneyMedical] @Deprecated('Use "houseChimneyMedical" instead.') @@ -49127,7 +49127,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-medical?style=light /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData lightHouseChimneyMedical = IconDataLight(0xf7f2); + static const IconData lightHouseChimneyMedical = IconData(0xf7f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias clinic-medical for icon [lightHouseChimneyMedical] @Deprecated('Use "lightHouseChimneyMedical" instead.') @@ -49137,7 +49137,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-medical?style=thin /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData thinHouseChimneyMedical = IconDataThin(0xf7f2); + static const IconData thinHouseChimneyMedical = IconData(0xf7f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias clinic-medical for icon [thinHouseChimneyMedical] @Deprecated('Use "thinHouseChimneyMedical" instead.') @@ -49147,275 +49147,275 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-chimney-user?style=solid /// covid-19, home, isolation, quarantine, uer - static const IconData solidHouseChimneyUser = IconDataSolid(0xe065); + static const IconData solidHouseChimneyUser = IconData(0xe065, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Chimney User icon /// /// https://fontawesome.com/icons/house-chimney-user?style=regular /// covid-19, home, isolation, quarantine, uer - static const IconData houseChimneyUser = IconDataRegular(0xe065); + static const IconData houseChimneyUser = IconData(0xe065, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Chimney User icon /// /// https://fontawesome.com/icons/house-chimney-user?style=light /// covid-19, home, isolation, quarantine, uer - static const IconData lightHouseChimneyUser = IconDataLight(0xe065); + static const IconData lightHouseChimneyUser = IconData(0xe065, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Chimney User icon /// /// https://fontawesome.com/icons/house-chimney-user?style=thin /// covid-19, home, isolation, quarantine, uer - static const IconData thinHouseChimneyUser = IconDataThin(0xe065); + static const IconData thinHouseChimneyUser = IconData(0xe065, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Chimney Window icon /// /// https://fontawesome.com/icons/house-chimney-window?style=solid /// abode, building, family, home, residence - static const IconData solidHouseChimneyWindow = IconDataSolid(0xe00d); + static const IconData solidHouseChimneyWindow = IconData(0xe00d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Chimney Window icon /// /// https://fontawesome.com/icons/house-chimney-window?style=regular /// abode, building, family, home, residence - static const IconData houseChimneyWindow = IconDataRegular(0xe00d); + static const IconData houseChimneyWindow = IconData(0xe00d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Chimney Window icon /// /// https://fontawesome.com/icons/house-chimney-window?style=light /// abode, building, family, home, residence - static const IconData lightHouseChimneyWindow = IconDataLight(0xe00d); + static const IconData lightHouseChimneyWindow = IconData(0xe00d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Chimney Window icon /// /// https://fontawesome.com/icons/house-chimney-window?style=thin /// abode, building, family, home, residence - static const IconData thinHouseChimneyWindow = IconDataThin(0xe00d); + static const IconData thinHouseChimneyWindow = IconData(0xe00d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Circle Check icon /// /// https://fontawesome.com/icons/house-circle-check?style=solid /// abode, enable, home, house, not affected, ok, okay, validate, working - static const IconData solidHouseCircleCheck = IconDataSolid(0xe509); + static const IconData solidHouseCircleCheck = IconData(0xe509, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Circle Check icon /// /// https://fontawesome.com/icons/house-circle-check?style=regular /// abode, enable, home, house, not affected, ok, okay, validate, working - static const IconData houseCircleCheck = IconDataRegular(0xe509); + static const IconData houseCircleCheck = IconData(0xe509, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Circle Check icon /// /// https://fontawesome.com/icons/house-circle-check?style=light /// abode, enable, home, house, not affected, ok, okay, validate, working - static const IconData lightHouseCircleCheck = IconDataLight(0xe509); + static const IconData lightHouseCircleCheck = IconData(0xe509, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Circle Check icon /// /// https://fontawesome.com/icons/house-circle-check?style=thin /// abode, enable, home, house, not affected, ok, okay, validate, working - static const IconData thinHouseCircleCheck = IconDataThin(0xe509); + static const IconData thinHouseCircleCheck = IconData(0xe509, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Circle Exclamation icon /// /// https://fontawesome.com/icons/house-circle-exclamation?style=solid /// abode, affected, failed, home, house - static const IconData solidHouseCircleExclamation = IconDataSolid(0xe50a); + static const IconData solidHouseCircleExclamation = IconData(0xe50a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Circle Exclamation icon /// /// https://fontawesome.com/icons/house-circle-exclamation?style=regular /// abode, affected, failed, home, house - static const IconData houseCircleExclamation = IconDataRegular(0xe50a); + static const IconData houseCircleExclamation = IconData(0xe50a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Circle Exclamation icon /// /// https://fontawesome.com/icons/house-circle-exclamation?style=light /// abode, affected, failed, home, house - static const IconData lightHouseCircleExclamation = IconDataLight(0xe50a); + static const IconData lightHouseCircleExclamation = IconData(0xe50a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Circle Exclamation icon /// /// https://fontawesome.com/icons/house-circle-exclamation?style=thin /// abode, affected, failed, home, house - static const IconData thinHouseCircleExclamation = IconDataThin(0xe50a); + static const IconData thinHouseCircleExclamation = IconData(0xe50a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Circle Xmark icon /// /// https://fontawesome.com/icons/house-circle-xmark?style=solid /// abode, destroy, home, house, uncheck - static const IconData solidHouseCircleXmark = IconDataSolid(0xe50b); + static const IconData solidHouseCircleXmark = IconData(0xe50b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Circle Xmark icon /// /// https://fontawesome.com/icons/house-circle-xmark?style=regular /// abode, destroy, home, house, uncheck - static const IconData houseCircleXmark = IconDataRegular(0xe50b); + static const IconData houseCircleXmark = IconData(0xe50b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Circle Xmark icon /// /// https://fontawesome.com/icons/house-circle-xmark?style=light /// abode, destroy, home, house, uncheck - static const IconData lightHouseCircleXmark = IconDataLight(0xe50b); + static const IconData lightHouseCircleXmark = IconData(0xe50b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Circle Xmark icon /// /// https://fontawesome.com/icons/house-circle-xmark?style=thin /// abode, destroy, home, house, uncheck - static const IconData thinHouseCircleXmark = IconDataThin(0xe50b); + static const IconData thinHouseCircleXmark = IconData(0xe50b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Crack icon /// /// https://fontawesome.com/icons/house-crack?style=solid /// building, devastation, disaster, earthquake, home, insurance - static const IconData solidHouseCrack = IconDataSolid(0xe3b1); + static const IconData solidHouseCrack = IconData(0xe3b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Crack icon /// /// https://fontawesome.com/icons/house-crack?style=regular /// building, devastation, disaster, earthquake, home, insurance - static const IconData houseCrack = IconDataRegular(0xe3b1); + static const IconData houseCrack = IconData(0xe3b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Crack icon /// /// https://fontawesome.com/icons/house-crack?style=light /// building, devastation, disaster, earthquake, home, insurance - static const IconData lightHouseCrack = IconDataLight(0xe3b1); + static const IconData lightHouseCrack = IconData(0xe3b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Crack icon /// /// https://fontawesome.com/icons/house-crack?style=thin /// building, devastation, disaster, earthquake, home, insurance - static const IconData thinHouseCrack = IconDataThin(0xe3b1); + static const IconData thinHouseCrack = IconData(0xe3b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Day icon /// /// https://fontawesome.com/icons/house-day?style=solid /// abode, building, family, home, residence, solar, sun - static const IconData solidHouseDay = IconDataSolid(0xe00e); + static const IconData solidHouseDay = IconData(0xe00e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Day icon /// /// https://fontawesome.com/icons/house-day?style=regular /// abode, building, family, home, residence, solar, sun - static const IconData houseDay = IconDataRegular(0xe00e); + static const IconData houseDay = IconData(0xe00e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Day icon /// /// https://fontawesome.com/icons/house-day?style=light /// abode, building, family, home, residence, solar, sun - static const IconData lightHouseDay = IconDataLight(0xe00e); + static const IconData lightHouseDay = IconData(0xe00e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Day icon /// /// https://fontawesome.com/icons/house-day?style=thin /// abode, building, family, home, residence, solar, sun - static const IconData thinHouseDay = IconDataThin(0xe00e); + static const IconData thinHouseDay = IconData(0xe00e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Fire icon /// /// https://fontawesome.com/icons/house-fire?style=solid /// burn, emergency, home - static const IconData solidHouseFire = IconDataSolid(0xe50c); + static const IconData solidHouseFire = IconData(0xe50c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Fire icon /// /// https://fontawesome.com/icons/house-fire?style=regular /// burn, emergency, home - static const IconData houseFire = IconDataRegular(0xe50c); + static const IconData houseFire = IconData(0xe50c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Fire icon /// /// https://fontawesome.com/icons/house-fire?style=light /// burn, emergency, home - static const IconData lightHouseFire = IconDataLight(0xe50c); + static const IconData lightHouseFire = IconData(0xe50c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Fire icon /// /// https://fontawesome.com/icons/house-fire?style=thin /// burn, emergency, home - static const IconData thinHouseFire = IconDataThin(0xe50c); + static const IconData thinHouseFire = IconData(0xe50c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Flag icon /// /// https://fontawesome.com/icons/house-flag?style=solid /// camp, home - static const IconData solidHouseFlag = IconDataSolid(0xe50d); + static const IconData solidHouseFlag = IconData(0xe50d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Flag icon /// /// https://fontawesome.com/icons/house-flag?style=regular /// camp, home - static const IconData houseFlag = IconDataRegular(0xe50d); + static const IconData houseFlag = IconData(0xe50d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Flag icon /// /// https://fontawesome.com/icons/house-flag?style=light /// camp, home - static const IconData lightHouseFlag = IconDataLight(0xe50d); + static const IconData lightHouseFlag = IconData(0xe50d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Flag icon /// /// https://fontawesome.com/icons/house-flag?style=thin /// camp, home - static const IconData thinHouseFlag = IconDataThin(0xe50d); + static const IconData thinHouseFlag = IconData(0xe50d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Flood Water icon /// /// https://fontawesome.com/icons/house-flood-water?style=solid /// damage, flood, water - static const IconData solidHouseFloodWater = IconDataSolid(0xe50e); + static const IconData solidHouseFloodWater = IconData(0xe50e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Flood Water icon /// /// https://fontawesome.com/icons/house-flood-water?style=regular /// damage, flood, water - static const IconData houseFloodWater = IconDataRegular(0xe50e); + static const IconData houseFloodWater = IconData(0xe50e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Flood Water icon /// /// https://fontawesome.com/icons/house-flood-water?style=light /// damage, flood, water - static const IconData lightHouseFloodWater = IconDataLight(0xe50e); + static const IconData lightHouseFloodWater = IconData(0xe50e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Flood Water icon /// /// https://fontawesome.com/icons/house-flood-water?style=thin /// damage, flood, water - static const IconData thinHouseFloodWater = IconDataThin(0xe50e); + static const IconData thinHouseFloodWater = IconData(0xe50e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Flood Water Circle Arrow Right icon /// /// https://fontawesome.com/icons/house-flood-water-circle-arrow-right?style=solid /// damage, flood, water static const IconData solidHouseFloodWaterCircleArrowRight = - IconDataSolid(0xe50f); + IconData(0xe50f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Flood Water Circle Arrow Right icon /// /// https://fontawesome.com/icons/house-flood-water-circle-arrow-right?style=regular /// damage, flood, water static const IconData houseFloodWaterCircleArrowRight = - IconDataRegular(0xe50f); + IconData(0xe50f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Flood Water Circle Arrow Right icon /// /// https://fontawesome.com/icons/house-flood-water-circle-arrow-right?style=light /// damage, flood, water static const IconData lightHouseFloodWaterCircleArrowRight = - IconDataLight(0xe50f); + IconData(0xe50f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Flood Water Circle Arrow Right icon /// /// https://fontawesome.com/icons/house-flood-water-circle-arrow-right?style=thin /// damage, flood, water static const IconData thinHouseFloodWaterCircleArrowRight = - IconDataThin(0xe50f); + IconData(0xe50f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Heart icon /// /// https://fontawesome.com/icons/house-heart?style=solid /// abode, building, charity, house, main, wishlist - static const IconData solidHouseHeart = IconDataSolid(0xf4c9); + static const IconData solidHouseHeart = IconData(0xf4c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias home-heart for icon [solidHouseHeart] @Deprecated('Use "solidHouseHeart" instead.') @@ -49425,7 +49425,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-heart?style=regular /// abode, building, charity, house, main, wishlist - static const IconData houseHeart = IconDataRegular(0xf4c9); + static const IconData houseHeart = IconData(0xf4c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias home-heart for icon [houseHeart] @Deprecated('Use "houseHeart" instead.') @@ -49435,7 +49435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-heart?style=light /// abode, building, charity, house, main, wishlist - static const IconData lightHouseHeart = IconDataLight(0xf4c9); + static const IconData lightHouseHeart = IconData(0xf4c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias home-heart for icon [lightHouseHeart] @Deprecated('Use "lightHouseHeart" instead.') @@ -49445,7 +49445,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-heart?style=thin /// abode, building, charity, house, main, wishlist - static const IconData thinHouseHeart = IconDataThin(0xf4c9); + static const IconData thinHouseHeart = IconData(0xf4c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias home-heart for icon [thinHouseHeart] @Deprecated('Use "thinHouseHeart" instead.') @@ -49455,7 +49455,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-laptop?style=solid /// computer, covid-19, device, office, remote, work from home - static const IconData solidHouseLaptop = IconDataSolid(0xe066); + static const IconData solidHouseLaptop = IconData(0xe066, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias laptop-house for icon [solidHouseLaptop] @Deprecated('Use "solidHouseLaptop" instead.') @@ -49465,7 +49465,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-laptop?style=regular /// computer, covid-19, device, office, remote, work from home - static const IconData houseLaptop = IconDataRegular(0xe066); + static const IconData houseLaptop = IconData(0xe066, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias laptop-house for icon [houseLaptop] @Deprecated('Use "houseLaptop" instead.') @@ -49475,7 +49475,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-laptop?style=light /// computer, covid-19, device, office, remote, work from home - static const IconData lightHouseLaptop = IconDataLight(0xe066); + static const IconData lightHouseLaptop = IconData(0xe066, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias laptop-house for icon [lightHouseLaptop] @Deprecated('Use "lightHouseLaptop" instead.') @@ -49485,7 +49485,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-laptop?style=thin /// computer, covid-19, device, office, remote, work from home - static const IconData thinHouseLaptop = IconDataThin(0xe066); + static const IconData thinHouseLaptop = IconData(0xe066, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias laptop-house for icon [thinHouseLaptop] @Deprecated('Use "thinHouseLaptop" instead.') @@ -49495,178 +49495,178 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-lock?style=solid /// closed, home, house, lockdown, padlock, privacy, quarantine - static const IconData solidHouseLock = IconDataSolid(0xe510); + static const IconData solidHouseLock = IconData(0xe510, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Lock icon /// /// https://fontawesome.com/icons/house-lock?style=regular /// closed, home, house, lockdown, padlock, privacy, quarantine - static const IconData houseLock = IconDataRegular(0xe510); + static const IconData houseLock = IconData(0xe510, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Lock icon /// /// https://fontawesome.com/icons/house-lock?style=light /// closed, home, house, lockdown, padlock, privacy, quarantine - static const IconData lightHouseLock = IconDataLight(0xe510); + static const IconData lightHouseLock = IconData(0xe510, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Lock icon /// /// https://fontawesome.com/icons/house-lock?style=thin /// closed, home, house, lockdown, padlock, privacy, quarantine - static const IconData thinHouseLock = IconDataThin(0xe510); + static const IconData thinHouseLock = IconData(0xe510, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Medical icon /// /// https://fontawesome.com/icons/house-medical?style=solid /// covid-19, doctor, facility, general practitioner, health, hospital, infirmary, medicine, office, outpatient - static const IconData solidHouseMedical = IconDataSolid(0xe3b2); + static const IconData solidHouseMedical = IconData(0xe3b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Medical icon /// /// https://fontawesome.com/icons/house-medical?style=regular /// covid-19, doctor, facility, general practitioner, health, hospital, infirmary, medicine, office, outpatient - static const IconData houseMedical = IconDataRegular(0xe3b2); + static const IconData houseMedical = IconData(0xe3b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Medical icon /// /// https://fontawesome.com/icons/house-medical?style=light /// covid-19, doctor, facility, general practitioner, health, hospital, infirmary, medicine, office, outpatient - static const IconData lightHouseMedical = IconDataLight(0xe3b2); + static const IconData lightHouseMedical = IconData(0xe3b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Medical icon /// /// https://fontawesome.com/icons/house-medical?style=thin /// covid-19, doctor, facility, general practitioner, health, hospital, infirmary, medicine, office, outpatient - static const IconData thinHouseMedical = IconDataThin(0xe3b2); + static const IconData thinHouseMedical = IconData(0xe3b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Medical Circle Check icon /// /// https://fontawesome.com/icons/house-medical-circle-check?style=solid /// clinic, enable, hospital, not affected, ok, okay, validate, working - static const IconData solidHouseMedicalCircleCheck = IconDataSolid(0xe511); + static const IconData solidHouseMedicalCircleCheck = IconData(0xe511, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Medical Circle Check icon /// /// https://fontawesome.com/icons/house-medical-circle-check?style=regular /// clinic, enable, hospital, not affected, ok, okay, validate, working - static const IconData houseMedicalCircleCheck = IconDataRegular(0xe511); + static const IconData houseMedicalCircleCheck = IconData(0xe511, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Medical Circle Check icon /// /// https://fontawesome.com/icons/house-medical-circle-check?style=light /// clinic, enable, hospital, not affected, ok, okay, validate, working - static const IconData lightHouseMedicalCircleCheck = IconDataLight(0xe511); + static const IconData lightHouseMedicalCircleCheck = IconData(0xe511, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Medical Circle Check icon /// /// https://fontawesome.com/icons/house-medical-circle-check?style=thin /// clinic, enable, hospital, not affected, ok, okay, validate, working - static const IconData thinHouseMedicalCircleCheck = IconDataThin(0xe511); + static const IconData thinHouseMedicalCircleCheck = IconData(0xe511, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Medical Circle Exclamation icon /// /// https://fontawesome.com/icons/house-medical-circle-exclamation?style=solid /// affected, clinic, failed, hospital static const IconData solidHouseMedicalCircleExclamation = - IconDataSolid(0xe512); + IconData(0xe512, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Medical Circle Exclamation icon /// /// https://fontawesome.com/icons/house-medical-circle-exclamation?style=regular /// affected, clinic, failed, hospital - static const IconData houseMedicalCircleExclamation = IconDataRegular(0xe512); + static const IconData houseMedicalCircleExclamation = IconData(0xe512, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Medical Circle Exclamation icon /// /// https://fontawesome.com/icons/house-medical-circle-exclamation?style=light /// affected, clinic, failed, hospital static const IconData lightHouseMedicalCircleExclamation = - IconDataLight(0xe512); + IconData(0xe512, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Medical Circle Exclamation icon /// /// https://fontawesome.com/icons/house-medical-circle-exclamation?style=thin /// affected, clinic, failed, hospital static const IconData thinHouseMedicalCircleExclamation = - IconDataThin(0xe512); + IconData(0xe512, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Medical Circle Xmark icon /// /// https://fontawesome.com/icons/house-medical-circle-xmark?style=solid /// clinic, destroy, hospital, uncheck - static const IconData solidHouseMedicalCircleXmark = IconDataSolid(0xe513); + static const IconData solidHouseMedicalCircleXmark = IconData(0xe513, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Medical Circle Xmark icon /// /// https://fontawesome.com/icons/house-medical-circle-xmark?style=regular /// clinic, destroy, hospital, uncheck - static const IconData houseMedicalCircleXmark = IconDataRegular(0xe513); + static const IconData houseMedicalCircleXmark = IconData(0xe513, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Medical Circle Xmark icon /// /// https://fontawesome.com/icons/house-medical-circle-xmark?style=light /// clinic, destroy, hospital, uncheck - static const IconData lightHouseMedicalCircleXmark = IconDataLight(0xe513); + static const IconData lightHouseMedicalCircleXmark = IconData(0xe513, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Medical Circle Xmark icon /// /// https://fontawesome.com/icons/house-medical-circle-xmark?style=thin /// clinic, destroy, hospital, uncheck - static const IconData thinHouseMedicalCircleXmark = IconDataThin(0xe513); + static const IconData thinHouseMedicalCircleXmark = IconData(0xe513, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Medical Flag icon /// /// https://fontawesome.com/icons/house-medical-flag?style=solid /// clinic, hospital, mash - static const IconData solidHouseMedicalFlag = IconDataSolid(0xe514); + static const IconData solidHouseMedicalFlag = IconData(0xe514, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Medical Flag icon /// /// https://fontawesome.com/icons/house-medical-flag?style=regular /// clinic, hospital, mash - static const IconData houseMedicalFlag = IconDataRegular(0xe514); + static const IconData houseMedicalFlag = IconData(0xe514, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Medical Flag icon /// /// https://fontawesome.com/icons/house-medical-flag?style=light /// clinic, hospital, mash - static const IconData lightHouseMedicalFlag = IconDataLight(0xe514); + static const IconData lightHouseMedicalFlag = IconData(0xe514, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Medical Flag icon /// /// https://fontawesome.com/icons/house-medical-flag?style=thin /// clinic, hospital, mash - static const IconData thinHouseMedicalFlag = IconDataThin(0xe514); + static const IconData thinHouseMedicalFlag = IconData(0xe514, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Night icon /// /// https://fontawesome.com/icons/house-night?style=solid /// abode, building, family, home, moon, residence, stars - static const IconData solidHouseNight = IconDataSolid(0xe010); + static const IconData solidHouseNight = IconData(0xe010, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Night icon /// /// https://fontawesome.com/icons/house-night?style=regular /// abode, building, family, home, moon, residence, stars - static const IconData houseNight = IconDataRegular(0xe010); + static const IconData houseNight = IconData(0xe010, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Night icon /// /// https://fontawesome.com/icons/house-night?style=light /// abode, building, family, home, moon, residence, stars - static const IconData lightHouseNight = IconDataLight(0xe010); + static const IconData lightHouseNight = IconData(0xe010, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Night icon /// /// https://fontawesome.com/icons/house-night?style=thin /// abode, building, family, home, moon, residence, stars - static const IconData thinHouseNight = IconDataThin(0xe010); + static const IconData thinHouseNight = IconData(0xe010, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Person Leave icon /// /// https://fontawesome.com/icons/house-person-leave?style=solid /// away, home, uer - static const IconData solidHousePersonLeave = IconDataSolid(0xe00f); + static const IconData solidHousePersonLeave = IconData(0xe00f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias house-leave for icon [solidHousePersonLeave] @Deprecated('Use "solidHousePersonLeave" instead.') @@ -49680,7 +49680,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-leave?style=regular /// away, home, uer - static const IconData housePersonLeave = IconDataRegular(0xe00f); + static const IconData housePersonLeave = IconData(0xe00f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias house-leave for icon [housePersonLeave] @Deprecated('Use "housePersonLeave" instead.') @@ -49694,7 +49694,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-leave?style=light /// away, home, uer - static const IconData lightHousePersonLeave = IconDataLight(0xe00f); + static const IconData lightHousePersonLeave = IconData(0xe00f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias house-leave for icon [lightHousePersonLeave] @Deprecated('Use "lightHousePersonLeave" instead.') @@ -49708,7 +49708,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-leave?style=thin /// away, home, uer - static const IconData thinHousePersonLeave = IconDataThin(0xe00f); + static const IconData thinHousePersonLeave = IconData(0xe00f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias house-leave for icon [thinHousePersonLeave] @Deprecated('Use "thinHousePersonLeave" instead.') @@ -49722,7 +49722,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-return?style=solid /// home, remote, uer - static const IconData solidHousePersonReturn = IconDataSolid(0xe011); + static const IconData solidHousePersonReturn = IconData(0xe011, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias house-person-arrive for icon [solidHousePersonReturn] @Deprecated('Use "solidHousePersonReturn" instead.') @@ -49736,7 +49736,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-return?style=regular /// home, remote, uer - static const IconData housePersonReturn = IconDataRegular(0xe011); + static const IconData housePersonReturn = IconData(0xe011, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias house-person-arrive for icon [housePersonReturn] @Deprecated('Use "housePersonReturn" instead.') @@ -49750,7 +49750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-return?style=light /// home, remote, uer - static const IconData lightHousePersonReturn = IconDataLight(0xe011); + static const IconData lightHousePersonReturn = IconData(0xe011, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias house-person-arrive for icon [lightHousePersonReturn] @Deprecated('Use "lightHousePersonReturn" instead.') @@ -49764,7 +49764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-person-return?style=thin /// home, remote, uer - static const IconData thinHousePersonReturn = IconDataThin(0xe011); + static const IconData thinHousePersonReturn = IconData(0xe011, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias house-person-arrive for icon [thinHousePersonReturn] @Deprecated('Use "thinHousePersonReturn" instead.') @@ -49778,103 +49778,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-signal?style=solid /// abode, building, connect, family, home, residence, smart home, wifi, www - static const IconData solidHouseSignal = IconDataSolid(0xe012); + static const IconData solidHouseSignal = IconData(0xe012, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Signal icon /// /// https://fontawesome.com/icons/house-signal?style=regular /// abode, building, connect, family, home, residence, smart home, wifi, www - static const IconData houseSignal = IconDataRegular(0xe012); + static const IconData houseSignal = IconData(0xe012, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Signal icon /// /// https://fontawesome.com/icons/house-signal?style=light /// abode, building, connect, family, home, residence, smart home, wifi, www - static const IconData lightHouseSignal = IconDataLight(0xe012); + static const IconData lightHouseSignal = IconData(0xe012, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Signal icon /// /// https://fontawesome.com/icons/house-signal?style=thin /// abode, building, connect, family, home, residence, smart home, wifi, www - static const IconData thinHouseSignal = IconDataThin(0xe012); + static const IconData thinHouseSignal = IconData(0xe012, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Tree icon /// /// https://fontawesome.com/icons/house-tree?style=solid /// abode, city, garden, home, house, house with garden, residence, suburbs, urban - static const IconData solidHouseTree = IconDataSolid(0xe1b3); + static const IconData solidHouseTree = IconData(0xe1b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Tree icon /// /// https://fontawesome.com/icons/house-tree?style=regular /// abode, city, garden, home, house, house with garden, residence, suburbs, urban - static const IconData houseTree = IconDataRegular(0xe1b3); + static const IconData houseTree = IconData(0xe1b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Tree icon /// /// https://fontawesome.com/icons/house-tree?style=light /// abode, city, garden, home, house, house with garden, residence, suburbs, urban - static const IconData lightHouseTree = IconDataLight(0xe1b3); + static const IconData lightHouseTree = IconData(0xe1b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Tree icon /// /// https://fontawesome.com/icons/house-tree?style=thin /// abode, city, garden, home, house, house with garden, residence, suburbs, urban - static const IconData thinHouseTree = IconDataThin(0xe1b3); + static const IconData thinHouseTree = IconData(0xe1b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Tsunami icon /// /// https://fontawesome.com/icons/house-tsunami?style=solid /// damage, flood, tidal wave, wave - static const IconData solidHouseTsunami = IconDataSolid(0xe515); + static const IconData solidHouseTsunami = IconData(0xe515, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Tsunami icon /// /// https://fontawesome.com/icons/house-tsunami?style=regular /// damage, flood, tidal wave, wave - static const IconData houseTsunami = IconDataRegular(0xe515); + static const IconData houseTsunami = IconData(0xe515, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Tsunami icon /// /// https://fontawesome.com/icons/house-tsunami?style=light /// damage, flood, tidal wave, wave - static const IconData lightHouseTsunami = IconDataLight(0xe515); + static const IconData lightHouseTsunami = IconData(0xe515, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Tsunami icon /// /// https://fontawesome.com/icons/house-tsunami?style=thin /// damage, flood, tidal wave, wave - static const IconData thinHouseTsunami = IconDataThin(0xe515); + static const IconData thinHouseTsunami = IconData(0xe515, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House Turret icon /// /// https://fontawesome.com/icons/house-turret?style=solid /// castle, fortress, hideout, palace - static const IconData solidHouseTurret = IconDataSolid(0xe1b4); + static const IconData solidHouseTurret = IconData(0xe1b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Turret icon /// /// https://fontawesome.com/icons/house-turret?style=regular /// castle, fortress, hideout, palace - static const IconData houseTurret = IconDataRegular(0xe1b4); + static const IconData houseTurret = IconData(0xe1b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Turret icon /// /// https://fontawesome.com/icons/house-turret?style=light /// castle, fortress, hideout, palace - static const IconData lightHouseTurret = IconDataLight(0xe1b4); + static const IconData lightHouseTurret = IconData(0xe1b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Turret icon /// /// https://fontawesome.com/icons/house-turret?style=thin /// castle, fortress, hideout, palace - static const IconData thinHouseTurret = IconDataThin(0xe1b4); + static const IconData thinHouseTurret = IconData(0xe1b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid House User icon /// /// https://fontawesome.com/icons/house-user?style=solid /// house, uer - static const IconData solidHouseUser = IconDataSolid(0xe1b0); + static const IconData solidHouseUser = IconData(0xe1b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias home-user for icon [solidHouseUser] @Deprecated('Use "solidHouseUser" instead.') @@ -49884,7 +49884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-user?style=regular /// house, uer - static const IconData houseUser = IconDataRegular(0xe1b0); + static const IconData houseUser = IconData(0xe1b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias home-user for icon [houseUser] @Deprecated('Use "houseUser" instead.') @@ -49894,7 +49894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-user?style=light /// house, uer - static const IconData lightHouseUser = IconDataLight(0xe1b0); + static const IconData lightHouseUser = IconData(0xe1b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias home-user for icon [lightHouseUser] @Deprecated('Use "lightHouseUser" instead.') @@ -49904,7 +49904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-user?style=thin /// house, uer - static const IconData thinHouseUser = IconDataThin(0xe1b0); + static const IconData thinHouseUser = IconData(0xe1b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias home-user for icon [thinHouseUser] @Deprecated('Use "thinHouseUser" instead.') @@ -49914,7 +49914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-water?style=solid /// building, devastation, disaster, flood, home, insurance, water - static const IconData solidHouseWater = IconDataSolid(0xf74f); + static const IconData solidHouseWater = IconData(0xf74f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias house-flood for icon [solidHouseWater] @Deprecated('Use "solidHouseWater" instead.') @@ -49924,7 +49924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-water?style=regular /// building, devastation, disaster, flood, home, insurance, water - static const IconData houseWater = IconDataRegular(0xf74f); + static const IconData houseWater = IconData(0xf74f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias house-flood for icon [houseWater] @Deprecated('Use "houseWater" instead.') @@ -49934,7 +49934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-water?style=light /// building, devastation, disaster, flood, home, insurance, water - static const IconData lightHouseWater = IconDataLight(0xf74f); + static const IconData lightHouseWater = IconData(0xf74f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias house-flood for icon [lightHouseWater] @Deprecated('Use "lightHouseWater" instead.') @@ -49944,7 +49944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-water?style=thin /// building, devastation, disaster, flood, home, insurance, water - static const IconData thinHouseWater = IconDataThin(0xf74f); + static const IconData thinHouseWater = IconData(0xf74f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias house-flood for icon [thinHouseWater] @Deprecated('Use "thinHouseWater" instead.') @@ -49954,36 +49954,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/house-window?style=solid /// abode, building, family, home, residence - static const IconData solidHouseWindow = IconDataSolid(0xe3b3); + static const IconData solidHouseWindow = IconData(0xe3b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular House Window icon /// /// https://fontawesome.com/icons/house-window?style=regular /// abode, building, family, home, residence - static const IconData houseWindow = IconDataRegular(0xe3b3); + static const IconData houseWindow = IconData(0xe3b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light House Window icon /// /// https://fontawesome.com/icons/house-window?style=light /// abode, building, family, home, residence - static const IconData lightHouseWindow = IconDataLight(0xe3b3); + static const IconData lightHouseWindow = IconData(0xe3b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin House Window icon /// /// https://fontawesome.com/icons/house-window?style=thin /// abode, building, family, home, residence - static const IconData thinHouseWindow = IconDataThin(0xe3b3); + static const IconData thinHouseWindow = IconData(0xe3b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Houzz icon /// /// https://fontawesome.com/icons/houzz?style=brands - static const IconData houzz = IconDataBrands(0xf27c); + static const IconData houzz = IconData(0xf27c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hryvnia Sign icon /// /// https://fontawesome.com/icons/hryvnia-sign?style=solid /// Hryvnia Sign, currency - static const IconData solidHryvniaSign = IconDataSolid(0xf6f2); + static const IconData solidHryvniaSign = IconData(0xf6f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hryvnia for icon [solidHryvniaSign] @Deprecated('Use "solidHryvniaSign" instead.') @@ -49993,7 +49993,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hryvnia-sign?style=regular /// Hryvnia Sign, currency - static const IconData hryvniaSign = IconDataRegular(0xf6f2); + static const IconData hryvniaSign = IconData(0xf6f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hryvnia for icon [hryvniaSign] @Deprecated('Use "hryvniaSign" instead.') @@ -50003,7 +50003,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hryvnia-sign?style=light /// Hryvnia Sign, currency - static const IconData lightHryvniaSign = IconDataLight(0xf6f2); + static const IconData lightHryvniaSign = IconData(0xf6f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hryvnia for icon [lightHryvniaSign] @Deprecated('Use "lightHryvniaSign" instead.') @@ -50013,7 +50013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hryvnia-sign?style=thin /// Hryvnia Sign, currency - static const IconData thinHryvniaSign = IconDataThin(0xf6f2); + static const IconData thinHryvniaSign = IconData(0xf6f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hryvnia for icon [thinHryvniaSign] @Deprecated('Use "thinHryvniaSign" instead.') @@ -50022,18 +50022,18 @@ class FontAwesomeIcons { /// Brands HTML 5 Logo icon /// /// https://fontawesome.com/icons/html5?style=brands - static const IconData html5 = IconDataBrands(0xf13b); + static const IconData html5 = IconData(0xf13b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands HubSpot icon /// /// https://fontawesome.com/icons/hubspot?style=brands - static const IconData hubspot = IconDataBrands(0xf3b2); + static const IconData hubspot = IconData(0xf3b2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Hundred Points icon /// /// https://fontawesome.com/icons/hundred-points?style=solid /// 100, agree, one hundred, percent, perfect score, win - static const IconData solidHundredPoints = IconDataSolid(0xe41c); + static const IconData solidHundredPoints = IconData(0xe41c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias 100 for icon [solidHundredPoints] @Deprecated('Use "solidHundredPoints" instead.') @@ -50043,7 +50043,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hundred-points?style=regular /// 100, agree, one hundred, percent, perfect score, win - static const IconData hundredPoints = IconDataRegular(0xe41c); + static const IconData hundredPoints = IconData(0xe41c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias 100 for icon [hundredPoints] @Deprecated('Use "hundredPoints" instead.') @@ -50053,7 +50053,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hundred-points?style=light /// 100, agree, one hundred, percent, perfect score, win - static const IconData lightHundredPoints = IconDataLight(0xe41c); + static const IconData lightHundredPoints = IconData(0xe41c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias 100 for icon [lightHundredPoints] @Deprecated('Use "lightHundredPoints" instead.') @@ -50063,7 +50063,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hundred-points?style=thin /// 100, agree, one hundred, percent, perfect score, win - static const IconData thinHundredPoints = IconDataThin(0xe41c); + static const IconData thinHundredPoints = IconData(0xe41c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias 100 for icon [thinHundredPoints] @Deprecated('Use "thinHundredPoints" instead.') @@ -50073,175 +50073,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/hurricane?style=solid /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData solidHurricane = IconDataSolid(0xf751); + static const IconData solidHurricane = IconData(0xf751, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hurricane icon /// /// https://fontawesome.com/icons/hurricane?style=regular /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData hurricane = IconDataRegular(0xf751); + static const IconData hurricane = IconData(0xf751, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hurricane icon /// /// https://fontawesome.com/icons/hurricane?style=light /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData lightHurricane = IconDataLight(0xf751); + static const IconData lightHurricane = IconData(0xf751, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hurricane icon /// /// https://fontawesome.com/icons/hurricane?style=thin /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData thinHurricane = IconDataThin(0xf751); + static const IconData thinHurricane = IconData(0xf751, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Hyphen icon /// /// https://fontawesome.com/icons/hyphen?style=solid /// Hyphen-Minus, dash, horizontal rule, line, minus - static const IconData solidHyphen = IconDataSolid(0x2d); + static const IconData solidHyphen = IconData(0x2d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Hyphen icon /// /// https://fontawesome.com/icons/hyphen?style=regular /// Hyphen-Minus, dash, horizontal rule, line, minus - static const IconData hyphen = IconDataRegular(0x2d); + static const IconData hyphen = IconData(0x2d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Hyphen icon /// /// https://fontawesome.com/icons/hyphen?style=light /// Hyphen-Minus, dash, horizontal rule, line, minus - static const IconData lightHyphen = IconDataLight(0x2d); + static const IconData lightHyphen = IconData(0x2d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Hyphen icon /// /// https://fontawesome.com/icons/hyphen?style=thin /// Hyphen-Minus, dash, horizontal rule, line, minus - static const IconData thinHyphen = IconDataThin(0x2d); + static const IconData thinHyphen = IconData(0x2d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid I icon /// /// https://fontawesome.com/icons/i?style=solid /// Latin Capital Letter I, Latin Small Letter I, letter - static const IconData solidI = IconDataSolid(0x49); + static const IconData solidI = IconData(0x49, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular I icon /// /// https://fontawesome.com/icons/i?style=regular /// Latin Capital Letter I, Latin Small Letter I, letter - static const IconData i = IconDataRegular(0x49); + static const IconData i = IconData(0x49, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light I icon /// /// https://fontawesome.com/icons/i?style=light /// Latin Capital Letter I, Latin Small Letter I, letter - static const IconData lightI = IconDataLight(0x49); + static const IconData lightI = IconData(0x49, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin I icon /// /// https://fontawesome.com/icons/i?style=thin /// Latin Capital Letter I, Latin Small Letter I, letter - static const IconData thinI = IconDataThin(0x49); + static const IconData thinI = IconData(0x49, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid I Cursor icon /// /// https://fontawesome.com/icons/i-cursor?style=solid /// editing, i-beam, type, writing - static const IconData solidICursor = IconDataSolid(0xf246); + static const IconData solidICursor = IconData(0xf246, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular I Cursor icon /// /// https://fontawesome.com/icons/i-cursor?style=regular /// editing, i-beam, type, writing - static const IconData iCursor = IconDataRegular(0xf246); + static const IconData iCursor = IconData(0xf246, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light I Cursor icon /// /// https://fontawesome.com/icons/i-cursor?style=light /// editing, i-beam, type, writing - static const IconData lightICursor = IconDataLight(0xf246); + static const IconData lightICursor = IconData(0xf246, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin I Cursor icon /// /// https://fontawesome.com/icons/i-cursor?style=thin /// editing, i-beam, type, writing - static const IconData thinICursor = IconDataThin(0xf246); + static const IconData thinICursor = IconData(0xf246, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ice Cream icon /// /// https://fontawesome.com/icons/ice-cream?style=solid /// chocolate, cone, cream, dessert, frozen, ice, ice cream, scoop, sorbet, sweet, vanilla, yogurt - static const IconData solidIceCream = IconDataSolid(0xf810); + static const IconData solidIceCream = IconData(0xf810, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ice Cream icon /// /// https://fontawesome.com/icons/ice-cream?style=regular /// chocolate, cone, cream, dessert, frozen, ice, ice cream, scoop, sorbet, sweet, vanilla, yogurt - static const IconData iceCream = IconDataRegular(0xf810); + static const IconData iceCream = IconData(0xf810, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ice Cream icon /// /// https://fontawesome.com/icons/ice-cream?style=light /// chocolate, cone, cream, dessert, frozen, ice, ice cream, scoop, sorbet, sweet, vanilla, yogurt - static const IconData lightIceCream = IconDataLight(0xf810); + static const IconData lightIceCream = IconData(0xf810, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ice Cream icon /// /// https://fontawesome.com/icons/ice-cream?style=thin /// chocolate, cone, cream, dessert, frozen, ice, ice cream, scoop, sorbet, sweet, vanilla, yogurt - static const IconData thinIceCream = IconDataThin(0xf810); + static const IconData thinIceCream = IconData(0xf810, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ice Skate icon /// /// https://fontawesome.com/icons/ice-skate?style=solid /// blade, clothing, figure skating, hockey, ice, ice skate, seasonal, shoe, skate - static const IconData solidIceSkate = IconDataSolid(0xf7ac); + static const IconData solidIceSkate = IconData(0xf7ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ice Skate icon /// /// https://fontawesome.com/icons/ice-skate?style=regular /// blade, clothing, figure skating, hockey, ice, ice skate, seasonal, shoe, skate - static const IconData iceSkate = IconDataRegular(0xf7ac); + static const IconData iceSkate = IconData(0xf7ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ice Skate icon /// /// https://fontawesome.com/icons/ice-skate?style=light /// blade, clothing, figure skating, hockey, ice, ice skate, seasonal, shoe, skate - static const IconData lightIceSkate = IconDataLight(0xf7ac); + static const IconData lightIceSkate = IconData(0xf7ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ice Skate icon /// /// https://fontawesome.com/icons/ice-skate?style=thin /// blade, clothing, figure skating, hockey, ice, ice skate, seasonal, shoe, skate - static const IconData thinIceSkate = IconDataThin(0xf7ac); + static const IconData thinIceSkate = IconData(0xf7ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Icicles icon /// /// https://fontawesome.com/icons/icicles?style=solid /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData solidIcicles = IconDataSolid(0xf7ad); + static const IconData solidIcicles = IconData(0xf7ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Icicles icon /// /// https://fontawesome.com/icons/icicles?style=regular /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData icicles = IconDataRegular(0xf7ad); + static const IconData icicles = IconData(0xf7ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Icicles icon /// /// https://fontawesome.com/icons/icicles?style=light /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData lightIcicles = IconDataLight(0xf7ad); + static const IconData lightIcicles = IconData(0xf7ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Icicles icon /// /// https://fontawesome.com/icons/icicles?style=thin /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData thinIcicles = IconDataThin(0xf7ad); + static const IconData thinIcicles = IconData(0xf7ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Icons icon /// /// https://fontawesome.com/icons/icons?style=solid /// bolt, category, emoji, heart, image, music, photo, symbols - static const IconData solidIcons = IconDataSolid(0xf86d); + static const IconData solidIcons = IconData(0xf86d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-music-camera-bolt for icon [solidIcons] @Deprecated('Use "solidIcons" instead.') @@ -50251,7 +50251,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/icons?style=regular /// bolt, category, emoji, heart, image, music, photo, symbols - static const IconData icons = IconDataRegular(0xf86d); + static const IconData icons = IconData(0xf86d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-music-camera-bolt for icon [icons] @Deprecated('Use "icons" instead.') @@ -50261,7 +50261,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/icons?style=light /// bolt, category, emoji, heart, image, music, photo, symbols - static const IconData lightIcons = IconDataLight(0xf86d); + static const IconData lightIcons = IconData(0xf86d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-music-camera-bolt for icon [lightIcons] @Deprecated('Use "lightIcons" instead.') @@ -50271,7 +50271,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/icons?style=thin /// bolt, category, emoji, heart, image, music, photo, symbols - static const IconData thinIcons = IconDataThin(0xf86d); + static const IconData thinIcons = IconData(0xf86d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-music-camera-bolt for icon [thinIcons] @Deprecated('Use "thinIcons" instead.') @@ -50281,31 +50281,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-badge?style=solid /// address, contact, identification, license, profile, uer, username - static const IconData solidIdBadge = IconDataSolid(0xf2c1); + static const IconData solidIdBadge = IconData(0xf2c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Id Badge icon /// /// https://fontawesome.com/icons/id-badge?style=regular /// address, contact, identification, license, profile, uer, username - static const IconData idBadge = IconDataRegular(0xf2c1); + static const IconData idBadge = IconData(0xf2c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Id Badge icon /// /// https://fontawesome.com/icons/id-badge?style=light /// address, contact, identification, license, profile, uer, username - static const IconData lightIdBadge = IconDataLight(0xf2c1); + static const IconData lightIdBadge = IconData(0xf2c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Id Badge icon /// /// https://fontawesome.com/icons/id-badge?style=thin /// address, contact, identification, license, profile, uer, username - static const IconData thinIdBadge = IconDataThin(0xf2c1); + static const IconData thinIdBadge = IconData(0xf2c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Id Card icon /// /// https://fontawesome.com/icons/id-card?style=solid /// contact, demographics, document, identification, issued, profile, registration, uer, username - static const IconData solidIdCard = IconDataSolid(0xf2c2); + static const IconData solidIdCard = IconData(0xf2c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias drivers-license for icon [solidIdCard] @Deprecated('Use "solidIdCard" instead.') @@ -50315,7 +50315,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card?style=regular /// contact, demographics, document, identification, issued, profile, registration, uer, username - static const IconData idCard = IconDataRegular(0xf2c2); + static const IconData idCard = IconData(0xf2c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias drivers-license for icon [idCard] @Deprecated('Use "idCard" instead.') @@ -50325,7 +50325,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card?style=light /// contact, demographics, document, identification, issued, profile, registration, uer, username - static const IconData lightIdCard = IconDataLight(0xf2c2); + static const IconData lightIdCard = IconData(0xf2c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias drivers-license for icon [lightIdCard] @Deprecated('Use "lightIdCard" instead.') @@ -50335,7 +50335,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card?style=thin /// contact, demographics, document, identification, issued, profile, registration, uer, username - static const IconData thinIdCard = IconDataThin(0xf2c2); + static const IconData thinIdCard = IconData(0xf2c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias drivers-license for icon [thinIdCard] @Deprecated('Use "thinIdCard" instead.') @@ -50345,7 +50345,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card-clip?style=solid /// contact, demographics, document, identification, issued, profile, uer, username - static const IconData solidIdCardClip = IconDataSolid(0xf47f); + static const IconData solidIdCardClip = IconData(0xf47f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias id-card-alt for icon [solidIdCardClip] @Deprecated('Use "solidIdCardClip" instead.') @@ -50355,7 +50355,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card-clip?style=regular /// contact, demographics, document, identification, issued, profile, uer, username - static const IconData idCardClip = IconDataRegular(0xf47f); + static const IconData idCardClip = IconData(0xf47f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias id-card-alt for icon [idCardClip] @Deprecated('Use "idCardClip" instead.') @@ -50365,7 +50365,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card-clip?style=light /// contact, demographics, document, identification, issued, profile, uer, username - static const IconData lightIdCardClip = IconDataLight(0xf47f); + static const IconData lightIdCardClip = IconData(0xf47f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias id-card-alt for icon [lightIdCardClip] @Deprecated('Use "lightIdCardClip" instead.') @@ -50375,7 +50375,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/id-card-clip?style=thin /// contact, demographics, document, identification, issued, profile, uer, username - static const IconData thinIdCardClip = IconDataThin(0xf47f); + static const IconData thinIdCardClip = IconData(0xf47f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias id-card-alt for icon [thinIdCardClip] @Deprecated('Use "thinIdCardClip" instead.') @@ -50384,61 +50384,61 @@ class FontAwesomeIcons { /// Brands iDeal icon /// /// https://fontawesome.com/icons/ideal?style=brands - static const IconData ideal = IconDataBrands(0xe013); + static const IconData ideal = IconData(0xe013, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Igloo icon /// /// https://fontawesome.com/icons/igloo?style=solid /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData solidIgloo = IconDataSolid(0xf7ae); + static const IconData solidIgloo = IconData(0xf7ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Igloo icon /// /// https://fontawesome.com/icons/igloo?style=regular /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData igloo = IconDataRegular(0xf7ae); + static const IconData igloo = IconData(0xf7ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Igloo icon /// /// https://fontawesome.com/icons/igloo?style=light /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData lightIgloo = IconDataLight(0xf7ae); + static const IconData lightIgloo = IconData(0xf7ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Igloo icon /// /// https://fontawesome.com/icons/igloo?style=thin /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData thinIgloo = IconDataThin(0xf7ae); + static const IconData thinIgloo = IconData(0xf7ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Image icon /// /// https://fontawesome.com/icons/image?style=solid /// album, img, landscape, photo, picture - static const IconData solidImage = IconDataSolid(0xf03e); + static const IconData solidImage = IconData(0xf03e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Image icon /// /// https://fontawesome.com/icons/image?style=regular /// album, img, landscape, photo, picture - static const IconData image = IconDataRegular(0xf03e); + static const IconData image = IconData(0xf03e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Image icon /// /// https://fontawesome.com/icons/image?style=light /// album, img, landscape, photo, picture - static const IconData lightImage = IconDataLight(0xf03e); + static const IconData lightImage = IconData(0xf03e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Image icon /// /// https://fontawesome.com/icons/image?style=thin /// album, img, landscape, photo, picture - static const IconData thinImage = IconDataThin(0xf03e); + static const IconData thinImage = IconData(0xf03e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Image Landscape icon /// /// https://fontawesome.com/icons/image-landscape?style=solid /// image, img, mountain, photo - static const IconData solidImageLandscape = IconDataSolid(0xe1b5); + static const IconData solidImageLandscape = IconData(0xe1b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias landscape for icon [solidImageLandscape] @Deprecated('Use "solidImageLandscape" instead.') @@ -50448,7 +50448,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-landscape?style=regular /// image, img, mountain, photo - static const IconData imageLandscape = IconDataRegular(0xe1b5); + static const IconData imageLandscape = IconData(0xe1b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias landscape for icon [imageLandscape] @Deprecated('Use "imageLandscape" instead.') @@ -50458,7 +50458,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-landscape?style=light /// image, img, mountain, photo - static const IconData lightImageLandscape = IconDataLight(0xe1b5); + static const IconData lightImageLandscape = IconData(0xe1b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias landscape for icon [lightImageLandscape] @Deprecated('Use "lightImageLandscape" instead.') @@ -50468,7 +50468,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-landscape?style=thin /// image, img, mountain, photo - static const IconData thinImageLandscape = IconDataThin(0xe1b5); + static const IconData thinImageLandscape = IconData(0xe1b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias landscape for icon [thinImageLandscape] @Deprecated('Use "thinImageLandscape" instead.') @@ -50478,55 +50478,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-polaroid?style=solid /// capture, film, img, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData solidImagePolaroid = IconDataSolid(0xf8c4); + static const IconData solidImagePolaroid = IconData(0xf8c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Image Polaroid icon /// /// https://fontawesome.com/icons/image-polaroid?style=regular /// capture, film, img, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData imagePolaroid = IconDataRegular(0xf8c4); + static const IconData imagePolaroid = IconData(0xf8c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Image Polaroid icon /// /// https://fontawesome.com/icons/image-polaroid?style=light /// capture, film, img, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData lightImagePolaroid = IconDataLight(0xf8c4); + static const IconData lightImagePolaroid = IconData(0xf8c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Image Polaroid icon /// /// https://fontawesome.com/icons/image-polaroid?style=thin /// capture, film, img, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData thinImagePolaroid = IconDataThin(0xf8c4); + static const IconData thinImagePolaroid = IconData(0xf8c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Image Polaroid User icon /// /// https://fontawesome.com/icons/image-polaroid-user?style=solid /// img, kodak, portrait, selfie, uer - static const IconData solidImagePolaroidUser = IconDataSolid(0xe1b6); + static const IconData solidImagePolaroidUser = IconData(0xe1b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Image Polaroid User icon /// /// https://fontawesome.com/icons/image-polaroid-user?style=regular /// img, kodak, portrait, selfie, uer - static const IconData imagePolaroidUser = IconDataRegular(0xe1b6); + static const IconData imagePolaroidUser = IconData(0xe1b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Image Polaroid User icon /// /// https://fontawesome.com/icons/image-polaroid-user?style=light /// img, kodak, portrait, selfie, uer - static const IconData lightImagePolaroidUser = IconDataLight(0xe1b6); + static const IconData lightImagePolaroidUser = IconData(0xe1b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Image Polaroid User icon /// /// https://fontawesome.com/icons/image-polaroid-user?style=thin /// img, kodak, portrait, selfie, uer - static const IconData thinImagePolaroidUser = IconDataThin(0xe1b6); + static const IconData thinImagePolaroidUser = IconData(0xe1b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Image Portrait icon /// /// https://fontawesome.com/icons/image-portrait?style=solid /// id, image, img, photo, picture, selfie, uer, username - static const IconData solidImagePortrait = IconDataSolid(0xf3e0); + static const IconData solidImagePortrait = IconData(0xf3e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias portrait for icon [solidImagePortrait] @Deprecated('Use "solidImagePortrait" instead.') @@ -50536,7 +50536,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-portrait?style=regular /// id, image, img, photo, picture, selfie, uer, username - static const IconData imagePortrait = IconDataRegular(0xf3e0); + static const IconData imagePortrait = IconData(0xf3e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias portrait for icon [imagePortrait] @Deprecated('Use "imagePortrait" instead.') @@ -50546,7 +50546,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-portrait?style=light /// id, image, img, photo, picture, selfie, uer, username - static const IconData lightImagePortrait = IconDataLight(0xf3e0); + static const IconData lightImagePortrait = IconData(0xf3e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias portrait for icon [lightImagePortrait] @Deprecated('Use "lightImagePortrait" instead.') @@ -50556,7 +50556,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-portrait?style=thin /// id, image, img, photo, picture, selfie, uer, username - static const IconData thinImagePortrait = IconDataThin(0xf3e0); + static const IconData thinImagePortrait = IconData(0xf3e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias portrait for icon [thinImagePortrait] @Deprecated('Use "thinImagePortrait" instead.') @@ -50566,156 +50566,156 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/image-slash?style=solid /// album, disabled, img, landscape, photo, picture - static const IconData solidImageSlash = IconDataSolid(0xe1b7); + static const IconData solidImageSlash = IconData(0xe1b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Image Slash icon /// /// https://fontawesome.com/icons/image-slash?style=regular /// album, disabled, img, landscape, photo, picture - static const IconData imageSlash = IconDataRegular(0xe1b7); + static const IconData imageSlash = IconData(0xe1b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Image Slash icon /// /// https://fontawesome.com/icons/image-slash?style=light /// album, disabled, img, landscape, photo, picture - static const IconData lightImageSlash = IconDataLight(0xe1b7); + static const IconData lightImageSlash = IconData(0xe1b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Image Slash icon /// /// https://fontawesome.com/icons/image-slash?style=thin /// album, disabled, img, landscape, photo, picture - static const IconData thinImageSlash = IconDataThin(0xe1b7); + static const IconData thinImageSlash = IconData(0xe1b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Image User icon /// /// https://fontawesome.com/icons/image-user?style=solid /// employee, img, portrait, selfie, uer - static const IconData solidImageUser = IconDataSolid(0xe1b8); + static const IconData solidImageUser = IconData(0xe1b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Image User icon /// /// https://fontawesome.com/icons/image-user?style=regular /// employee, img, portrait, selfie, uer - static const IconData imageUser = IconDataRegular(0xe1b8); + static const IconData imageUser = IconData(0xe1b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Image User icon /// /// https://fontawesome.com/icons/image-user?style=light /// employee, img, portrait, selfie, uer - static const IconData lightImageUser = IconDataLight(0xe1b8); + static const IconData lightImageUser = IconData(0xe1b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Image User icon /// /// https://fontawesome.com/icons/image-user?style=thin /// employee, img, portrait, selfie, uer - static const IconData thinImageUser = IconDataThin(0xe1b8); + static const IconData thinImageUser = IconData(0xe1b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Images icon /// /// https://fontawesome.com/icons/images?style=solid /// album, img, landscape, photo, picture - static const IconData solidImages = IconDataSolid(0xf302); + static const IconData solidImages = IconData(0xf302, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Images icon /// /// https://fontawesome.com/icons/images?style=regular /// album, img, landscape, photo, picture - static const IconData images = IconDataRegular(0xf302); + static const IconData images = IconData(0xf302, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Images icon /// /// https://fontawesome.com/icons/images?style=light /// album, img, landscape, photo, picture - static const IconData lightImages = IconDataLight(0xf302); + static const IconData lightImages = IconData(0xf302, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Images icon /// /// https://fontawesome.com/icons/images?style=thin /// album, img, landscape, photo, picture - static const IconData thinImages = IconDataThin(0xf302); + static const IconData thinImages = IconData(0xf302, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Images User icon /// /// https://fontawesome.com/icons/images-user?style=solid /// employee, img, portrait, selfie, uer - static const IconData solidImagesUser = IconDataSolid(0xe1b9); + static const IconData solidImagesUser = IconData(0xe1b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Images User icon /// /// https://fontawesome.com/icons/images-user?style=regular /// employee, img, portrait, selfie, uer - static const IconData imagesUser = IconDataRegular(0xe1b9); + static const IconData imagesUser = IconData(0xe1b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Images User icon /// /// https://fontawesome.com/icons/images-user?style=light /// employee, img, portrait, selfie, uer - static const IconData lightImagesUser = IconDataLight(0xe1b9); + static const IconData lightImagesUser = IconData(0xe1b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Images User icon /// /// https://fontawesome.com/icons/images-user?style=thin /// employee, img, portrait, selfie, uer - static const IconData thinImagesUser = IconDataThin(0xe1b9); + static const IconData thinImagesUser = IconData(0xe1b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands IMDB icon /// /// https://fontawesome.com/icons/imdb?style=brands - static const IconData imdb = IconDataBrands(0xf2d8); + static const IconData imdb = IconData(0xf2d8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Inbox icon /// /// https://fontawesome.com/icons/inbox?style=solid /// archive, desk, email, mail, message - static const IconData solidInbox = IconDataSolid(0xf01c); + static const IconData solidInbox = IconData(0xf01c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Inbox icon /// /// https://fontawesome.com/icons/inbox?style=regular /// archive, desk, email, mail, message - static const IconData inbox = IconDataRegular(0xf01c); + static const IconData inbox = IconData(0xf01c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Inbox icon /// /// https://fontawesome.com/icons/inbox?style=light /// archive, desk, email, mail, message - static const IconData lightInbox = IconDataLight(0xf01c); + static const IconData lightInbox = IconData(0xf01c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Inbox icon /// /// https://fontawesome.com/icons/inbox?style=thin /// archive, desk, email, mail, message - static const IconData thinInbox = IconDataThin(0xf01c); + static const IconData thinInbox = IconData(0xf01c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Inbox Full icon /// /// https://fontawesome.com/icons/inbox-full?style=solid /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData solidInboxFull = IconDataSolid(0xe1ba); + static const IconData solidInboxFull = IconData(0xe1ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Inbox Full icon /// /// https://fontawesome.com/icons/inbox-full?style=regular /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData inboxFull = IconDataRegular(0xe1ba); + static const IconData inboxFull = IconData(0xe1ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Inbox Full icon /// /// https://fontawesome.com/icons/inbox-full?style=light /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData lightInboxFull = IconDataLight(0xe1ba); + static const IconData lightInboxFull = IconData(0xe1ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Inbox Full icon /// /// https://fontawesome.com/icons/inbox-full?style=thin /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData thinInboxFull = IconDataThin(0xe1ba); + static const IconData thinInboxFull = IconData(0xe1ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Inbox In icon /// /// https://fontawesome.com/icons/inbox-in?style=solid /// archive, box, desk, email, inbox, inbox tray, insert, letter, mail, message, newsletter, offer, receive, tray - static const IconData solidInboxIn = IconDataSolid(0xf310); + static const IconData solidInboxIn = IconData(0xf310, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-down for icon [solidInboxIn] @Deprecated('Use "solidInboxIn" instead.') @@ -50725,7 +50725,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-in?style=regular /// archive, box, desk, email, inbox, inbox tray, insert, letter, mail, message, newsletter, offer, receive, tray - static const IconData inboxIn = IconDataRegular(0xf310); + static const IconData inboxIn = IconData(0xf310, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-down for icon [inboxIn] @Deprecated('Use "inboxIn" instead.') @@ -50735,7 +50735,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-in?style=light /// archive, box, desk, email, inbox, inbox tray, insert, letter, mail, message, newsletter, offer, receive, tray - static const IconData lightInboxIn = IconDataLight(0xf310); + static const IconData lightInboxIn = IconData(0xf310, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-down for icon [lightInboxIn] @Deprecated('Use "lightInboxIn" instead.') @@ -50745,7 +50745,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-in?style=thin /// archive, box, desk, email, inbox, inbox tray, insert, letter, mail, message, newsletter, offer, receive, tray - static const IconData thinInboxIn = IconDataThin(0xf310); + static const IconData thinInboxIn = IconData(0xf310, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-down for icon [thinInboxIn] @Deprecated('Use "thinInboxIn" instead.') @@ -50755,7 +50755,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-out?style=solid /// archive, box, desk, email, letter, mail, message, newsletter, offer, outbox, outbox tray, sent, tray, upgrade - static const IconData solidInboxOut = IconDataSolid(0xf311); + static const IconData solidInboxOut = IconData(0xf311, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-up for icon [solidInboxOut] @Deprecated('Use "solidInboxOut" instead.') @@ -50765,7 +50765,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-out?style=regular /// archive, box, desk, email, letter, mail, message, newsletter, offer, outbox, outbox tray, sent, tray, upgrade - static const IconData inboxOut = IconDataRegular(0xf311); + static const IconData inboxOut = IconData(0xf311, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-up for icon [inboxOut] @Deprecated('Use "inboxOut" instead.') @@ -50775,7 +50775,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-out?style=light /// archive, box, desk, email, letter, mail, message, newsletter, offer, outbox, outbox tray, sent, tray, upgrade - static const IconData lightInboxOut = IconDataLight(0xf311); + static const IconData lightInboxOut = IconData(0xf311, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-up for icon [lightInboxOut] @Deprecated('Use "lightInboxOut" instead.') @@ -50785,7 +50785,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inbox-out?style=thin /// archive, box, desk, email, letter, mail, message, newsletter, offer, outbox, outbox tray, sent, tray, upgrade - static const IconData thinInboxOut = IconDataThin(0xf311); + static const IconData thinInboxOut = IconData(0xf311, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias inbox-arrow-up for icon [thinInboxOut] @Deprecated('Use "thinInboxOut" instead.') @@ -50795,55 +50795,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/inboxes?style=solid /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData solidInboxes = IconDataSolid(0xe1bb); + static const IconData solidInboxes = IconData(0xe1bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Inboxes icon /// /// https://fontawesome.com/icons/inboxes?style=regular /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData inboxes = IconDataRegular(0xe1bb); + static const IconData inboxes = IconData(0xe1bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Inboxes icon /// /// https://fontawesome.com/icons/inboxes?style=light /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData lightInboxes = IconDataLight(0xe1bb); + static const IconData lightInboxes = IconData(0xe1bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Inboxes icon /// /// https://fontawesome.com/icons/inboxes?style=thin /// communication, dropbox, email, incoming, organize, outgoing, send - static const IconData thinInboxes = IconDataThin(0xe1bb); + static const IconData thinInboxes = IconData(0xe1bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Indent icon /// /// https://fontawesome.com/icons/indent?style=solid /// align, justify, paragraph, tab - static const IconData solidIndent = IconDataSolid(0xf03c); + static const IconData solidIndent = IconData(0xf03c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Indent icon /// /// https://fontawesome.com/icons/indent?style=regular /// align, justify, paragraph, tab - static const IconData indent = IconDataRegular(0xf03c); + static const IconData indent = IconData(0xf03c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Indent icon /// /// https://fontawesome.com/icons/indent?style=light /// align, justify, paragraph, tab - static const IconData lightIndent = IconDataLight(0xf03c); + static const IconData lightIndent = IconData(0xf03c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Indent icon /// /// https://fontawesome.com/icons/indent?style=thin /// align, justify, paragraph, tab - static const IconData thinIndent = IconDataThin(0xf03c); + static const IconData thinIndent = IconData(0xf03c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Indian Rupee Sign icon /// /// https://fontawesome.com/icons/indian-rupee-sign?style=solid /// Indian Rupee Sign, currency - static const IconData solidIndianRupeeSign = IconDataSolid(0xe1bc); + static const IconData solidIndianRupeeSign = IconData(0xe1bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias indian-rupee for icon [solidIndianRupeeSign] @Deprecated('Use "solidIndianRupeeSign" instead.') @@ -50857,7 +50857,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/indian-rupee-sign?style=regular /// Indian Rupee Sign, currency - static const IconData indianRupeeSign = IconDataRegular(0xe1bc); + static const IconData indianRupeeSign = IconData(0xe1bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias indian-rupee for icon [indianRupeeSign] @Deprecated('Use "indianRupeeSign" instead.') @@ -50871,7 +50871,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/indian-rupee-sign?style=light /// Indian Rupee Sign, currency - static const IconData lightIndianRupeeSign = IconDataLight(0xe1bc); + static const IconData lightIndianRupeeSign = IconData(0xe1bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias indian-rupee for icon [lightIndianRupeeSign] @Deprecated('Use "lightIndianRupeeSign" instead.') @@ -50885,7 +50885,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/indian-rupee-sign?style=thin /// Indian Rupee Sign, currency - static const IconData thinIndianRupeeSign = IconDataThin(0xe1bc); + static const IconData thinIndianRupeeSign = IconData(0xe1bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias indian-rupee for icon [thinIndianRupeeSign] @Deprecated('Use "thinIndianRupeeSign" instead.') @@ -50899,31 +50899,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/industry?style=solid /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData solidIndustry = IconDataSolid(0xf275); + static const IconData solidIndustry = IconData(0xf275, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Industry icon /// /// https://fontawesome.com/icons/industry?style=regular /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData industry = IconDataRegular(0xf275); + static const IconData industry = IconData(0xf275, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Industry icon /// /// https://fontawesome.com/icons/industry?style=light /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData lightIndustry = IconDataLight(0xf275); + static const IconData lightIndustry = IconData(0xf275, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Industry icon /// /// https://fontawesome.com/icons/industry?style=thin /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData thinIndustry = IconDataThin(0xf275); + static const IconData thinIndustry = IconData(0xf275, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Industry Windows icon /// /// https://fontawesome.com/icons/industry-windows?style=solid /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData solidIndustryWindows = IconDataSolid(0xf3b3); + static const IconData solidIndustryWindows = IconData(0xf3b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias industry-alt for icon [solidIndustryWindows] @Deprecated('Use "solidIndustryWindows" instead.') @@ -50933,7 +50933,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/industry-windows?style=regular /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData industryWindows = IconDataRegular(0xf3b3); + static const IconData industryWindows = IconData(0xf3b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias industry-alt for icon [industryWindows] @Deprecated('Use "industryWindows" instead.') @@ -50943,7 +50943,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/industry-windows?style=light /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData lightIndustryWindows = IconDataLight(0xf3b3); + static const IconData lightIndustryWindows = IconData(0xf3b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias industry-alt for icon [lightIndustryWindows] @Deprecated('Use "lightIndustryWindows" instead.') @@ -50953,7 +50953,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/industry-windows?style=thin /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData thinIndustryWindows = IconDataThin(0xf3b3); + static const IconData thinIndustryWindows = IconData(0xf3b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias industry-alt for icon [thinIndustryWindows] @Deprecated('Use "thinIndustryWindows" instead.') @@ -50963,256 +50963,256 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/infinity?style=solid /// Infinity, eternity, forever, infinity, math, unbounded, universal - static const IconData solidInfinity = IconDataSolid(0xf534); + static const IconData solidInfinity = IconData(0xf534, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Infinity icon /// /// https://fontawesome.com/icons/infinity?style=regular /// Infinity, eternity, forever, infinity, math, unbounded, universal - static const IconData infinity = IconDataRegular(0xf534); + static const IconData infinity = IconData(0xf534, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Infinity icon /// /// https://fontawesome.com/icons/infinity?style=light /// Infinity, eternity, forever, infinity, math, unbounded, universal - static const IconData lightInfinity = IconDataLight(0xf534); + static const IconData lightInfinity = IconData(0xf534, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Infinity icon /// /// https://fontawesome.com/icons/infinity?style=thin /// Infinity, eternity, forever, infinity, math, unbounded, universal - static const IconData thinInfinity = IconDataThin(0xf534); + static const IconData thinInfinity = IconData(0xf534, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Info icon /// /// https://fontawesome.com/icons/info?style=solid /// details, help, information, more, support - static const IconData solidInfo = IconDataSolid(0xf129); + static const IconData solidInfo = IconData(0xf129, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Info icon /// /// https://fontawesome.com/icons/info?style=regular /// details, help, information, more, support - static const IconData info = IconDataRegular(0xf129); + static const IconData info = IconData(0xf129, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Info icon /// /// https://fontawesome.com/icons/info?style=light /// details, help, information, more, support - static const IconData lightInfo = IconDataLight(0xf129); + static const IconData lightInfo = IconData(0xf129, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Info icon /// /// https://fontawesome.com/icons/info?style=thin /// details, help, information, more, support - static const IconData thinInfo = IconDataThin(0xf129); + static const IconData thinInfo = IconData(0xf129, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Inhaler icon /// /// https://fontawesome.com/icons/inhaler?style=solid /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData solidInhaler = IconDataSolid(0xf5f9); + static const IconData solidInhaler = IconData(0xf5f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Inhaler icon /// /// https://fontawesome.com/icons/inhaler?style=regular /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData inhaler = IconDataRegular(0xf5f9); + static const IconData inhaler = IconData(0xf5f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Inhaler icon /// /// https://fontawesome.com/icons/inhaler?style=light /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData lightInhaler = IconDataLight(0xf5f9); + static const IconData lightInhaler = IconData(0xf5f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Inhaler icon /// /// https://fontawesome.com/icons/inhaler?style=thin /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData thinInhaler = IconDataThin(0xf5f9); + static const IconData thinInhaler = IconData(0xf5f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Input Numeric icon /// /// https://fontawesome.com/icons/input-numeric?style=solid /// age, date, field - static const IconData solidInputNumeric = IconDataSolid(0xe1bd); + static const IconData solidInputNumeric = IconData(0xe1bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Input Numeric icon /// /// https://fontawesome.com/icons/input-numeric?style=regular /// age, date, field - static const IconData inputNumeric = IconDataRegular(0xe1bd); + static const IconData inputNumeric = IconData(0xe1bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Input Numeric icon /// /// https://fontawesome.com/icons/input-numeric?style=light /// age, date, field - static const IconData lightInputNumeric = IconDataLight(0xe1bd); + static const IconData lightInputNumeric = IconData(0xe1bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Input Numeric icon /// /// https://fontawesome.com/icons/input-numeric?style=thin /// age, date, field - static const IconData thinInputNumeric = IconDataThin(0xe1bd); + static const IconData thinInputNumeric = IconData(0xe1bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Input Pipe icon /// /// https://fontawesome.com/icons/input-pipe?style=solid /// field, input - static const IconData solidInputPipe = IconDataSolid(0xe1be); + static const IconData solidInputPipe = IconData(0xe1be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Input Pipe icon /// /// https://fontawesome.com/icons/input-pipe?style=regular /// field, input - static const IconData inputPipe = IconDataRegular(0xe1be); + static const IconData inputPipe = IconData(0xe1be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Input Pipe icon /// /// https://fontawesome.com/icons/input-pipe?style=light /// field, input - static const IconData lightInputPipe = IconDataLight(0xe1be); + static const IconData lightInputPipe = IconData(0xe1be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Input Pipe icon /// /// https://fontawesome.com/icons/input-pipe?style=thin /// field, input - static const IconData thinInputPipe = IconDataThin(0xe1be); + static const IconData thinInputPipe = IconData(0xe1be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Input Text icon /// /// https://fontawesome.com/icons/input-text?style=solid /// field, input, name - static const IconData solidInputText = IconDataSolid(0xe1bf); + static const IconData solidInputText = IconData(0xe1bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Input Text icon /// /// https://fontawesome.com/icons/input-text?style=regular /// field, input, name - static const IconData inputText = IconDataRegular(0xe1bf); + static const IconData inputText = IconData(0xe1bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Input Text icon /// /// https://fontawesome.com/icons/input-text?style=light /// field, input, name - static const IconData lightInputText = IconDataLight(0xe1bf); + static const IconData lightInputText = IconData(0xe1bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Input Text icon /// /// https://fontawesome.com/icons/input-text?style=thin /// field, input, name - static const IconData thinInputText = IconDataThin(0xe1bf); + static const IconData thinInputText = IconData(0xe1bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Instagram icon /// /// https://fontawesome.com/icons/instagram?style=brands - static const IconData instagram = IconDataBrands(0xf16d); + static const IconData instagram = IconData(0xf16d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands InstaLOD icon /// /// https://fontawesome.com/icons/instalod?style=brands - static const IconData instalod = IconDataBrands(0xe081); + static const IconData instalod = IconData(0xe081, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Integral icon /// /// https://fontawesome.com/icons/integral?style=solid /// calculus, equation, function, math - static const IconData solidIntegral = IconDataSolid(0xf667); + static const IconData solidIntegral = IconData(0xf667, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Integral icon /// /// https://fontawesome.com/icons/integral?style=regular /// calculus, equation, function, math - static const IconData integral = IconDataRegular(0xf667); + static const IconData integral = IconData(0xf667, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Integral icon /// /// https://fontawesome.com/icons/integral?style=light /// calculus, equation, function, math - static const IconData lightIntegral = IconDataLight(0xf667); + static const IconData lightIntegral = IconData(0xf667, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Integral icon /// /// https://fontawesome.com/icons/integral?style=thin /// calculus, equation, function, math - static const IconData thinIntegral = IconDataThin(0xf667); + static const IconData thinIntegral = IconData(0xf667, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Intercom icon /// /// https://fontawesome.com/icons/intercom?style=brands /// app, customer, messenger - static const IconData intercom = IconDataBrands(0xf7af); + static const IconData intercom = IconData(0xf7af, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Internet-explorer icon /// /// https://fontawesome.com/icons/internet-explorer?style=brands /// browser, ie - static const IconData internetExplorer = IconDataBrands(0xf26b); + static const IconData internetExplorer = IconData(0xf26b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Interrobang icon /// /// https://fontawesome.com/icons/interrobang?style=solid /// exclamation, question - static const IconData solidInterrobang = IconDataSolid(0xe5ba); + static const IconData solidInterrobang = IconData(0xe5ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Interrobang icon /// /// https://fontawesome.com/icons/interrobang?style=regular /// exclamation, question - static const IconData interrobang = IconDataRegular(0xe5ba); + static const IconData interrobang = IconData(0xe5ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Interrobang icon /// /// https://fontawesome.com/icons/interrobang?style=light /// exclamation, question - static const IconData lightInterrobang = IconDataLight(0xe5ba); + static const IconData lightInterrobang = IconData(0xe5ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Interrobang icon /// /// https://fontawesome.com/icons/interrobang?style=thin /// exclamation, question - static const IconData thinInterrobang = IconDataThin(0xe5ba); + static const IconData thinInterrobang = IconData(0xe5ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Intersection icon /// /// https://fontawesome.com/icons/intersection?style=solid /// N-Ary Intersection, calculus, equation, function, math - static const IconData solidIntersection = IconDataSolid(0xf668); + static const IconData solidIntersection = IconData(0xf668, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Intersection icon /// /// https://fontawesome.com/icons/intersection?style=regular /// N-Ary Intersection, calculus, equation, function, math - static const IconData intersection = IconDataRegular(0xf668); + static const IconData intersection = IconData(0xf668, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Intersection icon /// /// https://fontawesome.com/icons/intersection?style=light /// N-Ary Intersection, calculus, equation, function, math - static const IconData lightIntersection = IconDataLight(0xf668); + static const IconData lightIntersection = IconData(0xf668, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Intersection icon /// /// https://fontawesome.com/icons/intersection?style=thin /// N-Ary Intersection, calculus, equation, function, math - static const IconData thinIntersection = IconDataThin(0xf668); + static const IconData thinIntersection = IconData(0xf668, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands InVision icon /// /// https://fontawesome.com/icons/invision?style=brands /// app, design, interface - static const IconData invision = IconDataBrands(0xf7b0); + static const IconData invision = IconData(0xf7b0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands ioxhost icon /// /// https://fontawesome.com/icons/ioxhost?style=brands - static const IconData ioxhost = IconDataBrands(0xf208); + static const IconData ioxhost = IconData(0xf208, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Island Tropical icon /// /// https://fontawesome.com/icons/island-tropical?style=solid /// castaway, desert, desert island, island, palm tree, sand, stranded, summer, vacation - static const IconData solidIslandTropical = IconDataSolid(0xf811); + static const IconData solidIslandTropical = IconData(0xf811, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias island-tree-palm for icon [solidIslandTropical] @Deprecated('Use "solidIslandTropical" instead.') @@ -51222,7 +51222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/island-tropical?style=regular /// castaway, desert, desert island, island, palm tree, sand, stranded, summer, vacation - static const IconData islandTropical = IconDataRegular(0xf811); + static const IconData islandTropical = IconData(0xf811, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias island-tree-palm for icon [islandTropical] @Deprecated('Use "islandTropical" instead.') @@ -51232,7 +51232,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/island-tropical?style=light /// castaway, desert, desert island, island, palm tree, sand, stranded, summer, vacation - static const IconData lightIslandTropical = IconDataLight(0xf811); + static const IconData lightIslandTropical = IconData(0xf811, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias island-tree-palm for icon [lightIslandTropical] @Deprecated('Use "lightIslandTropical" instead.') @@ -51242,7 +51242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/island-tropical?style=thin /// castaway, desert, desert island, island, palm tree, sand, stranded, summer, vacation - static const IconData thinIslandTropical = IconDataThin(0xf811); + static const IconData thinIslandTropical = IconData(0xf811, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias island-tree-palm for icon [thinIslandTropical] @Deprecated('Use "thinIslandTropical" instead.') @@ -51252,182 +51252,182 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/italic?style=solid /// edit, emphasis, font, format, text, type - static const IconData solidItalic = IconDataSolid(0xf033); + static const IconData solidItalic = IconData(0xf033, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Italic icon /// /// https://fontawesome.com/icons/italic?style=regular /// edit, emphasis, font, format, text, type - static const IconData italic = IconDataRegular(0xf033); + static const IconData italic = IconData(0xf033, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Italic icon /// /// https://fontawesome.com/icons/italic?style=light /// edit, emphasis, font, format, text, type - static const IconData lightItalic = IconDataLight(0xf033); + static const IconData lightItalic = IconData(0xf033, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Italic icon /// /// https://fontawesome.com/icons/italic?style=thin /// edit, emphasis, font, format, text, type - static const IconData thinItalic = IconDataThin(0xf033); + static const IconData thinItalic = IconData(0xf033, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands itch.io icon /// /// https://fontawesome.com/icons/itch-io?style=brands - static const IconData itchIo = IconDataBrands(0xf83a); + static const IconData itchIo = IconData(0xf83a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands iTunes icon /// /// https://fontawesome.com/icons/itunes?style=brands - static const IconData itunes = IconDataBrands(0xf3b4); + static const IconData itunes = IconData(0xf3b4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Itunes Note icon /// /// https://fontawesome.com/icons/itunes-note?style=brands - static const IconData itunesNote = IconDataBrands(0xf3b5); + static const IconData itunesNote = IconData(0xf3b5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid J icon /// /// https://fontawesome.com/icons/j?style=solid /// Latin Capital Letter J, Latin Small Letter J, letter - static const IconData solidJ = IconDataSolid(0x4a); + static const IconData solidJ = IconData(0x4a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular J icon /// /// https://fontawesome.com/icons/j?style=regular /// Latin Capital Letter J, Latin Small Letter J, letter - static const IconData j = IconDataRegular(0x4a); + static const IconData j = IconData(0x4a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light J icon /// /// https://fontawesome.com/icons/j?style=light /// Latin Capital Letter J, Latin Small Letter J, letter - static const IconData lightJ = IconDataLight(0x4a); + static const IconData lightJ = IconData(0x4a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin J icon /// /// https://fontawesome.com/icons/j?style=thin /// Latin Capital Letter J, Latin Small Letter J, letter - static const IconData thinJ = IconDataThin(0x4a); + static const IconData thinJ = IconData(0x4a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Jack O Lantern icon /// /// https://fontawesome.com/icons/jack-o-lantern?style=solid /// carve, celebration, face, halloween, jack, jack-o-lantern, lantern, pumpkin, smile - static const IconData solidJackOLantern = IconDataSolid(0xf30e); + static const IconData solidJackOLantern = IconData(0xf30e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jack O Lantern icon /// /// https://fontawesome.com/icons/jack-o-lantern?style=regular /// carve, celebration, face, halloween, jack, jack-o-lantern, lantern, pumpkin, smile - static const IconData jackOLantern = IconDataRegular(0xf30e); + static const IconData jackOLantern = IconData(0xf30e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jack O Lantern icon /// /// https://fontawesome.com/icons/jack-o-lantern?style=light /// carve, celebration, face, halloween, jack, jack-o-lantern, lantern, pumpkin, smile - static const IconData lightJackOLantern = IconDataLight(0xf30e); + static const IconData lightJackOLantern = IconData(0xf30e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jack O Lantern icon /// /// https://fontawesome.com/icons/jack-o-lantern?style=thin /// carve, celebration, face, halloween, jack, jack-o-lantern, lantern, pumpkin, smile - static const IconData thinJackOLantern = IconDataThin(0xf30e); + static const IconData thinJackOLantern = IconData(0xf30e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Jar icon /// /// https://fontawesome.com/icons/jar?style=solid /// jam, jelly, storage - static const IconData solidJar = IconDataSolid(0xe516); + static const IconData solidJar = IconData(0xe516, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jar icon /// /// https://fontawesome.com/icons/jar?style=regular /// jam, jelly, storage - static const IconData jar = IconDataRegular(0xe516); + static const IconData jar = IconData(0xe516, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jar icon /// /// https://fontawesome.com/icons/jar?style=light /// jam, jelly, storage - static const IconData lightJar = IconDataLight(0xe516); + static const IconData lightJar = IconData(0xe516, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jar icon /// /// https://fontawesome.com/icons/jar?style=thin /// jam, jelly, storage - static const IconData thinJar = IconDataThin(0xe516); + static const IconData thinJar = IconData(0xe516, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Jar Wheat icon /// /// https://fontawesome.com/icons/jar-wheat?style=solid /// flour, storage - static const IconData solidJarWheat = IconDataSolid(0xe517); + static const IconData solidJarWheat = IconData(0xe517, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jar Wheat icon /// /// https://fontawesome.com/icons/jar-wheat?style=regular /// flour, storage - static const IconData jarWheat = IconDataRegular(0xe517); + static const IconData jarWheat = IconData(0xe517, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jar Wheat icon /// /// https://fontawesome.com/icons/jar-wheat?style=light /// flour, storage - static const IconData lightJarWheat = IconDataLight(0xe517); + static const IconData lightJarWheat = IconData(0xe517, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jar Wheat icon /// /// https://fontawesome.com/icons/jar-wheat?style=thin /// flour, storage - static const IconData thinJarWheat = IconDataThin(0xe517); + static const IconData thinJarWheat = IconData(0xe517, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Java icon /// /// https://fontawesome.com/icons/java?style=brands - static const IconData java = IconDataBrands(0xf4e4); + static const IconData java = IconData(0xf4e4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Jedi icon /// /// https://fontawesome.com/icons/jedi?style=solid /// crest, force, sith, skywalker, star wars, yoda - static const IconData solidJedi = IconDataSolid(0xf669); + static const IconData solidJedi = IconData(0xf669, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jedi icon /// /// https://fontawesome.com/icons/jedi?style=regular /// crest, force, sith, skywalker, star wars, yoda - static const IconData jedi = IconDataRegular(0xf669); + static const IconData jedi = IconData(0xf669, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jedi icon /// /// https://fontawesome.com/icons/jedi?style=light /// crest, force, sith, skywalker, star wars, yoda - static const IconData lightJedi = IconDataLight(0xf669); + static const IconData lightJedi = IconData(0xf669, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jedi icon /// /// https://fontawesome.com/icons/jedi?style=thin /// crest, force, sith, skywalker, star wars, yoda - static const IconData thinJedi = IconDataThin(0xf669); + static const IconData thinJedi = IconData(0xf669, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Jedi Order icon /// /// https://fontawesome.com/icons/jedi-order?style=brands /// star wars - static const IconData jediOrder = IconDataBrands(0xf50e); + static const IconData jediOrder = IconData(0xf50e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Jenkis icon /// /// https://fontawesome.com/icons/jenkins?style=brands - static const IconData jenkins = IconDataBrands(0xf3b6); + static const IconData jenkins = IconData(0xf3b6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Jet Fighter icon /// /// https://fontawesome.com/icons/jet-fighter?style=solid /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData solidJetFighter = IconDataSolid(0xf0fb); + static const IconData solidJetFighter = IconData(0xf0fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fighter-jet for icon [solidJetFighter] @Deprecated('Use "solidJetFighter" instead.') @@ -51437,7 +51437,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/jet-fighter?style=regular /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData jetFighter = IconDataRegular(0xf0fb); + static const IconData jetFighter = IconData(0xf0fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fighter-jet for icon [jetFighter] @Deprecated('Use "jetFighter" instead.') @@ -51447,7 +51447,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/jet-fighter?style=light /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData lightJetFighter = IconDataLight(0xf0fb); + static const IconData lightJetFighter = IconData(0xf0fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fighter-jet for icon [lightJetFighter] @Deprecated('Use "lightJetFighter" instead.') @@ -51457,7 +51457,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/jet-fighter?style=thin /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData thinJetFighter = IconDataThin(0xf0fb); + static const IconData thinJetFighter = IconData(0xf0fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fighter-jet for icon [thinJetFighter] @Deprecated('Use "thinJetFighter" instead.') @@ -51467,586 +51467,586 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/jet-fighter-up?style=solid /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData solidJetFighterUp = IconDataSolid(0xe518); + static const IconData solidJetFighterUp = IconData(0xe518, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jet Fighter Up icon /// /// https://fontawesome.com/icons/jet-fighter-up?style=regular /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData jetFighterUp = IconDataRegular(0xe518); + static const IconData jetFighterUp = IconData(0xe518, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jet Fighter Up icon /// /// https://fontawesome.com/icons/jet-fighter-up?style=light /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData lightJetFighterUp = IconDataLight(0xe518); + static const IconData lightJetFighterUp = IconData(0xe518, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jet Fighter Up icon /// /// https://fontawesome.com/icons/jet-fighter-up?style=thin /// airforce, airplane, airport, fast, fly, goose, marines, maverick, military, plane, quick, top gun, transportation, travel - static const IconData thinJetFighterUp = IconDataThin(0xe518); + static const IconData thinJetFighterUp = IconData(0xe518, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Jira icon /// /// https://fontawesome.com/icons/jira?style=brands /// atlassian - static const IconData jira = IconDataBrands(0xf7b1); + static const IconData jira = IconData(0xf7b1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Joget icon /// /// https://fontawesome.com/icons/joget?style=brands - static const IconData joget = IconDataBrands(0xf3b7); + static const IconData joget = IconData(0xf3b7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Joint icon /// /// https://fontawesome.com/icons/joint?style=solid /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData solidJoint = IconDataSolid(0xf595); + static const IconData solidJoint = IconData(0xf595, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Joint icon /// /// https://fontawesome.com/icons/joint?style=regular /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData joint = IconDataRegular(0xf595); + static const IconData joint = IconData(0xf595, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Joint icon /// /// https://fontawesome.com/icons/joint?style=light /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData lightJoint = IconDataLight(0xf595); + static const IconData lightJoint = IconData(0xf595, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Joint icon /// /// https://fontawesome.com/icons/joint?style=thin /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData thinJoint = IconDataThin(0xf595); + static const IconData thinJoint = IconData(0xf595, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Joomla Logo icon /// /// https://fontawesome.com/icons/joomla?style=brands - static const IconData joomla = IconDataBrands(0xf1aa); + static const IconData joomla = IconData(0xf1aa, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Joystick icon /// /// https://fontawesome.com/icons/joystick?style=solid /// arcade, atari, controller, game, joystick, playstore, retro, video game, vintage - static const IconData solidJoystick = IconDataSolid(0xf8c5); + static const IconData solidJoystick = IconData(0xf8c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Joystick icon /// /// https://fontawesome.com/icons/joystick?style=regular /// arcade, atari, controller, game, joystick, playstore, retro, video game, vintage - static const IconData joystick = IconDataRegular(0xf8c5); + static const IconData joystick = IconData(0xf8c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Joystick icon /// /// https://fontawesome.com/icons/joystick?style=light /// arcade, atari, controller, game, joystick, playstore, retro, video game, vintage - static const IconData lightJoystick = IconDataLight(0xf8c5); + static const IconData lightJoystick = IconData(0xf8c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Joystick icon /// /// https://fontawesome.com/icons/joystick?style=thin /// arcade, atari, controller, game, joystick, playstore, retro, video game, vintage - static const IconData thinJoystick = IconDataThin(0xf8c5); + static const IconData thinJoystick = IconData(0xf8c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands JavaScript (JS) icon /// /// https://fontawesome.com/icons/js?style=brands - static const IconData js = IconDataBrands(0xf3b8); + static const IconData js = IconData(0xf3b8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands jsFiddle icon /// /// https://fontawesome.com/icons/jsfiddle?style=brands - static const IconData jsfiddle = IconDataBrands(0xf1cc); + static const IconData jsfiddle = IconData(0xf1cc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Jug icon /// /// https://fontawesome.com/icons/jug?style=solid /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData solidJug = IconDataSolid(0xf8c6); + static const IconData solidJug = IconData(0xf8c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jug icon /// /// https://fontawesome.com/icons/jug?style=regular /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData jug = IconDataRegular(0xf8c6); + static const IconData jug = IconData(0xf8c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jug icon /// /// https://fontawesome.com/icons/jug?style=light /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData lightJug = IconDataLight(0xf8c6); + static const IconData lightJug = IconData(0xf8c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jug icon /// /// https://fontawesome.com/icons/jug?style=thin /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData thinJug = IconDataThin(0xf8c6); + static const IconData thinJug = IconData(0xf8c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Jug Bottle icon /// /// https://fontawesome.com/icons/jug-bottle?style=solid /// jug, recycle, collect, container, plastics - static const IconData solidJugBottle = IconDataSolid(0xe5fb); + static const IconData solidJugBottle = IconData(0xe5fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jug Bottle icon /// /// https://fontawesome.com/icons/jug-bottle?style=regular /// jug, recycle, collect, container, plastics - static const IconData jugBottle = IconDataRegular(0xe5fb); + static const IconData jugBottle = IconData(0xe5fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jug Bottle icon /// /// https://fontawesome.com/icons/jug-bottle?style=light /// jug, recycle, collect, container, plastics - static const IconData lightJugBottle = IconDataLight(0xe5fb); + static const IconData lightJugBottle = IconData(0xe5fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jug Bottle icon /// /// https://fontawesome.com/icons/jug-bottle?style=thin /// jug, recycle, collect, container, plastics - static const IconData thinJugBottle = IconDataThin(0xe5fb); + static const IconData thinJugBottle = IconData(0xe5fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Jug Detergent icon /// /// https://fontawesome.com/icons/jug-detergent?style=solid /// detergent, laundry, soap, wash - static const IconData solidJugDetergent = IconDataSolid(0xe519); + static const IconData solidJugDetergent = IconData(0xe519, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Jug Detergent icon /// /// https://fontawesome.com/icons/jug-detergent?style=regular /// detergent, laundry, soap, wash - static const IconData jugDetergent = IconDataRegular(0xe519); + static const IconData jugDetergent = IconData(0xe519, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Jug Detergent icon /// /// https://fontawesome.com/icons/jug-detergent?style=light /// detergent, laundry, soap, wash - static const IconData lightJugDetergent = IconDataLight(0xe519); + static const IconData lightJugDetergent = IconData(0xe519, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Jug Detergent icon /// /// https://fontawesome.com/icons/jug-detergent?style=thin /// detergent, laundry, soap, wash - static const IconData thinJugDetergent = IconDataThin(0xe519); + static const IconData thinJugDetergent = IconData(0xe519, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid K icon /// /// https://fontawesome.com/icons/k?style=solid /// Latin Capital Letter K, Latin Small Letter K, letter - static const IconData solidK = IconDataSolid(0x4b); + static const IconData solidK = IconData(0x4b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular K icon /// /// https://fontawesome.com/icons/k?style=regular /// Latin Capital Letter K, Latin Small Letter K, letter - static const IconData k = IconDataRegular(0x4b); + static const IconData k = IconData(0x4b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light K icon /// /// https://fontawesome.com/icons/k?style=light /// Latin Capital Letter K, Latin Small Letter K, letter - static const IconData lightK = IconDataLight(0x4b); + static const IconData lightK = IconData(0x4b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin K icon /// /// https://fontawesome.com/icons/k?style=thin /// Latin Capital Letter K, Latin Small Letter K, letter - static const IconData thinK = IconDataThin(0x4b); + static const IconData thinK = IconData(0x4b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kaaba icon /// /// https://fontawesome.com/icons/kaaba?style=solid /// Muslim, building, cube, islam, kaaba, muslim, religion - static const IconData solidKaaba = IconDataSolid(0xf66b); + static const IconData solidKaaba = IconData(0xf66b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kaaba icon /// /// https://fontawesome.com/icons/kaaba?style=regular /// Muslim, building, cube, islam, kaaba, muslim, religion - static const IconData kaaba = IconDataRegular(0xf66b); + static const IconData kaaba = IconData(0xf66b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kaaba icon /// /// https://fontawesome.com/icons/kaaba?style=light /// Muslim, building, cube, islam, kaaba, muslim, religion - static const IconData lightKaaba = IconDataLight(0xf66b); + static const IconData lightKaaba = IconData(0xf66b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kaaba icon /// /// https://fontawesome.com/icons/kaaba?style=thin /// Muslim, building, cube, islam, kaaba, muslim, religion - static const IconData thinKaaba = IconDataThin(0xf66b); + static const IconData thinKaaba = IconData(0xf66b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Kaggle icon /// /// https://fontawesome.com/icons/kaggle?style=brands - static const IconData kaggle = IconDataBrands(0xf5fa); + static const IconData kaggle = IconData(0xf5fa, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Kazoo icon /// /// https://fontawesome.com/icons/kazoo?style=solid /// buzz, instrument, membranophone, mirliton, music - static const IconData solidKazoo = IconDataSolid(0xf8c7); + static const IconData solidKazoo = IconData(0xf8c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kazoo icon /// /// https://fontawesome.com/icons/kazoo?style=regular /// buzz, instrument, membranophone, mirliton, music - static const IconData kazoo = IconDataRegular(0xf8c7); + static const IconData kazoo = IconData(0xf8c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kazoo icon /// /// https://fontawesome.com/icons/kazoo?style=light /// buzz, instrument, membranophone, mirliton, music - static const IconData lightKazoo = IconDataLight(0xf8c7); + static const IconData lightKazoo = IconData(0xf8c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kazoo icon /// /// https://fontawesome.com/icons/kazoo?style=thin /// buzz, instrument, membranophone, mirliton, music - static const IconData thinKazoo = IconDataThin(0xf8c7); + static const IconData thinKazoo = IconData(0xf8c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kerning icon /// /// https://fontawesome.com/icons/kerning?style=solid /// adjust, font, spacing, text, tracking, type, typography - static const IconData solidKerning = IconDataSolid(0xf86f); + static const IconData solidKerning = IconData(0xf86f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kerning icon /// /// https://fontawesome.com/icons/kerning?style=regular /// adjust, font, spacing, text, tracking, type, typography - static const IconData kerning = IconDataRegular(0xf86f); + static const IconData kerning = IconData(0xf86f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kerning icon /// /// https://fontawesome.com/icons/kerning?style=light /// adjust, font, spacing, text, tracking, type, typography - static const IconData lightKerning = IconDataLight(0xf86f); + static const IconData lightKerning = IconData(0xf86f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kerning icon /// /// https://fontawesome.com/icons/kerning?style=thin /// adjust, font, spacing, text, tracking, type, typography - static const IconData thinKerning = IconDataThin(0xf86f); + static const IconData thinKerning = IconData(0xf86f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Key icon /// /// https://fontawesome.com/icons/key?style=solid /// key, lock, password, private, secret, unlock - static const IconData solidKey = IconDataSolid(0xf084); + static const IconData solidKey = IconData(0xf084, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Key icon /// /// https://fontawesome.com/icons/key?style=regular /// key, lock, password, private, secret, unlock - static const IconData key = IconDataRegular(0xf084); + static const IconData key = IconData(0xf084, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Key icon /// /// https://fontawesome.com/icons/key?style=light /// key, lock, password, private, secret, unlock - static const IconData lightKey = IconDataLight(0xf084); + static const IconData lightKey = IconData(0xf084, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Key icon /// /// https://fontawesome.com/icons/key?style=thin /// key, lock, password, private, secret, unlock - static const IconData thinKey = IconDataThin(0xf084); + static const IconData thinKey = IconData(0xf084, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Key Skeleton icon /// /// https://fontawesome.com/icons/key-skeleton?style=solid /// clue, halloween, key, lock, old, old key, password, private, secret, unlock - static const IconData solidKeySkeleton = IconDataSolid(0xf6f3); + static const IconData solidKeySkeleton = IconData(0xf6f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Key Skeleton icon /// /// https://fontawesome.com/icons/key-skeleton?style=regular /// clue, halloween, key, lock, old, old key, password, private, secret, unlock - static const IconData keySkeleton = IconDataRegular(0xf6f3); + static const IconData keySkeleton = IconData(0xf6f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Key Skeleton icon /// /// https://fontawesome.com/icons/key-skeleton?style=light /// clue, halloween, key, lock, old, old key, password, private, secret, unlock - static const IconData lightKeySkeleton = IconDataLight(0xf6f3); + static const IconData lightKeySkeleton = IconData(0xf6f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Key Skeleton icon /// /// https://fontawesome.com/icons/key-skeleton?style=thin /// clue, halloween, key, lock, old, old key, password, private, secret, unlock - static const IconData thinKeySkeleton = IconDataThin(0xf6f3); + static const IconData thinKeySkeleton = IconData(0xf6f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Key Skeleton Left Right icon /// /// https://fontawesome.com/icons/key-skeleton-left-right?style=solid /// connect, lock, private, public - static const IconData solidKeySkeletonLeftRight = IconDataSolid(0xe3b4); + static const IconData solidKeySkeletonLeftRight = IconData(0xe3b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Key Skeleton Left Right icon /// /// https://fontawesome.com/icons/key-skeleton-left-right?style=regular /// connect, lock, private, public - static const IconData keySkeletonLeftRight = IconDataRegular(0xe3b4); + static const IconData keySkeletonLeftRight = IconData(0xe3b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Key Skeleton Left Right icon /// /// https://fontawesome.com/icons/key-skeleton-left-right?style=light /// connect, lock, private, public - static const IconData lightKeySkeletonLeftRight = IconDataLight(0xe3b4); + static const IconData lightKeySkeletonLeftRight = IconData(0xe3b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Key Skeleton Left Right icon /// /// https://fontawesome.com/icons/key-skeleton-left-right?style=thin /// connect, lock, private, public - static const IconData thinKeySkeletonLeftRight = IconDataThin(0xe3b4); + static const IconData thinKeySkeletonLeftRight = IconData(0xe3b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Keybase icon /// /// https://fontawesome.com/icons/keybase?style=brands - static const IconData keybase = IconDataBrands(0xf4f5); + static const IconData keybase = IconData(0xf4f5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Keyboard icon /// /// https://fontawesome.com/icons/keyboard?style=solid /// accessory, computer, edit, input, keyboard, text, type, write - static const IconData solidKeyboard = IconDataSolid(0xf11c); + static const IconData solidKeyboard = IconData(0xf11c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keyboard icon /// /// https://fontawesome.com/icons/keyboard?style=regular /// accessory, computer, edit, input, keyboard, text, type, write - static const IconData keyboard = IconDataRegular(0xf11c); + static const IconData keyboard = IconData(0xf11c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keyboard icon /// /// https://fontawesome.com/icons/keyboard?style=light /// accessory, computer, edit, input, keyboard, text, type, write - static const IconData lightKeyboard = IconDataLight(0xf11c); + static const IconData lightKeyboard = IconData(0xf11c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keyboard icon /// /// https://fontawesome.com/icons/keyboard?style=thin /// accessory, computer, edit, input, keyboard, text, type, write - static const IconData thinKeyboard = IconDataThin(0xf11c); + static const IconData thinKeyboard = IconData(0xf11c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Keyboard Brightness icon /// /// https://fontawesome.com/icons/keyboard-brightness?style=solid /// glow, keyboard, keycap, light - static const IconData solidKeyboardBrightness = IconDataSolid(0xe1c0); + static const IconData solidKeyboardBrightness = IconData(0xe1c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keyboard Brightness icon /// /// https://fontawesome.com/icons/keyboard-brightness?style=regular /// glow, keyboard, keycap, light - static const IconData keyboardBrightness = IconDataRegular(0xe1c0); + static const IconData keyboardBrightness = IconData(0xe1c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keyboard Brightness icon /// /// https://fontawesome.com/icons/keyboard-brightness?style=light /// glow, keyboard, keycap, light - static const IconData lightKeyboardBrightness = IconDataLight(0xe1c0); + static const IconData lightKeyboardBrightness = IconData(0xe1c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keyboard Brightness icon /// /// https://fontawesome.com/icons/keyboard-brightness?style=thin /// glow, keyboard, keycap, light - static const IconData thinKeyboardBrightness = IconDataThin(0xe1c0); + static const IconData thinKeyboardBrightness = IconData(0xe1c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Keyboard Brightness Low icon /// /// https://fontawesome.com/icons/keyboard-brightness-low?style=solid /// glow, keyboard, keycap, light - static const IconData solidKeyboardBrightnessLow = IconDataSolid(0xe1c1); + static const IconData solidKeyboardBrightnessLow = IconData(0xe1c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keyboard Brightness Low icon /// /// https://fontawesome.com/icons/keyboard-brightness-low?style=regular /// glow, keyboard, keycap, light - static const IconData keyboardBrightnessLow = IconDataRegular(0xe1c1); + static const IconData keyboardBrightnessLow = IconData(0xe1c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keyboard Brightness Low icon /// /// https://fontawesome.com/icons/keyboard-brightness-low?style=light /// glow, keyboard, keycap, light - static const IconData lightKeyboardBrightnessLow = IconDataLight(0xe1c1); + static const IconData lightKeyboardBrightnessLow = IconData(0xe1c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keyboard Brightness Low icon /// /// https://fontawesome.com/icons/keyboard-brightness-low?style=thin /// glow, keyboard, keycap, light - static const IconData thinKeyboardBrightnessLow = IconDataThin(0xe1c1); + static const IconData thinKeyboardBrightnessLow = IconData(0xe1c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Keyboard Down icon /// /// https://fontawesome.com/icons/keyboard-down?style=solid /// hide, keyboard - static const IconData solidKeyboardDown = IconDataSolid(0xe1c2); + static const IconData solidKeyboardDown = IconData(0xe1c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keyboard Down icon /// /// https://fontawesome.com/icons/keyboard-down?style=regular /// hide, keyboard - static const IconData keyboardDown = IconDataRegular(0xe1c2); + static const IconData keyboardDown = IconData(0xe1c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keyboard Down icon /// /// https://fontawesome.com/icons/keyboard-down?style=light /// hide, keyboard - static const IconData lightKeyboardDown = IconDataLight(0xe1c2); + static const IconData lightKeyboardDown = IconData(0xe1c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keyboard Down icon /// /// https://fontawesome.com/icons/keyboard-down?style=thin /// hide, keyboard - static const IconData thinKeyboardDown = IconDataThin(0xe1c2); + static const IconData thinKeyboardDown = IconData(0xe1c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Keyboard Left icon /// /// https://fontawesome.com/icons/keyboard-left?style=solid /// hide, keyboard - static const IconData solidKeyboardLeft = IconDataSolid(0xe1c3); + static const IconData solidKeyboardLeft = IconData(0xe1c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keyboard Left icon /// /// https://fontawesome.com/icons/keyboard-left?style=regular /// hide, keyboard - static const IconData keyboardLeft = IconDataRegular(0xe1c3); + static const IconData keyboardLeft = IconData(0xe1c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keyboard Left icon /// /// https://fontawesome.com/icons/keyboard-left?style=light /// hide, keyboard - static const IconData lightKeyboardLeft = IconDataLight(0xe1c3); + static const IconData lightKeyboardLeft = IconData(0xe1c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keyboard Left icon /// /// https://fontawesome.com/icons/keyboard-left?style=thin /// hide, keyboard - static const IconData thinKeyboardLeft = IconDataThin(0xe1c3); + static const IconData thinKeyboardLeft = IconData(0xe1c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands KeyCDN icon /// /// https://fontawesome.com/icons/keycdn?style=brands - static const IconData keycdn = IconDataBrands(0xf3ba); + static const IconData keycdn = IconData(0xf3ba, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Keynote icon /// /// https://fontawesome.com/icons/keynote?style=solid /// lecture, panel, seminar, speak, speaker, talk - static const IconData solidKeynote = IconDataSolid(0xf66c); + static const IconData solidKeynote = IconData(0xf66c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Keynote icon /// /// https://fontawesome.com/icons/keynote?style=regular /// lecture, panel, seminar, speak, speaker, talk - static const IconData keynote = IconDataRegular(0xf66c); + static const IconData keynote = IconData(0xf66c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Keynote icon /// /// https://fontawesome.com/icons/keynote?style=light /// lecture, panel, seminar, speak, speaker, talk - static const IconData lightKeynote = IconDataLight(0xf66c); + static const IconData lightKeynote = IconData(0xf66c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Keynote icon /// /// https://fontawesome.com/icons/keynote?style=thin /// lecture, panel, seminar, speak, speaker, talk - static const IconData thinKeynote = IconDataThin(0xf66c); + static const IconData thinKeynote = IconData(0xf66c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Khanda icon /// /// https://fontawesome.com/icons/khanda?style=solid /// Adi Shakti, chakkar, sikh, sikhism, sword - static const IconData solidKhanda = IconDataSolid(0xf66d); + static const IconData solidKhanda = IconData(0xf66d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Khanda icon /// /// https://fontawesome.com/icons/khanda?style=regular /// Adi Shakti, chakkar, sikh, sikhism, sword - static const IconData khanda = IconDataRegular(0xf66d); + static const IconData khanda = IconData(0xf66d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Khanda icon /// /// https://fontawesome.com/icons/khanda?style=light /// Adi Shakti, chakkar, sikh, sikhism, sword - static const IconData lightKhanda = IconDataLight(0xf66d); + static const IconData lightKhanda = IconData(0xf66d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Khanda icon /// /// https://fontawesome.com/icons/khanda?style=thin /// Adi Shakti, chakkar, sikh, sikhism, sword - static const IconData thinKhanda = IconDataThin(0xf66d); + static const IconData thinKhanda = IconData(0xf66d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Kickstarter icon /// /// https://fontawesome.com/icons/kickstarter?style=brands - static const IconData kickstarter = IconDataBrands(0xf3bb); + static const IconData kickstarter = IconData(0xf3bb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Kickstarter K icon /// /// https://fontawesome.com/icons/kickstarter-k?style=brands - static const IconData kickstarterK = IconDataBrands(0xf3bc); + static const IconData kickstarterK = IconData(0xf3bc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Kidneys icon /// /// https://fontawesome.com/icons/kidneys?style=solid /// blood, body, organ, surgery, urine - static const IconData solidKidneys = IconDataSolid(0xf5fb); + static const IconData solidKidneys = IconData(0xf5fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kidneys icon /// /// https://fontawesome.com/icons/kidneys?style=regular /// blood, body, organ, surgery, urine - static const IconData kidneys = IconDataRegular(0xf5fb); + static const IconData kidneys = IconData(0xf5fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kidneys icon /// /// https://fontawesome.com/icons/kidneys?style=light /// blood, body, organ, surgery, urine - static const IconData lightKidneys = IconDataLight(0xf5fb); + static const IconData lightKidneys = IconData(0xf5fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kidneys icon /// /// https://fontawesome.com/icons/kidneys?style=thin /// blood, body, organ, surgery, urine - static const IconData thinKidneys = IconDataThin(0xf5fb); + static const IconData thinKidneys = IconData(0xf5fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kip Sign icon /// /// https://fontawesome.com/icons/kip-sign?style=solid /// Kip Sign, currency - static const IconData solidKipSign = IconDataSolid(0xe1c4); + static const IconData solidKipSign = IconData(0xe1c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kip Sign icon /// /// https://fontawesome.com/icons/kip-sign?style=regular /// Kip Sign, currency - static const IconData kipSign = IconDataRegular(0xe1c4); + static const IconData kipSign = IconData(0xe1c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kip Sign icon /// /// https://fontawesome.com/icons/kip-sign?style=light /// Kip Sign, currency - static const IconData lightKipSign = IconDataLight(0xe1c4); + static const IconData lightKipSign = IconData(0xe1c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kip Sign icon /// /// https://fontawesome.com/icons/kip-sign?style=thin /// Kip Sign, currency - static const IconData thinKipSign = IconDataThin(0xe1c4); + static const IconData thinKipSign = IconData(0xe1c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kit Medical icon /// /// https://fontawesome.com/icons/kit-medical?style=solid /// emergency, emt, health, medical, rescue - static const IconData solidKitMedical = IconDataSolid(0xf479); + static const IconData solidKitMedical = IconData(0xf479, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias first-aid for icon [solidKitMedical] @Deprecated('Use "solidKitMedical" instead.') @@ -52056,7 +52056,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/kit-medical?style=regular /// emergency, emt, health, medical, rescue - static const IconData kitMedical = IconDataRegular(0xf479); + static const IconData kitMedical = IconData(0xf479, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias first-aid for icon [kitMedical] @Deprecated('Use "kitMedical" instead.') @@ -52066,7 +52066,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/kit-medical?style=light /// emergency, emt, health, medical, rescue - static const IconData lightKitMedical = IconDataLight(0xf479); + static const IconData lightKitMedical = IconData(0xf479, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias first-aid for icon [lightKitMedical] @Deprecated('Use "lightKitMedical" instead.') @@ -52076,7 +52076,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/kit-medical?style=thin /// emergency, emt, health, medical, rescue - static const IconData thinKitMedical = IconDataThin(0xf479); + static const IconData thinKitMedical = IconData(0xf479, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias first-aid for icon [thinKitMedical] @Deprecated('Use "thinKitMedical" instead.') @@ -52086,103 +52086,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/kitchen-set?style=solid /// chef, cook, cup, kitchen, pan, pot, skillet - static const IconData solidKitchenSet = IconDataSolid(0xe51a); + static const IconData solidKitchenSet = IconData(0xe51a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kitchen Set icon /// /// https://fontawesome.com/icons/kitchen-set?style=regular /// chef, cook, cup, kitchen, pan, pot, skillet - static const IconData kitchenSet = IconDataRegular(0xe51a); + static const IconData kitchenSet = IconData(0xe51a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kitchen Set icon /// /// https://fontawesome.com/icons/kitchen-set?style=light /// chef, cook, cup, kitchen, pan, pot, skillet - static const IconData lightKitchenSet = IconDataLight(0xe51a); + static const IconData lightKitchenSet = IconData(0xe51a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kitchen Set icon /// /// https://fontawesome.com/icons/kitchen-set?style=thin /// chef, cook, cup, kitchen, pan, pot, skillet - static const IconData thinKitchenSet = IconDataThin(0xe51a); + static const IconData thinKitchenSet = IconData(0xe51a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kite icon /// /// https://fontawesome.com/icons/kite?style=solid /// air, benjamin, fall, fly, flying, franklin, kite, outdoors, seasonal, sky, soar, wind - static const IconData solidKite = IconDataSolid(0xf6f4); + static const IconData solidKite = IconData(0xf6f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kite icon /// /// https://fontawesome.com/icons/kite?style=regular /// air, benjamin, fall, fly, flying, franklin, kite, outdoors, seasonal, sky, soar, wind - static const IconData kite = IconDataRegular(0xf6f4); + static const IconData kite = IconData(0xf6f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kite icon /// /// https://fontawesome.com/icons/kite?style=light /// air, benjamin, fall, fly, flying, franklin, kite, outdoors, seasonal, sky, soar, wind - static const IconData lightKite = IconDataLight(0xf6f4); + static const IconData lightKite = IconData(0xf6f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kite icon /// /// https://fontawesome.com/icons/kite?style=thin /// air, benjamin, fall, fly, flying, franklin, kite, outdoors, seasonal, sky, soar, wind - static const IconData thinKite = IconDataThin(0xf6f4); + static const IconData thinKite = IconData(0xf6f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kiwi Bird icon /// /// https://fontawesome.com/icons/kiwi-bird?style=solid /// bird, fauna, new zealand - static const IconData solidKiwiBird = IconDataSolid(0xf535); + static const IconData solidKiwiBird = IconData(0xf535, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kiwi Bird icon /// /// https://fontawesome.com/icons/kiwi-bird?style=regular /// bird, fauna, new zealand - static const IconData kiwiBird = IconDataRegular(0xf535); + static const IconData kiwiBird = IconData(0xf535, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kiwi Bird icon /// /// https://fontawesome.com/icons/kiwi-bird?style=light /// bird, fauna, new zealand - static const IconData lightKiwiBird = IconDataLight(0xf535); + static const IconData lightKiwiBird = IconData(0xf535, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kiwi Bird icon /// /// https://fontawesome.com/icons/kiwi-bird?style=thin /// bird, fauna, new zealand - static const IconData thinKiwiBird = IconDataThin(0xf535); + static const IconData thinKiwiBird = IconData(0xf535, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Kiwi Fruit icon /// /// https://fontawesome.com/icons/kiwi-fruit?style=solid /// food, fruit, gooseberry, kiwi, kiwi fruit - static const IconData solidKiwiFruit = IconDataSolid(0xe30c); + static const IconData solidKiwiFruit = IconData(0xe30c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Kiwi Fruit icon /// /// https://fontawesome.com/icons/kiwi-fruit?style=regular /// food, fruit, gooseberry, kiwi, kiwi fruit - static const IconData kiwiFruit = IconDataRegular(0xe30c); + static const IconData kiwiFruit = IconData(0xe30c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Kiwi Fruit icon /// /// https://fontawesome.com/icons/kiwi-fruit?style=light /// food, fruit, gooseberry, kiwi, kiwi fruit - static const IconData lightKiwiFruit = IconDataLight(0xe30c); + static const IconData lightKiwiFruit = IconData(0xe30c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Kiwi Fruit icon /// /// https://fontawesome.com/icons/kiwi-fruit?style=thin /// food, fruit, gooseberry, kiwi, kiwi fruit - static const IconData thinKiwiFruit = IconDataThin(0xe30c); + static const IconData thinKiwiFruit = IconData(0xe30c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Knife icon /// /// https://fontawesome.com/icons/knife?style=solid /// cut, cutlery, dining, equipment, silverware, tool - static const IconData solidKnife = IconDataSolid(0xf2e4); + static const IconData solidKnife = IconData(0xf2e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias utensil-knife for icon [solidKnife] @Deprecated('Use "solidKnife" instead.') @@ -52192,7 +52192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/knife?style=regular /// cut, cutlery, dining, equipment, silverware, tool - static const IconData knife = IconDataRegular(0xf2e4); + static const IconData knife = IconData(0xf2e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias utensil-knife for icon [knife] @Deprecated('Use "knife" instead.') @@ -52202,7 +52202,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/knife?style=light /// cut, cutlery, dining, equipment, silverware, tool - static const IconData lightKnife = IconDataLight(0xf2e4); + static const IconData lightKnife = IconData(0xf2e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias utensil-knife for icon [lightKnife] @Deprecated('Use "lightKnife" instead.') @@ -52212,7 +52212,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/knife?style=thin /// cut, cutlery, dining, equipment, silverware, tool - static const IconData thinKnife = IconDataThin(0xf2e4); + static const IconData thinKnife = IconData(0xf2e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias utensil-knife for icon [thinKnife] @Deprecated('Use "thinKnife" instead.') @@ -52222,276 +52222,276 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/knife-kitchen?style=solid /// chef, cooking, cut, equipment, halloween, hocho, kitchen knife, knife, sharp, slice, tool, weapon - static const IconData solidKnifeKitchen = IconDataSolid(0xf6f5); + static const IconData solidKnifeKitchen = IconData(0xf6f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Knife Kitchen icon /// /// https://fontawesome.com/icons/knife-kitchen?style=regular /// chef, cooking, cut, equipment, halloween, hocho, kitchen knife, knife, sharp, slice, tool, weapon - static const IconData knifeKitchen = IconDataRegular(0xf6f5); + static const IconData knifeKitchen = IconData(0xf6f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Knife Kitchen icon /// /// https://fontawesome.com/icons/knife-kitchen?style=light /// chef, cooking, cut, equipment, halloween, hocho, kitchen knife, knife, sharp, slice, tool, weapon - static const IconData lightKnifeKitchen = IconDataLight(0xf6f5); + static const IconData lightKnifeKitchen = IconData(0xf6f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Knife Kitchen icon /// /// https://fontawesome.com/icons/knife-kitchen?style=thin /// chef, cooking, cut, equipment, halloween, hocho, kitchen knife, knife, sharp, slice, tool, weapon - static const IconData thinKnifeKitchen = IconDataThin(0xf6f5); + static const IconData thinKnifeKitchen = IconData(0xf6f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands KORVUE icon /// /// https://fontawesome.com/icons/korvue?style=brands - static const IconData korvue = IconDataBrands(0xf42f); + static const IconData korvue = IconData(0xf42f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid L icon /// /// https://fontawesome.com/icons/l?style=solid /// Latin Capital Letter L, Latin Small Letter L, letter - static const IconData solidL = IconDataSolid(0x4c); + static const IconData solidL = IconData(0x4c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular L icon /// /// https://fontawesome.com/icons/l?style=regular /// Latin Capital Letter L, Latin Small Letter L, letter - static const IconData l = IconDataRegular(0x4c); + static const IconData l = IconData(0x4c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light L icon /// /// https://fontawesome.com/icons/l?style=light /// Latin Capital Letter L, Latin Small Letter L, letter - static const IconData lightL = IconDataLight(0x4c); + static const IconData lightL = IconData(0x4c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin L icon /// /// https://fontawesome.com/icons/l?style=thin /// Latin Capital Letter L, Latin Small Letter L, letter - static const IconData thinL = IconDataThin(0x4c); + static const IconData thinL = IconData(0x4c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lacrosse Stick icon /// /// https://fontawesome.com/icons/lacrosse-stick?style=solid /// lacrosse - static const IconData solidLacrosseStick = IconDataSolid(0xe3b5); + static const IconData solidLacrosseStick = IconData(0xe3b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lacrosse Stick icon /// /// https://fontawesome.com/icons/lacrosse-stick?style=regular /// lacrosse - static const IconData lacrosseStick = IconDataRegular(0xe3b5); + static const IconData lacrosseStick = IconData(0xe3b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lacrosse Stick icon /// /// https://fontawesome.com/icons/lacrosse-stick?style=light /// lacrosse - static const IconData lightLacrosseStick = IconDataLight(0xe3b5); + static const IconData lightLacrosseStick = IconData(0xe3b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lacrosse Stick icon /// /// https://fontawesome.com/icons/lacrosse-stick?style=thin /// lacrosse - static const IconData thinLacrosseStick = IconDataThin(0xe3b5); + static const IconData thinLacrosseStick = IconData(0xe3b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lacrosse Stick Ball icon /// /// https://fontawesome.com/icons/lacrosse-stick-ball?style=solid /// ball, goal, lacrosse, stick - static const IconData solidLacrosseStickBall = IconDataSolid(0xe3b6); + static const IconData solidLacrosseStickBall = IconData(0xe3b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lacrosse Stick Ball icon /// /// https://fontawesome.com/icons/lacrosse-stick-ball?style=regular /// ball, goal, lacrosse, stick - static const IconData lacrosseStickBall = IconDataRegular(0xe3b6); + static const IconData lacrosseStickBall = IconData(0xe3b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lacrosse Stick Ball icon /// /// https://fontawesome.com/icons/lacrosse-stick-ball?style=light /// ball, goal, lacrosse, stick - static const IconData lightLacrosseStickBall = IconDataLight(0xe3b6); + static const IconData lightLacrosseStickBall = IconData(0xe3b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lacrosse Stick Ball icon /// /// https://fontawesome.com/icons/lacrosse-stick-ball?style=thin /// ball, goal, lacrosse, stick - static const IconData thinLacrosseStickBall = IconDataThin(0xe3b6); + static const IconData thinLacrosseStickBall = IconData(0xe3b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lambda icon /// /// https://fontawesome.com/icons/lambda?style=solid /// calculus, equation, function, math - static const IconData solidLambda = IconDataSolid(0xf66e); + static const IconData solidLambda = IconData(0xf66e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lambda icon /// /// https://fontawesome.com/icons/lambda?style=regular /// calculus, equation, function, math - static const IconData lambda = IconDataRegular(0xf66e); + static const IconData lambda = IconData(0xf66e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lambda icon /// /// https://fontawesome.com/icons/lambda?style=light /// calculus, equation, function, math - static const IconData lightLambda = IconDataLight(0xf66e); + static const IconData lightLambda = IconData(0xf66e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lambda icon /// /// https://fontawesome.com/icons/lambda?style=thin /// calculus, equation, function, math - static const IconData thinLambda = IconDataThin(0xf66e); + static const IconData thinLambda = IconData(0xf66e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lamp icon /// /// https://fontawesome.com/icons/lamp?style=solid /// bright, furniture, light - static const IconData solidLamp = IconDataSolid(0xf4ca); + static const IconData solidLamp = IconData(0xf4ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lamp icon /// /// https://fontawesome.com/icons/lamp?style=regular /// bright, furniture, light - static const IconData lamp = IconDataRegular(0xf4ca); + static const IconData lamp = IconData(0xf4ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lamp icon /// /// https://fontawesome.com/icons/lamp?style=light /// bright, furniture, light - static const IconData lightLamp = IconDataLight(0xf4ca); + static const IconData lightLamp = IconData(0xf4ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lamp icon /// /// https://fontawesome.com/icons/lamp?style=thin /// bright, furniture, light - static const IconData thinLamp = IconDataThin(0xf4ca); + static const IconData thinLamp = IconData(0xf4ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lamp Desk icon /// /// https://fontawesome.com/icons/lamp-desk?style=solid /// bright, furniture, light - static const IconData solidLampDesk = IconDataSolid(0xe014); + static const IconData solidLampDesk = IconData(0xe014, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lamp Desk icon /// /// https://fontawesome.com/icons/lamp-desk?style=regular /// bright, furniture, light - static const IconData lampDesk = IconDataRegular(0xe014); + static const IconData lampDesk = IconData(0xe014, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lamp Desk icon /// /// https://fontawesome.com/icons/lamp-desk?style=light /// bright, furniture, light - static const IconData lightLampDesk = IconDataLight(0xe014); + static const IconData lightLampDesk = IconData(0xe014, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lamp Desk icon /// /// https://fontawesome.com/icons/lamp-desk?style=thin /// bright, furniture, light - static const IconData thinLampDesk = IconDataThin(0xe014); + static const IconData thinLampDesk = IconData(0xe014, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lamp Floor icon /// /// https://fontawesome.com/icons/lamp-floor?style=solid /// bright, furniture, light - static const IconData solidLampFloor = IconDataSolid(0xe015); + static const IconData solidLampFloor = IconData(0xe015, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lamp Floor icon /// /// https://fontawesome.com/icons/lamp-floor?style=regular /// bright, furniture, light - static const IconData lampFloor = IconDataRegular(0xe015); + static const IconData lampFloor = IconData(0xe015, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lamp Floor icon /// /// https://fontawesome.com/icons/lamp-floor?style=light /// bright, furniture, light - static const IconData lightLampFloor = IconDataLight(0xe015); + static const IconData lightLampFloor = IconData(0xe015, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lamp Floor icon /// /// https://fontawesome.com/icons/lamp-floor?style=thin /// bright, furniture, light - static const IconData thinLampFloor = IconDataThin(0xe015); + static const IconData thinLampFloor = IconData(0xe015, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lamp Street icon /// /// https://fontawesome.com/icons/lamp-street?style=solid /// light, lighting, utilities - static const IconData solidLampStreet = IconDataSolid(0xe1c5); + static const IconData solidLampStreet = IconData(0xe1c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lamp Street icon /// /// https://fontawesome.com/icons/lamp-street?style=regular /// light, lighting, utilities - static const IconData lampStreet = IconDataRegular(0xe1c5); + static const IconData lampStreet = IconData(0xe1c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lamp Street icon /// /// https://fontawesome.com/icons/lamp-street?style=light /// light, lighting, utilities - static const IconData lightLampStreet = IconDataLight(0xe1c5); + static const IconData lightLampStreet = IconData(0xe1c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lamp Street icon /// /// https://fontawesome.com/icons/lamp-street?style=thin /// light, lighting, utilities - static const IconData thinLampStreet = IconDataThin(0xe1c5); + static const IconData thinLampStreet = IconData(0xe1c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Land Mine On icon /// /// https://fontawesome.com/icons/land-mine-on?style=solid /// bomb, danger, explosion, war - static const IconData solidLandMineOn = IconDataSolid(0xe51b); + static const IconData solidLandMineOn = IconData(0xe51b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Land Mine On icon /// /// https://fontawesome.com/icons/land-mine-on?style=regular /// bomb, danger, explosion, war - static const IconData landMineOn = IconDataRegular(0xe51b); + static const IconData landMineOn = IconData(0xe51b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Land Mine On icon /// /// https://fontawesome.com/icons/land-mine-on?style=light /// bomb, danger, explosion, war - static const IconData lightLandMineOn = IconDataLight(0xe51b); + static const IconData lightLandMineOn = IconData(0xe51b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Land Mine On icon /// /// https://fontawesome.com/icons/land-mine-on?style=thin /// bomb, danger, explosion, war - static const IconData thinLandMineOn = IconDataThin(0xe51b); + static const IconData thinLandMineOn = IconData(0xe51b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Landmark icon /// /// https://fontawesome.com/icons/landmark?style=solid /// building, classical, historic, memorable, monument, museum, politics, society - static const IconData solidLandmark = IconDataSolid(0xf66f); + static const IconData solidLandmark = IconData(0xf66f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Landmark icon /// /// https://fontawesome.com/icons/landmark?style=regular /// building, classical, historic, memorable, monument, museum, politics, society - static const IconData landmark = IconDataRegular(0xf66f); + static const IconData landmark = IconData(0xf66f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Landmark icon /// /// https://fontawesome.com/icons/landmark?style=light /// building, classical, historic, memorable, monument, museum, politics, society - static const IconData lightLandmark = IconDataLight(0xf66f); + static const IconData lightLandmark = IconData(0xf66f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Landmark icon /// /// https://fontawesome.com/icons/landmark?style=thin /// building, classical, historic, memorable, monument, museum, politics, society - static const IconData thinLandmark = IconDataThin(0xf66f); + static const IconData thinLandmark = IconData(0xf66f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Landmark Dome icon /// /// https://fontawesome.com/icons/landmark-dome?style=solid /// building, historic, memorable, monument, politics - static const IconData solidLandmarkDome = IconDataSolid(0xf752); + static const IconData solidLandmarkDome = IconData(0xf752, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias landmark-alt for icon [solidLandmarkDome] @Deprecated('Use "solidLandmarkDome" instead.') @@ -52501,7 +52501,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/landmark-dome?style=regular /// building, historic, memorable, monument, politics - static const IconData landmarkDome = IconDataRegular(0xf752); + static const IconData landmarkDome = IconData(0xf752, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias landmark-alt for icon [landmarkDome] @Deprecated('Use "landmarkDome" instead.') @@ -52511,7 +52511,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/landmark-dome?style=light /// building, historic, memorable, monument, politics - static const IconData lightLandmarkDome = IconDataLight(0xf752); + static const IconData lightLandmarkDome = IconData(0xf752, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias landmark-alt for icon [lightLandmarkDome] @Deprecated('Use "lightLandmarkDome" instead.') @@ -52521,7 +52521,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/landmark-dome?style=thin /// building, historic, memorable, monument, politics - static const IconData thinLandmarkDome = IconDataThin(0xf752); + static const IconData thinLandmarkDome = IconData(0xf752, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias landmark-alt for icon [thinLandmarkDome] @Deprecated('Use "thinLandmarkDome" instead.') @@ -52531,223 +52531,223 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/landmark-flag?style=solid /// capitol, flag, landmark, memorial - static const IconData solidLandmarkFlag = IconDataSolid(0xe51c); + static const IconData solidLandmarkFlag = IconData(0xe51c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Landmark Flag icon /// /// https://fontawesome.com/icons/landmark-flag?style=regular /// capitol, flag, landmark, memorial - static const IconData landmarkFlag = IconDataRegular(0xe51c); + static const IconData landmarkFlag = IconData(0xe51c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Landmark Flag icon /// /// https://fontawesome.com/icons/landmark-flag?style=light /// capitol, flag, landmark, memorial - static const IconData lightLandmarkFlag = IconDataLight(0xe51c); + static const IconData lightLandmarkFlag = IconData(0xe51c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Landmark Flag icon /// /// https://fontawesome.com/icons/landmark-flag?style=thin /// capitol, flag, landmark, memorial - static const IconData thinLandmarkFlag = IconDataThin(0xe51c); + static const IconData thinLandmarkFlag = IconData(0xe51c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Landmark Magnifying Glass icon /// /// https://fontawesome.com/icons/landmark-magnifying-glass?style=solid /// classical, find, historic, memorable, monument, museum, politics, records, building, preservation, preserve, search, society - static const IconData solidLandmarkMagnifyingGlass = IconDataSolid(0xe622); + static const IconData solidLandmarkMagnifyingGlass = IconData(0xe622, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Landmark Magnifying Glass icon /// /// https://fontawesome.com/icons/landmark-magnifying-glass?style=regular /// classical, find, historic, memorable, monument, museum, politics, records, building, preservation, preserve, search, society - static const IconData landmarkMagnifyingGlass = IconDataRegular(0xe622); + static const IconData landmarkMagnifyingGlass = IconData(0xe622, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Landmark Magnifying Glass icon /// /// https://fontawesome.com/icons/landmark-magnifying-glass?style=light /// classical, find, historic, memorable, monument, museum, politics, records, building, preservation, preserve, search, society - static const IconData lightLandmarkMagnifyingGlass = IconDataLight(0xe622); + static const IconData lightLandmarkMagnifyingGlass = IconData(0xe622, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Landmark Magnifying Glass icon /// /// https://fontawesome.com/icons/landmark-magnifying-glass?style=thin /// classical, find, historic, memorable, monument, museum, politics, records, building, preservation, preserve, search, society - static const IconData thinLandmarkMagnifyingGlass = IconDataThin(0xe622); + static const IconData thinLandmarkMagnifyingGlass = IconData(0xe622, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Language icon /// /// https://fontawesome.com/icons/language?style=solid /// dialect, idiom, localize, speech, translate, vernacular - static const IconData solidLanguage = IconDataSolid(0xf1ab); + static const IconData solidLanguage = IconData(0xf1ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Language icon /// /// https://fontawesome.com/icons/language?style=regular /// dialect, idiom, localize, speech, translate, vernacular - static const IconData language = IconDataRegular(0xf1ab); + static const IconData language = IconData(0xf1ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Language icon /// /// https://fontawesome.com/icons/language?style=light /// dialect, idiom, localize, speech, translate, vernacular - static const IconData lightLanguage = IconDataLight(0xf1ab); + static const IconData lightLanguage = IconData(0xf1ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Language icon /// /// https://fontawesome.com/icons/language?style=thin /// dialect, idiom, localize, speech, translate, vernacular - static const IconData thinLanguage = IconDataThin(0xf1ab); + static const IconData thinLanguage = IconData(0xf1ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop icon /// /// https://fontawesome.com/icons/laptop?style=solid /// computer, cpu, dell, demo, device, fabook, fb, laptop, mac, macbook, machine, pc, personal - static const IconData solidLaptop = IconDataSolid(0xf109); + static const IconData solidLaptop = IconData(0xf109, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop icon /// /// https://fontawesome.com/icons/laptop?style=regular /// computer, cpu, dell, demo, device, fabook, fb, laptop, mac, macbook, machine, pc, personal - static const IconData laptop = IconDataRegular(0xf109); + static const IconData laptop = IconData(0xf109, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop icon /// /// https://fontawesome.com/icons/laptop?style=light /// computer, cpu, dell, demo, device, fabook, fb, laptop, mac, macbook, machine, pc, personal - static const IconData lightLaptop = IconDataLight(0xf109); + static const IconData lightLaptop = IconData(0xf109, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop icon /// /// https://fontawesome.com/icons/laptop?style=thin /// computer, cpu, dell, demo, device, fabook, fb, laptop, mac, macbook, machine, pc, personal - static const IconData thinLaptop = IconDataThin(0xf109); + static const IconData thinLaptop = IconData(0xf109, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop Arrow Down icon /// /// https://fontawesome.com/icons/laptop-arrow-down?style=solid /// computer, download, insert, laptop, mobile, remote - static const IconData solidLaptopArrowDown = IconDataSolid(0xe1c6); + static const IconData solidLaptopArrowDown = IconData(0xe1c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop Arrow Down icon /// /// https://fontawesome.com/icons/laptop-arrow-down?style=regular /// computer, download, insert, laptop, mobile, remote - static const IconData laptopArrowDown = IconDataRegular(0xe1c6); + static const IconData laptopArrowDown = IconData(0xe1c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop Arrow Down icon /// /// https://fontawesome.com/icons/laptop-arrow-down?style=light /// computer, download, insert, laptop, mobile, remote - static const IconData lightLaptopArrowDown = IconDataLight(0xe1c6); + static const IconData lightLaptopArrowDown = IconData(0xe1c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop Arrow Down icon /// /// https://fontawesome.com/icons/laptop-arrow-down?style=thin /// computer, download, insert, laptop, mobile, remote - static const IconData thinLaptopArrowDown = IconDataThin(0xe1c6); + static const IconData thinLaptopArrowDown = IconData(0xe1c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop Binary icon /// /// https://fontawesome.com/icons/laptop-binary?style=solid /// binary, code, cpu, dell, demo, develop, device, information, mac, macbook, machine, pc, computer - static const IconData solidLaptopBinary = IconDataSolid(0xe5e7); + static const IconData solidLaptopBinary = IconData(0xe5e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop Binary icon /// /// https://fontawesome.com/icons/laptop-binary?style=regular /// binary, code, cpu, dell, demo, develop, device, information, mac, macbook, machine, pc, computer - static const IconData laptopBinary = IconDataRegular(0xe5e7); + static const IconData laptopBinary = IconData(0xe5e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop Binary icon /// /// https://fontawesome.com/icons/laptop-binary?style=light /// binary, code, cpu, dell, demo, develop, device, information, mac, macbook, machine, pc, computer - static const IconData lightLaptopBinary = IconDataLight(0xe5e7); + static const IconData lightLaptopBinary = IconData(0xe5e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop Binary icon /// /// https://fontawesome.com/icons/laptop-binary?style=thin /// binary, code, cpu, dell, demo, develop, device, information, mac, macbook, machine, pc, computer - static const IconData thinLaptopBinary = IconDataThin(0xe5e7); + static const IconData thinLaptopBinary = IconData(0xe5e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop Code icon /// /// https://fontawesome.com/icons/laptop-code?style=solid /// computer, cpu, dell, demo, develop, device, fabook, fb, mac, macbook, machine, mysql, pc, sql - static const IconData solidLaptopCode = IconDataSolid(0xf5fc); + static const IconData solidLaptopCode = IconData(0xf5fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop Code icon /// /// https://fontawesome.com/icons/laptop-code?style=regular /// computer, cpu, dell, demo, develop, device, fabook, fb, mac, macbook, machine, mysql, pc, sql - static const IconData laptopCode = IconDataRegular(0xf5fc); + static const IconData laptopCode = IconData(0xf5fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop Code icon /// /// https://fontawesome.com/icons/laptop-code?style=light /// computer, cpu, dell, demo, develop, device, fabook, fb, mac, macbook, machine, mysql, pc, sql - static const IconData lightLaptopCode = IconDataLight(0xf5fc); + static const IconData lightLaptopCode = IconData(0xf5fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop Code icon /// /// https://fontawesome.com/icons/laptop-code?style=thin /// computer, cpu, dell, demo, develop, device, fabook, fb, mac, macbook, machine, mysql, pc, sql - static const IconData thinLaptopCode = IconDataThin(0xf5fc); + static const IconData thinLaptopCode = IconData(0xf5fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop File icon /// /// https://fontawesome.com/icons/laptop-file?style=solid /// computer, education, laptop, learning, remote work - static const IconData solidLaptopFile = IconDataSolid(0xe51d); + static const IconData solidLaptopFile = IconData(0xe51d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop File icon /// /// https://fontawesome.com/icons/laptop-file?style=regular /// computer, education, laptop, learning, remote work - static const IconData laptopFile = IconDataRegular(0xe51d); + static const IconData laptopFile = IconData(0xe51d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop File icon /// /// https://fontawesome.com/icons/laptop-file?style=light /// computer, education, laptop, learning, remote work - static const IconData lightLaptopFile = IconDataLight(0xe51d); + static const IconData lightLaptopFile = IconData(0xe51d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop File icon /// /// https://fontawesome.com/icons/laptop-file?style=thin /// computer, education, laptop, learning, remote work - static const IconData thinLaptopFile = IconDataThin(0xe51d); + static const IconData thinLaptopFile = IconData(0xe51d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop Medical icon /// /// https://fontawesome.com/icons/laptop-medical?style=solid /// computer, device, ehr, electronic health records, history - static const IconData solidLaptopMedical = IconDataSolid(0xf812); + static const IconData solidLaptopMedical = IconData(0xf812, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop Medical icon /// /// https://fontawesome.com/icons/laptop-medical?style=regular /// computer, device, ehr, electronic health records, history - static const IconData laptopMedical = IconDataRegular(0xf812); + static const IconData laptopMedical = IconData(0xf812, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop Medical icon /// /// https://fontawesome.com/icons/laptop-medical?style=light /// computer, device, ehr, electronic health records, history - static const IconData lightLaptopMedical = IconDataLight(0xf812); + static const IconData lightLaptopMedical = IconData(0xf812, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop Medical icon /// /// https://fontawesome.com/icons/laptop-medical?style=thin /// computer, device, ehr, electronic health records, history - static const IconData thinLaptopMedical = IconDataThin(0xf812); + static const IconData thinLaptopMedical = IconData(0xf812, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Laptop Mobile icon /// /// https://fontawesome.com/icons/laptop-mobile?style=solid /// computer, device, mobile, platform, technology - static const IconData solidLaptopMobile = IconDataSolid(0xf87a); + static const IconData solidLaptopMobile = IconData(0xf87a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-laptop for icon [solidLaptopMobile] @Deprecated('Use "solidLaptopMobile" instead.') @@ -52757,7 +52757,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/laptop-mobile?style=regular /// computer, device, mobile, platform, technology - static const IconData laptopMobile = IconDataRegular(0xf87a); + static const IconData laptopMobile = IconData(0xf87a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-laptop for icon [laptopMobile] @Deprecated('Use "laptopMobile" instead.') @@ -52767,7 +52767,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/laptop-mobile?style=light /// computer, device, mobile, platform, technology - static const IconData lightLaptopMobile = IconDataLight(0xf87a); + static const IconData lightLaptopMobile = IconData(0xf87a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-laptop for icon [lightLaptopMobile] @Deprecated('Use "lightLaptopMobile" instead.') @@ -52777,7 +52777,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/laptop-mobile?style=thin /// computer, device, mobile, platform, technology - static const IconData thinLaptopMobile = IconDataThin(0xf87a); + static const IconData thinLaptopMobile = IconData(0xf87a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-laptop for icon [thinLaptopMobile] @Deprecated('Use "thinLaptopMobile" instead.') @@ -52787,137 +52787,137 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/laptop-slash?style=solid /// computer, disabled, disconnect - static const IconData solidLaptopSlash = IconDataSolid(0xe1c7); + static const IconData solidLaptopSlash = IconData(0xe1c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Laptop Slash icon /// /// https://fontawesome.com/icons/laptop-slash?style=regular /// computer, disabled, disconnect - static const IconData laptopSlash = IconDataRegular(0xe1c7); + static const IconData laptopSlash = IconData(0xe1c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Laptop Slash icon /// /// https://fontawesome.com/icons/laptop-slash?style=light /// computer, disabled, disconnect - static const IconData lightLaptopSlash = IconDataLight(0xe1c7); + static const IconData lightLaptopSlash = IconData(0xe1c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Laptop Slash icon /// /// https://fontawesome.com/icons/laptop-slash?style=thin /// computer, disabled, disconnect - static const IconData thinLaptopSlash = IconDataThin(0xe1c7); + static const IconData thinLaptopSlash = IconData(0xe1c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Laravel icon /// /// https://fontawesome.com/icons/laravel?style=brands - static const IconData laravel = IconDataBrands(0xf3bd); + static const IconData laravel = IconData(0xf3bd, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Lari Sign icon /// /// https://fontawesome.com/icons/lari-sign?style=solid /// Lari Sign, currency - static const IconData solidLariSign = IconDataSolid(0xe1c8); + static const IconData solidLariSign = IconData(0xe1c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lari Sign icon /// /// https://fontawesome.com/icons/lari-sign?style=regular /// Lari Sign, currency - static const IconData lariSign = IconDataRegular(0xe1c8); + static const IconData lariSign = IconData(0xe1c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lari Sign icon /// /// https://fontawesome.com/icons/lari-sign?style=light /// Lari Sign, currency - static const IconData lightLariSign = IconDataLight(0xe1c8); + static const IconData lightLariSign = IconData(0xe1c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lari Sign icon /// /// https://fontawesome.com/icons/lari-sign?style=thin /// Lari Sign, currency - static const IconData thinLariSign = IconDataThin(0xe1c8); + static const IconData thinLariSign = IconData(0xe1c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lasso icon /// /// https://fontawesome.com/icons/lasso?style=solid /// cowboy, rodeo, rope, select, selection, western - static const IconData solidLasso = IconDataSolid(0xf8c8); + static const IconData solidLasso = IconData(0xf8c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lasso icon /// /// https://fontawesome.com/icons/lasso?style=regular /// cowboy, rodeo, rope, select, selection, western - static const IconData lasso = IconDataRegular(0xf8c8); + static const IconData lasso = IconData(0xf8c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lasso icon /// /// https://fontawesome.com/icons/lasso?style=light /// cowboy, rodeo, rope, select, selection, western - static const IconData lightLasso = IconDataLight(0xf8c8); + static const IconData lightLasso = IconData(0xf8c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lasso icon /// /// https://fontawesome.com/icons/lasso?style=thin /// cowboy, rodeo, rope, select, selection, western - static const IconData thinLasso = IconDataThin(0xf8c8); + static const IconData thinLasso = IconData(0xf8c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lasso Sparkles icon /// /// https://fontawesome.com/icons/lasso-sparkles?style=solid /// automatic, cowboy, magic, select - static const IconData solidLassoSparkles = IconDataSolid(0xe1c9); + static const IconData solidLassoSparkles = IconData(0xe1c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lasso Sparkles icon /// /// https://fontawesome.com/icons/lasso-sparkles?style=regular /// automatic, cowboy, magic, select - static const IconData lassoSparkles = IconDataRegular(0xe1c9); + static const IconData lassoSparkles = IconData(0xe1c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lasso Sparkles icon /// /// https://fontawesome.com/icons/lasso-sparkles?style=light /// automatic, cowboy, magic, select - static const IconData lightLassoSparkles = IconDataLight(0xe1c9); + static const IconData lightLassoSparkles = IconData(0xe1c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lasso Sparkles icon /// /// https://fontawesome.com/icons/lasso-sparkles?style=thin /// automatic, cowboy, magic, select - static const IconData thinLassoSparkles = IconDataThin(0xe1c9); + static const IconData thinLassoSparkles = IconData(0xe1c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands last.fm icon /// /// https://fontawesome.com/icons/lastfm?style=brands - static const IconData lastfm = IconDataBrands(0xf202); + static const IconData lastfm = IconData(0xf202, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Layer Group icon /// /// https://fontawesome.com/icons/layer-group?style=solid /// arrange, category, develop, layers, map, platform, stack - static const IconData solidLayerGroup = IconDataSolid(0xf5fd); + static const IconData solidLayerGroup = IconData(0xf5fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Layer Group icon /// /// https://fontawesome.com/icons/layer-group?style=regular /// arrange, category, develop, layers, map, platform, stack - static const IconData layerGroup = IconDataRegular(0xf5fd); + static const IconData layerGroup = IconData(0xf5fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Layer Group icon /// /// https://fontawesome.com/icons/layer-group?style=light /// arrange, category, develop, layers, map, platform, stack - static const IconData lightLayerGroup = IconDataLight(0xf5fd); + static const IconData lightLayerGroup = IconData(0xf5fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Layer Group icon /// /// https://fontawesome.com/icons/layer-group?style=thin /// arrange, category, develop, layers, map, platform, stack - static const IconData thinLayerGroup = IconDataThin(0xf5fd); + static const IconData thinLayerGroup = IconData(0xf5fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Layer Minus icon /// /// https://fontawesome.com/icons/layer-minus?style=solid /// arrange, delete, layers, negative, platform, remove, stack - static const IconData solidLayerMinus = IconDataSolid(0xf5fe); + static const IconData solidLayerMinus = IconData(0xf5fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-minus for icon [solidLayerMinus] @Deprecated('Use "solidLayerMinus" instead.') @@ -52927,7 +52927,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-minus?style=regular /// arrange, delete, layers, negative, platform, remove, stack - static const IconData layerMinus = IconDataRegular(0xf5fe); + static const IconData layerMinus = IconData(0xf5fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-minus for icon [layerMinus] @Deprecated('Use "layerMinus" instead.') @@ -52937,7 +52937,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-minus?style=light /// arrange, delete, layers, negative, platform, remove, stack - static const IconData lightLayerMinus = IconDataLight(0xf5fe); + static const IconData lightLayerMinus = IconData(0xf5fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-minus for icon [lightLayerMinus] @Deprecated('Use "lightLayerMinus" instead.') @@ -52947,7 +52947,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-minus?style=thin /// arrange, delete, layers, negative, platform, remove, stack - static const IconData thinLayerMinus = IconDataThin(0xf5fe); + static const IconData thinLayerMinus = IconData(0xf5fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-minus for icon [thinLayerMinus] @Deprecated('Use "thinLayerMinus" instead.') @@ -52957,7 +52957,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-plus?style=solid /// add, arrange, create, layers, new, platform, positive, stack - static const IconData solidLayerPlus = IconDataSolid(0xf5ff); + static const IconData solidLayerPlus = IconData(0xf5ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-plus for icon [solidLayerPlus] @Deprecated('Use "solidLayerPlus" instead.') @@ -52967,7 +52967,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-plus?style=regular /// add, arrange, create, layers, new, platform, positive, stack - static const IconData layerPlus = IconDataRegular(0xf5ff); + static const IconData layerPlus = IconData(0xf5ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-plus for icon [layerPlus] @Deprecated('Use "layerPlus" instead.') @@ -52977,7 +52977,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-plus?style=light /// add, arrange, create, layers, new, platform, positive, stack - static const IconData lightLayerPlus = IconDataLight(0xf5ff); + static const IconData lightLayerPlus = IconData(0xf5ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-plus for icon [lightLayerPlus] @Deprecated('Use "lightLayerPlus" instead.') @@ -52987,7 +52987,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/layer-plus?style=thin /// add, arrange, create, layers, new, platform, positive, stack - static const IconData thinLayerPlus = IconDataThin(0xf5ff); + static const IconData thinLayerPlus = IconData(0xf5ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias layer-group-plus for icon [thinLayerPlus] @Deprecated('Use "thinLayerPlus" instead.') @@ -52997,132 +52997,132 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/leaf?style=solid /// eco, flora, nature, plant, vegan - static const IconData solidLeaf = IconDataSolid(0xf06c); + static const IconData solidLeaf = IconData(0xf06c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Leaf icon /// /// https://fontawesome.com/icons/leaf?style=regular /// eco, flora, nature, plant, vegan - static const IconData leaf = IconDataRegular(0xf06c); + static const IconData leaf = IconData(0xf06c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Leaf icon /// /// https://fontawesome.com/icons/leaf?style=light /// eco, flora, nature, plant, vegan - static const IconData lightLeaf = IconDataLight(0xf06c); + static const IconData lightLeaf = IconData(0xf06c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Leaf icon /// /// https://fontawesome.com/icons/leaf?style=thin /// eco, flora, nature, plant, vegan - static const IconData thinLeaf = IconDataThin(0xf06c); + static const IconData thinLeaf = IconData(0xf06c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Leaf Heart icon /// /// https://fontawesome.com/icons/leaf-heart?style=solid /// eco, flora, nature, plant, vegan, wishlist - static const IconData solidLeafHeart = IconDataSolid(0xf4cb); + static const IconData solidLeafHeart = IconData(0xf4cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Leaf Heart icon /// /// https://fontawesome.com/icons/leaf-heart?style=regular /// eco, flora, nature, plant, vegan, wishlist - static const IconData leafHeart = IconDataRegular(0xf4cb); + static const IconData leafHeart = IconData(0xf4cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Leaf Heart icon /// /// https://fontawesome.com/icons/leaf-heart?style=light /// eco, flora, nature, plant, vegan, wishlist - static const IconData lightLeafHeart = IconDataLight(0xf4cb); + static const IconData lightLeafHeart = IconData(0xf4cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Leaf Heart icon /// /// https://fontawesome.com/icons/leaf-heart?style=thin /// eco, flora, nature, plant, vegan, wishlist - static const IconData thinLeafHeart = IconDataThin(0xf4cb); + static const IconData thinLeafHeart = IconData(0xf4cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Leaf Maple icon /// /// https://fontawesome.com/icons/leaf-maple?style=solid /// eco, fall, falling, flora, leaf, maple, maple leaf, nature, plant, seasonal - static const IconData solidLeafMaple = IconDataSolid(0xf6f6); + static const IconData solidLeafMaple = IconData(0xf6f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Leaf Maple icon /// /// https://fontawesome.com/icons/leaf-maple?style=regular /// eco, fall, falling, flora, leaf, maple, maple leaf, nature, plant, seasonal - static const IconData leafMaple = IconDataRegular(0xf6f6); + static const IconData leafMaple = IconData(0xf6f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Leaf Maple icon /// /// https://fontawesome.com/icons/leaf-maple?style=light /// eco, fall, falling, flora, leaf, maple, maple leaf, nature, plant, seasonal - static const IconData lightLeafMaple = IconDataLight(0xf6f6); + static const IconData lightLeafMaple = IconData(0xf6f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Leaf Maple icon /// /// https://fontawesome.com/icons/leaf-maple?style=thin /// eco, fall, falling, flora, leaf, maple, maple leaf, nature, plant, seasonal - static const IconData thinLeafMaple = IconDataThin(0xf6f6); + static const IconData thinLeafMaple = IconData(0xf6f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Leaf Oak icon /// /// https://fontawesome.com/icons/leaf-oak?style=solid /// eco, fall, flora, nature, plant, seasonal - static const IconData solidLeafOak = IconDataSolid(0xf6f7); + static const IconData solidLeafOak = IconData(0xf6f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Leaf Oak icon /// /// https://fontawesome.com/icons/leaf-oak?style=regular /// eco, fall, flora, nature, plant, seasonal - static const IconData leafOak = IconDataRegular(0xf6f7); + static const IconData leafOak = IconData(0xf6f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Leaf Oak icon /// /// https://fontawesome.com/icons/leaf-oak?style=light /// eco, fall, flora, nature, plant, seasonal - static const IconData lightLeafOak = IconDataLight(0xf6f7); + static const IconData lightLeafOak = IconData(0xf6f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Leaf Oak icon /// /// https://fontawesome.com/icons/leaf-oak?style=thin /// eco, fall, flora, nature, plant, seasonal - static const IconData thinLeafOak = IconDataThin(0xf6f7); + static const IconData thinLeafOak = IconData(0xf6f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Leafy Green icon /// /// https://fontawesome.com/icons/leafy-green?style=solid /// bok choy, cabbage, kale, leafy green, lettuce - static const IconData solidLeafyGreen = IconDataSolid(0xe41d); + static const IconData solidLeafyGreen = IconData(0xe41d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Leafy Green icon /// /// https://fontawesome.com/icons/leafy-green?style=regular /// bok choy, cabbage, kale, leafy green, lettuce - static const IconData leafyGreen = IconDataRegular(0xe41d); + static const IconData leafyGreen = IconData(0xe41d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Leafy Green icon /// /// https://fontawesome.com/icons/leafy-green?style=light /// bok choy, cabbage, kale, leafy green, lettuce - static const IconData lightLeafyGreen = IconDataLight(0xe41d); + static const IconData lightLeafyGreen = IconData(0xe41d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Leafy Green icon /// /// https://fontawesome.com/icons/leafy-green?style=thin /// bok choy, cabbage, kale, leafy green, lettuce - static const IconData thinLeafyGreen = IconDataThin(0xe41d); + static const IconData thinLeafyGreen = IconData(0xe41d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Leanpub icon /// /// https://fontawesome.com/icons/leanpub?style=brands - static const IconData leanpub = IconDataBrands(0xf212); + static const IconData leanpub = IconData(0xf212, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Left icon /// /// https://fontawesome.com/icons/left?style=solid /// back, previous - static const IconData solidLeft = IconDataSolid(0xf355); + static const IconData solidLeft = IconData(0xf355, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-left for icon [solidLeft] @Deprecated('Use "solidLeft" instead.') @@ -53132,7 +53132,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left?style=regular /// back, previous - static const IconData left = IconDataRegular(0xf355); + static const IconData left = IconData(0xf355, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-left for icon [left] @Deprecated('Use "left" instead.') @@ -53142,7 +53142,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left?style=light /// back, previous - static const IconData lightLeft = IconDataLight(0xf355); + static const IconData lightLeft = IconData(0xf355, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-left for icon [lightLeft] @Deprecated('Use "lightLeft" instead.') @@ -53152,7 +53152,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left?style=thin /// back, previous - static const IconData thinLeft = IconDataThin(0xf355); + static const IconData thinLeft = IconData(0xf355, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-left for icon [thinLeft] @Deprecated('Use "thinLeft" instead.') @@ -53162,7 +53162,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-from-line?style=solid /// forward, next - static const IconData solidLeftFromLine = IconDataSolid(0xf348); + static const IconData solidLeftFromLine = IconData(0xf348, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-right for icon [solidLeftFromLine] @Deprecated('Use "solidLeftFromLine" instead.') @@ -53172,7 +53172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-from-line?style=regular /// forward, next - static const IconData leftFromLine = IconDataRegular(0xf348); + static const IconData leftFromLine = IconData(0xf348, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-right for icon [leftFromLine] @Deprecated('Use "leftFromLine" instead.') @@ -53182,7 +53182,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-from-line?style=light /// forward, next - static const IconData lightLeftFromLine = IconDataLight(0xf348); + static const IconData lightLeftFromLine = IconData(0xf348, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-right for icon [lightLeftFromLine] @Deprecated('Use "lightLeftFromLine" instead.') @@ -53192,7 +53192,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-from-line?style=thin /// forward, next - static const IconData thinLeftFromLine = IconDataThin(0xf348); + static const IconData thinLeftFromLine = IconData(0xf348, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-right for icon [thinLeftFromLine] @Deprecated('Use "thinLeftFromLine" instead.') @@ -53202,7 +53202,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-long?style=solid /// back, long-arrow-left, previous - static const IconData solidLeftLong = IconDataSolid(0xf30a); + static const IconData solidLeftLong = IconData(0xf30a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-left for icon [solidLeftLong] @Deprecated('Use "solidLeftLong" instead.') @@ -53212,7 +53212,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-long?style=regular /// back, long-arrow-left, previous - static const IconData leftLong = IconDataRegular(0xf30a); + static const IconData leftLong = IconData(0xf30a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-left for icon [leftLong] @Deprecated('Use "leftLong" instead.') @@ -53222,7 +53222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-long?style=light /// back, long-arrow-left, previous - static const IconData lightLeftLong = IconDataLight(0xf30a); + static const IconData lightLeftLong = IconData(0xf30a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-left for icon [lightLeftLong] @Deprecated('Use "lightLeftLong" instead.') @@ -53232,7 +53232,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-long?style=thin /// back, long-arrow-left, previous - static const IconData thinLeftLong = IconDataThin(0xf30a); + static const IconData thinLeftLong = IconData(0xf30a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-left for icon [thinLeftLong] @Deprecated('Use "thinLeftLong" instead.') @@ -53242,31 +53242,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-long-to-line?style=solid /// back, delete, left - static const IconData solidLeftLongToLine = IconDataSolid(0xe41e); + static const IconData solidLeftLongToLine = IconData(0xe41e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Left Long To Line icon /// /// https://fontawesome.com/icons/left-long-to-line?style=regular /// back, delete, left - static const IconData leftLongToLine = IconDataRegular(0xe41e); + static const IconData leftLongToLine = IconData(0xe41e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Left Long To Line icon /// /// https://fontawesome.com/icons/left-long-to-line?style=light /// back, delete, left - static const IconData lightLeftLongToLine = IconDataLight(0xe41e); + static const IconData lightLeftLongToLine = IconData(0xe41e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Left Long To Line icon /// /// https://fontawesome.com/icons/left-long-to-line?style=thin /// back, delete, left - static const IconData thinLeftLongToLine = IconDataThin(0xe41e); + static const IconData thinLeftLongToLine = IconData(0xe41e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Left Right icon /// /// https://fontawesome.com/icons/left-right?style=solid /// arrow, arrows-h, expand, horizontal, landscape, left-right arrow, resize, wide - static const IconData solidLeftRight = IconDataSolid(0xf337); + static const IconData solidLeftRight = IconData(0xf337, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-h for icon [solidLeftRight] @Deprecated('Use "solidLeftRight" instead.') @@ -53276,7 +53276,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-right?style=regular /// arrow, arrows-h, expand, horizontal, landscape, left-right arrow, resize, wide - static const IconData leftRight = IconDataRegular(0xf337); + static const IconData leftRight = IconData(0xf337, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-h for icon [leftRight] @Deprecated('Use "leftRight" instead.') @@ -53286,7 +53286,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-right?style=light /// arrow, arrows-h, expand, horizontal, landscape, left-right arrow, resize, wide - static const IconData lightLeftRight = IconDataLight(0xf337); + static const IconData lightLeftRight = IconData(0xf337, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-h for icon [lightLeftRight] @Deprecated('Use "lightLeftRight" instead.') @@ -53296,7 +53296,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-right?style=thin /// arrow, arrows-h, expand, horizontal, landscape, left-right arrow, resize, wide - static const IconData thinLeftRight = IconDataThin(0xf337); + static const IconData thinLeftRight = IconData(0xf337, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-h for icon [thinLeftRight] @Deprecated('Use "thinLeftRight" instead.') @@ -53306,7 +53306,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-to-line?style=solid /// back, previous - static const IconData solidLeftToLine = IconDataSolid(0xf34b); + static const IconData solidLeftToLine = IconData(0xf34b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-left for icon [solidLeftToLine] @Deprecated('Use "solidLeftToLine" instead.') @@ -53316,7 +53316,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-to-line?style=regular /// back, previous - static const IconData leftToLine = IconDataRegular(0xf34b); + static const IconData leftToLine = IconData(0xf34b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-left for icon [leftToLine] @Deprecated('Use "leftToLine" instead.') @@ -53326,7 +53326,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-to-line?style=light /// back, previous - static const IconData lightLeftToLine = IconDataLight(0xf34b); + static const IconData lightLeftToLine = IconData(0xf34b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-left for icon [lightLeftToLine] @Deprecated('Use "lightLeftToLine" instead.') @@ -53336,7 +53336,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/left-to-line?style=thin /// back, previous - static const IconData thinLeftToLine = IconDataThin(0xf34b); + static const IconData thinLeftToLine = IconData(0xf34b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-left for icon [thinLeftToLine] @Deprecated('Use "thinLeftToLine" instead.') @@ -53346,598 +53346,598 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lemon?style=solid /// citrus, fruit, lemon, lemonade, lime, tart - static const IconData solidLemon = IconDataSolid(0xf094); + static const IconData solidLemon = IconData(0xf094, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lemon icon /// /// https://fontawesome.com/icons/lemon?style=regular /// citrus, fruit, lemon, lemonade, lime, tart - static const IconData lemon = IconDataRegular(0xf094); + static const IconData lemon = IconData(0xf094, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lemon icon /// /// https://fontawesome.com/icons/lemon?style=light /// citrus, fruit, lemon, lemonade, lime, tart - static const IconData lightLemon = IconDataLight(0xf094); + static const IconData lightLemon = IconData(0xf094, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lemon icon /// /// https://fontawesome.com/icons/lemon?style=thin /// citrus, fruit, lemon, lemonade, lime, tart - static const IconData thinLemon = IconDataThin(0xf094); + static const IconData thinLemon = IconData(0xf094, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Less icon /// /// https://fontawesome.com/icons/less?style=brands - static const IconData less = IconDataBrands(0xf41d); + static const IconData less = IconData(0xf41d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Less Than icon /// /// https://fontawesome.com/icons/less-than?style=solid /// Less-Than Sign, arithmetic, compare, math - static const IconData solidLessThan = IconDataSolid(0x3c); + static const IconData solidLessThan = IconData(0x3c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Less Than icon /// /// https://fontawesome.com/icons/less-than?style=regular /// Less-Than Sign, arithmetic, compare, math - static const IconData lessThan = IconDataRegular(0x3c); + static const IconData lessThan = IconData(0x3c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Less Than icon /// /// https://fontawesome.com/icons/less-than?style=light /// Less-Than Sign, arithmetic, compare, math - static const IconData lightLessThan = IconDataLight(0x3c); + static const IconData lightLessThan = IconData(0x3c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Less Than icon /// /// https://fontawesome.com/icons/less-than?style=thin /// Less-Than Sign, arithmetic, compare, math - static const IconData thinLessThan = IconDataThin(0x3c); + static const IconData thinLessThan = IconData(0x3c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Less Than Equal icon /// /// https://fontawesome.com/icons/less-than-equal?style=solid /// arithmetic, compare, math - static const IconData solidLessThanEqual = IconDataSolid(0xf537); + static const IconData solidLessThanEqual = IconData(0xf537, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Less Than Equal icon /// /// https://fontawesome.com/icons/less-than-equal?style=regular /// arithmetic, compare, math - static const IconData lessThanEqual = IconDataRegular(0xf537); + static const IconData lessThanEqual = IconData(0xf537, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Less Than Equal icon /// /// https://fontawesome.com/icons/less-than-equal?style=light /// arithmetic, compare, math - static const IconData lightLessThanEqual = IconDataLight(0xf537); + static const IconData lightLessThanEqual = IconData(0xf537, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Less Than Equal icon /// /// https://fontawesome.com/icons/less-than-equal?style=thin /// arithmetic, compare, math - static const IconData thinLessThanEqual = IconDataThin(0xf537); + static const IconData thinLessThanEqual = IconData(0xf537, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Letterboxd icon /// /// https://fontawesome.com/icons/letterboxd?style=brands - static const IconData letterboxd = IconDataBrands(0xe62d); + static const IconData letterboxd = IconData(0xe62d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Life Ring icon /// /// https://fontawesome.com/icons/life-ring?style=solid /// coast guard, help, overboard, save, support - static const IconData solidLifeRing = IconDataSolid(0xf1cd); + static const IconData solidLifeRing = IconData(0xf1cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Life Ring icon /// /// https://fontawesome.com/icons/life-ring?style=regular /// coast guard, help, overboard, save, support - static const IconData lifeRing = IconDataRegular(0xf1cd); + static const IconData lifeRing = IconData(0xf1cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Life Ring icon /// /// https://fontawesome.com/icons/life-ring?style=light /// coast guard, help, overboard, save, support - static const IconData lightLifeRing = IconDataLight(0xf1cd); + static const IconData lightLifeRing = IconData(0xf1cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Life Ring icon /// /// https://fontawesome.com/icons/life-ring?style=thin /// coast guard, help, overboard, save, support - static const IconData thinLifeRing = IconDataThin(0xf1cd); + static const IconData thinLifeRing = IconData(0xf1cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Ceiling icon /// /// https://fontawesome.com/icons/light-ceiling?style=solid /// bright, furniture, light, overhead - static const IconData solidLightCeiling = IconDataSolid(0xe016); + static const IconData solidLightCeiling = IconData(0xe016, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Ceiling icon /// /// https://fontawesome.com/icons/light-ceiling?style=regular /// bright, furniture, light, overhead - static const IconData lightCeiling = IconDataRegular(0xe016); + static const IconData lightCeiling = IconData(0xe016, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Ceiling icon /// /// https://fontawesome.com/icons/light-ceiling?style=light /// bright, furniture, light, overhead - static const IconData lightLightCeiling = IconDataLight(0xe016); + static const IconData lightLightCeiling = IconData(0xe016, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Ceiling icon /// /// https://fontawesome.com/icons/light-ceiling?style=thin /// bright, furniture, light, overhead - static const IconData thinLightCeiling = IconDataThin(0xe016); + static const IconData thinLightCeiling = IconData(0xe016, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Emergency icon /// /// https://fontawesome.com/icons/light-emergency?style=solid /// alarm, ambulance, light, siren, warning - static const IconData solidLightEmergency = IconDataSolid(0xe41f); + static const IconData solidLightEmergency = IconData(0xe41f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Emergency icon /// /// https://fontawesome.com/icons/light-emergency?style=regular /// alarm, ambulance, light, siren, warning - static const IconData lightEmergency = IconDataRegular(0xe41f); + static const IconData lightEmergency = IconData(0xe41f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Emergency icon /// /// https://fontawesome.com/icons/light-emergency?style=light /// alarm, ambulance, light, siren, warning - static const IconData lightLightEmergency = IconDataLight(0xe41f); + static const IconData lightLightEmergency = IconData(0xe41f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Emergency icon /// /// https://fontawesome.com/icons/light-emergency?style=thin /// alarm, ambulance, light, siren, warning - static const IconData thinLightEmergency = IconDataThin(0xe41f); + static const IconData thinLightEmergency = IconData(0xe41f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Emergency On icon /// /// https://fontawesome.com/icons/light-emergency-on?style=solid /// alarm, ambulance, light, siren, warning - static const IconData solidLightEmergencyOn = IconDataSolid(0xe420); + static const IconData solidLightEmergencyOn = IconData(0xe420, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Emergency On icon /// /// https://fontawesome.com/icons/light-emergency-on?style=regular /// alarm, ambulance, light, siren, warning - static const IconData lightEmergencyOn = IconDataRegular(0xe420); + static const IconData lightEmergencyOn = IconData(0xe420, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Emergency On icon /// /// https://fontawesome.com/icons/light-emergency-on?style=light /// alarm, ambulance, light, siren, warning - static const IconData lightLightEmergencyOn = IconDataLight(0xe420); + static const IconData lightLightEmergencyOn = IconData(0xe420, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Emergency On icon /// /// https://fontawesome.com/icons/light-emergency-on?style=thin /// alarm, ambulance, light, siren, warning - static const IconData thinLightEmergencyOn = IconDataThin(0xe420); + static const IconData thinLightEmergencyOn = IconData(0xe420, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Switch icon /// /// https://fontawesome.com/icons/light-switch?style=solid /// light, off, on - static const IconData solidLightSwitch = IconDataSolid(0xe017); + static const IconData solidLightSwitch = IconData(0xe017, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Switch icon /// /// https://fontawesome.com/icons/light-switch?style=regular /// light, off, on - static const IconData lightSwitch = IconDataRegular(0xe017); + static const IconData lightSwitch = IconData(0xe017, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Switch icon /// /// https://fontawesome.com/icons/light-switch?style=light /// light, off, on - static const IconData lightLightSwitch = IconDataLight(0xe017); + static const IconData lightLightSwitch = IconData(0xe017, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Switch icon /// /// https://fontawesome.com/icons/light-switch?style=thin /// light, off, on - static const IconData thinLightSwitch = IconDataThin(0xe017); + static const IconData thinLightSwitch = IconData(0xe017, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Switch Off icon /// /// https://fontawesome.com/icons/light-switch-off?style=solid /// light, off, on - static const IconData solidLightSwitchOff = IconDataSolid(0xe018); + static const IconData solidLightSwitchOff = IconData(0xe018, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Switch Off icon /// /// https://fontawesome.com/icons/light-switch-off?style=regular /// light, off, on - static const IconData lightSwitchOff = IconDataRegular(0xe018); + static const IconData lightSwitchOff = IconData(0xe018, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Switch Off icon /// /// https://fontawesome.com/icons/light-switch-off?style=light /// light, off, on - static const IconData lightLightSwitchOff = IconDataLight(0xe018); + static const IconData lightLightSwitchOff = IconData(0xe018, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Switch Off icon /// /// https://fontawesome.com/icons/light-switch-off?style=thin /// light, off, on - static const IconData thinLightSwitchOff = IconDataThin(0xe018); + static const IconData thinLightSwitchOff = IconData(0xe018, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Light Switch On icon /// /// https://fontawesome.com/icons/light-switch-on?style=solid /// light, off, on - static const IconData solidLightSwitchOn = IconDataSolid(0xe019); + static const IconData solidLightSwitchOn = IconData(0xe019, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Light Switch On icon /// /// https://fontawesome.com/icons/light-switch-on?style=regular /// light, off, on - static const IconData lightSwitchOn = IconDataRegular(0xe019); + static const IconData lightSwitchOn = IconData(0xe019, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Light Switch On icon /// /// https://fontawesome.com/icons/light-switch-on?style=light /// light, off, on - static const IconData lightLightSwitchOn = IconDataLight(0xe019); + static const IconData lightLightSwitchOn = IconData(0xe019, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Light Switch On icon /// /// https://fontawesome.com/icons/light-switch-on?style=thin /// light, off, on - static const IconData thinLightSwitchOn = IconDataThin(0xe019); + static const IconData thinLightSwitchOn = IconData(0xe019, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb icon /// /// https://fontawesome.com/icons/lightbulb?style=solid /// comic, electric, idea, innovation, inspiration, light, light bulb, bulb, bulb, comic, electric, energy, idea, inspiration, mechanical - static const IconData solidLightbulb = IconDataSolid(0xf0eb); + static const IconData solidLightbulb = IconData(0xf0eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb icon /// /// https://fontawesome.com/icons/lightbulb?style=regular /// comic, electric, idea, innovation, inspiration, light, light bulb, bulb, bulb, comic, electric, energy, idea, inspiration, mechanical - static const IconData lightbulb = IconDataRegular(0xf0eb); + static const IconData lightbulb = IconData(0xf0eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb icon /// /// https://fontawesome.com/icons/lightbulb?style=light /// comic, electric, idea, innovation, inspiration, light, light bulb, bulb, bulb, comic, electric, energy, idea, inspiration, mechanical - static const IconData lightLightbulb = IconDataLight(0xf0eb); + static const IconData lightLightbulb = IconData(0xf0eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb icon /// /// https://fontawesome.com/icons/lightbulb?style=thin /// comic, electric, idea, innovation, inspiration, light, light bulb, bulb, bulb, comic, electric, energy, idea, inspiration, mechanical - static const IconData thinLightbulb = IconDataThin(0xf0eb); + static const IconData thinLightbulb = IconData(0xf0eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Cfl icon /// /// https://fontawesome.com/icons/lightbulb-cfl?style=solid /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData solidLightbulbCfl = IconDataSolid(0xe5a6); + static const IconData solidLightbulbCfl = IconData(0xe5a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Cfl icon /// /// https://fontawesome.com/icons/lightbulb-cfl?style=regular /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData lightbulbCfl = IconDataRegular(0xe5a6); + static const IconData lightbulbCfl = IconData(0xe5a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Cfl icon /// /// https://fontawesome.com/icons/lightbulb-cfl?style=light /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData lightLightbulbCfl = IconDataLight(0xe5a6); + static const IconData lightLightbulbCfl = IconData(0xe5a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Cfl icon /// /// https://fontawesome.com/icons/lightbulb-cfl?style=thin /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData thinLightbulbCfl = IconDataThin(0xe5a6); + static const IconData thinLightbulbCfl = IconData(0xe5a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Cfl On icon /// /// https://fontawesome.com/icons/lightbulb-cfl-on?style=solid /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData solidLightbulbCflOn = IconDataSolid(0xe5a7); + static const IconData solidLightbulbCflOn = IconData(0xe5a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Cfl On icon /// /// https://fontawesome.com/icons/lightbulb-cfl-on?style=regular /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData lightbulbCflOn = IconDataRegular(0xe5a7); + static const IconData lightbulbCflOn = IconData(0xe5a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Cfl On icon /// /// https://fontawesome.com/icons/lightbulb-cfl-on?style=light /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData lightLightbulbCflOn = IconDataLight(0xe5a7); + static const IconData lightLightbulbCflOn = IconData(0xe5a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Cfl On icon /// /// https://fontawesome.com/icons/lightbulb-cfl-on?style=thin /// bulb, comic, compact, electric, energy, fluorescent, idea, inspiration, light, light bulb - static const IconData thinLightbulbCflOn = IconDataThin(0xe5a7); + static const IconData thinLightbulbCflOn = IconData(0xe5a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Dollar icon /// /// https://fontawesome.com/icons/lightbulb-dollar?style=solid /// energy, idea, inspiration, light, money - static const IconData solidLightbulbDollar = IconDataSolid(0xf670); + static const IconData solidLightbulbDollar = IconData(0xf670, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Dollar icon /// /// https://fontawesome.com/icons/lightbulb-dollar?style=regular /// energy, idea, inspiration, light, money - static const IconData lightbulbDollar = IconDataRegular(0xf670); + static const IconData lightbulbDollar = IconData(0xf670, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Dollar icon /// /// https://fontawesome.com/icons/lightbulb-dollar?style=light /// energy, idea, inspiration, light, money - static const IconData lightLightbulbDollar = IconDataLight(0xf670); + static const IconData lightLightbulbDollar = IconData(0xf670, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Dollar icon /// /// https://fontawesome.com/icons/lightbulb-dollar?style=thin /// energy, idea, inspiration, light, money - static const IconData thinLightbulbDollar = IconDataThin(0xf670); + static const IconData thinLightbulbDollar = IconData(0xf670, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Exclamation icon /// /// https://fontawesome.com/icons/lightbulb-exclamation?style=solid /// alert, energy, failed, idea, inspiration, light - static const IconData solidLightbulbExclamation = IconDataSolid(0xf671); + static const IconData solidLightbulbExclamation = IconData(0xf671, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Exclamation icon /// /// https://fontawesome.com/icons/lightbulb-exclamation?style=regular /// alert, energy, failed, idea, inspiration, light - static const IconData lightbulbExclamation = IconDataRegular(0xf671); + static const IconData lightbulbExclamation = IconData(0xf671, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Exclamation icon /// /// https://fontawesome.com/icons/lightbulb-exclamation?style=light /// alert, energy, failed, idea, inspiration, light - static const IconData lightLightbulbExclamation = IconDataLight(0xf671); + static const IconData lightLightbulbExclamation = IconData(0xf671, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Exclamation icon /// /// https://fontawesome.com/icons/lightbulb-exclamation?style=thin /// alert, energy, failed, idea, inspiration, light - static const IconData thinLightbulbExclamation = IconDataThin(0xf671); + static const IconData thinLightbulbExclamation = IconData(0xf671, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Exclamation On icon /// /// https://fontawesome.com/icons/lightbulb-exclamation-on?style=solid /// bright, failed, idea, thought - static const IconData solidLightbulbExclamationOn = IconDataSolid(0xe1ca); + static const IconData solidLightbulbExclamationOn = IconData(0xe1ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Exclamation On icon /// /// https://fontawesome.com/icons/lightbulb-exclamation-on?style=regular /// bright, failed, idea, thought - static const IconData lightbulbExclamationOn = IconDataRegular(0xe1ca); + static const IconData lightbulbExclamationOn = IconData(0xe1ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Exclamation On icon /// /// https://fontawesome.com/icons/lightbulb-exclamation-on?style=light /// bright, failed, idea, thought - static const IconData lightLightbulbExclamationOn = IconDataLight(0xe1ca); + static const IconData lightLightbulbExclamationOn = IconData(0xe1ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Exclamation On icon /// /// https://fontawesome.com/icons/lightbulb-exclamation-on?style=thin /// bright, failed, idea, thought - static const IconData thinLightbulbExclamationOn = IconDataThin(0xe1ca); + static const IconData thinLightbulbExclamationOn = IconData(0xe1ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Gear icon /// /// https://fontawesome.com/icons/lightbulb-gear?style=solid /// comic, electric, energy, idea, innovation, inspiration, light, light bulb, bulb, mechanical - static const IconData solidLightbulbGear = IconDataSolid(0xe5fd); + static const IconData solidLightbulbGear = IconData(0xe5fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Gear icon /// /// https://fontawesome.com/icons/lightbulb-gear?style=regular /// comic, electric, energy, idea, innovation, inspiration, light, light bulb, bulb, mechanical - static const IconData lightbulbGear = IconDataRegular(0xe5fd); + static const IconData lightbulbGear = IconData(0xe5fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Gear icon /// /// https://fontawesome.com/icons/lightbulb-gear?style=light /// comic, electric, energy, idea, innovation, inspiration, light, light bulb, bulb, mechanical - static const IconData lightLightbulbGear = IconDataLight(0xe5fd); + static const IconData lightLightbulbGear = IconData(0xe5fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Gear icon /// /// https://fontawesome.com/icons/lightbulb-gear?style=thin /// comic, electric, energy, idea, innovation, inspiration, light, light bulb, bulb, mechanical - static const IconData thinLightbulbGear = IconDataThin(0xe5fd); + static const IconData thinLightbulbGear = IconData(0xe5fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb On icon /// /// https://fontawesome.com/icons/lightbulb-on?style=solid /// energy, idea, inspiration, light, shine - static const IconData solidLightbulbOn = IconDataSolid(0xf672); + static const IconData solidLightbulbOn = IconData(0xf672, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb On icon /// /// https://fontawesome.com/icons/lightbulb-on?style=regular /// energy, idea, inspiration, light, shine - static const IconData lightbulbOn = IconDataRegular(0xf672); + static const IconData lightbulbOn = IconData(0xf672, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb On icon /// /// https://fontawesome.com/icons/lightbulb-on?style=light /// energy, idea, inspiration, light, shine - static const IconData lightLightbulbOn = IconDataLight(0xf672); + static const IconData lightLightbulbOn = IconData(0xf672, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb On icon /// /// https://fontawesome.com/icons/lightbulb-on?style=thin /// energy, idea, inspiration, light, shine - static const IconData thinLightbulbOn = IconDataThin(0xf672); + static const IconData thinLightbulbOn = IconData(0xf672, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lightbulb Slash icon /// /// https://fontawesome.com/icons/lightbulb-slash?style=solid /// dark, disabled, light, off - static const IconData solidLightbulbSlash = IconDataSolid(0xf673); + static const IconData solidLightbulbSlash = IconData(0xf673, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lightbulb Slash icon /// /// https://fontawesome.com/icons/lightbulb-slash?style=regular /// dark, disabled, light, off - static const IconData lightbulbSlash = IconDataRegular(0xf673); + static const IconData lightbulbSlash = IconData(0xf673, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lightbulb Slash icon /// /// https://fontawesome.com/icons/lightbulb-slash?style=light /// dark, disabled, light, off - static const IconData lightLightbulbSlash = IconDataLight(0xf673); + static const IconData lightLightbulbSlash = IconData(0xf673, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lightbulb Slash icon /// /// https://fontawesome.com/icons/lightbulb-slash?style=thin /// dark, disabled, light, off - static const IconData thinLightbulbSlash = IconDataThin(0xf673); + static const IconData thinLightbulbSlash = IconData(0xf673, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lighthouse icon /// /// https://fontawesome.com/icons/lighthouse?style=solid /// alert, breakwater, cove, ship, tower, warning, beacon - static const IconData solidLighthouse = IconDataSolid(0xe612); + static const IconData solidLighthouse = IconData(0xe612, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lighthouse icon /// /// https://fontawesome.com/icons/lighthouse?style=regular /// alert, breakwater, cove, ship, tower, warning, beacon - static const IconData lighthouse = IconDataRegular(0xe612); + static const IconData lighthouse = IconData(0xe612, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lighthouse icon /// /// https://fontawesome.com/icons/lighthouse?style=light /// alert, breakwater, cove, ship, tower, warning, beacon - static const IconData lightLighthouse = IconDataLight(0xe612); + static const IconData lightLighthouse = IconData(0xe612, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lighthouse icon /// /// https://fontawesome.com/icons/lighthouse?style=thin /// alert, breakwater, cove, ship, tower, warning, beacon - static const IconData thinLighthouse = IconDataThin(0xe612); + static const IconData thinLighthouse = IconData(0xe612, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lights Holiday icon /// /// https://fontawesome.com/icons/lights-holiday?style=solid /// bulb, christmas, decoration, holiday, string, xmas - static const IconData solidLightsHoliday = IconDataSolid(0xf7b2); + static const IconData solidLightsHoliday = IconData(0xf7b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lights Holiday icon /// /// https://fontawesome.com/icons/lights-holiday?style=regular /// bulb, christmas, decoration, holiday, string, xmas - static const IconData lightsHoliday = IconDataRegular(0xf7b2); + static const IconData lightsHoliday = IconData(0xf7b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lights Holiday icon /// /// https://fontawesome.com/icons/lights-holiday?style=light /// bulb, christmas, decoration, holiday, string, xmas - static const IconData lightLightsHoliday = IconDataLight(0xf7b2); + static const IconData lightLightsHoliday = IconData(0xf7b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lights Holiday icon /// /// https://fontawesome.com/icons/lights-holiday?style=thin /// bulb, christmas, decoration, holiday, string, xmas - static const IconData thinLightsHoliday = IconDataThin(0xf7b2); + static const IconData thinLightsHoliday = IconData(0xf7b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Line icon /// /// https://fontawesome.com/icons/line?style=brands - static const IconData line = IconDataBrands(0xf3c0); + static const IconData line = IconData(0xf3c0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Line Columns icon /// /// https://fontawesome.com/icons/line-columns?style=solid /// divide, organize, panes, split - static const IconData solidLineColumns = IconDataSolid(0xf870); + static const IconData solidLineColumns = IconData(0xf870, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Line Columns icon /// /// https://fontawesome.com/icons/line-columns?style=regular /// divide, organize, panes, split - static const IconData lineColumns = IconDataRegular(0xf870); + static const IconData lineColumns = IconData(0xf870, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Line Columns icon /// /// https://fontawesome.com/icons/line-columns?style=light /// divide, organize, panes, split - static const IconData lightLineColumns = IconDataLight(0xf870); + static const IconData lightLineColumns = IconData(0xf870, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Line Columns icon /// /// https://fontawesome.com/icons/line-columns?style=thin /// divide, organize, panes, split - static const IconData thinLineColumns = IconDataThin(0xf870); + static const IconData thinLineColumns = IconData(0xf870, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Line Height icon /// /// https://fontawesome.com/icons/line-height?style=solid /// baseline, letter, spacing, text - static const IconData solidLineHeight = IconDataSolid(0xf871); + static const IconData solidLineHeight = IconData(0xf871, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Line Height icon /// /// https://fontawesome.com/icons/line-height?style=regular /// baseline, letter, spacing, text - static const IconData lineHeight = IconDataRegular(0xf871); + static const IconData lineHeight = IconData(0xf871, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Line Height icon /// /// https://fontawesome.com/icons/line-height?style=light /// baseline, letter, spacing, text - static const IconData lightLineHeight = IconDataLight(0xf871); + static const IconData lightLineHeight = IconData(0xf871, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Line Height icon /// /// https://fontawesome.com/icons/line-height?style=thin /// baseline, letter, spacing, text - static const IconData thinLineHeight = IconDataThin(0xf871); + static const IconData thinLineHeight = IconData(0xf871, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lines Leaning icon /// /// https://fontawesome.com/icons/lines-leaning?style=solid /// canted, domino, falling, resilience, resilient, tipped - static const IconData solidLinesLeaning = IconDataSolid(0xe51e); + static const IconData solidLinesLeaning = IconData(0xe51e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lines Leaning icon /// /// https://fontawesome.com/icons/lines-leaning?style=regular /// canted, domino, falling, resilience, resilient, tipped - static const IconData linesLeaning = IconDataRegular(0xe51e); + static const IconData linesLeaning = IconData(0xe51e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lines Leaning icon /// /// https://fontawesome.com/icons/lines-leaning?style=light /// canted, domino, falling, resilience, resilient, tipped - static const IconData lightLinesLeaning = IconDataLight(0xe51e); + static const IconData lightLinesLeaning = IconData(0xe51e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lines Leaning icon /// /// https://fontawesome.com/icons/lines-leaning?style=thin /// canted, domino, falling, resilience, resilient, tipped - static const IconData thinLinesLeaning = IconDataThin(0xe51e); + static const IconData thinLinesLeaning = IconData(0xe51e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Link icon /// /// https://fontawesome.com/icons/link?style=solid /// attach, attachment, chain, connect, lin, link - static const IconData solidLink = IconDataSolid(0xf0c1); + static const IconData solidLink = IconData(0xf0c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chain for icon [solidLink] @Deprecated('Use "solidLink" instead.') @@ -53947,7 +53947,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link?style=regular /// attach, attachment, chain, connect, lin, link - static const IconData link = IconDataRegular(0xf0c1); + static const IconData link = IconData(0xf0c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chain for icon [link] @Deprecated('Use "link" instead.') @@ -53957,7 +53957,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link?style=light /// attach, attachment, chain, connect, lin, link - static const IconData lightLink = IconDataLight(0xf0c1); + static const IconData lightLink = IconData(0xf0c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chain for icon [lightLink] @Deprecated('Use "lightLink" instead.') @@ -53967,7 +53967,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link?style=thin /// attach, attachment, chain, connect, lin, link - static const IconData thinLink = IconDataThin(0xf0c1); + static const IconData thinLink = IconData(0xf0c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chain for icon [thinLink] @Deprecated('Use "thinLink" instead.') @@ -53977,7 +53977,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal?style=solid /// attachment, chain, hotspot - static const IconData solidLinkHorizontal = IconDataSolid(0xe1cb); + static const IconData solidLinkHorizontal = IconData(0xe1cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal for icon [solidLinkHorizontal] @Deprecated('Use "solidLinkHorizontal" instead.') @@ -53987,7 +53987,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal?style=regular /// attachment, chain, hotspot - static const IconData linkHorizontal = IconDataRegular(0xe1cb); + static const IconData linkHorizontal = IconData(0xe1cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal for icon [linkHorizontal] @Deprecated('Use "linkHorizontal" instead.') @@ -53997,7 +53997,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal?style=light /// attachment, chain, hotspot - static const IconData lightLinkHorizontal = IconDataLight(0xe1cb); + static const IconData lightLinkHorizontal = IconData(0xe1cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal for icon [lightLinkHorizontal] @Deprecated('Use "lightLinkHorizontal" instead.') @@ -54007,7 +54007,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal?style=thin /// attachment, chain, hotspot - static const IconData thinLinkHorizontal = IconDataThin(0xe1cb); + static const IconData thinLinkHorizontal = IconData(0xe1cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal for icon [thinLinkHorizontal] @Deprecated('Use "thinLinkHorizontal" instead.') @@ -54017,7 +54017,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal-slash?style=solid /// attachment, chain, disabled, disconnect, hotspot - static const IconData solidLinkHorizontalSlash = IconDataSolid(0xe1cc); + static const IconData solidLinkHorizontalSlash = IconData(0xe1cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal-slash for icon [solidLinkHorizontalSlash] @Deprecated('Use "solidLinkHorizontalSlash" instead.') @@ -54027,7 +54027,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal-slash?style=regular /// attachment, chain, disabled, disconnect, hotspot - static const IconData linkHorizontalSlash = IconDataRegular(0xe1cc); + static const IconData linkHorizontalSlash = IconData(0xe1cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal-slash for icon [linkHorizontalSlash] @Deprecated('Use "linkHorizontalSlash" instead.') @@ -54037,7 +54037,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal-slash?style=light /// attachment, chain, disabled, disconnect, hotspot - static const IconData lightLinkHorizontalSlash = IconDataLight(0xe1cc); + static const IconData lightLinkHorizontalSlash = IconData(0xe1cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal-slash for icon [lightLinkHorizontalSlash] @Deprecated('Use "lightLinkHorizontalSlash" instead.') @@ -54047,7 +54047,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-horizontal-slash?style=thin /// attachment, chain, disabled, disconnect, hotspot - static const IconData thinLinkHorizontalSlash = IconDataThin(0xe1cc); + static const IconData thinLinkHorizontalSlash = IconData(0xe1cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chain-horizontal-slash for icon [thinLinkHorizontalSlash] @Deprecated('Use "thinLinkHorizontalSlash" instead.') @@ -54057,55 +54057,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-simple?style=solid /// attach, attachment, chain, connect - static const IconData solidLinkSimple = IconDataSolid(0xe1cd); + static const IconData solidLinkSimple = IconData(0xe1cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Link Simple icon /// /// https://fontawesome.com/icons/link-simple?style=regular /// attach, attachment, chain, connect - static const IconData linkSimple = IconDataRegular(0xe1cd); + static const IconData linkSimple = IconData(0xe1cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Link Simple icon /// /// https://fontawesome.com/icons/link-simple?style=light /// attach, attachment, chain, connect - static const IconData lightLinkSimple = IconDataLight(0xe1cd); + static const IconData lightLinkSimple = IconData(0xe1cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Link Simple icon /// /// https://fontawesome.com/icons/link-simple?style=thin /// attach, attachment, chain, connect - static const IconData thinLinkSimple = IconDataThin(0xe1cd); + static const IconData thinLinkSimple = IconData(0xe1cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Link Simple Slash icon /// /// https://fontawesome.com/icons/link-simple-slash?style=solid /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData solidLinkSimpleSlash = IconDataSolid(0xe1ce); + static const IconData solidLinkSimpleSlash = IconData(0xe1ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Link Simple Slash icon /// /// https://fontawesome.com/icons/link-simple-slash?style=regular /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData linkSimpleSlash = IconDataRegular(0xe1ce); + static const IconData linkSimpleSlash = IconData(0xe1ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Link Simple Slash icon /// /// https://fontawesome.com/icons/link-simple-slash?style=light /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData lightLinkSimpleSlash = IconDataLight(0xe1ce); + static const IconData lightLinkSimpleSlash = IconData(0xe1ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Link Simple Slash icon /// /// https://fontawesome.com/icons/link-simple-slash?style=thin /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData thinLinkSimpleSlash = IconDataThin(0xe1ce); + static const IconData thinLinkSimpleSlash = IconData(0xe1ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Link Slash icon /// /// https://fontawesome.com/icons/link-slash?style=solid /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData solidLinkSlash = IconDataSolid(0xf127); + static const IconData solidLinkSlash = IconData(0xf127, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chain-broken for icon [solidLinkSlash] @Deprecated('Use "solidLinkSlash" instead.') @@ -54123,7 +54123,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-slash?style=regular /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData linkSlash = IconDataRegular(0xf127); + static const IconData linkSlash = IconData(0xf127, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chain-broken for icon [linkSlash] @Deprecated('Use "linkSlash" instead.') @@ -54141,7 +54141,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-slash?style=light /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData lightLinkSlash = IconDataLight(0xf127); + static const IconData lightLinkSlash = IconData(0xf127, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chain-broken for icon [lightLinkSlash] @Deprecated('Use "lightLinkSlash" instead.') @@ -54159,7 +54159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/link-slash?style=thin /// attachment, chain, chain-broken, disabled, disconnect, remove - static const IconData thinLinkSlash = IconDataThin(0xf127); + static const IconData thinLinkSlash = IconData(0xf127, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chain-broken for icon [thinLinkSlash] @Deprecated('Use "thinLinkSlash" instead.') @@ -54177,78 +54177,78 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/linkedin?style=brands /// linkedin-square, linkin - static const IconData linkedin = IconDataBrands(0xf08c); + static const IconData linkedin = IconData(0xf08c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands LinkedIn In icon /// /// https://fontawesome.com/icons/linkedin-in?style=brands /// linkedin, linkin - static const IconData linkedinIn = IconDataBrands(0xf0e1); + static const IconData linkedinIn = IconData(0xf0e1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Linode icon /// /// https://fontawesome.com/icons/linode?style=brands - static const IconData linode = IconDataBrands(0xf2b8); + static const IconData linode = IconData(0xf2b8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Linux icon /// /// https://fontawesome.com/icons/linux?style=brands /// tux - static const IconData linux = IconDataBrands(0xf17c); + static const IconData linux = IconData(0xf17c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Lips icon /// /// https://fontawesome.com/icons/lips?style=solid /// Lips, fashion, kiss, lips, lipstick, mouth, smile - static const IconData solidLips = IconDataSolid(0xf600); + static const IconData solidLips = IconData(0xf600, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lips icon /// /// https://fontawesome.com/icons/lips?style=regular /// Lips, fashion, kiss, lips, lipstick, mouth, smile - static const IconData lips = IconDataRegular(0xf600); + static const IconData lips = IconData(0xf600, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lips icon /// /// https://fontawesome.com/icons/lips?style=light /// Lips, fashion, kiss, lips, lipstick, mouth, smile - static const IconData lightLips = IconDataLight(0xf600); + static const IconData lightLips = IconData(0xf600, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lips icon /// /// https://fontawesome.com/icons/lips?style=thin /// Lips, fashion, kiss, lips, lipstick, mouth, smile - static const IconData thinLips = IconDataThin(0xf600); + static const IconData thinLips = IconData(0xf600, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lira Sign icon /// /// https://fontawesome.com/icons/lira-sign?style=solid /// Lira Sign, currency - static const IconData solidLiraSign = IconDataSolid(0xf195); + static const IconData solidLiraSign = IconData(0xf195, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lira Sign icon /// /// https://fontawesome.com/icons/lira-sign?style=regular /// Lira Sign, currency - static const IconData liraSign = IconDataRegular(0xf195); + static const IconData liraSign = IconData(0xf195, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lira Sign icon /// /// https://fontawesome.com/icons/lira-sign?style=light /// Lira Sign, currency - static const IconData lightLiraSign = IconDataLight(0xf195); + static const IconData lightLiraSign = IconData(0xf195, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lira Sign icon /// /// https://fontawesome.com/icons/lira-sign?style=thin /// Lira Sign, currency - static const IconData thinLiraSign = IconDataThin(0xf195); + static const IconData thinLiraSign = IconData(0xf195, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List icon /// /// https://fontawesome.com/icons/list?style=solid /// bullet, category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData solidList = IconDataSolid(0xf03a); + static const IconData solidList = IconData(0xf03a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias list-squares for icon [solidList] @Deprecated('Use "solidList" instead.') @@ -54258,7 +54258,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list?style=regular /// bullet, category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData list = IconDataRegular(0xf03a); + static const IconData list = IconData(0xf03a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias list-squares for icon [list] @Deprecated('Use "list" instead.') @@ -54268,7 +54268,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list?style=light /// bullet, category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData lightList = IconDataLight(0xf03a); + static const IconData lightList = IconData(0xf03a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias list-squares for icon [lightList] @Deprecated('Use "lightList" instead.') @@ -54278,7 +54278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list?style=thin /// bullet, category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData thinList = IconDataThin(0xf03a); + static const IconData thinList = IconData(0xf03a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias list-squares for icon [thinList] @Deprecated('Use "thinList" instead.') @@ -54288,7 +54288,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-check?style=solid /// bullet, cheatsheet, checklist, downloading, downloads, enable, loading, progress, project management, settings, summary, to do, validate, working - static const IconData solidListCheck = IconDataSolid(0xf0ae); + static const IconData solidListCheck = IconData(0xf0ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tasks for icon [solidListCheck] @Deprecated('Use "solidListCheck" instead.') @@ -54298,7 +54298,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-check?style=regular /// bullet, cheatsheet, checklist, downloading, downloads, enable, loading, progress, project management, settings, summary, to do, validate, working - static const IconData listCheck = IconDataRegular(0xf0ae); + static const IconData listCheck = IconData(0xf0ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tasks for icon [listCheck] @Deprecated('Use "listCheck" instead.') @@ -54308,7 +54308,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-check?style=light /// bullet, cheatsheet, checklist, downloading, downloads, enable, loading, progress, project management, settings, summary, to do, validate, working - static const IconData lightListCheck = IconDataLight(0xf0ae); + static const IconData lightListCheck = IconData(0xf0ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tasks for icon [lightListCheck] @Deprecated('Use "lightListCheck" instead.') @@ -54318,7 +54318,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-check?style=thin /// bullet, cheatsheet, checklist, downloading, downloads, enable, loading, progress, project management, settings, summary, to do, validate, working - static const IconData thinListCheck = IconDataThin(0xf0ae); + static const IconData thinListCheck = IconData(0xf0ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tasks for icon [thinListCheck] @Deprecated('Use "thinListCheck" instead.') @@ -54328,55 +54328,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-dropdown?style=solid /// cheatsheet, menu, summary, wishlist - static const IconData solidListDropdown = IconDataSolid(0xe1cf); + static const IconData solidListDropdown = IconData(0xe1cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular List Dropdown icon /// /// https://fontawesome.com/icons/list-dropdown?style=regular /// cheatsheet, menu, summary, wishlist - static const IconData listDropdown = IconDataRegular(0xe1cf); + static const IconData listDropdown = IconData(0xe1cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light List Dropdown icon /// /// https://fontawesome.com/icons/list-dropdown?style=light /// cheatsheet, menu, summary, wishlist - static const IconData lightListDropdown = IconDataLight(0xe1cf); + static const IconData lightListDropdown = IconData(0xe1cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin List Dropdown icon /// /// https://fontawesome.com/icons/list-dropdown?style=thin /// cheatsheet, menu, summary, wishlist - static const IconData thinListDropdown = IconDataThin(0xe1cf); + static const IconData thinListDropdown = IconData(0xe1cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List Music icon /// /// https://fontawesome.com/icons/list-music?style=solid /// album, cheatsheet, itunes, music, playlist, podcast, soundtrack, summary - static const IconData solidListMusic = IconDataSolid(0xf8c9); + static const IconData solidListMusic = IconData(0xf8c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular List Music icon /// /// https://fontawesome.com/icons/list-music?style=regular /// album, cheatsheet, itunes, music, playlist, podcast, soundtrack, summary - static const IconData listMusic = IconDataRegular(0xf8c9); + static const IconData listMusic = IconData(0xf8c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light List Music icon /// /// https://fontawesome.com/icons/list-music?style=light /// album, cheatsheet, itunes, music, playlist, podcast, soundtrack, summary - static const IconData lightListMusic = IconDataLight(0xf8c9); + static const IconData lightListMusic = IconData(0xf8c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin List Music icon /// /// https://fontawesome.com/icons/list-music?style=thin /// album, cheatsheet, itunes, music, playlist, podcast, soundtrack, summary - static const IconData thinListMusic = IconDataThin(0xf8c9); + static const IconData thinListMusic = IconData(0xf8c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List Ol icon /// /// https://fontawesome.com/icons/list-ol?style=solid /// cheatsheet, checklist, completed, done, finished, numbers, ol, summary, todo, ul - static const IconData solidListOl = IconDataSolid(0xf0cb); + static const IconData solidListOl = IconData(0xf0cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias list-1-2 for icon [solidListOl] @Deprecated('Use "solidListOl" instead.') @@ -54390,7 +54390,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ol?style=regular /// cheatsheet, checklist, completed, done, finished, numbers, ol, summary, todo, ul - static const IconData listOl = IconDataRegular(0xf0cb); + static const IconData listOl = IconData(0xf0cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias list-1-2 for icon [listOl] @Deprecated('Use "listOl" instead.') @@ -54404,7 +54404,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ol?style=light /// cheatsheet, checklist, completed, done, finished, numbers, ol, summary, todo, ul - static const IconData lightListOl = IconDataLight(0xf0cb); + static const IconData lightListOl = IconData(0xf0cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias list-1-2 for icon [lightListOl] @Deprecated('Use "lightListOl" instead.') @@ -54418,7 +54418,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ol?style=thin /// cheatsheet, checklist, completed, done, finished, numbers, ol, summary, todo, ul - static const IconData thinListOl = IconDataThin(0xf0cb); + static const IconData thinListOl = IconData(0xf0cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias list-1-2 for icon [thinListOl] @Deprecated('Use "thinListOl" instead.') @@ -54432,79 +54432,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-radio?style=solid /// cheatsheet, list, order, selection, summary - static const IconData solidListRadio = IconDataSolid(0xe1d0); + static const IconData solidListRadio = IconData(0xe1d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular List Radio icon /// /// https://fontawesome.com/icons/list-radio?style=regular /// cheatsheet, list, order, selection, summary - static const IconData listRadio = IconDataRegular(0xe1d0); + static const IconData listRadio = IconData(0xe1d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light List Radio icon /// /// https://fontawesome.com/icons/list-radio?style=light /// cheatsheet, list, order, selection, summary - static const IconData lightListRadio = IconDataLight(0xe1d0); + static const IconData lightListRadio = IconData(0xe1d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin List Radio icon /// /// https://fontawesome.com/icons/list-radio?style=thin /// cheatsheet, list, order, selection, summary - static const IconData thinListRadio = IconDataThin(0xe1d0); + static const IconData thinListRadio = IconData(0xe1d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List Timeline icon /// /// https://fontawesome.com/icons/list-timeline?style=solid /// cheatsheet, chronological, deadline, history, linear, summary - static const IconData solidListTimeline = IconDataSolid(0xe1d1); + static const IconData solidListTimeline = IconData(0xe1d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular List Timeline icon /// /// https://fontawesome.com/icons/list-timeline?style=regular /// cheatsheet, chronological, deadline, history, linear, summary - static const IconData listTimeline = IconDataRegular(0xe1d1); + static const IconData listTimeline = IconData(0xe1d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light List Timeline icon /// /// https://fontawesome.com/icons/list-timeline?style=light /// cheatsheet, chronological, deadline, history, linear, summary - static const IconData lightListTimeline = IconDataLight(0xe1d1); + static const IconData lightListTimeline = IconData(0xe1d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin List Timeline icon /// /// https://fontawesome.com/icons/list-timeline?style=thin /// cheatsheet, chronological, deadline, history, linear, summary - static const IconData thinListTimeline = IconDataThin(0xe1d1); + static const IconData thinListTimeline = IconData(0xe1d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List Tree icon /// /// https://fontawesome.com/icons/list-tree?style=solid /// cheatsheet, directory, file, summary, tree - static const IconData solidListTree = IconDataSolid(0xe1d2); + static const IconData solidListTree = IconData(0xe1d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular List Tree icon /// /// https://fontawesome.com/icons/list-tree?style=regular /// cheatsheet, directory, file, summary, tree - static const IconData listTree = IconDataRegular(0xe1d2); + static const IconData listTree = IconData(0xe1d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light List Tree icon /// /// https://fontawesome.com/icons/list-tree?style=light /// cheatsheet, directory, file, summary, tree - static const IconData lightListTree = IconDataLight(0xe1d2); + static const IconData lightListTree = IconData(0xe1d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin List Tree icon /// /// https://fontawesome.com/icons/list-tree?style=thin /// cheatsheet, directory, file, summary, tree - static const IconData thinListTree = IconDataThin(0xe1d2); + static const IconData thinListTree = IconData(0xe1d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid List Ul icon /// /// https://fontawesome.com/icons/list-ul?style=solid /// bullet, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData solidListUl = IconDataSolid(0xf0ca); + static const IconData solidListUl = IconData(0xf0ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias list-dots for icon [solidListUl] @Deprecated('Use "solidListUl" instead.') @@ -54514,7 +54514,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ul?style=regular /// bullet, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData listUl = IconDataRegular(0xf0ca); + static const IconData listUl = IconData(0xf0ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias list-dots for icon [listUl] @Deprecated('Use "listUl" instead.') @@ -54524,7 +54524,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ul?style=light /// bullet, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData lightListUl = IconDataLight(0xf0ca); + static const IconData lightListUl = IconData(0xf0ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias list-dots for icon [lightListUl] @Deprecated('Use "lightListUl" instead.') @@ -54534,7 +54534,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/list-ul?style=thin /// bullet, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData thinListUl = IconDataThin(0xf0ca); + static const IconData thinListUl = IconData(0xf0ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias list-dots for icon [thinListUl] @Deprecated('Use "thinListUl" instead.') @@ -54544,127 +54544,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/litecoin-sign?style=solid /// currency - static const IconData solidLitecoinSign = IconDataSolid(0xe1d3); + static const IconData solidLitecoinSign = IconData(0xe1d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Litecoin Sign icon /// /// https://fontawesome.com/icons/litecoin-sign?style=regular /// currency - static const IconData litecoinSign = IconDataRegular(0xe1d3); + static const IconData litecoinSign = IconData(0xe1d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Litecoin Sign icon /// /// https://fontawesome.com/icons/litecoin-sign?style=light /// currency - static const IconData lightLitecoinSign = IconDataLight(0xe1d3); + static const IconData lightLitecoinSign = IconData(0xe1d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Litecoin Sign icon /// /// https://fontawesome.com/icons/litecoin-sign?style=thin /// currency - static const IconData thinLitecoinSign = IconDataThin(0xe1d3); + static const IconData thinLitecoinSign = IconData(0xe1d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Loader icon /// /// https://fontawesome.com/icons/loader?style=solid /// loading, pending, progress - static const IconData solidLoader = IconDataSolid(0xe1d4); + static const IconData solidLoader = IconData(0xe1d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Loader icon /// /// https://fontawesome.com/icons/loader?style=regular /// loading, pending, progress - static const IconData loader = IconDataRegular(0xe1d4); + static const IconData loader = IconData(0xe1d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Loader icon /// /// https://fontawesome.com/icons/loader?style=light /// loading, pending, progress - static const IconData lightLoader = IconDataLight(0xe1d4); + static const IconData lightLoader = IconData(0xe1d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Loader icon /// /// https://fontawesome.com/icons/loader?style=thin /// loading, pending, progress - static const IconData thinLoader = IconDataThin(0xe1d4); + static const IconData thinLoader = IconData(0xe1d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lobster icon /// /// https://fontawesome.com/icons/lobster?style=solid /// bisque, claes, crustacean, lobster, seafood, shellfish - static const IconData solidLobster = IconDataSolid(0xe421); + static const IconData solidLobster = IconData(0xe421, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lobster icon /// /// https://fontawesome.com/icons/lobster?style=regular /// bisque, claes, crustacean, lobster, seafood, shellfish - static const IconData lobster = IconDataRegular(0xe421); + static const IconData lobster = IconData(0xe421, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lobster icon /// /// https://fontawesome.com/icons/lobster?style=light /// bisque, claes, crustacean, lobster, seafood, shellfish - static const IconData lightLobster = IconDataLight(0xe421); + static const IconData lightLobster = IconData(0xe421, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lobster icon /// /// https://fontawesome.com/icons/lobster?style=thin /// bisque, claes, crustacean, lobster, seafood, shellfish - static const IconData thinLobster = IconDataThin(0xe421); + static const IconData thinLobster = IconData(0xe421, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Location Arrow icon /// /// https://fontawesome.com/icons/location-arrow?style=solid /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData solidLocationArrow = IconDataSolid(0xf124); + static const IconData solidLocationArrow = IconData(0xf124, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Location Arrow icon /// /// https://fontawesome.com/icons/location-arrow?style=regular /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData locationArrow = IconDataRegular(0xf124); + static const IconData locationArrow = IconData(0xf124, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Location Arrow icon /// /// https://fontawesome.com/icons/location-arrow?style=light /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData lightLocationArrow = IconDataLight(0xf124); + static const IconData lightLocationArrow = IconData(0xf124, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Location Arrow icon /// /// https://fontawesome.com/icons/location-arrow?style=thin /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData thinLocationArrow = IconDataThin(0xf124); + static const IconData thinLocationArrow = IconData(0xf124, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Location Arrow Up icon /// /// https://fontawesome.com/icons/location-arrow-up?style=solid /// compass, coordinate, direction, gps, map, navigation, place, address, north - static const IconData solidLocationArrowUp = IconDataSolid(0xe63a); + static const IconData solidLocationArrowUp = IconData(0xe63a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Location Arrow Up icon /// /// https://fontawesome.com/icons/location-arrow-up?style=regular /// compass, coordinate, direction, gps, map, navigation, place, address, north - static const IconData locationArrowUp = IconDataRegular(0xe63a); + static const IconData locationArrowUp = IconData(0xe63a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Location Arrow Up icon /// /// https://fontawesome.com/icons/location-arrow-up?style=light /// compass, coordinate, direction, gps, map, navigation, place, address, north - static const IconData lightLocationArrowUp = IconDataLight(0xe63a); + static const IconData lightLocationArrowUp = IconData(0xe63a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Location Arrow Up icon /// /// https://fontawesome.com/icons/location-arrow-up?style=thin /// compass, coordinate, direction, gps, map, navigation, place, address, north - static const IconData thinLocationArrowUp = IconDataThin(0xe63a); + static const IconData thinLocationArrowUp = IconData(0xe63a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Location Check icon /// /// https://fontawesome.com/icons/location-check?style=solid /// agree, coordinates, destination, enable, location, map, navigation, pin, place, select, success, tick, todo, validate, working - static const IconData solidLocationCheck = IconDataSolid(0xf606); + static const IconData solidLocationCheck = IconData(0xf606, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-check for icon [solidLocationCheck] @Deprecated('Use "solidLocationCheck" instead.') @@ -54674,7 +54674,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-check?style=regular /// agree, coordinates, destination, enable, location, map, navigation, pin, place, select, success, tick, todo, validate, working - static const IconData locationCheck = IconDataRegular(0xf606); + static const IconData locationCheck = IconData(0xf606, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-check for icon [locationCheck] @Deprecated('Use "locationCheck" instead.') @@ -54684,7 +54684,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-check?style=light /// agree, coordinates, destination, enable, location, map, navigation, pin, place, select, success, tick, todo, validate, working - static const IconData lightLocationCheck = IconDataLight(0xf606); + static const IconData lightLocationCheck = IconData(0xf606, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-check for icon [lightLocationCheck] @Deprecated('Use "lightLocationCheck" instead.') @@ -54694,7 +54694,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-check?style=thin /// agree, coordinates, destination, enable, location, map, navigation, pin, place, select, success, tick, todo, validate, working - static const IconData thinLocationCheck = IconDataThin(0xf606); + static const IconData thinLocationCheck = IconData(0xf606, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-check for icon [thinLocationCheck] @Deprecated('Use "thinLocationCheck" instead.') @@ -54704,7 +54704,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs?style=solid /// address, coordinate, direction, gps, location, map, navigation, place, where - static const IconData solidLocationCrosshairs = IconDataSolid(0xf601); + static const IconData solidLocationCrosshairs = IconData(0xf601, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias location for icon [solidLocationCrosshairs] @Deprecated('Use "solidLocationCrosshairs" instead.') @@ -54714,7 +54714,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs?style=regular /// address, coordinate, direction, gps, location, map, navigation, place, where - static const IconData locationCrosshairs = IconDataRegular(0xf601); + static const IconData locationCrosshairs = IconData(0xf601, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias location for icon [locationCrosshairs] @Deprecated('Use "locationCrosshairs" instead.') @@ -54724,7 +54724,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs?style=light /// address, coordinate, direction, gps, location, map, navigation, place, where - static const IconData lightLocationCrosshairs = IconDataLight(0xf601); + static const IconData lightLocationCrosshairs = IconData(0xf601, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias location for icon [lightLocationCrosshairs] @Deprecated('Use "lightLocationCrosshairs" instead.') @@ -54734,7 +54734,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs?style=thin /// address, coordinate, direction, gps, location, map, navigation, place, where - static const IconData thinLocationCrosshairs = IconDataThin(0xf601); + static const IconData thinLocationCrosshairs = IconData(0xf601, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias location for icon [thinLocationCrosshairs] @Deprecated('Use "thinLocationCrosshairs" instead.') @@ -54744,7 +54744,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs-slash?style=solid /// address, coordinate, direction, disabled, gps, map, navigation, place, where - static const IconData solidLocationCrosshairsSlash = IconDataSolid(0xf603); + static const IconData solidLocationCrosshairsSlash = IconData(0xf603, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias location-slash for icon [solidLocationCrosshairsSlash] @Deprecated('Use "solidLocationCrosshairsSlash" instead.') @@ -54754,7 +54754,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs-slash?style=regular /// address, coordinate, direction, disabled, gps, map, navigation, place, where - static const IconData locationCrosshairsSlash = IconDataRegular(0xf603); + static const IconData locationCrosshairsSlash = IconData(0xf603, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias location-slash for icon [locationCrosshairsSlash] @Deprecated('Use "locationCrosshairsSlash" instead.') @@ -54764,7 +54764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs-slash?style=light /// address, coordinate, direction, disabled, gps, map, navigation, place, where - static const IconData lightLocationCrosshairsSlash = IconDataLight(0xf603); + static const IconData lightLocationCrosshairsSlash = IconData(0xf603, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias location-slash for icon [lightLocationCrosshairsSlash] @Deprecated('Use "lightLocationCrosshairsSlash" instead.') @@ -54774,7 +54774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-crosshairs-slash?style=thin /// address, coordinate, direction, disabled, gps, map, navigation, place, where - static const IconData thinLocationCrosshairsSlash = IconDataThin(0xf603); + static const IconData thinLocationCrosshairsSlash = IconData(0xf603, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias location-slash for icon [thinLocationCrosshairsSlash] @Deprecated('Use "thinLocationCrosshairsSlash" instead.') @@ -54784,7 +54784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot?style=solid /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidLocationDot = IconDataSolid(0xf3c5); + static const IconData solidLocationDot = IconData(0xf3c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt for icon [solidLocationDot] @Deprecated('Use "solidLocationDot" instead.') @@ -54794,7 +54794,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot?style=regular /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData locationDot = IconDataRegular(0xf3c5); + static const IconData locationDot = IconData(0xf3c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt for icon [locationDot] @Deprecated('Use "locationDot" instead.') @@ -54804,7 +54804,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot?style=light /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightLocationDot = IconDataLight(0xf3c5); + static const IconData lightLocationDot = IconData(0xf3c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt for icon [lightLocationDot] @Deprecated('Use "lightLocationDot" instead.') @@ -54814,7 +54814,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot?style=thin /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData thinLocationDot = IconDataThin(0xf3c5); + static const IconData thinLocationDot = IconData(0xf3c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt for icon [thinLocationDot] @Deprecated('Use "thinLocationDot" instead.') @@ -54824,7 +54824,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot-slash?style=solid /// address, coordinates, destination, disabled, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidLocationDotSlash = IconDataSolid(0xf605); + static const IconData solidLocationDotSlash = IconData(0xf605, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt-slash for icon [solidLocationDotSlash] @Deprecated('Use "solidLocationDotSlash" instead.') @@ -54834,7 +54834,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot-slash?style=regular /// address, coordinates, destination, disabled, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData locationDotSlash = IconDataRegular(0xf605); + static const IconData locationDotSlash = IconData(0xf605, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt-slash for icon [locationDotSlash] @Deprecated('Use "locationDotSlash" instead.') @@ -54844,7 +54844,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot-slash?style=light /// address, coordinates, destination, disabled, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightLocationDotSlash = IconDataLight(0xf605); + static const IconData lightLocationDotSlash = IconData(0xf605, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt-slash for icon [lightLocationDotSlash] @Deprecated('Use "lightLocationDotSlash" instead.') @@ -54854,7 +54854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-dot-slash?style=thin /// address, coordinates, destination, disabled, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData thinLocationDotSlash = IconDataThin(0xf605); + static const IconData thinLocationDotSlash = IconData(0xf605, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-alt-slash for icon [thinLocationDotSlash] @Deprecated('Use "thinLocationDotSlash" instead.') @@ -54864,7 +54864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-exclamation?style=solid /// agree, alert, attention, coordinates, destination, failed, important, location, map, navigation, pin, place - static const IconData solidLocationExclamation = IconDataSolid(0xf608); + static const IconData solidLocationExclamation = IconData(0xf608, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-exclamation for icon [solidLocationExclamation] @Deprecated('Use "solidLocationExclamation" instead.') @@ -54874,7 +54874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-exclamation?style=regular /// agree, alert, attention, coordinates, destination, failed, important, location, map, navigation, pin, place - static const IconData locationExclamation = IconDataRegular(0xf608); + static const IconData locationExclamation = IconData(0xf608, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-exclamation for icon [locationExclamation] @Deprecated('Use "locationExclamation" instead.') @@ -54884,7 +54884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-exclamation?style=light /// agree, alert, attention, coordinates, destination, failed, important, location, map, navigation, pin, place - static const IconData lightLocationExclamation = IconDataLight(0xf608); + static const IconData lightLocationExclamation = IconData(0xf608, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-exclamation for icon [lightLocationExclamation] @Deprecated('Use "lightLocationExclamation" instead.') @@ -54894,7 +54894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-exclamation?style=thin /// agree, alert, attention, coordinates, destination, failed, important, location, map, navigation, pin, place - static const IconData thinLocationExclamation = IconDataThin(0xf608); + static const IconData thinLocationExclamation = IconData(0xf608, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-exclamation for icon [thinLocationExclamation] @Deprecated('Use "thinLocationExclamation" instead.') @@ -54904,7 +54904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-minus?style=solid /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData solidLocationMinus = IconDataSolid(0xf609); + static const IconData solidLocationMinus = IconData(0xf609, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-minus for icon [solidLocationMinus] @Deprecated('Use "solidLocationMinus" instead.') @@ -54914,7 +54914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-minus?style=regular /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData locationMinus = IconDataRegular(0xf609); + static const IconData locationMinus = IconData(0xf609, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-minus for icon [locationMinus] @Deprecated('Use "locationMinus" instead.') @@ -54924,7 +54924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-minus?style=light /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData lightLocationMinus = IconDataLight(0xf609); + static const IconData lightLocationMinus = IconData(0xf609, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-minus for icon [lightLocationMinus] @Deprecated('Use "lightLocationMinus" instead.') @@ -54934,7 +54934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-minus?style=thin /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData thinLocationMinus = IconDataThin(0xf609); + static const IconData thinLocationMinus = IconData(0xf609, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-minus for icon [thinLocationMinus] @Deprecated('Use "thinLocationMinus" instead.') @@ -54944,7 +54944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pen?style=solid /// agree, coordinates, destination, edit, location, map, modify, navigation, pen, pencil, pin, place, update, write - static const IconData solidLocationPen = IconDataSolid(0xf607); + static const IconData solidLocationPen = IconData(0xf607, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-edit for icon [solidLocationPen] @Deprecated('Use "solidLocationPen" instead.') @@ -54954,7 +54954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pen?style=regular /// agree, coordinates, destination, edit, location, map, modify, navigation, pen, pencil, pin, place, update, write - static const IconData locationPen = IconDataRegular(0xf607); + static const IconData locationPen = IconData(0xf607, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-edit for icon [locationPen] @Deprecated('Use "locationPen" instead.') @@ -54964,7 +54964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pen?style=light /// agree, coordinates, destination, edit, location, map, modify, navigation, pen, pencil, pin, place, update, write - static const IconData lightLocationPen = IconDataLight(0xf607); + static const IconData lightLocationPen = IconData(0xf607, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-edit for icon [lightLocationPen] @Deprecated('Use "lightLocationPen" instead.') @@ -54974,7 +54974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pen?style=thin /// agree, coordinates, destination, edit, location, map, modify, navigation, pen, pencil, pin, place, update, write - static const IconData thinLocationPen = IconDataThin(0xf607); + static const IconData thinLocationPen = IconData(0xf607, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-edit for icon [thinLocationPen] @Deprecated('Use "thinLocationPen" instead.') @@ -54984,7 +54984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin?style=solid /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidLocationPin = IconDataSolid(0xf041); + static const IconData solidLocationPin = IconData(0xf041, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker for icon [solidLocationPin] @Deprecated('Use "solidLocationPin" instead.') @@ -54994,7 +54994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin?style=regular /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData locationPin = IconDataRegular(0xf041); + static const IconData locationPin = IconData(0xf041, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker for icon [locationPin] @Deprecated('Use "locationPin" instead.') @@ -55004,7 +55004,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin?style=light /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightLocationPin = IconDataLight(0xf041); + static const IconData lightLocationPin = IconData(0xf041, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker for icon [lightLocationPin] @Deprecated('Use "lightLocationPin" instead.') @@ -55014,7 +55014,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin?style=thin /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData thinLocationPin = IconDataThin(0xf041); + static const IconData thinLocationPin = IconData(0xf041, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker for icon [thinLocationPin] @Deprecated('Use "thinLocationPin" instead.') @@ -55024,31 +55024,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin-lock?style=solid /// closed, lockdown, map, padlock, privacy, quarantine - static const IconData solidLocationPinLock = IconDataSolid(0xe51f); + static const IconData solidLocationPinLock = IconData(0xe51f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Location Pin Lock icon /// /// https://fontawesome.com/icons/location-pin-lock?style=regular /// closed, lockdown, map, padlock, privacy, quarantine - static const IconData locationPinLock = IconDataRegular(0xe51f); + static const IconData locationPinLock = IconData(0xe51f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Location Pin Lock icon /// /// https://fontawesome.com/icons/location-pin-lock?style=light /// closed, lockdown, map, padlock, privacy, quarantine - static const IconData lightLocationPinLock = IconDataLight(0xe51f); + static const IconData lightLocationPinLock = IconData(0xe51f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Location Pin Lock icon /// /// https://fontawesome.com/icons/location-pin-lock?style=thin /// closed, lockdown, map, padlock, privacy, quarantine - static const IconData thinLocationPinLock = IconDataThin(0xe51f); + static const IconData thinLocationPinLock = IconData(0xe51f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Location Pin Slash icon /// /// https://fontawesome.com/icons/location-pin-slash?style=solid /// agree, cancel, coordinates, destination, disabled, location, map, missing, navigation, pin, place - static const IconData solidLocationPinSlash = IconDataSolid(0xf60c); + static const IconData solidLocationPinSlash = IconData(0xf60c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-slash for icon [solidLocationPinSlash] @Deprecated('Use "solidLocationPinSlash" instead.') @@ -55058,7 +55058,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin-slash?style=regular /// agree, cancel, coordinates, destination, disabled, location, map, missing, navigation, pin, place - static const IconData locationPinSlash = IconDataRegular(0xf60c); + static const IconData locationPinSlash = IconData(0xf60c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-slash for icon [locationPinSlash] @Deprecated('Use "locationPinSlash" instead.') @@ -55068,7 +55068,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin-slash?style=light /// agree, cancel, coordinates, destination, disabled, location, map, missing, navigation, pin, place - static const IconData lightLocationPinSlash = IconDataLight(0xf60c); + static const IconData lightLocationPinSlash = IconData(0xf60c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-slash for icon [lightLocationPinSlash] @Deprecated('Use "lightLocationPinSlash" instead.') @@ -55078,7 +55078,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-pin-slash?style=thin /// agree, cancel, coordinates, destination, disabled, location, map, missing, navigation, pin, place - static const IconData thinLocationPinSlash = IconDataThin(0xf60c); + static const IconData thinLocationPinSlash = IconData(0xf60c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-slash for icon [thinLocationPinSlash] @Deprecated('Use "thinLocationPinSlash" instead.') @@ -55088,7 +55088,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-plus?style=solid /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData solidLocationPlus = IconDataSolid(0xf60a); + static const IconData solidLocationPlus = IconData(0xf60a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-plus for icon [solidLocationPlus] @Deprecated('Use "solidLocationPlus" instead.') @@ -55098,7 +55098,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-plus?style=regular /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData locationPlus = IconDataRegular(0xf60a); + static const IconData locationPlus = IconData(0xf60a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-plus for icon [locationPlus] @Deprecated('Use "locationPlus" instead.') @@ -55108,7 +55108,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-plus?style=light /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData lightLocationPlus = IconDataLight(0xf60a); + static const IconData lightLocationPlus = IconData(0xf60a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-plus for icon [lightLocationPlus] @Deprecated('Use "lightLocationPlus" instead.') @@ -55118,7 +55118,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-plus?style=thin /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData thinLocationPlus = IconDataThin(0xf60a); + static const IconData thinLocationPlus = IconData(0xf60a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-plus for icon [thinLocationPlus] @Deprecated('Use "thinLocationPlus" instead.') @@ -55128,7 +55128,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-question?style=solid /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData solidLocationQuestion = IconDataSolid(0xf60b); + static const IconData solidLocationQuestion = IconData(0xf60b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-question for icon [solidLocationQuestion] @Deprecated('Use "solidLocationQuestion" instead.') @@ -55138,7 +55138,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-question?style=regular /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData locationQuestion = IconDataRegular(0xf60b); + static const IconData locationQuestion = IconData(0xf60b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-question for icon [locationQuestion] @Deprecated('Use "locationQuestion" instead.') @@ -55148,7 +55148,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-question?style=light /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData lightLocationQuestion = IconDataLight(0xf60b); + static const IconData lightLocationQuestion = IconData(0xf60b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-question for icon [lightLocationQuestion] @Deprecated('Use "lightLocationQuestion" instead.') @@ -55158,7 +55158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-question?style=thin /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData thinLocationQuestion = IconDataThin(0xf60b); + static const IconData thinLocationQuestion = IconData(0xf60b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-question for icon [thinLocationQuestion] @Deprecated('Use "thinLocationQuestion" instead.') @@ -55168,7 +55168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-smile?style=solid /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData solidLocationSmile = IconDataSolid(0xf60d); + static const IconData solidLocationSmile = IconData(0xf60d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-smile for icon [solidLocationSmile] @Deprecated('Use "solidLocationSmile" instead.') @@ -55178,7 +55178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-smile?style=regular /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData locationSmile = IconDataRegular(0xf60d); + static const IconData locationSmile = IconData(0xf60d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-smile for icon [locationSmile] @Deprecated('Use "locationSmile" instead.') @@ -55188,7 +55188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-smile?style=light /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData lightLocationSmile = IconDataLight(0xf60d); + static const IconData lightLocationSmile = IconData(0xf60d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-smile for icon [lightLocationSmile] @Deprecated('Use "lightLocationSmile" instead.') @@ -55198,7 +55198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-smile?style=thin /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData thinLocationSmile = IconDataThin(0xf60d); + static const IconData thinLocationSmile = IconData(0xf60d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-smile for icon [thinLocationSmile] @Deprecated('Use "thinLocationSmile" instead.') @@ -55208,7 +55208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-xmark?style=solid /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, uncheck, x - static const IconData solidLocationXmark = IconDataSolid(0xf60e); + static const IconData solidLocationXmark = IconData(0xf60e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-times for icon [solidLocationXmark] @Deprecated('Use "solidLocationXmark" instead.') @@ -55222,7 +55222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-xmark?style=regular /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, uncheck, x - static const IconData locationXmark = IconDataRegular(0xf60e); + static const IconData locationXmark = IconData(0xf60e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-times for icon [locationXmark] @Deprecated('Use "locationXmark" instead.') @@ -55236,7 +55236,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-xmark?style=light /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, uncheck, x - static const IconData lightLocationXmark = IconDataLight(0xf60e); + static const IconData lightLocationXmark = IconData(0xf60e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-times for icon [lightLocationXmark] @Deprecated('Use "lightLocationXmark" instead.') @@ -55250,7 +55250,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/location-xmark?style=thin /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, uncheck, x - static const IconData thinLocationXmark = IconDataThin(0xf60e); + static const IconData thinLocationXmark = IconData(0xf60e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marker-times for icon [thinLocationXmark] @Deprecated('Use "thinLocationXmark" instead.') @@ -55264,79 +55264,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock?style=solid /// admin, closed, lock, locked, open, padlock, password, privacy, private, protect, security - static const IconData solidLock = IconDataSolid(0xf023); + static const IconData solidLock = IconData(0xf023, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lock icon /// /// https://fontawesome.com/icons/lock?style=regular /// admin, closed, lock, locked, open, padlock, password, privacy, private, protect, security - static const IconData lock = IconDataRegular(0xf023); + static const IconData lock = IconData(0xf023, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lock icon /// /// https://fontawesome.com/icons/lock?style=light /// admin, closed, lock, locked, open, padlock, password, privacy, private, protect, security - static const IconData lightLock = IconDataLight(0xf023); + static const IconData lightLock = IconData(0xf023, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lock icon /// /// https://fontawesome.com/icons/lock?style=thin /// admin, closed, lock, locked, open, padlock, password, privacy, private, protect, security - static const IconData thinLock = IconDataThin(0xf023); + static const IconData thinLock = IconData(0xf023, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lock A icon /// /// https://fontawesome.com/icons/lock-a?style=solid /// capital, capslock, letter, padlock, privacy - static const IconData solidLockA = IconDataSolid(0xe422); + static const IconData solidLockA = IconData(0xe422, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lock A icon /// /// https://fontawesome.com/icons/lock-a?style=regular /// capital, capslock, letter, padlock, privacy - static const IconData lockA = IconDataRegular(0xe422); + static const IconData lockA = IconData(0xe422, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lock A icon /// /// https://fontawesome.com/icons/lock-a?style=light /// capital, capslock, letter, padlock, privacy - static const IconData lightLockA = IconDataLight(0xe422); + static const IconData lightLockA = IconData(0xe422, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lock A icon /// /// https://fontawesome.com/icons/lock-a?style=thin /// capital, capslock, letter, padlock, privacy - static const IconData thinLockA = IconDataThin(0xe422); + static const IconData thinLockA = IconData(0xe422, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lock Hashtag icon /// /// https://fontawesome.com/icons/lock-hashtag?style=solid /// number lock, numeric lock, numlock, padlock, privacy - static const IconData solidLockHashtag = IconDataSolid(0xe423); + static const IconData solidLockHashtag = IconData(0xe423, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lock Hashtag icon /// /// https://fontawesome.com/icons/lock-hashtag?style=regular /// number lock, numeric lock, numlock, padlock, privacy - static const IconData lockHashtag = IconDataRegular(0xe423); + static const IconData lockHashtag = IconData(0xe423, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lock Hashtag icon /// /// https://fontawesome.com/icons/lock-hashtag?style=light /// number lock, numeric lock, numlock, padlock, privacy - static const IconData lightLockHashtag = IconDataLight(0xe423); + static const IconData lightLockHashtag = IconData(0xe423, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lock Hashtag icon /// /// https://fontawesome.com/icons/lock-hashtag?style=thin /// number lock, numeric lock, numlock, padlock, privacy - static const IconData thinLockHashtag = IconDataThin(0xe423); + static const IconData thinLockHashtag = IconData(0xe423, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lock Keyhole icon /// /// https://fontawesome.com/icons/lock-keyhole?style=solid /// admin, lock, open, padlock, password, privacy, private, protect, security - static const IconData solidLockKeyhole = IconDataSolid(0xf30d); + static const IconData solidLockKeyhole = IconData(0xf30d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias lock-alt for icon [solidLockKeyhole] @Deprecated('Use "solidLockKeyhole" instead.') @@ -55346,7 +55346,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole?style=regular /// admin, lock, open, padlock, password, privacy, private, protect, security - static const IconData lockKeyhole = IconDataRegular(0xf30d); + static const IconData lockKeyhole = IconData(0xf30d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias lock-alt for icon [lockKeyhole] @Deprecated('Use "lockKeyhole" instead.') @@ -55356,7 +55356,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole?style=light /// admin, lock, open, padlock, password, privacy, private, protect, security - static const IconData lightLockKeyhole = IconDataLight(0xf30d); + static const IconData lightLockKeyhole = IconData(0xf30d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias lock-alt for icon [lightLockKeyhole] @Deprecated('Use "lightLockKeyhole" instead.') @@ -55366,7 +55366,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole?style=thin /// admin, lock, open, padlock, password, privacy, private, protect, security - static const IconData thinLockKeyhole = IconDataThin(0xf30d); + static const IconData thinLockKeyhole = IconData(0xf30d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias lock-alt for icon [thinLockKeyhole] @Deprecated('Use "thinLockKeyhole" instead.') @@ -55376,7 +55376,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole-open?style=solid /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData solidLockKeyholeOpen = IconDataSolid(0xf3c2); + static const IconData solidLockKeyholeOpen = IconData(0xf3c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias lock-open-alt for icon [solidLockKeyholeOpen] @Deprecated('Use "solidLockKeyholeOpen" instead.') @@ -55386,7 +55386,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole-open?style=regular /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData lockKeyholeOpen = IconDataRegular(0xf3c2); + static const IconData lockKeyholeOpen = IconData(0xf3c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias lock-open-alt for icon [lockKeyholeOpen] @Deprecated('Use "lockKeyholeOpen" instead.') @@ -55396,7 +55396,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole-open?style=light /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData lightLockKeyholeOpen = IconDataLight(0xf3c2); + static const IconData lightLockKeyholeOpen = IconData(0xf3c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias lock-open-alt for icon [lightLockKeyholeOpen] @Deprecated('Use "lightLockKeyholeOpen" instead.') @@ -55406,7 +55406,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-keyhole-open?style=thin /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData thinLockKeyholeOpen = IconDataThin(0xf3c2); + static const IconData thinLockKeyholeOpen = IconData(0xf3c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias lock-open-alt for icon [thinLockKeyholeOpen] @Deprecated('Use "thinLockKeyholeOpen" instead.') @@ -55416,55 +55416,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lock-open?style=solid /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData solidLockOpen = IconDataSolid(0xf3c1); + static const IconData solidLockOpen = IconData(0xf3c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lock Open icon /// /// https://fontawesome.com/icons/lock-open?style=regular /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData lockOpen = IconDataRegular(0xf3c1); + static const IconData lockOpen = IconData(0xf3c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lock Open icon /// /// https://fontawesome.com/icons/lock-open?style=light /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData lightLockOpen = IconDataLight(0xf3c1); + static const IconData lightLockOpen = IconData(0xf3c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lock Open icon /// /// https://fontawesome.com/icons/lock-open?style=thin /// admin, lock, open, padlock, password, privacy, private, protect, security, unlock - static const IconData thinLockOpen = IconDataThin(0xf3c1); + static const IconData thinLockOpen = IconData(0xf3c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Locust icon /// /// https://fontawesome.com/icons/locust?style=solid /// horde, infestation, locust, plague, swarm - static const IconData solidLocust = IconDataSolid(0xe520); + static const IconData solidLocust = IconData(0xe520, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Locust icon /// /// https://fontawesome.com/icons/locust?style=regular /// horde, infestation, locust, plague, swarm - static const IconData locust = IconDataRegular(0xe520); + static const IconData locust = IconData(0xe520, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Locust icon /// /// https://fontawesome.com/icons/locust?style=light /// horde, infestation, locust, plague, swarm - static const IconData lightLocust = IconDataLight(0xe520); + static const IconData lightLocust = IconData(0xe520, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Locust icon /// /// https://fontawesome.com/icons/locust?style=thin /// horde, infestation, locust, plague, swarm - static const IconData thinLocust = IconDataThin(0xe520); + static const IconData thinLocust = IconData(0xe520, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lollipop icon /// /// https://fontawesome.com/icons/lollipop?style=solid /// candy, lollypop, sucker, sugar, sweet, swirl - static const IconData solidLollipop = IconDataSolid(0xe424); + static const IconData solidLollipop = IconData(0xe424, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias lollypop for icon [solidLollipop] @Deprecated('Use "solidLollipop" instead.') @@ -55474,7 +55474,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lollipop?style=regular /// candy, lollypop, sucker, sugar, sweet, swirl - static const IconData lollipop = IconDataRegular(0xe424); + static const IconData lollipop = IconData(0xe424, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias lollypop for icon [lollipop] @Deprecated('Use "lollipop" instead.') @@ -55484,7 +55484,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lollipop?style=light /// candy, lollypop, sucker, sugar, sweet, swirl - static const IconData lightLollipop = IconDataLight(0xe424); + static const IconData lightLollipop = IconData(0xe424, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias lollypop for icon [lightLollipop] @Deprecated('Use "lightLollipop" instead.') @@ -55494,7 +55494,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lollipop?style=thin /// candy, lollypop, sucker, sugar, sweet, swirl - static const IconData thinLollipop = IconDataThin(0xe424); + static const IconData thinLollipop = IconData(0xe424, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias lollypop for icon [thinLollipop] @Deprecated('Use "thinLollipop" instead.') @@ -55504,7 +55504,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/loveseat?style=solid /// chair, couch, cushion, furniture, relax, sofa - static const IconData solidLoveseat = IconDataSolid(0xf4cc); + static const IconData solidLoveseat = IconData(0xf4cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias couch-small for icon [solidLoveseat] @Deprecated('Use "solidLoveseat" instead.') @@ -55514,7 +55514,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/loveseat?style=regular /// chair, couch, cushion, furniture, relax, sofa - static const IconData loveseat = IconDataRegular(0xf4cc); + static const IconData loveseat = IconData(0xf4cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias couch-small for icon [loveseat] @Deprecated('Use "loveseat" instead.') @@ -55524,7 +55524,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/loveseat?style=light /// chair, couch, cushion, furniture, relax, sofa - static const IconData lightLoveseat = IconDataLight(0xf4cc); + static const IconData lightLoveseat = IconData(0xf4cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias couch-small for icon [lightLoveseat] @Deprecated('Use "lightLoveseat" instead.') @@ -55534,7 +55534,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/loveseat?style=thin /// chair, couch, cushion, furniture, relax, sofa - static const IconData thinLoveseat = IconDataThin(0xf4cc); + static const IconData thinLoveseat = IconData(0xf4cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias couch-small for icon [thinLoveseat] @Deprecated('Use "thinLoveseat" instead.') @@ -55544,7 +55544,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/luchador-mask?style=solid /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData solidLuchadorMask = IconDataSolid(0xf455); + static const IconData solidLuchadorMask = IconData(0xf455, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias luchador for icon [solidLuchadorMask] @Deprecated('Use "solidLuchadorMask" instead.') @@ -55558,7 +55558,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/luchador-mask?style=regular /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData luchadorMask = IconDataRegular(0xf455); + static const IconData luchadorMask = IconData(0xf455, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias luchador for icon [luchadorMask] @Deprecated('Use "luchadorMask" instead.') @@ -55572,7 +55572,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/luchador-mask?style=light /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData lightLuchadorMask = IconDataLight(0xf455); + static const IconData lightLuchadorMask = IconData(0xf455, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias luchador for icon [lightLuchadorMask] @Deprecated('Use "lightLuchadorMask" instead.') @@ -55586,7 +55586,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/luchador-mask?style=thin /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData thinLuchadorMask = IconDataThin(0xf455); + static const IconData thinLuchadorMask = IconData(0xf455, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias luchador for icon [thinLuchadorMask] @Deprecated('Use "thinLuchadorMask" instead.') @@ -55600,137 +55600,137 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/lungs?style=solid /// air, breath, covid-19, exhalation, inhalation, lungs, organ, respiration, respiratory - static const IconData solidLungs = IconDataSolid(0xf604); + static const IconData solidLungs = IconData(0xf604, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lungs icon /// /// https://fontawesome.com/icons/lungs?style=regular /// air, breath, covid-19, exhalation, inhalation, lungs, organ, respiration, respiratory - static const IconData lungs = IconDataRegular(0xf604); + static const IconData lungs = IconData(0xf604, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lungs icon /// /// https://fontawesome.com/icons/lungs?style=light /// air, breath, covid-19, exhalation, inhalation, lungs, organ, respiration, respiratory - static const IconData lightLungs = IconDataLight(0xf604); + static const IconData lightLungs = IconData(0xf604, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lungs icon /// /// https://fontawesome.com/icons/lungs?style=thin /// air, breath, covid-19, exhalation, inhalation, lungs, organ, respiration, respiratory - static const IconData thinLungs = IconDataThin(0xf604); + static const IconData thinLungs = IconData(0xf604, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Lungs Virus icon /// /// https://fontawesome.com/icons/lungs-virus?style=solid /// breath, coronavirus, covid-19, flu, infection, pandemic, respiratory, sick - static const IconData solidLungsVirus = IconDataSolid(0xe067); + static const IconData solidLungsVirus = IconData(0xe067, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Lungs Virus icon /// /// https://fontawesome.com/icons/lungs-virus?style=regular /// breath, coronavirus, covid-19, flu, infection, pandemic, respiratory, sick - static const IconData lungsVirus = IconDataRegular(0xe067); + static const IconData lungsVirus = IconData(0xe067, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Lungs Virus icon /// /// https://fontawesome.com/icons/lungs-virus?style=light /// breath, coronavirus, covid-19, flu, infection, pandemic, respiratory, sick - static const IconData lightLungsVirus = IconDataLight(0xe067); + static const IconData lightLungsVirus = IconData(0xe067, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Lungs Virus icon /// /// https://fontawesome.com/icons/lungs-virus?style=thin /// breath, coronavirus, covid-19, flu, infection, pandemic, respiratory, sick - static const IconData thinLungsVirus = IconDataThin(0xe067); + static const IconData thinLungsVirus = IconData(0xe067, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands lyft icon /// /// https://fontawesome.com/icons/lyft?style=brands - static const IconData lyft = IconDataBrands(0xf3c3); + static const IconData lyft = IconData(0xf3c3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid M icon /// /// https://fontawesome.com/icons/m?style=solid /// Latin Capital Letter M, Latin Small Letter M, letter - static const IconData solidM = IconDataSolid(0x4d); + static const IconData solidM = IconData(0x4d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular M icon /// /// https://fontawesome.com/icons/m?style=regular /// Latin Capital Letter M, Latin Small Letter M, letter - static const IconData m = IconDataRegular(0x4d); + static const IconData m = IconData(0x4d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light M icon /// /// https://fontawesome.com/icons/m?style=light /// Latin Capital Letter M, Latin Small Letter M, letter - static const IconData lightM = IconDataLight(0x4d); + static const IconData lightM = IconData(0x4d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin M icon /// /// https://fontawesome.com/icons/m?style=thin /// Latin Capital Letter M, Latin Small Letter M, letter - static const IconData thinM = IconDataThin(0x4d); + static const IconData thinM = IconData(0x4d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mace icon /// /// https://fontawesome.com/icons/mace?style=solid /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData solidMace = IconDataSolid(0xf6f8); + static const IconData solidMace = IconData(0xf6f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mace icon /// /// https://fontawesome.com/icons/mace?style=regular /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData mace = IconDataRegular(0xf6f8); + static const IconData mace = IconData(0xf6f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mace icon /// /// https://fontawesome.com/icons/mace?style=light /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData lightMace = IconDataLight(0xf6f8); + static const IconData lightMace = IconData(0xf6f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mace icon /// /// https://fontawesome.com/icons/mace?style=thin /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData thinMace = IconDataThin(0xf6f8); + static const IconData thinMace = IconData(0xf6f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Magento icon /// /// https://fontawesome.com/icons/magento?style=brands - static const IconData magento = IconDataBrands(0xf3c4); + static const IconData magento = IconData(0xf3c4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Magnet icon /// /// https://fontawesome.com/icons/magnet?style=solid /// Attract, attraction, horseshoe, lodestone, magnet, magnetic, tool - static const IconData solidMagnet = IconDataSolid(0xf076); + static const IconData solidMagnet = IconData(0xf076, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnet icon /// /// https://fontawesome.com/icons/magnet?style=regular /// Attract, attraction, horseshoe, lodestone, magnet, magnetic, tool - static const IconData magnet = IconDataRegular(0xf076); + static const IconData magnet = IconData(0xf076, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnet icon /// /// https://fontawesome.com/icons/magnet?style=light /// Attract, attraction, horseshoe, lodestone, magnet, magnetic, tool - static const IconData lightMagnet = IconDataLight(0xf076); + static const IconData lightMagnet = IconData(0xf076, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnet icon /// /// https://fontawesome.com/icons/magnet?style=thin /// Attract, attraction, horseshoe, lodestone, magnet, magnetic, tool - static const IconData thinMagnet = IconDataThin(0xf076); + static const IconData thinMagnet = IconData(0xf076, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass icon /// /// https://fontawesome.com/icons/magnifying-glass?style=solid /// bigger, enlarge, equipment, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom - static const IconData solidMagnifyingGlass = IconDataSolid(0xf002); + static const IconData solidMagnifyingGlass = IconData(0xf002, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias search for icon [solidMagnifyingGlass] @Deprecated('Use "solidMagnifyingGlass" instead.') @@ -55740,7 +55740,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass?style=regular /// bigger, enlarge, equipment, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom - static const IconData magnifyingGlass = IconDataRegular(0xf002); + static const IconData magnifyingGlass = IconData(0xf002, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias search for icon [magnifyingGlass] @Deprecated('Use "magnifyingGlass" instead.') @@ -55750,7 +55750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass?style=light /// bigger, enlarge, equipment, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom - static const IconData lightMagnifyingGlass = IconDataLight(0xf002); + static const IconData lightMagnifyingGlass = IconData(0xf002, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias search for icon [lightMagnifyingGlass] @Deprecated('Use "lightMagnifyingGlass" instead.') @@ -55760,7 +55760,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass?style=thin /// bigger, enlarge, equipment, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom - static const IconData thinMagnifyingGlass = IconDataThin(0xf002); + static const IconData thinMagnifyingGlass = IconData(0xf002, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias search for icon [thinMagnifyingGlass] @Deprecated('Use "thinMagnifyingGlass" instead.') @@ -55770,81 +55770,81 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-arrow-right?style=solid /// find, magnifier, next, search - static const IconData solidMagnifyingGlassArrowRight = IconDataSolid(0xe521); + static const IconData solidMagnifyingGlassArrowRight = IconData(0xe521, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Arrow Right icon /// /// https://fontawesome.com/icons/magnifying-glass-arrow-right?style=regular /// find, magnifier, next, search - static const IconData magnifyingGlassArrowRight = IconDataRegular(0xe521); + static const IconData magnifyingGlassArrowRight = IconData(0xe521, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Arrow Right icon /// /// https://fontawesome.com/icons/magnifying-glass-arrow-right?style=light /// find, magnifier, next, search - static const IconData lightMagnifyingGlassArrowRight = IconDataLight(0xe521); + static const IconData lightMagnifyingGlassArrowRight = IconData(0xe521, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Arrow Right icon /// /// https://fontawesome.com/icons/magnifying-glass-arrow-right?style=thin /// find, magnifier, next, search - static const IconData thinMagnifyingGlassArrowRight = IconDataThin(0xe521); + static const IconData thinMagnifyingGlassArrowRight = IconData(0xe521, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass Arrows Rotate icon /// /// https://fontawesome.com/icons/magnifying-glass-arrows-rotate?style=solid /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, exchange, modify, refresh, reload, renew, retry, rotate, swap, zoom, clockwise, similar static const IconData solidMagnifyingGlassArrowsRotate = - IconDataSolid(0xe65e); + IconData(0xe65e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Arrows Rotate icon /// /// https://fontawesome.com/icons/magnifying-glass-arrows-rotate?style=regular /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, exchange, modify, refresh, reload, renew, retry, rotate, swap, zoom, clockwise, similar - static const IconData magnifyingGlassArrowsRotate = IconDataRegular(0xe65e); + static const IconData magnifyingGlassArrowsRotate = IconData(0xe65e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Arrows Rotate icon /// /// https://fontawesome.com/icons/magnifying-glass-arrows-rotate?style=light /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, exchange, modify, refresh, reload, renew, retry, rotate, swap, zoom, clockwise, similar static const IconData lightMagnifyingGlassArrowsRotate = - IconDataLight(0xe65e); + IconData(0xe65e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Arrows Rotate icon /// /// https://fontawesome.com/icons/magnifying-glass-arrows-rotate?style=thin /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, exchange, modify, refresh, reload, renew, retry, rotate, swap, zoom, clockwise, similar - static const IconData thinMagnifyingGlassArrowsRotate = IconDataThin(0xe65e); + static const IconData thinMagnifyingGlassArrowsRotate = IconData(0xe65e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass Chart icon /// /// https://fontawesome.com/icons/magnifying-glass-chart?style=solid /// data, graph, intelligence, analysis, chart, magnifier, market, revenue - static const IconData solidMagnifyingGlassChart = IconDataSolid(0xe522); + static const IconData solidMagnifyingGlassChart = IconData(0xe522, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Chart icon /// /// https://fontawesome.com/icons/magnifying-glass-chart?style=regular /// data, graph, intelligence, analysis, chart, magnifier, market, revenue - static const IconData magnifyingGlassChart = IconDataRegular(0xe522); + static const IconData magnifyingGlassChart = IconData(0xe522, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Chart icon /// /// https://fontawesome.com/icons/magnifying-glass-chart?style=light /// data, graph, intelligence, analysis, chart, magnifier, market, revenue - static const IconData lightMagnifyingGlassChart = IconDataLight(0xe522); + static const IconData lightMagnifyingGlassChart = IconData(0xe522, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Chart icon /// /// https://fontawesome.com/icons/magnifying-glass-chart?style=thin /// data, graph, intelligence, analysis, chart, magnifier, market, revenue - static const IconData thinMagnifyingGlassChart = IconDataThin(0xe522); + static const IconData thinMagnifyingGlassChart = IconData(0xe522, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass Dollar icon /// /// https://fontawesome.com/icons/magnifying-glass-dollar?style=solid /// bigger, enlarge, find, magnifier, magnify, money, preview, zoom - static const IconData solidMagnifyingGlassDollar = IconDataSolid(0xf688); + static const IconData solidMagnifyingGlassDollar = IconData(0xf688, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias search-dollar for icon [solidMagnifyingGlassDollar] @Deprecated('Use "solidMagnifyingGlassDollar" instead.') @@ -55854,7 +55854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-dollar?style=regular /// bigger, enlarge, find, magnifier, magnify, money, preview, zoom - static const IconData magnifyingGlassDollar = IconDataRegular(0xf688); + static const IconData magnifyingGlassDollar = IconData(0xf688, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias search-dollar for icon [magnifyingGlassDollar] @Deprecated('Use "magnifyingGlassDollar" instead.') @@ -55864,7 +55864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-dollar?style=light /// bigger, enlarge, find, magnifier, magnify, money, preview, zoom - static const IconData lightMagnifyingGlassDollar = IconDataLight(0xf688); + static const IconData lightMagnifyingGlassDollar = IconData(0xf688, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias search-dollar for icon [lightMagnifyingGlassDollar] @Deprecated('Use "lightMagnifyingGlassDollar" instead.') @@ -55874,7 +55874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-dollar?style=thin /// bigger, enlarge, find, magnifier, magnify, money, preview, zoom - static const IconData thinMagnifyingGlassDollar = IconDataThin(0xf688); + static const IconData thinMagnifyingGlassDollar = IconData(0xf688, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias search-dollar for icon [thinMagnifyingGlassDollar] @Deprecated('Use "thinMagnifyingGlassDollar" instead.') @@ -55884,7 +55884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-location?style=solid /// bigger, enlarge, find, magnifier, magnify, preview, zoom - static const IconData solidMagnifyingGlassLocation = IconDataSolid(0xf689); + static const IconData solidMagnifyingGlassLocation = IconData(0xf689, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias search-location for icon [solidMagnifyingGlassLocation] @Deprecated('Use "solidMagnifyingGlassLocation" instead.') @@ -55894,7 +55894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-location?style=regular /// bigger, enlarge, find, magnifier, magnify, preview, zoom - static const IconData magnifyingGlassLocation = IconDataRegular(0xf689); + static const IconData magnifyingGlassLocation = IconData(0xf689, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias search-location for icon [magnifyingGlassLocation] @Deprecated('Use "magnifyingGlassLocation" instead.') @@ -55904,7 +55904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-location?style=light /// bigger, enlarge, find, magnifier, magnify, preview, zoom - static const IconData lightMagnifyingGlassLocation = IconDataLight(0xf689); + static const IconData lightMagnifyingGlassLocation = IconData(0xf689, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias search-location for icon [lightMagnifyingGlassLocation] @Deprecated('Use "lightMagnifyingGlassLocation" instead.') @@ -55914,7 +55914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-location?style=thin /// bigger, enlarge, find, magnifier, magnify, preview, zoom - static const IconData thinMagnifyingGlassLocation = IconDataThin(0xf689); + static const IconData thinMagnifyingGlassLocation = IconData(0xf689, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias search-location for icon [thinMagnifyingGlassLocation] @Deprecated('Use "thinMagnifyingGlassLocation" instead.') @@ -55924,7 +55924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-minus?style=solid /// magnifier, minify, negative, smaller, zoom, zoom out - static const IconData solidMagnifyingGlassMinus = IconDataSolid(0xf010); + static const IconData solidMagnifyingGlassMinus = IconData(0xf010, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias search-minus for icon [solidMagnifyingGlassMinus] @Deprecated('Use "solidMagnifyingGlassMinus" instead.') @@ -55934,7 +55934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-minus?style=regular /// magnifier, minify, negative, smaller, zoom, zoom out - static const IconData magnifyingGlassMinus = IconDataRegular(0xf010); + static const IconData magnifyingGlassMinus = IconData(0xf010, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias search-minus for icon [magnifyingGlassMinus] @Deprecated('Use "magnifyingGlassMinus" instead.') @@ -55944,7 +55944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-minus?style=light /// magnifier, minify, negative, smaller, zoom, zoom out - static const IconData lightMagnifyingGlassMinus = IconDataLight(0xf010); + static const IconData lightMagnifyingGlassMinus = IconData(0xf010, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias search-minus for icon [lightMagnifyingGlassMinus] @Deprecated('Use "lightMagnifyingGlassMinus" instead.') @@ -55954,7 +55954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-minus?style=thin /// magnifier, minify, negative, smaller, zoom, zoom out - static const IconData thinMagnifyingGlassMinus = IconDataThin(0xf010); + static const IconData thinMagnifyingGlassMinus = IconData(0xf010, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias search-minus for icon [thinMagnifyingGlassMinus] @Deprecated('Use "thinMagnifyingGlassMinus" instead.') @@ -55964,55 +55964,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-music?style=solid /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, note, song, sound - static const IconData solidMagnifyingGlassMusic = IconDataSolid(0xe65f); + static const IconData solidMagnifyingGlassMusic = IconData(0xe65f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Music icon /// /// https://fontawesome.com/icons/magnifying-glass-music?style=regular /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, note, song, sound - static const IconData magnifyingGlassMusic = IconDataRegular(0xe65f); + static const IconData magnifyingGlassMusic = IconData(0xe65f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Music icon /// /// https://fontawesome.com/icons/magnifying-glass-music?style=light /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, note, song, sound - static const IconData lightMagnifyingGlassMusic = IconDataLight(0xe65f); + static const IconData lightMagnifyingGlassMusic = IconData(0xe65f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Music icon /// /// https://fontawesome.com/icons/magnifying-glass-music?style=thin /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, note, song, sound - static const IconData thinMagnifyingGlassMusic = IconDataThin(0xe65f); + static const IconData thinMagnifyingGlassMusic = IconData(0xe65f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass Play icon /// /// https://fontawesome.com/icons/magnifying-glass-play?style=solid /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, play, song, video - static const IconData solidMagnifyingGlassPlay = IconDataSolid(0xe660); + static const IconData solidMagnifyingGlassPlay = IconData(0xe660, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Play icon /// /// https://fontawesome.com/icons/magnifying-glass-play?style=regular /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, play, song, video - static const IconData magnifyingGlassPlay = IconDataRegular(0xe660); + static const IconData magnifyingGlassPlay = IconData(0xe660, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Play icon /// /// https://fontawesome.com/icons/magnifying-glass-play?style=light /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, play, song, video - static const IconData lightMagnifyingGlassPlay = IconDataLight(0xe660); + static const IconData lightMagnifyingGlassPlay = IconData(0xe660, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Play icon /// /// https://fontawesome.com/icons/magnifying-glass-play?style=thin /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, music, play, song, video - static const IconData thinMagnifyingGlassPlay = IconDataThin(0xe660); + static const IconData thinMagnifyingGlassPlay = IconData(0xe660, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Magnifying Glass Plus icon /// /// https://fontawesome.com/icons/magnifying-glass-plus?style=solid /// bigger, enlarge, magnifier, magnify, positive, zoom, zoom in - static const IconData solidMagnifyingGlassPlus = IconDataSolid(0xf00e); + static const IconData solidMagnifyingGlassPlus = IconData(0xf00e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias search-plus for icon [solidMagnifyingGlassPlus] @Deprecated('Use "solidMagnifyingGlassPlus" instead.') @@ -56022,7 +56022,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-plus?style=regular /// bigger, enlarge, magnifier, magnify, positive, zoom, zoom in - static const IconData magnifyingGlassPlus = IconDataRegular(0xf00e); + static const IconData magnifyingGlassPlus = IconData(0xf00e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias search-plus for icon [magnifyingGlassPlus] @Deprecated('Use "magnifyingGlassPlus" instead.') @@ -56032,7 +56032,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-plus?style=light /// bigger, enlarge, magnifier, magnify, positive, zoom, zoom in - static const IconData lightMagnifyingGlassPlus = IconDataLight(0xf00e); + static const IconData lightMagnifyingGlassPlus = IconData(0xf00e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias search-plus for icon [lightMagnifyingGlassPlus] @Deprecated('Use "lightMagnifyingGlassPlus" instead.') @@ -56042,7 +56042,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-plus?style=thin /// bigger, enlarge, magnifier, magnify, positive, zoom, zoom in - static const IconData thinMagnifyingGlassPlus = IconDataThin(0xf00e); + static const IconData thinMagnifyingGlassPlus = IconData(0xf00e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias search-plus for icon [thinMagnifyingGlassPlus] @Deprecated('Use "thinMagnifyingGlassPlus" instead.') @@ -56052,209 +56052,209 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/magnifying-glass-waveform?style=solid /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, sound, waveform - static const IconData solidMagnifyingGlassWaveform = IconDataSolid(0xe661); + static const IconData solidMagnifyingGlassWaveform = IconData(0xe661, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Magnifying Glass Waveform icon /// /// https://fontawesome.com/icons/magnifying-glass-waveform?style=regular /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, sound, waveform - static const IconData magnifyingGlassWaveform = IconDataRegular(0xe661); + static const IconData magnifyingGlassWaveform = IconData(0xe661, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Magnifying Glass Waveform icon /// /// https://fontawesome.com/icons/magnifying-glass-waveform?style=light /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, sound, waveform - static const IconData lightMagnifyingGlassWaveform = IconDataLight(0xe661); + static const IconData lightMagnifyingGlassWaveform = IconData(0xe661, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Magnifying Glass Waveform icon /// /// https://fontawesome.com/icons/magnifying-glass-waveform?style=thin /// find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, preview, search, tool, zoom, audio, sound, waveform - static const IconData thinMagnifyingGlassWaveform = IconDataThin(0xe661); + static const IconData thinMagnifyingGlassWaveform = IconData(0xe661, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mailbox icon /// /// https://fontawesome.com/icons/mailbox?style=solid /// archive, closed, closed mailbox with lowered flag, envelope, letter, lowered, mail, mailbox, newsletter, offer, post office, postal, postbox, postcard, send, stamp, usps - static const IconData solidMailbox = IconDataSolid(0xf813); + static const IconData solidMailbox = IconData(0xf813, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mailbox icon /// /// https://fontawesome.com/icons/mailbox?style=regular /// archive, closed, closed mailbox with lowered flag, envelope, letter, lowered, mail, mailbox, newsletter, offer, post office, postal, postbox, postcard, send, stamp, usps - static const IconData mailbox = IconDataRegular(0xf813); + static const IconData mailbox = IconData(0xf813, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mailbox icon /// /// https://fontawesome.com/icons/mailbox?style=light /// archive, closed, closed mailbox with lowered flag, envelope, letter, lowered, mail, mailbox, newsletter, offer, post office, postal, postbox, postcard, send, stamp, usps - static const IconData lightMailbox = IconDataLight(0xf813); + static const IconData lightMailbox = IconData(0xf813, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mailbox icon /// /// https://fontawesome.com/icons/mailbox?style=thin /// archive, closed, closed mailbox with lowered flag, envelope, letter, lowered, mail, mailbox, newsletter, offer, post office, postal, postbox, postcard, send, stamp, usps - static const IconData thinMailbox = IconDataThin(0xf813); + static const IconData thinMailbox = IconData(0xf813, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mailbox Flag Up icon /// /// https://fontawesome.com/icons/mailbox-flag-up?style=solid /// archive, envelope, letter, mail, mailbox, open, open mailbox with raised flag, post office, postal, postbox, postcard, raised, send, stamp, usps - static const IconData solidMailboxFlagUp = IconDataSolid(0xe5bb); + static const IconData solidMailboxFlagUp = IconData(0xe5bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mailbox Flag Up icon /// /// https://fontawesome.com/icons/mailbox-flag-up?style=regular /// archive, envelope, letter, mail, mailbox, open, open mailbox with raised flag, post office, postal, postbox, postcard, raised, send, stamp, usps - static const IconData mailboxFlagUp = IconDataRegular(0xe5bb); + static const IconData mailboxFlagUp = IconData(0xe5bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mailbox Flag Up icon /// /// https://fontawesome.com/icons/mailbox-flag-up?style=light /// archive, envelope, letter, mail, mailbox, open, open mailbox with raised flag, post office, postal, postbox, postcard, raised, send, stamp, usps - static const IconData lightMailboxFlagUp = IconDataLight(0xe5bb); + static const IconData lightMailboxFlagUp = IconData(0xe5bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mailbox Flag Up icon /// /// https://fontawesome.com/icons/mailbox-flag-up?style=thin /// archive, envelope, letter, mail, mailbox, open, open mailbox with raised flag, post office, postal, postbox, postcard, raised, send, stamp, usps - static const IconData thinMailboxFlagUp = IconDataThin(0xe5bb); + static const IconData thinMailboxFlagUp = IconData(0xe5bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Mailchimp icon /// /// https://fontawesome.com/icons/mailchimp?style=brands - static const IconData mailchimp = IconDataBrands(0xf59e); + static const IconData mailchimp = IconData(0xf59e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Manat Sign icon /// /// https://fontawesome.com/icons/manat-sign?style=solid /// Manat Sign, currency - static const IconData solidManatSign = IconDataSolid(0xe1d5); + static const IconData solidManatSign = IconData(0xe1d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Manat Sign icon /// /// https://fontawesome.com/icons/manat-sign?style=regular /// Manat Sign, currency - static const IconData manatSign = IconDataRegular(0xe1d5); + static const IconData manatSign = IconData(0xe1d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Manat Sign icon /// /// https://fontawesome.com/icons/manat-sign?style=light /// Manat Sign, currency - static const IconData lightManatSign = IconDataLight(0xe1d5); + static const IconData lightManatSign = IconData(0xe1d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Manat Sign icon /// /// https://fontawesome.com/icons/manat-sign?style=thin /// Manat Sign, currency - static const IconData thinManatSign = IconDataThin(0xe1d5); + static const IconData thinManatSign = IconData(0xe1d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Mandalorian icon /// /// https://fontawesome.com/icons/mandalorian?style=brands - static const IconData mandalorian = IconDataBrands(0xf50f); + static const IconData mandalorian = IconData(0xf50f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Mandolin icon /// /// https://fontawesome.com/icons/mandolin?style=solid /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconData solidMandolin = IconDataSolid(0xf6f9); + static const IconData solidMandolin = IconData(0xf6f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mandolin icon /// /// https://fontawesome.com/icons/mandolin?style=regular /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconData mandolin = IconDataRegular(0xf6f9); + static const IconData mandolin = IconData(0xf6f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mandolin icon /// /// https://fontawesome.com/icons/mandolin?style=light /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconData lightMandolin = IconDataLight(0xf6f9); + static const IconData lightMandolin = IconData(0xf6f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mandolin icon /// /// https://fontawesome.com/icons/mandolin?style=thin /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconData thinMandolin = IconDataThin(0xf6f9); + static const IconData thinMandolin = IconData(0xf6f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mango icon /// /// https://fontawesome.com/icons/mango?style=solid /// fruit, mango, tropical - static const IconData solidMango = IconDataSolid(0xe30f); + static const IconData solidMango = IconData(0xe30f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mango icon /// /// https://fontawesome.com/icons/mango?style=regular /// fruit, mango, tropical - static const IconData mango = IconDataRegular(0xe30f); + static const IconData mango = IconData(0xe30f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mango icon /// /// https://fontawesome.com/icons/mango?style=light /// fruit, mango, tropical - static const IconData lightMango = IconDataLight(0xe30f); + static const IconData lightMango = IconData(0xe30f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mango icon /// /// https://fontawesome.com/icons/mango?style=thin /// fruit, mango, tropical - static const IconData thinMango = IconDataThin(0xe30f); + static const IconData thinMango = IconData(0xe30f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Manhole icon /// /// https://fontawesome.com/icons/manhole?style=solid /// grate, sewer - static const IconData solidManhole = IconDataSolid(0xe1d6); + static const IconData solidManhole = IconData(0xe1d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Manhole icon /// /// https://fontawesome.com/icons/manhole?style=regular /// grate, sewer - static const IconData manhole = IconDataRegular(0xe1d6); + static const IconData manhole = IconData(0xe1d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Manhole icon /// /// https://fontawesome.com/icons/manhole?style=light /// grate, sewer - static const IconData lightManhole = IconDataLight(0xe1d6); + static const IconData lightManhole = IconData(0xe1d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Manhole icon /// /// https://fontawesome.com/icons/manhole?style=thin /// grate, sewer - static const IconData thinManhole = IconDataThin(0xe1d6); + static const IconData thinManhole = IconData(0xe1d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Map icon /// /// https://fontawesome.com/icons/map?style=solid /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel, world, world map - static const IconData solidMap = IconDataSolid(0xf279); + static const IconData solidMap = IconData(0xf279, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Map icon /// /// https://fontawesome.com/icons/map?style=regular /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel, world, world map - static const IconData map = IconDataRegular(0xf279); + static const IconData map = IconData(0xf279, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Map icon /// /// https://fontawesome.com/icons/map?style=light /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel, world, world map - static const IconData lightMap = IconDataLight(0xf279); + static const IconData lightMap = IconData(0xf279, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Map icon /// /// https://fontawesome.com/icons/map?style=thin /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel, world, world map - static const IconData thinMap = IconDataThin(0xf279); + static const IconData thinMap = IconData(0xf279, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Map Location icon /// /// https://fontawesome.com/icons/map-location?style=solid /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapLocation = IconDataSolid(0xf59f); + static const IconData solidMapLocation = IconData(0xf59f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marked for icon [solidMapLocation] @Deprecated('Use "solidMapLocation" instead.') @@ -56264,7 +56264,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location?style=regular /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapLocation = IconDataRegular(0xf59f); + static const IconData mapLocation = IconData(0xf59f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marked for icon [mapLocation] @Deprecated('Use "mapLocation" instead.') @@ -56274,7 +56274,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location?style=light /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapLocation = IconDataLight(0xf59f); + static const IconData lightMapLocation = IconData(0xf59f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marked for icon [lightMapLocation] @Deprecated('Use "lightMapLocation" instead.') @@ -56284,7 +56284,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location?style=thin /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData thinMapLocation = IconDataThin(0xf59f); + static const IconData thinMapLocation = IconData(0xf59f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marked for icon [thinMapLocation] @Deprecated('Use "thinMapLocation" instead.') @@ -56294,7 +56294,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location-dot?style=solid /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapLocationDot = IconDataSolid(0xf5a0); + static const IconData solidMapLocationDot = IconData(0xf5a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-marked-alt for icon [solidMapLocationDot] @Deprecated('Use "solidMapLocationDot" instead.') @@ -56304,7 +56304,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location-dot?style=regular /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapLocationDot = IconDataRegular(0xf5a0); + static const IconData mapLocationDot = IconData(0xf5a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-marked-alt for icon [mapLocationDot] @Deprecated('Use "mapLocationDot" instead.') @@ -56314,7 +56314,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location-dot?style=light /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapLocationDot = IconDataLight(0xf5a0); + static const IconData lightMapLocationDot = IconData(0xf5a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-marked-alt for icon [lightMapLocationDot] @Deprecated('Use "lightMapLocationDot" instead.') @@ -56324,7 +56324,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-location-dot?style=thin /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData thinMapLocationDot = IconDataThin(0xf5a0); + static const IconData thinMapLocationDot = IconData(0xf5a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-marked-alt for icon [thinMapLocationDot] @Deprecated('Use "thinMapLocationDot" instead.') @@ -56334,180 +56334,180 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/map-pin?style=solid /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, pushpin, round pushpin, travel - static const IconData solidMapPin = IconDataSolid(0xf276); + static const IconData solidMapPin = IconData(0xf276, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Map Pin icon /// /// https://fontawesome.com/icons/map-pin?style=regular /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, pushpin, round pushpin, travel - static const IconData mapPin = IconDataRegular(0xf276); + static const IconData mapPin = IconData(0xf276, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Map Pin icon /// /// https://fontawesome.com/icons/map-pin?style=light /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, pushpin, round pushpin, travel - static const IconData lightMapPin = IconDataLight(0xf276); + static const IconData lightMapPin = IconData(0xf276, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Map Pin icon /// /// https://fontawesome.com/icons/map-pin?style=thin /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, pushpin, round pushpin, travel - static const IconData thinMapPin = IconDataThin(0xf276); + static const IconData thinMapPin = IconData(0xf276, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Markdown icon /// /// https://fontawesome.com/icons/markdown?style=brands - static const IconData markdown = IconDataBrands(0xf60f); + static const IconData markdown = IconData(0xf60f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Marker icon /// /// https://fontawesome.com/icons/marker?style=solid /// design, edit, modify, sharpie, update, write - static const IconData solidMarker = IconDataSolid(0xf5a1); + static const IconData solidMarker = IconData(0xf5a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Marker icon /// /// https://fontawesome.com/icons/marker?style=regular /// design, edit, modify, sharpie, update, write - static const IconData marker = IconDataRegular(0xf5a1); + static const IconData marker = IconData(0xf5a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Marker icon /// /// https://fontawesome.com/icons/marker?style=light /// design, edit, modify, sharpie, update, write - static const IconData lightMarker = IconDataLight(0xf5a1); + static const IconData lightMarker = IconData(0xf5a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Marker icon /// /// https://fontawesome.com/icons/marker?style=thin /// design, edit, modify, sharpie, update, write - static const IconData thinMarker = IconDataThin(0xf5a1); + static const IconData thinMarker = IconData(0xf5a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars icon /// /// https://fontawesome.com/icons/mars?style=solid /// gender, male, male sign, man - static const IconData solidMars = IconDataSolid(0xf222); + static const IconData solidMars = IconData(0xf222, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mars icon /// /// https://fontawesome.com/icons/mars?style=regular /// gender, male, male sign, man - static const IconData mars = IconDataRegular(0xf222); + static const IconData mars = IconData(0xf222, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mars icon /// /// https://fontawesome.com/icons/mars?style=light /// gender, male, male sign, man - static const IconData lightMars = IconDataLight(0xf222); + static const IconData lightMars = IconData(0xf222, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mars icon /// /// https://fontawesome.com/icons/mars?style=thin /// gender, male, male sign, man - static const IconData thinMars = IconDataThin(0xf222); + static const IconData thinMars = IconData(0xf222, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars And Venus icon /// /// https://fontawesome.com/icons/mars-and-venus?style=solid /// Male and Female Sign, female, gender, intersex, male, transgender - static const IconData solidMarsAndVenus = IconDataSolid(0xf224); + static const IconData solidMarsAndVenus = IconData(0xf224, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mars And Venus icon /// /// https://fontawesome.com/icons/mars-and-venus?style=regular /// Male and Female Sign, female, gender, intersex, male, transgender - static const IconData marsAndVenus = IconDataRegular(0xf224); + static const IconData marsAndVenus = IconData(0xf224, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mars And Venus icon /// /// https://fontawesome.com/icons/mars-and-venus?style=light /// Male and Female Sign, female, gender, intersex, male, transgender - static const IconData lightMarsAndVenus = IconDataLight(0xf224); + static const IconData lightMarsAndVenus = IconData(0xf224, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mars And Venus icon /// /// https://fontawesome.com/icons/mars-and-venus?style=thin /// Male and Female Sign, female, gender, intersex, male, transgender - static const IconData thinMarsAndVenus = IconDataThin(0xf224); + static const IconData thinMarsAndVenus = IconData(0xf224, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars And Venus Burst icon /// /// https://fontawesome.com/icons/mars-and-venus-burst?style=solid /// gender, uer, violence - static const IconData solidMarsAndVenusBurst = IconDataSolid(0xe523); + static const IconData solidMarsAndVenusBurst = IconData(0xe523, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mars And Venus Burst icon /// /// https://fontawesome.com/icons/mars-and-venus-burst?style=regular /// gender, uer, violence - static const IconData marsAndVenusBurst = IconDataRegular(0xe523); + static const IconData marsAndVenusBurst = IconData(0xe523, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mars And Venus Burst icon /// /// https://fontawesome.com/icons/mars-and-venus-burst?style=light /// gender, uer, violence - static const IconData lightMarsAndVenusBurst = IconDataLight(0xe523); + static const IconData lightMarsAndVenusBurst = IconData(0xe523, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mars And Venus Burst icon /// /// https://fontawesome.com/icons/mars-and-venus-burst?style=thin /// gender, uer, violence - static const IconData thinMarsAndVenusBurst = IconDataThin(0xe523); + static const IconData thinMarsAndVenusBurst = IconData(0xe523, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars Double icon /// /// https://fontawesome.com/icons/mars-double?style=solid /// Doubled Male Sign, gay, gender, male, men - static const IconData solidMarsDouble = IconDataSolid(0xf227); + static const IconData solidMarsDouble = IconData(0xf227, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mars Double icon /// /// https://fontawesome.com/icons/mars-double?style=regular /// Doubled Male Sign, gay, gender, male, men - static const IconData marsDouble = IconDataRegular(0xf227); + static const IconData marsDouble = IconData(0xf227, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mars Double icon /// /// https://fontawesome.com/icons/mars-double?style=light /// Doubled Male Sign, gay, gender, male, men - static const IconData lightMarsDouble = IconDataLight(0xf227); + static const IconData lightMarsDouble = IconData(0xf227, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mars Double icon /// /// https://fontawesome.com/icons/mars-double?style=thin /// Doubled Male Sign, gay, gender, male, men - static const IconData thinMarsDouble = IconDataThin(0xf227); + static const IconData thinMarsDouble = IconData(0xf227, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars Stroke icon /// /// https://fontawesome.com/icons/mars-stroke?style=solid /// Male with Stroke Sign, gender, transgender - static const IconData solidMarsStroke = IconDataSolid(0xf229); + static const IconData solidMarsStroke = IconData(0xf229, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mars Stroke icon /// /// https://fontawesome.com/icons/mars-stroke?style=regular /// Male with Stroke Sign, gender, transgender - static const IconData marsStroke = IconDataRegular(0xf229); + static const IconData marsStroke = IconData(0xf229, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mars Stroke icon /// /// https://fontawesome.com/icons/mars-stroke?style=light /// Male with Stroke Sign, gender, transgender - static const IconData lightMarsStroke = IconDataLight(0xf229); + static const IconData lightMarsStroke = IconData(0xf229, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mars Stroke icon /// /// https://fontawesome.com/icons/mars-stroke?style=thin /// Male with Stroke Sign, gender, transgender - static const IconData thinMarsStroke = IconDataThin(0xf229); + static const IconData thinMarsStroke = IconData(0xf229, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mars Stroke Right icon /// /// https://fontawesome.com/icons/mars-stroke-right?style=solid /// Horizontal Male with Stroke Sign, gender - static const IconData solidMarsStrokeRight = IconDataSolid(0xf22b); + static const IconData solidMarsStrokeRight = IconData(0xf22b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-h for icon [solidMarsStrokeRight] @Deprecated('Use "solidMarsStrokeRight" instead.') @@ -56517,7 +56517,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-right?style=regular /// Horizontal Male with Stroke Sign, gender - static const IconData marsStrokeRight = IconDataRegular(0xf22b); + static const IconData marsStrokeRight = IconData(0xf22b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-h for icon [marsStrokeRight] @Deprecated('Use "marsStrokeRight" instead.') @@ -56527,7 +56527,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-right?style=light /// Horizontal Male with Stroke Sign, gender - static const IconData lightMarsStrokeRight = IconDataLight(0xf22b); + static const IconData lightMarsStrokeRight = IconData(0xf22b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-h for icon [lightMarsStrokeRight] @Deprecated('Use "lightMarsStrokeRight" instead.') @@ -56537,7 +56537,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-right?style=thin /// Horizontal Male with Stroke Sign, gender - static const IconData thinMarsStrokeRight = IconDataThin(0xf22b); + static const IconData thinMarsStrokeRight = IconData(0xf22b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-h for icon [thinMarsStrokeRight] @Deprecated('Use "thinMarsStrokeRight" instead.') @@ -56547,7 +56547,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-up?style=solid /// Vertical Male with Stroke Sign, gender - static const IconData solidMarsStrokeUp = IconDataSolid(0xf22a); + static const IconData solidMarsStrokeUp = IconData(0xf22a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-v for icon [solidMarsStrokeUp] @Deprecated('Use "solidMarsStrokeUp" instead.') @@ -56557,7 +56557,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-up?style=regular /// Vertical Male with Stroke Sign, gender - static const IconData marsStrokeUp = IconDataRegular(0xf22a); + static const IconData marsStrokeUp = IconData(0xf22a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-v for icon [marsStrokeUp] @Deprecated('Use "marsStrokeUp" instead.') @@ -56567,7 +56567,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-up?style=light /// Vertical Male with Stroke Sign, gender - static const IconData lightMarsStrokeUp = IconDataLight(0xf22a); + static const IconData lightMarsStrokeUp = IconData(0xf22a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-v for icon [lightMarsStrokeUp] @Deprecated('Use "lightMarsStrokeUp" instead.') @@ -56577,7 +56577,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mars-stroke-up?style=thin /// Vertical Male with Stroke Sign, gender - static const IconData thinMarsStrokeUp = IconDataThin(0xf22a); + static const IconData thinMarsStrokeUp = IconData(0xf22a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mars-stroke-v for icon [thinMarsStrokeUp] @Deprecated('Use "thinMarsStrokeUp" instead.') @@ -56587,7 +56587,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass?style=solid /// alcohol, bar, beverage, cocktail, cocktail glass, drink, glass, liquor - static const IconData solidMartiniGlass = IconDataSolid(0xf57b); + static const IconData solidMartiniGlass = IconData(0xf57b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini-alt for icon [solidMartiniGlass] @Deprecated('Use "solidMartiniGlass" instead.') @@ -56597,7 +56597,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass?style=regular /// alcohol, bar, beverage, cocktail, cocktail glass, drink, glass, liquor - static const IconData martiniGlass = IconDataRegular(0xf57b); + static const IconData martiniGlass = IconData(0xf57b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini-alt for icon [martiniGlass] @Deprecated('Use "martiniGlass" instead.') @@ -56607,7 +56607,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass?style=light /// alcohol, bar, beverage, cocktail, cocktail glass, drink, glass, liquor - static const IconData lightMartiniGlass = IconDataLight(0xf57b); + static const IconData lightMartiniGlass = IconData(0xf57b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini-alt for icon [lightMartiniGlass] @Deprecated('Use "lightMartiniGlass" instead.') @@ -56617,7 +56617,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass?style=thin /// alcohol, bar, beverage, cocktail, cocktail glass, drink, glass, liquor - static const IconData thinMartiniGlass = IconDataThin(0xf57b); + static const IconData thinMartiniGlass = IconData(0xf57b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini-alt for icon [thinMartiniGlass] @Deprecated('Use "thinMartiniGlass" instead.') @@ -56627,7 +56627,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-citrus?style=solid /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData solidMartiniGlassCitrus = IconDataSolid(0xf561); + static const IconData solidMartiniGlassCitrus = IconData(0xf561, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cocktail for icon [solidMartiniGlassCitrus] @Deprecated('Use "solidMartiniGlassCitrus" instead.') @@ -56637,7 +56637,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-citrus?style=regular /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData martiniGlassCitrus = IconDataRegular(0xf561); + static const IconData martiniGlassCitrus = IconData(0xf561, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cocktail for icon [martiniGlassCitrus] @Deprecated('Use "martiniGlassCitrus" instead.') @@ -56647,7 +56647,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-citrus?style=light /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData lightMartiniGlassCitrus = IconDataLight(0xf561); + static const IconData lightMartiniGlassCitrus = IconData(0xf561, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cocktail for icon [lightMartiniGlassCitrus] @Deprecated('Use "lightMartiniGlassCitrus" instead.') @@ -56657,7 +56657,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-citrus?style=thin /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData thinMartiniGlassCitrus = IconDataThin(0xf561); + static const IconData thinMartiniGlassCitrus = IconData(0xf561, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cocktail for icon [thinMartiniGlassCitrus] @Deprecated('Use "thinMartiniGlassCitrus" instead.') @@ -56667,7 +56667,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-empty?style=solid /// alcohol, bar, beverage, drink, liquor - static const IconData solidMartiniGlassEmpty = IconDataSolid(0xf000); + static const IconData solidMartiniGlassEmpty = IconData(0xf000, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini for icon [solidMartiniGlassEmpty] @Deprecated('Use "solidMartiniGlassEmpty" instead.') @@ -56677,7 +56677,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-empty?style=regular /// alcohol, bar, beverage, drink, liquor - static const IconData martiniGlassEmpty = IconDataRegular(0xf000); + static const IconData martiniGlassEmpty = IconData(0xf000, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini for icon [martiniGlassEmpty] @Deprecated('Use "martiniGlassEmpty" instead.') @@ -56687,7 +56687,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-empty?style=light /// alcohol, bar, beverage, drink, liquor - static const IconData lightMartiniGlassEmpty = IconDataLight(0xf000); + static const IconData lightMartiniGlassEmpty = IconData(0xf000, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini for icon [lightMartiniGlassEmpty] @Deprecated('Use "lightMartiniGlassEmpty" instead.') @@ -56697,7 +56697,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/martini-glass-empty?style=thin /// alcohol, bar, beverage, drink, liquor - static const IconData thinMartiniGlassEmpty = IconDataThin(0xf000); + static const IconData thinMartiniGlassEmpty = IconData(0xf000, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-martini for icon [thinMartiniGlassEmpty] @Deprecated('Use "thinMartiniGlassEmpty" instead.') @@ -56707,103 +56707,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mask?style=solid /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData solidMask = IconDataSolid(0xf6fa); + static const IconData solidMask = IconData(0xf6fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mask icon /// /// https://fontawesome.com/icons/mask?style=regular /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData mask = IconDataRegular(0xf6fa); + static const IconData mask = IconData(0xf6fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mask icon /// /// https://fontawesome.com/icons/mask?style=light /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData lightMask = IconDataLight(0xf6fa); + static const IconData lightMask = IconData(0xf6fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mask icon /// /// https://fontawesome.com/icons/mask?style=thin /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData thinMask = IconDataThin(0xf6fa); + static const IconData thinMask = IconData(0xf6fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mask Face icon /// /// https://fontawesome.com/icons/mask-face?style=solid /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, virus - static const IconData solidMaskFace = IconDataSolid(0xe1d7); + static const IconData solidMaskFace = IconData(0xe1d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mask Face icon /// /// https://fontawesome.com/icons/mask-face?style=regular /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, virus - static const IconData maskFace = IconDataRegular(0xe1d7); + static const IconData maskFace = IconData(0xe1d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mask Face icon /// /// https://fontawesome.com/icons/mask-face?style=light /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, virus - static const IconData lightMaskFace = IconDataLight(0xe1d7); + static const IconData lightMaskFace = IconData(0xe1d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mask Face icon /// /// https://fontawesome.com/icons/mask-face?style=thin /// breath, coronavirus, covid-19, filter, flu, infection, pandemic, respirator, virus - static const IconData thinMaskFace = IconDataThin(0xe1d7); + static const IconData thinMaskFace = IconData(0xe1d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mask Snorkel icon /// /// https://fontawesome.com/icons/mask-snorkel?style=solid /// dive, diving, diving mask, scuba, snorkeling, swimming, underwater - static const IconData solidMaskSnorkel = IconDataSolid(0xe3b7); + static const IconData solidMaskSnorkel = IconData(0xe3b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mask Snorkel icon /// /// https://fontawesome.com/icons/mask-snorkel?style=regular /// dive, diving, diving mask, scuba, snorkeling, swimming, underwater - static const IconData maskSnorkel = IconDataRegular(0xe3b7); + static const IconData maskSnorkel = IconData(0xe3b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mask Snorkel icon /// /// https://fontawesome.com/icons/mask-snorkel?style=light /// dive, diving, diving mask, scuba, snorkeling, swimming, underwater - static const IconData lightMaskSnorkel = IconDataLight(0xe3b7); + static const IconData lightMaskSnorkel = IconData(0xe3b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mask Snorkel icon /// /// https://fontawesome.com/icons/mask-snorkel?style=thin /// dive, diving, diving mask, scuba, snorkeling, swimming, underwater - static const IconData thinMaskSnorkel = IconDataThin(0xe3b7); + static const IconData thinMaskSnorkel = IconData(0xe3b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mask Ventilator icon /// /// https://fontawesome.com/icons/mask-ventilator?style=solid /// breath, gas, mask, oxygen, respirator, ventilator - static const IconData solidMaskVentilator = IconDataSolid(0xe524); + static const IconData solidMaskVentilator = IconData(0xe524, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mask Ventilator icon /// /// https://fontawesome.com/icons/mask-ventilator?style=regular /// breath, gas, mask, oxygen, respirator, ventilator - static const IconData maskVentilator = IconDataRegular(0xe524); + static const IconData maskVentilator = IconData(0xe524, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mask Ventilator icon /// /// https://fontawesome.com/icons/mask-ventilator?style=light /// breath, gas, mask, oxygen, respirator, ventilator - static const IconData lightMaskVentilator = IconDataLight(0xe524); + static const IconData lightMaskVentilator = IconData(0xe524, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mask Ventilator icon /// /// https://fontawesome.com/icons/mask-ventilator?style=thin /// breath, gas, mask, oxygen, respirator, ventilator - static const IconData thinMaskVentilator = IconDataThin(0xe524); + static const IconData thinMaskVentilator = IconData(0xe524, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Masks Theater icon /// /// https://fontawesome.com/icons/masks-theater?style=solid /// art, comedy, mask, perform, performing, performing arts, theater, theatre, tragedy - static const IconData solidMasksTheater = IconDataSolid(0xf630); + static const IconData solidMasksTheater = IconData(0xf630, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias theater-masks for icon [solidMasksTheater] @Deprecated('Use "solidMasksTheater" instead.') @@ -56813,7 +56813,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/masks-theater?style=regular /// art, comedy, mask, perform, performing, performing arts, theater, theatre, tragedy - static const IconData masksTheater = IconDataRegular(0xf630); + static const IconData masksTheater = IconData(0xf630, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias theater-masks for icon [masksTheater] @Deprecated('Use "masksTheater" instead.') @@ -56823,7 +56823,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/masks-theater?style=light /// art, comedy, mask, perform, performing, performing arts, theater, theatre, tragedy - static const IconData lightMasksTheater = IconDataLight(0xf630); + static const IconData lightMasksTheater = IconData(0xf630, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias theater-masks for icon [lightMasksTheater] @Deprecated('Use "lightMasksTheater" instead.') @@ -56833,7 +56833,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/masks-theater?style=thin /// art, comedy, mask, perform, performing, performing arts, theater, theatre, tragedy - static const IconData thinMasksTheater = IconDataThin(0xf630); + static const IconData thinMasksTheater = IconData(0xf630, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias theater-masks for icon [thinMasksTheater] @Deprecated('Use "thinMasksTheater" instead.') @@ -56842,42 +56842,42 @@ class FontAwesomeIcons { /// Brands Mastodon icon /// /// https://fontawesome.com/icons/mastodon?style=brands - static const IconData mastodon = IconDataBrands(0xf4f6); + static const IconData mastodon = IconData(0xf4f6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Mattress Pillow icon /// /// https://fontawesome.com/icons/mattress-pillow?style=solid /// air mattress, mattress, pillow, rest, sleep - static const IconData solidMattressPillow = IconDataSolid(0xe525); + static const IconData solidMattressPillow = IconData(0xe525, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mattress Pillow icon /// /// https://fontawesome.com/icons/mattress-pillow?style=regular /// air mattress, mattress, pillow, rest, sleep - static const IconData mattressPillow = IconDataRegular(0xe525); + static const IconData mattressPillow = IconData(0xe525, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mattress Pillow icon /// /// https://fontawesome.com/icons/mattress-pillow?style=light /// air mattress, mattress, pillow, rest, sleep - static const IconData lightMattressPillow = IconDataLight(0xe525); + static const IconData lightMattressPillow = IconData(0xe525, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mattress Pillow icon /// /// https://fontawesome.com/icons/mattress-pillow?style=thin /// air mattress, mattress, pillow, rest, sleep - static const IconData thinMattressPillow = IconDataThin(0xe525); + static const IconData thinMattressPillow = IconData(0xe525, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands MaxCDN icon /// /// https://fontawesome.com/icons/maxcdn?style=brands - static const IconData maxcdn = IconDataBrands(0xf136); + static const IconData maxcdn = IconData(0xf136, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Maximize icon /// /// https://fontawesome.com/icons/maximize?style=solid /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData solidMaximize = IconDataSolid(0xf31e); + static const IconData solidMaximize = IconData(0xf31e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows-alt for icon [solidMaximize] @Deprecated('Use "solidMaximize" instead.') @@ -56887,7 +56887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/maximize?style=regular /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData maximize = IconDataRegular(0xf31e); + static const IconData maximize = IconData(0xf31e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows-alt for icon [maximize] @Deprecated('Use "maximize" instead.') @@ -56897,7 +56897,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/maximize?style=light /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData lightMaximize = IconDataLight(0xf31e); + static const IconData lightMaximize = IconData(0xf31e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows-alt for icon [lightMaximize] @Deprecated('Use "lightMaximize" instead.') @@ -56907,7 +56907,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/maximize?style=thin /// maximize, resize, scale, arrows, bigger, enlarge, fullscreen, resize, size, expand - static const IconData thinMaximize = IconDataThin(0xf31e); + static const IconData thinMaximize = IconData(0xf31e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias expand-arrows-alt for icon [thinMaximize] @Deprecated('Use "thinMaximize" instead.') @@ -56916,65 +56916,65 @@ class FontAwesomeIcons { /// Brands Material Design for Bootstrap icon /// /// https://fontawesome.com/icons/mdb?style=brands - static const IconData mdb = IconDataBrands(0xf8ca); + static const IconData mdb = IconData(0xf8ca, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Meat icon /// /// https://fontawesome.com/icons/meat?style=solid /// beef, bone, ham, meat, meat on bone, mutton, pork, veal - static const IconData solidMeat = IconDataSolid(0xf814); + static const IconData solidMeat = IconData(0xf814, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meat icon /// /// https://fontawesome.com/icons/meat?style=regular /// beef, bone, ham, meat, meat on bone, mutton, pork, veal - static const IconData meat = IconDataRegular(0xf814); + static const IconData meat = IconData(0xf814, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meat icon /// /// https://fontawesome.com/icons/meat?style=light /// beef, bone, ham, meat, meat on bone, mutton, pork, veal - static const IconData lightMeat = IconDataLight(0xf814); + static const IconData lightMeat = IconData(0xf814, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meat icon /// /// https://fontawesome.com/icons/meat?style=thin /// beef, bone, ham, meat, meat on bone, mutton, pork, veal - static const IconData thinMeat = IconDataThin(0xf814); + static const IconData thinMeat = IconData(0xf814, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Medal icon /// /// https://fontawesome.com/icons/medal?style=solid /// award, guarantee, medal, quality, ribbon, sports medal, star, trophy, warranty - static const IconData solidMedal = IconDataSolid(0xf5a2); + static const IconData solidMedal = IconData(0xf5a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Medal icon /// /// https://fontawesome.com/icons/medal?style=regular /// award, guarantee, medal, quality, ribbon, sports medal, star, trophy, warranty - static const IconData medal = IconDataRegular(0xf5a2); + static const IconData medal = IconData(0xf5a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Medal icon /// /// https://fontawesome.com/icons/medal?style=light /// award, guarantee, medal, quality, ribbon, sports medal, star, trophy, warranty - static const IconData lightMedal = IconDataLight(0xf5a2); + static const IconData lightMedal = IconData(0xf5a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Medal icon /// /// https://fontawesome.com/icons/medal?style=thin /// award, guarantee, medal, quality, ribbon, sports medal, star, trophy, warranty - static const IconData thinMedal = IconDataThin(0xf5a2); + static const IconData thinMedal = IconData(0xf5a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands MedApps icon /// /// https://fontawesome.com/icons/medapps?style=brands - static const IconData medapps = IconDataBrands(0xf3c6); + static const IconData medapps = IconData(0xf3c6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Medium icon /// /// https://fontawesome.com/icons/medium?style=brands - static const IconData medium = IconDataBrands(0xf23a); + static const IconData medium = IconData(0xf23a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias medium-m for icon [medium] @Deprecated('Use "medium" instead.') @@ -56983,292 +56983,292 @@ class FontAwesomeIcons { /// Brands MRT icon /// /// https://fontawesome.com/icons/medrt?style=brands - static const IconData medrt = IconDataBrands(0xf3c8); + static const IconData medrt = IconData(0xf3c8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Meetup icon /// /// https://fontawesome.com/icons/meetup?style=brands - static const IconData meetup = IconDataBrands(0xf2e0); + static const IconData meetup = IconData(0xf2e0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Megaphone icon /// /// https://fontawesome.com/icons/megaphone?style=solid /// announcement, broadcast, bullhorn, cheering, louder, megaphone, share - static const IconData solidMegaphone = IconDataSolid(0xf675); + static const IconData solidMegaphone = IconData(0xf675, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Megaphone icon /// /// https://fontawesome.com/icons/megaphone?style=regular /// announcement, broadcast, bullhorn, cheering, louder, megaphone, share - static const IconData megaphone = IconDataRegular(0xf675); + static const IconData megaphone = IconData(0xf675, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Megaphone icon /// /// https://fontawesome.com/icons/megaphone?style=light /// announcement, broadcast, bullhorn, cheering, louder, megaphone, share - static const IconData lightMegaphone = IconDataLight(0xf675); + static const IconData lightMegaphone = IconData(0xf675, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Megaphone icon /// /// https://fontawesome.com/icons/megaphone?style=thin /// announcement, broadcast, bullhorn, cheering, louder, megaphone, share - static const IconData thinMegaphone = IconDataThin(0xf675); + static const IconData thinMegaphone = IconData(0xf675, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Megaport icon /// /// https://fontawesome.com/icons/megaport?style=brands - static const IconData megaport = IconDataBrands(0xf5a3); + static const IconData megaport = IconData(0xf5a3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Melon icon /// /// https://fontawesome.com/icons/melon?style=solid /// cantaloupe, fruit, honeydew, melon, muskmelon, watermelon - static const IconData solidMelon = IconDataSolid(0xe310); + static const IconData solidMelon = IconData(0xe310, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Melon icon /// /// https://fontawesome.com/icons/melon?style=regular /// cantaloupe, fruit, honeydew, melon, muskmelon, watermelon - static const IconData melon = IconDataRegular(0xe310); + static const IconData melon = IconData(0xe310, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Melon icon /// /// https://fontawesome.com/icons/melon?style=light /// cantaloupe, fruit, honeydew, melon, muskmelon, watermelon - static const IconData lightMelon = IconDataLight(0xe310); + static const IconData lightMelon = IconData(0xe310, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Melon icon /// /// https://fontawesome.com/icons/melon?style=thin /// cantaloupe, fruit, honeydew, melon, muskmelon, watermelon - static const IconData thinMelon = IconDataThin(0xe310); + static const IconData thinMelon = IconData(0xe310, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Melon Slice icon /// /// https://fontawesome.com/icons/melon-slice?style=solid /// cantaloupe, honeydew, muskmelon, wedge - static const IconData solidMelonSlice = IconDataSolid(0xe311); + static const IconData solidMelonSlice = IconData(0xe311, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Melon Slice icon /// /// https://fontawesome.com/icons/melon-slice?style=regular /// cantaloupe, honeydew, muskmelon, wedge - static const IconData melonSlice = IconDataRegular(0xe311); + static const IconData melonSlice = IconData(0xe311, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Melon Slice icon /// /// https://fontawesome.com/icons/melon-slice?style=light /// cantaloupe, honeydew, muskmelon, wedge - static const IconData lightMelonSlice = IconDataLight(0xe311); + static const IconData lightMelonSlice = IconData(0xe311, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Melon Slice icon /// /// https://fontawesome.com/icons/melon-slice?style=thin /// cantaloupe, honeydew, muskmelon, wedge - static const IconData thinMelonSlice = IconDataThin(0xe311); + static const IconData thinMelonSlice = IconData(0xe311, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Memo icon /// /// https://fontawesome.com/icons/memo?style=solid /// cv, file, idea, note, notepad, page, paper - static const IconData solidMemo = IconDataSolid(0xe1d8); + static const IconData solidMemo = IconData(0xe1d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Memo icon /// /// https://fontawesome.com/icons/memo?style=regular /// cv, file, idea, note, notepad, page, paper - static const IconData memo = IconDataRegular(0xe1d8); + static const IconData memo = IconData(0xe1d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Memo icon /// /// https://fontawesome.com/icons/memo?style=light /// cv, file, idea, note, notepad, page, paper - static const IconData lightMemo = IconDataLight(0xe1d8); + static const IconData lightMemo = IconData(0xe1d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Memo icon /// /// https://fontawesome.com/icons/memo?style=thin /// cv, file, idea, note, notepad, page, paper - static const IconData thinMemo = IconDataThin(0xe1d8); + static const IconData thinMemo = IconData(0xe1d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Memo Circle Check icon /// /// https://fontawesome.com/icons/memo-circle-check?style=solid /// check, cv, done, enable, file, idea, not affected, note, notepad, ok, okay, page, paper, validate, working - static const IconData solidMemoCircleCheck = IconDataSolid(0xe1d9); + static const IconData solidMemoCircleCheck = IconData(0xe1d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Memo Circle Check icon /// /// https://fontawesome.com/icons/memo-circle-check?style=regular /// check, cv, done, enable, file, idea, not affected, note, notepad, ok, okay, page, paper, validate, working - static const IconData memoCircleCheck = IconDataRegular(0xe1d9); + static const IconData memoCircleCheck = IconData(0xe1d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Memo Circle Check icon /// /// https://fontawesome.com/icons/memo-circle-check?style=light /// check, cv, done, enable, file, idea, not affected, note, notepad, ok, okay, page, paper, validate, working - static const IconData lightMemoCircleCheck = IconDataLight(0xe1d9); + static const IconData lightMemoCircleCheck = IconData(0xe1d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Memo Circle Check icon /// /// https://fontawesome.com/icons/memo-circle-check?style=thin /// check, cv, done, enable, file, idea, not affected, note, notepad, ok, okay, page, paper, validate, working - static const IconData thinMemoCircleCheck = IconDataThin(0xe1d9); + static const IconData thinMemoCircleCheck = IconData(0xe1d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Memo Circle Info icon /// /// https://fontawesome.com/icons/memo-circle-info?style=solid /// cv, details, file, idea, information, note, notepad, page, paper - static const IconData solidMemoCircleInfo = IconDataSolid(0xe49a); + static const IconData solidMemoCircleInfo = IconData(0xe49a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Memo Circle Info icon /// /// https://fontawesome.com/icons/memo-circle-info?style=regular /// cv, details, file, idea, information, note, notepad, page, paper - static const IconData memoCircleInfo = IconDataRegular(0xe49a); + static const IconData memoCircleInfo = IconData(0xe49a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Memo Circle Info icon /// /// https://fontawesome.com/icons/memo-circle-info?style=light /// cv, details, file, idea, information, note, notepad, page, paper - static const IconData lightMemoCircleInfo = IconDataLight(0xe49a); + static const IconData lightMemoCircleInfo = IconData(0xe49a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Memo Circle Info icon /// /// https://fontawesome.com/icons/memo-circle-info?style=thin /// cv, details, file, idea, information, note, notepad, page, paper - static const IconData thinMemoCircleInfo = IconDataThin(0xe49a); + static const IconData thinMemoCircleInfo = IconData(0xe49a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Memo Pad icon /// /// https://fontawesome.com/icons/memo-pad?style=solid /// cv, file, idea, note, notepad, paper - static const IconData solidMemoPad = IconDataSolid(0xe1da); + static const IconData solidMemoPad = IconData(0xe1da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Memo Pad icon /// /// https://fontawesome.com/icons/memo-pad?style=regular /// cv, file, idea, note, notepad, paper - static const IconData memoPad = IconDataRegular(0xe1da); + static const IconData memoPad = IconData(0xe1da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Memo Pad icon /// /// https://fontawesome.com/icons/memo-pad?style=light /// cv, file, idea, note, notepad, paper - static const IconData lightMemoPad = IconDataLight(0xe1da); + static const IconData lightMemoPad = IconData(0xe1da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Memo Pad icon /// /// https://fontawesome.com/icons/memo-pad?style=thin /// cv, file, idea, note, notepad, paper - static const IconData thinMemoPad = IconDataThin(0xe1da); + static const IconData thinMemoPad = IconData(0xe1da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Memory icon /// /// https://fontawesome.com/icons/memory?style=solid /// DIMM, RAM, hardware, storage, technology - static const IconData solidMemory = IconDataSolid(0xf538); + static const IconData solidMemory = IconData(0xf538, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Memory icon /// /// https://fontawesome.com/icons/memory?style=regular /// DIMM, RAM, hardware, storage, technology - static const IconData memory = IconDataRegular(0xf538); + static const IconData memory = IconData(0xf538, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Memory icon /// /// https://fontawesome.com/icons/memory?style=light /// DIMM, RAM, hardware, storage, technology - static const IconData lightMemory = IconDataLight(0xf538); + static const IconData lightMemory = IconData(0xf538, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Memory icon /// /// https://fontawesome.com/icons/memory?style=thin /// DIMM, RAM, hardware, storage, technology - static const IconData thinMemory = IconDataThin(0xf538); + static const IconData thinMemory = IconData(0xf538, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Mendeley icon /// /// https://fontawesome.com/icons/mendeley?style=brands - static const IconData mendeley = IconDataBrands(0xf7b3); + static const IconData mendeley = IconData(0xf7b3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Menorah icon /// /// https://fontawesome.com/icons/menorah?style=solid /// candle, hanukkah, jewish, judaism, light - static const IconData solidMenorah = IconDataSolid(0xf676); + static const IconData solidMenorah = IconData(0xf676, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Menorah icon /// /// https://fontawesome.com/icons/menorah?style=regular /// candle, hanukkah, jewish, judaism, light - static const IconData menorah = IconDataRegular(0xf676); + static const IconData menorah = IconData(0xf676, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Menorah icon /// /// https://fontawesome.com/icons/menorah?style=light /// candle, hanukkah, jewish, judaism, light - static const IconData lightMenorah = IconDataLight(0xf676); + static const IconData lightMenorah = IconData(0xf676, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Menorah icon /// /// https://fontawesome.com/icons/menorah?style=thin /// candle, hanukkah, jewish, judaism, light - static const IconData thinMenorah = IconDataThin(0xf676); + static const IconData thinMenorah = IconData(0xf676, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mercury icon /// /// https://fontawesome.com/icons/mercury?style=solid /// Mercury, gender, hybrid, transgender - static const IconData solidMercury = IconDataSolid(0xf223); + static const IconData solidMercury = IconData(0xf223, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mercury icon /// /// https://fontawesome.com/icons/mercury?style=regular /// Mercury, gender, hybrid, transgender - static const IconData mercury = IconDataRegular(0xf223); + static const IconData mercury = IconData(0xf223, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mercury icon /// /// https://fontawesome.com/icons/mercury?style=light /// Mercury, gender, hybrid, transgender - static const IconData lightMercury = IconDataLight(0xf223); + static const IconData lightMercury = IconData(0xf223, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mercury icon /// /// https://fontawesome.com/icons/mercury?style=thin /// Mercury, gender, hybrid, transgender - static const IconData thinMercury = IconDataThin(0xf223); + static const IconData thinMercury = IconData(0xf223, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Merge icon /// /// https://fontawesome.com/icons/merge?style=solid /// code, combine - static const IconData solidMerge = IconDataSolid(0xe526); + static const IconData solidMerge = IconData(0xe526, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Merge icon /// /// https://fontawesome.com/icons/merge?style=regular /// code, combine - static const IconData merge = IconDataRegular(0xe526); + static const IconData merge = IconData(0xe526, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Merge icon /// /// https://fontawesome.com/icons/merge?style=light /// code, combine - static const IconData lightMerge = IconDataLight(0xe526); + static const IconData lightMerge = IconData(0xe526, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Merge icon /// /// https://fontawesome.com/icons/merge?style=thin /// code, combine - static const IconData thinMerge = IconDataThin(0xe526); + static const IconData thinMerge = IconData(0xe526, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message icon /// /// https://fontawesome.com/icons/message?style=solid /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData solidMessage = IconDataSolid(0xf27a); + static const IconData solidMessage = IconData(0xf27a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt for icon [solidMessage] @Deprecated('Use "solidMessage" instead.') @@ -57278,7 +57278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message?style=regular /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData message = IconDataRegular(0xf27a); + static const IconData message = IconData(0xf27a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt for icon [message] @Deprecated('Use "message" instead.') @@ -57288,7 +57288,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message?style=light /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData lightMessage = IconDataLight(0xf27a); + static const IconData lightMessage = IconData(0xf27a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt for icon [lightMessage] @Deprecated('Use "lightMessage" instead.') @@ -57298,7 +57298,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message?style=thin /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData thinMessage = IconDataThin(0xf27a); + static const IconData thinMessage = IconData(0xf27a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt for icon [thinMessage] @Deprecated('Use "thinMessage" instead.') @@ -57308,7 +57308,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-down?style=solid /// answer, chat, contact, download, insert - static const IconData solidMessageArrowDown = IconDataSolid(0xe1db); + static const IconData solidMessageArrowDown = IconData(0xe1db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-down for icon [solidMessageArrowDown] @Deprecated('Use "solidMessageArrowDown" instead.') @@ -57318,7 +57318,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-down?style=regular /// answer, chat, contact, download, insert - static const IconData messageArrowDown = IconDataRegular(0xe1db); + static const IconData messageArrowDown = IconData(0xe1db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-down for icon [messageArrowDown] @Deprecated('Use "messageArrowDown" instead.') @@ -57328,7 +57328,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-down?style=light /// answer, chat, contact, download, insert - static const IconData lightMessageArrowDown = IconDataLight(0xe1db); + static const IconData lightMessageArrowDown = IconData(0xe1db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-down for icon [lightMessageArrowDown] @Deprecated('Use "lightMessageArrowDown" instead.') @@ -57338,7 +57338,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-down?style=thin /// answer, chat, contact, download, insert - static const IconData thinMessageArrowDown = IconDataThin(0xe1db); + static const IconData thinMessageArrowDown = IconData(0xe1db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-down for icon [thinMessageArrowDown] @Deprecated('Use "thinMessageArrowDown" instead.') @@ -57348,7 +57348,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-up?style=solid /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData solidMessageArrowUp = IconDataSolid(0xe1dc); + static const IconData solidMessageArrowUp = IconData(0xe1dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-up for icon [solidMessageArrowUp] @Deprecated('Use "solidMessageArrowUp" instead.') @@ -57358,7 +57358,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-up?style=regular /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData messageArrowUp = IconDataRegular(0xe1dc); + static const IconData messageArrowUp = IconData(0xe1dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-up for icon [messageArrowUp] @Deprecated('Use "messageArrowUp" instead.') @@ -57368,7 +57368,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-up?style=light /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData lightMessageArrowUp = IconDataLight(0xe1dc); + static const IconData lightMessageArrowUp = IconData(0xe1dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-up for icon [lightMessageArrowUp] @Deprecated('Use "lightMessageArrowUp" instead.') @@ -57378,7 +57378,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-up?style=thin /// answer, chat, contact, discussion, send, upgrade, upload - static const IconData thinMessageArrowUp = IconDataThin(0xe1dc); + static const IconData thinMessageArrowUp = IconData(0xe1dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-arrow-up for icon [thinMessageArrowUp] @Deprecated('Use "thinMessageArrowUp" instead.') @@ -57388,55 +57388,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-arrow-up-right?style=solid /// chat, contact, discussion, send, upload - static const IconData solidMessageArrowUpRight = IconDataSolid(0xe1dd); + static const IconData solidMessageArrowUpRight = IconData(0xe1dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Arrow Up Right icon /// /// https://fontawesome.com/icons/message-arrow-up-right?style=regular /// chat, contact, discussion, send, upload - static const IconData messageArrowUpRight = IconDataRegular(0xe1dd); + static const IconData messageArrowUpRight = IconData(0xe1dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Arrow Up Right icon /// /// https://fontawesome.com/icons/message-arrow-up-right?style=light /// chat, contact, discussion, send, upload - static const IconData lightMessageArrowUpRight = IconDataLight(0xe1dd); + static const IconData lightMessageArrowUpRight = IconData(0xe1dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Arrow Up Right icon /// /// https://fontawesome.com/icons/message-arrow-up-right?style=thin /// chat, contact, discussion, send, upload - static const IconData thinMessageArrowUpRight = IconDataThin(0xe1dd); + static const IconData thinMessageArrowUpRight = IconData(0xe1dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Bot icon /// /// https://fontawesome.com/icons/message-bot?style=solid /// ai, answer, automated, chat, chatbot, comment, help, support - static const IconData solidMessageBot = IconDataSolid(0xe3b8); + static const IconData solidMessageBot = IconData(0xe3b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Bot icon /// /// https://fontawesome.com/icons/message-bot?style=regular /// ai, answer, automated, chat, chatbot, comment, help, support - static const IconData messageBot = IconDataRegular(0xe3b8); + static const IconData messageBot = IconData(0xe3b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Bot icon /// /// https://fontawesome.com/icons/message-bot?style=light /// ai, answer, automated, chat, chatbot, comment, help, support - static const IconData lightMessageBot = IconDataLight(0xe3b8); + static const IconData lightMessageBot = IconData(0xe3b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Bot icon /// /// https://fontawesome.com/icons/message-bot?style=thin /// ai, answer, automated, chat, chatbot, comment, help, support - static const IconData thinMessageBot = IconDataThin(0xe3b8); + static const IconData thinMessageBot = IconData(0xe3b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Captions icon /// /// https://fontawesome.com/icons/message-captions?style=solid /// answer, chat, closed captions, subtitle, subtitling - static const IconData solidMessageCaptions = IconDataSolid(0xe1de); + static const IconData solidMessageCaptions = IconData(0xe1de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-captions for icon [solidMessageCaptions] @Deprecated('Use "solidMessageCaptions" instead.') @@ -57446,7 +57446,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-captions?style=regular /// answer, chat, closed captions, subtitle, subtitling - static const IconData messageCaptions = IconDataRegular(0xe1de); + static const IconData messageCaptions = IconData(0xe1de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-captions for icon [messageCaptions] @Deprecated('Use "messageCaptions" instead.') @@ -57456,7 +57456,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-captions?style=light /// answer, chat, closed captions, subtitle, subtitling - static const IconData lightMessageCaptions = IconDataLight(0xe1de); + static const IconData lightMessageCaptions = IconData(0xe1de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-captions for icon [lightMessageCaptions] @Deprecated('Use "lightMessageCaptions" instead.') @@ -57466,7 +57466,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-captions?style=thin /// answer, chat, closed captions, subtitle, subtitling - static const IconData thinMessageCaptions = IconDataThin(0xe1de); + static const IconData thinMessageCaptions = IconData(0xe1de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-captions for icon [thinMessageCaptions] @Deprecated('Use "thinMessageCaptions" instead.') @@ -57476,7 +57476,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-check?style=solid /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData solidMessageCheck = IconDataSolid(0xf4a2); + static const IconData solidMessageCheck = IconData(0xf4a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-check for icon [solidMessageCheck] @Deprecated('Use "solidMessageCheck" instead.') @@ -57486,7 +57486,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-check?style=regular /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData messageCheck = IconDataRegular(0xf4a2); + static const IconData messageCheck = IconData(0xf4a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-check for icon [messageCheck] @Deprecated('Use "messageCheck" instead.') @@ -57496,7 +57496,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-check?style=light /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData lightMessageCheck = IconDataLight(0xf4a2); + static const IconData lightMessageCheck = IconData(0xf4a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-check for icon [lightMessageCheck] @Deprecated('Use "lightMessageCheck" instead.') @@ -57506,7 +57506,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-check?style=thin /// accept, agree, answer, bubble, chat, commenting, conversation, enable, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo, validate, working - static const IconData thinMessageCheck = IconDataThin(0xf4a2); + static const IconData thinMessageCheck = IconData(0xf4a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-check for icon [thinMessageCheck] @Deprecated('Use "thinMessageCheck" instead.') @@ -57516,31 +57516,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-code?style=solid /// coding, contact, discussion - static const IconData solidMessageCode = IconDataSolid(0xe1df); + static const IconData solidMessageCode = IconData(0xe1df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Code icon /// /// https://fontawesome.com/icons/message-code?style=regular /// coding, contact, discussion - static const IconData messageCode = IconDataRegular(0xe1df); + static const IconData messageCode = IconData(0xe1df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Code icon /// /// https://fontawesome.com/icons/message-code?style=light /// coding, contact, discussion - static const IconData lightMessageCode = IconDataLight(0xe1df); + static const IconData lightMessageCode = IconData(0xe1df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Code icon /// /// https://fontawesome.com/icons/message-code?style=thin /// coding, contact, discussion - static const IconData thinMessageCode = IconDataThin(0xe1df); + static const IconData thinMessageCode = IconData(0xe1df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Dollar icon /// /// https://fontawesome.com/icons/message-dollar?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData solidMessageDollar = IconDataSolid(0xf650); + static const IconData solidMessageDollar = IconData(0xf650, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dollar for icon [solidMessageDollar] @Deprecated('Use "solidMessageDollar" instead.') @@ -57550,7 +57550,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dollar?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData messageDollar = IconDataRegular(0xf650); + static const IconData messageDollar = IconData(0xf650, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dollar for icon [messageDollar] @Deprecated('Use "messageDollar" instead.') @@ -57560,7 +57560,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dollar?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData lightMessageDollar = IconDataLight(0xf650); + static const IconData lightMessageDollar = IconData(0xf650, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dollar for icon [lightMessageDollar] @Deprecated('Use "lightMessageDollar" instead.') @@ -57570,7 +57570,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dollar?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData thinMessageDollar = IconDataThin(0xf650); + static const IconData thinMessageDollar = IconData(0xf650, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dollar for icon [thinMessageDollar] @Deprecated('Use "thinMessageDollar" instead.') @@ -57580,7 +57580,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dots?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, request, sms, speech, texting - static const IconData solidMessageDots = IconDataSolid(0xf4a3); + static const IconData solidMessageDots = IconData(0xf4a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dots for icon [solidMessageDots] @Deprecated('Use "solidMessageDots" instead.') @@ -57594,7 +57594,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dots?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, request, sms, speech, texting - static const IconData messageDots = IconDataRegular(0xf4a3); + static const IconData messageDots = IconData(0xf4a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dots for icon [messageDots] @Deprecated('Use "messageDots" instead.') @@ -57608,7 +57608,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dots?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, request, sms, speech, texting - static const IconData lightMessageDots = IconDataLight(0xf4a3); + static const IconData lightMessageDots = IconData(0xf4a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dots for icon [lightMessageDots] @Deprecated('Use "lightMessageDots" instead.') @@ -57622,7 +57622,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-dots?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, request, sms, speech, texting - static const IconData thinMessageDots = IconDataThin(0xf4a3); + static const IconData thinMessageDots = IconData(0xf4a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-dots for icon [thinMessageDots] @Deprecated('Use "thinMessageDots" instead.') @@ -57636,7 +57636,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-exclamation?style=solid /// alert, answer, attention, bubble, chat, commenting, conversation, error, exclaim, failed, feedback, important, message, note, notification, request, required, sms, speech, surprise, texting, warning - static const IconData solidMessageExclamation = IconDataSolid(0xf4a5); + static const IconData solidMessageExclamation = IconData(0xf4a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-exclamation for icon [solidMessageExclamation] @Deprecated('Use "solidMessageExclamation" instead.') @@ -57646,7 +57646,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-exclamation?style=regular /// alert, answer, attention, bubble, chat, commenting, conversation, error, exclaim, failed, feedback, important, message, note, notification, request, required, sms, speech, surprise, texting, warning - static const IconData messageExclamation = IconDataRegular(0xf4a5); + static const IconData messageExclamation = IconData(0xf4a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-exclamation for icon [messageExclamation] @Deprecated('Use "messageExclamation" instead.') @@ -57656,7 +57656,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-exclamation?style=light /// alert, answer, attention, bubble, chat, commenting, conversation, error, exclaim, failed, feedback, important, message, note, notification, request, required, sms, speech, surprise, texting, warning - static const IconData lightMessageExclamation = IconDataLight(0xf4a5); + static const IconData lightMessageExclamation = IconData(0xf4a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-exclamation for icon [lightMessageExclamation] @Deprecated('Use "lightMessageExclamation" instead.') @@ -57666,7 +57666,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-exclamation?style=thin /// alert, answer, attention, bubble, chat, commenting, conversation, error, exclaim, failed, feedback, important, message, note, notification, request, required, sms, speech, surprise, texting, warning - static const IconData thinMessageExclamation = IconDataThin(0xf4a5); + static const IconData thinMessageExclamation = IconData(0xf4a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-exclamation for icon [thinMessageExclamation] @Deprecated('Use "thinMessageExclamation" instead.') @@ -57676,31 +57676,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-heart?style=solid /// bubble, comment, favorite, happy, love - static const IconData solidMessageHeart = IconDataSolid(0xe5c9); + static const IconData solidMessageHeart = IconData(0xe5c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Heart icon /// /// https://fontawesome.com/icons/message-heart?style=regular /// bubble, comment, favorite, happy, love - static const IconData messageHeart = IconDataRegular(0xe5c9); + static const IconData messageHeart = IconData(0xe5c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Heart icon /// /// https://fontawesome.com/icons/message-heart?style=light /// bubble, comment, favorite, happy, love - static const IconData lightMessageHeart = IconDataLight(0xe5c9); + static const IconData lightMessageHeart = IconData(0xe5c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Heart icon /// /// https://fontawesome.com/icons/message-heart?style=thin /// bubble, comment, favorite, happy, love - static const IconData thinMessageHeart = IconDataThin(0xe5c9); + static const IconData thinMessageHeart = IconData(0xe5c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Image icon /// /// https://fontawesome.com/icons/message-image?style=solid /// answer, chat, discussion, img, photography, photos - static const IconData solidMessageImage = IconDataSolid(0xe1e0); + static const IconData solidMessageImage = IconData(0xe1e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-image for icon [solidMessageImage] @Deprecated('Use "solidMessageImage" instead.') @@ -57710,7 +57710,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-image?style=regular /// answer, chat, discussion, img, photography, photos - static const IconData messageImage = IconDataRegular(0xe1e0); + static const IconData messageImage = IconData(0xe1e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-image for icon [messageImage] @Deprecated('Use "messageImage" instead.') @@ -57720,7 +57720,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-image?style=light /// answer, chat, discussion, img, photography, photos - static const IconData lightMessageImage = IconDataLight(0xe1e0); + static const IconData lightMessageImage = IconData(0xe1e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-image for icon [lightMessageImage] @Deprecated('Use "lightMessageImage" instead.') @@ -57730,7 +57730,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-image?style=thin /// answer, chat, discussion, img, photography, photos - static const IconData thinMessageImage = IconDataThin(0xe1e0); + static const IconData thinMessageImage = IconData(0xe1e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-image for icon [thinMessageImage] @Deprecated('Use "thinMessageImage" instead.') @@ -57740,7 +57740,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-lines?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidMessageLines = IconDataSolid(0xf4a6); + static const IconData solidMessageLines = IconData(0xf4a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-lines for icon [solidMessageLines] @Deprecated('Use "solidMessageLines" instead.') @@ -57750,7 +57750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-lines?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData messageLines = IconDataRegular(0xf4a6); + static const IconData messageLines = IconData(0xf4a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-lines for icon [messageLines] @Deprecated('Use "messageLines" instead.') @@ -57760,7 +57760,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-lines?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightMessageLines = IconDataLight(0xf4a6); + static const IconData lightMessageLines = IconData(0xf4a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-lines for icon [lightMessageLines] @Deprecated('Use "lightMessageLines" instead.') @@ -57770,7 +57770,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-lines?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData thinMessageLines = IconDataThin(0xf4a6); + static const IconData thinMessageLines = IconData(0xf4a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-lines for icon [thinMessageLines] @Deprecated('Use "thinMessageLines" instead.') @@ -57780,7 +57780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-medical?style=solid /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData solidMessageMedical = IconDataSolid(0xf7f4); + static const IconData solidMessageMedical = IconData(0xf7f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-medical for icon [solidMessageMedical] @Deprecated('Use "solidMessageMedical" instead.') @@ -57790,7 +57790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-medical?style=regular /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData messageMedical = IconDataRegular(0xf7f4); + static const IconData messageMedical = IconData(0xf7f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-medical for icon [messageMedical] @Deprecated('Use "messageMedical" instead.') @@ -57800,7 +57800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-medical?style=light /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData lightMessageMedical = IconDataLight(0xf7f4); + static const IconData lightMessageMedical = IconData(0xf7f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-medical for icon [lightMessageMedical] @Deprecated('Use "lightMessageMedical" instead.') @@ -57810,7 +57810,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-medical?style=thin /// advice, answer, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData thinMessageMedical = IconDataThin(0xf7f4); + static const IconData thinMessageMedical = IconData(0xf7f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-medical for icon [thinMessageMedical] @Deprecated('Use "thinMessageMedical" instead.') @@ -57820,7 +57820,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle?style=solid /// answer, contact, conversation, sms - static const IconData solidMessageMiddle = IconDataSolid(0xe1e1); + static const IconData solidMessageMiddle = IconData(0xe1e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-alt for icon [solidMessageMiddle] @Deprecated('Use "solidMessageMiddle" instead.') @@ -57830,7 +57830,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle?style=regular /// answer, contact, conversation, sms - static const IconData messageMiddle = IconDataRegular(0xe1e1); + static const IconData messageMiddle = IconData(0xe1e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-alt for icon [messageMiddle] @Deprecated('Use "messageMiddle" instead.') @@ -57840,7 +57840,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle?style=light /// answer, contact, conversation, sms - static const IconData lightMessageMiddle = IconDataLight(0xe1e1); + static const IconData lightMessageMiddle = IconData(0xe1e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-alt for icon [lightMessageMiddle] @Deprecated('Use "lightMessageMiddle" instead.') @@ -57850,7 +57850,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle?style=thin /// answer, contact, conversation, sms - static const IconData thinMessageMiddle = IconDataThin(0xe1e1); + static const IconData thinMessageMiddle = IconData(0xe1e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-alt for icon [thinMessageMiddle] @Deprecated('Use "thinMessageMiddle" instead.') @@ -57860,7 +57860,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle-top?style=solid /// conversation, discussion, talking, answer, contact, conversation, sms, talk - static const IconData solidMessageMiddleTop = IconDataSolid(0xe1e2); + static const IconData solidMessageMiddleTop = IconData(0xe1e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-top-alt for icon [solidMessageMiddleTop] @Deprecated('Use "solidMessageMiddleTop" instead.') @@ -57870,7 +57870,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle-top?style=regular /// conversation, discussion, talking, answer, contact, conversation, sms, talk - static const IconData messageMiddleTop = IconDataRegular(0xe1e2); + static const IconData messageMiddleTop = IconData(0xe1e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-top-alt for icon [messageMiddleTop] @Deprecated('Use "messageMiddleTop" instead.') @@ -57880,7 +57880,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle-top?style=light /// conversation, discussion, talking, answer, contact, conversation, sms, talk - static const IconData lightMessageMiddleTop = IconDataLight(0xe1e2); + static const IconData lightMessageMiddleTop = IconData(0xe1e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-top-alt for icon [lightMessageMiddleTop] @Deprecated('Use "lightMessageMiddleTop" instead.') @@ -57890,7 +57890,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-middle-top?style=thin /// conversation, discussion, talking, answer, contact, conversation, sms, talk - static const IconData thinMessageMiddleTop = IconDataThin(0xe1e2); + static const IconData thinMessageMiddleTop = IconData(0xe1e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-middle-top-alt for icon [thinMessageMiddleTop] @Deprecated('Use "thinMessageMiddleTop" instead.') @@ -57900,7 +57900,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-minus?style=solid /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData solidMessageMinus = IconDataSolid(0xf4a7); + static const IconData solidMessageMinus = IconData(0xf4a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-minus for icon [solidMessageMinus] @Deprecated('Use "solidMessageMinus" instead.') @@ -57910,7 +57910,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-minus?style=regular /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData messageMinus = IconDataRegular(0xf4a7); + static const IconData messageMinus = IconData(0xf4a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-minus for icon [messageMinus] @Deprecated('Use "messageMinus" instead.') @@ -57920,7 +57920,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-minus?style=light /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData lightMessageMinus = IconDataLight(0xf4a7); + static const IconData lightMessageMinus = IconData(0xf4a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-minus for icon [lightMessageMinus] @Deprecated('Use "lightMessageMinus" instead.') @@ -57930,7 +57930,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-minus?style=thin /// answer, bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData thinMessageMinus = IconDataThin(0xf4a7); + static const IconData thinMessageMinus = IconData(0xf4a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-minus for icon [thinMessageMinus] @Deprecated('Use "thinMessageMinus" instead.') @@ -57940,7 +57940,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-music?style=solid /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData solidMessageMusic = IconDataSolid(0xf8af); + static const IconData solidMessageMusic = IconData(0xf8af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-music for icon [solidMessageMusic] @Deprecated('Use "solidMessageMusic" instead.') @@ -57950,7 +57950,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-music?style=regular /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData messageMusic = IconDataRegular(0xf8af); + static const IconData messageMusic = IconData(0xf8af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-music for icon [messageMusic] @Deprecated('Use "messageMusic" instead.') @@ -57960,7 +57960,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-music?style=light /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData lightMessageMusic = IconDataLight(0xf8af); + static const IconData lightMessageMusic = IconData(0xf8af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-music for icon [lightMessageMusic] @Deprecated('Use "lightMessageMusic" instead.') @@ -57970,7 +57970,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-music?style=thin /// answer, chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData thinMessageMusic = IconDataThin(0xf8af); + static const IconData thinMessageMusic = IconData(0xf8af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-music for icon [thinMessageMusic] @Deprecated('Use "thinMessageMusic" instead.') @@ -57980,7 +57980,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-pen?style=solid /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData solidMessagePen = IconDataSolid(0xf4a4); + static const IconData solidMessagePen = IconData(0xf4a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-edit for icon [solidMessagePen] @Deprecated('Use "solidMessagePen" instead.') @@ -57994,7 +57994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-pen?style=regular /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData messagePen = IconDataRegular(0xf4a4); + static const IconData messagePen = IconData(0xf4a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-edit for icon [messagePen] @Deprecated('Use "messagePen" instead.') @@ -58008,7 +58008,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-pen?style=light /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData lightMessagePen = IconDataLight(0xf4a4); + static const IconData lightMessagePen = IconData(0xf4a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-edit for icon [lightMessagePen] @Deprecated('Use "lightMessagePen" instead.') @@ -58022,7 +58022,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-pen?style=thin /// answer, bubble, chat, commenting, conversation, edit, feedback, message, modify, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData thinMessagePen = IconDataThin(0xf4a4); + static const IconData thinMessagePen = IconData(0xf4a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-edit for icon [thinMessagePen] @Deprecated('Use "thinMessagePen" instead.') @@ -58036,7 +58036,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-plus?style=solid /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData solidMessagePlus = IconDataSolid(0xf4a8); + static const IconData solidMessagePlus = IconData(0xf4a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-plus for icon [solidMessagePlus] @Deprecated('Use "solidMessagePlus" instead.') @@ -58046,7 +58046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-plus?style=regular /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData messagePlus = IconDataRegular(0xf4a8); + static const IconData messagePlus = IconData(0xf4a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-plus for icon [messagePlus] @Deprecated('Use "messagePlus" instead.') @@ -58056,7 +58056,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-plus?style=light /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData lightMessagePlus = IconDataLight(0xf4a8); + static const IconData lightMessagePlus = IconData(0xf4a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-plus for icon [lightMessagePlus] @Deprecated('Use "lightMessagePlus" instead.') @@ -58066,7 +58066,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-plus?style=thin /// add, answer, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData thinMessagePlus = IconDataThin(0xf4a8); + static const IconData thinMessagePlus = IconData(0xf4a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-plus for icon [thinMessagePlus] @Deprecated('Use "thinMessagePlus" instead.') @@ -58076,31 +58076,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-question?style=solid /// chat, faq, help, question, support - static const IconData solidMessageQuestion = IconDataSolid(0xe1e3); + static const IconData solidMessageQuestion = IconData(0xe1e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Question icon /// /// https://fontawesome.com/icons/message-question?style=regular /// chat, faq, help, question, support - static const IconData messageQuestion = IconDataRegular(0xe1e3); + static const IconData messageQuestion = IconData(0xe1e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Question icon /// /// https://fontawesome.com/icons/message-question?style=light /// chat, faq, help, question, support - static const IconData lightMessageQuestion = IconDataLight(0xe1e3); + static const IconData lightMessageQuestion = IconData(0xe1e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Question icon /// /// https://fontawesome.com/icons/message-question?style=thin /// chat, faq, help, question, support - static const IconData thinMessageQuestion = IconDataThin(0xe1e3); + static const IconData thinMessageQuestion = IconData(0xe1e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Quote icon /// /// https://fontawesome.com/icons/message-quote?style=solid /// answer, chat, quote - static const IconData solidMessageQuote = IconDataSolid(0xe1e4); + static const IconData solidMessageQuote = IconData(0xe1e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-quote for icon [solidMessageQuote] @Deprecated('Use "solidMessageQuote" instead.') @@ -58110,7 +58110,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-quote?style=regular /// answer, chat, quote - static const IconData messageQuote = IconDataRegular(0xe1e4); + static const IconData messageQuote = IconData(0xe1e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-quote for icon [messageQuote] @Deprecated('Use "messageQuote" instead.') @@ -58120,7 +58120,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-quote?style=light /// answer, chat, quote - static const IconData lightMessageQuote = IconDataLight(0xe1e4); + static const IconData lightMessageQuote = IconData(0xe1e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-quote for icon [lightMessageQuote] @Deprecated('Use "lightMessageQuote" instead.') @@ -58130,7 +58130,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-quote?style=thin /// answer, chat, quote - static const IconData thinMessageQuote = IconDataThin(0xe1e4); + static const IconData thinMessageQuote = IconData(0xe1e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-quote for icon [thinMessageQuote] @Deprecated('Use "thinMessageQuote" instead.') @@ -58140,7 +58140,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-slash?style=solid /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData solidMessageSlash = IconDataSolid(0xf4a9); + static const IconData solidMessageSlash = IconData(0xf4a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-slash for icon [solidMessageSlash] @Deprecated('Use "solidMessageSlash" instead.') @@ -58150,7 +58150,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-slash?style=regular /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData messageSlash = IconDataRegular(0xf4a9); + static const IconData messageSlash = IconData(0xf4a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-slash for icon [messageSlash] @Deprecated('Use "messageSlash" instead.') @@ -58160,7 +58160,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-slash?style=light /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData lightMessageSlash = IconDataLight(0xf4a9); + static const IconData lightMessageSlash = IconData(0xf4a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-slash for icon [lightMessageSlash] @Deprecated('Use "lightMessageSlash" instead.') @@ -58170,7 +58170,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-slash?style=thin /// answer, bubble, cancel, chat, commenting, conversation, disabled, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData thinMessageSlash = IconDataThin(0xf4a9); + static const IconData thinMessageSlash = IconData(0xf4a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-slash for icon [thinMessageSlash] @Deprecated('Use "thinMessageSlash" instead.') @@ -58180,7 +58180,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-smile?style=solid /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData solidMessageSmile = IconDataSolid(0xf4aa); + static const IconData solidMessageSmile = IconData(0xf4aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-smile for icon [solidMessageSmile] @Deprecated('Use "solidMessageSmile" instead.') @@ -58190,7 +58190,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-smile?style=regular /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData messageSmile = IconDataRegular(0xf4aa); + static const IconData messageSmile = IconData(0xf4aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-smile for icon [messageSmile] @Deprecated('Use "messageSmile" instead.') @@ -58200,7 +58200,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-smile?style=light /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData lightMessageSmile = IconDataLight(0xf4aa); + static const IconData lightMessageSmile = IconData(0xf4aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-smile for icon [lightMessageSmile] @Deprecated('Use "lightMessageSmile" instead.') @@ -58210,7 +58210,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-smile?style=thin /// answer, bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData thinMessageSmile = IconDataThin(0xf4aa); + static const IconData thinMessageSmile = IconData(0xf4aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-smile for icon [thinMessageSmile] @Deprecated('Use "thinMessageSmile" instead.') @@ -58220,31 +58220,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-sms?style=solid /// chat - static const IconData solidMessageSms = IconDataSolid(0xe1e5); + static const IconData solidMessageSms = IconData(0xe1e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Message Sms icon /// /// https://fontawesome.com/icons/message-sms?style=regular /// chat - static const IconData messageSms = IconDataRegular(0xe1e5); + static const IconData messageSms = IconData(0xe1e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Message Sms icon /// /// https://fontawesome.com/icons/message-sms?style=light /// chat - static const IconData lightMessageSms = IconDataLight(0xe1e5); + static const IconData lightMessageSms = IconData(0xe1e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Message Sms icon /// /// https://fontawesome.com/icons/message-sms?style=thin /// chat - static const IconData thinMessageSms = IconDataThin(0xe1e5); + static const IconData thinMessageSms = IconData(0xe1e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Message Text icon /// /// https://fontawesome.com/icons/message-text?style=solid /// answer, contact, font, text, type - static const IconData solidMessageText = IconDataSolid(0xe1e6); + static const IconData solidMessageText = IconData(0xe1e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-text for icon [solidMessageText] @Deprecated('Use "solidMessageText" instead.') @@ -58254,7 +58254,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-text?style=regular /// answer, contact, font, text, type - static const IconData messageText = IconDataRegular(0xe1e6); + static const IconData messageText = IconData(0xe1e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-text for icon [messageText] @Deprecated('Use "messageText" instead.') @@ -58264,7 +58264,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-text?style=light /// answer, contact, font, text, type - static const IconData lightMessageText = IconDataLight(0xe1e6); + static const IconData lightMessageText = IconData(0xe1e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-text for icon [lightMessageText] @Deprecated('Use "lightMessageText" instead.') @@ -58274,7 +58274,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-text?style=thin /// answer, contact, font, text, type - static const IconData thinMessageText = IconDataThin(0xe1e6); + static const IconData thinMessageText = IconData(0xe1e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-text for icon [thinMessageText] @Deprecated('Use "thinMessageText" instead.') @@ -58284,7 +58284,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-xmark?style=solid /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData solidMessageXmark = IconDataSolid(0xf4ab); + static const IconData solidMessageXmark = IconData(0xf4ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-times for icon [solidMessageXmark] @Deprecated('Use "solidMessageXmark" instead.') @@ -58298,7 +58298,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-xmark?style=regular /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData messageXmark = IconDataRegular(0xf4ab); + static const IconData messageXmark = IconData(0xf4ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-times for icon [messageXmark] @Deprecated('Use "messageXmark" instead.') @@ -58312,7 +58312,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-xmark?style=light /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData lightMessageXmark = IconDataLight(0xf4ab); + static const IconData lightMessageXmark = IconData(0xf4ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-times for icon [lightMessageXmark] @Deprecated('Use "lightMessageXmark" instead.') @@ -58326,7 +58326,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/message-xmark?style=thin /// answer, archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, uncheck, x - static const IconData thinMessageXmark = IconDataThin(0xf4ab); + static const IconData thinMessageXmark = IconData(0xf4ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comment-alt-times for icon [thinMessageXmark] @Deprecated('Use "thinMessageXmark" instead.') @@ -58340,7 +58340,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages?style=solid /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData solidMessages = IconDataSolid(0xf4b6); + static const IconData solidMessages = IconData(0xf4b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt for icon [solidMessages] @Deprecated('Use "solidMessages" instead.') @@ -58350,7 +58350,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages?style=regular /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData messages = IconDataRegular(0xf4b6); + static const IconData messages = IconData(0xf4b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt for icon [messages] @Deprecated('Use "messages" instead.') @@ -58360,7 +58360,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages?style=light /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData lightMessages = IconDataLight(0xf4b6); + static const IconData lightMessages = IconData(0xf4b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt for icon [lightMessages] @Deprecated('Use "lightMessages" instead.') @@ -58370,7 +58370,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages?style=thin /// conversation, discussion, talking, answer, bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, talk, texting - static const IconData thinMessages = IconDataThin(0xf4b6); + static const IconData thinMessages = IconData(0xf4b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt for icon [thinMessages] @Deprecated('Use "thinMessages" instead.') @@ -58380,7 +58380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages-dollar?style=solid /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData solidMessagesDollar = IconDataSolid(0xf652); + static const IconData solidMessagesDollar = IconData(0xf652, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt-dollar for icon [solidMessagesDollar] @Deprecated('Use "solidMessagesDollar" instead.') @@ -58390,7 +58390,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages-dollar?style=regular /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData messagesDollar = IconDataRegular(0xf652); + static const IconData messagesDollar = IconData(0xf652, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt-dollar for icon [messagesDollar] @Deprecated('Use "messagesDollar" instead.') @@ -58400,7 +58400,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages-dollar?style=light /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData lightMessagesDollar = IconDataLight(0xf652); + static const IconData lightMessagesDollar = IconData(0xf652, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt-dollar for icon [lightMessagesDollar] @Deprecated('Use "lightMessagesDollar" instead.') @@ -58410,7 +58410,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages-dollar?style=thin /// answer, bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, salary, sms, speech, spend, texting, transfer - static const IconData thinMessagesDollar = IconDataThin(0xf652); + static const IconData thinMessagesDollar = IconData(0xf652, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias comments-alt-dollar for icon [thinMessagesDollar] @Deprecated('Use "thinMessagesDollar" instead.') @@ -58420,233 +58420,233 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/messages-question?style=solid /// chat, faq, help, question, request, support - static const IconData solidMessagesQuestion = IconDataSolid(0xe1e7); + static const IconData solidMessagesQuestion = IconData(0xe1e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Messages Question icon /// /// https://fontawesome.com/icons/messages-question?style=regular /// chat, faq, help, question, request, support - static const IconData messagesQuestion = IconDataRegular(0xe1e7); + static const IconData messagesQuestion = IconData(0xe1e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Messages Question icon /// /// https://fontawesome.com/icons/messages-question?style=light /// chat, faq, help, question, request, support - static const IconData lightMessagesQuestion = IconDataLight(0xe1e7); + static const IconData lightMessagesQuestion = IconData(0xe1e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Messages Question icon /// /// https://fontawesome.com/icons/messages-question?style=thin /// chat, faq, help, question, request, support - static const IconData thinMessagesQuestion = IconDataThin(0xe1e7); + static const IconData thinMessagesQuestion = IconData(0xe1e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Meta icon /// /// https://fontawesome.com/icons/meta?style=brands - static const IconData meta = IconDataBrands(0xe49b); + static const IconData meta = IconData(0xe49b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Meteor icon /// /// https://fontawesome.com/icons/meteor?style=solid /// armageddon, asteroid, comet, shooting star, space - static const IconData solidMeteor = IconDataSolid(0xf753); + static const IconData solidMeteor = IconData(0xf753, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meteor icon /// /// https://fontawesome.com/icons/meteor?style=regular /// armageddon, asteroid, comet, shooting star, space - static const IconData meteor = IconDataRegular(0xf753); + static const IconData meteor = IconData(0xf753, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meteor icon /// /// https://fontawesome.com/icons/meteor?style=light /// armageddon, asteroid, comet, shooting star, space - static const IconData lightMeteor = IconDataLight(0xf753); + static const IconData lightMeteor = IconData(0xf753, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meteor icon /// /// https://fontawesome.com/icons/meteor?style=thin /// armageddon, asteroid, comet, shooting star, space - static const IconData thinMeteor = IconDataThin(0xf753); + static const IconData thinMeteor = IconData(0xf753, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Meter icon /// /// https://fontawesome.com/icons/meter?style=solid /// electricity, transmission, utilities - static const IconData solidMeter = IconDataSolid(0xe1e8); + static const IconData solidMeter = IconData(0xe1e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meter icon /// /// https://fontawesome.com/icons/meter?style=regular /// electricity, transmission, utilities - static const IconData meter = IconDataRegular(0xe1e8); + static const IconData meter = IconData(0xe1e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meter icon /// /// https://fontawesome.com/icons/meter?style=light /// electricity, transmission, utilities - static const IconData lightMeter = IconDataLight(0xe1e8); + static const IconData lightMeter = IconData(0xe1e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meter icon /// /// https://fontawesome.com/icons/meter?style=thin /// electricity, transmission, utilities - static const IconData thinMeter = IconDataThin(0xe1e8); + static const IconData thinMeter = IconData(0xe1e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Meter Bolt icon /// /// https://fontawesome.com/icons/meter-bolt?style=solid /// electricity, transmission, utilities - static const IconData solidMeterBolt = IconDataSolid(0xe1e9); + static const IconData solidMeterBolt = IconData(0xe1e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meter Bolt icon /// /// https://fontawesome.com/icons/meter-bolt?style=regular /// electricity, transmission, utilities - static const IconData meterBolt = IconDataRegular(0xe1e9); + static const IconData meterBolt = IconData(0xe1e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meter Bolt icon /// /// https://fontawesome.com/icons/meter-bolt?style=light /// electricity, transmission, utilities - static const IconData lightMeterBolt = IconDataLight(0xe1e9); + static const IconData lightMeterBolt = IconData(0xe1e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meter Bolt icon /// /// https://fontawesome.com/icons/meter-bolt?style=thin /// electricity, transmission, utilities - static const IconData thinMeterBolt = IconDataThin(0xe1e9); + static const IconData thinMeterBolt = IconData(0xe1e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Meter Droplet icon /// /// https://fontawesome.com/icons/meter-droplet?style=solid /// electricity, transmission, utilities - static const IconData solidMeterDroplet = IconDataSolid(0xe1ea); + static const IconData solidMeterDroplet = IconData(0xe1ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meter Droplet icon /// /// https://fontawesome.com/icons/meter-droplet?style=regular /// electricity, transmission, utilities - static const IconData meterDroplet = IconDataRegular(0xe1ea); + static const IconData meterDroplet = IconData(0xe1ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meter Droplet icon /// /// https://fontawesome.com/icons/meter-droplet?style=light /// electricity, transmission, utilities - static const IconData lightMeterDroplet = IconDataLight(0xe1ea); + static const IconData lightMeterDroplet = IconData(0xe1ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meter Droplet icon /// /// https://fontawesome.com/icons/meter-droplet?style=thin /// electricity, transmission, utilities - static const IconData thinMeterDroplet = IconDataThin(0xe1ea); + static const IconData thinMeterDroplet = IconData(0xe1ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Meter Fire icon /// /// https://fontawesome.com/icons/meter-fire?style=solid /// electricity, transmission, utilities - static const IconData solidMeterFire = IconDataSolid(0xe1eb); + static const IconData solidMeterFire = IconData(0xe1eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Meter Fire icon /// /// https://fontawesome.com/icons/meter-fire?style=regular /// electricity, transmission, utilities - static const IconData meterFire = IconDataRegular(0xe1eb); + static const IconData meterFire = IconData(0xe1eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Meter Fire icon /// /// https://fontawesome.com/icons/meter-fire?style=light /// electricity, transmission, utilities - static const IconData lightMeterFire = IconDataLight(0xe1eb); + static const IconData lightMeterFire = IconData(0xe1eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Meter Fire icon /// /// https://fontawesome.com/icons/meter-fire?style=thin /// electricity, transmission, utilities - static const IconData thinMeterFire = IconDataThin(0xe1eb); + static const IconData thinMeterFire = IconData(0xe1eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Micro.blog icon /// /// https://fontawesome.com/icons/microblog?style=brands - static const IconData microblog = IconDataBrands(0xe01a); + static const IconData microblog = IconData(0xe01a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Microchip icon /// /// https://fontawesome.com/icons/microchip?style=solid /// cpu, hardware, processor, technology - static const IconData solidMicrochip = IconDataSolid(0xf2db); + static const IconData solidMicrochip = IconData(0xf2db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microchip icon /// /// https://fontawesome.com/icons/microchip?style=regular /// cpu, hardware, processor, technology - static const IconData microchip = IconDataRegular(0xf2db); + static const IconData microchip = IconData(0xf2db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microchip icon /// /// https://fontawesome.com/icons/microchip?style=light /// cpu, hardware, processor, technology - static const IconData lightMicrochip = IconDataLight(0xf2db); + static const IconData lightMicrochip = IconData(0xf2db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microchip icon /// /// https://fontawesome.com/icons/microchip?style=thin /// cpu, hardware, processor, technology - static const IconData thinMicrochip = IconDataThin(0xf2db); + static const IconData thinMicrochip = IconData(0xf2db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Microchip Ai icon /// /// https://fontawesome.com/icons/microchip-ai?style=solid /// artificial intelligence, computer, silicon - static const IconData solidMicrochipAi = IconDataSolid(0xe1ec); + static const IconData solidMicrochipAi = IconData(0xe1ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microchip Ai icon /// /// https://fontawesome.com/icons/microchip-ai?style=regular /// artificial intelligence, computer, silicon - static const IconData microchipAi = IconDataRegular(0xe1ec); + static const IconData microchipAi = IconData(0xe1ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microchip Ai icon /// /// https://fontawesome.com/icons/microchip-ai?style=light /// artificial intelligence, computer, silicon - static const IconData lightMicrochipAi = IconDataLight(0xe1ec); + static const IconData lightMicrochipAi = IconData(0xe1ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microchip Ai icon /// /// https://fontawesome.com/icons/microchip-ai?style=thin /// artificial intelligence, computer, silicon - static const IconData thinMicrochipAi = IconDataThin(0xe1ec); + static const IconData thinMicrochipAi = IconData(0xe1ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Microphone icon /// /// https://fontawesome.com/icons/microphone?style=solid /// address, audio, information, podcast, public, record, sing, sound, talking, voice - static const IconData solidMicrophone = IconDataSolid(0xf130); + static const IconData solidMicrophone = IconData(0xf130, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microphone icon /// /// https://fontawesome.com/icons/microphone?style=regular /// address, audio, information, podcast, public, record, sing, sound, talking, voice - static const IconData microphone = IconDataRegular(0xf130); + static const IconData microphone = IconData(0xf130, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microphone icon /// /// https://fontawesome.com/icons/microphone?style=light /// address, audio, information, podcast, public, record, sing, sound, talking, voice - static const IconData lightMicrophone = IconDataLight(0xf130); + static const IconData lightMicrophone = IconData(0xf130, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microphone icon /// /// https://fontawesome.com/icons/microphone?style=thin /// address, audio, information, podcast, public, record, sing, sound, talking, voice - static const IconData thinMicrophone = IconDataThin(0xf130); + static const IconData thinMicrophone = IconData(0xf130, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Microphone Lines icon /// /// https://fontawesome.com/icons/microphone-lines?style=solid /// audio, mic, microphone, music, podcast, record, sing, sound, studio, studio microphone, talking, voice - static const IconData solidMicrophoneLines = IconDataSolid(0xf3c9); + static const IconData solidMicrophoneLines = IconData(0xf3c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt for icon [solidMicrophoneLines] @Deprecated('Use "solidMicrophoneLines" instead.') @@ -58656,7 +58656,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines?style=regular /// audio, mic, microphone, music, podcast, record, sing, sound, studio, studio microphone, talking, voice - static const IconData microphoneLines = IconDataRegular(0xf3c9); + static const IconData microphoneLines = IconData(0xf3c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt for icon [microphoneLines] @Deprecated('Use "microphoneLines" instead.') @@ -58666,7 +58666,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines?style=light /// audio, mic, microphone, music, podcast, record, sing, sound, studio, studio microphone, talking, voice - static const IconData lightMicrophoneLines = IconDataLight(0xf3c9); + static const IconData lightMicrophoneLines = IconData(0xf3c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt for icon [lightMicrophoneLines] @Deprecated('Use "lightMicrophoneLines" instead.') @@ -58676,7 +58676,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines?style=thin /// audio, mic, microphone, music, podcast, record, sing, sound, studio, studio microphone, talking, voice - static const IconData thinMicrophoneLines = IconDataThin(0xf3c9); + static const IconData thinMicrophoneLines = IconData(0xf3c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt for icon [thinMicrophoneLines] @Deprecated('Use "thinMicrophoneLines" instead.') @@ -58686,7 +58686,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines-slash?style=solid /// audio, disable, disabled, disconnect, disconnect, mute, podcast, record, sing, sound, voice - static const IconData solidMicrophoneLinesSlash = IconDataSolid(0xf539); + static const IconData solidMicrophoneLinesSlash = IconData(0xf539, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt-slash for icon [solidMicrophoneLinesSlash] @Deprecated('Use "solidMicrophoneLinesSlash" instead.') @@ -58696,7 +58696,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines-slash?style=regular /// audio, disable, disabled, disconnect, disconnect, mute, podcast, record, sing, sound, voice - static const IconData microphoneLinesSlash = IconDataRegular(0xf539); + static const IconData microphoneLinesSlash = IconData(0xf539, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt-slash for icon [microphoneLinesSlash] @Deprecated('Use "microphoneLinesSlash" instead.') @@ -58706,7 +58706,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines-slash?style=light /// audio, disable, disabled, disconnect, disconnect, mute, podcast, record, sing, sound, voice - static const IconData lightMicrophoneLinesSlash = IconDataLight(0xf539); + static const IconData lightMicrophoneLinesSlash = IconData(0xf539, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt-slash for icon [lightMicrophoneLinesSlash] @Deprecated('Use "lightMicrophoneLinesSlash" instead.') @@ -58716,7 +58716,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-lines-slash?style=thin /// audio, disable, disabled, disconnect, disconnect, mute, podcast, record, sing, sound, voice - static const IconData thinMicrophoneLinesSlash = IconDataThin(0xf539); + static const IconData thinMicrophoneLinesSlash = IconData(0xf539, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias microphone-alt-slash for icon [thinMicrophoneLinesSlash] @Deprecated('Use "thinMicrophoneLinesSlash" instead.') @@ -58726,132 +58726,132 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/microphone-slash?style=solid /// audio, disable, disabled, mute, podcast, record, sing, sound, voice - static const IconData solidMicrophoneSlash = IconDataSolid(0xf131); + static const IconData solidMicrophoneSlash = IconData(0xf131, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microphone Slash icon /// /// https://fontawesome.com/icons/microphone-slash?style=regular /// audio, disable, disabled, mute, podcast, record, sing, sound, voice - static const IconData microphoneSlash = IconDataRegular(0xf131); + static const IconData microphoneSlash = IconData(0xf131, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microphone Slash icon /// /// https://fontawesome.com/icons/microphone-slash?style=light /// audio, disable, disabled, mute, podcast, record, sing, sound, voice - static const IconData lightMicrophoneSlash = IconDataLight(0xf131); + static const IconData lightMicrophoneSlash = IconData(0xf131, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microphone Slash icon /// /// https://fontawesome.com/icons/microphone-slash?style=thin /// audio, disable, disabled, mute, podcast, record, sing, sound, voice - static const IconData thinMicrophoneSlash = IconDataThin(0xf131); + static const IconData thinMicrophoneSlash = IconData(0xf131, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Microphone Stand icon /// /// https://fontawesome.com/icons/microphone-stand?style=solid /// audio, karaoke, mic, microphone, podcast, record, sing, sound, talking, voice - static const IconData solidMicrophoneStand = IconDataSolid(0xf8cb); + static const IconData solidMicrophoneStand = IconData(0xf8cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microphone Stand icon /// /// https://fontawesome.com/icons/microphone-stand?style=regular /// audio, karaoke, mic, microphone, podcast, record, sing, sound, talking, voice - static const IconData microphoneStand = IconDataRegular(0xf8cb); + static const IconData microphoneStand = IconData(0xf8cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microphone Stand icon /// /// https://fontawesome.com/icons/microphone-stand?style=light /// audio, karaoke, mic, microphone, podcast, record, sing, sound, talking, voice - static const IconData lightMicrophoneStand = IconDataLight(0xf8cb); + static const IconData lightMicrophoneStand = IconData(0xf8cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microphone Stand icon /// /// https://fontawesome.com/icons/microphone-stand?style=thin /// audio, karaoke, mic, microphone, podcast, record, sing, sound, talking, voice - static const IconData thinMicrophoneStand = IconDataThin(0xf8cb); + static const IconData thinMicrophoneStand = IconData(0xf8cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Microscope icon /// /// https://fontawesome.com/icons/microscope?style=solid /// covid-19, electron, knowledge, lens, microscope, optics, science, shrink, testing, tool - static const IconData solidMicroscope = IconDataSolid(0xf610); + static const IconData solidMicroscope = IconData(0xf610, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microscope icon /// /// https://fontawesome.com/icons/microscope?style=regular /// covid-19, electron, knowledge, lens, microscope, optics, science, shrink, testing, tool - static const IconData microscope = IconDataRegular(0xf610); + static const IconData microscope = IconData(0xf610, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microscope icon /// /// https://fontawesome.com/icons/microscope?style=light /// covid-19, electron, knowledge, lens, microscope, optics, science, shrink, testing, tool - static const IconData lightMicroscope = IconDataLight(0xf610); + static const IconData lightMicroscope = IconData(0xf610, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microscope icon /// /// https://fontawesome.com/icons/microscope?style=thin /// covid-19, electron, knowledge, lens, microscope, optics, science, shrink, testing, tool - static const IconData thinMicroscope = IconDataThin(0xf610); + static const IconData thinMicroscope = IconData(0xf610, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Microsoft icon /// /// https://fontawesome.com/icons/microsoft?style=brands - static const IconData microsoft = IconDataBrands(0xf3ca); + static const IconData microsoft = IconData(0xf3ca, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Microwave icon /// /// https://fontawesome.com/icons/microwave?style=solid /// chef, cook, kitchen, nuke - static const IconData solidMicrowave = IconDataSolid(0xe01b); + static const IconData solidMicrowave = IconData(0xe01b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Microwave icon /// /// https://fontawesome.com/icons/microwave?style=regular /// chef, cook, kitchen, nuke - static const IconData microwave = IconDataRegular(0xe01b); + static const IconData microwave = IconData(0xe01b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Microwave icon /// /// https://fontawesome.com/icons/microwave?style=light /// chef, cook, kitchen, nuke - static const IconData lightMicrowave = IconDataLight(0xe01b); + static const IconData lightMicrowave = IconData(0xe01b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Microwave icon /// /// https://fontawesome.com/icons/microwave?style=thin /// chef, cook, kitchen, nuke - static const IconData thinMicrowave = IconDataThin(0xe01b); + static const IconData thinMicrowave = IconData(0xe01b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mill Sign icon /// /// https://fontawesome.com/icons/mill-sign?style=solid /// Mill Sign, currency - static const IconData solidMillSign = IconDataSolid(0xe1ed); + static const IconData solidMillSign = IconData(0xe1ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mill Sign icon /// /// https://fontawesome.com/icons/mill-sign?style=regular /// Mill Sign, currency - static const IconData millSign = IconDataRegular(0xe1ed); + static const IconData millSign = IconData(0xe1ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mill Sign icon /// /// https://fontawesome.com/icons/mill-sign?style=light /// Mill Sign, currency - static const IconData lightMillSign = IconDataLight(0xe1ed); + static const IconData lightMillSign = IconData(0xe1ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mill Sign icon /// /// https://fontawesome.com/icons/mill-sign?style=thin /// Mill Sign, currency - static const IconData thinMillSign = IconDataThin(0xe1ed); + static const IconData thinMillSign = IconData(0xe1ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Minimize icon /// /// https://fontawesome.com/icons/minimize?style=solid /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidMinimize = IconDataSolid(0xf78c); + static const IconData solidMinimize = IconData(0xf78c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows-alt for icon [solidMinimize] @Deprecated('Use "solidMinimize" instead.') @@ -58861,7 +58861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minimize?style=regular /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData minimize = IconDataRegular(0xf78c); + static const IconData minimize = IconData(0xf78c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows-alt for icon [minimize] @Deprecated('Use "minimize" instead.') @@ -58871,7 +58871,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minimize?style=light /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightMinimize = IconDataLight(0xf78c); + static const IconData lightMinimize = IconData(0xf78c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows-alt for icon [lightMinimize] @Deprecated('Use "lightMinimize" instead.') @@ -58881,7 +58881,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minimize?style=thin /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData thinMinimize = IconDataThin(0xf78c); + static const IconData thinMinimize = IconData(0xf78c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias compress-arrows-alt for icon [thinMinimize] @Deprecated('Use "thinMinimize" instead.') @@ -58890,13 +58890,13 @@ class FontAwesomeIcons { /// Brands Mintbit icon /// /// https://fontawesome.com/icons/mintbit?style=brands - static const IconData mintbit = IconDataBrands(0xe62f); + static const IconData mintbit = IconData(0xe62f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Minus icon /// /// https://fontawesome.com/icons/minus?style=solid /// En Dash, Minus Sign, collapse, delete, hide, math, minify, minus, negative, remove, sign, trash, − - static const IconData solidMinus = IconDataSolid(0xf068); + static const IconData solidMinus = IconData(0xf068, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias subtract for icon [solidMinus] @Deprecated('Use "solidMinus" instead.') @@ -58906,7 +58906,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minus?style=regular /// En Dash, Minus Sign, collapse, delete, hide, math, minify, minus, negative, remove, sign, trash, − - static const IconData minus = IconDataRegular(0xf068); + static const IconData minus = IconData(0xf068, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias subtract for icon [minus] @Deprecated('Use "minus" instead.') @@ -58916,7 +58916,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minus?style=light /// En Dash, Minus Sign, collapse, delete, hide, math, minify, minus, negative, remove, sign, trash, − - static const IconData lightMinus = IconDataLight(0xf068); + static const IconData lightMinus = IconData(0xf068, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias subtract for icon [lightMinus] @Deprecated('Use "lightMinus" instead.') @@ -58926,7 +58926,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/minus?style=thin /// En Dash, Minus Sign, collapse, delete, hide, math, minify, minus, negative, remove, sign, trash, − - static const IconData thinMinus = IconDataThin(0xf068); + static const IconData thinMinus = IconData(0xf068, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias subtract for icon [thinMinus] @Deprecated('Use "thinMinus" instead.') @@ -58936,75 +58936,75 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mistletoe?style=solid /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData solidMistletoe = IconDataSolid(0xf7b4); + static const IconData solidMistletoe = IconData(0xf7b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mistletoe icon /// /// https://fontawesome.com/icons/mistletoe?style=regular /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData mistletoe = IconDataRegular(0xf7b4); + static const IconData mistletoe = IconData(0xf7b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mistletoe icon /// /// https://fontawesome.com/icons/mistletoe?style=light /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData lightMistletoe = IconDataLight(0xf7b4); + static const IconData lightMistletoe = IconData(0xf7b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mistletoe icon /// /// https://fontawesome.com/icons/mistletoe?style=thin /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData thinMistletoe = IconDataThin(0xf7b4); + static const IconData thinMistletoe = IconData(0xf7b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mitten icon /// /// https://fontawesome.com/icons/mitten?style=solid /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData solidMitten = IconDataSolid(0xf7b5); + static const IconData solidMitten = IconData(0xf7b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mitten icon /// /// https://fontawesome.com/icons/mitten?style=regular /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData mitten = IconDataRegular(0xf7b5); + static const IconData mitten = IconData(0xf7b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mitten icon /// /// https://fontawesome.com/icons/mitten?style=light /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData lightMitten = IconDataLight(0xf7b5); + static const IconData lightMitten = IconData(0xf7b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mitten icon /// /// https://fontawesome.com/icons/mitten?style=thin /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData thinMitten = IconDataThin(0xf7b5); + static const IconData thinMitten = IconData(0xf7b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Mix icon /// /// https://fontawesome.com/icons/mix?style=brands - static const IconData mix = IconDataBrands(0xf3cb); + static const IconData mix = IconData(0xf3cb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Mixcloud icon /// /// https://fontawesome.com/icons/mixcloud?style=brands - static const IconData mixcloud = IconDataBrands(0xf289); + static const IconData mixcloud = IconData(0xf289, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Mixer icon /// /// https://fontawesome.com/icons/mixer?style=brands - static const IconData mixer = IconDataBrands(0xe056); + static const IconData mixer = IconData(0xe056, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Mizuni icon /// /// https://fontawesome.com/icons/mizuni?style=brands - static const IconData mizuni = IconDataBrands(0xf3cc); + static const IconData mizuni = IconData(0xf3cc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Mobile icon /// /// https://fontawesome.com/icons/mobile?style=solid /// android, call, cell, cell phone, device, mobile, mobile phone, number, phone, screen, telephone, text - static const IconData solidMobile = IconDataSolid(0xf3ce); + static const IconData solidMobile = IconData(0xf3ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android for icon [solidMobile] @Deprecated('Use "solidMobile" instead.') @@ -59018,7 +59018,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile?style=regular /// android, call, cell, cell phone, device, mobile, mobile phone, number, phone, screen, telephone, text - static const IconData mobile = IconDataRegular(0xf3ce); + static const IconData mobile = IconData(0xf3ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android for icon [mobile] @Deprecated('Use "mobile" instead.') @@ -59032,7 +59032,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile?style=light /// android, call, cell, cell phone, device, mobile, mobile phone, number, phone, screen, telephone, text - static const IconData lightMobile = IconDataLight(0xf3ce); + static const IconData lightMobile = IconData(0xf3ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android for icon [lightMobile] @Deprecated('Use "lightMobile" instead.') @@ -59046,7 +59046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile?style=thin /// android, call, cell, cell phone, device, mobile, mobile phone, number, phone, screen, telephone, text - static const IconData thinMobile = IconDataThin(0xf3ce); + static const IconData thinMobile = IconData(0xf3ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android for icon [thinMobile] @Deprecated('Use "thinMobile" instead.') @@ -59060,31 +59060,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-button?style=solid /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData solidMobileButton = IconDataSolid(0xf10b); + static const IconData solidMobileButton = IconData(0xf10b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mobile Button icon /// /// https://fontawesome.com/icons/mobile-button?style=regular /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData mobileButton = IconDataRegular(0xf10b); + static const IconData mobileButton = IconData(0xf10b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mobile Button icon /// /// https://fontawesome.com/icons/mobile-button?style=light /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData lightMobileButton = IconDataLight(0xf10b); + static const IconData lightMobileButton = IconData(0xf10b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mobile Button icon /// /// https://fontawesome.com/icons/mobile-button?style=thin /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData thinMobileButton = IconDataThin(0xf10b); + static const IconData thinMobileButton = IconData(0xf10b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mobile Notch icon /// /// https://fontawesome.com/icons/mobile-notch?style=solid /// display, iPhone X, iphone, smartphone - static const IconData solidMobileNotch = IconDataSolid(0xe1ee); + static const IconData solidMobileNotch = IconData(0xe1ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mobile-iphone for icon [solidMobileNotch] @Deprecated('Use "solidMobileNotch" instead.') @@ -59094,7 +59094,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-notch?style=regular /// display, iPhone X, iphone, smartphone - static const IconData mobileNotch = IconDataRegular(0xe1ee); + static const IconData mobileNotch = IconData(0xe1ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mobile-iphone for icon [mobileNotch] @Deprecated('Use "mobileNotch" instead.') @@ -59104,7 +59104,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-notch?style=light /// display, iPhone X, iphone, smartphone - static const IconData lightMobileNotch = IconDataLight(0xe1ee); + static const IconData lightMobileNotch = IconData(0xe1ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mobile-iphone for icon [lightMobileNotch] @Deprecated('Use "lightMobileNotch" instead.') @@ -59114,7 +59114,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-notch?style=thin /// display, iPhone X, iphone, smartphone - static const IconData thinMobileNotch = IconDataThin(0xe1ee); + static const IconData thinMobileNotch = IconData(0xe1ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mobile-iphone for icon [thinMobileNotch] @Deprecated('Use "thinMobileNotch" instead.') @@ -59124,31 +59124,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-retro?style=solid /// cellphone, cellular, phone - static const IconData solidMobileRetro = IconDataSolid(0xe527); + static const IconData solidMobileRetro = IconData(0xe527, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mobile Retro icon /// /// https://fontawesome.com/icons/mobile-retro?style=regular /// cellphone, cellular, phone - static const IconData mobileRetro = IconDataRegular(0xe527); + static const IconData mobileRetro = IconData(0xe527, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mobile Retro icon /// /// https://fontawesome.com/icons/mobile-retro?style=light /// cellphone, cellular, phone - static const IconData lightMobileRetro = IconDataLight(0xe527); + static const IconData lightMobileRetro = IconData(0xe527, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mobile Retro icon /// /// https://fontawesome.com/icons/mobile-retro?style=thin /// cellphone, cellular, phone - static const IconData thinMobileRetro = IconDataThin(0xe527); + static const IconData thinMobileRetro = IconData(0xe527, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mobile Screen icon /// /// https://fontawesome.com/icons/mobile-screen?style=solid /// android, call, cell phone, device, number, screen, telephone, text - static const IconData solidMobileScreen = IconDataSolid(0xf3cf); + static const IconData solidMobileScreen = IconData(0xf3cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android-alt for icon [solidMobileScreen] @Deprecated('Use "solidMobileScreen" instead.') @@ -59158,7 +59158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen?style=regular /// android, call, cell phone, device, number, screen, telephone, text - static const IconData mobileScreen = IconDataRegular(0xf3cf); + static const IconData mobileScreen = IconData(0xf3cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android-alt for icon [mobileScreen] @Deprecated('Use "mobileScreen" instead.') @@ -59168,7 +59168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen?style=light /// android, call, cell phone, device, number, screen, telephone, text - static const IconData lightMobileScreen = IconDataLight(0xf3cf); + static const IconData lightMobileScreen = IconData(0xf3cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android-alt for icon [lightMobileScreen] @Deprecated('Use "lightMobileScreen" instead.') @@ -59178,7 +59178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen?style=thin /// android, call, cell phone, device, number, screen, telephone, text - static const IconData thinMobileScreen = IconDataThin(0xf3cf); + static const IconData thinMobileScreen = IconData(0xf3cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mobile-android-alt for icon [thinMobileScreen] @Deprecated('Use "thinMobileScreen" instead.') @@ -59188,7 +59188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen-button?style=solid /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData solidMobileScreenButton = IconDataSolid(0xf3cd); + static const IconData solidMobileScreenButton = IconData(0xf3cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mobile-alt for icon [solidMobileScreenButton] @Deprecated('Use "solidMobileScreenButton" instead.') @@ -59198,7 +59198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen-button?style=regular /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData mobileScreenButton = IconDataRegular(0xf3cd); + static const IconData mobileScreenButton = IconData(0xf3cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mobile-alt for icon [mobileScreenButton] @Deprecated('Use "mobileScreenButton" instead.') @@ -59208,7 +59208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen-button?style=light /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData lightMobileScreenButton = IconDataLight(0xf3cd); + static const IconData lightMobileScreenButton = IconData(0xf3cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mobile-alt for icon [lightMobileScreenButton] @Deprecated('Use "lightMobileScreenButton" instead.') @@ -59218,7 +59218,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-screen-button?style=thin /// apple, call, cell phone, device, iphone, number, screen, telephone - static const IconData thinMobileScreenButton = IconDataThin(0xf3cd); + static const IconData thinMobileScreenButton = IconData(0xf3cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mobile-alt for icon [thinMobileScreenButton] @Deprecated('Use "thinMobileScreenButton" instead.') @@ -59228,89 +59228,89 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mobile-signal?style=solid /// android, iphone, nfc, scan - static const IconData solidMobileSignal = IconDataSolid(0xe1ef); + static const IconData solidMobileSignal = IconData(0xe1ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mobile Signal icon /// /// https://fontawesome.com/icons/mobile-signal?style=regular /// android, iphone, nfc, scan - static const IconData mobileSignal = IconDataRegular(0xe1ef); + static const IconData mobileSignal = IconData(0xe1ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mobile Signal icon /// /// https://fontawesome.com/icons/mobile-signal?style=light /// android, iphone, nfc, scan - static const IconData lightMobileSignal = IconDataLight(0xe1ef); + static const IconData lightMobileSignal = IconData(0xe1ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mobile Signal icon /// /// https://fontawesome.com/icons/mobile-signal?style=thin /// android, iphone, nfc, scan - static const IconData thinMobileSignal = IconDataThin(0xe1ef); + static const IconData thinMobileSignal = IconData(0xe1ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mobile Signal Out icon /// /// https://fontawesome.com/icons/mobile-signal-out?style=solid /// android, iphone, nfc, scan - static const IconData solidMobileSignalOut = IconDataSolid(0xe1f0); + static const IconData solidMobileSignalOut = IconData(0xe1f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mobile Signal Out icon /// /// https://fontawesome.com/icons/mobile-signal-out?style=regular /// android, iphone, nfc, scan - static const IconData mobileSignalOut = IconDataRegular(0xe1f0); + static const IconData mobileSignalOut = IconData(0xe1f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mobile Signal Out icon /// /// https://fontawesome.com/icons/mobile-signal-out?style=light /// android, iphone, nfc, scan - static const IconData lightMobileSignalOut = IconDataLight(0xe1f0); + static const IconData lightMobileSignalOut = IconData(0xe1f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mobile Signal Out icon /// /// https://fontawesome.com/icons/mobile-signal-out?style=thin /// android, iphone, nfc, scan - static const IconData thinMobileSignalOut = IconDataThin(0xe1f0); + static const IconData thinMobileSignalOut = IconData(0xe1f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands MODX icon /// /// https://fontawesome.com/icons/modx?style=brands - static const IconData modx = IconDataBrands(0xf285); + static const IconData modx = IconData(0xf285, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Monero icon /// /// https://fontawesome.com/icons/monero?style=brands - static const IconData monero = IconDataBrands(0xf3d0); + static const IconData monero = IconData(0xf3d0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill icon /// /// https://fontawesome.com/icons/money-bill?style=solid /// buy, cash, checkout, coupon, investment, money, payment, premium, price, purchase, revenue, salary - static const IconData solidMoneyBill = IconDataSolid(0xf0d6); + static const IconData solidMoneyBill = IconData(0xf0d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill icon /// /// https://fontawesome.com/icons/money-bill?style=regular /// buy, cash, checkout, coupon, investment, money, payment, premium, price, purchase, revenue, salary - static const IconData moneyBill = IconDataRegular(0xf0d6); + static const IconData moneyBill = IconData(0xf0d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill icon /// /// https://fontawesome.com/icons/money-bill?style=light /// buy, cash, checkout, coupon, investment, money, payment, premium, price, purchase, revenue, salary - static const IconData lightMoneyBill = IconDataLight(0xf0d6); + static const IconData lightMoneyBill = IconData(0xf0d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill icon /// /// https://fontawesome.com/icons/money-bill?style=thin /// buy, cash, checkout, coupon, investment, money, payment, premium, price, purchase, revenue, salary - static const IconData thinMoneyBill = IconDataThin(0xf0d6); + static const IconData thinMoneyBill = IconData(0xf0d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill 1 icon /// /// https://fontawesome.com/icons/money-bill-1?style=solid /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData solidMoneyBill1 = IconDataSolid(0xf3d1); + static const IconData solidMoneyBill1 = IconData(0xf3d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-alt for icon [solidMoneyBill1] @Deprecated('Use "solidMoneyBill1" instead.') @@ -59320,7 +59320,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1?style=regular /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData moneyBill1 = IconDataRegular(0xf3d1); + static const IconData moneyBill1 = IconData(0xf3d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-alt for icon [moneyBill1] @Deprecated('Use "moneyBill1" instead.') @@ -59330,7 +59330,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1?style=light /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData lightMoneyBill1 = IconDataLight(0xf3d1); + static const IconData lightMoneyBill1 = IconData(0xf3d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-alt for icon [lightMoneyBill1] @Deprecated('Use "lightMoneyBill1" instead.') @@ -59340,7 +59340,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1?style=thin /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData thinMoneyBill1 = IconDataThin(0xf3d1); + static const IconData thinMoneyBill1 = IconData(0xf3d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-alt for icon [thinMoneyBill1] @Deprecated('Use "thinMoneyBill1" instead.') @@ -59350,7 +59350,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1-wave?style=solid /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData solidMoneyBill1Wave = IconDataSolid(0xf53b); + static const IconData solidMoneyBill1Wave = IconData(0xf53b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-wave-alt for icon [solidMoneyBill1Wave] @Deprecated('Use "solidMoneyBill1Wave" instead.') @@ -59360,7 +59360,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1-wave?style=regular /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData moneyBill1Wave = IconDataRegular(0xf53b); + static const IconData moneyBill1Wave = IconData(0xf53b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-wave-alt for icon [moneyBill1Wave] @Deprecated('Use "moneyBill1Wave" instead.') @@ -59370,7 +59370,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1-wave?style=light /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData lightMoneyBill1Wave = IconDataLight(0xf53b); + static const IconData lightMoneyBill1Wave = IconData(0xf53b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-wave-alt for icon [lightMoneyBill1Wave] @Deprecated('Use "lightMoneyBill1Wave" instead.') @@ -59380,7 +59380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-1-wave?style=thin /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData thinMoneyBill1Wave = IconDataThin(0xf53b); + static const IconData thinMoneyBill1Wave = IconData(0xf53b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-bill-wave-alt for icon [thinMoneyBill1Wave] @Deprecated('Use "thinMoneyBill1Wave" instead.') @@ -59390,175 +59390,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bill-simple?style=solid /// atm, cash, investment, money, moolah, premium, salary - static const IconData solidMoneyBillSimple = IconDataSolid(0xe1f1); + static const IconData solidMoneyBillSimple = IconData(0xe1f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Simple icon /// /// https://fontawesome.com/icons/money-bill-simple?style=regular /// atm, cash, investment, money, moolah, premium, salary - static const IconData moneyBillSimple = IconDataRegular(0xe1f1); + static const IconData moneyBillSimple = IconData(0xe1f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Simple icon /// /// https://fontawesome.com/icons/money-bill-simple?style=light /// atm, cash, investment, money, moolah, premium, salary - static const IconData lightMoneyBillSimple = IconDataLight(0xe1f1); + static const IconData lightMoneyBillSimple = IconData(0xe1f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Simple icon /// /// https://fontawesome.com/icons/money-bill-simple?style=thin /// atm, cash, investment, money, moolah, premium, salary - static const IconData thinMoneyBillSimple = IconDataThin(0xe1f1); + static const IconData thinMoneyBillSimple = IconData(0xe1f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill Simple Wave icon /// /// https://fontawesome.com/icons/money-bill-simple-wave?style=solid /// atm, cash, money, moolah, premium, salary - static const IconData solidMoneyBillSimpleWave = IconDataSolid(0xe1f2); + static const IconData solidMoneyBillSimpleWave = IconData(0xe1f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Simple Wave icon /// /// https://fontawesome.com/icons/money-bill-simple-wave?style=regular /// atm, cash, money, moolah, premium, salary - static const IconData moneyBillSimpleWave = IconDataRegular(0xe1f2); + static const IconData moneyBillSimpleWave = IconData(0xe1f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Simple Wave icon /// /// https://fontawesome.com/icons/money-bill-simple-wave?style=light /// atm, cash, money, moolah, premium, salary - static const IconData lightMoneyBillSimpleWave = IconDataLight(0xe1f2); + static const IconData lightMoneyBillSimpleWave = IconData(0xe1f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Simple Wave icon /// /// https://fontawesome.com/icons/money-bill-simple-wave?style=thin /// atm, cash, money, moolah, premium, salary - static const IconData thinMoneyBillSimpleWave = IconDataThin(0xe1f2); + static const IconData thinMoneyBillSimpleWave = IconData(0xe1f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill Transfer icon /// /// https://fontawesome.com/icons/money-bill-transfer?style=solid /// bank, conversion, deposit, investment, money, salary, transfer, withdrawal - static const IconData solidMoneyBillTransfer = IconDataSolid(0xe528); + static const IconData solidMoneyBillTransfer = IconData(0xe528, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Transfer icon /// /// https://fontawesome.com/icons/money-bill-transfer?style=regular /// bank, conversion, deposit, investment, money, salary, transfer, withdrawal - static const IconData moneyBillTransfer = IconDataRegular(0xe528); + static const IconData moneyBillTransfer = IconData(0xe528, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Transfer icon /// /// https://fontawesome.com/icons/money-bill-transfer?style=light /// bank, conversion, deposit, investment, money, salary, transfer, withdrawal - static const IconData lightMoneyBillTransfer = IconDataLight(0xe528); + static const IconData lightMoneyBillTransfer = IconData(0xe528, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Transfer icon /// /// https://fontawesome.com/icons/money-bill-transfer?style=thin /// bank, conversion, deposit, investment, money, salary, transfer, withdrawal - static const IconData thinMoneyBillTransfer = IconDataThin(0xe528); + static const IconData thinMoneyBillTransfer = IconData(0xe528, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill Trend Up icon /// /// https://fontawesome.com/icons/money-bill-trend-up?style=solid /// bank, bonds, inflation, investment, market, revenue, salary, stocks, trade - static const IconData solidMoneyBillTrendUp = IconDataSolid(0xe529); + static const IconData solidMoneyBillTrendUp = IconData(0xe529, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Trend Up icon /// /// https://fontawesome.com/icons/money-bill-trend-up?style=regular /// bank, bonds, inflation, investment, market, revenue, salary, stocks, trade - static const IconData moneyBillTrendUp = IconDataRegular(0xe529); + static const IconData moneyBillTrendUp = IconData(0xe529, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Trend Up icon /// /// https://fontawesome.com/icons/money-bill-trend-up?style=light /// bank, bonds, inflation, investment, market, revenue, salary, stocks, trade - static const IconData lightMoneyBillTrendUp = IconDataLight(0xe529); + static const IconData lightMoneyBillTrendUp = IconData(0xe529, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Trend Up icon /// /// https://fontawesome.com/icons/money-bill-trend-up?style=thin /// bank, bonds, inflation, investment, market, revenue, salary, stocks, trade - static const IconData thinMoneyBillTrendUp = IconDataThin(0xe529); + static const IconData thinMoneyBillTrendUp = IconData(0xe529, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill Wave icon /// /// https://fontawesome.com/icons/money-bill-wave?style=solid /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData solidMoneyBillWave = IconDataSolid(0xf53a); + static const IconData solidMoneyBillWave = IconData(0xf53a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Wave icon /// /// https://fontawesome.com/icons/money-bill-wave?style=regular /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData moneyBillWave = IconDataRegular(0xf53a); + static const IconData moneyBillWave = IconData(0xf53a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Wave icon /// /// https://fontawesome.com/icons/money-bill-wave?style=light /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData lightMoneyBillWave = IconDataLight(0xf53a); + static const IconData lightMoneyBillWave = IconData(0xf53a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Wave icon /// /// https://fontawesome.com/icons/money-bill-wave?style=thin /// buy, cash, checkout, money, payment, premium, price, purchase, salary - static const IconData thinMoneyBillWave = IconDataThin(0xf53a); + static const IconData thinMoneyBillWave = IconData(0xf53a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bill Wheat icon /// /// https://fontawesome.com/icons/money-bill-wheat?style=solid /// agribusiness, agriculture, farming, food, investment, livelihood, subsidy - static const IconData solidMoneyBillWheat = IconDataSolid(0xe52a); + static const IconData solidMoneyBillWheat = IconData(0xe52a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bill Wheat icon /// /// https://fontawesome.com/icons/money-bill-wheat?style=regular /// agribusiness, agriculture, farming, food, investment, livelihood, subsidy - static const IconData moneyBillWheat = IconDataRegular(0xe52a); + static const IconData moneyBillWheat = IconData(0xe52a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bill Wheat icon /// /// https://fontawesome.com/icons/money-bill-wheat?style=light /// agribusiness, agriculture, farming, food, investment, livelihood, subsidy - static const IconData lightMoneyBillWheat = IconDataLight(0xe52a); + static const IconData lightMoneyBillWheat = IconData(0xe52a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bill Wheat icon /// /// https://fontawesome.com/icons/money-bill-wheat?style=thin /// agribusiness, agriculture, farming, food, investment, livelihood, subsidy - static const IconData thinMoneyBillWheat = IconDataThin(0xe52a); + static const IconData thinMoneyBillWheat = IconData(0xe52a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bills icon /// /// https://fontawesome.com/icons/money-bills?style=solid /// atm, cash, investment, money, moolah, premium, revenue, salary - static const IconData solidMoneyBills = IconDataSolid(0xe1f3); + static const IconData solidMoneyBills = IconData(0xe1f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Bills icon /// /// https://fontawesome.com/icons/money-bills?style=regular /// atm, cash, investment, money, moolah, premium, revenue, salary - static const IconData moneyBills = IconDataRegular(0xe1f3); + static const IconData moneyBills = IconData(0xe1f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Bills icon /// /// https://fontawesome.com/icons/money-bills?style=light /// atm, cash, investment, money, moolah, premium, revenue, salary - static const IconData lightMoneyBills = IconDataLight(0xe1f3); + static const IconData lightMoneyBills = IconData(0xe1f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Bills icon /// /// https://fontawesome.com/icons/money-bills?style=thin /// atm, cash, investment, money, moolah, premium, revenue, salary - static const IconData thinMoneyBills = IconDataThin(0xe1f3); + static const IconData thinMoneyBills = IconData(0xe1f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Bills Simple icon /// /// https://fontawesome.com/icons/money-bills-simple?style=solid /// atm, cash, investment, money, moolah, premium, salary - static const IconData solidMoneyBillsSimple = IconDataSolid(0xe1f4); + static const IconData solidMoneyBillsSimple = IconData(0xe1f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-bills-alt for icon [solidMoneyBillsSimple] @Deprecated('Use "solidMoneyBillsSimple" instead.') @@ -59568,7 +59568,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bills-simple?style=regular /// atm, cash, investment, money, moolah, premium, salary - static const IconData moneyBillsSimple = IconDataRegular(0xe1f4); + static const IconData moneyBillsSimple = IconData(0xe1f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-bills-alt for icon [moneyBillsSimple] @Deprecated('Use "moneyBillsSimple" instead.') @@ -59578,7 +59578,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bills-simple?style=light /// atm, cash, investment, money, moolah, premium, salary - static const IconData lightMoneyBillsSimple = IconDataLight(0xe1f4); + static const IconData lightMoneyBillsSimple = IconData(0xe1f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-bills-alt for icon [lightMoneyBillsSimple] @Deprecated('Use "lightMoneyBillsSimple" instead.') @@ -59588,7 +59588,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-bills-simple?style=thin /// atm, cash, investment, money, moolah, premium, salary - static const IconData thinMoneyBillsSimple = IconDataThin(0xe1f4); + static const IconData thinMoneyBillsSimple = IconData(0xe1f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-bills-alt for icon [thinMoneyBillsSimple] @Deprecated('Use "thinMoneyBillsSimple" instead.') @@ -59598,31 +59598,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check?style=solid /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData solidMoneyCheck = IconDataSolid(0xf53c); + static const IconData solidMoneyCheck = IconData(0xf53c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Check icon /// /// https://fontawesome.com/icons/money-check?style=regular /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData moneyCheck = IconDataRegular(0xf53c); + static const IconData moneyCheck = IconData(0xf53c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Check icon /// /// https://fontawesome.com/icons/money-check?style=light /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData lightMoneyCheck = IconDataLight(0xf53c); + static const IconData lightMoneyCheck = IconData(0xf53c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Check icon /// /// https://fontawesome.com/icons/money-check?style=thin /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData thinMoneyCheck = IconDataThin(0xf53c); + static const IconData thinMoneyCheck = IconData(0xf53c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Check Dollar icon /// /// https://fontawesome.com/icons/money-check-dollar?style=solid /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData solidMoneyCheckDollar = IconDataSolid(0xf53d); + static const IconData solidMoneyCheckDollar = IconData(0xf53d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-check-alt for icon [solidMoneyCheckDollar] @Deprecated('Use "solidMoneyCheckDollar" instead.') @@ -59632,7 +59632,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar?style=regular /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData moneyCheckDollar = IconDataRegular(0xf53d); + static const IconData moneyCheckDollar = IconData(0xf53d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-check-alt for icon [moneyCheckDollar] @Deprecated('Use "moneyCheckDollar" instead.') @@ -59642,7 +59642,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar?style=light /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData lightMoneyCheckDollar = IconDataLight(0xf53d); + static const IconData lightMoneyCheckDollar = IconData(0xf53d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-check-alt for icon [lightMoneyCheckDollar] @Deprecated('Use "lightMoneyCheckDollar" instead.') @@ -59652,7 +59652,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar?style=thin /// bank check, buy, checkout, cheque, money, payment, price, purchase, salary - static const IconData thinMoneyCheckDollar = IconDataThin(0xf53d); + static const IconData thinMoneyCheckDollar = IconData(0xf53d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-check-alt for icon [thinMoneyCheckDollar] @Deprecated('Use "thinMoneyCheckDollar" instead.') @@ -59662,7 +59662,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar-pen?style=solid /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData solidMoneyCheckDollarPen = IconDataSolid(0xf873); + static const IconData solidMoneyCheckDollarPen = IconData(0xf873, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit-alt for icon [solidMoneyCheckDollarPen] @Deprecated('Use "solidMoneyCheckDollarPen" instead.') @@ -59672,7 +59672,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar-pen?style=regular /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData moneyCheckDollarPen = IconDataRegular(0xf873); + static const IconData moneyCheckDollarPen = IconData(0xf873, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit-alt for icon [moneyCheckDollarPen] @Deprecated('Use "moneyCheckDollarPen" instead.') @@ -59682,7 +59682,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar-pen?style=light /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData lightMoneyCheckDollarPen = IconDataLight(0xf873); + static const IconData lightMoneyCheckDollarPen = IconData(0xf873, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit-alt for icon [lightMoneyCheckDollarPen] @Deprecated('Use "lightMoneyCheckDollarPen" instead.') @@ -59692,7 +59692,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-dollar-pen?style=thin /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData thinMoneyCheckDollarPen = IconDataThin(0xf873); + static const IconData thinMoneyCheckDollarPen = IconData(0xf873, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit-alt for icon [thinMoneyCheckDollarPen] @Deprecated('Use "thinMoneyCheckDollarPen" instead.') @@ -59702,7 +59702,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-pen?style=solid /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData solidMoneyCheckPen = IconDataSolid(0xf872); + static const IconData solidMoneyCheckPen = IconData(0xf872, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit for icon [solidMoneyCheckPen] @Deprecated('Use "solidMoneyCheckPen" instead.') @@ -59712,7 +59712,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-pen?style=regular /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData moneyCheckPen = IconDataRegular(0xf872); + static const IconData moneyCheckPen = IconData(0xf872, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit for icon [moneyCheckPen] @Deprecated('Use "moneyCheckPen" instead.') @@ -59722,7 +59722,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-pen?style=light /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData lightMoneyCheckPen = IconDataLight(0xf872); + static const IconData lightMoneyCheckPen = IconData(0xf872, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit for icon [lightMoneyCheckPen] @Deprecated('Use "lightMoneyCheckPen" instead.') @@ -59732,7 +59732,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-check-pen?style=thin /// bank check, buy, checkout, cheque, modify, money, payment, pen, price, purchase, salary - static const IconData thinMoneyCheckPen = IconDataThin(0xf872); + static const IconData thinMoneyCheckPen = IconData(0xf872, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias money-check-edit for icon [thinMoneyCheckPen] @Deprecated('Use "thinMoneyCheckPen" instead.') @@ -59742,55 +59742,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/money-from-bracket?style=solid /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData solidMoneyFromBracket = IconDataSolid(0xe312); + static const IconData solidMoneyFromBracket = IconData(0xe312, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money From Bracket icon /// /// https://fontawesome.com/icons/money-from-bracket?style=regular /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData moneyFromBracket = IconDataRegular(0xe312); + static const IconData moneyFromBracket = IconData(0xe312, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money From Bracket icon /// /// https://fontawesome.com/icons/money-from-bracket?style=light /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData lightMoneyFromBracket = IconDataLight(0xe312); + static const IconData lightMoneyFromBracket = IconData(0xe312, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money From Bracket icon /// /// https://fontawesome.com/icons/money-from-bracket?style=thin /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData thinMoneyFromBracket = IconDataThin(0xe312); + static const IconData thinMoneyFromBracket = IconData(0xe312, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Money Simple From Bracket icon /// /// https://fontawesome.com/icons/money-simple-from-bracket?style=solid /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData solidMoneySimpleFromBracket = IconDataSolid(0xe313); + static const IconData solidMoneySimpleFromBracket = IconData(0xe313, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Money Simple From Bracket icon /// /// https://fontawesome.com/icons/money-simple-from-bracket?style=regular /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData moneySimpleFromBracket = IconDataRegular(0xe313); + static const IconData moneySimpleFromBracket = IconData(0xe313, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Money Simple From Bracket icon /// /// https://fontawesome.com/icons/money-simple-from-bracket?style=light /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData lightMoneySimpleFromBracket = IconDataLight(0xe313); + static const IconData lightMoneySimpleFromBracket = IconData(0xe313, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Money Simple From Bracket icon /// /// https://fontawesome.com/icons/money-simple-from-bracket?style=thin /// atm, automated, cash, deposit, dispenser, investment, salary, transaction, withdrawl - static const IconData thinMoneySimpleFromBracket = IconDataThin(0xe313); + static const IconData thinMoneySimpleFromBracket = IconData(0xe313, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Monitor Waveform icon /// /// https://fontawesome.com/icons/monitor-waveform?style=solid /// EKG, electrocardiogram, health, life, vital - static const IconData solidMonitorWaveform = IconDataSolid(0xf611); + static const IconData solidMonitorWaveform = IconData(0xf611, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias monitor-heart-rate for icon [solidMonitorWaveform] @Deprecated('Use "solidMonitorWaveform" instead.') @@ -59800,7 +59800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/monitor-waveform?style=regular /// EKG, electrocardiogram, health, life, vital - static const IconData monitorWaveform = IconDataRegular(0xf611); + static const IconData monitorWaveform = IconData(0xf611, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias monitor-heart-rate for icon [monitorWaveform] @Deprecated('Use "monitorWaveform" instead.') @@ -59810,7 +59810,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/monitor-waveform?style=light /// EKG, electrocardiogram, health, life, vital - static const IconData lightMonitorWaveform = IconDataLight(0xf611); + static const IconData lightMonitorWaveform = IconData(0xf611, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias monitor-heart-rate for icon [lightMonitorWaveform] @Deprecated('Use "lightMonitorWaveform" instead.') @@ -59820,7 +59820,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/monitor-waveform?style=thin /// EKG, electrocardiogram, health, life, vital - static const IconData thinMonitorWaveform = IconDataThin(0xf611); + static const IconData thinMonitorWaveform = IconData(0xf611, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias monitor-heart-rate for icon [thinMonitorWaveform] @Deprecated('Use "thinMonitorWaveform" instead.') @@ -59830,103 +59830,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/monkey?style=solid /// animal, banana, fauna, mammal, monke, monkey, tail - static const IconData solidMonkey = IconDataSolid(0xf6fb); + static const IconData solidMonkey = IconData(0xf6fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Monkey icon /// /// https://fontawesome.com/icons/monkey?style=regular /// animal, banana, fauna, mammal, monke, monkey, tail - static const IconData monkey = IconDataRegular(0xf6fb); + static const IconData monkey = IconData(0xf6fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Monkey icon /// /// https://fontawesome.com/icons/monkey?style=light /// animal, banana, fauna, mammal, monke, monkey, tail - static const IconData lightMonkey = IconDataLight(0xf6fb); + static const IconData lightMonkey = IconData(0xf6fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Monkey icon /// /// https://fontawesome.com/icons/monkey?style=thin /// animal, banana, fauna, mammal, monke, monkey, tail - static const IconData thinMonkey = IconDataThin(0xf6fb); + static const IconData thinMonkey = IconData(0xf6fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Monument icon /// /// https://fontawesome.com/icons/monument?style=solid /// building, historic, landmark, memorable - static const IconData solidMonument = IconDataSolid(0xf5a6); + static const IconData solidMonument = IconData(0xf5a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Monument icon /// /// https://fontawesome.com/icons/monument?style=regular /// building, historic, landmark, memorable - static const IconData monument = IconDataRegular(0xf5a6); + static const IconData monument = IconData(0xf5a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Monument icon /// /// https://fontawesome.com/icons/monument?style=light /// building, historic, landmark, memorable - static const IconData lightMonument = IconDataLight(0xf5a6); + static const IconData lightMonument = IconData(0xf5a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Monument icon /// /// https://fontawesome.com/icons/monument?style=thin /// building, historic, landmark, memorable - static const IconData thinMonument = IconDataThin(0xf5a6); + static const IconData thinMonument = IconData(0xf5a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Moon icon /// /// https://fontawesome.com/icons/moon?style=solid /// Power Sleep Symbol, contrast, crescent, crescent moon, dark, lunar, moon, night - static const IconData solidMoon = IconDataSolid(0xf186); + static const IconData solidMoon = IconData(0xf186, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Moon icon /// /// https://fontawesome.com/icons/moon?style=regular /// Power Sleep Symbol, contrast, crescent, crescent moon, dark, lunar, moon, night - static const IconData moon = IconDataRegular(0xf186); + static const IconData moon = IconData(0xf186, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Moon icon /// /// https://fontawesome.com/icons/moon?style=light /// Power Sleep Symbol, contrast, crescent, crescent moon, dark, lunar, moon, night - static const IconData lightMoon = IconDataLight(0xf186); + static const IconData lightMoon = IconData(0xf186, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Moon icon /// /// https://fontawesome.com/icons/moon?style=thin /// Power Sleep Symbol, contrast, crescent, crescent moon, dark, lunar, moon, night - static const IconData thinMoon = IconDataThin(0xf186); + static const IconData thinMoon = IconData(0xf186, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Moon Cloud icon /// /// https://fontawesome.com/icons/moon-cloud?style=solid /// crescent, dark, lunar, night, overcast - static const IconData solidMoonCloud = IconDataSolid(0xf754); + static const IconData solidMoonCloud = IconData(0xf754, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Moon Cloud icon /// /// https://fontawesome.com/icons/moon-cloud?style=regular /// crescent, dark, lunar, night, overcast - static const IconData moonCloud = IconDataRegular(0xf754); + static const IconData moonCloud = IconData(0xf754, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Moon Cloud icon /// /// https://fontawesome.com/icons/moon-cloud?style=light /// crescent, dark, lunar, night, overcast - static const IconData lightMoonCloud = IconDataLight(0xf754); + static const IconData lightMoonCloud = IconData(0xf754, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Moon Cloud icon /// /// https://fontawesome.com/icons/moon-cloud?style=thin /// crescent, dark, lunar, night, overcast - static const IconData thinMoonCloud = IconDataThin(0xf754); + static const IconData thinMoonCloud = IconData(0xf754, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Moon Over Sun icon /// /// https://fontawesome.com/icons/moon-over-sun?style=solid /// lunar, moon, shadow, solar, sun - static const IconData solidMoonOverSun = IconDataSolid(0xf74a); + static const IconData solidMoonOverSun = IconData(0xf74a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias eclipse-alt for icon [solidMoonOverSun] @Deprecated('Use "solidMoonOverSun" instead.') @@ -59936,7 +59936,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/moon-over-sun?style=regular /// lunar, moon, shadow, solar, sun - static const IconData moonOverSun = IconDataRegular(0xf74a); + static const IconData moonOverSun = IconData(0xf74a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias eclipse-alt for icon [moonOverSun] @Deprecated('Use "moonOverSun" instead.') @@ -59946,7 +59946,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/moon-over-sun?style=light /// lunar, moon, shadow, solar, sun - static const IconData lightMoonOverSun = IconDataLight(0xf74a); + static const IconData lightMoonOverSun = IconData(0xf74a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias eclipse-alt for icon [lightMoonOverSun] @Deprecated('Use "lightMoonOverSun" instead.') @@ -59956,7 +59956,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/moon-over-sun?style=thin /// lunar, moon, shadow, solar, sun - static const IconData thinMoonOverSun = IconDataThin(0xf74a); + static const IconData thinMoonOverSun = IconData(0xf74a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias eclipse-alt for icon [thinMoonOverSun] @Deprecated('Use "thinMoonOverSun" instead.') @@ -59966,415 +59966,415 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/moon-stars?style=solid /// clear, crescent, lunar, space, star - static const IconData solidMoonStars = IconDataSolid(0xf755); + static const IconData solidMoonStars = IconData(0xf755, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Moon Stars icon /// /// https://fontawesome.com/icons/moon-stars?style=regular /// clear, crescent, lunar, space, star - static const IconData moonStars = IconDataRegular(0xf755); + static const IconData moonStars = IconData(0xf755, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Moon Stars icon /// /// https://fontawesome.com/icons/moon-stars?style=light /// clear, crescent, lunar, space, star - static const IconData lightMoonStars = IconDataLight(0xf755); + static const IconData lightMoonStars = IconData(0xf755, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Moon Stars icon /// /// https://fontawesome.com/icons/moon-stars?style=thin /// clear, crescent, lunar, space, star - static const IconData thinMoonStars = IconDataThin(0xf755); + static const IconData thinMoonStars = IconData(0xf755, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Moped icon /// /// https://fontawesome.com/icons/moped?style=solid /// delivery, motorbike, scooter - static const IconData solidMoped = IconDataSolid(0xe3b9); + static const IconData solidMoped = IconData(0xe3b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Moped icon /// /// https://fontawesome.com/icons/moped?style=regular /// delivery, motorbike, scooter - static const IconData moped = IconDataRegular(0xe3b9); + static const IconData moped = IconData(0xe3b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Moped icon /// /// https://fontawesome.com/icons/moped?style=light /// delivery, motorbike, scooter - static const IconData lightMoped = IconDataLight(0xe3b9); + static const IconData lightMoped = IconData(0xe3b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Moped icon /// /// https://fontawesome.com/icons/moped?style=thin /// delivery, motorbike, scooter - static const IconData thinMoped = IconDataThin(0xe3b9); + static const IconData thinMoped = IconData(0xe3b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mortar Pestle icon /// /// https://fontawesome.com/icons/mortar-pestle?style=solid /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData solidMortarPestle = IconDataSolid(0xf5a7); + static const IconData solidMortarPestle = IconData(0xf5a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mortar Pestle icon /// /// https://fontawesome.com/icons/mortar-pestle?style=regular /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData mortarPestle = IconDataRegular(0xf5a7); + static const IconData mortarPestle = IconData(0xf5a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mortar Pestle icon /// /// https://fontawesome.com/icons/mortar-pestle?style=light /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData lightMortarPestle = IconDataLight(0xf5a7); + static const IconData lightMortarPestle = IconData(0xf5a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mortar Pestle icon /// /// https://fontawesome.com/icons/mortar-pestle?style=thin /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData thinMortarPestle = IconDataThin(0xf5a7); + static const IconData thinMortarPestle = IconData(0xf5a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mosque icon /// /// https://fontawesome.com/icons/mosque?style=solid /// Muslim, building, islam, landmark, mosque, muslim, religion - static const IconData solidMosque = IconDataSolid(0xf678); + static const IconData solidMosque = IconData(0xf678, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mosque icon /// /// https://fontawesome.com/icons/mosque?style=regular /// Muslim, building, islam, landmark, mosque, muslim, religion - static const IconData mosque = IconDataRegular(0xf678); + static const IconData mosque = IconData(0xf678, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mosque icon /// /// https://fontawesome.com/icons/mosque?style=light /// Muslim, building, islam, landmark, mosque, muslim, religion - static const IconData lightMosque = IconDataLight(0xf678); + static const IconData lightMosque = IconData(0xf678, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mosque icon /// /// https://fontawesome.com/icons/mosque?style=thin /// Muslim, building, islam, landmark, mosque, muslim, religion - static const IconData thinMosque = IconDataThin(0xf678); + static const IconData thinMosque = IconData(0xf678, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mosquito icon /// /// https://fontawesome.com/icons/mosquito?style=solid /// bite, bug, mosquito, west nile - static const IconData solidMosquito = IconDataSolid(0xe52b); + static const IconData solidMosquito = IconData(0xe52b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mosquito icon /// /// https://fontawesome.com/icons/mosquito?style=regular /// bite, bug, mosquito, west nile - static const IconData mosquito = IconDataRegular(0xe52b); + static const IconData mosquito = IconData(0xe52b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mosquito icon /// /// https://fontawesome.com/icons/mosquito?style=light /// bite, bug, mosquito, west nile - static const IconData lightMosquito = IconDataLight(0xe52b); + static const IconData lightMosquito = IconData(0xe52b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mosquito icon /// /// https://fontawesome.com/icons/mosquito?style=thin /// bite, bug, mosquito, west nile - static const IconData thinMosquito = IconDataThin(0xe52b); + static const IconData thinMosquito = IconData(0xe52b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mosquito Net icon /// /// https://fontawesome.com/icons/mosquito-net?style=solid /// bite, malaria, mosquito, net - static const IconData solidMosquitoNet = IconDataSolid(0xe52c); + static const IconData solidMosquitoNet = IconData(0xe52c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mosquito Net icon /// /// https://fontawesome.com/icons/mosquito-net?style=regular /// bite, malaria, mosquito, net - static const IconData mosquitoNet = IconDataRegular(0xe52c); + static const IconData mosquitoNet = IconData(0xe52c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mosquito Net icon /// /// https://fontawesome.com/icons/mosquito-net?style=light /// bite, malaria, mosquito, net - static const IconData lightMosquitoNet = IconDataLight(0xe52c); + static const IconData lightMosquitoNet = IconData(0xe52c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mosquito Net icon /// /// https://fontawesome.com/icons/mosquito-net?style=thin /// bite, malaria, mosquito, net - static const IconData thinMosquitoNet = IconDataThin(0xe52c); + static const IconData thinMosquitoNet = IconData(0xe52c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Motorcycle icon /// /// https://fontawesome.com/icons/motorcycle?style=solid /// bike, machine, motorcycle, racing, transportation, vehicle - static const IconData solidMotorcycle = IconDataSolid(0xf21c); + static const IconData solidMotorcycle = IconData(0xf21c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Motorcycle icon /// /// https://fontawesome.com/icons/motorcycle?style=regular /// bike, machine, motorcycle, racing, transportation, vehicle - static const IconData motorcycle = IconDataRegular(0xf21c); + static const IconData motorcycle = IconData(0xf21c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Motorcycle icon /// /// https://fontawesome.com/icons/motorcycle?style=light /// bike, machine, motorcycle, racing, transportation, vehicle - static const IconData lightMotorcycle = IconDataLight(0xf21c); + static const IconData lightMotorcycle = IconData(0xf21c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Motorcycle icon /// /// https://fontawesome.com/icons/motorcycle?style=thin /// bike, machine, motorcycle, racing, transportation, vehicle - static const IconData thinMotorcycle = IconDataThin(0xf21c); + static const IconData thinMotorcycle = IconData(0xf21c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mound icon /// /// https://fontawesome.com/icons/mound?style=solid /// barrier, hill, pitcher, speedbump - static const IconData solidMound = IconDataSolid(0xe52d); + static const IconData solidMound = IconData(0xe52d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mound icon /// /// https://fontawesome.com/icons/mound?style=regular /// barrier, hill, pitcher, speedbump - static const IconData mound = IconDataRegular(0xe52d); + static const IconData mound = IconData(0xe52d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mound icon /// /// https://fontawesome.com/icons/mound?style=light /// barrier, hill, pitcher, speedbump - static const IconData lightMound = IconDataLight(0xe52d); + static const IconData lightMound = IconData(0xe52d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mound icon /// /// https://fontawesome.com/icons/mound?style=thin /// barrier, hill, pitcher, speedbump - static const IconData thinMound = IconDataThin(0xe52d); + static const IconData thinMound = IconData(0xe52d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mountain icon /// /// https://fontawesome.com/icons/mountain?style=solid /// cold, glacier, hiking, hill, landscape, mountain, snow, snow-capped mountain, travel, view - static const IconData solidMountain = IconDataSolid(0xf6fc); + static const IconData solidMountain = IconData(0xf6fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mountain icon /// /// https://fontawesome.com/icons/mountain?style=regular /// cold, glacier, hiking, hill, landscape, mountain, snow, snow-capped mountain, travel, view - static const IconData mountain = IconDataRegular(0xf6fc); + static const IconData mountain = IconData(0xf6fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mountain icon /// /// https://fontawesome.com/icons/mountain?style=light /// cold, glacier, hiking, hill, landscape, mountain, snow, snow-capped mountain, travel, view - static const IconData lightMountain = IconDataLight(0xf6fc); + static const IconData lightMountain = IconData(0xf6fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mountain icon /// /// https://fontawesome.com/icons/mountain?style=thin /// cold, glacier, hiking, hill, landscape, mountain, snow, snow-capped mountain, travel, view - static const IconData thinMountain = IconDataThin(0xf6fc); + static const IconData thinMountain = IconData(0xf6fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mountain City icon /// /// https://fontawesome.com/icons/mountain-city?style=solid /// location, rural, urban - static const IconData solidMountainCity = IconDataSolid(0xe52e); + static const IconData solidMountainCity = IconData(0xe52e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mountain City icon /// /// https://fontawesome.com/icons/mountain-city?style=regular /// location, rural, urban - static const IconData mountainCity = IconDataRegular(0xe52e); + static const IconData mountainCity = IconData(0xe52e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mountain City icon /// /// https://fontawesome.com/icons/mountain-city?style=light /// location, rural, urban - static const IconData lightMountainCity = IconDataLight(0xe52e); + static const IconData lightMountainCity = IconData(0xe52e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mountain City icon /// /// https://fontawesome.com/icons/mountain-city?style=thin /// location, rural, urban - static const IconData thinMountainCity = IconDataThin(0xe52e); + static const IconData thinMountainCity = IconData(0xe52e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mountain Sun icon /// /// https://fontawesome.com/icons/mountain-sun?style=solid /// country, hiking, landscape, rural, travel, view - static const IconData solidMountainSun = IconDataSolid(0xe52f); + static const IconData solidMountainSun = IconData(0xe52f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mountain Sun icon /// /// https://fontawesome.com/icons/mountain-sun?style=regular /// country, hiking, landscape, rural, travel, view - static const IconData mountainSun = IconDataRegular(0xe52f); + static const IconData mountainSun = IconData(0xe52f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mountain Sun icon /// /// https://fontawesome.com/icons/mountain-sun?style=light /// country, hiking, landscape, rural, travel, view - static const IconData lightMountainSun = IconDataLight(0xe52f); + static const IconData lightMountainSun = IconData(0xe52f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mountain Sun icon /// /// https://fontawesome.com/icons/mountain-sun?style=thin /// country, hiking, landscape, rural, travel, view - static const IconData thinMountainSun = IconDataThin(0xe52f); + static const IconData thinMountainSun = IconData(0xe52f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mountains icon /// /// https://fontawesome.com/icons/mountains?style=solid /// glacier, hiking, hill, landscape, mountain, travel, view - static const IconData solidMountains = IconDataSolid(0xf6fd); + static const IconData solidMountains = IconData(0xf6fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mountains icon /// /// https://fontawesome.com/icons/mountains?style=regular /// glacier, hiking, hill, landscape, mountain, travel, view - static const IconData mountains = IconDataRegular(0xf6fd); + static const IconData mountains = IconData(0xf6fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mountains icon /// /// https://fontawesome.com/icons/mountains?style=light /// glacier, hiking, hill, landscape, mountain, travel, view - static const IconData lightMountains = IconDataLight(0xf6fd); + static const IconData lightMountains = IconData(0xf6fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mountains icon /// /// https://fontawesome.com/icons/mountains?style=thin /// glacier, hiking, hill, landscape, mountain, travel, view - static const IconData thinMountains = IconDataThin(0xf6fd); + static const IconData thinMountains = IconData(0xf6fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mouse Field icon /// /// https://fontawesome.com/icons/mouse-field?style=solid /// cheese, mickey, minnie, rat, rodent, squeak - static const IconData solidMouseField = IconDataSolid(0xe5a8); + static const IconData solidMouseField = IconData(0xe5a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mouse Field icon /// /// https://fontawesome.com/icons/mouse-field?style=regular /// cheese, mickey, minnie, rat, rodent, squeak - static const IconData mouseField = IconDataRegular(0xe5a8); + static const IconData mouseField = IconData(0xe5a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mouse Field icon /// /// https://fontawesome.com/icons/mouse-field?style=light /// cheese, mickey, minnie, rat, rodent, squeak - static const IconData lightMouseField = IconDataLight(0xe5a8); + static const IconData lightMouseField = IconData(0xe5a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mouse Field icon /// /// https://fontawesome.com/icons/mouse-field?style=thin /// cheese, mickey, minnie, rat, rodent, squeak - static const IconData thinMouseField = IconDataThin(0xe5a8); + static const IconData thinMouseField = IconData(0xe5a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mp3 Player icon /// /// https://fontawesome.com/icons/mp3-player?style=solid /// audio, handheld, ipod, itunes, music, zune - static const IconData solidMp3Player = IconDataSolid(0xf8ce); + static const IconData solidMp3Player = IconData(0xf8ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mp3 Player icon /// /// https://fontawesome.com/icons/mp3-player?style=regular /// audio, handheld, ipod, itunes, music, zune - static const IconData mp3Player = IconDataRegular(0xf8ce); + static const IconData mp3Player = IconData(0xf8ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mp3 Player icon /// /// https://fontawesome.com/icons/mp3-player?style=light /// audio, handheld, ipod, itunes, music, zune - static const IconData lightMp3Player = IconDataLight(0xf8ce); + static const IconData lightMp3Player = IconData(0xf8ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mp3 Player icon /// /// https://fontawesome.com/icons/mp3-player?style=thin /// audio, handheld, ipod, itunes, music, zune - static const IconData thinMp3Player = IconDataThin(0xf8ce); + static const IconData thinMp3Player = IconData(0xf8ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mug icon /// /// https://fontawesome.com/icons/mug?style=solid /// coffee, cup, drink, hot chocolate, tea - static const IconData solidMug = IconDataSolid(0xf874); + static const IconData solidMug = IconData(0xf874, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mug icon /// /// https://fontawesome.com/icons/mug?style=regular /// coffee, cup, drink, hot chocolate, tea - static const IconData mug = IconDataRegular(0xf874); + static const IconData mug = IconData(0xf874, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mug icon /// /// https://fontawesome.com/icons/mug?style=light /// coffee, cup, drink, hot chocolate, tea - static const IconData lightMug = IconDataLight(0xf874); + static const IconData lightMug = IconData(0xf874, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mug icon /// /// https://fontawesome.com/icons/mug?style=thin /// coffee, cup, drink, hot chocolate, tea - static const IconData thinMug = IconDataThin(0xf874); + static const IconData thinMug = IconData(0xf874, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mug Hot icon /// /// https://fontawesome.com/icons/mug-hot?style=solid /// beverage, caliente, cocoa, coffee, cup, drink, holiday, hot, hot beverage, hot chocolate, steam, steaming, tea, warmth - static const IconData solidMugHot = IconDataSolid(0xf7b6); + static const IconData solidMugHot = IconData(0xf7b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mug Hot icon /// /// https://fontawesome.com/icons/mug-hot?style=regular /// beverage, caliente, cocoa, coffee, cup, drink, holiday, hot, hot beverage, hot chocolate, steam, steaming, tea, warmth - static const IconData mugHot = IconDataRegular(0xf7b6); + static const IconData mugHot = IconData(0xf7b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mug Hot icon /// /// https://fontawesome.com/icons/mug-hot?style=light /// beverage, caliente, cocoa, coffee, cup, drink, holiday, hot, hot beverage, hot chocolate, steam, steaming, tea, warmth - static const IconData lightMugHot = IconDataLight(0xf7b6); + static const IconData lightMugHot = IconData(0xf7b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mug Hot icon /// /// https://fontawesome.com/icons/mug-hot?style=thin /// beverage, caliente, cocoa, coffee, cup, drink, holiday, hot, hot beverage, hot chocolate, steam, steaming, tea, warmth - static const IconData thinMugHot = IconDataThin(0xf7b6); + static const IconData thinMugHot = IconData(0xf7b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mug Marshmallows icon /// /// https://fontawesome.com/icons/mug-marshmallows?style=solid /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData solidMugMarshmallows = IconDataSolid(0xf7b7); + static const IconData solidMugMarshmallows = IconData(0xf7b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mug Marshmallows icon /// /// https://fontawesome.com/icons/mug-marshmallows?style=regular /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData mugMarshmallows = IconDataRegular(0xf7b7); + static const IconData mugMarshmallows = IconData(0xf7b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mug Marshmallows icon /// /// https://fontawesome.com/icons/mug-marshmallows?style=light /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData lightMugMarshmallows = IconDataLight(0xf7b7); + static const IconData lightMugMarshmallows = IconData(0xf7b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mug Marshmallows icon /// /// https://fontawesome.com/icons/mug-marshmallows?style=thin /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData thinMugMarshmallows = IconDataThin(0xf7b7); + static const IconData thinMugMarshmallows = IconData(0xf7b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mug Saucer icon /// /// https://fontawesome.com/icons/mug-saucer?style=solid /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData solidMugSaucer = IconDataSolid(0xf0f4); + static const IconData solidMugSaucer = IconData(0xf0f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias coffee for icon [solidMugSaucer] @Deprecated('Use "solidMugSaucer" instead.') @@ -60384,7 +60384,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mug-saucer?style=regular /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData mugSaucer = IconDataRegular(0xf0f4); + static const IconData mugSaucer = IconData(0xf0f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias coffee for icon [mugSaucer] @Deprecated('Use "mugSaucer" instead.') @@ -60394,7 +60394,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mug-saucer?style=light /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData lightMugSaucer = IconDataLight(0xf0f4); + static const IconData lightMugSaucer = IconData(0xf0f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias coffee for icon [lightMugSaucer] @Deprecated('Use "lightMugSaucer" instead.') @@ -60404,7 +60404,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mug-saucer?style=thin /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData thinMugSaucer = IconDataThin(0xf0f4); + static const IconData thinMugSaucer = IconData(0xf0f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias coffee for icon [thinMugSaucer] @Deprecated('Use "thinMugSaucer" instead.') @@ -60414,127 +60414,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/mug-tea?style=solid /// brew, drink, herbal, oolong - static const IconData solidMugTea = IconDataSolid(0xf875); + static const IconData solidMugTea = IconData(0xf875, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mug Tea icon /// /// https://fontawesome.com/icons/mug-tea?style=regular /// brew, drink, herbal, oolong - static const IconData mugTea = IconDataRegular(0xf875); + static const IconData mugTea = IconData(0xf875, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mug Tea icon /// /// https://fontawesome.com/icons/mug-tea?style=light /// brew, drink, herbal, oolong - static const IconData lightMugTea = IconDataLight(0xf875); + static const IconData lightMugTea = IconData(0xf875, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mug Tea icon /// /// https://fontawesome.com/icons/mug-tea?style=thin /// brew, drink, herbal, oolong - static const IconData thinMugTea = IconDataThin(0xf875); + static const IconData thinMugTea = IconData(0xf875, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mug Tea Saucer icon /// /// https://fontawesome.com/icons/mug-tea-saucer?style=solid /// afternoon, cuppa, saucer - static const IconData solidMugTeaSaucer = IconDataSolid(0xe1f5); + static const IconData solidMugTeaSaucer = IconData(0xe1f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mug Tea Saucer icon /// /// https://fontawesome.com/icons/mug-tea-saucer?style=regular /// afternoon, cuppa, saucer - static const IconData mugTeaSaucer = IconDataRegular(0xe1f5); + static const IconData mugTeaSaucer = IconData(0xe1f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mug Tea Saucer icon /// /// https://fontawesome.com/icons/mug-tea-saucer?style=light /// afternoon, cuppa, saucer - static const IconData lightMugTeaSaucer = IconDataLight(0xe1f5); + static const IconData lightMugTeaSaucer = IconData(0xe1f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mug Tea Saucer icon /// /// https://fontawesome.com/icons/mug-tea-saucer?style=thin /// afternoon, cuppa, saucer - static const IconData thinMugTeaSaucer = IconDataThin(0xe1f5); + static const IconData thinMugTeaSaucer = IconData(0xe1f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mushroom icon /// /// https://fontawesome.com/icons/mushroom?style=solid /// 1-up, fungus, toadstool - static const IconData solidMushroom = IconDataSolid(0xe425); + static const IconData solidMushroom = IconData(0xe425, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mushroom icon /// /// https://fontawesome.com/icons/mushroom?style=regular /// 1-up, fungus, toadstool - static const IconData mushroom = IconDataRegular(0xe425); + static const IconData mushroom = IconData(0xe425, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mushroom icon /// /// https://fontawesome.com/icons/mushroom?style=light /// 1-up, fungus, toadstool - static const IconData lightMushroom = IconDataLight(0xe425); + static const IconData lightMushroom = IconData(0xe425, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mushroom icon /// /// https://fontawesome.com/icons/mushroom?style=thin /// 1-up, fungus, toadstool - static const IconData thinMushroom = IconDataThin(0xe425); + static const IconData thinMushroom = IconData(0xe425, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Music icon /// /// https://fontawesome.com/icons/music?style=solid /// lyrics, melody, music, musical note, note, sing, sound - static const IconData solidMusic = IconDataSolid(0xf001); + static const IconData solidMusic = IconData(0xf001, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Music icon /// /// https://fontawesome.com/icons/music?style=regular /// lyrics, melody, music, musical note, note, sing, sound - static const IconData music = IconDataRegular(0xf001); + static const IconData music = IconData(0xf001, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Music icon /// /// https://fontawesome.com/icons/music?style=light /// lyrics, melody, music, musical note, note, sing, sound - static const IconData lightMusic = IconDataLight(0xf001); + static const IconData lightMusic = IconData(0xf001, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Music icon /// /// https://fontawesome.com/icons/music?style=thin /// lyrics, melody, music, musical note, note, sing, sound - static const IconData thinMusic = IconDataThin(0xf001); + static const IconData thinMusic = IconData(0xf001, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Music Magnifying Glass icon /// /// https://fontawesome.com/icons/music-magnifying-glass?style=solid /// bigger, enlarge, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, search, tool, zoom, artist, audio, equipment, genre, hear, music, note, notes, similar, song, sound - static const IconData solidMusicMagnifyingGlass = IconDataSolid(0xe662); + static const IconData solidMusicMagnifyingGlass = IconData(0xe662, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Music Magnifying Glass icon /// /// https://fontawesome.com/icons/music-magnifying-glass?style=regular /// bigger, enlarge, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, search, tool, zoom, artist, audio, equipment, genre, hear, music, note, notes, similar, song, sound - static const IconData musicMagnifyingGlass = IconDataRegular(0xe662); + static const IconData musicMagnifyingGlass = IconData(0xe662, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Music Magnifying Glass icon /// /// https://fontawesome.com/icons/music-magnifying-glass?style=light /// bigger, enlarge, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, search, tool, zoom, artist, audio, equipment, genre, hear, music, note, notes, similar, song, sound - static const IconData lightMusicMagnifyingGlass = IconDataLight(0xe662); + static const IconData lightMusicMagnifyingGlass = IconData(0xe662, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Music Magnifying Glass icon /// /// https://fontawesome.com/icons/music-magnifying-glass?style=thin /// bigger, enlarge, find, glass, inspection, magnifier, magnify, magnifying, magnifying glass tilted left, search, tool, zoom, artist, audio, equipment, genre, hear, music, note, notes, similar, song, sound - static const IconData thinMusicMagnifyingGlass = IconDataThin(0xe662); + static const IconData thinMusicMagnifyingGlass = IconData(0xe662, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Music Note icon /// /// https://fontawesome.com/icons/music-note?style=solid /// lyrics, melody, note, sing, sound - static const IconData solidMusicNote = IconDataSolid(0xf8cf); + static const IconData solidMusicNote = IconData(0xf8cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias music-alt for icon [solidMusicNote] @Deprecated('Use "solidMusicNote" instead.') @@ -60544,7 +60544,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note?style=regular /// lyrics, melody, note, sing, sound - static const IconData musicNote = IconDataRegular(0xf8cf); + static const IconData musicNote = IconData(0xf8cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias music-alt for icon [musicNote] @Deprecated('Use "musicNote" instead.') @@ -60554,7 +60554,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note?style=light /// lyrics, melody, note, sing, sound - static const IconData lightMusicNote = IconDataLight(0xf8cf); + static const IconData lightMusicNote = IconData(0xf8cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias music-alt for icon [lightMusicNote] @Deprecated('Use "lightMusicNote" instead.') @@ -60564,7 +60564,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note?style=thin /// lyrics, melody, note, sing, sound - static const IconData thinMusicNote = IconDataThin(0xf8cf); + static const IconData thinMusicNote = IconData(0xf8cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias music-alt for icon [thinMusicNote] @Deprecated('Use "thinMusicNote" instead.') @@ -60574,7 +60574,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note-slash?style=solid /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData solidMusicNoteSlash = IconDataSolid(0xf8d0); + static const IconData solidMusicNoteSlash = IconData(0xf8d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias music-alt-slash for icon [solidMusicNoteSlash] @Deprecated('Use "solidMusicNoteSlash" instead.') @@ -60584,7 +60584,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note-slash?style=regular /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData musicNoteSlash = IconDataRegular(0xf8d0); + static const IconData musicNoteSlash = IconData(0xf8d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias music-alt-slash for icon [musicNoteSlash] @Deprecated('Use "musicNoteSlash" instead.') @@ -60594,7 +60594,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note-slash?style=light /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData lightMusicNoteSlash = IconDataLight(0xf8d0); + static const IconData lightMusicNoteSlash = IconData(0xf8d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias music-alt-slash for icon [lightMusicNoteSlash] @Deprecated('Use "lightMusicNoteSlash" instead.') @@ -60604,7 +60604,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-note-slash?style=thin /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData thinMusicNoteSlash = IconDataThin(0xf8d0); + static const IconData thinMusicNoteSlash = IconData(0xf8d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias music-alt-slash for icon [thinMusicNoteSlash] @Deprecated('Use "thinMusicNoteSlash" instead.') @@ -60614,572 +60614,572 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/music-slash?style=solid /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData solidMusicSlash = IconDataSolid(0xf8d1); + static const IconData solidMusicSlash = IconData(0xf8d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Music Slash icon /// /// https://fontawesome.com/icons/music-slash?style=regular /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData musicSlash = IconDataRegular(0xf8d1); + static const IconData musicSlash = IconData(0xf8d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Music Slash icon /// /// https://fontawesome.com/icons/music-slash?style=light /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData lightMusicSlash = IconDataLight(0xf8d1); + static const IconData lightMusicSlash = IconData(0xf8d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Music Slash icon /// /// https://fontawesome.com/icons/music-slash?style=thin /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData thinMusicSlash = IconDataThin(0xf8d1); + static const IconData thinMusicSlash = IconData(0xf8d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Mustache icon /// /// https://fontawesome.com/icons/mustache?style=solid /// beard, face, hair, lumberjack, shave, walrus, whiskers - static const IconData solidMustache = IconDataSolid(0xe5bc); + static const IconData solidMustache = IconData(0xe5bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Mustache icon /// /// https://fontawesome.com/icons/mustache?style=regular /// beard, face, hair, lumberjack, shave, walrus, whiskers - static const IconData mustache = IconDataRegular(0xe5bc); + static const IconData mustache = IconData(0xe5bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Mustache icon /// /// https://fontawesome.com/icons/mustache?style=light /// beard, face, hair, lumberjack, shave, walrus, whiskers - static const IconData lightMustache = IconDataLight(0xe5bc); + static const IconData lightMustache = IconData(0xe5bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Mustache icon /// /// https://fontawesome.com/icons/mustache?style=thin /// beard, face, hair, lumberjack, shave, walrus, whiskers - static const IconData thinMustache = IconDataThin(0xe5bc); + static const IconData thinMustache = IconData(0xe5bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid N icon /// /// https://fontawesome.com/icons/n?style=solid /// Latin Capital Letter N, Latin Small Letter N, letter, nay, no - static const IconData solidN = IconDataSolid(0x4e); + static const IconData solidN = IconData(0x4e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular N icon /// /// https://fontawesome.com/icons/n?style=regular /// Latin Capital Letter N, Latin Small Letter N, letter, nay, no - static const IconData n = IconDataRegular(0x4e); + static const IconData n = IconData(0x4e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light N icon /// /// https://fontawesome.com/icons/n?style=light /// Latin Capital Letter N, Latin Small Letter N, letter, nay, no - static const IconData lightN = IconDataLight(0x4e); + static const IconData lightN = IconData(0x4e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin N icon /// /// https://fontawesome.com/icons/n?style=thin /// Latin Capital Letter N, Latin Small Letter N, letter, nay, no - static const IconData thinN = IconDataThin(0x4e); + static const IconData thinN = IconData(0x4e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Naira Sign icon /// /// https://fontawesome.com/icons/naira-sign?style=solid /// Naira Sign, currency - static const IconData solidNairaSign = IconDataSolid(0xe1f6); + static const IconData solidNairaSign = IconData(0xe1f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Naira Sign icon /// /// https://fontawesome.com/icons/naira-sign?style=regular /// Naira Sign, currency - static const IconData nairaSign = IconDataRegular(0xe1f6); + static const IconData nairaSign = IconData(0xe1f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Naira Sign icon /// /// https://fontawesome.com/icons/naira-sign?style=light /// Naira Sign, currency - static const IconData lightNairaSign = IconDataLight(0xe1f6); + static const IconData lightNairaSign = IconData(0xe1f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Naira Sign icon /// /// https://fontawesome.com/icons/naira-sign?style=thin /// Naira Sign, currency - static const IconData thinNairaSign = IconDataThin(0xe1f6); + static const IconData thinNairaSign = IconData(0xe1f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Napster icon /// /// https://fontawesome.com/icons/napster?style=brands - static const IconData napster = IconDataBrands(0xf3d2); + static const IconData napster = IconData(0xf3d2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Narwhal icon /// /// https://fontawesome.com/icons/narwhal?style=solid /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData solidNarwhal = IconDataSolid(0xf6fe); + static const IconData solidNarwhal = IconData(0xf6fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Narwhal icon /// /// https://fontawesome.com/icons/narwhal?style=regular /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData narwhal = IconDataRegular(0xf6fe); + static const IconData narwhal = IconData(0xf6fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Narwhal icon /// /// https://fontawesome.com/icons/narwhal?style=light /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData lightNarwhal = IconDataLight(0xf6fe); + static const IconData lightNarwhal = IconData(0xf6fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Narwhal icon /// /// https://fontawesome.com/icons/narwhal?style=thin /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData thinNarwhal = IconDataThin(0xf6fe); + static const IconData thinNarwhal = IconData(0xf6fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Neos icon /// /// https://fontawesome.com/icons/neos?style=brands - static const IconData neos = IconDataBrands(0xf612); + static const IconData neos = IconData(0xf612, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Nesting Dolls icon /// /// https://fontawesome.com/icons/nesting-dolls?style=solid /// babushka, doll, matryoshka, nesting, nesting dolls, russia, stacking, tea - static const IconData solidNestingDolls = IconDataSolid(0xe3ba); + static const IconData solidNestingDolls = IconData(0xe3ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nesting Dolls icon /// /// https://fontawesome.com/icons/nesting-dolls?style=regular /// babushka, doll, matryoshka, nesting, nesting dolls, russia, stacking, tea - static const IconData nestingDolls = IconDataRegular(0xe3ba); + static const IconData nestingDolls = IconData(0xe3ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nesting Dolls icon /// /// https://fontawesome.com/icons/nesting-dolls?style=light /// babushka, doll, matryoshka, nesting, nesting dolls, russia, stacking, tea - static const IconData lightNestingDolls = IconDataLight(0xe3ba); + static const IconData lightNestingDolls = IconData(0xe3ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nesting Dolls icon /// /// https://fontawesome.com/icons/nesting-dolls?style=thin /// babushka, doll, matryoshka, nesting, nesting dolls, russia, stacking, tea - static const IconData thinNestingDolls = IconDataThin(0xe3ba); + static const IconData thinNestingDolls = IconData(0xe3ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Network Wired icon /// /// https://fontawesome.com/icons/network-wired?style=solid /// computer, connect, ethernet, internet, intranet - static const IconData solidNetworkWired = IconDataSolid(0xf6ff); + static const IconData solidNetworkWired = IconData(0xf6ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Network Wired icon /// /// https://fontawesome.com/icons/network-wired?style=regular /// computer, connect, ethernet, internet, intranet - static const IconData networkWired = IconDataRegular(0xf6ff); + static const IconData networkWired = IconData(0xf6ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Network Wired icon /// /// https://fontawesome.com/icons/network-wired?style=light /// computer, connect, ethernet, internet, intranet - static const IconData lightNetworkWired = IconDataLight(0xf6ff); + static const IconData lightNetworkWired = IconData(0xf6ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Network Wired icon /// /// https://fontawesome.com/icons/network-wired?style=thin /// computer, connect, ethernet, internet, intranet - static const IconData thinNetworkWired = IconDataThin(0xf6ff); + static const IconData thinNetworkWired = IconData(0xf6ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Neuter icon /// /// https://fontawesome.com/icons/neuter?style=solid /// Neuter, gender - static const IconData solidNeuter = IconDataSolid(0xf22c); + static const IconData solidNeuter = IconData(0xf22c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Neuter icon /// /// https://fontawesome.com/icons/neuter?style=regular /// Neuter, gender - static const IconData neuter = IconDataRegular(0xf22c); + static const IconData neuter = IconData(0xf22c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Neuter icon /// /// https://fontawesome.com/icons/neuter?style=light /// Neuter, gender - static const IconData lightNeuter = IconDataLight(0xf22c); + static const IconData lightNeuter = IconData(0xf22c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Neuter icon /// /// https://fontawesome.com/icons/neuter?style=thin /// Neuter, gender - static const IconData thinNeuter = IconDataThin(0xf22c); + static const IconData thinNeuter = IconData(0xf22c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Newspaper icon /// /// https://fontawesome.com/icons/newspaper?style=solid /// article, editorial, headline, journal, journalism, news, newsletter, newspaper, paper, press - static const IconData solidNewspaper = IconDataSolid(0xf1ea); + static const IconData solidNewspaper = IconData(0xf1ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Newspaper icon /// /// https://fontawesome.com/icons/newspaper?style=regular /// article, editorial, headline, journal, journalism, news, newsletter, newspaper, paper, press - static const IconData newspaper = IconDataRegular(0xf1ea); + static const IconData newspaper = IconData(0xf1ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Newspaper icon /// /// https://fontawesome.com/icons/newspaper?style=light /// article, editorial, headline, journal, journalism, news, newsletter, newspaper, paper, press - static const IconData lightNewspaper = IconDataLight(0xf1ea); + static const IconData lightNewspaper = IconData(0xf1ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Newspaper icon /// /// https://fontawesome.com/icons/newspaper?style=thin /// article, editorial, headline, journal, journalism, news, newsletter, newspaper, paper, press - static const IconData thinNewspaper = IconDataThin(0xf1ea); + static const IconData thinNewspaper = IconData(0xf1ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc icon /// /// https://fontawesome.com/icons/nfc?style=solid /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfc = IconDataSolid(0xe1f7); + static const IconData solidNfc = IconData(0xe1f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc icon /// /// https://fontawesome.com/icons/nfc?style=regular /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfc = IconDataRegular(0xe1f7); + static const IconData nfc = IconData(0xe1f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc icon /// /// https://fontawesome.com/icons/nfc?style=light /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfc = IconDataLight(0xe1f7); + static const IconData lightNfc = IconData(0xe1f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc icon /// /// https://fontawesome.com/icons/nfc?style=thin /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfc = IconDataThin(0xe1f7); + static const IconData thinNfc = IconData(0xe1f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands NFC Directional icon /// /// https://fontawesome.com/icons/nfc-directional?style=brands /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcDirectional = IconDataBrands(0xe530); + static const IconData nfcDirectional = IconData(0xe530, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Lock icon /// /// https://fontawesome.com/icons/nfc-lock?style=solid /// connect, data, near field communication, nfc, padlock, privacy, scan, signal, transfer, wireless - static const IconData solidNfcLock = IconDataSolid(0xe1f8); + static const IconData solidNfcLock = IconData(0xe1f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Lock icon /// /// https://fontawesome.com/icons/nfc-lock?style=regular /// connect, data, near field communication, nfc, padlock, privacy, scan, signal, transfer, wireless - static const IconData nfcLock = IconDataRegular(0xe1f8); + static const IconData nfcLock = IconData(0xe1f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Lock icon /// /// https://fontawesome.com/icons/nfc-lock?style=light /// connect, data, near field communication, nfc, padlock, privacy, scan, signal, transfer, wireless - static const IconData lightNfcLock = IconDataLight(0xe1f8); + static const IconData lightNfcLock = IconData(0xe1f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Lock icon /// /// https://fontawesome.com/icons/nfc-lock?style=thin /// connect, data, near field communication, nfc, padlock, privacy, scan, signal, transfer, wireless - static const IconData thinNfcLock = IconDataThin(0xe1f8); + static const IconData thinNfcLock = IconData(0xe1f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Magnifying Glass icon /// /// https://fontawesome.com/icons/nfc-magnifying-glass?style=solid /// connect, data, magnifier, near field communication, nfc, scan, search, signal, transfer, wireless - static const IconData solidNfcMagnifyingGlass = IconDataSolid(0xe1f9); + static const IconData solidNfcMagnifyingGlass = IconData(0xe1f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Magnifying Glass icon /// /// https://fontawesome.com/icons/nfc-magnifying-glass?style=regular /// connect, data, magnifier, near field communication, nfc, scan, search, signal, transfer, wireless - static const IconData nfcMagnifyingGlass = IconDataRegular(0xe1f9); + static const IconData nfcMagnifyingGlass = IconData(0xe1f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Magnifying Glass icon /// /// https://fontawesome.com/icons/nfc-magnifying-glass?style=light /// connect, data, magnifier, near field communication, nfc, scan, search, signal, transfer, wireless - static const IconData lightNfcMagnifyingGlass = IconDataLight(0xe1f9); + static const IconData lightNfcMagnifyingGlass = IconData(0xe1f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Magnifying Glass icon /// /// https://fontawesome.com/icons/nfc-magnifying-glass?style=thin /// connect, data, magnifier, near field communication, nfc, scan, search, signal, transfer, wireless - static const IconData thinNfcMagnifyingGlass = IconDataThin(0xe1f9); + static const IconData thinNfcMagnifyingGlass = IconData(0xe1f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Pen icon /// /// https://fontawesome.com/icons/nfc-pen?style=solid /// connect, data, edit, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfcPen = IconDataSolid(0xe1fa); + static const IconData solidNfcPen = IconData(0xe1fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Pen icon /// /// https://fontawesome.com/icons/nfc-pen?style=regular /// connect, data, edit, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcPen = IconDataRegular(0xe1fa); + static const IconData nfcPen = IconData(0xe1fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Pen icon /// /// https://fontawesome.com/icons/nfc-pen?style=light /// connect, data, edit, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfcPen = IconDataLight(0xe1fa); + static const IconData lightNfcPen = IconData(0xe1fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Pen icon /// /// https://fontawesome.com/icons/nfc-pen?style=thin /// connect, data, edit, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfcPen = IconDataThin(0xe1fa); + static const IconData thinNfcPen = IconData(0xe1fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Signal icon /// /// https://fontawesome.com/icons/nfc-signal?style=solid /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfcSignal = IconDataSolid(0xe1fb); + static const IconData solidNfcSignal = IconData(0xe1fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Signal icon /// /// https://fontawesome.com/icons/nfc-signal?style=regular /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcSignal = IconDataRegular(0xe1fb); + static const IconData nfcSignal = IconData(0xe1fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Signal icon /// /// https://fontawesome.com/icons/nfc-signal?style=light /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfcSignal = IconDataLight(0xe1fb); + static const IconData lightNfcSignal = IconData(0xe1fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Signal icon /// /// https://fontawesome.com/icons/nfc-signal?style=thin /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfcSignal = IconDataThin(0xe1fb); + static const IconData thinNfcSignal = IconData(0xe1fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Slash icon /// /// https://fontawesome.com/icons/nfc-slash?style=solid /// cancel, connect, data, disabled, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfcSlash = IconDataSolid(0xe1fc); + static const IconData solidNfcSlash = IconData(0xe1fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Slash icon /// /// https://fontawesome.com/icons/nfc-slash?style=regular /// cancel, connect, data, disabled, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcSlash = IconDataRegular(0xe1fc); + static const IconData nfcSlash = IconData(0xe1fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Slash icon /// /// https://fontawesome.com/icons/nfc-slash?style=light /// cancel, connect, data, disabled, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfcSlash = IconDataLight(0xe1fc); + static const IconData lightNfcSlash = IconData(0xe1fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Slash icon /// /// https://fontawesome.com/icons/nfc-slash?style=thin /// cancel, connect, data, disabled, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfcSlash = IconDataThin(0xe1fc); + static const IconData thinNfcSlash = IconData(0xe1fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Symbol icon /// /// https://fontawesome.com/icons/nfc-symbol?style=solid /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfcSymbol = IconDataSolid(0xe531); + static const IconData solidNfcSymbol = IconData(0xe531, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Symbol icon /// /// https://fontawesome.com/icons/nfc-symbol?style=regular /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcSymbol = IconDataRegular(0xe531); + static const IconData nfcSymbol = IconData(0xe531, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Symbol icon /// /// https://fontawesome.com/icons/nfc-symbol?style=light /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfcSymbol = IconDataLight(0xe531); + static const IconData lightNfcSymbol = IconData(0xe531, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Symbol icon /// /// https://fontawesome.com/icons/nfc-symbol?style=thin /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfcSymbol = IconDataThin(0xe531); + static const IconData thinNfcSymbol = IconData(0xe531, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Nfc Symbol icon /// /// https://fontawesome.com/icons/nfc-symbol?style=brands /// connect, data, near field communication, nfc, scan, signal, transfer, wireless - static const IconData brandsNfcSymbol = IconDataBrands(0xe531); + static const IconData brandsNfcSymbol = IconData(0xe531, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Nfc Trash icon /// /// https://fontawesome.com/icons/nfc-trash?style=solid /// connect, data, delete, near field communication, nfc, scan, signal, transfer, wireless - static const IconData solidNfcTrash = IconDataSolid(0xe1fd); + static const IconData solidNfcTrash = IconData(0xe1fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nfc Trash icon /// /// https://fontawesome.com/icons/nfc-trash?style=regular /// connect, data, delete, near field communication, nfc, scan, signal, transfer, wireless - static const IconData nfcTrash = IconDataRegular(0xe1fd); + static const IconData nfcTrash = IconData(0xe1fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nfc Trash icon /// /// https://fontawesome.com/icons/nfc-trash?style=light /// connect, data, delete, near field communication, nfc, scan, signal, transfer, wireless - static const IconData lightNfcTrash = IconDataLight(0xe1fd); + static const IconData lightNfcTrash = IconData(0xe1fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nfc Trash icon /// /// https://fontawesome.com/icons/nfc-trash?style=thin /// connect, data, delete, near field communication, nfc, scan, signal, transfer, wireless - static const IconData thinNfcTrash = IconDataThin(0xe1fd); + static const IconData thinNfcTrash = IconData(0xe1fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Nimblr icon /// /// https://fontawesome.com/icons/nimblr?style=brands - static const IconData nimblr = IconDataBrands(0xf5a8); + static const IconData nimblr = IconData(0xf5a8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Node.js icon /// /// https://fontawesome.com/icons/node?style=brands - static const IconData node = IconDataBrands(0xf419); + static const IconData node = IconData(0xf419, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Node.js JS icon /// /// https://fontawesome.com/icons/node-js?style=brands - static const IconData nodeJs = IconDataBrands(0xf3d3); + static const IconData nodeJs = IconData(0xf3d3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Nose icon /// /// https://fontawesome.com/icons/nose?style=solid /// face, nasal, nostril, smell, sniff, snout - static const IconData solidNose = IconDataSolid(0xe5bd); + static const IconData solidNose = IconData(0xe5bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Nose icon /// /// https://fontawesome.com/icons/nose?style=regular /// face, nasal, nostril, smell, sniff, snout - static const IconData nose = IconDataRegular(0xe5bd); + static const IconData nose = IconData(0xe5bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Nose icon /// /// https://fontawesome.com/icons/nose?style=light /// face, nasal, nostril, smell, sniff, snout - static const IconData lightNose = IconDataLight(0xe5bd); + static const IconData lightNose = IconData(0xe5bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Nose icon /// /// https://fontawesome.com/icons/nose?style=thin /// face, nasal, nostril, smell, sniff, snout - static const IconData thinNose = IconDataThin(0xe5bd); + static const IconData thinNose = IconData(0xe5bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Not Equal icon /// /// https://fontawesome.com/icons/not-equal?style=solid /// arithmetic, compare, math - static const IconData solidNotEqual = IconDataSolid(0xf53e); + static const IconData solidNotEqual = IconData(0xf53e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Not Equal icon /// /// https://fontawesome.com/icons/not-equal?style=regular /// arithmetic, compare, math - static const IconData notEqual = IconDataRegular(0xf53e); + static const IconData notEqual = IconData(0xf53e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Not Equal icon /// /// https://fontawesome.com/icons/not-equal?style=light /// arithmetic, compare, math - static const IconData lightNotEqual = IconDataLight(0xf53e); + static const IconData lightNotEqual = IconData(0xf53e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Not Equal icon /// /// https://fontawesome.com/icons/not-equal?style=thin /// arithmetic, compare, math - static const IconData thinNotEqual = IconDataThin(0xf53e); + static const IconData thinNotEqual = IconData(0xf53e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Notdef icon /// /// https://fontawesome.com/icons/notdef?style=solid /// 404, close, missing, not found - static const IconData solidNotdef = IconDataSolid(0xe1fe); + static const IconData solidNotdef = IconData(0xe1fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Notdef icon /// /// https://fontawesome.com/icons/notdef?style=regular /// 404, close, missing, not found - static const IconData notdef = IconDataRegular(0xe1fe); + static const IconData notdef = IconData(0xe1fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Notdef icon /// /// https://fontawesome.com/icons/notdef?style=light /// 404, close, missing, not found - static const IconData lightNotdef = IconDataLight(0xe1fe); + static const IconData lightNotdef = IconData(0xe1fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Notdef icon /// /// https://fontawesome.com/icons/notdef?style=thin /// 404, close, missing, not found - static const IconData thinNotdef = IconDataThin(0xe1fe); + static const IconData thinNotdef = IconData(0xe1fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Note icon /// /// https://fontawesome.com/icons/note?style=solid /// Empty Note, memo, sticky note - static const IconData solidNote = IconDataSolid(0xe1ff); + static const IconData solidNote = IconData(0xe1ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Note icon /// /// https://fontawesome.com/icons/note?style=regular /// Empty Note, memo, sticky note - static const IconData note = IconDataRegular(0xe1ff); + static const IconData note = IconData(0xe1ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Note icon /// /// https://fontawesome.com/icons/note?style=light /// Empty Note, memo, sticky note - static const IconData lightNote = IconDataLight(0xe1ff); + static const IconData lightNote = IconData(0xe1ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Note icon /// /// https://fontawesome.com/icons/note?style=thin /// Empty Note, memo, sticky note - static const IconData thinNote = IconDataThin(0xe1ff); + static const IconData thinNote = IconData(0xe1ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Note Medical icon /// /// https://fontawesome.com/icons/note-medical?style=solid /// memo, sticky note - static const IconData solidNoteMedical = IconDataSolid(0xe200); + static const IconData solidNoteMedical = IconData(0xe200, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Note Medical icon /// /// https://fontawesome.com/icons/note-medical?style=regular /// memo, sticky note - static const IconData noteMedical = IconDataRegular(0xe200); + static const IconData noteMedical = IconData(0xe200, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Note Medical icon /// /// https://fontawesome.com/icons/note-medical?style=light /// memo, sticky note - static const IconData lightNoteMedical = IconDataLight(0xe200); + static const IconData lightNoteMedical = IconData(0xe200, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Note Medical icon /// /// https://fontawesome.com/icons/note-medical?style=thin /// memo, sticky note - static const IconData thinNoteMedical = IconDataThin(0xe200); + static const IconData thinNoteMedical = IconData(0xe200, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Note Sticky icon /// /// https://fontawesome.com/icons/note-sticky?style=solid /// message, note, paper, reminder, sticker - static const IconData solidNoteSticky = IconDataSolid(0xf249); + static const IconData solidNoteSticky = IconData(0xf249, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sticky-note for icon [solidNoteSticky] @Deprecated('Use "solidNoteSticky" instead.') @@ -61189,7 +61189,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/note-sticky?style=regular /// message, note, paper, reminder, sticker - static const IconData noteSticky = IconDataRegular(0xf249); + static const IconData noteSticky = IconData(0xf249, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sticky-note for icon [noteSticky] @Deprecated('Use "noteSticky" instead.') @@ -61199,7 +61199,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/note-sticky?style=light /// message, note, paper, reminder, sticker - static const IconData lightNoteSticky = IconDataLight(0xf249); + static const IconData lightNoteSticky = IconData(0xf249, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sticky-note for icon [lightNoteSticky] @Deprecated('Use "lightNoteSticky" instead.') @@ -61209,7 +61209,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/note-sticky?style=thin /// message, note, paper, reminder, sticker - static const IconData thinNoteSticky = IconDataThin(0xf249); + static const IconData thinNoteSticky = IconData(0xf249, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sticky-note for icon [thinNoteSticky] @Deprecated('Use "thinNoteSticky" instead.') @@ -61219,528 +61219,528 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/notebook?style=solid /// daybook, diary, journal, noteboo, notebook, notepad, sketch - static const IconData solidNotebook = IconDataSolid(0xe201); + static const IconData solidNotebook = IconData(0xe201, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Notebook icon /// /// https://fontawesome.com/icons/notebook?style=regular /// daybook, diary, journal, noteboo, notebook, notepad, sketch - static const IconData notebook = IconDataRegular(0xe201); + static const IconData notebook = IconData(0xe201, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Notebook icon /// /// https://fontawesome.com/icons/notebook?style=light /// daybook, diary, journal, noteboo, notebook, notepad, sketch - static const IconData lightNotebook = IconDataLight(0xe201); + static const IconData lightNotebook = IconData(0xe201, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Notebook icon /// /// https://fontawesome.com/icons/notebook?style=thin /// daybook, diary, journal, noteboo, notebook, notepad, sketch - static const IconData thinNotebook = IconDataThin(0xe201); + static const IconData thinNotebook = IconData(0xe201, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Notes icon /// /// https://fontawesome.com/icons/notes?style=solid /// memo, sticky note - static const IconData solidNotes = IconDataSolid(0xe202); + static const IconData solidNotes = IconData(0xe202, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Notes icon /// /// https://fontawesome.com/icons/notes?style=regular /// memo, sticky note - static const IconData notes = IconDataRegular(0xe202); + static const IconData notes = IconData(0xe202, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Notes icon /// /// https://fontawesome.com/icons/notes?style=light /// memo, sticky note - static const IconData lightNotes = IconDataLight(0xe202); + static const IconData lightNotes = IconData(0xe202, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Notes icon /// /// https://fontawesome.com/icons/notes?style=thin /// memo, sticky note - static const IconData thinNotes = IconDataThin(0xe202); + static const IconData thinNotes = IconData(0xe202, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Notes Medical icon /// /// https://fontawesome.com/icons/notes-medical?style=solid /// clipboard, doctor, ehr, health, history, records - static const IconData solidNotesMedical = IconDataSolid(0xf481); + static const IconData solidNotesMedical = IconData(0xf481, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Notes Medical icon /// /// https://fontawesome.com/icons/notes-medical?style=regular /// clipboard, doctor, ehr, health, history, records - static const IconData notesMedical = IconDataRegular(0xf481); + static const IconData notesMedical = IconData(0xf481, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Notes Medical icon /// /// https://fontawesome.com/icons/notes-medical?style=light /// clipboard, doctor, ehr, health, history, records - static const IconData lightNotesMedical = IconDataLight(0xf481); + static const IconData lightNotesMedical = IconData(0xf481, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Notes Medical icon /// /// https://fontawesome.com/icons/notes-medical?style=thin /// clipboard, doctor, ehr, health, history, records - static const IconData thinNotesMedical = IconDataThin(0xf481); + static const IconData thinNotesMedical = IconData(0xf481, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands npm icon /// /// https://fontawesome.com/icons/npm?style=brands - static const IconData npm = IconDataBrands(0xf3d4); + static const IconData npm = IconData(0xf3d4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands NS8 icon /// /// https://fontawesome.com/icons/ns8?style=brands - static const IconData ns8 = IconDataBrands(0xf3d5); + static const IconData ns8 = IconData(0xf3d5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Nutritionix icon /// /// https://fontawesome.com/icons/nutritionix?style=brands - static const IconData nutritionix = IconDataBrands(0xf3d6); + static const IconData nutritionix = IconData(0xf3d6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid O icon /// /// https://fontawesome.com/icons/o?style=solid /// Latin Capital Letter O, Latin Small Letter O, letter - static const IconData solidO = IconDataSolid(0x4f); + static const IconData solidO = IconData(0x4f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular O icon /// /// https://fontawesome.com/icons/o?style=regular /// Latin Capital Letter O, Latin Small Letter O, letter - static const IconData o = IconDataRegular(0x4f); + static const IconData o = IconData(0x4f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light O icon /// /// https://fontawesome.com/icons/o?style=light /// Latin Capital Letter O, Latin Small Letter O, letter - static const IconData lightO = IconDataLight(0x4f); + static const IconData lightO = IconData(0x4f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin O icon /// /// https://fontawesome.com/icons/o?style=thin /// Latin Capital Letter O, Latin Small Letter O, letter - static const IconData thinO = IconDataThin(0x4f); + static const IconData thinO = IconData(0x4f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Exclude icon /// /// https://fontawesome.com/icons/object-exclude?style=solid /// boolean, combine, group, join, pathfinder - static const IconData solidObjectExclude = IconDataSolid(0xe49c); + static const IconData solidObjectExclude = IconData(0xe49c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Exclude icon /// /// https://fontawesome.com/icons/object-exclude?style=regular /// boolean, combine, group, join, pathfinder - static const IconData objectExclude = IconDataRegular(0xe49c); + static const IconData objectExclude = IconData(0xe49c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Exclude icon /// /// https://fontawesome.com/icons/object-exclude?style=light /// boolean, combine, group, join, pathfinder - static const IconData lightObjectExclude = IconDataLight(0xe49c); + static const IconData lightObjectExclude = IconData(0xe49c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Exclude icon /// /// https://fontawesome.com/icons/object-exclude?style=thin /// boolean, combine, group, join, pathfinder - static const IconData thinObjectExclude = IconDataThin(0xe49c); + static const IconData thinObjectExclude = IconData(0xe49c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Group icon /// /// https://fontawesome.com/icons/object-group?style=solid /// combine, copy, design, merge, select - static const IconData solidObjectGroup = IconDataSolid(0xf247); + static const IconData solidObjectGroup = IconData(0xf247, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Group icon /// /// https://fontawesome.com/icons/object-group?style=regular /// combine, copy, design, merge, select - static const IconData objectGroup = IconDataRegular(0xf247); + static const IconData objectGroup = IconData(0xf247, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Group icon /// /// https://fontawesome.com/icons/object-group?style=light /// combine, copy, design, merge, select - static const IconData lightObjectGroup = IconDataLight(0xf247); + static const IconData lightObjectGroup = IconData(0xf247, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Group icon /// /// https://fontawesome.com/icons/object-group?style=thin /// combine, copy, design, merge, select - static const IconData thinObjectGroup = IconDataThin(0xf247); + static const IconData thinObjectGroup = IconData(0xf247, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Intersect icon /// /// https://fontawesome.com/icons/object-intersect?style=solid /// boolean, combine, group, join, pathfinder - static const IconData solidObjectIntersect = IconDataSolid(0xe49d); + static const IconData solidObjectIntersect = IconData(0xe49d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Intersect icon /// /// https://fontawesome.com/icons/object-intersect?style=regular /// boolean, combine, group, join, pathfinder - static const IconData objectIntersect = IconDataRegular(0xe49d); + static const IconData objectIntersect = IconData(0xe49d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Intersect icon /// /// https://fontawesome.com/icons/object-intersect?style=light /// boolean, combine, group, join, pathfinder - static const IconData lightObjectIntersect = IconDataLight(0xe49d); + static const IconData lightObjectIntersect = IconData(0xe49d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Intersect icon /// /// https://fontawesome.com/icons/object-intersect?style=thin /// boolean, combine, group, join, pathfinder - static const IconData thinObjectIntersect = IconDataThin(0xe49d); + static const IconData thinObjectIntersect = IconData(0xe49d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Subtract icon /// /// https://fontawesome.com/icons/object-subtract?style=solid /// boolean, combine, group, join, pathfinder - static const IconData solidObjectSubtract = IconDataSolid(0xe49e); + static const IconData solidObjectSubtract = IconData(0xe49e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Subtract icon /// /// https://fontawesome.com/icons/object-subtract?style=regular /// boolean, combine, group, join, pathfinder - static const IconData objectSubtract = IconDataRegular(0xe49e); + static const IconData objectSubtract = IconData(0xe49e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Subtract icon /// /// https://fontawesome.com/icons/object-subtract?style=light /// boolean, combine, group, join, pathfinder - static const IconData lightObjectSubtract = IconDataLight(0xe49e); + static const IconData lightObjectSubtract = IconData(0xe49e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Subtract icon /// /// https://fontawesome.com/icons/object-subtract?style=thin /// boolean, combine, group, join, pathfinder - static const IconData thinObjectSubtract = IconDataThin(0xe49e); + static const IconData thinObjectSubtract = IconData(0xe49e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Ungroup icon /// /// https://fontawesome.com/icons/object-ungroup?style=solid /// copy, design, merge, select, separate - static const IconData solidObjectUngroup = IconDataSolid(0xf248); + static const IconData solidObjectUngroup = IconData(0xf248, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Ungroup icon /// /// https://fontawesome.com/icons/object-ungroup?style=regular /// copy, design, merge, select, separate - static const IconData objectUngroup = IconDataRegular(0xf248); + static const IconData objectUngroup = IconData(0xf248, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Ungroup icon /// /// https://fontawesome.com/icons/object-ungroup?style=light /// copy, design, merge, select, separate - static const IconData lightObjectUngroup = IconDataLight(0xf248); + static const IconData lightObjectUngroup = IconData(0xf248, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Ungroup icon /// /// https://fontawesome.com/icons/object-ungroup?style=thin /// copy, design, merge, select, separate - static const IconData thinObjectUngroup = IconDataThin(0xf248); + static const IconData thinObjectUngroup = IconData(0xf248, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Object Union icon /// /// https://fontawesome.com/icons/object-union?style=solid /// boolean, combine, group, join, pathfinder - static const IconData solidObjectUnion = IconDataSolid(0xe49f); + static const IconData solidObjectUnion = IconData(0xe49f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Object Union icon /// /// https://fontawesome.com/icons/object-union?style=regular /// boolean, combine, group, join, pathfinder - static const IconData objectUnion = IconDataRegular(0xe49f); + static const IconData objectUnion = IconData(0xe49f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Object Union icon /// /// https://fontawesome.com/icons/object-union?style=light /// boolean, combine, group, join, pathfinder - static const IconData lightObjectUnion = IconDataLight(0xe49f); + static const IconData lightObjectUnion = IconData(0xe49f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Object Union icon /// /// https://fontawesome.com/icons/object-union?style=thin /// boolean, combine, group, join, pathfinder - static const IconData thinObjectUnion = IconDataThin(0xe49f); + static const IconData thinObjectUnion = IconData(0xe49f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Bottom icon /// /// https://fontawesome.com/icons/objects-align-bottom?style=solid /// align, distribute, line, rectangles - static const IconData solidObjectsAlignBottom = IconDataSolid(0xe3bb); + static const IconData solidObjectsAlignBottom = IconData(0xe3bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Bottom icon /// /// https://fontawesome.com/icons/objects-align-bottom?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignBottom = IconDataRegular(0xe3bb); + static const IconData objectsAlignBottom = IconData(0xe3bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Bottom icon /// /// https://fontawesome.com/icons/objects-align-bottom?style=light /// align, distribute, line, rectangles - static const IconData lightObjectsAlignBottom = IconDataLight(0xe3bb); + static const IconData lightObjectsAlignBottom = IconData(0xe3bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Bottom icon /// /// https://fontawesome.com/icons/objects-align-bottom?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignBottom = IconDataThin(0xe3bb); + static const IconData thinObjectsAlignBottom = IconData(0xe3bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Center Horizontal icon /// /// https://fontawesome.com/icons/objects-align-center-horizontal?style=solid /// align, distribute, line, rectangles static const IconData solidObjectsAlignCenterHorizontal = - IconDataSolid(0xe3bc); + IconData(0xe3bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Center Horizontal icon /// /// https://fontawesome.com/icons/objects-align-center-horizontal?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignCenterHorizontal = IconDataRegular(0xe3bc); + static const IconData objectsAlignCenterHorizontal = IconData(0xe3bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Center Horizontal icon /// /// https://fontawesome.com/icons/objects-align-center-horizontal?style=light /// align, distribute, line, rectangles static const IconData lightObjectsAlignCenterHorizontal = - IconDataLight(0xe3bc); + IconData(0xe3bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Center Horizontal icon /// /// https://fontawesome.com/icons/objects-align-center-horizontal?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignCenterHorizontal = IconDataThin(0xe3bc); + static const IconData thinObjectsAlignCenterHorizontal = IconData(0xe3bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Center Vertical icon /// /// https://fontawesome.com/icons/objects-align-center-vertical?style=solid /// align, distribute, line, rectangles - static const IconData solidObjectsAlignCenterVertical = IconDataSolid(0xe3bd); + static const IconData solidObjectsAlignCenterVertical = IconData(0xe3bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Center Vertical icon /// /// https://fontawesome.com/icons/objects-align-center-vertical?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignCenterVertical = IconDataRegular(0xe3bd); + static const IconData objectsAlignCenterVertical = IconData(0xe3bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Center Vertical icon /// /// https://fontawesome.com/icons/objects-align-center-vertical?style=light /// align, distribute, line, rectangles - static const IconData lightObjectsAlignCenterVertical = IconDataLight(0xe3bd); + static const IconData lightObjectsAlignCenterVertical = IconData(0xe3bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Center Vertical icon /// /// https://fontawesome.com/icons/objects-align-center-vertical?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignCenterVertical = IconDataThin(0xe3bd); + static const IconData thinObjectsAlignCenterVertical = IconData(0xe3bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Left icon /// /// https://fontawesome.com/icons/objects-align-left?style=solid /// align, distribute, line, rectangles - static const IconData solidObjectsAlignLeft = IconDataSolid(0xe3be); + static const IconData solidObjectsAlignLeft = IconData(0xe3be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Left icon /// /// https://fontawesome.com/icons/objects-align-left?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignLeft = IconDataRegular(0xe3be); + static const IconData objectsAlignLeft = IconData(0xe3be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Left icon /// /// https://fontawesome.com/icons/objects-align-left?style=light /// align, distribute, line, rectangles - static const IconData lightObjectsAlignLeft = IconDataLight(0xe3be); + static const IconData lightObjectsAlignLeft = IconData(0xe3be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Left icon /// /// https://fontawesome.com/icons/objects-align-left?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignLeft = IconDataThin(0xe3be); + static const IconData thinObjectsAlignLeft = IconData(0xe3be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Right icon /// /// https://fontawesome.com/icons/objects-align-right?style=solid /// align, distribute, line, rectangles - static const IconData solidObjectsAlignRight = IconDataSolid(0xe3bf); + static const IconData solidObjectsAlignRight = IconData(0xe3bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Right icon /// /// https://fontawesome.com/icons/objects-align-right?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignRight = IconDataRegular(0xe3bf); + static const IconData objectsAlignRight = IconData(0xe3bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Right icon /// /// https://fontawesome.com/icons/objects-align-right?style=light /// align, distribute, line, rectangles - static const IconData lightObjectsAlignRight = IconDataLight(0xe3bf); + static const IconData lightObjectsAlignRight = IconData(0xe3bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Right icon /// /// https://fontawesome.com/icons/objects-align-right?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignRight = IconDataThin(0xe3bf); + static const IconData thinObjectsAlignRight = IconData(0xe3bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Align Top icon /// /// https://fontawesome.com/icons/objects-align-top?style=solid /// align, distribute, line, rectangles - static const IconData solidObjectsAlignTop = IconDataSolid(0xe3c0); + static const IconData solidObjectsAlignTop = IconData(0xe3c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Align Top icon /// /// https://fontawesome.com/icons/objects-align-top?style=regular /// align, distribute, line, rectangles - static const IconData objectsAlignTop = IconDataRegular(0xe3c0); + static const IconData objectsAlignTop = IconData(0xe3c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Align Top icon /// /// https://fontawesome.com/icons/objects-align-top?style=light /// align, distribute, line, rectangles - static const IconData lightObjectsAlignTop = IconDataLight(0xe3c0); + static const IconData lightObjectsAlignTop = IconData(0xe3c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Align Top icon /// /// https://fontawesome.com/icons/objects-align-top?style=thin /// align, distribute, line, rectangles - static const IconData thinObjectsAlignTop = IconDataThin(0xe3c0); + static const IconData thinObjectsAlignTop = IconData(0xe3c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Objects Column icon /// /// https://fontawesome.com/icons/objects-column?style=solid /// array, grid, organize, scroll, windows - static const IconData solidObjectsColumn = IconDataSolid(0xe3c1); + static const IconData solidObjectsColumn = IconData(0xe3c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Objects Column icon /// /// https://fontawesome.com/icons/objects-column?style=regular /// array, grid, organize, scroll, windows - static const IconData objectsColumn = IconDataRegular(0xe3c1); + static const IconData objectsColumn = IconData(0xe3c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Objects Column icon /// /// https://fontawesome.com/icons/objects-column?style=light /// array, grid, organize, scroll, windows - static const IconData lightObjectsColumn = IconDataLight(0xe3c1); + static const IconData lightObjectsColumn = IconData(0xe3c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Objects Column icon /// /// https://fontawesome.com/icons/objects-column?style=thin /// array, grid, organize, scroll, windows - static const IconData thinObjectsColumn = IconDataThin(0xe3c1); + static const IconData thinObjectsColumn = IconData(0xe3c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Octagon icon /// /// https://fontawesome.com/icons/octagon?style=solid /// octagonal, shape, sign, stop, stop sign - static const IconData solidOctagon = IconDataSolid(0xf306); + static const IconData solidOctagon = IconData(0xf306, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Octagon icon /// /// https://fontawesome.com/icons/octagon?style=regular /// octagonal, shape, sign, stop, stop sign - static const IconData octagon = IconDataRegular(0xf306); + static const IconData octagon = IconData(0xf306, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Octagon icon /// /// https://fontawesome.com/icons/octagon?style=light /// octagonal, shape, sign, stop, stop sign - static const IconData lightOctagon = IconDataLight(0xf306); + static const IconData lightOctagon = IconData(0xf306, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Octagon icon /// /// https://fontawesome.com/icons/octagon?style=thin /// octagonal, shape, sign, stop, stop sign - static const IconData thinOctagon = IconDataThin(0xf306); + static const IconData thinOctagon = IconData(0xf306, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Octagon Check icon /// /// https://fontawesome.com/icons/octagon-check?style=solid /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData solidOctagonCheck = IconDataSolid(0xe426); + static const IconData solidOctagonCheck = IconData(0xe426, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Octagon Check icon /// /// https://fontawesome.com/icons/octagon-check?style=regular /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData octagonCheck = IconDataRegular(0xe426); + static const IconData octagonCheck = IconData(0xe426, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Octagon Check icon /// /// https://fontawesome.com/icons/octagon-check?style=light /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData lightOctagonCheck = IconDataLight(0xe426); + static const IconData lightOctagonCheck = IconData(0xe426, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Octagon Check icon /// /// https://fontawesome.com/icons/octagon-check?style=thin /// accept, agree, box, button, check, checkmark, confirm, correct, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData thinOctagonCheck = IconDataThin(0xe426); + static const IconData thinOctagonCheck = IconData(0xe426, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Octagon Divide icon /// /// https://fontawesome.com/icons/octagon-divide?style=solid /// algebra, arithmetic, division - static const IconData solidOctagonDivide = IconDataSolid(0xe203); + static const IconData solidOctagonDivide = IconData(0xe203, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Octagon Divide icon /// /// https://fontawesome.com/icons/octagon-divide?style=regular /// algebra, arithmetic, division - static const IconData octagonDivide = IconDataRegular(0xe203); + static const IconData octagonDivide = IconData(0xe203, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Octagon Divide icon /// /// https://fontawesome.com/icons/octagon-divide?style=light /// algebra, arithmetic, division - static const IconData lightOctagonDivide = IconDataLight(0xe203); + static const IconData lightOctagonDivide = IconData(0xe203, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Octagon Divide icon /// /// https://fontawesome.com/icons/octagon-divide?style=thin /// algebra, arithmetic, division - static const IconData thinOctagonDivide = IconDataThin(0xe203); + static const IconData thinOctagonDivide = IconData(0xe203, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Octagon Exclamation icon /// /// https://fontawesome.com/icons/octagon-exclamation?style=solid /// attention, close, end, failed, required, stop - static const IconData solidOctagonExclamation = IconDataSolid(0xe204); + static const IconData solidOctagonExclamation = IconData(0xe204, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Octagon Exclamation icon /// /// https://fontawesome.com/icons/octagon-exclamation?style=regular /// attention, close, end, failed, required, stop - static const IconData octagonExclamation = IconDataRegular(0xe204); + static const IconData octagonExclamation = IconData(0xe204, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Octagon Exclamation icon /// /// https://fontawesome.com/icons/octagon-exclamation?style=light /// attention, close, end, failed, required, stop - static const IconData lightOctagonExclamation = IconDataLight(0xe204); + static const IconData lightOctagonExclamation = IconData(0xe204, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Octagon Exclamation icon /// /// https://fontawesome.com/icons/octagon-exclamation?style=thin /// attention, close, end, failed, required, stop - static const IconData thinOctagonExclamation = IconDataThin(0xe204); + static const IconData thinOctagonExclamation = IconData(0xe204, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Octagon Minus icon /// /// https://fontawesome.com/icons/octagon-minus?style=solid /// delete, hide, negative, remove, shape, trash - static const IconData solidOctagonMinus = IconDataSolid(0xf308); + static const IconData solidOctagonMinus = IconData(0xf308, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias minus-octagon for icon [solidOctagonMinus] @Deprecated('Use "solidOctagonMinus" instead.') @@ -61750,7 +61750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-minus?style=regular /// delete, hide, negative, remove, shape, trash - static const IconData octagonMinus = IconDataRegular(0xf308); + static const IconData octagonMinus = IconData(0xf308, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias minus-octagon for icon [octagonMinus] @Deprecated('Use "octagonMinus" instead.') @@ -61760,7 +61760,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-minus?style=light /// delete, hide, negative, remove, shape, trash - static const IconData lightOctagonMinus = IconDataLight(0xf308); + static const IconData lightOctagonMinus = IconData(0xf308, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias minus-octagon for icon [lightOctagonMinus] @Deprecated('Use "lightOctagonMinus" instead.') @@ -61770,7 +61770,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-minus?style=thin /// delete, hide, negative, remove, shape, trash - static const IconData thinOctagonMinus = IconDataThin(0xf308); + static const IconData thinOctagonMinus = IconData(0xf308, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias minus-octagon for icon [thinOctagonMinus] @Deprecated('Use "thinOctagonMinus" instead.') @@ -61780,7 +61780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-plus?style=solid /// add, create, expand, new, positive, shape - static const IconData solidOctagonPlus = IconDataSolid(0xf301); + static const IconData solidOctagonPlus = IconData(0xf301, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias plus-octagon for icon [solidOctagonPlus] @Deprecated('Use "solidOctagonPlus" instead.') @@ -61790,7 +61790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-plus?style=regular /// add, create, expand, new, positive, shape - static const IconData octagonPlus = IconDataRegular(0xf301); + static const IconData octagonPlus = IconData(0xf301, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias plus-octagon for icon [octagonPlus] @Deprecated('Use "octagonPlus" instead.') @@ -61800,7 +61800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-plus?style=light /// add, create, expand, new, positive, shape - static const IconData lightOctagonPlus = IconDataLight(0xf301); + static const IconData lightOctagonPlus = IconData(0xf301, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias plus-octagon for icon [lightOctagonPlus] @Deprecated('Use "lightOctagonPlus" instead.') @@ -61810,7 +61810,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-plus?style=thin /// add, create, expand, new, positive, shape - static const IconData thinOctagonPlus = IconDataThin(0xf301); + static const IconData thinOctagonPlus = IconData(0xf301, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias plus-octagon for icon [thinOctagonPlus] @Deprecated('Use "thinOctagonPlus" instead.') @@ -61820,7 +61820,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-xmark?style=solid /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData solidOctagonXmark = IconDataSolid(0xf2f0); + static const IconData solidOctagonXmark = IconData(0xf2f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias times-octagon for icon [solidOctagonXmark] @Deprecated('Use "solidOctagonXmark" instead.') @@ -61834,7 +61834,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-xmark?style=regular /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData octagonXmark = IconDataRegular(0xf2f0); + static const IconData octagonXmark = IconData(0xf2f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias times-octagon for icon [octagonXmark] @Deprecated('Use "octagonXmark" instead.') @@ -61848,7 +61848,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-xmark?style=light /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData lightOctagonXmark = IconDataLight(0xf2f0); + static const IconData lightOctagonXmark = IconData(0xf2f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias times-octagon for icon [lightOctagonXmark] @Deprecated('Use "lightOctagonXmark" instead.') @@ -61862,7 +61862,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/octagon-xmark?style=thin /// close, cross, exit, incorrect, notice, notification, notify, problem, uncheck, wrong, x - static const IconData thinOctagonXmark = IconDataThin(0xf2f0); + static const IconData thinOctagonXmark = IconData(0xf2f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias times-octagon for icon [thinOctagonXmark] @Deprecated('Use "thinOctagonXmark" instead.') @@ -61875,71 +61875,71 @@ class FontAwesomeIcons { /// Brands Octopus Deploy icon /// /// https://fontawesome.com/icons/octopus-deploy?style=brands - static const IconData octopusDeploy = IconDataBrands(0xe082); + static const IconData octopusDeploy = IconData(0xe082, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Odnoklassniki icon /// /// https://fontawesome.com/icons/odnoklassniki?style=brands - static const IconData odnoklassniki = IconDataBrands(0xf263); + static const IconData odnoklassniki = IconData(0xf263, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Odysee icon /// /// https://fontawesome.com/icons/odysee?style=brands - static const IconData odysee = IconDataBrands(0xe5c6); + static const IconData odysee = IconData(0xe5c6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Oil Can icon /// /// https://fontawesome.com/icons/oil-can?style=solid /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData solidOilCan = IconDataSolid(0xf613); + static const IconData solidOilCan = IconData(0xf613, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Oil Can icon /// /// https://fontawesome.com/icons/oil-can?style=regular /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData oilCan = IconDataRegular(0xf613); + static const IconData oilCan = IconData(0xf613, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Oil Can icon /// /// https://fontawesome.com/icons/oil-can?style=light /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData lightOilCan = IconDataLight(0xf613); + static const IconData lightOilCan = IconData(0xf613, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Oil Can icon /// /// https://fontawesome.com/icons/oil-can?style=thin /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData thinOilCan = IconDataThin(0xf613); + static const IconData thinOilCan = IconData(0xf613, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Oil Can Drip icon /// /// https://fontawesome.com/icons/oil-can-drip?style=solid /// grease, oil, petroleum - static const IconData solidOilCanDrip = IconDataSolid(0xe205); + static const IconData solidOilCanDrip = IconData(0xe205, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Oil Can Drip icon /// /// https://fontawesome.com/icons/oil-can-drip?style=regular /// grease, oil, petroleum - static const IconData oilCanDrip = IconDataRegular(0xe205); + static const IconData oilCanDrip = IconData(0xe205, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Oil Can Drip icon /// /// https://fontawesome.com/icons/oil-can-drip?style=light /// grease, oil, petroleum - static const IconData lightOilCanDrip = IconDataLight(0xe205); + static const IconData lightOilCanDrip = IconData(0xe205, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Oil Can Drip icon /// /// https://fontawesome.com/icons/oil-can-drip?style=thin /// grease, oil, petroleum - static const IconData thinOilCanDrip = IconDataThin(0xe205); + static const IconData thinOilCanDrip = IconData(0xe205, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Oil Temperature icon /// /// https://fontawesome.com/icons/oil-temperature?style=solid /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData solidOilTemperature = IconDataSolid(0xf614); + static const IconData solidOilTemperature = IconData(0xf614, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias oil-temp for icon [solidOilTemperature] @Deprecated('Use "solidOilTemperature" instead.') @@ -61949,7 +61949,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/oil-temperature?style=regular /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData oilTemperature = IconDataRegular(0xf614); + static const IconData oilTemperature = IconData(0xf614, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias oil-temp for icon [oilTemperature] @Deprecated('Use "oilTemperature" instead.') @@ -61959,7 +61959,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/oil-temperature?style=light /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData lightOilTemperature = IconDataLight(0xf614); + static const IconData lightOilTemperature = IconData(0xf614, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias oil-temp for icon [lightOilTemperature] @Deprecated('Use "lightOilTemperature" instead.') @@ -61969,7 +61969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/oil-temperature?style=thin /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData thinOilTemperature = IconDataThin(0xf614); + static const IconData thinOilTemperature = IconData(0xf614, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias oil-temp for icon [thinOilTemperature] @Deprecated('Use "thinOilTemperature" instead.') @@ -61979,264 +61979,264 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/oil-well?style=solid /// drill, oil, rig - static const IconData solidOilWell = IconDataSolid(0xe532); + static const IconData solidOilWell = IconData(0xe532, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Oil Well icon /// /// https://fontawesome.com/icons/oil-well?style=regular /// drill, oil, rig - static const IconData oilWell = IconDataRegular(0xe532); + static const IconData oilWell = IconData(0xe532, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Oil Well icon /// /// https://fontawesome.com/icons/oil-well?style=light /// drill, oil, rig - static const IconData lightOilWell = IconDataLight(0xe532); + static const IconData lightOilWell = IconData(0xe532, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Oil Well icon /// /// https://fontawesome.com/icons/oil-well?style=thin /// drill, oil, rig - static const IconData thinOilWell = IconDataThin(0xe532); + static const IconData thinOilWell = IconData(0xe532, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Old Republic icon /// /// https://fontawesome.com/icons/old-republic?style=brands /// politics, star wars - static const IconData oldRepublic = IconDataBrands(0xf510); + static const IconData oldRepublic = IconData(0xf510, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Olive icon /// /// https://fontawesome.com/icons/olive?style=solid /// pit, oil, olive, pimento - static const IconData solidOlive = IconDataSolid(0xe316); + static const IconData solidOlive = IconData(0xe316, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Olive icon /// /// https://fontawesome.com/icons/olive?style=regular /// pit, oil, olive, pimento - static const IconData olive = IconDataRegular(0xe316); + static const IconData olive = IconData(0xe316, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Olive icon /// /// https://fontawesome.com/icons/olive?style=light /// pit, oil, olive, pimento - static const IconData lightOlive = IconDataLight(0xe316); + static const IconData lightOlive = IconData(0xe316, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Olive icon /// /// https://fontawesome.com/icons/olive?style=thin /// pit, oil, olive, pimento - static const IconData thinOlive = IconDataThin(0xe316); + static const IconData thinOlive = IconData(0xe316, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Olive Branch icon /// /// https://fontawesome.com/icons/olive-branch?style=solid /// branch, food, oil, olive, peace, victory - static const IconData solidOliveBranch = IconDataSolid(0xe317); + static const IconData solidOliveBranch = IconData(0xe317, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Olive Branch icon /// /// https://fontawesome.com/icons/olive-branch?style=regular /// branch, food, oil, olive, peace, victory - static const IconData oliveBranch = IconDataRegular(0xe317); + static const IconData oliveBranch = IconData(0xe317, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Olive Branch icon /// /// https://fontawesome.com/icons/olive-branch?style=light /// branch, food, oil, olive, peace, victory - static const IconData lightOliveBranch = IconDataLight(0xe317); + static const IconData lightOliveBranch = IconData(0xe317, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Olive Branch icon /// /// https://fontawesome.com/icons/olive-branch?style=thin /// branch, food, oil, olive, peace, victory - static const IconData thinOliveBranch = IconDataThin(0xe317); + static const IconData thinOliveBranch = IconData(0xe317, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Om icon /// /// https://fontawesome.com/icons/om?style=solid /// Hindu, buddhism, hinduism, jainism, mantra, om, religion - static const IconData solidOm = IconDataSolid(0xf679); + static const IconData solidOm = IconData(0xf679, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Om icon /// /// https://fontawesome.com/icons/om?style=regular /// Hindu, buddhism, hinduism, jainism, mantra, om, religion - static const IconData om = IconDataRegular(0xf679); + static const IconData om = IconData(0xf679, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Om icon /// /// https://fontawesome.com/icons/om?style=light /// Hindu, buddhism, hinduism, jainism, mantra, om, religion - static const IconData lightOm = IconDataLight(0xf679); + static const IconData lightOm = IconData(0xf679, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Om icon /// /// https://fontawesome.com/icons/om?style=thin /// Hindu, buddhism, hinduism, jainism, mantra, om, religion - static const IconData thinOm = IconDataThin(0xf679); + static const IconData thinOm = IconData(0xf679, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Omega icon /// /// https://fontawesome.com/icons/omega?style=solid /// alphabet, greek, math - static const IconData solidOmega = IconDataSolid(0xf67a); + static const IconData solidOmega = IconData(0xf67a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Omega icon /// /// https://fontawesome.com/icons/omega?style=regular /// alphabet, greek, math - static const IconData omega = IconDataRegular(0xf67a); + static const IconData omega = IconData(0xf67a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Omega icon /// /// https://fontawesome.com/icons/omega?style=light /// alphabet, greek, math - static const IconData lightOmega = IconDataLight(0xf67a); + static const IconData lightOmega = IconData(0xf67a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Omega icon /// /// https://fontawesome.com/icons/omega?style=thin /// alphabet, greek, math - static const IconData thinOmega = IconDataThin(0xf67a); + static const IconData thinOmega = IconData(0xf67a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Onion icon /// /// https://fontawesome.com/icons/onion?style=solid /// onion - static const IconData solidOnion = IconDataSolid(0xe427); + static const IconData solidOnion = IconData(0xe427, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Onion icon /// /// https://fontawesome.com/icons/onion?style=regular /// onion - static const IconData onion = IconDataRegular(0xe427); + static const IconData onion = IconData(0xe427, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Onion icon /// /// https://fontawesome.com/icons/onion?style=light /// onion - static const IconData lightOnion = IconDataLight(0xe427); + static const IconData lightOnion = IconData(0xe427, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Onion icon /// /// https://fontawesome.com/icons/onion?style=thin /// onion - static const IconData thinOnion = IconDataThin(0xe427); + static const IconData thinOnion = IconData(0xe427, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands OpenCart icon /// /// https://fontawesome.com/icons/opencart?style=brands - static const IconData opencart = IconDataBrands(0xf23d); + static const IconData opencart = IconData(0xf23d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands OpenID icon /// /// https://fontawesome.com/icons/openid?style=brands - static const IconData openid = IconDataBrands(0xf19b); + static const IconData openid = IconData(0xf19b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Opensuse icon /// /// https://fontawesome.com/icons/opensuse?style=brands - static const IconData opensuse = IconDataBrands(0xe62b); + static const IconData opensuse = IconData(0xe62b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Opera icon /// /// https://fontawesome.com/icons/opera?style=brands - static const IconData opera = IconDataBrands(0xf26a); + static const IconData opera = IconData(0xf26a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Optin Monster icon /// /// https://fontawesome.com/icons/optin-monster?style=brands - static const IconData optinMonster = IconDataBrands(0xf23c); + static const IconData optinMonster = IconData(0xf23c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Option icon /// /// https://fontawesome.com/icons/option?style=solid /// alt, alternate - static const IconData solidOption = IconDataSolid(0xe318); + static const IconData solidOption = IconData(0xe318, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Option icon /// /// https://fontawesome.com/icons/option?style=regular /// alt, alternate - static const IconData option = IconDataRegular(0xe318); + static const IconData option = IconData(0xe318, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Option icon /// /// https://fontawesome.com/icons/option?style=light /// alt, alternate - static const IconData lightOption = IconDataLight(0xe318); + static const IconData lightOption = IconData(0xe318, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Option icon /// /// https://fontawesome.com/icons/option?style=thin /// alt, alternate - static const IconData thinOption = IconDataThin(0xe318); + static const IconData thinOption = IconData(0xe318, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands ORCID icon /// /// https://fontawesome.com/icons/orcid?style=brands - static const IconData orcid = IconDataBrands(0xf8d2); + static const IconData orcid = IconData(0xf8d2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ornament icon /// /// https://fontawesome.com/icons/ornament?style=solid /// christmas, decoration, holiday, xmas - static const IconData solidOrnament = IconDataSolid(0xf7b8); + static const IconData solidOrnament = IconData(0xf7b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ornament icon /// /// https://fontawesome.com/icons/ornament?style=regular /// christmas, decoration, holiday, xmas - static const IconData ornament = IconDataRegular(0xf7b8); + static const IconData ornament = IconData(0xf7b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ornament icon /// /// https://fontawesome.com/icons/ornament?style=light /// christmas, decoration, holiday, xmas - static const IconData lightOrnament = IconDataLight(0xf7b8); + static const IconData lightOrnament = IconData(0xf7b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ornament icon /// /// https://fontawesome.com/icons/ornament?style=thin /// christmas, decoration, holiday, xmas - static const IconData thinOrnament = IconDataThin(0xf7b8); + static const IconData thinOrnament = IconData(0xf7b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Open Source Initiative icon /// /// https://fontawesome.com/icons/osi?style=brands - static const IconData osi = IconDataBrands(0xf41a); + static const IconData osi = IconData(0xf41a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Otter icon /// /// https://fontawesome.com/icons/otter?style=solid /// animal, badger, fauna, fishing, fur, mammal, marten, otter, playful - static const IconData solidOtter = IconDataSolid(0xf700); + static const IconData solidOtter = IconData(0xf700, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Otter icon /// /// https://fontawesome.com/icons/otter?style=regular /// animal, badger, fauna, fishing, fur, mammal, marten, otter, playful - static const IconData otter = IconDataRegular(0xf700); + static const IconData otter = IconData(0xf700, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Otter icon /// /// https://fontawesome.com/icons/otter?style=light /// animal, badger, fauna, fishing, fur, mammal, marten, otter, playful - static const IconData lightOtter = IconDataLight(0xf700); + static const IconData lightOtter = IconData(0xf700, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Otter icon /// /// https://fontawesome.com/icons/otter?style=thin /// animal, badger, fauna, fishing, fur, mammal, marten, otter, playful - static const IconData thinOtter = IconDataThin(0xf700); + static const IconData thinOtter = IconData(0xf700, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Outdent icon /// /// https://fontawesome.com/icons/outdent?style=solid /// align, justify, paragraph, tab - static const IconData solidOutdent = IconDataSolid(0xf03b); + static const IconData solidOutdent = IconData(0xf03b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dedent for icon [solidOutdent] @Deprecated('Use "solidOutdent" instead.') @@ -62246,7 +62246,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/outdent?style=regular /// align, justify, paragraph, tab - static const IconData outdent = IconDataRegular(0xf03b); + static const IconData outdent = IconData(0xf03b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dedent for icon [outdent] @Deprecated('Use "outdent" instead.') @@ -62256,7 +62256,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/outdent?style=light /// align, justify, paragraph, tab - static const IconData lightOutdent = IconDataLight(0xf03b); + static const IconData lightOutdent = IconData(0xf03b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dedent for icon [lightOutdent] @Deprecated('Use "lightOutdent" instead.') @@ -62266,7 +62266,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/outdent?style=thin /// align, justify, paragraph, tab - static const IconData thinOutdent = IconDataThin(0xf03b); + static const IconData thinOutdent = IconData(0xf03b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dedent for icon [thinOutdent] @Deprecated('Use "thinOutdent" instead.') @@ -62276,132 +62276,132 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/outlet?style=solid /// electricity, energy, plug, power - static const IconData solidOutlet = IconDataSolid(0xe01c); + static const IconData solidOutlet = IconData(0xe01c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Outlet icon /// /// https://fontawesome.com/icons/outlet?style=regular /// electricity, energy, plug, power - static const IconData outlet = IconDataRegular(0xe01c); + static const IconData outlet = IconData(0xe01c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Outlet icon /// /// https://fontawesome.com/icons/outlet?style=light /// electricity, energy, plug, power - static const IconData lightOutlet = IconDataLight(0xe01c); + static const IconData lightOutlet = IconData(0xe01c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Outlet icon /// /// https://fontawesome.com/icons/outlet?style=thin /// electricity, energy, plug, power - static const IconData thinOutlet = IconDataThin(0xe01c); + static const IconData thinOutlet = IconData(0xe01c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Oven icon /// /// https://fontawesome.com/icons/oven?style=solid /// bake, broiler, convection, cook, kitchen, stove - static const IconData solidOven = IconDataSolid(0xe01d); + static const IconData solidOven = IconData(0xe01d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Oven icon /// /// https://fontawesome.com/icons/oven?style=regular /// bake, broiler, convection, cook, kitchen, stove - static const IconData oven = IconDataRegular(0xe01d); + static const IconData oven = IconData(0xe01d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Oven icon /// /// https://fontawesome.com/icons/oven?style=light /// bake, broiler, convection, cook, kitchen, stove - static const IconData lightOven = IconDataLight(0xe01d); + static const IconData lightOven = IconData(0xe01d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Oven icon /// /// https://fontawesome.com/icons/oven?style=thin /// bake, broiler, convection, cook, kitchen, stove - static const IconData thinOven = IconDataThin(0xe01d); + static const IconData thinOven = IconData(0xe01d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Overline icon /// /// https://fontawesome.com/icons/overline?style=solid /// horizontal, line, overbar, overscore, vinculum - static const IconData solidOverline = IconDataSolid(0xf876); + static const IconData solidOverline = IconData(0xf876, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Overline icon /// /// https://fontawesome.com/icons/overline?style=regular /// horizontal, line, overbar, overscore, vinculum - static const IconData overline = IconDataRegular(0xf876); + static const IconData overline = IconData(0xf876, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Overline icon /// /// https://fontawesome.com/icons/overline?style=light /// horizontal, line, overbar, overscore, vinculum - static const IconData lightOverline = IconDataLight(0xf876); + static const IconData lightOverline = IconData(0xf876, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Overline icon /// /// https://fontawesome.com/icons/overline?style=thin /// horizontal, line, overbar, overscore, vinculum - static const IconData thinOverline = IconDataThin(0xf876); + static const IconData thinOverline = IconData(0xf876, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid P icon /// /// https://fontawesome.com/icons/p?style=solid /// Latin Capital Letter P, Latin Small Letter P, letter - static const IconData solidP = IconDataSolid(0x50); + static const IconData solidP = IconData(0x50, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular P icon /// /// https://fontawesome.com/icons/p?style=regular /// Latin Capital Letter P, Latin Small Letter P, letter - static const IconData p = IconDataRegular(0x50); + static const IconData p = IconData(0x50, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light P icon /// /// https://fontawesome.com/icons/p?style=light /// Latin Capital Letter P, Latin Small Letter P, letter - static const IconData lightP = IconDataLight(0x50); + static const IconData lightP = IconData(0x50, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin P icon /// /// https://fontawesome.com/icons/p?style=thin /// Latin Capital Letter P, Latin Small Letter P, letter - static const IconData thinP = IconDataThin(0x50); + static const IconData thinP = IconData(0x50, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Padlet icon /// /// https://fontawesome.com/icons/padlet?style=brands - static const IconData padlet = IconDataBrands(0xe4a0); + static const IconData padlet = IconData(0xe4a0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Page icon /// /// https://fontawesome.com/icons/page?style=solid /// cv, document, empty, file, new, pdf, resume - static const IconData solidPage = IconDataSolid(0xe428); + static const IconData solidPage = IconData(0xe428, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Page icon /// /// https://fontawesome.com/icons/page?style=regular /// cv, document, empty, file, new, pdf, resume - static const IconData page = IconDataRegular(0xe428); + static const IconData page = IconData(0xe428, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Page icon /// /// https://fontawesome.com/icons/page?style=light /// cv, document, empty, file, new, pdf, resume - static const IconData lightPage = IconDataLight(0xe428); + static const IconData lightPage = IconData(0xe428, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Page icon /// /// https://fontawesome.com/icons/page?style=thin /// cv, document, empty, file, new, pdf, resume - static const IconData thinPage = IconDataThin(0xe428); + static const IconData thinPage = IconData(0xe428, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Page Caret Down icon /// /// https://fontawesome.com/icons/page-caret-down?style=solid /// document, empty, file, new, page down, pdf, resume - static const IconData solidPageCaretDown = IconDataSolid(0xe429); + static const IconData solidPageCaretDown = IconData(0xe429, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-down for icon [solidPageCaretDown] @Deprecated('Use "solidPageCaretDown" instead.') @@ -62411,7 +62411,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-down?style=regular /// document, empty, file, new, page down, pdf, resume - static const IconData pageCaretDown = IconDataRegular(0xe429); + static const IconData pageCaretDown = IconData(0xe429, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-down for icon [pageCaretDown] @Deprecated('Use "pageCaretDown" instead.') @@ -62421,7 +62421,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-down?style=light /// document, empty, file, new, page down, pdf, resume - static const IconData lightPageCaretDown = IconDataLight(0xe429); + static const IconData lightPageCaretDown = IconData(0xe429, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-down for icon [lightPageCaretDown] @Deprecated('Use "lightPageCaretDown" instead.') @@ -62431,7 +62431,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-down?style=thin /// document, empty, file, new, page down, pdf, resume - static const IconData thinPageCaretDown = IconDataThin(0xe429); + static const IconData thinPageCaretDown = IconData(0xe429, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-down for icon [thinPageCaretDown] @Deprecated('Use "thinPageCaretDown" instead.') @@ -62441,7 +62441,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-up?style=solid /// document, empty, file, new, page up, pdf, resume, upgrade - static const IconData solidPageCaretUp = IconDataSolid(0xe42a); + static const IconData solidPageCaretUp = IconData(0xe42a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-up for icon [solidPageCaretUp] @Deprecated('Use "solidPageCaretUp" instead.') @@ -62451,7 +62451,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-up?style=regular /// document, empty, file, new, page up, pdf, resume, upgrade - static const IconData pageCaretUp = IconDataRegular(0xe42a); + static const IconData pageCaretUp = IconData(0xe42a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-up for icon [pageCaretUp] @Deprecated('Use "pageCaretUp" instead.') @@ -62461,7 +62461,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-up?style=light /// document, empty, file, new, page up, pdf, resume, upgrade - static const IconData lightPageCaretUp = IconDataLight(0xe42a); + static const IconData lightPageCaretUp = IconData(0xe42a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-up for icon [lightPageCaretUp] @Deprecated('Use "lightPageCaretUp" instead.') @@ -62471,7 +62471,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/page-caret-up?style=thin /// document, empty, file, new, page up, pdf, resume, upgrade - static const IconData thinPageCaretUp = IconDataThin(0xe42a); + static const IconData thinPageCaretUp = IconData(0xe42a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-caret-up for icon [thinPageCaretUp] @Deprecated('Use "thinPageCaretUp" instead.') @@ -62480,67 +62480,67 @@ class FontAwesomeIcons { /// Brands page4 Corporation icon /// /// https://fontawesome.com/icons/page4?style=brands - static const IconData page4 = IconDataBrands(0xf3d7); + static const IconData page4 = IconData(0xf3d7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Pagelines icon /// /// https://fontawesome.com/icons/pagelines?style=brands /// eco, flora, leaf, leaves, nature, plant, tree - static const IconData pagelines = IconDataBrands(0xf18c); + static const IconData pagelines = IconData(0xf18c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pager icon /// /// https://fontawesome.com/icons/pager?style=solid /// beeper, cell phone, communication, page, pager - static const IconData solidPager = IconDataSolid(0xf815); + static const IconData solidPager = IconData(0xf815, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pager icon /// /// https://fontawesome.com/icons/pager?style=regular /// beeper, cell phone, communication, page, pager - static const IconData pager = IconDataRegular(0xf815); + static const IconData pager = IconData(0xf815, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pager icon /// /// https://fontawesome.com/icons/pager?style=light /// beeper, cell phone, communication, page, pager - static const IconData lightPager = IconDataLight(0xf815); + static const IconData lightPager = IconData(0xf815, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pager icon /// /// https://fontawesome.com/icons/pager?style=thin /// beeper, cell phone, communication, page, pager - static const IconData thinPager = IconDataThin(0xf815); + static const IconData thinPager = IconData(0xf815, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paint Roller icon /// /// https://fontawesome.com/icons/paint-roller?style=solid /// acrylic, art, brush, color, fill, maintenance, paint, pigment, watercolor - static const IconData solidPaintRoller = IconDataSolid(0xf5aa); + static const IconData solidPaintRoller = IconData(0xf5aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paint Roller icon /// /// https://fontawesome.com/icons/paint-roller?style=regular /// acrylic, art, brush, color, fill, maintenance, paint, pigment, watercolor - static const IconData paintRoller = IconDataRegular(0xf5aa); + static const IconData paintRoller = IconData(0xf5aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paint Roller icon /// /// https://fontawesome.com/icons/paint-roller?style=light /// acrylic, art, brush, color, fill, maintenance, paint, pigment, watercolor - static const IconData lightPaintRoller = IconDataLight(0xf5aa); + static const IconData lightPaintRoller = IconData(0xf5aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paint Roller icon /// /// https://fontawesome.com/icons/paint-roller?style=thin /// acrylic, art, brush, color, fill, maintenance, paint, pigment, watercolor - static const IconData thinPaintRoller = IconDataThin(0xf5aa); + static const IconData thinPaintRoller = IconData(0xf5aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paintbrush icon /// /// https://fontawesome.com/icons/paintbrush?style=solid /// acrylic, art, brush, color, fill, modify, paint, paintbrush, painting, pigment, watercolor - static const IconData solidPaintbrush = IconDataSolid(0xf1fc); + static const IconData solidPaintbrush = IconData(0xf1fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush for icon [solidPaintbrush] @Deprecated('Use "solidPaintbrush" instead.') @@ -62550,7 +62550,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush?style=regular /// acrylic, art, brush, color, fill, modify, paint, paintbrush, painting, pigment, watercolor - static const IconData paintbrush = IconDataRegular(0xf1fc); + static const IconData paintbrush = IconData(0xf1fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush for icon [paintbrush] @Deprecated('Use "paintbrush" instead.') @@ -62560,7 +62560,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush?style=light /// acrylic, art, brush, color, fill, modify, paint, paintbrush, painting, pigment, watercolor - static const IconData lightPaintbrush = IconDataLight(0xf1fc); + static const IconData lightPaintbrush = IconData(0xf1fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush for icon [lightPaintbrush] @Deprecated('Use "lightPaintbrush" instead.') @@ -62570,7 +62570,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush?style=thin /// acrylic, art, brush, color, fill, modify, paint, paintbrush, painting, pigment, watercolor - static const IconData thinPaintbrush = IconDataThin(0xf1fc); + static const IconData thinPaintbrush = IconData(0xf1fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush for icon [thinPaintbrush] @Deprecated('Use "thinPaintbrush" instead.') @@ -62580,7 +62580,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush-fine?style=solid /// acrylic, art, brush, color, fill, modify, paint, pigment, watercolor - static const IconData solidPaintbrushFine = IconDataSolid(0xf5a9); + static const IconData solidPaintbrushFine = IconData(0xf5a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush-alt for icon [solidPaintbrushFine] @Deprecated('Use "solidPaintbrushFine" instead.') @@ -62598,7 +62598,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush-fine?style=regular /// acrylic, art, brush, color, fill, modify, paint, pigment, watercolor - static const IconData paintbrushFine = IconDataRegular(0xf5a9); + static const IconData paintbrushFine = IconData(0xf5a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush-alt for icon [paintbrushFine] @Deprecated('Use "paintbrushFine" instead.') @@ -62616,7 +62616,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush-fine?style=light /// acrylic, art, brush, color, fill, modify, paint, pigment, watercolor - static const IconData lightPaintbrushFine = IconDataLight(0xf5a9); + static const IconData lightPaintbrushFine = IconData(0xf5a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush-alt for icon [lightPaintbrushFine] @Deprecated('Use "lightPaintbrushFine" instead.') @@ -62634,7 +62634,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush-fine?style=thin /// acrylic, art, brush, color, fill, modify, paint, pigment, watercolor - static const IconData thinPaintbrushFine = IconDataThin(0xf5a9); + static const IconData thinPaintbrushFine = IconData(0xf5a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias paint-brush-alt for icon [thinPaintbrushFine] @Deprecated('Use "thinPaintbrushFine" instead.') @@ -62652,108 +62652,108 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paintbrush-pencil?style=solid /// art, creative, modify - static const IconData solidPaintbrushPencil = IconDataSolid(0xe206); + static const IconData solidPaintbrushPencil = IconData(0xe206, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paintbrush Pencil icon /// /// https://fontawesome.com/icons/paintbrush-pencil?style=regular /// art, creative, modify - static const IconData paintbrushPencil = IconDataRegular(0xe206); + static const IconData paintbrushPencil = IconData(0xe206, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paintbrush Pencil icon /// /// https://fontawesome.com/icons/paintbrush-pencil?style=light /// art, creative, modify - static const IconData lightPaintbrushPencil = IconDataLight(0xe206); + static const IconData lightPaintbrushPencil = IconData(0xe206, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paintbrush Pencil icon /// /// https://fontawesome.com/icons/paintbrush-pencil?style=thin /// art, creative, modify - static const IconData thinPaintbrushPencil = IconDataThin(0xe206); + static const IconData thinPaintbrushPencil = IconData(0xe206, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Palette icon /// /// https://fontawesome.com/icons/palette?style=solid /// acrylic, art, artist palette, brush, color, fill, museum, paint, painting, palette, pigment, watercolor - static const IconData solidPalette = IconDataSolid(0xf53f); + static const IconData solidPalette = IconData(0xf53f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Palette icon /// /// https://fontawesome.com/icons/palette?style=regular /// acrylic, art, artist palette, brush, color, fill, museum, paint, painting, palette, pigment, watercolor - static const IconData palette = IconDataRegular(0xf53f); + static const IconData palette = IconData(0xf53f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Palette icon /// /// https://fontawesome.com/icons/palette?style=light /// acrylic, art, artist palette, brush, color, fill, museum, paint, painting, palette, pigment, watercolor - static const IconData lightPalette = IconDataLight(0xf53f); + static const IconData lightPalette = IconData(0xf53f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Palette icon /// /// https://fontawesome.com/icons/palette?style=thin /// acrylic, art, artist palette, brush, color, fill, museum, paint, painting, palette, pigment, watercolor - static const IconData thinPalette = IconDataThin(0xf53f); + static const IconData thinPalette = IconData(0xf53f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Palfed icon /// /// https://fontawesome.com/icons/palfed?style=brands - static const IconData palfed = IconDataBrands(0xf3d8); + static const IconData palfed = IconData(0xf3d8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pallet icon /// /// https://fontawesome.com/icons/pallet?style=solid /// archive, box, inventory, shipping, warehouse - static const IconData solidPallet = IconDataSolid(0xf482); + static const IconData solidPallet = IconData(0xf482, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pallet icon /// /// https://fontawesome.com/icons/pallet?style=regular /// archive, box, inventory, shipping, warehouse - static const IconData pallet = IconDataRegular(0xf482); + static const IconData pallet = IconData(0xf482, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pallet icon /// /// https://fontawesome.com/icons/pallet?style=light /// archive, box, inventory, shipping, warehouse - static const IconData lightPallet = IconDataLight(0xf482); + static const IconData lightPallet = IconData(0xf482, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pallet icon /// /// https://fontawesome.com/icons/pallet?style=thin /// archive, box, inventory, shipping, warehouse - static const IconData thinPallet = IconDataThin(0xf482); + static const IconData thinPallet = IconData(0xf482, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pallet Box icon /// /// https://fontawesome.com/icons/pallet-box?style=solid /// inventory, package, shipping - static const IconData solidPalletBox = IconDataSolid(0xe208); + static const IconData solidPalletBox = IconData(0xe208, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pallet Box icon /// /// https://fontawesome.com/icons/pallet-box?style=regular /// inventory, package, shipping - static const IconData palletBox = IconDataRegular(0xe208); + static const IconData palletBox = IconData(0xe208, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pallet Box icon /// /// https://fontawesome.com/icons/pallet-box?style=light /// inventory, package, shipping - static const IconData lightPalletBox = IconDataLight(0xe208); + static const IconData lightPalletBox = IconData(0xe208, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pallet Box icon /// /// https://fontawesome.com/icons/pallet-box?style=thin /// inventory, package, shipping - static const IconData thinPalletBox = IconDataThin(0xe208); + static const IconData thinPalletBox = IconData(0xe208, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pallet Boxes icon /// /// https://fontawesome.com/icons/pallet-boxes?style=solid /// archive, box, inventory, shipping, warehouse - static const IconData solidPalletBoxes = IconDataSolid(0xf483); + static const IconData solidPalletBoxes = IconData(0xf483, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias palette-boxes for icon [solidPalletBoxes] @Deprecated('Use "solidPalletBoxes" instead.') @@ -62767,7 +62767,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pallet-boxes?style=regular /// archive, box, inventory, shipping, warehouse - static const IconData palletBoxes = IconDataRegular(0xf483); + static const IconData palletBoxes = IconData(0xf483, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias palette-boxes for icon [palletBoxes] @Deprecated('Use "palletBoxes" instead.') @@ -62781,7 +62781,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pallet-boxes?style=light /// archive, box, inventory, shipping, warehouse - static const IconData lightPalletBoxes = IconDataLight(0xf483); + static const IconData lightPalletBoxes = IconData(0xf483, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias palette-boxes for icon [lightPalletBoxes] @Deprecated('Use "lightPalletBoxes" instead.') @@ -62795,7 +62795,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pallet-boxes?style=thin /// archive, box, inventory, shipping, warehouse - static const IconData thinPalletBoxes = IconDataThin(0xf483); + static const IconData thinPalletBoxes = IconData(0xf483, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias palette-boxes for icon [thinPalletBoxes] @Deprecated('Use "thinPalletBoxes" instead.') @@ -62809,175 +62809,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pan-food?style=solid /// casserole, paella, pan, shallow, stew - static const IconData solidPanFood = IconDataSolid(0xe42b); + static const IconData solidPanFood = IconData(0xe42b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pan Food icon /// /// https://fontawesome.com/icons/pan-food?style=regular /// casserole, paella, pan, shallow, stew - static const IconData panFood = IconDataRegular(0xe42b); + static const IconData panFood = IconData(0xe42b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pan Food icon /// /// https://fontawesome.com/icons/pan-food?style=light /// casserole, paella, pan, shallow, stew - static const IconData lightPanFood = IconDataLight(0xe42b); + static const IconData lightPanFood = IconData(0xe42b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pan Food icon /// /// https://fontawesome.com/icons/pan-food?style=thin /// casserole, paella, pan, shallow, stew - static const IconData thinPanFood = IconDataThin(0xe42b); + static const IconData thinPanFood = IconData(0xe42b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pan Frying icon /// /// https://fontawesome.com/icons/pan-frying?style=solid /// breakfast, cook, egg, fry - static const IconData solidPanFrying = IconDataSolid(0xe42c); + static const IconData solidPanFrying = IconData(0xe42c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pan Frying icon /// /// https://fontawesome.com/icons/pan-frying?style=regular /// breakfast, cook, egg, fry - static const IconData panFrying = IconDataRegular(0xe42c); + static const IconData panFrying = IconData(0xe42c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pan Frying icon /// /// https://fontawesome.com/icons/pan-frying?style=light /// breakfast, cook, egg, fry - static const IconData lightPanFrying = IconDataLight(0xe42c); + static const IconData lightPanFrying = IconData(0xe42c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pan Frying icon /// /// https://fontawesome.com/icons/pan-frying?style=thin /// breakfast, cook, egg, fry - static const IconData thinPanFrying = IconDataThin(0xe42c); + static const IconData thinPanFrying = IconData(0xe42c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pancakes icon /// /// https://fontawesome.com/icons/pancakes?style=solid /// breakfast, crepe, flapjack, hotcake, pancake, stack, syrup - static const IconData solidPancakes = IconDataSolid(0xe42d); + static const IconData solidPancakes = IconData(0xe42d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pancakes icon /// /// https://fontawesome.com/icons/pancakes?style=regular /// breakfast, crepe, flapjack, hotcake, pancake, stack, syrup - static const IconData pancakes = IconDataRegular(0xe42d); + static const IconData pancakes = IconData(0xe42d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pancakes icon /// /// https://fontawesome.com/icons/pancakes?style=light /// breakfast, crepe, flapjack, hotcake, pancake, stack, syrup - static const IconData lightPancakes = IconDataLight(0xe42d); + static const IconData lightPancakes = IconData(0xe42d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pancakes icon /// /// https://fontawesome.com/icons/pancakes?style=thin /// breakfast, crepe, flapjack, hotcake, pancake, stack, syrup - static const IconData thinPancakes = IconDataThin(0xe42d); + static const IconData thinPancakes = IconData(0xe42d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Panel Ews icon /// /// https://fontawesome.com/icons/panel-ews?style=solid /// emergency, intercom, phone - static const IconData solidPanelEws = IconDataSolid(0xe42e); + static const IconData solidPanelEws = IconData(0xe42e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Panel Ews icon /// /// https://fontawesome.com/icons/panel-ews?style=regular /// emergency, intercom, phone - static const IconData panelEws = IconDataRegular(0xe42e); + static const IconData panelEws = IconData(0xe42e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Panel Ews icon /// /// https://fontawesome.com/icons/panel-ews?style=light /// emergency, intercom, phone - static const IconData lightPanelEws = IconDataLight(0xe42e); + static const IconData lightPanelEws = IconData(0xe42e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Panel Ews icon /// /// https://fontawesome.com/icons/panel-ews?style=thin /// emergency, intercom, phone - static const IconData thinPanelEws = IconDataThin(0xe42e); + static const IconData thinPanelEws = IconData(0xe42e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Panel Fire icon /// /// https://fontawesome.com/icons/panel-fire?style=solid /// burn, emergency, flame, indicator, intercom - static const IconData solidPanelFire = IconDataSolid(0xe42f); + static const IconData solidPanelFire = IconData(0xe42f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Panel Fire icon /// /// https://fontawesome.com/icons/panel-fire?style=regular /// burn, emergency, flame, indicator, intercom - static const IconData panelFire = IconDataRegular(0xe42f); + static const IconData panelFire = IconData(0xe42f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Panel Fire icon /// /// https://fontawesome.com/icons/panel-fire?style=light /// burn, emergency, flame, indicator, intercom - static const IconData lightPanelFire = IconDataLight(0xe42f); + static const IconData lightPanelFire = IconData(0xe42f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Panel Fire icon /// /// https://fontawesome.com/icons/panel-fire?style=thin /// burn, emergency, flame, indicator, intercom - static const IconData thinPanelFire = IconDataThin(0xe42f); + static const IconData thinPanelFire = IconData(0xe42f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Panorama icon /// /// https://fontawesome.com/icons/panorama?style=solid /// image, img, landscape, photo, wide - static const IconData solidPanorama = IconDataSolid(0xe209); + static const IconData solidPanorama = IconData(0xe209, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Panorama icon /// /// https://fontawesome.com/icons/panorama?style=regular /// image, img, landscape, photo, wide - static const IconData panorama = IconDataRegular(0xe209); + static const IconData panorama = IconData(0xe209, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Panorama icon /// /// https://fontawesome.com/icons/panorama?style=light /// image, img, landscape, photo, wide - static const IconData lightPanorama = IconDataLight(0xe209); + static const IconData lightPanorama = IconData(0xe209, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Panorama icon /// /// https://fontawesome.com/icons/panorama?style=thin /// image, img, landscape, photo, wide - static const IconData thinPanorama = IconDataThin(0xe209); + static const IconData thinPanorama = IconData(0xe209, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paper Plane icon /// /// https://fontawesome.com/icons/paper-plane?style=solid /// air, float, fold, mail, paper, send - static const IconData solidPaperPlane = IconDataSolid(0xf1d8); + static const IconData solidPaperPlane = IconData(0xf1d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paper Plane icon /// /// https://fontawesome.com/icons/paper-plane?style=regular /// air, float, fold, mail, paper, send - static const IconData paperPlane = IconDataRegular(0xf1d8); + static const IconData paperPlane = IconData(0xf1d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paper Plane icon /// /// https://fontawesome.com/icons/paper-plane?style=light /// air, float, fold, mail, paper, send - static const IconData lightPaperPlane = IconDataLight(0xf1d8); + static const IconData lightPaperPlane = IconData(0xf1d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paper Plane icon /// /// https://fontawesome.com/icons/paper-plane?style=thin /// air, float, fold, mail, paper, send - static const IconData thinPaperPlane = IconDataThin(0xf1d8); + static const IconData thinPaperPlane = IconData(0xf1d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paper Plane Top icon /// /// https://fontawesome.com/icons/paper-plane-top?style=solid /// email, fold, send - static const IconData solidPaperPlaneTop = IconDataSolid(0xe20a); + static const IconData solidPaperPlaneTop = IconData(0xe20a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias paper-plane-alt for icon [solidPaperPlaneTop] @Deprecated('Use "solidPaperPlaneTop" instead.') @@ -62991,7 +62991,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paper-plane-top?style=regular /// email, fold, send - static const IconData paperPlaneTop = IconDataRegular(0xe20a); + static const IconData paperPlaneTop = IconData(0xe20a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias paper-plane-alt for icon [paperPlaneTop] @Deprecated('Use "paperPlaneTop" instead.') @@ -63005,7 +63005,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paper-plane-top?style=light /// email, fold, send - static const IconData lightPaperPlaneTop = IconDataLight(0xe20a); + static const IconData lightPaperPlaneTop = IconData(0xe20a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias paper-plane-alt for icon [lightPaperPlaneTop] @Deprecated('Use "lightPaperPlaneTop" instead.') @@ -63019,7 +63019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paper-plane-top?style=thin /// email, fold, send - static const IconData thinPaperPlaneTop = IconDataThin(0xe20a); + static const IconData thinPaperPlaneTop = IconData(0xe20a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias paper-plane-alt for icon [thinPaperPlaneTop] @Deprecated('Use "thinPaperPlaneTop" instead.') @@ -63033,103 +63033,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paperclip?style=solid /// attach, attachment, connect, link, papercli, paperclip - static const IconData solidPaperclip = IconDataSolid(0xf0c6); + static const IconData solidPaperclip = IconData(0xf0c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paperclip icon /// /// https://fontawesome.com/icons/paperclip?style=regular /// attach, attachment, connect, link, papercli, paperclip - static const IconData paperclip = IconDataRegular(0xf0c6); + static const IconData paperclip = IconData(0xf0c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paperclip icon /// /// https://fontawesome.com/icons/paperclip?style=light /// attach, attachment, connect, link, papercli, paperclip - static const IconData lightPaperclip = IconDataLight(0xf0c6); + static const IconData lightPaperclip = IconData(0xf0c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paperclip icon /// /// https://fontawesome.com/icons/paperclip?style=thin /// attach, attachment, connect, link, papercli, paperclip - static const IconData thinPaperclip = IconDataThin(0xf0c6); + static const IconData thinPaperclip = IconData(0xf0c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paperclip Vertical icon /// /// https://fontawesome.com/icons/paperclip-vertical?style=solid /// attach, attachment, connect, link - static const IconData solidPaperclipVertical = IconDataSolid(0xe3c2); + static const IconData solidPaperclipVertical = IconData(0xe3c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paperclip Vertical icon /// /// https://fontawesome.com/icons/paperclip-vertical?style=regular /// attach, attachment, connect, link - static const IconData paperclipVertical = IconDataRegular(0xe3c2); + static const IconData paperclipVertical = IconData(0xe3c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paperclip Vertical icon /// /// https://fontawesome.com/icons/paperclip-vertical?style=light /// attach, attachment, connect, link - static const IconData lightPaperclipVertical = IconDataLight(0xe3c2); + static const IconData lightPaperclipVertical = IconData(0xe3c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paperclip Vertical icon /// /// https://fontawesome.com/icons/paperclip-vertical?style=thin /// attach, attachment, connect, link - static const IconData thinPaperclipVertical = IconDataThin(0xe3c2); + static const IconData thinPaperclipVertical = IconData(0xe3c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Parachute Box icon /// /// https://fontawesome.com/icons/parachute-box?style=solid /// aid, assistance, goods, relief, rescue, supplies - static const IconData solidParachuteBox = IconDataSolid(0xf4cd); + static const IconData solidParachuteBox = IconData(0xf4cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Parachute Box icon /// /// https://fontawesome.com/icons/parachute-box?style=regular /// aid, assistance, goods, relief, rescue, supplies - static const IconData parachuteBox = IconDataRegular(0xf4cd); + static const IconData parachuteBox = IconData(0xf4cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Parachute Box icon /// /// https://fontawesome.com/icons/parachute-box?style=light /// aid, assistance, goods, relief, rescue, supplies - static const IconData lightParachuteBox = IconDataLight(0xf4cd); + static const IconData lightParachuteBox = IconData(0xf4cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Parachute Box icon /// /// https://fontawesome.com/icons/parachute-box?style=thin /// aid, assistance, goods, relief, rescue, supplies - static const IconData thinParachuteBox = IconDataThin(0xf4cd); + static const IconData thinParachuteBox = IconData(0xf4cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paragraph icon /// /// https://fontawesome.com/icons/paragraph?style=solid /// Pilcrow Sign, edit, format, text, writing - static const IconData solidParagraph = IconDataSolid(0xf1dd); + static const IconData solidParagraph = IconData(0xf1dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paragraph icon /// /// https://fontawesome.com/icons/paragraph?style=regular /// Pilcrow Sign, edit, format, text, writing - static const IconData paragraph = IconDataRegular(0xf1dd); + static const IconData paragraph = IconData(0xf1dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paragraph icon /// /// https://fontawesome.com/icons/paragraph?style=light /// Pilcrow Sign, edit, format, text, writing - static const IconData lightParagraph = IconDataLight(0xf1dd); + static const IconData lightParagraph = IconData(0xf1dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paragraph icon /// /// https://fontawesome.com/icons/paragraph?style=thin /// Pilcrow Sign, edit, format, text, writing - static const IconData thinParagraph = IconDataThin(0xf1dd); + static const IconData thinParagraph = IconData(0xf1dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paragraph Left icon /// /// https://fontawesome.com/icons/paragraph-left?style=solid /// edit, format, text, writing - static const IconData solidParagraphLeft = IconDataSolid(0xf878); + static const IconData solidParagraphLeft = IconData(0xf878, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias paragraph-rtl for icon [solidParagraphLeft] @Deprecated('Use "solidParagraphLeft" instead.') @@ -63139,7 +63139,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paragraph-left?style=regular /// edit, format, text, writing - static const IconData paragraphLeft = IconDataRegular(0xf878); + static const IconData paragraphLeft = IconData(0xf878, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias paragraph-rtl for icon [paragraphLeft] @Deprecated('Use "paragraphLeft" instead.') @@ -63149,7 +63149,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paragraph-left?style=light /// edit, format, text, writing - static const IconData lightParagraphLeft = IconDataLight(0xf878); + static const IconData lightParagraphLeft = IconData(0xf878, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias paragraph-rtl for icon [lightParagraphLeft] @Deprecated('Use "lightParagraphLeft" instead.') @@ -63159,7 +63159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paragraph-left?style=thin /// edit, format, text, writing - static const IconData thinParagraphLeft = IconDataThin(0xf878); + static const IconData thinParagraphLeft = IconData(0xf878, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias paragraph-rtl for icon [thinParagraphLeft] @Deprecated('Use "thinParagraphLeft" instead.') @@ -63169,79 +63169,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/party-bell?style=solid /// ball, celebrate, celebration, confetti, confetti ball, party, tada - static const IconData solidPartyBell = IconDataSolid(0xe31a); + static const IconData solidPartyBell = IconData(0xe31a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Party Bell icon /// /// https://fontawesome.com/icons/party-bell?style=regular /// ball, celebrate, celebration, confetti, confetti ball, party, tada - static const IconData partyBell = IconDataRegular(0xe31a); + static const IconData partyBell = IconData(0xe31a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Party Bell icon /// /// https://fontawesome.com/icons/party-bell?style=light /// ball, celebrate, celebration, confetti, confetti ball, party, tada - static const IconData lightPartyBell = IconDataLight(0xe31a); + static const IconData lightPartyBell = IconData(0xe31a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Party Bell icon /// /// https://fontawesome.com/icons/party-bell?style=thin /// ball, celebrate, celebration, confetti, confetti ball, party, tada - static const IconData thinPartyBell = IconDataThin(0xe31a); + static const IconData thinPartyBell = IconData(0xe31a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Party Horn icon /// /// https://fontawesome.com/icons/party-horn?style=solid /// celebrate, celebration, confetti, party, party popper, popper, tada, trumpet - static const IconData solidPartyHorn = IconDataSolid(0xe31b); + static const IconData solidPartyHorn = IconData(0xe31b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Party Horn icon /// /// https://fontawesome.com/icons/party-horn?style=regular /// celebrate, celebration, confetti, party, party popper, popper, tada, trumpet - static const IconData partyHorn = IconDataRegular(0xe31b); + static const IconData partyHorn = IconData(0xe31b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Party Horn icon /// /// https://fontawesome.com/icons/party-horn?style=light /// celebrate, celebration, confetti, party, party popper, popper, tada, trumpet - static const IconData lightPartyHorn = IconDataLight(0xe31b); + static const IconData lightPartyHorn = IconData(0xe31b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Party Horn icon /// /// https://fontawesome.com/icons/party-horn?style=thin /// celebrate, celebration, confetti, party, party popper, popper, tada, trumpet - static const IconData thinPartyHorn = IconDataThin(0xe31b); + static const IconData thinPartyHorn = IconData(0xe31b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Passport icon /// /// https://fontawesome.com/icons/passport?style=solid /// document, id, identification, issued, travel - static const IconData solidPassport = IconDataSolid(0xf5ab); + static const IconData solidPassport = IconData(0xf5ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Passport icon /// /// https://fontawesome.com/icons/passport?style=regular /// document, id, identification, issued, travel - static const IconData passport = IconDataRegular(0xf5ab); + static const IconData passport = IconData(0xf5ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Passport icon /// /// https://fontawesome.com/icons/passport?style=light /// document, id, identification, issued, travel - static const IconData lightPassport = IconDataLight(0xf5ab); + static const IconData lightPassport = IconData(0xf5ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Passport icon /// /// https://fontawesome.com/icons/passport?style=thin /// document, id, identification, issued, travel - static const IconData thinPassport = IconDataThin(0xf5ab); + static const IconData thinPassport = IconData(0xf5ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paste icon /// /// https://fontawesome.com/icons/paste?style=solid /// clipboard, copy, document, paper - static const IconData solidPaste = IconDataSolid(0xf0ea); + static const IconData solidPaste = IconData(0xf0ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias file-clipboard for icon [solidPaste] @Deprecated('Use "solidPaste" instead.') @@ -63251,7 +63251,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paste?style=regular /// clipboard, copy, document, paper - static const IconData paste = IconDataRegular(0xf0ea); + static const IconData paste = IconData(0xf0ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias file-clipboard for icon [paste] @Deprecated('Use "paste" instead.') @@ -63261,7 +63261,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paste?style=light /// clipboard, copy, document, paper - static const IconData lightPaste = IconDataLight(0xf0ea); + static const IconData lightPaste = IconData(0xf0ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias file-clipboard for icon [lightPaste] @Deprecated('Use "lightPaste" instead.') @@ -63271,7 +63271,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paste?style=thin /// clipboard, copy, document, paper - static const IconData thinPaste = IconDataThin(0xf0ea); + static const IconData thinPaste = IconData(0xf0ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias file-clipboard for icon [thinPaste] @Deprecated('Use "thinPaste" instead.') @@ -63280,85 +63280,85 @@ class FontAwesomeIcons { /// Brands Patreon icon /// /// https://fontawesome.com/icons/patreon?style=brands - static const IconData patreon = IconDataBrands(0xf3d9); + static const IconData patreon = IconData(0xf3d9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pause icon /// /// https://fontawesome.com/icons/pause?style=solid /// bar, double, hold, pause, pause button, vertical, wait - static const IconData solidPause = IconDataSolid(0xf04c); + static const IconData solidPause = IconData(0xf04c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pause icon /// /// https://fontawesome.com/icons/pause?style=regular /// bar, double, hold, pause, pause button, vertical, wait - static const IconData pause = IconDataRegular(0xf04c); + static const IconData pause = IconData(0xf04c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pause icon /// /// https://fontawesome.com/icons/pause?style=light /// bar, double, hold, pause, pause button, vertical, wait - static const IconData lightPause = IconDataLight(0xf04c); + static const IconData lightPause = IconData(0xf04c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pause icon /// /// https://fontawesome.com/icons/pause?style=thin /// bar, double, hold, pause, pause button, vertical, wait - static const IconData thinPause = IconDataThin(0xf04c); + static const IconData thinPause = IconData(0xf04c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paw icon /// /// https://fontawesome.com/icons/paw?style=solid /// animal, cat, dog, pet, print - static const IconData solidPaw = IconDataSolid(0xf1b0); + static const IconData solidPaw = IconData(0xf1b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paw icon /// /// https://fontawesome.com/icons/paw?style=regular /// animal, cat, dog, pet, print - static const IconData paw = IconDataRegular(0xf1b0); + static const IconData paw = IconData(0xf1b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paw icon /// /// https://fontawesome.com/icons/paw?style=light /// animal, cat, dog, pet, print - static const IconData lightPaw = IconDataLight(0xf1b0); + static const IconData lightPaw = IconData(0xf1b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paw icon /// /// https://fontawesome.com/icons/paw?style=thin /// animal, cat, dog, pet, print - static const IconData thinPaw = IconDataThin(0xf1b0); + static const IconData thinPaw = IconData(0xf1b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paw Claws icon /// /// https://fontawesome.com/icons/paw-claws?style=solid /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconData solidPawClaws = IconDataSolid(0xf702); + static const IconData solidPawClaws = IconData(0xf702, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Paw Claws icon /// /// https://fontawesome.com/icons/paw-claws?style=regular /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconData pawClaws = IconDataRegular(0xf702); + static const IconData pawClaws = IconData(0xf702, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Paw Claws icon /// /// https://fontawesome.com/icons/paw-claws?style=light /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconData lightPawClaws = IconDataLight(0xf702); + static const IconData lightPawClaws = IconData(0xf702, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Paw Claws icon /// /// https://fontawesome.com/icons/paw-claws?style=thin /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconData thinPawClaws = IconDataThin(0xf702); + static const IconData thinPawClaws = IconData(0xf702, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Paw Simple icon /// /// https://fontawesome.com/icons/paw-simple?style=solid /// animal, cat, dog, pet, print - static const IconData solidPawSimple = IconDataSolid(0xf701); + static const IconData solidPawSimple = IconData(0xf701, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias paw-alt for icon [solidPawSimple] @Deprecated('Use "solidPawSimple" instead.') @@ -63368,7 +63368,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paw-simple?style=regular /// animal, cat, dog, pet, print - static const IconData pawSimple = IconDataRegular(0xf701); + static const IconData pawSimple = IconData(0xf701, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias paw-alt for icon [pawSimple] @Deprecated('Use "pawSimple" instead.') @@ -63378,7 +63378,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paw-simple?style=light /// animal, cat, dog, pet, print - static const IconData lightPawSimple = IconDataLight(0xf701); + static const IconData lightPawSimple = IconData(0xf701, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias paw-alt for icon [lightPawSimple] @Deprecated('Use "lightPawSimple" instead.') @@ -63388,7 +63388,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/paw-simple?style=thin /// animal, cat, dog, pet, print - static const IconData thinPawSimple = IconDataThin(0xf701); + static const IconData thinPawSimple = IconData(0xf701, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias paw-alt for icon [thinPawSimple] @Deprecated('Use "thinPawSimple" instead.') @@ -63397,253 +63397,253 @@ class FontAwesomeIcons { /// Brands Paypal icon /// /// https://fontawesome.com/icons/paypal?style=brands - static const IconData paypal = IconDataBrands(0xf1ed); + static const IconData paypal = IconData(0xf1ed, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Peace icon /// /// https://fontawesome.com/icons/peace?style=solid /// peace, peace symbol, serenity, tranquility, truce, war - static const IconData solidPeace = IconDataSolid(0xf67c); + static const IconData solidPeace = IconData(0xf67c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peace icon /// /// https://fontawesome.com/icons/peace?style=regular /// peace, peace symbol, serenity, tranquility, truce, war - static const IconData peace = IconDataRegular(0xf67c); + static const IconData peace = IconData(0xf67c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peace icon /// /// https://fontawesome.com/icons/peace?style=light /// peace, peace symbol, serenity, tranquility, truce, war - static const IconData lightPeace = IconDataLight(0xf67c); + static const IconData lightPeace = IconData(0xf67c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peace icon /// /// https://fontawesome.com/icons/peace?style=thin /// peace, peace symbol, serenity, tranquility, truce, war - static const IconData thinPeace = IconDataThin(0xf67c); + static const IconData thinPeace = IconData(0xf67c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Peach icon /// /// https://fontawesome.com/icons/peach?style=solid /// butt, fruit, peach, pit, stone - static const IconData solidPeach = IconDataSolid(0xe20b); + static const IconData solidPeach = IconData(0xe20b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peach icon /// /// https://fontawesome.com/icons/peach?style=regular /// butt, fruit, peach, pit, stone - static const IconData peach = IconDataRegular(0xe20b); + static const IconData peach = IconData(0xe20b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peach icon /// /// https://fontawesome.com/icons/peach?style=light /// butt, fruit, peach, pit, stone - static const IconData lightPeach = IconDataLight(0xe20b); + static const IconData lightPeach = IconData(0xe20b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peach icon /// /// https://fontawesome.com/icons/peach?style=thin /// butt, fruit, peach, pit, stone - static const IconData thinPeach = IconDataThin(0xe20b); + static const IconData thinPeach = IconData(0xe20b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Peanut icon /// /// https://fontawesome.com/icons/peanut?style=solid /// goober, legume, nut, shell - static const IconData solidPeanut = IconDataSolid(0xe430); + static const IconData solidPeanut = IconData(0xe430, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peanut icon /// /// https://fontawesome.com/icons/peanut?style=regular /// goober, legume, nut, shell - static const IconData peanut = IconDataRegular(0xe430); + static const IconData peanut = IconData(0xe430, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peanut icon /// /// https://fontawesome.com/icons/peanut?style=light /// goober, legume, nut, shell - static const IconData lightPeanut = IconDataLight(0xe430); + static const IconData lightPeanut = IconData(0xe430, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peanut icon /// /// https://fontawesome.com/icons/peanut?style=thin /// goober, legume, nut, shell - static const IconData thinPeanut = IconDataThin(0xe430); + static const IconData thinPeanut = IconData(0xe430, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Peanuts icon /// /// https://fontawesome.com/icons/peanuts?style=solid /// goober, legume, nut, shell - static const IconData solidPeanuts = IconDataSolid(0xe431); + static const IconData solidPeanuts = IconData(0xe431, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peanuts icon /// /// https://fontawesome.com/icons/peanuts?style=regular /// goober, legume, nut, shell - static const IconData peanuts = IconDataRegular(0xe431); + static const IconData peanuts = IconData(0xe431, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peanuts icon /// /// https://fontawesome.com/icons/peanuts?style=light /// goober, legume, nut, shell - static const IconData lightPeanuts = IconDataLight(0xe431); + static const IconData lightPeanuts = IconData(0xe431, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peanuts icon /// /// https://fontawesome.com/icons/peanuts?style=thin /// goober, legume, nut, shell - static const IconData thinPeanuts = IconDataThin(0xe431); + static const IconData thinPeanuts = IconData(0xe431, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Peapod icon /// /// https://fontawesome.com/icons/peapod?style=solid /// pea, seed - static const IconData solidPeapod = IconDataSolid(0xe31c); + static const IconData solidPeapod = IconData(0xe31c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peapod icon /// /// https://fontawesome.com/icons/peapod?style=regular /// pea, seed - static const IconData peapod = IconDataRegular(0xe31c); + static const IconData peapod = IconData(0xe31c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peapod icon /// /// https://fontawesome.com/icons/peapod?style=light /// pea, seed - static const IconData lightPeapod = IconDataLight(0xe31c); + static const IconData lightPeapod = IconData(0xe31c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peapod icon /// /// https://fontawesome.com/icons/peapod?style=thin /// pea, seed - static const IconData thinPeapod = IconDataThin(0xe31c); + static const IconData thinPeapod = IconData(0xe31c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pear icon /// /// https://fontawesome.com/icons/pear?style=solid /// fruit, pear - static const IconData solidPear = IconDataSolid(0xe20c); + static const IconData solidPear = IconData(0xe20c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pear icon /// /// https://fontawesome.com/icons/pear?style=regular /// fruit, pear - static const IconData pear = IconDataRegular(0xe20c); + static const IconData pear = IconData(0xe20c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pear icon /// /// https://fontawesome.com/icons/pear?style=light /// fruit, pear - static const IconData lightPear = IconDataLight(0xe20c); + static const IconData lightPear = IconData(0xe20c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pear icon /// /// https://fontawesome.com/icons/pear?style=thin /// fruit, pear - static const IconData thinPear = IconDataThin(0xe20c); + static const IconData thinPear = IconData(0xe20c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pedestal icon /// /// https://fontawesome.com/icons/pedestal?style=solid /// electricity, reading - static const IconData solidPedestal = IconDataSolid(0xe20d); + static const IconData solidPedestal = IconData(0xe20d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pedestal icon /// /// https://fontawesome.com/icons/pedestal?style=regular /// electricity, reading - static const IconData pedestal = IconDataRegular(0xe20d); + static const IconData pedestal = IconData(0xe20d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pedestal icon /// /// https://fontawesome.com/icons/pedestal?style=light /// electricity, reading - static const IconData lightPedestal = IconDataLight(0xe20d); + static const IconData lightPedestal = IconData(0xe20d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pedestal icon /// /// https://fontawesome.com/icons/pedestal?style=thin /// electricity, reading - static const IconData thinPedestal = IconDataThin(0xe20d); + static const IconData thinPedestal = IconData(0xe20d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pegasus icon /// /// https://fontawesome.com/icons/pegasus?style=solid /// fantasy, horse, unicorn, wings - static const IconData solidPegasus = IconDataSolid(0xf703); + static const IconData solidPegasus = IconData(0xf703, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pegasus icon /// /// https://fontawesome.com/icons/pegasus?style=regular /// fantasy, horse, unicorn, wings - static const IconData pegasus = IconDataRegular(0xf703); + static const IconData pegasus = IconData(0xf703, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pegasus icon /// /// https://fontawesome.com/icons/pegasus?style=light /// fantasy, horse, unicorn, wings - static const IconData lightPegasus = IconDataLight(0xf703); + static const IconData lightPegasus = IconData(0xf703, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pegasus icon /// /// https://fontawesome.com/icons/pegasus?style=thin /// fantasy, horse, unicorn, wings - static const IconData thinPegasus = IconDataThin(0xf703); + static const IconData thinPegasus = IconData(0xf703, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen icon /// /// https://fontawesome.com/icons/pen?style=solid /// ballpoint, design, edit, modify, pen, update, write - static const IconData solidPen = IconDataSolid(0xf304); + static const IconData solidPen = IconData(0xf304, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen icon /// /// https://fontawesome.com/icons/pen?style=regular /// ballpoint, design, edit, modify, pen, update, write - static const IconData pen = IconDataRegular(0xf304); + static const IconData pen = IconData(0xf304, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen icon /// /// https://fontawesome.com/icons/pen?style=light /// ballpoint, design, edit, modify, pen, update, write - static const IconData lightPen = IconDataLight(0xf304); + static const IconData lightPen = IconData(0xf304, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen icon /// /// https://fontawesome.com/icons/pen?style=thin /// ballpoint, design, edit, modify, pen, update, write - static const IconData thinPen = IconDataThin(0xf304); + static const IconData thinPen = IconData(0xf304, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Circle icon /// /// https://fontawesome.com/icons/pen-circle?style=solid /// draw, edit, modify, pencil, write - static const IconData solidPenCircle = IconDataSolid(0xe20e); + static const IconData solidPenCircle = IconData(0xe20e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Circle icon /// /// https://fontawesome.com/icons/pen-circle?style=regular /// draw, edit, modify, pencil, write - static const IconData penCircle = IconDataRegular(0xe20e); + static const IconData penCircle = IconData(0xe20e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Circle icon /// /// https://fontawesome.com/icons/pen-circle?style=light /// draw, edit, modify, pencil, write - static const IconData lightPenCircle = IconDataLight(0xe20e); + static const IconData lightPenCircle = IconData(0xe20e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Circle icon /// /// https://fontawesome.com/icons/pen-circle?style=thin /// draw, edit, modify, pencil, write - static const IconData thinPenCircle = IconDataThin(0xe20e); + static const IconData thinPenCircle = IconData(0xe20e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Clip icon /// /// https://fontawesome.com/icons/pen-clip?style=solid /// design, edit, modify, update, write - static const IconData solidPenClip = IconDataSolid(0xf305); + static const IconData solidPenClip = IconData(0xf305, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt for icon [solidPenClip] @Deprecated('Use "solidPenClip" instead.') @@ -63653,7 +63653,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip?style=regular /// design, edit, modify, update, write - static const IconData penClip = IconDataRegular(0xf305); + static const IconData penClip = IconData(0xf305, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt for icon [penClip] @Deprecated('Use "penClip" instead.') @@ -63663,7 +63663,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip?style=light /// design, edit, modify, update, write - static const IconData lightPenClip = IconDataLight(0xf305); + static const IconData lightPenClip = IconData(0xf305, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt for icon [lightPenClip] @Deprecated('Use "lightPenClip" instead.') @@ -63673,7 +63673,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip?style=thin /// design, edit, modify, update, write - static const IconData thinPenClip = IconDataThin(0xf305); + static const IconData thinPenClip = IconData(0xf305, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt for icon [thinPenClip] @Deprecated('Use "thinPenClip" instead.') @@ -63683,7 +63683,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip-slash?style=solid /// disabled, modify, remove, style - static const IconData solidPenClipSlash = IconDataSolid(0xe20f); + static const IconData solidPenClipSlash = IconData(0xe20f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt-slash for icon [solidPenClipSlash] @Deprecated('Use "solidPenClipSlash" instead.') @@ -63693,7 +63693,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip-slash?style=regular /// disabled, modify, remove, style - static const IconData penClipSlash = IconDataRegular(0xe20f); + static const IconData penClipSlash = IconData(0xe20f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt-slash for icon [penClipSlash] @Deprecated('Use "penClipSlash" instead.') @@ -63703,7 +63703,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip-slash?style=light /// disabled, modify, remove, style - static const IconData lightPenClipSlash = IconDataLight(0xe20f); + static const IconData lightPenClipSlash = IconData(0xe20f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt-slash for icon [lightPenClipSlash] @Deprecated('Use "lightPenClipSlash" instead.') @@ -63713,7 +63713,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-clip-slash?style=thin /// disabled, modify, remove, style - static const IconData thinPenClipSlash = IconDataThin(0xe20f); + static const IconData thinPenClipSlash = IconData(0xe20f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pen-alt-slash for icon [thinPenClipSlash] @Deprecated('Use "thinPenClipSlash" instead.') @@ -63723,151 +63723,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-fancy?style=solid /// black nib, design, edit, fountain, fountain pen, modify, nib, pen, update, write - static const IconData solidPenFancy = IconDataSolid(0xf5ac); + static const IconData solidPenFancy = IconData(0xf5ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Fancy icon /// /// https://fontawesome.com/icons/pen-fancy?style=regular /// black nib, design, edit, fountain, fountain pen, modify, nib, pen, update, write - static const IconData penFancy = IconDataRegular(0xf5ac); + static const IconData penFancy = IconData(0xf5ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Fancy icon /// /// https://fontawesome.com/icons/pen-fancy?style=light /// black nib, design, edit, fountain, fountain pen, modify, nib, pen, update, write - static const IconData lightPenFancy = IconDataLight(0xf5ac); + static const IconData lightPenFancy = IconData(0xf5ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Fancy icon /// /// https://fontawesome.com/icons/pen-fancy?style=thin /// black nib, design, edit, fountain, fountain pen, modify, nib, pen, update, write - static const IconData thinPenFancy = IconDataThin(0xf5ac); + static const IconData thinPenFancy = IconData(0xf5ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Fancy Slash icon /// /// https://fontawesome.com/icons/pen-fancy-slash?style=solid /// disabled, modify, remove, style - static const IconData solidPenFancySlash = IconDataSolid(0xe210); + static const IconData solidPenFancySlash = IconData(0xe210, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Fancy Slash icon /// /// https://fontawesome.com/icons/pen-fancy-slash?style=regular /// disabled, modify, remove, style - static const IconData penFancySlash = IconDataRegular(0xe210); + static const IconData penFancySlash = IconData(0xe210, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Fancy Slash icon /// /// https://fontawesome.com/icons/pen-fancy-slash?style=light /// disabled, modify, remove, style - static const IconData lightPenFancySlash = IconDataLight(0xe210); + static const IconData lightPenFancySlash = IconData(0xe210, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Fancy Slash icon /// /// https://fontawesome.com/icons/pen-fancy-slash?style=thin /// disabled, modify, remove, style - static const IconData thinPenFancySlash = IconDataThin(0xe210); + static const IconData thinPenFancySlash = IconData(0xe210, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Field icon /// /// https://fontawesome.com/icons/pen-field?style=solid /// imput, modify, signature, username - static const IconData solidPenField = IconDataSolid(0xe211); + static const IconData solidPenField = IconData(0xe211, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Field icon /// /// https://fontawesome.com/icons/pen-field?style=regular /// imput, modify, signature, username - static const IconData penField = IconDataRegular(0xe211); + static const IconData penField = IconData(0xe211, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Field icon /// /// https://fontawesome.com/icons/pen-field?style=light /// imput, modify, signature, username - static const IconData lightPenField = IconDataLight(0xe211); + static const IconData lightPenField = IconData(0xe211, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Field icon /// /// https://fontawesome.com/icons/pen-field?style=thin /// imput, modify, signature, username - static const IconData thinPenField = IconDataThin(0xe211); + static const IconData thinPenField = IconData(0xe211, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Line icon /// /// https://fontawesome.com/icons/pen-line?style=solid /// draw, modify, write - static const IconData solidPenLine = IconDataSolid(0xe212); + static const IconData solidPenLine = IconData(0xe212, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Line icon /// /// https://fontawesome.com/icons/pen-line?style=regular /// draw, modify, write - static const IconData penLine = IconDataRegular(0xe212); + static const IconData penLine = IconData(0xe212, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Line icon /// /// https://fontawesome.com/icons/pen-line?style=light /// draw, modify, write - static const IconData lightPenLine = IconDataLight(0xe212); + static const IconData lightPenLine = IconData(0xe212, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Line icon /// /// https://fontawesome.com/icons/pen-line?style=thin /// draw, modify, write - static const IconData thinPenLine = IconDataThin(0xe212); + static const IconData thinPenLine = IconData(0xe212, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Nib icon /// /// https://fontawesome.com/icons/pen-nib?style=solid /// design, edit, fountain pen, modify, update, write - static const IconData solidPenNib = IconDataSolid(0xf5ad); + static const IconData solidPenNib = IconData(0xf5ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Nib icon /// /// https://fontawesome.com/icons/pen-nib?style=regular /// design, edit, fountain pen, modify, update, write - static const IconData penNib = IconDataRegular(0xf5ad); + static const IconData penNib = IconData(0xf5ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Nib icon /// /// https://fontawesome.com/icons/pen-nib?style=light /// design, edit, fountain pen, modify, update, write - static const IconData lightPenNib = IconDataLight(0xf5ad); + static const IconData lightPenNib = IconData(0xf5ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Nib icon /// /// https://fontawesome.com/icons/pen-nib?style=thin /// design, edit, fountain pen, modify, update, write - static const IconData thinPenNib = IconDataThin(0xf5ad); + static const IconData thinPenNib = IconData(0xf5ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Nib Slash icon /// /// https://fontawesome.com/icons/pen-nib-slash?style=solid /// design, disabled, edit, fountain pen, modify, update, write - static const IconData solidPenNibSlash = IconDataSolid(0xe4a1); + static const IconData solidPenNibSlash = IconData(0xe4a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Nib Slash icon /// /// https://fontawesome.com/icons/pen-nib-slash?style=regular /// design, disabled, edit, fountain pen, modify, update, write - static const IconData penNibSlash = IconDataRegular(0xe4a1); + static const IconData penNibSlash = IconData(0xe4a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Nib Slash icon /// /// https://fontawesome.com/icons/pen-nib-slash?style=light /// design, disabled, edit, fountain pen, modify, update, write - static const IconData lightPenNibSlash = IconDataLight(0xe4a1); + static const IconData lightPenNibSlash = IconData(0xe4a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Nib Slash icon /// /// https://fontawesome.com/icons/pen-nib-slash?style=thin /// design, disabled, edit, fountain pen, modify, update, write - static const IconData thinPenNibSlash = IconDataThin(0xe4a1); + static const IconData thinPenNibSlash = IconData(0xe4a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Paintbrush icon /// /// https://fontawesome.com/icons/pen-paintbrush?style=solid /// art, design, modify, paint, pencil, write - static const IconData solidPenPaintbrush = IconDataSolid(0xf618); + static const IconData solidPenPaintbrush = IconData(0xf618, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pencil-paintbrush for icon [solidPenPaintbrush] @Deprecated('Use "solidPenPaintbrush" instead.') @@ -63877,7 +63877,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-paintbrush?style=regular /// art, design, modify, paint, pencil, write - static const IconData penPaintbrush = IconDataRegular(0xf618); + static const IconData penPaintbrush = IconData(0xf618, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pencil-paintbrush for icon [penPaintbrush] @Deprecated('Use "penPaintbrush" instead.') @@ -63887,7 +63887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-paintbrush?style=light /// art, design, modify, paint, pencil, write - static const IconData lightPenPaintbrush = IconDataLight(0xf618); + static const IconData lightPenPaintbrush = IconData(0xf618, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pencil-paintbrush for icon [lightPenPaintbrush] @Deprecated('Use "lightPenPaintbrush" instead.') @@ -63897,7 +63897,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-paintbrush?style=thin /// art, design, modify, paint, pencil, write - static const IconData thinPenPaintbrush = IconDataThin(0xf618); + static const IconData thinPenPaintbrush = IconData(0xf618, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pencil-paintbrush for icon [thinPenPaintbrush] @Deprecated('Use "thinPenPaintbrush" instead.') @@ -63907,7 +63907,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-ruler?style=solid /// design, draft, draw, maintenance, modify, pencil - static const IconData solidPenRuler = IconDataSolid(0xf5ae); + static const IconData solidPenRuler = IconData(0xf5ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pencil-ruler for icon [solidPenRuler] @Deprecated('Use "solidPenRuler" instead.') @@ -63917,7 +63917,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-ruler?style=regular /// design, draft, draw, maintenance, modify, pencil - static const IconData penRuler = IconDataRegular(0xf5ae); + static const IconData penRuler = IconData(0xf5ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pencil-ruler for icon [penRuler] @Deprecated('Use "penRuler" instead.') @@ -63927,7 +63927,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-ruler?style=light /// design, draft, draw, maintenance, modify, pencil - static const IconData lightPenRuler = IconDataLight(0xf5ae); + static const IconData lightPenRuler = IconData(0xf5ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pencil-ruler for icon [lightPenRuler] @Deprecated('Use "lightPenRuler" instead.') @@ -63937,7 +63937,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-ruler?style=thin /// design, draft, draw, maintenance, modify, pencil - static const IconData thinPenRuler = IconDataThin(0xf5ae); + static const IconData thinPenRuler = IconData(0xf5ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pencil-ruler for icon [thinPenRuler] @Deprecated('Use "thinPenRuler" instead.') @@ -63947,55 +63947,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-slash?style=solid /// disabled, modify, remove, style - static const IconData solidPenSlash = IconDataSolid(0xe213); + static const IconData solidPenSlash = IconData(0xe213, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Slash icon /// /// https://fontawesome.com/icons/pen-slash?style=regular /// disabled, modify, remove, style - static const IconData penSlash = IconDataRegular(0xe213); + static const IconData penSlash = IconData(0xe213, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Slash icon /// /// https://fontawesome.com/icons/pen-slash?style=light /// disabled, modify, remove, style - static const IconData lightPenSlash = IconDataLight(0xe213); + static const IconData lightPenSlash = IconData(0xe213, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Slash icon /// /// https://fontawesome.com/icons/pen-slash?style=thin /// disabled, modify, remove, style - static const IconData thinPenSlash = IconDataThin(0xe213); + static const IconData thinPenSlash = IconData(0xe213, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen Swirl icon /// /// https://fontawesome.com/icons/pen-swirl?style=solid /// draw, modify, scribble, stylus - static const IconData solidPenSwirl = IconDataSolid(0xe214); + static const IconData solidPenSwirl = IconData(0xe214, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pen Swirl icon /// /// https://fontawesome.com/icons/pen-swirl?style=regular /// draw, modify, scribble, stylus - static const IconData penSwirl = IconDataRegular(0xe214); + static const IconData penSwirl = IconData(0xe214, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pen Swirl icon /// /// https://fontawesome.com/icons/pen-swirl?style=light /// draw, modify, scribble, stylus - static const IconData lightPenSwirl = IconDataLight(0xe214); + static const IconData lightPenSwirl = IconData(0xe214, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pen Swirl icon /// /// https://fontawesome.com/icons/pen-swirl?style=thin /// draw, modify, scribble, stylus - static const IconData thinPenSwirl = IconDataThin(0xe214); + static const IconData thinPenSwirl = IconData(0xe214, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pen To Square icon /// /// https://fontawesome.com/icons/pen-to-square?style=solid /// edit, modify, pen, pencil, update, write - static const IconData solidPenToSquare = IconDataSolid(0xf044); + static const IconData solidPenToSquare = IconData(0xf044, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias edit for icon [solidPenToSquare] @Deprecated('Use "solidPenToSquare" instead.') @@ -64005,7 +64005,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-to-square?style=regular /// edit, modify, pen, pencil, update, write - static const IconData penToSquare = IconDataRegular(0xf044); + static const IconData penToSquare = IconData(0xf044, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias edit for icon [penToSquare] @Deprecated('Use "penToSquare" instead.') @@ -64015,7 +64015,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-to-square?style=light /// edit, modify, pen, pencil, update, write - static const IconData lightPenToSquare = IconDataLight(0xf044); + static const IconData lightPenToSquare = IconData(0xf044, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias edit for icon [lightPenToSquare] @Deprecated('Use "lightPenToSquare" instead.') @@ -64025,7 +64025,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pen-to-square?style=thin /// edit, modify, pen, pencil, update, write - static const IconData thinPenToSquare = IconDataThin(0xf044); + static const IconData thinPenToSquare = IconData(0xf044, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias edit for icon [thinPenToSquare] @Deprecated('Use "thinPenToSquare" instead.') @@ -64035,7 +64035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pencil?style=solid /// Lower Left Pencil, design, draw, edit, lead, maintenance, modify, pencil, update, write - static const IconData solidPencil = IconDataSolid(0xf303); + static const IconData solidPencil = IconData(0xf303, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pencil-alt for icon [solidPencil] @Deprecated('Use "solidPencil" instead.') @@ -64045,7 +64045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pencil?style=regular /// Lower Left Pencil, design, draw, edit, lead, maintenance, modify, pencil, update, write - static const IconData pencil = IconDataRegular(0xf303); + static const IconData pencil = IconData(0xf303, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pencil-alt for icon [pencil] @Deprecated('Use "pencil" instead.') @@ -64055,7 +64055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pencil?style=light /// Lower Left Pencil, design, draw, edit, lead, maintenance, modify, pencil, update, write - static const IconData lightPencil = IconDataLight(0xf303); + static const IconData lightPencil = IconData(0xf303, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pencil-alt for icon [lightPencil] @Deprecated('Use "lightPencil" instead.') @@ -64065,7 +64065,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pencil?style=thin /// Lower Left Pencil, design, draw, edit, lead, maintenance, modify, pencil, update, write - static const IconData thinPencil = IconDataThin(0xf303); + static const IconData thinPencil = IconData(0xf303, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pencil-alt for icon [thinPencil] @Deprecated('Use "thinPencil" instead.') @@ -64075,79 +64075,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pencil-mechanical?style=solid /// draw, edit, eraser, graphite, lead, pencil, stylus, write - static const IconData solidPencilMechanical = IconDataSolid(0xe5ca); + static const IconData solidPencilMechanical = IconData(0xe5ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pencil Mechanical icon /// /// https://fontawesome.com/icons/pencil-mechanical?style=regular /// draw, edit, eraser, graphite, lead, pencil, stylus, write - static const IconData pencilMechanical = IconDataRegular(0xe5ca); + static const IconData pencilMechanical = IconData(0xe5ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pencil Mechanical icon /// /// https://fontawesome.com/icons/pencil-mechanical?style=light /// draw, edit, eraser, graphite, lead, pencil, stylus, write - static const IconData lightPencilMechanical = IconDataLight(0xe5ca); + static const IconData lightPencilMechanical = IconData(0xe5ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pencil Mechanical icon /// /// https://fontawesome.com/icons/pencil-mechanical?style=thin /// draw, edit, eraser, graphite, lead, pencil, stylus, write - static const IconData thinPencilMechanical = IconDataThin(0xe5ca); + static const IconData thinPencilMechanical = IconData(0xe5ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pencil Slash icon /// /// https://fontawesome.com/icons/pencil-slash?style=solid /// disabled, modify, remove, style - static const IconData solidPencilSlash = IconDataSolid(0xe215); + static const IconData solidPencilSlash = IconData(0xe215, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pencil Slash icon /// /// https://fontawesome.com/icons/pencil-slash?style=regular /// disabled, modify, remove, style - static const IconData pencilSlash = IconDataRegular(0xe215); + static const IconData pencilSlash = IconData(0xe215, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pencil Slash icon /// /// https://fontawesome.com/icons/pencil-slash?style=light /// disabled, modify, remove, style - static const IconData lightPencilSlash = IconDataLight(0xe215); + static const IconData lightPencilSlash = IconData(0xe215, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pencil Slash icon /// /// https://fontawesome.com/icons/pencil-slash?style=thin /// disabled, modify, remove, style - static const IconData thinPencilSlash = IconDataThin(0xe215); + static const IconData thinPencilSlash = IconData(0xe215, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People icon /// /// https://fontawesome.com/icons/people?style=solid /// couple, hand, hold, holding hands, man, together, uer, users-people, woman, woman and man holding hands - static const IconData solidPeople = IconDataSolid(0xe216); + static const IconData solidPeople = IconData(0xe216, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People icon /// /// https://fontawesome.com/icons/people?style=regular /// couple, hand, hold, holding hands, man, together, uer, users-people, woman, woman and man holding hands - static const IconData people = IconDataRegular(0xe216); + static const IconData people = IconData(0xe216, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People icon /// /// https://fontawesome.com/icons/people?style=light /// couple, hand, hold, holding hands, man, together, uer, users-people, woman, woman and man holding hands - static const IconData lightPeople = IconDataLight(0xe216); + static const IconData lightPeople = IconData(0xe216, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People icon /// /// https://fontawesome.com/icons/people?style=thin /// couple, hand, hold, holding hands, man, together, uer, users-people, woman, woman and man holding hands - static const IconData thinPeople = IconDataThin(0xe216); + static const IconData thinPeople = IconData(0xe216, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Arrows icon /// /// https://fontawesome.com/icons/people-arrows?style=solid /// conversation, discussion, talking, distance, insert, isolation, separate, social distancing, talk, together, uer, users-people - static const IconData solidPeopleArrows = IconDataSolid(0xe068); + static const IconData solidPeopleArrows = IconData(0xe068, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias people-arrows-left-right for icon [solidPeopleArrows] @Deprecated('Use "solidPeopleArrows" instead.') @@ -64157,7 +64157,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-arrows?style=regular /// conversation, discussion, talking, distance, insert, isolation, separate, social distancing, talk, together, uer, users-people - static const IconData peopleArrows = IconDataRegular(0xe068); + static const IconData peopleArrows = IconData(0xe068, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias people-arrows-left-right for icon [peopleArrows] @Deprecated('Use "peopleArrows" instead.') @@ -64167,7 +64167,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-arrows?style=light /// conversation, discussion, talking, distance, insert, isolation, separate, social distancing, talk, together, uer, users-people - static const IconData lightPeopleArrows = IconDataLight(0xe068); + static const IconData lightPeopleArrows = IconData(0xe068, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias people-arrows-left-right for icon [lightPeopleArrows] @Deprecated('Use "lightPeopleArrows" instead.') @@ -64177,7 +64177,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-arrows?style=thin /// conversation, discussion, talking, distance, insert, isolation, separate, social distancing, talk, together, uer, users-people - static const IconData thinPeopleArrows = IconDataThin(0xe068); + static const IconData thinPeopleArrows = IconData(0xe068, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias people-arrows-left-right for icon [thinPeopleArrows] @Deprecated('Use "thinPeopleArrows" instead.') @@ -64187,7 +64187,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-carry-box?style=solid /// together, uer, users-people - static const IconData solidPeopleCarryBox = IconDataSolid(0xf4ce); + static const IconData solidPeopleCarryBox = IconData(0xf4ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias people-carry for icon [solidPeopleCarryBox] @Deprecated('Use "solidPeopleCarryBox" instead.') @@ -64197,7 +64197,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-carry-box?style=regular /// together, uer, users-people - static const IconData peopleCarryBox = IconDataRegular(0xf4ce); + static const IconData peopleCarryBox = IconData(0xf4ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias people-carry for icon [peopleCarryBox] @Deprecated('Use "peopleCarryBox" instead.') @@ -64207,7 +64207,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-carry-box?style=light /// together, uer, users-people - static const IconData lightPeopleCarryBox = IconDataLight(0xf4ce); + static const IconData lightPeopleCarryBox = IconData(0xf4ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias people-carry for icon [lightPeopleCarryBox] @Deprecated('Use "lightPeopleCarryBox" instead.') @@ -64217,7 +64217,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-carry-box?style=thin /// together, uer, users-people - static const IconData thinPeopleCarryBox = IconDataThin(0xf4ce); + static const IconData thinPeopleCarryBox = IconData(0xf4ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias people-carry for icon [thinPeopleCarryBox] @Deprecated('Use "thinPeopleCarryBox" instead.') @@ -64227,300 +64227,300 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/people-dress?style=solid /// couple, hand, holding hands, together, uer, users-people, women, women holding hands - static const IconData solidPeopleDress = IconDataSolid(0xe217); + static const IconData solidPeopleDress = IconData(0xe217, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Dress icon /// /// https://fontawesome.com/icons/people-dress?style=regular /// couple, hand, holding hands, together, uer, users-people, women, women holding hands - static const IconData peopleDress = IconDataRegular(0xe217); + static const IconData peopleDress = IconData(0xe217, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Dress icon /// /// https://fontawesome.com/icons/people-dress?style=light /// couple, hand, holding hands, together, uer, users-people, women, women holding hands - static const IconData lightPeopleDress = IconDataLight(0xe217); + static const IconData lightPeopleDress = IconData(0xe217, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Dress icon /// /// https://fontawesome.com/icons/people-dress?style=thin /// couple, hand, holding hands, together, uer, users-people, women, women holding hands - static const IconData thinPeopleDress = IconDataThin(0xe217); + static const IconData thinPeopleDress = IconData(0xe217, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Dress Simple icon /// /// https://fontawesome.com/icons/people-dress-simple?style=solid /// together, uer, users-people - static const IconData solidPeopleDressSimple = IconDataSolid(0xe218); + static const IconData solidPeopleDressSimple = IconData(0xe218, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Dress Simple icon /// /// https://fontawesome.com/icons/people-dress-simple?style=regular /// together, uer, users-people - static const IconData peopleDressSimple = IconDataRegular(0xe218); + static const IconData peopleDressSimple = IconData(0xe218, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Dress Simple icon /// /// https://fontawesome.com/icons/people-dress-simple?style=light /// together, uer, users-people - static const IconData lightPeopleDressSimple = IconDataLight(0xe218); + static const IconData lightPeopleDressSimple = IconData(0xe218, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Dress Simple icon /// /// https://fontawesome.com/icons/people-dress-simple?style=thin /// together, uer, users-people - static const IconData thinPeopleDressSimple = IconDataThin(0xe218); + static const IconData thinPeopleDressSimple = IconData(0xe218, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Group icon /// /// https://fontawesome.com/icons/people-group?style=solid /// crowd, family, group, team, together, uer - static const IconData solidPeopleGroup = IconDataSolid(0xe533); + static const IconData solidPeopleGroup = IconData(0xe533, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Group icon /// /// https://fontawesome.com/icons/people-group?style=regular /// crowd, family, group, team, together, uer - static const IconData peopleGroup = IconDataRegular(0xe533); + static const IconData peopleGroup = IconData(0xe533, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Group icon /// /// https://fontawesome.com/icons/people-group?style=light /// crowd, family, group, team, together, uer - static const IconData lightPeopleGroup = IconDataLight(0xe533); + static const IconData lightPeopleGroup = IconData(0xe533, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Group icon /// /// https://fontawesome.com/icons/people-group?style=thin /// crowd, family, group, team, together, uer - static const IconData thinPeopleGroup = IconDataThin(0xe533); + static const IconData thinPeopleGroup = IconData(0xe533, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Line icon /// /// https://fontawesome.com/icons/people-line?style=solid /// crowd, group, need, together, uer - static const IconData solidPeopleLine = IconDataSolid(0xe534); + static const IconData solidPeopleLine = IconData(0xe534, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Line icon /// /// https://fontawesome.com/icons/people-line?style=regular /// crowd, group, need, together, uer - static const IconData peopleLine = IconDataRegular(0xe534); + static const IconData peopleLine = IconData(0xe534, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Line icon /// /// https://fontawesome.com/icons/people-line?style=light /// crowd, group, need, together, uer - static const IconData lightPeopleLine = IconDataLight(0xe534); + static const IconData lightPeopleLine = IconData(0xe534, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Line icon /// /// https://fontawesome.com/icons/people-line?style=thin /// crowd, group, need, together, uer - static const IconData thinPeopleLine = IconDataThin(0xe534); + static const IconData thinPeopleLine = IconData(0xe534, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Pants icon /// /// https://fontawesome.com/icons/people-pants?style=solid /// Gemini, couple, holding hands, man, men, men holding hands, together, twins, uer, users-people, zodiac - static const IconData solidPeoplePants = IconDataSolid(0xe219); + static const IconData solidPeoplePants = IconData(0xe219, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Pants icon /// /// https://fontawesome.com/icons/people-pants?style=regular /// Gemini, couple, holding hands, man, men, men holding hands, together, twins, uer, users-people, zodiac - static const IconData peoplePants = IconDataRegular(0xe219); + static const IconData peoplePants = IconData(0xe219, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Pants icon /// /// https://fontawesome.com/icons/people-pants?style=light /// Gemini, couple, holding hands, man, men, men holding hands, together, twins, uer, users-people, zodiac - static const IconData lightPeoplePants = IconDataLight(0xe219); + static const IconData lightPeoplePants = IconData(0xe219, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Pants icon /// /// https://fontawesome.com/icons/people-pants?style=thin /// Gemini, couple, holding hands, man, men, men holding hands, together, twins, uer, users-people, zodiac - static const IconData thinPeoplePants = IconDataThin(0xe219); + static const IconData thinPeoplePants = IconData(0xe219, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Pants Simple icon /// /// https://fontawesome.com/icons/people-pants-simple?style=solid /// together, uer, users-people - static const IconData solidPeoplePantsSimple = IconDataSolid(0xe21a); + static const IconData solidPeoplePantsSimple = IconData(0xe21a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Pants Simple icon /// /// https://fontawesome.com/icons/people-pants-simple?style=regular /// together, uer, users-people - static const IconData peoplePantsSimple = IconDataRegular(0xe21a); + static const IconData peoplePantsSimple = IconData(0xe21a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Pants Simple icon /// /// https://fontawesome.com/icons/people-pants-simple?style=light /// together, uer, users-people - static const IconData lightPeoplePantsSimple = IconDataLight(0xe21a); + static const IconData lightPeoplePantsSimple = IconData(0xe21a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Pants Simple icon /// /// https://fontawesome.com/icons/people-pants-simple?style=thin /// together, uer, users-people - static const IconData thinPeoplePantsSimple = IconDataThin(0xe21a); + static const IconData thinPeoplePantsSimple = IconData(0xe21a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Pulling icon /// /// https://fontawesome.com/icons/people-pulling?style=solid /// forced return, together, uer, yanking - static const IconData solidPeoplePulling = IconDataSolid(0xe535); + static const IconData solidPeoplePulling = IconData(0xe535, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Pulling icon /// /// https://fontawesome.com/icons/people-pulling?style=regular /// forced return, together, uer, yanking - static const IconData peoplePulling = IconDataRegular(0xe535); + static const IconData peoplePulling = IconData(0xe535, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Pulling icon /// /// https://fontawesome.com/icons/people-pulling?style=light /// forced return, together, uer, yanking - static const IconData lightPeoplePulling = IconDataLight(0xe535); + static const IconData lightPeoplePulling = IconData(0xe535, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Pulling icon /// /// https://fontawesome.com/icons/people-pulling?style=thin /// forced return, together, uer, yanking - static const IconData thinPeoplePulling = IconDataThin(0xe535); + static const IconData thinPeoplePulling = IconData(0xe535, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Robbery icon /// /// https://fontawesome.com/icons/people-robbery?style=solid /// criminal, hands up, looting, robbery, steal, uer - static const IconData solidPeopleRobbery = IconDataSolid(0xe536); + static const IconData solidPeopleRobbery = IconData(0xe536, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Robbery icon /// /// https://fontawesome.com/icons/people-robbery?style=regular /// criminal, hands up, looting, robbery, steal, uer - static const IconData peopleRobbery = IconDataRegular(0xe536); + static const IconData peopleRobbery = IconData(0xe536, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Robbery icon /// /// https://fontawesome.com/icons/people-robbery?style=light /// criminal, hands up, looting, robbery, steal, uer - static const IconData lightPeopleRobbery = IconDataLight(0xe536); + static const IconData lightPeopleRobbery = IconData(0xe536, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Robbery icon /// /// https://fontawesome.com/icons/people-robbery?style=thin /// criminal, hands up, looting, robbery, steal, uer - static const IconData thinPeopleRobbery = IconDataThin(0xe536); + static const IconData thinPeopleRobbery = IconData(0xe536, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Roof icon /// /// https://fontawesome.com/icons/people-roof?style=solid /// crowd, family, group, manage, people, safe, shelter, together, uer - static const IconData solidPeopleRoof = IconDataSolid(0xe537); + static const IconData solidPeopleRoof = IconData(0xe537, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Roof icon /// /// https://fontawesome.com/icons/people-roof?style=regular /// crowd, family, group, manage, people, safe, shelter, together, uer - static const IconData peopleRoof = IconDataRegular(0xe537); + static const IconData peopleRoof = IconData(0xe537, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Roof icon /// /// https://fontawesome.com/icons/people-roof?style=light /// crowd, family, group, manage, people, safe, shelter, together, uer - static const IconData lightPeopleRoof = IconDataLight(0xe537); + static const IconData lightPeopleRoof = IconData(0xe537, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Roof icon /// /// https://fontawesome.com/icons/people-roof?style=thin /// crowd, family, group, manage, people, safe, shelter, together, uer - static const IconData thinPeopleRoof = IconDataThin(0xe537); + static const IconData thinPeopleRoof = IconData(0xe537, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid People Simple icon /// /// https://fontawesome.com/icons/people-simple?style=solid /// together, uer, users-people - static const IconData solidPeopleSimple = IconDataSolid(0xe21b); + static const IconData solidPeopleSimple = IconData(0xe21b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular People Simple icon /// /// https://fontawesome.com/icons/people-simple?style=regular /// together, uer, users-people - static const IconData peopleSimple = IconDataRegular(0xe21b); + static const IconData peopleSimple = IconData(0xe21b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light People Simple icon /// /// https://fontawesome.com/icons/people-simple?style=light /// together, uer, users-people - static const IconData lightPeopleSimple = IconDataLight(0xe21b); + static const IconData lightPeopleSimple = IconData(0xe21b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin People Simple icon /// /// https://fontawesome.com/icons/people-simple?style=thin /// together, uer, users-people - static const IconData thinPeopleSimple = IconDataThin(0xe21b); + static const IconData thinPeopleSimple = IconData(0xe21b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pepper icon /// /// https://fontawesome.com/icons/pepper?style=solid /// bell pepper, capsicum - static const IconData solidPepper = IconDataSolid(0xe432); + static const IconData solidPepper = IconData(0xe432, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pepper icon /// /// https://fontawesome.com/icons/pepper?style=regular /// bell pepper, capsicum - static const IconData pepper = IconDataRegular(0xe432); + static const IconData pepper = IconData(0xe432, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pepper icon /// /// https://fontawesome.com/icons/pepper?style=light /// bell pepper, capsicum - static const IconData lightPepper = IconDataLight(0xe432); + static const IconData lightPepper = IconData(0xe432, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pepper icon /// /// https://fontawesome.com/icons/pepper?style=thin /// bell pepper, capsicum - static const IconData thinPepper = IconDataThin(0xe432); + static const IconData thinPepper = IconData(0xe432, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pepper Hot icon /// /// https://fontawesome.com/icons/pepper-hot?style=solid /// buffalo wings, capsicum, chili, chilli, habanero, hot, hot pepper, jalapeno, mexican, pepper, spicy, tabasco, vegetable - static const IconData solidPepperHot = IconDataSolid(0xf816); + static const IconData solidPepperHot = IconData(0xf816, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pepper Hot icon /// /// https://fontawesome.com/icons/pepper-hot?style=regular /// buffalo wings, capsicum, chili, chilli, habanero, hot, hot pepper, jalapeno, mexican, pepper, spicy, tabasco, vegetable - static const IconData pepperHot = IconDataRegular(0xf816); + static const IconData pepperHot = IconData(0xf816, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pepper Hot icon /// /// https://fontawesome.com/icons/pepper-hot?style=light /// buffalo wings, capsicum, chili, chilli, habanero, hot, hot pepper, jalapeno, mexican, pepper, spicy, tabasco, vegetable - static const IconData lightPepperHot = IconDataLight(0xf816); + static const IconData lightPepperHot = IconData(0xf816, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pepper Hot icon /// /// https://fontawesome.com/icons/pepper-hot?style=thin /// buffalo wings, capsicum, chili, chilli, habanero, hot, hot pepper, jalapeno, mexican, pepper, spicy, tabasco, vegetable - static const IconData thinPepperHot = IconDataThin(0xf816); + static const IconData thinPepperHot = IconData(0xf816, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands PerByte icon /// /// https://fontawesome.com/icons/perbyte?style=brands - static const IconData perbyte = IconDataBrands(0xe083); + static const IconData perbyte = IconData(0xe083, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Percent icon /// /// https://fontawesome.com/icons/percent?style=solid /// Percent Sign, discount, fraction, proportion, rate, ratio - static const IconData solidPercent = IconDataSolid(0x25); + static const IconData solidPercent = IconData(0x25, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias percentage for icon [solidPercent] @Deprecated('Use "solidPercent" instead.') @@ -64530,7 +64530,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/percent?style=regular /// Percent Sign, discount, fraction, proportion, rate, ratio - static const IconData percent = IconDataRegular(0x25); + static const IconData percent = IconData(0x25, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias percentage for icon [percent] @Deprecated('Use "percent" instead.') @@ -64540,7 +64540,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/percent?style=light /// Percent Sign, discount, fraction, proportion, rate, ratio - static const IconData lightPercent = IconDataLight(0x25); + static const IconData lightPercent = IconData(0x25, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias percentage for icon [lightPercent] @Deprecated('Use "lightPercent" instead.') @@ -64550,7 +64550,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/percent?style=thin /// Percent Sign, discount, fraction, proportion, rate, ratio - static const IconData thinPercent = IconDataThin(0x25); + static const IconData thinPercent = IconData(0x25, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias percentage for icon [thinPercent] @Deprecated('Use "thinPercent" instead.') @@ -64560,36 +64560,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/period?style=solid /// Full Stop, circle, dot, end, stop - static const IconData solidPeriod = IconDataSolid(0x2e); + static const IconData solidPeriod = IconData(0x2e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Period icon /// /// https://fontawesome.com/icons/period?style=regular /// Full Stop, circle, dot, end, stop - static const IconData period = IconDataRegular(0x2e); + static const IconData period = IconData(0x2e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Period icon /// /// https://fontawesome.com/icons/period?style=light /// Full Stop, circle, dot, end, stop - static const IconData lightPeriod = IconDataLight(0x2e); + static const IconData lightPeriod = IconData(0x2e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Period icon /// /// https://fontawesome.com/icons/period?style=thin /// Full Stop, circle, dot, end, stop - static const IconData thinPeriod = IconDataThin(0x2e); + static const IconData thinPeriod = IconData(0x2e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Periscope icon /// /// https://fontawesome.com/icons/periscope?style=brands - static const IconData periscope = IconDataBrands(0xf3da); + static const IconData periscope = IconData(0xf3da, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Person icon /// /// https://fontawesome.com/icons/person?style=solid /// default, man, person standing, stand, standing, uer, woman - static const IconData solidPerson = IconDataSolid(0xf183); + static const IconData solidPerson = IconData(0xf183, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias male for icon [solidPerson] @Deprecated('Use "solidPerson" instead.') @@ -64599,7 +64599,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person?style=regular /// default, man, person standing, stand, standing, uer, woman - static const IconData person = IconDataRegular(0xf183); + static const IconData person = IconData(0xf183, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias male for icon [person] @Deprecated('Use "person" instead.') @@ -64609,7 +64609,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person?style=light /// default, man, person standing, stand, standing, uer, woman - static const IconData lightPerson = IconDataLight(0xf183); + static const IconData lightPerson = IconData(0xf183, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias male for icon [lightPerson] @Deprecated('Use "lightPerson" instead.') @@ -64619,7 +64619,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person?style=thin /// default, man, person standing, stand, standing, uer, woman - static const IconData thinPerson = IconDataThin(0xf183); + static const IconData thinPerson = IconData(0xf183, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias male for icon [thinPerson] @Deprecated('Use "thinPerson" instead.') @@ -64629,55 +64629,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-arrow-down-to-line?style=solid /// ground, indigenous, insert, native, uer - static const IconData solidPersonArrowDownToLine = IconDataSolid(0xe538); + static const IconData solidPersonArrowDownToLine = IconData(0xe538, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Arrow Down To Line icon /// /// https://fontawesome.com/icons/person-arrow-down-to-line?style=regular /// ground, indigenous, insert, native, uer - static const IconData personArrowDownToLine = IconDataRegular(0xe538); + static const IconData personArrowDownToLine = IconData(0xe538, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Arrow Down To Line icon /// /// https://fontawesome.com/icons/person-arrow-down-to-line?style=light /// ground, indigenous, insert, native, uer - static const IconData lightPersonArrowDownToLine = IconDataLight(0xe538); + static const IconData lightPersonArrowDownToLine = IconData(0xe538, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Arrow Down To Line icon /// /// https://fontawesome.com/icons/person-arrow-down-to-line?style=thin /// ground, indigenous, insert, native, uer - static const IconData thinPersonArrowDownToLine = IconDataThin(0xe538); + static const IconData thinPersonArrowDownToLine = IconData(0xe538, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Arrow Up From Line icon /// /// https://fontawesome.com/icons/person-arrow-up-from-line?style=solid /// population, rise, uer, upgrade - static const IconData solidPersonArrowUpFromLine = IconDataSolid(0xe539); + static const IconData solidPersonArrowUpFromLine = IconData(0xe539, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Arrow Up From Line icon /// /// https://fontawesome.com/icons/person-arrow-up-from-line?style=regular /// population, rise, uer, upgrade - static const IconData personArrowUpFromLine = IconDataRegular(0xe539); + static const IconData personArrowUpFromLine = IconData(0xe539, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Arrow Up From Line icon /// /// https://fontawesome.com/icons/person-arrow-up-from-line?style=light /// population, rise, uer, upgrade - static const IconData lightPersonArrowUpFromLine = IconDataLight(0xe539); + static const IconData lightPersonArrowUpFromLine = IconData(0xe539, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Arrow Up From Line icon /// /// https://fontawesome.com/icons/person-arrow-up-from-line?style=thin /// population, rise, uer, upgrade - static const IconData thinPersonArrowUpFromLine = IconDataThin(0xe539); + static const IconData thinPersonArrowUpFromLine = IconData(0xe539, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Biking icon /// /// https://fontawesome.com/icons/person-biking?style=solid /// bicycle, bike, biking, cyclist, pedal, person biking, summer, uer, wheel - static const IconData solidPersonBiking = IconDataSolid(0xf84a); + static const IconData solidPersonBiking = IconData(0xf84a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias biking for icon [solidPersonBiking] @Deprecated('Use "solidPersonBiking" instead.') @@ -64687,7 +64687,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking?style=regular /// bicycle, bike, biking, cyclist, pedal, person biking, summer, uer, wheel - static const IconData personBiking = IconDataRegular(0xf84a); + static const IconData personBiking = IconData(0xf84a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias biking for icon [personBiking] @Deprecated('Use "personBiking" instead.') @@ -64697,7 +64697,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking?style=light /// bicycle, bike, biking, cyclist, pedal, person biking, summer, uer, wheel - static const IconData lightPersonBiking = IconDataLight(0xf84a); + static const IconData lightPersonBiking = IconData(0xf84a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias biking for icon [lightPersonBiking] @Deprecated('Use "lightPersonBiking" instead.') @@ -64707,7 +64707,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking?style=thin /// bicycle, bike, biking, cyclist, pedal, person biking, summer, uer, wheel - static const IconData thinPersonBiking = IconDataThin(0xf84a); + static const IconData thinPersonBiking = IconData(0xf84a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias biking for icon [thinPersonBiking] @Deprecated('Use "thinPersonBiking" instead.') @@ -64717,7 +64717,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking-mountain?style=solid /// bicycle, bicyclist, bike, cyclist, mountain, offroad, pedal, person mountain biking, summer, uer, wheel - static const IconData solidPersonBikingMountain = IconDataSolid(0xf84b); + static const IconData solidPersonBikingMountain = IconData(0xf84b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias biking-mountain for icon [solidPersonBikingMountain] @Deprecated('Use "solidPersonBikingMountain" instead.') @@ -64727,7 +64727,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking-mountain?style=regular /// bicycle, bicyclist, bike, cyclist, mountain, offroad, pedal, person mountain biking, summer, uer, wheel - static const IconData personBikingMountain = IconDataRegular(0xf84b); + static const IconData personBikingMountain = IconData(0xf84b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias biking-mountain for icon [personBikingMountain] @Deprecated('Use "personBikingMountain" instead.') @@ -64737,7 +64737,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking-mountain?style=light /// bicycle, bicyclist, bike, cyclist, mountain, offroad, pedal, person mountain biking, summer, uer, wheel - static const IconData lightPersonBikingMountain = IconDataLight(0xf84b); + static const IconData lightPersonBikingMountain = IconData(0xf84b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias biking-mountain for icon [lightPersonBikingMountain] @Deprecated('Use "lightPersonBikingMountain" instead.') @@ -64747,7 +64747,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-biking-mountain?style=thin /// bicycle, bicyclist, bike, cyclist, mountain, offroad, pedal, person mountain biking, summer, uer, wheel - static const IconData thinPersonBikingMountain = IconDataThin(0xf84b); + static const IconData thinPersonBikingMountain = IconData(0xf84b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias biking-mountain for icon [thinPersonBikingMountain] @Deprecated('Use "thinPersonBikingMountain" instead.') @@ -64757,103 +64757,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-booth?style=solid /// changing room, curtain, uer, vote, voting - static const IconData solidPersonBooth = IconDataSolid(0xf756); + static const IconData solidPersonBooth = IconData(0xf756, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Booth icon /// /// https://fontawesome.com/icons/person-booth?style=regular /// changing room, curtain, uer, vote, voting - static const IconData personBooth = IconDataRegular(0xf756); + static const IconData personBooth = IconData(0xf756, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Booth icon /// /// https://fontawesome.com/icons/person-booth?style=light /// changing room, curtain, uer, vote, voting - static const IconData lightPersonBooth = IconDataLight(0xf756); + static const IconData lightPersonBooth = IconData(0xf756, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Booth icon /// /// https://fontawesome.com/icons/person-booth?style=thin /// changing room, curtain, uer, vote, voting - static const IconData thinPersonBooth = IconDataThin(0xf756); + static const IconData thinPersonBooth = IconData(0xf756, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Breastfeeding icon /// /// https://fontawesome.com/icons/person-breastfeeding?style=solid /// baby, child, infant, mother, nutrition, parent, sustenance, uer - static const IconData solidPersonBreastfeeding = IconDataSolid(0xe53a); + static const IconData solidPersonBreastfeeding = IconData(0xe53a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Breastfeeding icon /// /// https://fontawesome.com/icons/person-breastfeeding?style=regular /// baby, child, infant, mother, nutrition, parent, sustenance, uer - static const IconData personBreastfeeding = IconDataRegular(0xe53a); + static const IconData personBreastfeeding = IconData(0xe53a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Breastfeeding icon /// /// https://fontawesome.com/icons/person-breastfeeding?style=light /// baby, child, infant, mother, nutrition, parent, sustenance, uer - static const IconData lightPersonBreastfeeding = IconDataLight(0xe53a); + static const IconData lightPersonBreastfeeding = IconData(0xe53a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Breastfeeding icon /// /// https://fontawesome.com/icons/person-breastfeeding?style=thin /// baby, child, infant, mother, nutrition, parent, sustenance, uer - static const IconData thinPersonBreastfeeding = IconDataThin(0xe53a); + static const IconData thinPersonBreastfeeding = IconData(0xe53a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Burst icon /// /// https://fontawesome.com/icons/person-burst?style=solid /// abuse, accident, crash, explode, uer, violence - static const IconData solidPersonBurst = IconDataSolid(0xe53b); + static const IconData solidPersonBurst = IconData(0xe53b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Burst icon /// /// https://fontawesome.com/icons/person-burst?style=regular /// abuse, accident, crash, explode, uer, violence - static const IconData personBurst = IconDataRegular(0xe53b); + static const IconData personBurst = IconData(0xe53b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Burst icon /// /// https://fontawesome.com/icons/person-burst?style=light /// abuse, accident, crash, explode, uer, violence - static const IconData lightPersonBurst = IconDataLight(0xe53b); + static const IconData lightPersonBurst = IconData(0xe53b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Burst icon /// /// https://fontawesome.com/icons/person-burst?style=thin /// abuse, accident, crash, explode, uer, violence - static const IconData thinPersonBurst = IconDataThin(0xe53b); + static const IconData thinPersonBurst = IconData(0xe53b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Cane icon /// /// https://fontawesome.com/icons/person-cane?style=solid /// aging, cane, elderly, old, staff, uer - static const IconData solidPersonCane = IconDataSolid(0xe53c); + static const IconData solidPersonCane = IconData(0xe53c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Cane icon /// /// https://fontawesome.com/icons/person-cane?style=regular /// aging, cane, elderly, old, staff, uer - static const IconData personCane = IconDataRegular(0xe53c); + static const IconData personCane = IconData(0xe53c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Cane icon /// /// https://fontawesome.com/icons/person-cane?style=light /// aging, cane, elderly, old, staff, uer - static const IconData lightPersonCane = IconDataLight(0xe53c); + static const IconData lightPersonCane = IconData(0xe53c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Cane icon /// /// https://fontawesome.com/icons/person-cane?style=thin /// aging, cane, elderly, old, staff, uer - static const IconData thinPersonCane = IconDataThin(0xe53c); + static const IconData thinPersonCane = IconData(0xe53c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Carry Box icon /// /// https://fontawesome.com/icons/person-carry-box?style=solid /// deliver, lift, uer - static const IconData solidPersonCarryBox = IconDataSolid(0xf4cf); + static const IconData solidPersonCarryBox = IconData(0xf4cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias person-carry for icon [solidPersonCarryBox] @Deprecated('Use "solidPersonCarryBox" instead.') @@ -64863,7 +64863,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-carry-box?style=regular /// deliver, lift, uer - static const IconData personCarryBox = IconDataRegular(0xf4cf); + static const IconData personCarryBox = IconData(0xf4cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias person-carry for icon [personCarryBox] @Deprecated('Use "personCarryBox" instead.') @@ -64873,7 +64873,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-carry-box?style=light /// deliver, lift, uer - static const IconData lightPersonCarryBox = IconDataLight(0xf4cf); + static const IconData lightPersonCarryBox = IconData(0xf4cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias person-carry for icon [lightPersonCarryBox] @Deprecated('Use "lightPersonCarryBox" instead.') @@ -64883,7 +64883,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-carry-box?style=thin /// deliver, lift, uer - static const IconData thinPersonCarryBox = IconDataThin(0xf4cf); + static const IconData thinPersonCarryBox = IconData(0xf4cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias person-carry for icon [thinPersonCarryBox] @Deprecated('Use "thinPersonCarryBox" instead.') @@ -64893,175 +64893,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-chalkboard?style=solid /// blackboard, instructor, keynote, lesson, presentation, teacher, uer - static const IconData solidPersonChalkboard = IconDataSolid(0xe53d); + static const IconData solidPersonChalkboard = IconData(0xe53d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Chalkboard icon /// /// https://fontawesome.com/icons/person-chalkboard?style=regular /// blackboard, instructor, keynote, lesson, presentation, teacher, uer - static const IconData personChalkboard = IconDataRegular(0xe53d); + static const IconData personChalkboard = IconData(0xe53d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Chalkboard icon /// /// https://fontawesome.com/icons/person-chalkboard?style=light /// blackboard, instructor, keynote, lesson, presentation, teacher, uer - static const IconData lightPersonChalkboard = IconDataLight(0xe53d); + static const IconData lightPersonChalkboard = IconData(0xe53d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Chalkboard icon /// /// https://fontawesome.com/icons/person-chalkboard?style=thin /// blackboard, instructor, keynote, lesson, presentation, teacher, uer - static const IconData thinPersonChalkboard = IconDataThin(0xe53d); + static const IconData thinPersonChalkboard = IconData(0xe53d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Check icon /// /// https://fontawesome.com/icons/person-circle-check?style=solid /// approved, enable, not affected, ok, okay, uer, validate, working - static const IconData solidPersonCircleCheck = IconDataSolid(0xe53e); + static const IconData solidPersonCircleCheck = IconData(0xe53e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Check icon /// /// https://fontawesome.com/icons/person-circle-check?style=regular /// approved, enable, not affected, ok, okay, uer, validate, working - static const IconData personCircleCheck = IconDataRegular(0xe53e); + static const IconData personCircleCheck = IconData(0xe53e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Check icon /// /// https://fontawesome.com/icons/person-circle-check?style=light /// approved, enable, not affected, ok, okay, uer, validate, working - static const IconData lightPersonCircleCheck = IconDataLight(0xe53e); + static const IconData lightPersonCircleCheck = IconData(0xe53e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Check icon /// /// https://fontawesome.com/icons/person-circle-check?style=thin /// approved, enable, not affected, ok, okay, uer, validate, working - static const IconData thinPersonCircleCheck = IconDataThin(0xe53e); + static const IconData thinPersonCircleCheck = IconData(0xe53e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Exclamation icon /// /// https://fontawesome.com/icons/person-circle-exclamation?style=solid /// affected, alert, failed, lost, missing, uer - static const IconData solidPersonCircleExclamation = IconDataSolid(0xe53f); + static const IconData solidPersonCircleExclamation = IconData(0xe53f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Exclamation icon /// /// https://fontawesome.com/icons/person-circle-exclamation?style=regular /// affected, alert, failed, lost, missing, uer - static const IconData personCircleExclamation = IconDataRegular(0xe53f); + static const IconData personCircleExclamation = IconData(0xe53f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Exclamation icon /// /// https://fontawesome.com/icons/person-circle-exclamation?style=light /// affected, alert, failed, lost, missing, uer - static const IconData lightPersonCircleExclamation = IconDataLight(0xe53f); + static const IconData lightPersonCircleExclamation = IconData(0xe53f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Exclamation icon /// /// https://fontawesome.com/icons/person-circle-exclamation?style=thin /// affected, alert, failed, lost, missing, uer - static const IconData thinPersonCircleExclamation = IconDataThin(0xe53f); + static const IconData thinPersonCircleExclamation = IconData(0xe53f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Minus icon /// /// https://fontawesome.com/icons/person-circle-minus?style=solid /// delete, remove, uer - static const IconData solidPersonCircleMinus = IconDataSolid(0xe540); + static const IconData solidPersonCircleMinus = IconData(0xe540, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Minus icon /// /// https://fontawesome.com/icons/person-circle-minus?style=regular /// delete, remove, uer - static const IconData personCircleMinus = IconDataRegular(0xe540); + static const IconData personCircleMinus = IconData(0xe540, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Minus icon /// /// https://fontawesome.com/icons/person-circle-minus?style=light /// delete, remove, uer - static const IconData lightPersonCircleMinus = IconDataLight(0xe540); + static const IconData lightPersonCircleMinus = IconData(0xe540, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Minus icon /// /// https://fontawesome.com/icons/person-circle-minus?style=thin /// delete, remove, uer - static const IconData thinPersonCircleMinus = IconDataThin(0xe540); + static const IconData thinPersonCircleMinus = IconData(0xe540, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Plus icon /// /// https://fontawesome.com/icons/person-circle-plus?style=solid /// add, follow, found, uer - static const IconData solidPersonCirclePlus = IconDataSolid(0xe541); + static const IconData solidPersonCirclePlus = IconData(0xe541, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Plus icon /// /// https://fontawesome.com/icons/person-circle-plus?style=regular /// add, follow, found, uer - static const IconData personCirclePlus = IconDataRegular(0xe541); + static const IconData personCirclePlus = IconData(0xe541, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Plus icon /// /// https://fontawesome.com/icons/person-circle-plus?style=light /// add, follow, found, uer - static const IconData lightPersonCirclePlus = IconDataLight(0xe541); + static const IconData lightPersonCirclePlus = IconData(0xe541, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Plus icon /// /// https://fontawesome.com/icons/person-circle-plus?style=thin /// add, follow, found, uer - static const IconData thinPersonCirclePlus = IconDataThin(0xe541); + static const IconData thinPersonCirclePlus = IconData(0xe541, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Question icon /// /// https://fontawesome.com/icons/person-circle-question?style=solid /// faq, lost, missing, request, uer - static const IconData solidPersonCircleQuestion = IconDataSolid(0xe542); + static const IconData solidPersonCircleQuestion = IconData(0xe542, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Question icon /// /// https://fontawesome.com/icons/person-circle-question?style=regular /// faq, lost, missing, request, uer - static const IconData personCircleQuestion = IconDataRegular(0xe542); + static const IconData personCircleQuestion = IconData(0xe542, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Question icon /// /// https://fontawesome.com/icons/person-circle-question?style=light /// faq, lost, missing, request, uer - static const IconData lightPersonCircleQuestion = IconDataLight(0xe542); + static const IconData lightPersonCircleQuestion = IconData(0xe542, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Question icon /// /// https://fontawesome.com/icons/person-circle-question?style=thin /// faq, lost, missing, request, uer - static const IconData thinPersonCircleQuestion = IconDataThin(0xe542); + static const IconData thinPersonCircleQuestion = IconData(0xe542, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Circle Xmark icon /// /// https://fontawesome.com/icons/person-circle-xmark?style=solid /// dead, removed, uer, uncheck - static const IconData solidPersonCircleXmark = IconDataSolid(0xe543); + static const IconData solidPersonCircleXmark = IconData(0xe543, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Circle Xmark icon /// /// https://fontawesome.com/icons/person-circle-xmark?style=regular /// dead, removed, uer, uncheck - static const IconData personCircleXmark = IconDataRegular(0xe543); + static const IconData personCircleXmark = IconData(0xe543, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Circle Xmark icon /// /// https://fontawesome.com/icons/person-circle-xmark?style=light /// dead, removed, uer, uncheck - static const IconData lightPersonCircleXmark = IconDataLight(0xe543); + static const IconData lightPersonCircleXmark = IconData(0xe543, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Circle Xmark icon /// /// https://fontawesome.com/icons/person-circle-xmark?style=thin /// dead, removed, uer, uncheck - static const IconData thinPersonCircleXmark = IconDataThin(0xe543); + static const IconData thinPersonCircleXmark = IconData(0xe543, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Digging icon /// /// https://fontawesome.com/icons/person-digging?style=solid /// bury, construction, debris, dig, maintenance, men at work, uer - static const IconData solidPersonDigging = IconDataSolid(0xf85e); + static const IconData solidPersonDigging = IconData(0xf85e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias digging for icon [solidPersonDigging] @Deprecated('Use "solidPersonDigging" instead.') @@ -65071,7 +65071,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-digging?style=regular /// bury, construction, debris, dig, maintenance, men at work, uer - static const IconData personDigging = IconDataRegular(0xf85e); + static const IconData personDigging = IconData(0xf85e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias digging for icon [personDigging] @Deprecated('Use "personDigging" instead.') @@ -65081,7 +65081,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-digging?style=light /// bury, construction, debris, dig, maintenance, men at work, uer - static const IconData lightPersonDigging = IconDataLight(0xf85e); + static const IconData lightPersonDigging = IconData(0xf85e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias digging for icon [lightPersonDigging] @Deprecated('Use "lightPersonDigging" instead.') @@ -65091,7 +65091,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-digging?style=thin /// bury, construction, debris, dig, maintenance, men at work, uer - static const IconData thinPersonDigging = IconDataThin(0xf85e); + static const IconData thinPersonDigging = IconData(0xf85e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias digging for icon [thinPersonDigging] @Deprecated('Use "thinPersonDigging" instead.') @@ -65101,55 +65101,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dolly?style=solid /// carry, deliver, transport, uer - static const IconData solidPersonDolly = IconDataSolid(0xf4d0); + static const IconData solidPersonDolly = IconData(0xf4d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Dolly icon /// /// https://fontawesome.com/icons/person-dolly?style=regular /// carry, deliver, transport, uer - static const IconData personDolly = IconDataRegular(0xf4d0); + static const IconData personDolly = IconData(0xf4d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Dolly icon /// /// https://fontawesome.com/icons/person-dolly?style=light /// carry, deliver, transport, uer - static const IconData lightPersonDolly = IconDataLight(0xf4d0); + static const IconData lightPersonDolly = IconData(0xf4d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Dolly icon /// /// https://fontawesome.com/icons/person-dolly?style=thin /// carry, deliver, transport, uer - static const IconData thinPersonDolly = IconDataThin(0xf4d0); + static const IconData thinPersonDolly = IconData(0xf4d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Dolly Empty icon /// /// https://fontawesome.com/icons/person-dolly-empty?style=solid /// carry, deliver, transport, uer - static const IconData solidPersonDollyEmpty = IconDataSolid(0xf4d1); + static const IconData solidPersonDollyEmpty = IconData(0xf4d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Dolly Empty icon /// /// https://fontawesome.com/icons/person-dolly-empty?style=regular /// carry, deliver, transport, uer - static const IconData personDollyEmpty = IconDataRegular(0xf4d1); + static const IconData personDollyEmpty = IconData(0xf4d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Dolly Empty icon /// /// https://fontawesome.com/icons/person-dolly-empty?style=light /// carry, deliver, transport, uer - static const IconData lightPersonDollyEmpty = IconDataLight(0xf4d1); + static const IconData lightPersonDollyEmpty = IconData(0xf4d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Dolly Empty icon /// /// https://fontawesome.com/icons/person-dolly-empty?style=thin /// carry, deliver, transport, uer - static const IconData thinPersonDollyEmpty = IconDataThin(0xf4d1); + static const IconData thinPersonDollyEmpty = IconData(0xf4d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Dots From Line icon /// /// https://fontawesome.com/icons/person-dots-from-line?style=solid /// allergy, diagnosis, uer - static const IconData solidPersonDotsFromLine = IconDataSolid(0xf470); + static const IconData solidPersonDotsFromLine = IconData(0xf470, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias diagnoses for icon [solidPersonDotsFromLine] @Deprecated('Use "solidPersonDotsFromLine" instead.') @@ -65159,7 +65159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dots-from-line?style=regular /// allergy, diagnosis, uer - static const IconData personDotsFromLine = IconDataRegular(0xf470); + static const IconData personDotsFromLine = IconData(0xf470, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias diagnoses for icon [personDotsFromLine] @Deprecated('Use "personDotsFromLine" instead.') @@ -65169,7 +65169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dots-from-line?style=light /// allergy, diagnosis, uer - static const IconData lightPersonDotsFromLine = IconDataLight(0xf470); + static const IconData lightPersonDotsFromLine = IconData(0xf470, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias diagnoses for icon [lightPersonDotsFromLine] @Deprecated('Use "lightPersonDotsFromLine" instead.') @@ -65179,7 +65179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dots-from-line?style=thin /// allergy, diagnosis, uer - static const IconData thinPersonDotsFromLine = IconDataThin(0xf470); + static const IconData thinPersonDotsFromLine = IconData(0xf470, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias diagnoses for icon [thinPersonDotsFromLine] @Deprecated('Use "thinPersonDotsFromLine" instead.') @@ -65189,7 +65189,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dress?style=solid /// man, skirt, uer, woman - static const IconData solidPersonDress = IconDataSolid(0xf182); + static const IconData solidPersonDress = IconData(0xf182, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias female for icon [solidPersonDress] @Deprecated('Use "solidPersonDress" instead.') @@ -65199,7 +65199,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dress?style=regular /// man, skirt, uer, woman - static const IconData personDress = IconDataRegular(0xf182); + static const IconData personDress = IconData(0xf182, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias female for icon [personDress] @Deprecated('Use "personDress" instead.') @@ -65209,7 +65209,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dress?style=light /// man, skirt, uer, woman - static const IconData lightPersonDress = IconDataLight(0xf182); + static const IconData lightPersonDress = IconData(0xf182, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias female for icon [lightPersonDress] @Deprecated('Use "lightPersonDress" instead.') @@ -65219,7 +65219,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dress?style=thin /// man, skirt, uer, woman - static const IconData thinPersonDress = IconDataThin(0xf182); + static const IconData thinPersonDress = IconData(0xf182, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias female for icon [thinPersonDress] @Deprecated('Use "thinPersonDress" instead.') @@ -65229,175 +65229,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-dress-burst?style=solid /// abuse, accident, crash, explode, uer, violence - static const IconData solidPersonDressBurst = IconDataSolid(0xe544); + static const IconData solidPersonDressBurst = IconData(0xe544, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Dress Burst icon /// /// https://fontawesome.com/icons/person-dress-burst?style=regular /// abuse, accident, crash, explode, uer, violence - static const IconData personDressBurst = IconDataRegular(0xe544); + static const IconData personDressBurst = IconData(0xe544, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Dress Burst icon /// /// https://fontawesome.com/icons/person-dress-burst?style=light /// abuse, accident, crash, explode, uer, violence - static const IconData lightPersonDressBurst = IconDataLight(0xe544); + static const IconData lightPersonDressBurst = IconData(0xe544, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Dress Burst icon /// /// https://fontawesome.com/icons/person-dress-burst?style=thin /// abuse, accident, crash, explode, uer, violence - static const IconData thinPersonDressBurst = IconDataThin(0xe544); + static const IconData thinPersonDressBurst = IconData(0xe544, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Dress Fairy icon /// /// https://fontawesome.com/icons/person-dress-fairy?style=solid /// magic, wings, elf, faerie, faery, fairy, fantasy, sprite - static const IconData solidPersonDressFairy = IconDataSolid(0xe607); + static const IconData solidPersonDressFairy = IconData(0xe607, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Dress Fairy icon /// /// https://fontawesome.com/icons/person-dress-fairy?style=regular /// magic, wings, elf, faerie, faery, fairy, fantasy, sprite - static const IconData personDressFairy = IconDataRegular(0xe607); + static const IconData personDressFairy = IconData(0xe607, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Dress Fairy icon /// /// https://fontawesome.com/icons/person-dress-fairy?style=light /// magic, wings, elf, faerie, faery, fairy, fantasy, sprite - static const IconData lightPersonDressFairy = IconDataLight(0xe607); + static const IconData lightPersonDressFairy = IconData(0xe607, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Dress Fairy icon /// /// https://fontawesome.com/icons/person-dress-fairy?style=thin /// magic, wings, elf, faerie, faery, fairy, fantasy, sprite - static const IconData thinPersonDressFairy = IconDataThin(0xe607); + static const IconData thinPersonDressFairy = IconData(0xe607, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Dress Simple icon /// /// https://fontawesome.com/icons/person-dress-simple?style=solid /// lavatory, man, restroom, skirt, uer, wc, woman, women’s room - static const IconData solidPersonDressSimple = IconDataSolid(0xe21c); + static const IconData solidPersonDressSimple = IconData(0xe21c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Dress Simple icon /// /// https://fontawesome.com/icons/person-dress-simple?style=regular /// lavatory, man, restroom, skirt, uer, wc, woman, women’s room - static const IconData personDressSimple = IconDataRegular(0xe21c); + static const IconData personDressSimple = IconData(0xe21c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Dress Simple icon /// /// https://fontawesome.com/icons/person-dress-simple?style=light /// lavatory, man, restroom, skirt, uer, wc, woman, women’s room - static const IconData lightPersonDressSimple = IconDataLight(0xe21c); + static const IconData lightPersonDressSimple = IconData(0xe21c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Dress Simple icon /// /// https://fontawesome.com/icons/person-dress-simple?style=thin /// lavatory, man, restroom, skirt, uer, wc, woman, women’s room - static const IconData thinPersonDressSimple = IconDataThin(0xe21c); + static const IconData thinPersonDressSimple = IconData(0xe21c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Drowning icon /// /// https://fontawesome.com/icons/person-drowning?style=solid /// drown, emergency, swim, uer - static const IconData solidPersonDrowning = IconDataSolid(0xe545); + static const IconData solidPersonDrowning = IconData(0xe545, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Drowning icon /// /// https://fontawesome.com/icons/person-drowning?style=regular /// drown, emergency, swim, uer - static const IconData personDrowning = IconDataRegular(0xe545); + static const IconData personDrowning = IconData(0xe545, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Drowning icon /// /// https://fontawesome.com/icons/person-drowning?style=light /// drown, emergency, swim, uer - static const IconData lightPersonDrowning = IconDataLight(0xe545); + static const IconData lightPersonDrowning = IconData(0xe545, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Drowning icon /// /// https://fontawesome.com/icons/person-drowning?style=thin /// drown, emergency, swim, uer - static const IconData thinPersonDrowning = IconDataThin(0xe545); + static const IconData thinPersonDrowning = IconData(0xe545, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Fairy icon /// /// https://fontawesome.com/icons/person-fairy?style=solid /// magic, wings, elf, faerie, faery, fairy, sprite, fantasy - static const IconData solidPersonFairy = IconDataSolid(0xe608); + static const IconData solidPersonFairy = IconData(0xe608, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Fairy icon /// /// https://fontawesome.com/icons/person-fairy?style=regular /// magic, wings, elf, faerie, faery, fairy, sprite, fantasy - static const IconData personFairy = IconDataRegular(0xe608); + static const IconData personFairy = IconData(0xe608, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Fairy icon /// /// https://fontawesome.com/icons/person-fairy?style=light /// magic, wings, elf, faerie, faery, fairy, sprite, fantasy - static const IconData lightPersonFairy = IconDataLight(0xe608); + static const IconData lightPersonFairy = IconData(0xe608, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Fairy icon /// /// https://fontawesome.com/icons/person-fairy?style=thin /// magic, wings, elf, faerie, faery, fairy, sprite, fantasy - static const IconData thinPersonFairy = IconDataThin(0xe608); + static const IconData thinPersonFairy = IconData(0xe608, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Falling icon /// /// https://fontawesome.com/icons/person-falling?style=solid /// accident, fall, trip, uer - static const IconData solidPersonFalling = IconDataSolid(0xe546); + static const IconData solidPersonFalling = IconData(0xe546, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Falling icon /// /// https://fontawesome.com/icons/person-falling?style=regular /// accident, fall, trip, uer - static const IconData personFalling = IconDataRegular(0xe546); + static const IconData personFalling = IconData(0xe546, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Falling icon /// /// https://fontawesome.com/icons/person-falling?style=light /// accident, fall, trip, uer - static const IconData lightPersonFalling = IconDataLight(0xe546); + static const IconData lightPersonFalling = IconData(0xe546, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Falling icon /// /// https://fontawesome.com/icons/person-falling?style=thin /// accident, fall, trip, uer - static const IconData thinPersonFalling = IconDataThin(0xe546); + static const IconData thinPersonFalling = IconData(0xe546, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Falling Burst icon /// /// https://fontawesome.com/icons/person-falling-burst?style=solid /// accident, crash, death, fall, homicide, murder, uer - static const IconData solidPersonFallingBurst = IconDataSolid(0xe547); + static const IconData solidPersonFallingBurst = IconData(0xe547, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Falling Burst icon /// /// https://fontawesome.com/icons/person-falling-burst?style=regular /// accident, crash, death, fall, homicide, murder, uer - static const IconData personFallingBurst = IconDataRegular(0xe547); + static const IconData personFallingBurst = IconData(0xe547, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Falling Burst icon /// /// https://fontawesome.com/icons/person-falling-burst?style=light /// accident, crash, death, fall, homicide, murder, uer - static const IconData lightPersonFallingBurst = IconDataLight(0xe547); + static const IconData lightPersonFallingBurst = IconData(0xe547, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Falling Burst icon /// /// https://fontawesome.com/icons/person-falling-burst?style=thin /// accident, crash, death, fall, homicide, murder, uer - static const IconData thinPersonFallingBurst = IconDataThin(0xe547); + static const IconData thinPersonFallingBurst = IconData(0xe547, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person From Portal icon /// /// https://fontawesome.com/icons/person-from-portal?style=solid /// portal, run, transport, travel, uer - static const IconData solidPersonFromPortal = IconDataSolid(0xe023); + static const IconData solidPersonFromPortal = IconData(0xe023, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias portal-exit for icon [solidPersonFromPortal] @Deprecated('Use "solidPersonFromPortal" instead.') @@ -65407,7 +65407,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-from-portal?style=regular /// portal, run, transport, travel, uer - static const IconData personFromPortal = IconDataRegular(0xe023); + static const IconData personFromPortal = IconData(0xe023, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias portal-exit for icon [personFromPortal] @Deprecated('Use "personFromPortal" instead.') @@ -65417,7 +65417,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-from-portal?style=light /// portal, run, transport, travel, uer - static const IconData lightPersonFromPortal = IconDataLight(0xe023); + static const IconData lightPersonFromPortal = IconData(0xe023, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias portal-exit for icon [lightPersonFromPortal] @Deprecated('Use "lightPersonFromPortal" instead.') @@ -65427,7 +65427,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-from-portal?style=thin /// portal, run, transport, travel, uer - static const IconData thinPersonFromPortal = IconDataThin(0xe023); + static const IconData thinPersonFromPortal = IconData(0xe023, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias portal-exit for icon [thinPersonFromPortal] @Deprecated('Use "thinPersonFromPortal" instead.') @@ -65437,55 +65437,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-half-dress?style=solid /// gender, man, restroom, transgender, uer, woman - static const IconData solidPersonHalfDress = IconDataSolid(0xe548); + static const IconData solidPersonHalfDress = IconData(0xe548, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Half Dress icon /// /// https://fontawesome.com/icons/person-half-dress?style=regular /// gender, man, restroom, transgender, uer, woman - static const IconData personHalfDress = IconDataRegular(0xe548); + static const IconData personHalfDress = IconData(0xe548, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Half Dress icon /// /// https://fontawesome.com/icons/person-half-dress?style=light /// gender, man, restroom, transgender, uer, woman - static const IconData lightPersonHalfDress = IconDataLight(0xe548); + static const IconData lightPersonHalfDress = IconData(0xe548, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Half Dress icon /// /// https://fontawesome.com/icons/person-half-dress?style=thin /// gender, man, restroom, transgender, uer, woman - static const IconData thinPersonHalfDress = IconDataThin(0xe548); + static const IconData thinPersonHalfDress = IconData(0xe548, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Harassing icon /// /// https://fontawesome.com/icons/person-harassing?style=solid /// abuse, scream, shame, shout, uer, yell - static const IconData solidPersonHarassing = IconDataSolid(0xe549); + static const IconData solidPersonHarassing = IconData(0xe549, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Harassing icon /// /// https://fontawesome.com/icons/person-harassing?style=regular /// abuse, scream, shame, shout, uer, yell - static const IconData personHarassing = IconDataRegular(0xe549); + static const IconData personHarassing = IconData(0xe549, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Harassing icon /// /// https://fontawesome.com/icons/person-harassing?style=light /// abuse, scream, shame, shout, uer, yell - static const IconData lightPersonHarassing = IconDataLight(0xe549); + static const IconData lightPersonHarassing = IconData(0xe549, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Harassing icon /// /// https://fontawesome.com/icons/person-harassing?style=thin /// abuse, scream, shame, shout, uer, yell - static const IconData thinPersonHarassing = IconDataThin(0xe549); + static const IconData thinPersonHarassing = IconData(0xe549, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Hiking icon /// /// https://fontawesome.com/icons/person-hiking?style=solid /// autumn, fall, follow, hike, mountain, outdoors, summer, uer, walk - static const IconData solidPersonHiking = IconDataSolid(0xf6ec); + static const IconData solidPersonHiking = IconData(0xf6ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias hiking for icon [solidPersonHiking] @Deprecated('Use "solidPersonHiking" instead.') @@ -65495,7 +65495,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-hiking?style=regular /// autumn, fall, follow, hike, mountain, outdoors, summer, uer, walk - static const IconData personHiking = IconDataRegular(0xf6ec); + static const IconData personHiking = IconData(0xf6ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias hiking for icon [personHiking] @Deprecated('Use "personHiking" instead.') @@ -65505,7 +65505,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-hiking?style=light /// autumn, fall, follow, hike, mountain, outdoors, summer, uer, walk - static const IconData lightPersonHiking = IconDataLight(0xf6ec); + static const IconData lightPersonHiking = IconData(0xf6ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias hiking for icon [lightPersonHiking] @Deprecated('Use "lightPersonHiking" instead.') @@ -65515,7 +65515,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-hiking?style=thin /// autumn, fall, follow, hike, mountain, outdoors, summer, uer, walk - static const IconData thinPersonHiking = IconDataThin(0xf6ec); + static const IconData thinPersonHiking = IconData(0xf6ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias hiking for icon [thinPersonHiking] @Deprecated('Use "thinPersonHiking" instead.') @@ -65525,103 +65525,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-military-pointing?style=solid /// army, customs, guard, uer - static const IconData solidPersonMilitaryPointing = IconDataSolid(0xe54a); + static const IconData solidPersonMilitaryPointing = IconData(0xe54a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Military Pointing icon /// /// https://fontawesome.com/icons/person-military-pointing?style=regular /// army, customs, guard, uer - static const IconData personMilitaryPointing = IconDataRegular(0xe54a); + static const IconData personMilitaryPointing = IconData(0xe54a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Military Pointing icon /// /// https://fontawesome.com/icons/person-military-pointing?style=light /// army, customs, guard, uer - static const IconData lightPersonMilitaryPointing = IconDataLight(0xe54a); + static const IconData lightPersonMilitaryPointing = IconData(0xe54a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Military Pointing icon /// /// https://fontawesome.com/icons/person-military-pointing?style=thin /// army, customs, guard, uer - static const IconData thinPersonMilitaryPointing = IconDataThin(0xe54a); + static const IconData thinPersonMilitaryPointing = IconData(0xe54a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Military Rifle icon /// /// https://fontawesome.com/icons/person-military-rifle?style=solid /// armed forces, army, military, rifle, uer, war - static const IconData solidPersonMilitaryRifle = IconDataSolid(0xe54b); + static const IconData solidPersonMilitaryRifle = IconData(0xe54b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Military Rifle icon /// /// https://fontawesome.com/icons/person-military-rifle?style=regular /// armed forces, army, military, rifle, uer, war - static const IconData personMilitaryRifle = IconDataRegular(0xe54b); + static const IconData personMilitaryRifle = IconData(0xe54b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Military Rifle icon /// /// https://fontawesome.com/icons/person-military-rifle?style=light /// armed forces, army, military, rifle, uer, war - static const IconData lightPersonMilitaryRifle = IconDataLight(0xe54b); + static const IconData lightPersonMilitaryRifle = IconData(0xe54b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Military Rifle icon /// /// https://fontawesome.com/icons/person-military-rifle?style=thin /// armed forces, army, military, rifle, uer, war - static const IconData thinPersonMilitaryRifle = IconDataThin(0xe54b); + static const IconData thinPersonMilitaryRifle = IconData(0xe54b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Military To Person icon /// /// https://fontawesome.com/icons/person-military-to-person?style=solid /// civilian, coordination, military, uer - static const IconData solidPersonMilitaryToPerson = IconDataSolid(0xe54c); + static const IconData solidPersonMilitaryToPerson = IconData(0xe54c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Military To Person icon /// /// https://fontawesome.com/icons/person-military-to-person?style=regular /// civilian, coordination, military, uer - static const IconData personMilitaryToPerson = IconDataRegular(0xe54c); + static const IconData personMilitaryToPerson = IconData(0xe54c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Military To Person icon /// /// https://fontawesome.com/icons/person-military-to-person?style=light /// civilian, coordination, military, uer - static const IconData lightPersonMilitaryToPerson = IconDataLight(0xe54c); + static const IconData lightPersonMilitaryToPerson = IconData(0xe54c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Military To Person icon /// /// https://fontawesome.com/icons/person-military-to-person?style=thin /// civilian, coordination, military, uer - static const IconData thinPersonMilitaryToPerson = IconDataThin(0xe54c); + static const IconData thinPersonMilitaryToPerson = IconData(0xe54c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Pinball icon /// /// https://fontawesome.com/icons/person-pinball?style=solid /// arcade, fun, game, pinball, uer - static const IconData solidPersonPinball = IconDataSolid(0xe21d); + static const IconData solidPersonPinball = IconData(0xe21d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Pinball icon /// /// https://fontawesome.com/icons/person-pinball?style=regular /// arcade, fun, game, pinball, uer - static const IconData personPinball = IconDataRegular(0xe21d); + static const IconData personPinball = IconData(0xe21d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Pinball icon /// /// https://fontawesome.com/icons/person-pinball?style=light /// arcade, fun, game, pinball, uer - static const IconData lightPersonPinball = IconDataLight(0xe21d); + static const IconData lightPersonPinball = IconData(0xe21d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Pinball icon /// /// https://fontawesome.com/icons/person-pinball?style=thin /// arcade, fun, game, pinball, uer - static const IconData thinPersonPinball = IconDataThin(0xe21d); + static const IconData thinPersonPinball = IconData(0xe21d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Praying icon /// /// https://fontawesome.com/icons/person-praying?style=solid /// kneel, place of worship, religion, thank, uer, worship - static const IconData solidPersonPraying = IconDataSolid(0xf683); + static const IconData solidPersonPraying = IconData(0xf683, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pray for icon [solidPersonPraying] @Deprecated('Use "solidPersonPraying" instead.') @@ -65631,7 +65631,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-praying?style=regular /// kneel, place of worship, religion, thank, uer, worship - static const IconData personPraying = IconDataRegular(0xf683); + static const IconData personPraying = IconData(0xf683, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pray for icon [personPraying] @Deprecated('Use "personPraying" instead.') @@ -65641,7 +65641,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-praying?style=light /// kneel, place of worship, religion, thank, uer, worship - static const IconData lightPersonPraying = IconDataLight(0xf683); + static const IconData lightPersonPraying = IconData(0xf683, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pray for icon [lightPersonPraying] @Deprecated('Use "lightPersonPraying" instead.') @@ -65651,7 +65651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-praying?style=thin /// kneel, place of worship, religion, thank, uer, worship - static const IconData thinPersonPraying = IconDataThin(0xf683); + static const IconData thinPersonPraying = IconData(0xf683, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pray for icon [thinPersonPraying] @Deprecated('Use "thinPersonPraying" instead.') @@ -65661,79 +65661,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-pregnant?style=solid /// baby, birth, child, parent, pregnant, pregnant woman, uer, woman - static const IconData solidPersonPregnant = IconDataSolid(0xe31e); + static const IconData solidPersonPregnant = IconData(0xe31e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Pregnant icon /// /// https://fontawesome.com/icons/person-pregnant?style=regular /// baby, birth, child, parent, pregnant, pregnant woman, uer, woman - static const IconData personPregnant = IconDataRegular(0xe31e); + static const IconData personPregnant = IconData(0xe31e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Pregnant icon /// /// https://fontawesome.com/icons/person-pregnant?style=light /// baby, birth, child, parent, pregnant, pregnant woman, uer, woman - static const IconData lightPersonPregnant = IconDataLight(0xe31e); + static const IconData lightPersonPregnant = IconData(0xe31e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Pregnant icon /// /// https://fontawesome.com/icons/person-pregnant?style=thin /// baby, birth, child, parent, pregnant, pregnant woman, uer, woman - static const IconData thinPersonPregnant = IconDataThin(0xe31e); + static const IconData thinPersonPregnant = IconData(0xe31e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Rays icon /// /// https://fontawesome.com/icons/person-rays?style=solid /// affected, focus, shine, uer - static const IconData solidPersonRays = IconDataSolid(0xe54d); + static const IconData solidPersonRays = IconData(0xe54d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Rays icon /// /// https://fontawesome.com/icons/person-rays?style=regular /// affected, focus, shine, uer - static const IconData personRays = IconDataRegular(0xe54d); + static const IconData personRays = IconData(0xe54d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Rays icon /// /// https://fontawesome.com/icons/person-rays?style=light /// affected, focus, shine, uer - static const IconData lightPersonRays = IconDataLight(0xe54d); + static const IconData lightPersonRays = IconData(0xe54d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Rays icon /// /// https://fontawesome.com/icons/person-rays?style=thin /// affected, focus, shine, uer - static const IconData thinPersonRays = IconDataThin(0xe54d); + static const IconData thinPersonRays = IconData(0xe54d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Rifle icon /// /// https://fontawesome.com/icons/person-rifle?style=solid /// army, combatant, gun, military, rifle, uer, war - static const IconData solidPersonRifle = IconDataSolid(0xe54e); + static const IconData solidPersonRifle = IconData(0xe54e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Rifle icon /// /// https://fontawesome.com/icons/person-rifle?style=regular /// army, combatant, gun, military, rifle, uer, war - static const IconData personRifle = IconDataRegular(0xe54e); + static const IconData personRifle = IconData(0xe54e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Rifle icon /// /// https://fontawesome.com/icons/person-rifle?style=light /// army, combatant, gun, military, rifle, uer, war - static const IconData lightPersonRifle = IconDataLight(0xe54e); + static const IconData lightPersonRifle = IconData(0xe54e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Rifle icon /// /// https://fontawesome.com/icons/person-rifle?style=thin /// army, combatant, gun, military, rifle, uer, war - static const IconData thinPersonRifle = IconDataThin(0xe54e); + static const IconData thinPersonRifle = IconData(0xe54e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Running icon /// /// https://fontawesome.com/icons/person-running?style=solid /// exit, flee, follow, marathon, person running, race, running, uer, workout - static const IconData solidPersonRunning = IconDataSolid(0xf70c); + static const IconData solidPersonRunning = IconData(0xf70c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias running for icon [solidPersonRunning] @Deprecated('Use "solidPersonRunning" instead.') @@ -65743,7 +65743,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-running?style=regular /// exit, flee, follow, marathon, person running, race, running, uer, workout - static const IconData personRunning = IconDataRegular(0xf70c); + static const IconData personRunning = IconData(0xf70c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias running for icon [personRunning] @Deprecated('Use "personRunning" instead.') @@ -65753,7 +65753,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-running?style=light /// exit, flee, follow, marathon, person running, race, running, uer, workout - static const IconData lightPersonRunning = IconDataLight(0xf70c); + static const IconData lightPersonRunning = IconData(0xf70c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias running for icon [lightPersonRunning] @Deprecated('Use "lightPersonRunning" instead.') @@ -65763,7 +65763,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-running?style=thin /// exit, flee, follow, marathon, person running, race, running, uer, workout - static const IconData thinPersonRunning = IconDataThin(0xf70c); + static const IconData thinPersonRunning = IconData(0xf70c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias running for icon [thinPersonRunning] @Deprecated('Use "thinPersonRunning" instead.') @@ -65773,151 +65773,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-running-fast?style=solid /// flee, marathon, person running, race, running, exit, fast - static const IconData solidPersonRunningFast = IconDataSolid(0xe5ff); + static const IconData solidPersonRunningFast = IconData(0xe5ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Running Fast icon /// /// https://fontawesome.com/icons/person-running-fast?style=regular /// flee, marathon, person running, race, running, exit, fast - static const IconData personRunningFast = IconDataRegular(0xe5ff); + static const IconData personRunningFast = IconData(0xe5ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Running Fast icon /// /// https://fontawesome.com/icons/person-running-fast?style=light /// flee, marathon, person running, race, running, exit, fast - static const IconData lightPersonRunningFast = IconDataLight(0xe5ff); + static const IconData lightPersonRunningFast = IconData(0xe5ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Running Fast icon /// /// https://fontawesome.com/icons/person-running-fast?style=thin /// flee, marathon, person running, race, running, exit, fast - static const IconData thinPersonRunningFast = IconDataThin(0xe5ff); + static const IconData thinPersonRunningFast = IconData(0xe5ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Seat icon /// /// https://fontawesome.com/icons/person-seat?style=solid /// airplane, chair, recline, seat, travel, uer - static const IconData solidPersonSeat = IconDataSolid(0xe21e); + static const IconData solidPersonSeat = IconData(0xe21e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Seat icon /// /// https://fontawesome.com/icons/person-seat?style=regular /// airplane, chair, recline, seat, travel, uer - static const IconData personSeat = IconDataRegular(0xe21e); + static const IconData personSeat = IconData(0xe21e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Seat icon /// /// https://fontawesome.com/icons/person-seat?style=light /// airplane, chair, recline, seat, travel, uer - static const IconData lightPersonSeat = IconDataLight(0xe21e); + static const IconData lightPersonSeat = IconData(0xe21e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Seat icon /// /// https://fontawesome.com/icons/person-seat?style=thin /// airplane, chair, recline, seat, travel, uer - static const IconData thinPersonSeat = IconDataThin(0xe21e); + static const IconData thinPersonSeat = IconData(0xe21e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Seat Reclined icon /// /// https://fontawesome.com/icons/person-seat-reclined?style=solid /// airplane, chair, recline, seat, travel, uer - static const IconData solidPersonSeatReclined = IconDataSolid(0xe21f); + static const IconData solidPersonSeatReclined = IconData(0xe21f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Seat Reclined icon /// /// https://fontawesome.com/icons/person-seat-reclined?style=regular /// airplane, chair, recline, seat, travel, uer - static const IconData personSeatReclined = IconDataRegular(0xe21f); + static const IconData personSeatReclined = IconData(0xe21f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Seat Reclined icon /// /// https://fontawesome.com/icons/person-seat-reclined?style=light /// airplane, chair, recline, seat, travel, uer - static const IconData lightPersonSeatReclined = IconDataLight(0xe21f); + static const IconData lightPersonSeatReclined = IconData(0xe21f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Seat Reclined icon /// /// https://fontawesome.com/icons/person-seat-reclined?style=thin /// airplane, chair, recline, seat, travel, uer - static const IconData thinPersonSeatReclined = IconDataThin(0xe21f); + static const IconData thinPersonSeatReclined = IconData(0xe21f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Shelter icon /// /// https://fontawesome.com/icons/person-shelter?style=solid /// house, inside, roof, safe, safety, shelter, uer - static const IconData solidPersonShelter = IconDataSolid(0xe54f); + static const IconData solidPersonShelter = IconData(0xe54f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Shelter icon /// /// https://fontawesome.com/icons/person-shelter?style=regular /// house, inside, roof, safe, safety, shelter, uer - static const IconData personShelter = IconDataRegular(0xe54f); + static const IconData personShelter = IconData(0xe54f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Shelter icon /// /// https://fontawesome.com/icons/person-shelter?style=light /// house, inside, roof, safe, safety, shelter, uer - static const IconData lightPersonShelter = IconDataLight(0xe54f); + static const IconData lightPersonShelter = IconData(0xe54f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Shelter icon /// /// https://fontawesome.com/icons/person-shelter?style=thin /// house, inside, roof, safe, safety, shelter, uer - static const IconData thinPersonShelter = IconDataThin(0xe54f); + static const IconData thinPersonShelter = IconData(0xe54f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Sign icon /// /// https://fontawesome.com/icons/person-sign?style=solid /// announce, protest, uer - static const IconData solidPersonSign = IconDataSolid(0xf757); + static const IconData solidPersonSign = IconData(0xf757, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Sign icon /// /// https://fontawesome.com/icons/person-sign?style=regular /// announce, protest, uer - static const IconData personSign = IconDataRegular(0xf757); + static const IconData personSign = IconData(0xf757, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Sign icon /// /// https://fontawesome.com/icons/person-sign?style=light /// announce, protest, uer - static const IconData lightPersonSign = IconDataLight(0xf757); + static const IconData lightPersonSign = IconData(0xf757, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Sign icon /// /// https://fontawesome.com/icons/person-sign?style=thin /// announce, protest, uer - static const IconData thinPersonSign = IconDataThin(0xf757); + static const IconData thinPersonSign = IconData(0xf757, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Simple icon /// /// https://fontawesome.com/icons/person-simple?style=solid /// lavatory, man, men’s room, restroom, uer, wc, woman - static const IconData solidPersonSimple = IconDataSolid(0xe220); + static const IconData solidPersonSimple = IconData(0xe220, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Simple icon /// /// https://fontawesome.com/icons/person-simple?style=regular /// lavatory, man, men’s room, restroom, uer, wc, woman - static const IconData personSimple = IconDataRegular(0xe220); + static const IconData personSimple = IconData(0xe220, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Simple icon /// /// https://fontawesome.com/icons/person-simple?style=light /// lavatory, man, men’s room, restroom, uer, wc, woman - static const IconData lightPersonSimple = IconDataLight(0xe220); + static const IconData lightPersonSimple = IconData(0xe220, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Simple icon /// /// https://fontawesome.com/icons/person-simple?style=thin /// lavatory, man, men’s room, restroom, uer, wc, woman - static const IconData thinPersonSimple = IconDataThin(0xe220); + static const IconData thinPersonSimple = IconData(0xe220, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Skating icon /// /// https://fontawesome.com/icons/person-skating?style=solid /// figure skating, ice, olympics, rink, skate, uer, winter - static const IconData solidPersonSkating = IconDataSolid(0xf7c5); + static const IconData solidPersonSkating = IconData(0xf7c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias skating for icon [solidPersonSkating] @Deprecated('Use "solidPersonSkating" instead.') @@ -65927,7 +65927,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skating?style=regular /// figure skating, ice, olympics, rink, skate, uer, winter - static const IconData personSkating = IconDataRegular(0xf7c5); + static const IconData personSkating = IconData(0xf7c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias skating for icon [personSkating] @Deprecated('Use "personSkating" instead.') @@ -65937,7 +65937,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skating?style=light /// figure skating, ice, olympics, rink, skate, uer, winter - static const IconData lightPersonSkating = IconDataLight(0xf7c5); + static const IconData lightPersonSkating = IconData(0xf7c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias skating for icon [lightPersonSkating] @Deprecated('Use "lightPersonSkating" instead.') @@ -65947,7 +65947,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skating?style=thin /// figure skating, ice, olympics, rink, skate, uer, winter - static const IconData thinPersonSkating = IconDataThin(0xf7c5); + static const IconData thinPersonSkating = IconData(0xf7c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias skating for icon [thinPersonSkating] @Deprecated('Use "thinPersonSkating" instead.') @@ -65957,7 +65957,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-jumping?style=solid /// olympics, skiing, uer, winter - static const IconData solidPersonSkiJumping = IconDataSolid(0xf7c7); + static const IconData solidPersonSkiJumping = IconData(0xf7c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ski-jump for icon [solidPersonSkiJumping] @Deprecated('Use "solidPersonSkiJumping" instead.') @@ -65967,7 +65967,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-jumping?style=regular /// olympics, skiing, uer, winter - static const IconData personSkiJumping = IconDataRegular(0xf7c7); + static const IconData personSkiJumping = IconData(0xf7c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ski-jump for icon [personSkiJumping] @Deprecated('Use "personSkiJumping" instead.') @@ -65977,7 +65977,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-jumping?style=light /// olympics, skiing, uer, winter - static const IconData lightPersonSkiJumping = IconDataLight(0xf7c7); + static const IconData lightPersonSkiJumping = IconData(0xf7c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ski-jump for icon [lightPersonSkiJumping] @Deprecated('Use "lightPersonSkiJumping" instead.') @@ -65987,7 +65987,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-jumping?style=thin /// olympics, skiing, uer, winter - static const IconData thinPersonSkiJumping = IconDataThin(0xf7c7); + static const IconData thinPersonSkiJumping = IconData(0xf7c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ski-jump for icon [thinPersonSkiJumping] @Deprecated('Use "thinPersonSkiJumping" instead.') @@ -65997,7 +65997,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-lift?style=solid /// mountain, skiing, uer, winter - static const IconData solidPersonSkiLift = IconDataSolid(0xf7c8); + static const IconData solidPersonSkiLift = IconData(0xf7c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ski-lift for icon [solidPersonSkiLift] @Deprecated('Use "solidPersonSkiLift" instead.') @@ -66007,7 +66007,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-lift?style=regular /// mountain, skiing, uer, winter - static const IconData personSkiLift = IconDataRegular(0xf7c8); + static const IconData personSkiLift = IconData(0xf7c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ski-lift for icon [personSkiLift] @Deprecated('Use "personSkiLift" instead.') @@ -66017,7 +66017,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-lift?style=light /// mountain, skiing, uer, winter - static const IconData lightPersonSkiLift = IconDataLight(0xf7c8); + static const IconData lightPersonSkiLift = IconData(0xf7c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ski-lift for icon [lightPersonSkiLift] @Deprecated('Use "lightPersonSkiLift" instead.') @@ -66027,7 +66027,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-ski-lift?style=thin /// mountain, skiing, uer, winter - static const IconData thinPersonSkiLift = IconDataThin(0xf7c8); + static const IconData thinPersonSkiLift = IconData(0xf7c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ski-lift for icon [thinPersonSkiLift] @Deprecated('Use "thinPersonSkiLift" instead.') @@ -66037,7 +66037,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing?style=solid /// downhill, olympics, ski, skier, snow, uer, winter - static const IconData solidPersonSkiing = IconDataSolid(0xf7c9); + static const IconData solidPersonSkiing = IconData(0xf7c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias skiing for icon [solidPersonSkiing] @Deprecated('Use "solidPersonSkiing" instead.') @@ -66047,7 +66047,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing?style=regular /// downhill, olympics, ski, skier, snow, uer, winter - static const IconData personSkiing = IconDataRegular(0xf7c9); + static const IconData personSkiing = IconData(0xf7c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias skiing for icon [personSkiing] @Deprecated('Use "personSkiing" instead.') @@ -66057,7 +66057,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing?style=light /// downhill, olympics, ski, skier, snow, uer, winter - static const IconData lightPersonSkiing = IconDataLight(0xf7c9); + static const IconData lightPersonSkiing = IconData(0xf7c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias skiing for icon [lightPersonSkiing] @Deprecated('Use "lightPersonSkiing" instead.') @@ -66067,7 +66067,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing?style=thin /// downhill, olympics, ski, skier, snow, uer, winter - static const IconData thinPersonSkiing = IconDataThin(0xf7c9); + static const IconData thinPersonSkiing = IconData(0xf7c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias skiing for icon [thinPersonSkiing] @Deprecated('Use "thinPersonSkiing" instead.') @@ -66077,7 +66077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing-nordic?style=solid /// cross country, olympics, uer, winter - static const IconData solidPersonSkiingNordic = IconDataSolid(0xf7ca); + static const IconData solidPersonSkiingNordic = IconData(0xf7ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias skiing-nordic for icon [solidPersonSkiingNordic] @Deprecated('Use "solidPersonSkiingNordic" instead.') @@ -66087,7 +66087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing-nordic?style=regular /// cross country, olympics, uer, winter - static const IconData personSkiingNordic = IconDataRegular(0xf7ca); + static const IconData personSkiingNordic = IconData(0xf7ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias skiing-nordic for icon [personSkiingNordic] @Deprecated('Use "personSkiingNordic" instead.') @@ -66097,7 +66097,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing-nordic?style=light /// cross country, olympics, uer, winter - static const IconData lightPersonSkiingNordic = IconDataLight(0xf7ca); + static const IconData lightPersonSkiingNordic = IconData(0xf7ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias skiing-nordic for icon [lightPersonSkiingNordic] @Deprecated('Use "lightPersonSkiingNordic" instead.') @@ -66107,7 +66107,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-skiing-nordic?style=thin /// cross country, olympics, uer, winter - static const IconData thinPersonSkiingNordic = IconDataThin(0xf7ca); + static const IconData thinPersonSkiingNordic = IconData(0xf7ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias skiing-nordic for icon [thinPersonSkiingNordic] @Deprecated('Use "thinPersonSkiingNordic" instead.') @@ -66117,7 +66117,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-sledding?style=solid /// fun, slide, uer, winter - static const IconData solidPersonSledding = IconDataSolid(0xf7cb); + static const IconData solidPersonSledding = IconData(0xf7cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sledding for icon [solidPersonSledding] @Deprecated('Use "solidPersonSledding" instead.') @@ -66127,7 +66127,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-sledding?style=regular /// fun, slide, uer, winter - static const IconData personSledding = IconDataRegular(0xf7cb); + static const IconData personSledding = IconData(0xf7cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sledding for icon [personSledding] @Deprecated('Use "personSledding" instead.') @@ -66137,7 +66137,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-sledding?style=light /// fun, slide, uer, winter - static const IconData lightPersonSledding = IconDataLight(0xf7cb); + static const IconData lightPersonSledding = IconData(0xf7cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sledding for icon [lightPersonSledding] @Deprecated('Use "lightPersonSledding" instead.') @@ -66147,7 +66147,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-sledding?style=thin /// fun, slide, uer, winter - static const IconData thinPersonSledding = IconDataThin(0xf7cb); + static const IconData thinPersonSledding = IconData(0xf7cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sledding for icon [thinPersonSledding] @Deprecated('Use "thinPersonSledding" instead.') @@ -66157,7 +66157,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowboarding?style=solid /// olympics, ski, snow, snowboard, snowboarder, uer, winter - static const IconData solidPersonSnowboarding = IconDataSolid(0xf7ce); + static const IconData solidPersonSnowboarding = IconData(0xf7ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias snowboarding for icon [solidPersonSnowboarding] @Deprecated('Use "solidPersonSnowboarding" instead.') @@ -66167,7 +66167,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowboarding?style=regular /// olympics, ski, snow, snowboard, snowboarder, uer, winter - static const IconData personSnowboarding = IconDataRegular(0xf7ce); + static const IconData personSnowboarding = IconData(0xf7ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias snowboarding for icon [personSnowboarding] @Deprecated('Use "personSnowboarding" instead.') @@ -66177,7 +66177,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowboarding?style=light /// olympics, ski, snow, snowboard, snowboarder, uer, winter - static const IconData lightPersonSnowboarding = IconDataLight(0xf7ce); + static const IconData lightPersonSnowboarding = IconData(0xf7ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias snowboarding for icon [lightPersonSnowboarding] @Deprecated('Use "lightPersonSnowboarding" instead.') @@ -66187,7 +66187,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowboarding?style=thin /// olympics, ski, snow, snowboard, snowboarder, uer, winter - static const IconData thinPersonSnowboarding = IconDataThin(0xf7ce); + static const IconData thinPersonSnowboarding = IconData(0xf7ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias snowboarding for icon [thinPersonSnowboarding] @Deprecated('Use "thinPersonSnowboarding" instead.') @@ -66197,7 +66197,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowmobiling?style=solid /// snowmobile, uer, winter - static const IconData solidPersonSnowmobiling = IconDataSolid(0xf7d1); + static const IconData solidPersonSnowmobiling = IconData(0xf7d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias snowmobile for icon [solidPersonSnowmobiling] @Deprecated('Use "solidPersonSnowmobiling" instead.') @@ -66207,7 +66207,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowmobiling?style=regular /// snowmobile, uer, winter - static const IconData personSnowmobiling = IconDataRegular(0xf7d1); + static const IconData personSnowmobiling = IconData(0xf7d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias snowmobile for icon [personSnowmobiling] @Deprecated('Use "personSnowmobiling" instead.') @@ -66217,7 +66217,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowmobiling?style=light /// snowmobile, uer, winter - static const IconData lightPersonSnowmobiling = IconDataLight(0xf7d1); + static const IconData lightPersonSnowmobiling = IconData(0xf7d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias snowmobile for icon [lightPersonSnowmobiling] @Deprecated('Use "lightPersonSnowmobiling" instead.') @@ -66227,7 +66227,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-snowmobiling?style=thin /// snowmobile, uer, winter - static const IconData thinPersonSnowmobiling = IconDataThin(0xf7d1); + static const IconData thinPersonSnowmobiling = IconData(0xf7d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias snowmobile for icon [thinPersonSnowmobiling] @Deprecated('Use "thinPersonSnowmobiling" instead.') @@ -66237,7 +66237,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-swimming?style=solid /// ocean, person swimming, pool, sea, swim, uer, water - static const IconData solidPersonSwimming = IconDataSolid(0xf5c4); + static const IconData solidPersonSwimming = IconData(0xf5c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias swimmer for icon [solidPersonSwimming] @Deprecated('Use "solidPersonSwimming" instead.') @@ -66247,7 +66247,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-swimming?style=regular /// ocean, person swimming, pool, sea, swim, uer, water - static const IconData personSwimming = IconDataRegular(0xf5c4); + static const IconData personSwimming = IconData(0xf5c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias swimmer for icon [personSwimming] @Deprecated('Use "personSwimming" instead.') @@ -66257,7 +66257,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-swimming?style=light /// ocean, person swimming, pool, sea, swim, uer, water - static const IconData lightPersonSwimming = IconDataLight(0xf5c4); + static const IconData lightPersonSwimming = IconData(0xf5c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias swimmer for icon [lightPersonSwimming] @Deprecated('Use "lightPersonSwimming" instead.') @@ -66267,7 +66267,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-swimming?style=thin /// ocean, person swimming, pool, sea, swim, uer, water - static const IconData thinPersonSwimming = IconDataThin(0xf5c4); + static const IconData thinPersonSwimming = IconData(0xf5c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias swimmer for icon [thinPersonSwimming] @Deprecated('Use "thinPersonSwimming" instead.') @@ -66277,55 +66277,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-through-window?style=solid /// door, exit, forced entry, leave, robbery, steal, uer, window - static const IconData solidPersonThroughWindow = IconDataSolid(0xe5a9); + static const IconData solidPersonThroughWindow = IconData(0xe5a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Through Window icon /// /// https://fontawesome.com/icons/person-through-window?style=regular /// door, exit, forced entry, leave, robbery, steal, uer, window - static const IconData personThroughWindow = IconDataRegular(0xe5a9); + static const IconData personThroughWindow = IconData(0xe5a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Through Window icon /// /// https://fontawesome.com/icons/person-through-window?style=light /// door, exit, forced entry, leave, robbery, steal, uer, window - static const IconData lightPersonThroughWindow = IconDataLight(0xe5a9); + static const IconData lightPersonThroughWindow = IconData(0xe5a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Through Window icon /// /// https://fontawesome.com/icons/person-through-window?style=thin /// door, exit, forced entry, leave, robbery, steal, uer, window - static const IconData thinPersonThroughWindow = IconDataThin(0xe5a9); + static const IconData thinPersonThroughWindow = IconData(0xe5a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person To Door icon /// /// https://fontawesome.com/icons/person-to-door?style=solid /// door, exit, leave, uer - static const IconData solidPersonToDoor = IconDataSolid(0xe433); + static const IconData solidPersonToDoor = IconData(0xe433, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person To Door icon /// /// https://fontawesome.com/icons/person-to-door?style=regular /// door, exit, leave, uer - static const IconData personToDoor = IconDataRegular(0xe433); + static const IconData personToDoor = IconData(0xe433, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person To Door icon /// /// https://fontawesome.com/icons/person-to-door?style=light /// door, exit, leave, uer - static const IconData lightPersonToDoor = IconDataLight(0xe433); + static const IconData lightPersonToDoor = IconData(0xe433, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person To Door icon /// /// https://fontawesome.com/icons/person-to-door?style=thin /// door, exit, leave, uer - static const IconData thinPersonToDoor = IconDataThin(0xe433); + static const IconData thinPersonToDoor = IconData(0xe433, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person To Portal icon /// /// https://fontawesome.com/icons/person-to-portal?style=solid /// portal, run, transport, travel, uer - static const IconData solidPersonToPortal = IconDataSolid(0xe022); + static const IconData solidPersonToPortal = IconData(0xe022, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias portal-enter for icon [solidPersonToPortal] @Deprecated('Use "solidPersonToPortal" instead.') @@ -66335,7 +66335,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-to-portal?style=regular /// portal, run, transport, travel, uer - static const IconData personToPortal = IconDataRegular(0xe022); + static const IconData personToPortal = IconData(0xe022, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias portal-enter for icon [personToPortal] @Deprecated('Use "personToPortal" instead.') @@ -66345,7 +66345,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-to-portal?style=light /// portal, run, transport, travel, uer - static const IconData lightPersonToPortal = IconDataLight(0xe022); + static const IconData lightPersonToPortal = IconData(0xe022, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias portal-enter for icon [lightPersonToPortal] @Deprecated('Use "lightPersonToPortal" instead.') @@ -66355,7 +66355,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-to-portal?style=thin /// portal, run, transport, travel, uer - static const IconData thinPersonToPortal = IconDataThin(0xe022); + static const IconData thinPersonToPortal = IconData(0xe022, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias portal-enter for icon [thinPersonToPortal] @Deprecated('Use "thinPersonToPortal" instead.') @@ -66365,7 +66365,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking?style=solid /// crosswalk, exercise, follow, hike, move, person walking, uer, walk, walking, workout - static const IconData solidPersonWalking = IconDataSolid(0xf554); + static const IconData solidPersonWalking = IconData(0xf554, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias walking for icon [solidPersonWalking] @Deprecated('Use "solidPersonWalking" instead.') @@ -66375,7 +66375,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking?style=regular /// crosswalk, exercise, follow, hike, move, person walking, uer, walk, walking, workout - static const IconData personWalking = IconDataRegular(0xf554); + static const IconData personWalking = IconData(0xf554, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias walking for icon [personWalking] @Deprecated('Use "personWalking" instead.') @@ -66385,7 +66385,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking?style=light /// crosswalk, exercise, follow, hike, move, person walking, uer, walk, walking, workout - static const IconData lightPersonWalking = IconDataLight(0xf554); + static const IconData lightPersonWalking = IconData(0xf554, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias walking for icon [lightPersonWalking] @Deprecated('Use "lightPersonWalking" instead.') @@ -66395,7 +66395,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking?style=thin /// crosswalk, exercise, follow, hike, move, person walking, uer, walk, walking, workout - static const IconData thinPersonWalking = IconDataThin(0xf554); + static const IconData thinPersonWalking = IconData(0xf554, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias walking for icon [thinPersonWalking] @Deprecated('Use "thinPersonWalking" instead.') @@ -66405,107 +66405,107 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking-arrow-loop-left?style=solid /// follow, population return, return, uer - static const IconData solidPersonWalkingArrowLoopLeft = IconDataSolid(0xe551); + static const IconData solidPersonWalkingArrowLoopLeft = IconData(0xe551, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Walking Arrow Loop Left icon /// /// https://fontawesome.com/icons/person-walking-arrow-loop-left?style=regular /// follow, population return, return, uer - static const IconData personWalkingArrowLoopLeft = IconDataRegular(0xe551); + static const IconData personWalkingArrowLoopLeft = IconData(0xe551, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Walking Arrow Loop Left icon /// /// https://fontawesome.com/icons/person-walking-arrow-loop-left?style=light /// follow, population return, return, uer - static const IconData lightPersonWalkingArrowLoopLeft = IconDataLight(0xe551); + static const IconData lightPersonWalkingArrowLoopLeft = IconData(0xe551, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Walking Arrow Loop Left icon /// /// https://fontawesome.com/icons/person-walking-arrow-loop-left?style=thin /// follow, population return, return, uer - static const IconData thinPersonWalkingArrowLoopLeft = IconDataThin(0xe551); + static const IconData thinPersonWalkingArrowLoopLeft = IconData(0xe551, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Walking Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-arrow-right?style=solid /// exit, follow, internally displaced, leave, refugee, uer - static const IconData solidPersonWalkingArrowRight = IconDataSolid(0xe552); + static const IconData solidPersonWalkingArrowRight = IconData(0xe552, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Walking Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-arrow-right?style=regular /// exit, follow, internally displaced, leave, refugee, uer - static const IconData personWalkingArrowRight = IconDataRegular(0xe552); + static const IconData personWalkingArrowRight = IconData(0xe552, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Walking Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-arrow-right?style=light /// exit, follow, internally displaced, leave, refugee, uer - static const IconData lightPersonWalkingArrowRight = IconDataLight(0xe552); + static const IconData lightPersonWalkingArrowRight = IconData(0xe552, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Walking Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-arrow-right?style=thin /// exit, follow, internally displaced, leave, refugee, uer - static const IconData thinPersonWalkingArrowRight = IconDataThin(0xe552); + static const IconData thinPersonWalkingArrowRight = IconData(0xe552, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Walking Dashed Line Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-dashed-line-arrow-right?style=solid /// exit, follow, refugee, uer static const IconData solidPersonWalkingDashedLineArrowRight = - IconDataSolid(0xe553); + IconData(0xe553, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Walking Dashed Line Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-dashed-line-arrow-right?style=regular /// exit, follow, refugee, uer static const IconData personWalkingDashedLineArrowRight = - IconDataRegular(0xe553); + IconData(0xe553, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Walking Dashed Line Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-dashed-line-arrow-right?style=light /// exit, follow, refugee, uer static const IconData lightPersonWalkingDashedLineArrowRight = - IconDataLight(0xe553); + IconData(0xe553, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Walking Dashed Line Arrow Right icon /// /// https://fontawesome.com/icons/person-walking-dashed-line-arrow-right?style=thin /// exit, follow, refugee, uer static const IconData thinPersonWalkingDashedLineArrowRight = - IconDataThin(0xe553); + IconData(0xe553, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Walking Luggage icon /// /// https://fontawesome.com/icons/person-walking-luggage?style=solid /// bag, baggage, briefcase, carry-on, deployment, follow, rolling, uer - static const IconData solidPersonWalkingLuggage = IconDataSolid(0xe554); + static const IconData solidPersonWalkingLuggage = IconData(0xe554, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Person Walking Luggage icon /// /// https://fontawesome.com/icons/person-walking-luggage?style=regular /// bag, baggage, briefcase, carry-on, deployment, follow, rolling, uer - static const IconData personWalkingLuggage = IconDataRegular(0xe554); + static const IconData personWalkingLuggage = IconData(0xe554, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Person Walking Luggage icon /// /// https://fontawesome.com/icons/person-walking-luggage?style=light /// bag, baggage, briefcase, carry-on, deployment, follow, rolling, uer - static const IconData lightPersonWalkingLuggage = IconDataLight(0xe554); + static const IconData lightPersonWalkingLuggage = IconData(0xe554, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Person Walking Luggage icon /// /// https://fontawesome.com/icons/person-walking-luggage?style=thin /// bag, baggage, briefcase, carry-on, deployment, follow, rolling, uer - static const IconData thinPersonWalkingLuggage = IconDataThin(0xe554); + static const IconData thinPersonWalkingLuggage = IconData(0xe554, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Person Walking With Cane icon /// /// https://fontawesome.com/icons/person-walking-with-cane?style=solid /// blind, cane, follow, uer - static const IconData solidPersonWalkingWithCane = IconDataSolid(0xf29d); + static const IconData solidPersonWalkingWithCane = IconData(0xf29d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias blind for icon [solidPersonWalkingWithCane] @Deprecated('Use "solidPersonWalkingWithCane" instead.') @@ -66515,7 +66515,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking-with-cane?style=regular /// blind, cane, follow, uer - static const IconData personWalkingWithCane = IconDataRegular(0xf29d); + static const IconData personWalkingWithCane = IconData(0xf29d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias blind for icon [personWalkingWithCane] @Deprecated('Use "personWalkingWithCane" instead.') @@ -66525,7 +66525,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking-with-cane?style=light /// blind, cane, follow, uer - static const IconData lightPersonWalkingWithCane = IconDataLight(0xf29d); + static const IconData lightPersonWalkingWithCane = IconData(0xf29d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias blind for icon [lightPersonWalkingWithCane] @Deprecated('Use "lightPersonWalkingWithCane" instead.') @@ -66535,7 +66535,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/person-walking-with-cane?style=thin /// blind, cane, follow, uer - static const IconData thinPersonWalkingWithCane = IconDataThin(0xf29d); + static const IconData thinPersonWalkingWithCane = IconData(0xf29d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias blind for icon [thinPersonWalkingWithCane] @Deprecated('Use "thinPersonWalkingWithCane" instead.') @@ -66545,94 +66545,94 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/peseta-sign?style=solid /// Peseta Sign, currency - static const IconData solidPesetaSign = IconDataSolid(0xe221); + static const IconData solidPesetaSign = IconData(0xe221, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peseta Sign icon /// /// https://fontawesome.com/icons/peseta-sign?style=regular /// Peseta Sign, currency - static const IconData pesetaSign = IconDataRegular(0xe221); + static const IconData pesetaSign = IconData(0xe221, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peseta Sign icon /// /// https://fontawesome.com/icons/peseta-sign?style=light /// Peseta Sign, currency - static const IconData lightPesetaSign = IconDataLight(0xe221); + static const IconData lightPesetaSign = IconData(0xe221, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peseta Sign icon /// /// https://fontawesome.com/icons/peseta-sign?style=thin /// Peseta Sign, currency - static const IconData thinPesetaSign = IconDataThin(0xe221); + static const IconData thinPesetaSign = IconData(0xe221, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Peso Sign icon /// /// https://fontawesome.com/icons/peso-sign?style=solid /// Peso Sign, currency - static const IconData solidPesoSign = IconDataSolid(0xe222); + static const IconData solidPesoSign = IconData(0xe222, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Peso Sign icon /// /// https://fontawesome.com/icons/peso-sign?style=regular /// Peso Sign, currency - static const IconData pesoSign = IconDataRegular(0xe222); + static const IconData pesoSign = IconData(0xe222, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Peso Sign icon /// /// https://fontawesome.com/icons/peso-sign?style=light /// Peso Sign, currency - static const IconData lightPesoSign = IconDataLight(0xe222); + static const IconData lightPesoSign = IconData(0xe222, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Peso Sign icon /// /// https://fontawesome.com/icons/peso-sign?style=thin /// Peso Sign, currency - static const IconData thinPesoSign = IconDataThin(0xe222); + static const IconData thinPesoSign = IconData(0xe222, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Phabricator icon /// /// https://fontawesome.com/icons/phabricator?style=brands - static const IconData phabricator = IconDataBrands(0xf3db); + static const IconData phabricator = IconData(0xf3db, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Phoenix Framework icon /// /// https://fontawesome.com/icons/phoenix-framework?style=brands - static const IconData phoenixFramework = IconDataBrands(0xf3dc); + static const IconData phoenixFramework = IconData(0xf3dc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Phoenix Squadron icon /// /// https://fontawesome.com/icons/phoenix-squadron?style=brands - static const IconData phoenixSquadron = IconDataBrands(0xf511); + static const IconData phoenixSquadron = IconData(0xf511, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Phone icon /// /// https://fontawesome.com/icons/phone?style=solid /// Left Hand Telephone Receiver, call, earphone, number, phone, receiver, support, talking, telephone, telephone receiver, voice - static const IconData solidPhone = IconDataSolid(0xf095); + static const IconData solidPhone = IconData(0xf095, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone icon /// /// https://fontawesome.com/icons/phone?style=regular /// Left Hand Telephone Receiver, call, earphone, number, phone, receiver, support, talking, telephone, telephone receiver, voice - static const IconData phone = IconDataRegular(0xf095); + static const IconData phone = IconData(0xf095, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone icon /// /// https://fontawesome.com/icons/phone?style=light /// Left Hand Telephone Receiver, call, earphone, number, phone, receiver, support, talking, telephone, telephone receiver, voice - static const IconData lightPhone = IconDataLight(0xf095); + static const IconData lightPhone = IconData(0xf095, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone icon /// /// https://fontawesome.com/icons/phone?style=thin /// Left Hand Telephone Receiver, call, earphone, number, phone, receiver, support, talking, telephone, telephone receiver, voice - static const IconData thinPhone = IconDataThin(0xf095); + static const IconData thinPhone = IconData(0xf095, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Arrow Down Left icon /// /// https://fontawesome.com/icons/phone-arrow-down-left?style=solid /// answer, incoming - static const IconData solidPhoneArrowDownLeft = IconDataSolid(0xe223); + static const IconData solidPhoneArrowDownLeft = IconData(0xe223, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-down for icon [solidPhoneArrowDownLeft] @Deprecated('Use "solidPhoneArrowDownLeft" instead.') @@ -66646,7 +66646,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-down-left?style=regular /// answer, incoming - static const IconData phoneArrowDownLeft = IconDataRegular(0xe223); + static const IconData phoneArrowDownLeft = IconData(0xe223, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-down for icon [phoneArrowDownLeft] @Deprecated('Use "phoneArrowDownLeft" instead.') @@ -66660,7 +66660,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-down-left?style=light /// answer, incoming - static const IconData lightPhoneArrowDownLeft = IconDataLight(0xe223); + static const IconData lightPhoneArrowDownLeft = IconData(0xe223, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-down for icon [lightPhoneArrowDownLeft] @Deprecated('Use "lightPhoneArrowDownLeft" instead.') @@ -66674,7 +66674,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-down-left?style=thin /// answer, incoming - static const IconData thinPhoneArrowDownLeft = IconDataThin(0xe223); + static const IconData thinPhoneArrowDownLeft = IconData(0xe223, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-down for icon [thinPhoneArrowDownLeft] @Deprecated('Use "thinPhoneArrowDownLeft" instead.') @@ -66688,31 +66688,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-right?style=solid /// answer, call, forward, next, reply, send, telephone - static const IconData solidPhoneArrowRight = IconDataSolid(0xe5be); + static const IconData solidPhoneArrowRight = IconData(0xe5be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Arrow Right icon /// /// https://fontawesome.com/icons/phone-arrow-right?style=regular /// answer, call, forward, next, reply, send, telephone - static const IconData phoneArrowRight = IconDataRegular(0xe5be); + static const IconData phoneArrowRight = IconData(0xe5be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Arrow Right icon /// /// https://fontawesome.com/icons/phone-arrow-right?style=light /// answer, call, forward, next, reply, send, telephone - static const IconData lightPhoneArrowRight = IconDataLight(0xe5be); + static const IconData lightPhoneArrowRight = IconData(0xe5be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Arrow Right icon /// /// https://fontawesome.com/icons/phone-arrow-right?style=thin /// answer, call, forward, next, reply, send, telephone - static const IconData thinPhoneArrowRight = IconDataThin(0xe5be); + static const IconData thinPhoneArrowRight = IconData(0xe5be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Arrow Up Right icon /// /// https://fontawesome.com/icons/phone-arrow-up-right?style=solid /// call, outgoing, send, upgrade - static const IconData solidPhoneArrowUpRight = IconDataSolid(0xe224); + static const IconData solidPhoneArrowUpRight = IconData(0xe224, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-up for icon [solidPhoneArrowUpRight] @Deprecated('Use "solidPhoneArrowUpRight" instead.') @@ -66726,7 +66726,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-up-right?style=regular /// call, outgoing, send, upgrade - static const IconData phoneArrowUpRight = IconDataRegular(0xe224); + static const IconData phoneArrowUpRight = IconData(0xe224, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-up for icon [phoneArrowUpRight] @Deprecated('Use "phoneArrowUpRight" instead.') @@ -66740,7 +66740,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-up-right?style=light /// call, outgoing, send, upgrade - static const IconData lightPhoneArrowUpRight = IconDataLight(0xe224); + static const IconData lightPhoneArrowUpRight = IconData(0xe224, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-up for icon [lightPhoneArrowUpRight] @Deprecated('Use "lightPhoneArrowUpRight" instead.') @@ -66754,7 +66754,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-arrow-up-right?style=thin /// call, outgoing, send, upgrade - static const IconData thinPhoneArrowUpRight = IconDataThin(0xe224); + static const IconData thinPhoneArrowUpRight = IconData(0xe224, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-arrow-up for icon [thinPhoneArrowUpRight] @Deprecated('Use "thinPhoneArrowUpRight" instead.') @@ -66768,7 +66768,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-flip?style=solid /// Right Hand Telephone Receiver, call, earphone, number, support, telephone, voice - static const IconData solidPhoneFlip = IconDataSolid(0xf879); + static const IconData solidPhoneFlip = IconData(0xf879, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-alt for icon [solidPhoneFlip] @Deprecated('Use "solidPhoneFlip" instead.') @@ -66778,7 +66778,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-flip?style=regular /// Right Hand Telephone Receiver, call, earphone, number, support, telephone, voice - static const IconData phoneFlip = IconDataRegular(0xf879); + static const IconData phoneFlip = IconData(0xf879, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-alt for icon [phoneFlip] @Deprecated('Use "phoneFlip" instead.') @@ -66788,7 +66788,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-flip?style=light /// Right Hand Telephone Receiver, call, earphone, number, support, telephone, voice - static const IconData lightPhoneFlip = IconDataLight(0xf879); + static const IconData lightPhoneFlip = IconData(0xf879, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-alt for icon [lightPhoneFlip] @Deprecated('Use "lightPhoneFlip" instead.') @@ -66798,7 +66798,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-flip?style=thin /// Right Hand Telephone Receiver, call, earphone, number, support, telephone, voice - static const IconData thinPhoneFlip = IconDataThin(0xf879); + static const IconData thinPhoneFlip = IconData(0xf879, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-alt for icon [thinPhoneFlip] @Deprecated('Use "thinPhoneFlip" instead.') @@ -66808,175 +66808,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-hangup?style=solid /// end, phone, reject - static const IconData solidPhoneHangup = IconDataSolid(0xe225); + static const IconData solidPhoneHangup = IconData(0xe225, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Hangup icon /// /// https://fontawesome.com/icons/phone-hangup?style=regular /// end, phone, reject - static const IconData phoneHangup = IconDataRegular(0xe225); + static const IconData phoneHangup = IconData(0xe225, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Hangup icon /// /// https://fontawesome.com/icons/phone-hangup?style=light /// end, phone, reject - static const IconData lightPhoneHangup = IconDataLight(0xe225); + static const IconData lightPhoneHangup = IconData(0xe225, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Hangup icon /// /// https://fontawesome.com/icons/phone-hangup?style=thin /// end, phone, reject - static const IconData thinPhoneHangup = IconDataThin(0xe225); + static const IconData thinPhoneHangup = IconData(0xe225, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Intercom icon /// /// https://fontawesome.com/icons/phone-intercom?style=solid /// call, phone, warning - static const IconData solidPhoneIntercom = IconDataSolid(0xe434); + static const IconData solidPhoneIntercom = IconData(0xe434, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Intercom icon /// /// https://fontawesome.com/icons/phone-intercom?style=regular /// call, phone, warning - static const IconData phoneIntercom = IconDataRegular(0xe434); + static const IconData phoneIntercom = IconData(0xe434, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Intercom icon /// /// https://fontawesome.com/icons/phone-intercom?style=light /// call, phone, warning - static const IconData lightPhoneIntercom = IconDataLight(0xe434); + static const IconData lightPhoneIntercom = IconData(0xe434, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Intercom icon /// /// https://fontawesome.com/icons/phone-intercom?style=thin /// call, phone, warning - static const IconData thinPhoneIntercom = IconDataThin(0xe434); + static const IconData thinPhoneIntercom = IconData(0xe434, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Missed icon /// /// https://fontawesome.com/icons/phone-missed?style=solid /// call, rebound - static const IconData solidPhoneMissed = IconDataSolid(0xe226); + static const IconData solidPhoneMissed = IconData(0xe226, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Missed icon /// /// https://fontawesome.com/icons/phone-missed?style=regular /// call, rebound - static const IconData phoneMissed = IconDataRegular(0xe226); + static const IconData phoneMissed = IconData(0xe226, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Missed icon /// /// https://fontawesome.com/icons/phone-missed?style=light /// call, rebound - static const IconData lightPhoneMissed = IconDataLight(0xe226); + static const IconData lightPhoneMissed = IconData(0xe226, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Missed icon /// /// https://fontawesome.com/icons/phone-missed?style=thin /// call, rebound - static const IconData thinPhoneMissed = IconDataThin(0xe226); + static const IconData thinPhoneMissed = IconData(0xe226, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Office icon /// /// https://fontawesome.com/icons/phone-office?style=solid /// call, earphone, number, support, telephone, voice - static const IconData solidPhoneOffice = IconDataSolid(0xf67d); + static const IconData solidPhoneOffice = IconData(0xf67d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Office icon /// /// https://fontawesome.com/icons/phone-office?style=regular /// call, earphone, number, support, telephone, voice - static const IconData phoneOffice = IconDataRegular(0xf67d); + static const IconData phoneOffice = IconData(0xf67d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Office icon /// /// https://fontawesome.com/icons/phone-office?style=light /// call, earphone, number, support, telephone, voice - static const IconData lightPhoneOffice = IconDataLight(0xf67d); + static const IconData lightPhoneOffice = IconData(0xf67d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Office icon /// /// https://fontawesome.com/icons/phone-office?style=thin /// call, earphone, number, support, telephone, voice - static const IconData thinPhoneOffice = IconDataThin(0xf67d); + static const IconData thinPhoneOffice = IconData(0xf67d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Plus icon /// /// https://fontawesome.com/icons/phone-plus?style=solid /// add, call, earphone, number, positive, support, telephone, voice - static const IconData solidPhonePlus = IconDataSolid(0xf4d2); + static const IconData solidPhonePlus = IconData(0xf4d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Plus icon /// /// https://fontawesome.com/icons/phone-plus?style=regular /// add, call, earphone, number, positive, support, telephone, voice - static const IconData phonePlus = IconDataRegular(0xf4d2); + static const IconData phonePlus = IconData(0xf4d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Plus icon /// /// https://fontawesome.com/icons/phone-plus?style=light /// add, call, earphone, number, positive, support, telephone, voice - static const IconData lightPhonePlus = IconDataLight(0xf4d2); + static const IconData lightPhonePlus = IconData(0xf4d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Plus icon /// /// https://fontawesome.com/icons/phone-plus?style=thin /// add, call, earphone, number, positive, support, telephone, voice - static const IconData thinPhonePlus = IconDataThin(0xf4d2); + static const IconData thinPhonePlus = IconData(0xf4d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Rotary icon /// /// https://fontawesome.com/icons/phone-rotary?style=solid /// call, earphone, number, phone, retro, support, telephone, vintage, voice - static const IconData solidPhoneRotary = IconDataSolid(0xf8d3); + static const IconData solidPhoneRotary = IconData(0xf8d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Rotary icon /// /// https://fontawesome.com/icons/phone-rotary?style=regular /// call, earphone, number, phone, retro, support, telephone, vintage, voice - static const IconData phoneRotary = IconDataRegular(0xf8d3); + static const IconData phoneRotary = IconData(0xf8d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Rotary icon /// /// https://fontawesome.com/icons/phone-rotary?style=light /// call, earphone, number, phone, retro, support, telephone, vintage, voice - static const IconData lightPhoneRotary = IconDataLight(0xf8d3); + static const IconData lightPhoneRotary = IconData(0xf8d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Rotary icon /// /// https://fontawesome.com/icons/phone-rotary?style=thin /// call, earphone, number, phone, retro, support, telephone, vintage, voice - static const IconData thinPhoneRotary = IconDataThin(0xf8d3); + static const IconData thinPhoneRotary = IconData(0xf8d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Slash icon /// /// https://fontawesome.com/icons/phone-slash?style=solid /// call, cancel, disabled, disconnect, earphone, mute, number, support, telephone, voice - static const IconData solidPhoneSlash = IconDataSolid(0xf3dd); + static const IconData solidPhoneSlash = IconData(0xf3dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Slash icon /// /// https://fontawesome.com/icons/phone-slash?style=regular /// call, cancel, disabled, disconnect, earphone, mute, number, support, telephone, voice - static const IconData phoneSlash = IconDataRegular(0xf3dd); + static const IconData phoneSlash = IconData(0xf3dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Slash icon /// /// https://fontawesome.com/icons/phone-slash?style=light /// call, cancel, disabled, disconnect, earphone, mute, number, support, telephone, voice - static const IconData lightPhoneSlash = IconDataLight(0xf3dd); + static const IconData lightPhoneSlash = IconData(0xf3dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Slash icon /// /// https://fontawesome.com/icons/phone-slash?style=thin /// call, cancel, disabled, disconnect, earphone, mute, number, support, telephone, voice - static const IconData thinPhoneSlash = IconDataThin(0xf3dd); + static const IconData thinPhoneSlash = IconData(0xf3dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Phone Volume icon /// /// https://fontawesome.com/icons/phone-volume?style=solid /// call, earphone, number, sound, support, talking, telephone, voice, volume-control-phone - static const IconData solidPhoneVolume = IconDataSolid(0xf2a0); + static const IconData solidPhoneVolume = IconData(0xf2a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volume-control-phone for icon [solidPhoneVolume] @Deprecated('Use "solidPhoneVolume" instead.') @@ -66986,7 +66986,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-volume?style=regular /// call, earphone, number, sound, support, talking, telephone, voice, volume-control-phone - static const IconData phoneVolume = IconDataRegular(0xf2a0); + static const IconData phoneVolume = IconData(0xf2a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volume-control-phone for icon [phoneVolume] @Deprecated('Use "phoneVolume" instead.') @@ -66996,7 +66996,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-volume?style=light /// call, earphone, number, sound, support, talking, telephone, voice, volume-control-phone - static const IconData lightPhoneVolume = IconDataLight(0xf2a0); + static const IconData lightPhoneVolume = IconData(0xf2a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volume-control-phone for icon [lightPhoneVolume] @Deprecated('Use "lightPhoneVolume" instead.') @@ -67006,7 +67006,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-volume?style=thin /// call, earphone, number, sound, support, talking, telephone, voice, volume-control-phone - static const IconData thinPhoneVolume = IconDataThin(0xf2a0); + static const IconData thinPhoneVolume = IconData(0xf2a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volume-control-phone for icon [thinPhoneVolume] @Deprecated('Use "thinPhoneVolume" instead.') @@ -67016,31 +67016,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/phone-xmark?style=solid /// call, end, hangup, phone - static const IconData solidPhoneXmark = IconDataSolid(0xe227); + static const IconData solidPhoneXmark = IconData(0xe227, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Phone Xmark icon /// /// https://fontawesome.com/icons/phone-xmark?style=regular /// call, end, hangup, phone - static const IconData phoneXmark = IconDataRegular(0xe227); + static const IconData phoneXmark = IconData(0xe227, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Phone Xmark icon /// /// https://fontawesome.com/icons/phone-xmark?style=light /// call, end, hangup, phone - static const IconData lightPhoneXmark = IconDataLight(0xe227); + static const IconData lightPhoneXmark = IconData(0xe227, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Phone Xmark icon /// /// https://fontawesome.com/icons/phone-xmark?style=thin /// call, end, hangup, phone - static const IconData thinPhoneXmark = IconDataThin(0xe227); + static const IconData thinPhoneXmark = IconData(0xe227, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Photo Film icon /// /// https://fontawesome.com/icons/photo-film?style=solid /// av, film, image, library, media - static const IconData solidPhotoFilm = IconDataSolid(0xf87c); + static const IconData solidPhotoFilm = IconData(0xf87c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias photo-video for icon [solidPhotoFilm] @Deprecated('Use "solidPhotoFilm" instead.') @@ -67050,7 +67050,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/photo-film?style=regular /// av, film, image, library, media - static const IconData photoFilm = IconDataRegular(0xf87c); + static const IconData photoFilm = IconData(0xf87c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias photo-video for icon [photoFilm] @Deprecated('Use "photoFilm" instead.') @@ -67060,7 +67060,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/photo-film?style=light /// av, film, image, library, media - static const IconData lightPhotoFilm = IconDataLight(0xf87c); + static const IconData lightPhotoFilm = IconData(0xf87c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias photo-video for icon [lightPhotoFilm] @Deprecated('Use "lightPhotoFilm" instead.') @@ -67070,7 +67070,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/photo-film?style=thin /// av, film, image, library, media - static const IconData thinPhotoFilm = IconDataThin(0xf87c); + static const IconData thinPhotoFilm = IconData(0xf87c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias photo-video for icon [thinPhotoFilm] @Deprecated('Use "thinPhotoFilm" instead.') @@ -67080,725 +67080,725 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/photo-film-music?style=solid /// img, media - static const IconData solidPhotoFilmMusic = IconDataSolid(0xe228); + static const IconData solidPhotoFilmMusic = IconData(0xe228, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Photo Film Music icon /// /// https://fontawesome.com/icons/photo-film-music?style=regular /// img, media - static const IconData photoFilmMusic = IconDataRegular(0xe228); + static const IconData photoFilmMusic = IconData(0xe228, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Photo Film Music icon /// /// https://fontawesome.com/icons/photo-film-music?style=light /// img, media - static const IconData lightPhotoFilmMusic = IconDataLight(0xe228); + static const IconData lightPhotoFilmMusic = IconData(0xe228, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Photo Film Music icon /// /// https://fontawesome.com/icons/photo-film-music?style=thin /// img, media - static const IconData thinPhotoFilmMusic = IconDataThin(0xe228); + static const IconData thinPhotoFilmMusic = IconData(0xe228, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands PHP icon /// /// https://fontawesome.com/icons/php?style=brands - static const IconData php = IconDataBrands(0xf457); + static const IconData php = IconData(0xf457, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pi icon /// /// https://fontawesome.com/icons/pi?style=solid /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData solidPi = IconDataSolid(0xf67e); + static const IconData solidPi = IconData(0xf67e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pi icon /// /// https://fontawesome.com/icons/pi?style=regular /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData pi = IconDataRegular(0xf67e); + static const IconData pi = IconData(0xf67e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pi icon /// /// https://fontawesome.com/icons/pi?style=light /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData lightPi = IconDataLight(0xf67e); + static const IconData lightPi = IconData(0xf67e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pi icon /// /// https://fontawesome.com/icons/pi?style=thin /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData thinPi = IconDataThin(0xf67e); + static const IconData thinPi = IconData(0xf67e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Piano icon /// /// https://fontawesome.com/icons/piano?style=solid /// grand piano, instrument, keyboard, keys, midi, music - static const IconData solidPiano = IconDataSolid(0xf8d4); + static const IconData solidPiano = IconData(0xf8d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Piano icon /// /// https://fontawesome.com/icons/piano?style=regular /// grand piano, instrument, keyboard, keys, midi, music - static const IconData piano = IconDataRegular(0xf8d4); + static const IconData piano = IconData(0xf8d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Piano icon /// /// https://fontawesome.com/icons/piano?style=light /// grand piano, instrument, keyboard, keys, midi, music - static const IconData lightPiano = IconDataLight(0xf8d4); + static const IconData lightPiano = IconData(0xf8d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Piano icon /// /// https://fontawesome.com/icons/piano?style=thin /// grand piano, instrument, keyboard, keys, midi, music - static const IconData thinPiano = IconDataThin(0xf8d4); + static const IconData thinPiano = IconData(0xf8d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Piano Keyboard icon /// /// https://fontawesome.com/icons/piano-keyboard?style=solid /// instrument, keyboard, keys, midi, music, musical keyboard, piano - static const IconData solidPianoKeyboard = IconDataSolid(0xf8d5); + static const IconData solidPianoKeyboard = IconData(0xf8d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Piano Keyboard icon /// /// https://fontawesome.com/icons/piano-keyboard?style=regular /// instrument, keyboard, keys, midi, music, musical keyboard, piano - static const IconData pianoKeyboard = IconDataRegular(0xf8d5); + static const IconData pianoKeyboard = IconData(0xf8d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Piano Keyboard icon /// /// https://fontawesome.com/icons/piano-keyboard?style=light /// instrument, keyboard, keys, midi, music, musical keyboard, piano - static const IconData lightPianoKeyboard = IconDataLight(0xf8d5); + static const IconData lightPianoKeyboard = IconData(0xf8d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Piano Keyboard icon /// /// https://fontawesome.com/icons/piano-keyboard?style=thin /// instrument, keyboard, keys, midi, music, musical keyboard, piano - static const IconData thinPianoKeyboard = IconDataThin(0xf8d5); + static const IconData thinPianoKeyboard = IconData(0xf8d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pickaxe icon /// /// https://fontawesome.com/icons/pickaxe?style=solid /// axe, climb, ice, mine, mining, mountaineering, rock - static const IconData solidPickaxe = IconDataSolid(0xe5bf); + static const IconData solidPickaxe = IconData(0xe5bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pickaxe icon /// /// https://fontawesome.com/icons/pickaxe?style=regular /// axe, climb, ice, mine, mining, mountaineering, rock - static const IconData pickaxe = IconDataRegular(0xe5bf); + static const IconData pickaxe = IconData(0xe5bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pickaxe icon /// /// https://fontawesome.com/icons/pickaxe?style=light /// axe, climb, ice, mine, mining, mountaineering, rock - static const IconData lightPickaxe = IconDataLight(0xe5bf); + static const IconData lightPickaxe = IconData(0xe5bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pickaxe icon /// /// https://fontawesome.com/icons/pickaxe?style=thin /// axe, climb, ice, mine, mining, mountaineering, rock - static const IconData thinPickaxe = IconDataThin(0xe5bf); + static const IconData thinPickaxe = IconData(0xe5bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pickleball icon /// /// https://fontawesome.com/icons/pickleball?style=solid /// paddle, pickleball, wiffle - static const IconData solidPickleball = IconDataSolid(0xe435); + static const IconData solidPickleball = IconData(0xe435, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pickleball icon /// /// https://fontawesome.com/icons/pickleball?style=regular /// paddle, pickleball, wiffle - static const IconData pickleball = IconDataRegular(0xe435); + static const IconData pickleball = IconData(0xe435, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pickleball icon /// /// https://fontawesome.com/icons/pickleball?style=light /// paddle, pickleball, wiffle - static const IconData lightPickleball = IconDataLight(0xe435); + static const IconData lightPickleball = IconData(0xe435, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pickleball icon /// /// https://fontawesome.com/icons/pickleball?style=thin /// paddle, pickleball, wiffle - static const IconData thinPickleball = IconDataThin(0xe435); + static const IconData thinPickleball = IconData(0xe435, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pie icon /// /// https://fontawesome.com/icons/pie?style=solid /// apple, bakery, cake, crust, dessert, filling, fruit, meat, pastry, pie, pumpkin, tart - static const IconData solidPie = IconDataSolid(0xf705); + static const IconData solidPie = IconData(0xf705, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pie icon /// /// https://fontawesome.com/icons/pie?style=regular /// apple, bakery, cake, crust, dessert, filling, fruit, meat, pastry, pie, pumpkin, tart - static const IconData pie = IconDataRegular(0xf705); + static const IconData pie = IconData(0xf705, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pie icon /// /// https://fontawesome.com/icons/pie?style=light /// apple, bakery, cake, crust, dessert, filling, fruit, meat, pastry, pie, pumpkin, tart - static const IconData lightPie = IconDataLight(0xf705); + static const IconData lightPie = IconData(0xf705, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pie icon /// /// https://fontawesome.com/icons/pie?style=thin /// apple, bakery, cake, crust, dessert, filling, fruit, meat, pastry, pie, pumpkin, tart - static const IconData thinPie = IconDataThin(0xf705); + static const IconData thinPie = IconData(0xf705, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Pied Piper Logo icon /// /// https://fontawesome.com/icons/pied-piper?style=brands - static const IconData piedPiper = IconDataBrands(0xf2ae); + static const IconData piedPiper = IconData(0xf2ae, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Alternate Pied Piper Logo (Old) icon /// /// https://fontawesome.com/icons/pied-piper-alt?style=brands - static const IconData piedPiperAlt = IconDataBrands(0xf1a8); + static const IconData piedPiperAlt = IconData(0xf1a8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Pied Piper Hat (Old) icon /// /// https://fontawesome.com/icons/pied-piper-hat?style=brands /// clothing - static const IconData piedPiperHat = IconDataBrands(0xf4e5); + static const IconData piedPiperHat = IconData(0xf4e5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Pied Piper PP Logo (Old) icon /// /// https://fontawesome.com/icons/pied-piper-pp?style=brands - static const IconData piedPiperPp = IconDataBrands(0xf1a7); + static const IconData piedPiperPp = IconData(0xf1a7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pig icon /// /// https://fontawesome.com/icons/pig?style=solid /// agriculture, animal, farm, fauna, mammal, oink, pig, sow - static const IconData solidPig = IconDataSolid(0xf706); + static const IconData solidPig = IconData(0xf706, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pig icon /// /// https://fontawesome.com/icons/pig?style=regular /// agriculture, animal, farm, fauna, mammal, oink, pig, sow - static const IconData pig = IconDataRegular(0xf706); + static const IconData pig = IconData(0xf706, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pig icon /// /// https://fontawesome.com/icons/pig?style=light /// agriculture, animal, farm, fauna, mammal, oink, pig, sow - static const IconData lightPig = IconDataLight(0xf706); + static const IconData lightPig = IconData(0xf706, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pig icon /// /// https://fontawesome.com/icons/pig?style=thin /// agriculture, animal, farm, fauna, mammal, oink, pig, sow - static const IconData thinPig = IconDataThin(0xf706); + static const IconData thinPig = IconData(0xf706, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Piggy Bank icon /// /// https://fontawesome.com/icons/piggy-bank?style=solid /// bank, salary, save, savings - static const IconData solidPiggyBank = IconDataSolid(0xf4d3); + static const IconData solidPiggyBank = IconData(0xf4d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Piggy Bank icon /// /// https://fontawesome.com/icons/piggy-bank?style=regular /// bank, salary, save, savings - static const IconData piggyBank = IconDataRegular(0xf4d3); + static const IconData piggyBank = IconData(0xf4d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Piggy Bank icon /// /// https://fontawesome.com/icons/piggy-bank?style=light /// bank, salary, save, savings - static const IconData lightPiggyBank = IconDataLight(0xf4d3); + static const IconData lightPiggyBank = IconData(0xf4d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Piggy Bank icon /// /// https://fontawesome.com/icons/piggy-bank?style=thin /// bank, salary, save, savings - static const IconData thinPiggyBank = IconDataThin(0xf4d3); + static const IconData thinPiggyBank = IconData(0xf4d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pills icon /// /// https://fontawesome.com/icons/pills?style=solid /// drugs, medicine, prescription, tablets - static const IconData solidPills = IconDataSolid(0xf484); + static const IconData solidPills = IconData(0xf484, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pills icon /// /// https://fontawesome.com/icons/pills?style=regular /// drugs, medicine, prescription, tablets - static const IconData pills = IconDataRegular(0xf484); + static const IconData pills = IconData(0xf484, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pills icon /// /// https://fontawesome.com/icons/pills?style=light /// drugs, medicine, prescription, tablets - static const IconData lightPills = IconDataLight(0xf484); + static const IconData lightPills = IconData(0xf484, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pills icon /// /// https://fontawesome.com/icons/pills?style=thin /// drugs, medicine, prescription, tablets - static const IconData thinPills = IconDataThin(0xf484); + static const IconData thinPills = IconData(0xf484, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pinata icon /// /// https://fontawesome.com/icons/pinata?style=solid /// celebration, party, piñata - static const IconData solidPinata = IconDataSolid(0xe3c3); + static const IconData solidPinata = IconData(0xe3c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pinata icon /// /// https://fontawesome.com/icons/pinata?style=regular /// celebration, party, piñata - static const IconData pinata = IconDataRegular(0xe3c3); + static const IconData pinata = IconData(0xe3c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pinata icon /// /// https://fontawesome.com/icons/pinata?style=light /// celebration, party, piñata - static const IconData lightPinata = IconDataLight(0xe3c3); + static const IconData lightPinata = IconData(0xe3c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pinata icon /// /// https://fontawesome.com/icons/pinata?style=thin /// celebration, party, piñata - static const IconData thinPinata = IconDataThin(0xe3c3); + static const IconData thinPinata = IconData(0xe3c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pinball icon /// /// https://fontawesome.com/icons/pinball?style=solid /// arcade, fun, game, pinball - static const IconData solidPinball = IconDataSolid(0xe229); + static const IconData solidPinball = IconData(0xe229, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pinball icon /// /// https://fontawesome.com/icons/pinball?style=regular /// arcade, fun, game, pinball - static const IconData pinball = IconDataRegular(0xe229); + static const IconData pinball = IconData(0xe229, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pinball icon /// /// https://fontawesome.com/icons/pinball?style=light /// arcade, fun, game, pinball - static const IconData lightPinball = IconDataLight(0xe229); + static const IconData lightPinball = IconData(0xe229, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pinball icon /// /// https://fontawesome.com/icons/pinball?style=thin /// arcade, fun, game, pinball - static const IconData thinPinball = IconDataThin(0xe229); + static const IconData thinPinball = IconData(0xe229, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pineapple icon /// /// https://fontawesome.com/icons/pineapple?style=solid /// ananas, fruit, pineapple, tropical - static const IconData solidPineapple = IconDataSolid(0xe31f); + static const IconData solidPineapple = IconData(0xe31f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pineapple icon /// /// https://fontawesome.com/icons/pineapple?style=regular /// ananas, fruit, pineapple, tropical - static const IconData pineapple = IconDataRegular(0xe31f); + static const IconData pineapple = IconData(0xe31f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pineapple icon /// /// https://fontawesome.com/icons/pineapple?style=light /// ananas, fruit, pineapple, tropical - static const IconData lightPineapple = IconDataLight(0xe31f); + static const IconData lightPineapple = IconData(0xe31f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pineapple icon /// /// https://fontawesome.com/icons/pineapple?style=thin /// ananas, fruit, pineapple, tropical - static const IconData thinPineapple = IconDataThin(0xe31f); + static const IconData thinPineapple = IconData(0xe31f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Pinterest icon /// /// https://fontawesome.com/icons/pinterest?style=brands - static const IconData pinterest = IconDataBrands(0xf0d2); + static const IconData pinterest = IconData(0xf0d2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Pinterest P icon /// /// https://fontawesome.com/icons/pinterest-p?style=brands - static const IconData pinterestP = IconDataBrands(0xf231); + static const IconData pinterestP = IconData(0xf231, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pipe icon /// /// https://fontawesome.com/icons/pipe?style=solid /// Vertical Line, divider, input, line - static const IconData solidPipe = IconDataSolid(0x7c); + static const IconData solidPipe = IconData(0x7c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe icon /// /// https://fontawesome.com/icons/pipe?style=regular /// Vertical Line, divider, input, line - static const IconData pipe = IconDataRegular(0x7c); + static const IconData pipe = IconData(0x7c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe icon /// /// https://fontawesome.com/icons/pipe?style=light /// Vertical Line, divider, input, line - static const IconData lightPipe = IconDataLight(0x7c); + static const IconData lightPipe = IconData(0x7c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe icon /// /// https://fontawesome.com/icons/pipe?style=thin /// Vertical Line, divider, input, line - static const IconData thinPipe = IconDataThin(0x7c); + static const IconData thinPipe = IconData(0x7c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pipe Circle Check icon /// /// https://fontawesome.com/icons/pipe-circle-check?style=solid /// drain, enable, plumbing, supply, validate, vesda, water, working - static const IconData solidPipeCircleCheck = IconDataSolid(0xe436); + static const IconData solidPipeCircleCheck = IconData(0xe436, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe Circle Check icon /// /// https://fontawesome.com/icons/pipe-circle-check?style=regular /// drain, enable, plumbing, supply, validate, vesda, water, working - static const IconData pipeCircleCheck = IconDataRegular(0xe436); + static const IconData pipeCircleCheck = IconData(0xe436, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe Circle Check icon /// /// https://fontawesome.com/icons/pipe-circle-check?style=light /// drain, enable, plumbing, supply, validate, vesda, water, working - static const IconData lightPipeCircleCheck = IconDataLight(0xe436); + static const IconData lightPipeCircleCheck = IconData(0xe436, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe Circle Check icon /// /// https://fontawesome.com/icons/pipe-circle-check?style=thin /// drain, enable, plumbing, supply, validate, vesda, water, working - static const IconData thinPipeCircleCheck = IconDataThin(0xe436); + static const IconData thinPipeCircleCheck = IconData(0xe436, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pipe Collar icon /// /// https://fontawesome.com/icons/pipe-collar?style=solid /// drain, plumbing, supply, water - static const IconData solidPipeCollar = IconDataSolid(0xe437); + static const IconData solidPipeCollar = IconData(0xe437, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe Collar icon /// /// https://fontawesome.com/icons/pipe-collar?style=regular /// drain, plumbing, supply, water - static const IconData pipeCollar = IconDataRegular(0xe437); + static const IconData pipeCollar = IconData(0xe437, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe Collar icon /// /// https://fontawesome.com/icons/pipe-collar?style=light /// drain, plumbing, supply, water - static const IconData lightPipeCollar = IconDataLight(0xe437); + static const IconData lightPipeCollar = IconData(0xe437, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe Collar icon /// /// https://fontawesome.com/icons/pipe-collar?style=thin /// drain, plumbing, supply, water - static const IconData thinPipeCollar = IconDataThin(0xe437); + static const IconData thinPipeCollar = IconData(0xe437, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pipe Section icon /// /// https://fontawesome.com/icons/pipe-section?style=solid /// drain, plumbing, supply, water - static const IconData solidPipeSection = IconDataSolid(0xe438); + static const IconData solidPipeSection = IconData(0xe438, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe Section icon /// /// https://fontawesome.com/icons/pipe-section?style=regular /// drain, plumbing, supply, water - static const IconData pipeSection = IconDataRegular(0xe438); + static const IconData pipeSection = IconData(0xe438, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe Section icon /// /// https://fontawesome.com/icons/pipe-section?style=light /// drain, plumbing, supply, water - static const IconData lightPipeSection = IconDataLight(0xe438); + static const IconData lightPipeSection = IconData(0xe438, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe Section icon /// /// https://fontawesome.com/icons/pipe-section?style=thin /// drain, plumbing, supply, water - static const IconData thinPipeSection = IconDataThin(0xe438); + static const IconData thinPipeSection = IconData(0xe438, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pipe Smoking icon /// /// https://fontawesome.com/icons/pipe-smoking?style=solid /// pipe, smoke, tobacco - static const IconData solidPipeSmoking = IconDataSolid(0xe3c4); + static const IconData solidPipeSmoking = IconData(0xe3c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe Smoking icon /// /// https://fontawesome.com/icons/pipe-smoking?style=regular /// pipe, smoke, tobacco - static const IconData pipeSmoking = IconDataRegular(0xe3c4); + static const IconData pipeSmoking = IconData(0xe3c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe Smoking icon /// /// https://fontawesome.com/icons/pipe-smoking?style=light /// pipe, smoke, tobacco - static const IconData lightPipeSmoking = IconDataLight(0xe3c4); + static const IconData lightPipeSmoking = IconData(0xe3c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe Smoking icon /// /// https://fontawesome.com/icons/pipe-smoking?style=thin /// pipe, smoke, tobacco - static const IconData thinPipeSmoking = IconDataThin(0xe3c4); + static const IconData thinPipeSmoking = IconData(0xe3c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pipe Valve icon /// /// https://fontawesome.com/icons/pipe-valve?style=solid /// drain, plumbing, supply, water - static const IconData solidPipeValve = IconDataSolid(0xe439); + static const IconData solidPipeValve = IconData(0xe439, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pipe Valve icon /// /// https://fontawesome.com/icons/pipe-valve?style=regular /// drain, plumbing, supply, water - static const IconData pipeValve = IconDataRegular(0xe439); + static const IconData pipeValve = IconData(0xe439, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pipe Valve icon /// /// https://fontawesome.com/icons/pipe-valve?style=light /// drain, plumbing, supply, water - static const IconData lightPipeValve = IconDataLight(0xe439); + static const IconData lightPipeValve = IconData(0xe439, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pipe Valve icon /// /// https://fontawesome.com/icons/pipe-valve?style=thin /// drain, plumbing, supply, water - static const IconData thinPipeValve = IconDataThin(0xe439); + static const IconData thinPipeValve = IconData(0xe439, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Pix icon /// /// https://fontawesome.com/icons/pix?style=brands - static const IconData pix = IconDataBrands(0xe43a); + static const IconData pix = IconData(0xe43a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Pixiv icon /// /// https://fontawesome.com/icons/pixiv?style=brands - static const IconData pixiv = IconDataBrands(0xe640); + static const IconData pixiv = IconData(0xe640, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Pizza icon /// /// https://fontawesome.com/icons/pizza?style=solid /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, pizza, slice, teenage mutant ninja turtles, tomato - static const IconData solidPizza = IconDataSolid(0xf817); + static const IconData solidPizza = IconData(0xf817, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pizza icon /// /// https://fontawesome.com/icons/pizza?style=regular /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, pizza, slice, teenage mutant ninja turtles, tomato - static const IconData pizza = IconDataRegular(0xf817); + static const IconData pizza = IconData(0xf817, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pizza icon /// /// https://fontawesome.com/icons/pizza?style=light /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, pizza, slice, teenage mutant ninja turtles, tomato - static const IconData lightPizza = IconDataLight(0xf817); + static const IconData lightPizza = IconData(0xf817, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pizza icon /// /// https://fontawesome.com/icons/pizza?style=thin /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, pizza, slice, teenage mutant ninja turtles, tomato - static const IconData thinPizza = IconDataThin(0xf817); + static const IconData thinPizza = IconData(0xf817, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pizza Slice icon /// /// https://fontawesome.com/icons/pizza-slice?style=solid /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData solidPizzaSlice = IconDataSolid(0xf818); + static const IconData solidPizzaSlice = IconData(0xf818, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pizza Slice icon /// /// https://fontawesome.com/icons/pizza-slice?style=regular /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData pizzaSlice = IconDataRegular(0xf818); + static const IconData pizzaSlice = IconData(0xf818, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pizza Slice icon /// /// https://fontawesome.com/icons/pizza-slice?style=light /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData lightPizzaSlice = IconDataLight(0xf818); + static const IconData lightPizzaSlice = IconData(0xf818, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pizza Slice icon /// /// https://fontawesome.com/icons/pizza-slice?style=thin /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData thinPizzaSlice = IconDataThin(0xf818); + static const IconData thinPizzaSlice = IconData(0xf818, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Place Of Worship icon /// /// https://fontawesome.com/icons/place-of-worship?style=solid /// building, church, holy, mosque, synagogue - static const IconData solidPlaceOfWorship = IconDataSolid(0xf67f); + static const IconData solidPlaceOfWorship = IconData(0xf67f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Place Of Worship icon /// /// https://fontawesome.com/icons/place-of-worship?style=regular /// building, church, holy, mosque, synagogue - static const IconData placeOfWorship = IconDataRegular(0xf67f); + static const IconData placeOfWorship = IconData(0xf67f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Place Of Worship icon /// /// https://fontawesome.com/icons/place-of-worship?style=light /// building, church, holy, mosque, synagogue - static const IconData lightPlaceOfWorship = IconDataLight(0xf67f); + static const IconData lightPlaceOfWorship = IconData(0xf67f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Place Of Worship icon /// /// https://fontawesome.com/icons/place-of-worship?style=thin /// building, church, holy, mosque, synagogue - static const IconData thinPlaceOfWorship = IconDataThin(0xf67f); + static const IconData thinPlaceOfWorship = IconData(0xf67f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane icon /// /// https://fontawesome.com/icons/plane?style=solid /// airplane, airport, destination, fly, location, mode, travel, trip - static const IconData solidPlane = IconDataSolid(0xf072); + static const IconData solidPlane = IconData(0xf072, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane icon /// /// https://fontawesome.com/icons/plane?style=regular /// airplane, airport, destination, fly, location, mode, travel, trip - static const IconData plane = IconDataRegular(0xf072); + static const IconData plane = IconData(0xf072, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane icon /// /// https://fontawesome.com/icons/plane?style=light /// airplane, airport, destination, fly, location, mode, travel, trip - static const IconData lightPlane = IconDataLight(0xf072); + static const IconData lightPlane = IconData(0xf072, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane icon /// /// https://fontawesome.com/icons/plane?style=thin /// airplane, airport, destination, fly, location, mode, travel, trip - static const IconData thinPlane = IconDataThin(0xf072); + static const IconData thinPlane = IconData(0xf072, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Arrival icon /// /// https://fontawesome.com/icons/plane-arrival?style=solid /// aeroplane, airplane, airplane arrival, airport, arrivals, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData solidPlaneArrival = IconDataSolid(0xf5af); + static const IconData solidPlaneArrival = IconData(0xf5af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Arrival icon /// /// https://fontawesome.com/icons/plane-arrival?style=regular /// aeroplane, airplane, airplane arrival, airport, arrivals, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData planeArrival = IconDataRegular(0xf5af); + static const IconData planeArrival = IconData(0xf5af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Arrival icon /// /// https://fontawesome.com/icons/plane-arrival?style=light /// aeroplane, airplane, airplane arrival, airport, arrivals, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData lightPlaneArrival = IconDataLight(0xf5af); + static const IconData lightPlaneArrival = IconData(0xf5af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Arrival icon /// /// https://fontawesome.com/icons/plane-arrival?style=thin /// aeroplane, airplane, airplane arrival, airport, arrivals, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData thinPlaneArrival = IconDataThin(0xf5af); + static const IconData thinPlaneArrival = IconData(0xf5af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Circle Check icon /// /// https://fontawesome.com/icons/plane-circle-check?style=solid /// airplane, airport, enable, flight, fly, not affected, ok, okay, travel, validate, working - static const IconData solidPlaneCircleCheck = IconDataSolid(0xe555); + static const IconData solidPlaneCircleCheck = IconData(0xe555, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Circle Check icon /// /// https://fontawesome.com/icons/plane-circle-check?style=regular /// airplane, airport, enable, flight, fly, not affected, ok, okay, travel, validate, working - static const IconData planeCircleCheck = IconDataRegular(0xe555); + static const IconData planeCircleCheck = IconData(0xe555, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Circle Check icon /// /// https://fontawesome.com/icons/plane-circle-check?style=light /// airplane, airport, enable, flight, fly, not affected, ok, okay, travel, validate, working - static const IconData lightPlaneCircleCheck = IconDataLight(0xe555); + static const IconData lightPlaneCircleCheck = IconData(0xe555, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Circle Check icon /// /// https://fontawesome.com/icons/plane-circle-check?style=thin /// airplane, airport, enable, flight, fly, not affected, ok, okay, travel, validate, working - static const IconData thinPlaneCircleCheck = IconDataThin(0xe555); + static const IconData thinPlaneCircleCheck = IconData(0xe555, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Circle Exclamation icon /// /// https://fontawesome.com/icons/plane-circle-exclamation?style=solid /// affected, airplane, airport, failed, flight, fly, travel - static const IconData solidPlaneCircleExclamation = IconDataSolid(0xe556); + static const IconData solidPlaneCircleExclamation = IconData(0xe556, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Circle Exclamation icon /// /// https://fontawesome.com/icons/plane-circle-exclamation?style=regular /// affected, airplane, airport, failed, flight, fly, travel - static const IconData planeCircleExclamation = IconDataRegular(0xe556); + static const IconData planeCircleExclamation = IconData(0xe556, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Circle Exclamation icon /// /// https://fontawesome.com/icons/plane-circle-exclamation?style=light /// affected, airplane, airport, failed, flight, fly, travel - static const IconData lightPlaneCircleExclamation = IconDataLight(0xe556); + static const IconData lightPlaneCircleExclamation = IconData(0xe556, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Circle Exclamation icon /// /// https://fontawesome.com/icons/plane-circle-exclamation?style=thin /// affected, airplane, airport, failed, flight, fly, travel - static const IconData thinPlaneCircleExclamation = IconDataThin(0xe556); + static const IconData thinPlaneCircleExclamation = IconData(0xe556, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Circle Xmark icon /// /// https://fontawesome.com/icons/plane-circle-xmark?style=solid /// airplane, airport, destroy, flight, fly, travel, uncheck - static const IconData solidPlaneCircleXmark = IconDataSolid(0xe557); + static const IconData solidPlaneCircleXmark = IconData(0xe557, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Circle Xmark icon /// /// https://fontawesome.com/icons/plane-circle-xmark?style=regular /// airplane, airport, destroy, flight, fly, travel, uncheck - static const IconData planeCircleXmark = IconDataRegular(0xe557); + static const IconData planeCircleXmark = IconData(0xe557, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Circle Xmark icon /// /// https://fontawesome.com/icons/plane-circle-xmark?style=light /// airplane, airport, destroy, flight, fly, travel, uncheck - static const IconData lightPlaneCircleXmark = IconDataLight(0xe557); + static const IconData lightPlaneCircleXmark = IconData(0xe557, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Circle Xmark icon /// /// https://fontawesome.com/icons/plane-circle-xmark?style=thin /// airplane, airport, destroy, flight, fly, travel, uncheck - static const IconData thinPlaneCircleXmark = IconDataThin(0xe557); + static const IconData thinPlaneCircleXmark = IconData(0xe557, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Departure icon /// /// https://fontawesome.com/icons/plane-departure?style=solid /// aeroplane, airplane, airplane departure, airport, check-in, departing, departure, departures, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData solidPlaneDeparture = IconDataSolid(0xf5b0); + static const IconData solidPlaneDeparture = IconData(0xf5b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Departure icon /// /// https://fontawesome.com/icons/plane-departure?style=regular /// aeroplane, airplane, airplane departure, airport, check-in, departing, departure, departures, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData planeDeparture = IconDataRegular(0xf5b0); + static const IconData planeDeparture = IconData(0xf5b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Departure icon /// /// https://fontawesome.com/icons/plane-departure?style=light /// aeroplane, airplane, airplane departure, airport, check-in, departing, departure, departures, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData lightPlaneDeparture = IconDataLight(0xf5b0); + static const IconData lightPlaneDeparture = IconData(0xf5b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Departure icon /// /// https://fontawesome.com/icons/plane-departure?style=thin /// aeroplane, airplane, airplane departure, airport, check-in, departing, departure, departures, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData thinPlaneDeparture = IconDataThin(0xf5b0); + static const IconData thinPlaneDeparture = IconData(0xf5b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Engines icon /// /// https://fontawesome.com/icons/plane-engines?style=solid /// aeroplane, airplane, airport, destination, fly, location, mode, travel, trip - static const IconData solidPlaneEngines = IconDataSolid(0xf3de); + static const IconData solidPlaneEngines = IconData(0xf3de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias plane-alt for icon [solidPlaneEngines] @Deprecated('Use "solidPlaneEngines" instead.') @@ -67808,7 +67808,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plane-engines?style=regular /// aeroplane, airplane, airport, destination, fly, location, mode, travel, trip - static const IconData planeEngines = IconDataRegular(0xf3de); + static const IconData planeEngines = IconData(0xf3de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias plane-alt for icon [planeEngines] @Deprecated('Use "planeEngines" instead.') @@ -67818,7 +67818,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plane-engines?style=light /// aeroplane, airplane, airport, destination, fly, location, mode, travel, trip - static const IconData lightPlaneEngines = IconDataLight(0xf3de); + static const IconData lightPlaneEngines = IconData(0xf3de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias plane-alt for icon [lightPlaneEngines] @Deprecated('Use "lightPlaneEngines" instead.') @@ -67828,7 +67828,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plane-engines?style=thin /// aeroplane, airplane, airport, destination, fly, location, mode, travel, trip - static const IconData thinPlaneEngines = IconDataThin(0xf3de); + static const IconData thinPlaneEngines = IconData(0xf3de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias plane-alt for icon [thinPlaneEngines] @Deprecated('Use "thinPlaneEngines" instead.') @@ -67838,492 +67838,492 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plane-lock?style=solid /// airplane, airport, closed, flight, fly, lockdown, padlock, privacy, quarantine, travel - static const IconData solidPlaneLock = IconDataSolid(0xe558); + static const IconData solidPlaneLock = IconData(0xe558, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Lock icon /// /// https://fontawesome.com/icons/plane-lock?style=regular /// airplane, airport, closed, flight, fly, lockdown, padlock, privacy, quarantine, travel - static const IconData planeLock = IconDataRegular(0xe558); + static const IconData planeLock = IconData(0xe558, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Lock icon /// /// https://fontawesome.com/icons/plane-lock?style=light /// airplane, airport, closed, flight, fly, lockdown, padlock, privacy, quarantine, travel - static const IconData lightPlaneLock = IconDataLight(0xe558); + static const IconData lightPlaneLock = IconData(0xe558, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Lock icon /// /// https://fontawesome.com/icons/plane-lock?style=thin /// airplane, airport, closed, flight, fly, lockdown, padlock, privacy, quarantine, travel - static const IconData thinPlaneLock = IconDataThin(0xe558); + static const IconData thinPlaneLock = IconData(0xe558, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Prop icon /// /// https://fontawesome.com/icons/plane-prop?style=solid /// aeroplane, airplane, airport, fly, sky, small airplane - static const IconData solidPlaneProp = IconDataSolid(0xe22b); + static const IconData solidPlaneProp = IconData(0xe22b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Prop icon /// /// https://fontawesome.com/icons/plane-prop?style=regular /// aeroplane, airplane, airport, fly, sky, small airplane - static const IconData planeProp = IconDataRegular(0xe22b); + static const IconData planeProp = IconData(0xe22b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Prop icon /// /// https://fontawesome.com/icons/plane-prop?style=light /// aeroplane, airplane, airport, fly, sky, small airplane - static const IconData lightPlaneProp = IconDataLight(0xe22b); + static const IconData lightPlaneProp = IconData(0xe22b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Prop icon /// /// https://fontawesome.com/icons/plane-prop?style=thin /// aeroplane, airplane, airport, fly, sky, small airplane - static const IconData thinPlaneProp = IconDataThin(0xe22b); + static const IconData thinPlaneProp = IconData(0xe22b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Slash icon /// /// https://fontawesome.com/icons/plane-slash?style=solid /// airplane mode, airport, canceled, covid-19, delayed, disabled, grounded, travel - static const IconData solidPlaneSlash = IconDataSolid(0xe069); + static const IconData solidPlaneSlash = IconData(0xe069, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Slash icon /// /// https://fontawesome.com/icons/plane-slash?style=regular /// airplane mode, airport, canceled, covid-19, delayed, disabled, grounded, travel - static const IconData planeSlash = IconDataRegular(0xe069); + static const IconData planeSlash = IconData(0xe069, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Slash icon /// /// https://fontawesome.com/icons/plane-slash?style=light /// airplane mode, airport, canceled, covid-19, delayed, disabled, grounded, travel - static const IconData lightPlaneSlash = IconDataLight(0xe069); + static const IconData lightPlaneSlash = IconData(0xe069, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Slash icon /// /// https://fontawesome.com/icons/plane-slash?style=thin /// airplane mode, airport, canceled, covid-19, delayed, disabled, grounded, travel - static const IconData thinPlaneSlash = IconDataThin(0xe069); + static const IconData thinPlaneSlash = IconData(0xe069, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Tail icon /// /// https://fontawesome.com/icons/plane-tail?style=solid /// airplane, airport, fly, sky - static const IconData solidPlaneTail = IconDataSolid(0xe22c); + static const IconData solidPlaneTail = IconData(0xe22c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Tail icon /// /// https://fontawesome.com/icons/plane-tail?style=regular /// airplane, airport, fly, sky - static const IconData planeTail = IconDataRegular(0xe22c); + static const IconData planeTail = IconData(0xe22c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Tail icon /// /// https://fontawesome.com/icons/plane-tail?style=light /// airplane, airport, fly, sky - static const IconData lightPlaneTail = IconDataLight(0xe22c); + static const IconData lightPlaneTail = IconData(0xe22c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Tail icon /// /// https://fontawesome.com/icons/plane-tail?style=thin /// airplane, airport, fly, sky - static const IconData thinPlaneTail = IconDataThin(0xe22c); + static const IconData thinPlaneTail = IconData(0xe22c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Up icon /// /// https://fontawesome.com/icons/plane-up?style=solid /// airplane, airport, internet, signal, sky, wifi, wireless - static const IconData solidPlaneUp = IconDataSolid(0xe22d); + static const IconData solidPlaneUp = IconData(0xe22d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Up icon /// /// https://fontawesome.com/icons/plane-up?style=regular /// airplane, airport, internet, signal, sky, wifi, wireless - static const IconData planeUp = IconDataRegular(0xe22d); + static const IconData planeUp = IconData(0xe22d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Up icon /// /// https://fontawesome.com/icons/plane-up?style=light /// airplane, airport, internet, signal, sky, wifi, wireless - static const IconData lightPlaneUp = IconDataLight(0xe22d); + static const IconData lightPlaneUp = IconData(0xe22d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Up icon /// /// https://fontawesome.com/icons/plane-up?style=thin /// airplane, airport, internet, signal, sky, wifi, wireless - static const IconData thinPlaneUp = IconDataThin(0xe22d); + static const IconData thinPlaneUp = IconData(0xe22d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plane Up Slash icon /// /// https://fontawesome.com/icons/plane-up-slash?style=solid /// airplane, airport, disabled, internet, signal, sky, wifi, wireless - static const IconData solidPlaneUpSlash = IconDataSolid(0xe22e); + static const IconData solidPlaneUpSlash = IconData(0xe22e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plane Up Slash icon /// /// https://fontawesome.com/icons/plane-up-slash?style=regular /// airplane, airport, disabled, internet, signal, sky, wifi, wireless - static const IconData planeUpSlash = IconDataRegular(0xe22e); + static const IconData planeUpSlash = IconData(0xe22e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plane Up Slash icon /// /// https://fontawesome.com/icons/plane-up-slash?style=light /// airplane, airport, disabled, internet, signal, sky, wifi, wireless - static const IconData lightPlaneUpSlash = IconDataLight(0xe22e); + static const IconData lightPlaneUpSlash = IconData(0xe22e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plane Up Slash icon /// /// https://fontawesome.com/icons/plane-up-slash?style=thin /// airplane, airport, disabled, internet, signal, sky, wifi, wireless - static const IconData thinPlaneUpSlash = IconDataThin(0xe22e); + static const IconData thinPlaneUpSlash = IconData(0xe22e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Planet Moon icon /// /// https://fontawesome.com/icons/planet-moon?style=solid /// earth, natural satellite, orbit, solar system, space, universe - static const IconData solidPlanetMoon = IconDataSolid(0xe01f); + static const IconData solidPlanetMoon = IconData(0xe01f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Planet Moon icon /// /// https://fontawesome.com/icons/planet-moon?style=regular /// earth, natural satellite, orbit, solar system, space, universe - static const IconData planetMoon = IconDataRegular(0xe01f); + static const IconData planetMoon = IconData(0xe01f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Planet Moon icon /// /// https://fontawesome.com/icons/planet-moon?style=light /// earth, natural satellite, orbit, solar system, space, universe - static const IconData lightPlanetMoon = IconDataLight(0xe01f); + static const IconData lightPlanetMoon = IconData(0xe01f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Planet Moon icon /// /// https://fontawesome.com/icons/planet-moon?style=thin /// earth, natural satellite, orbit, solar system, space, universe - static const IconData thinPlanetMoon = IconDataThin(0xe01f); + static const IconData thinPlanetMoon = IconData(0xe01f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Planet Ringed icon /// /// https://fontawesome.com/icons/planet-ringed?style=solid /// orbit, premium, ringed planet, saturn, saturnine, solar system, space, universe - static const IconData solidPlanetRinged = IconDataSolid(0xe020); + static const IconData solidPlanetRinged = IconData(0xe020, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Planet Ringed icon /// /// https://fontawesome.com/icons/planet-ringed?style=regular /// orbit, premium, ringed planet, saturn, saturnine, solar system, space, universe - static const IconData planetRinged = IconDataRegular(0xe020); + static const IconData planetRinged = IconData(0xe020, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Planet Ringed icon /// /// https://fontawesome.com/icons/planet-ringed?style=light /// orbit, premium, ringed planet, saturn, saturnine, solar system, space, universe - static const IconData lightPlanetRinged = IconDataLight(0xe020); + static const IconData lightPlanetRinged = IconData(0xe020, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Planet Ringed icon /// /// https://fontawesome.com/icons/planet-ringed?style=thin /// orbit, premium, ringed planet, saturn, saturnine, solar system, space, universe - static const IconData thinPlanetRinged = IconDataThin(0xe020); + static const IconData thinPlanetRinged = IconData(0xe020, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plant Wilt icon /// /// https://fontawesome.com/icons/plant-wilt?style=solid /// drought, planting, vegetation, wilt - static const IconData solidPlantWilt = IconDataSolid(0xe5aa); + static const IconData solidPlantWilt = IconData(0xe5aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plant Wilt icon /// /// https://fontawesome.com/icons/plant-wilt?style=regular /// drought, planting, vegetation, wilt - static const IconData plantWilt = IconDataRegular(0xe5aa); + static const IconData plantWilt = IconData(0xe5aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plant Wilt icon /// /// https://fontawesome.com/icons/plant-wilt?style=light /// drought, planting, vegetation, wilt - static const IconData lightPlantWilt = IconDataLight(0xe5aa); + static const IconData lightPlantWilt = IconData(0xe5aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plant Wilt icon /// /// https://fontawesome.com/icons/plant-wilt?style=thin /// drought, planting, vegetation, wilt - static const IconData thinPlantWilt = IconDataThin(0xe5aa); + static const IconData thinPlantWilt = IconData(0xe5aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plate Utensils icon /// /// https://fontawesome.com/icons/plate-utensils?style=solid /// dinner, food, fork, knife, plate - static const IconData solidPlateUtensils = IconDataSolid(0xe43b); + static const IconData solidPlateUtensils = IconData(0xe43b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plate Utensils icon /// /// https://fontawesome.com/icons/plate-utensils?style=regular /// dinner, food, fork, knife, plate - static const IconData plateUtensils = IconDataRegular(0xe43b); + static const IconData plateUtensils = IconData(0xe43b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plate Utensils icon /// /// https://fontawesome.com/icons/plate-utensils?style=light /// dinner, food, fork, knife, plate - static const IconData lightPlateUtensils = IconDataLight(0xe43b); + static const IconData lightPlateUtensils = IconData(0xe43b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plate Utensils icon /// /// https://fontawesome.com/icons/plate-utensils?style=thin /// dinner, food, fork, knife, plate - static const IconData thinPlateUtensils = IconDataThin(0xe43b); + static const IconData thinPlateUtensils = IconData(0xe43b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plate Wheat icon /// /// https://fontawesome.com/icons/plate-wheat?style=solid /// bowl, hunger, rations, wheat - static const IconData solidPlateWheat = IconDataSolid(0xe55a); + static const IconData solidPlateWheat = IconData(0xe55a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plate Wheat icon /// /// https://fontawesome.com/icons/plate-wheat?style=regular /// bowl, hunger, rations, wheat - static const IconData plateWheat = IconDataRegular(0xe55a); + static const IconData plateWheat = IconData(0xe55a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plate Wheat icon /// /// https://fontawesome.com/icons/plate-wheat?style=light /// bowl, hunger, rations, wheat - static const IconData lightPlateWheat = IconDataLight(0xe55a); + static const IconData lightPlateWheat = IconData(0xe55a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plate Wheat icon /// /// https://fontawesome.com/icons/plate-wheat?style=thin /// bowl, hunger, rations, wheat - static const IconData thinPlateWheat = IconDataThin(0xe55a); + static const IconData thinPlateWheat = IconData(0xe55a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Play icon /// /// https://fontawesome.com/icons/play?style=solid /// arrow, audio, music, play, play button, playing, right, sound, start, triangle, video - static const IconData solidPlay = IconDataSolid(0xf04b); + static const IconData solidPlay = IconData(0xf04b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Play icon /// /// https://fontawesome.com/icons/play?style=regular /// arrow, audio, music, play, play button, playing, right, sound, start, triangle, video - static const IconData play = IconDataRegular(0xf04b); + static const IconData play = IconData(0xf04b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Play icon /// /// https://fontawesome.com/icons/play?style=light /// arrow, audio, music, play, play button, playing, right, sound, start, triangle, video - static const IconData lightPlay = IconDataLight(0xf04b); + static const IconData lightPlay = IconData(0xf04b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Play icon /// /// https://fontawesome.com/icons/play?style=thin /// arrow, audio, music, play, play button, playing, right, sound, start, triangle, video - static const IconData thinPlay = IconDataThin(0xf04b); + static const IconData thinPlay = IconData(0xf04b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Play Pause icon /// /// https://fontawesome.com/icons/play-pause?style=solid /// arrow, pause, play, play or pause button, right, stop, triangle - static const IconData solidPlayPause = IconDataSolid(0xe22f); + static const IconData solidPlayPause = IconData(0xe22f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Play Pause icon /// /// https://fontawesome.com/icons/play-pause?style=regular /// arrow, pause, play, play or pause button, right, stop, triangle - static const IconData playPause = IconDataRegular(0xe22f); + static const IconData playPause = IconData(0xe22f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Play Pause icon /// /// https://fontawesome.com/icons/play-pause?style=light /// arrow, pause, play, play or pause button, right, stop, triangle - static const IconData lightPlayPause = IconDataLight(0xe22f); + static const IconData lightPlayPause = IconData(0xe22f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Play Pause icon /// /// https://fontawesome.com/icons/play-pause?style=thin /// arrow, pause, play, play or pause button, right, stop, triangle - static const IconData thinPlayPause = IconDataThin(0xe22f); + static const IconData thinPlayPause = IconData(0xe22f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands PlayStation icon /// /// https://fontawesome.com/icons/playstation?style=brands - static const IconData playstation = IconDataBrands(0xf3df); + static const IconData playstation = IconData(0xf3df, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Plug icon /// /// https://fontawesome.com/icons/plug?style=solid /// connect, electric, electric plug, electricity, online, plug, power - static const IconData solidPlug = IconDataSolid(0xf1e6); + static const IconData solidPlug = IconData(0xf1e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug icon /// /// https://fontawesome.com/icons/plug?style=regular /// connect, electric, electric plug, electricity, online, plug, power - static const IconData plug = IconDataRegular(0xf1e6); + static const IconData plug = IconData(0xf1e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug icon /// /// https://fontawesome.com/icons/plug?style=light /// connect, electric, electric plug, electricity, online, plug, power - static const IconData lightPlug = IconDataLight(0xf1e6); + static const IconData lightPlug = IconData(0xf1e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug icon /// /// https://fontawesome.com/icons/plug?style=thin /// connect, electric, electric plug, electricity, online, plug, power - static const IconData thinPlug = IconDataThin(0xf1e6); + static const IconData thinPlug = IconData(0xf1e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Bolt icon /// /// https://fontawesome.com/icons/plug-circle-bolt?style=solid /// electric, electricity, plug, power - static const IconData solidPlugCircleBolt = IconDataSolid(0xe55b); + static const IconData solidPlugCircleBolt = IconData(0xe55b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Bolt icon /// /// https://fontawesome.com/icons/plug-circle-bolt?style=regular /// electric, electricity, plug, power - static const IconData plugCircleBolt = IconDataRegular(0xe55b); + static const IconData plugCircleBolt = IconData(0xe55b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Bolt icon /// /// https://fontawesome.com/icons/plug-circle-bolt?style=light /// electric, electricity, plug, power - static const IconData lightPlugCircleBolt = IconDataLight(0xe55b); + static const IconData lightPlugCircleBolt = IconData(0xe55b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Bolt icon /// /// https://fontawesome.com/icons/plug-circle-bolt?style=thin /// electric, electricity, plug, power - static const IconData thinPlugCircleBolt = IconDataThin(0xe55b); + static const IconData thinPlugCircleBolt = IconData(0xe55b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Check icon /// /// https://fontawesome.com/icons/plug-circle-check?style=solid /// electric, electricity, enable, not affected, ok, okay, plug, power, validate, working - static const IconData solidPlugCircleCheck = IconDataSolid(0xe55c); + static const IconData solidPlugCircleCheck = IconData(0xe55c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Check icon /// /// https://fontawesome.com/icons/plug-circle-check?style=regular /// electric, electricity, enable, not affected, ok, okay, plug, power, validate, working - static const IconData plugCircleCheck = IconDataRegular(0xe55c); + static const IconData plugCircleCheck = IconData(0xe55c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Check icon /// /// https://fontawesome.com/icons/plug-circle-check?style=light /// electric, electricity, enable, not affected, ok, okay, plug, power, validate, working - static const IconData lightPlugCircleCheck = IconDataLight(0xe55c); + static const IconData lightPlugCircleCheck = IconData(0xe55c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Check icon /// /// https://fontawesome.com/icons/plug-circle-check?style=thin /// electric, electricity, enable, not affected, ok, okay, plug, power, validate, working - static const IconData thinPlugCircleCheck = IconDataThin(0xe55c); + static const IconData thinPlugCircleCheck = IconData(0xe55c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Exclamation icon /// /// https://fontawesome.com/icons/plug-circle-exclamation?style=solid /// affected, electric, electricity, failed, plug, power - static const IconData solidPlugCircleExclamation = IconDataSolid(0xe55d); + static const IconData solidPlugCircleExclamation = IconData(0xe55d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Exclamation icon /// /// https://fontawesome.com/icons/plug-circle-exclamation?style=regular /// affected, electric, electricity, failed, plug, power - static const IconData plugCircleExclamation = IconDataRegular(0xe55d); + static const IconData plugCircleExclamation = IconData(0xe55d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Exclamation icon /// /// https://fontawesome.com/icons/plug-circle-exclamation?style=light /// affected, electric, electricity, failed, plug, power - static const IconData lightPlugCircleExclamation = IconDataLight(0xe55d); + static const IconData lightPlugCircleExclamation = IconData(0xe55d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Exclamation icon /// /// https://fontawesome.com/icons/plug-circle-exclamation?style=thin /// affected, electric, electricity, failed, plug, power - static const IconData thinPlugCircleExclamation = IconDataThin(0xe55d); + static const IconData thinPlugCircleExclamation = IconData(0xe55d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Minus icon /// /// https://fontawesome.com/icons/plug-circle-minus?style=solid /// disconnect, electric, electricity, plug, power - static const IconData solidPlugCircleMinus = IconDataSolid(0xe55e); + static const IconData solidPlugCircleMinus = IconData(0xe55e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Minus icon /// /// https://fontawesome.com/icons/plug-circle-minus?style=regular /// disconnect, electric, electricity, plug, power - static const IconData plugCircleMinus = IconDataRegular(0xe55e); + static const IconData plugCircleMinus = IconData(0xe55e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Minus icon /// /// https://fontawesome.com/icons/plug-circle-minus?style=light /// disconnect, electric, electricity, plug, power - static const IconData lightPlugCircleMinus = IconDataLight(0xe55e); + static const IconData lightPlugCircleMinus = IconData(0xe55e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Minus icon /// /// https://fontawesome.com/icons/plug-circle-minus?style=thin /// disconnect, electric, electricity, plug, power - static const IconData thinPlugCircleMinus = IconDataThin(0xe55e); + static const IconData thinPlugCircleMinus = IconData(0xe55e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Plus icon /// /// https://fontawesome.com/icons/plug-circle-plus?style=solid /// electric, electricity, plug, power - static const IconData solidPlugCirclePlus = IconDataSolid(0xe55f); + static const IconData solidPlugCirclePlus = IconData(0xe55f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Plus icon /// /// https://fontawesome.com/icons/plug-circle-plus?style=regular /// electric, electricity, plug, power - static const IconData plugCirclePlus = IconDataRegular(0xe55f); + static const IconData plugCirclePlus = IconData(0xe55f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Plus icon /// /// https://fontawesome.com/icons/plug-circle-plus?style=light /// electric, electricity, plug, power - static const IconData lightPlugCirclePlus = IconDataLight(0xe55f); + static const IconData lightPlugCirclePlus = IconData(0xe55f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Plus icon /// /// https://fontawesome.com/icons/plug-circle-plus?style=thin /// electric, electricity, plug, power - static const IconData thinPlugCirclePlus = IconDataThin(0xe55f); + static const IconData thinPlugCirclePlus = IconData(0xe55f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plug Circle Xmark icon /// /// https://fontawesome.com/icons/plug-circle-xmark?style=solid /// destroy, disconnect, electric, electricity, outage, plug, power, uncheck - static const IconData solidPlugCircleXmark = IconDataSolid(0xe560); + static const IconData solidPlugCircleXmark = IconData(0xe560, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plug Circle Xmark icon /// /// https://fontawesome.com/icons/plug-circle-xmark?style=regular /// destroy, disconnect, electric, electricity, outage, plug, power, uncheck - static const IconData plugCircleXmark = IconDataRegular(0xe560); + static const IconData plugCircleXmark = IconData(0xe560, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plug Circle Xmark icon /// /// https://fontawesome.com/icons/plug-circle-xmark?style=light /// destroy, disconnect, electric, electricity, outage, plug, power, uncheck - static const IconData lightPlugCircleXmark = IconDataLight(0xe560); + static const IconData lightPlugCircleXmark = IconData(0xe560, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plug Circle Xmark icon /// /// https://fontawesome.com/icons/plug-circle-xmark?style=thin /// destroy, disconnect, electric, electricity, outage, plug, power, uncheck - static const IconData thinPlugCircleXmark = IconDataThin(0xe560); + static const IconData thinPlugCircleXmark = IconData(0xe560, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plus icon /// /// https://fontawesome.com/icons/plus?style=solid /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData solidPlus = IconDataSolid(0x2b); + static const IconData solidPlus = IconData(0x2b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias add for icon [solidPlus] @Deprecated('Use "solidPlus" instead.') @@ -68333,7 +68333,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plus?style=regular /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData plus = IconDataRegular(0x2b); + static const IconData plus = IconData(0x2b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias add for icon [plus] @Deprecated('Use "plus" instead.') @@ -68343,7 +68343,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plus?style=light /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData lightPlus = IconDataLight(0x2b); + static const IconData lightPlus = IconData(0x2b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias add for icon [lightPlus] @Deprecated('Use "lightPlus" instead.') @@ -68353,7 +68353,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plus?style=thin /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData thinPlus = IconDataThin(0x2b); + static const IconData thinPlus = IconData(0x2b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias add for icon [thinPlus] @Deprecated('Use "thinPlus" instead.') @@ -68363,223 +68363,223 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/plus-large?style=solid /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData solidPlusLarge = IconDataSolid(0xe59e); + static const IconData solidPlusLarge = IconData(0xe59e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plus Large icon /// /// https://fontawesome.com/icons/plus-large?style=regular /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData plusLarge = IconDataRegular(0xe59e); + static const IconData plusLarge = IconData(0xe59e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plus Large icon /// /// https://fontawesome.com/icons/plus-large?style=light /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData lightPlusLarge = IconDataLight(0xe59e); + static const IconData lightPlusLarge = IconData(0xe59e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plus Large icon /// /// https://fontawesome.com/icons/plus-large?style=thin /// +, Plus Sign, add, create, expand, follow, math, modify, new, plus, positive, shape, sign - static const IconData thinPlusLarge = IconDataThin(0xe59e); + static const IconData thinPlusLarge = IconData(0xe59e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Plus Minus icon /// /// https://fontawesome.com/icons/plus-minus?style=solid /// Plus-Minus Sign, add, math, subtract - static const IconData solidPlusMinus = IconDataSolid(0xe43c); + static const IconData solidPlusMinus = IconData(0xe43c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Plus Minus icon /// /// https://fontawesome.com/icons/plus-minus?style=regular /// Plus-Minus Sign, add, math, subtract - static const IconData plusMinus = IconDataRegular(0xe43c); + static const IconData plusMinus = IconData(0xe43c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Plus Minus icon /// /// https://fontawesome.com/icons/plus-minus?style=light /// Plus-Minus Sign, add, math, subtract - static const IconData lightPlusMinus = IconDataLight(0xe43c); + static const IconData lightPlusMinus = IconData(0xe43c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Plus Minus icon /// /// https://fontawesome.com/icons/plus-minus?style=thin /// Plus-Minus Sign, add, math, subtract - static const IconData thinPlusMinus = IconDataThin(0xe43c); + static const IconData thinPlusMinus = IconData(0xe43c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Podcast icon /// /// https://fontawesome.com/icons/podcast?style=solid /// audio, broadcast, music, sound - static const IconData solidPodcast = IconDataSolid(0xf2ce); + static const IconData solidPodcast = IconData(0xf2ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Podcast icon /// /// https://fontawesome.com/icons/podcast?style=regular /// audio, broadcast, music, sound - static const IconData podcast = IconDataRegular(0xf2ce); + static const IconData podcast = IconData(0xf2ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Podcast icon /// /// https://fontawesome.com/icons/podcast?style=light /// audio, broadcast, music, sound - static const IconData lightPodcast = IconDataLight(0xf2ce); + static const IconData lightPodcast = IconData(0xf2ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Podcast icon /// /// https://fontawesome.com/icons/podcast?style=thin /// audio, broadcast, music, sound - static const IconData thinPodcast = IconDataThin(0xf2ce); + static const IconData thinPodcast = IconData(0xf2ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Podium icon /// /// https://fontawesome.com/icons/podium?style=solid /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData solidPodium = IconDataSolid(0xf680); + static const IconData solidPodium = IconData(0xf680, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Podium icon /// /// https://fontawesome.com/icons/podium?style=regular /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData podium = IconDataRegular(0xf680); + static const IconData podium = IconData(0xf680, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Podium icon /// /// https://fontawesome.com/icons/podium?style=light /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData lightPodium = IconDataLight(0xf680); + static const IconData lightPodium = IconData(0xf680, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Podium icon /// /// https://fontawesome.com/icons/podium?style=thin /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData thinPodium = IconDataThin(0xf680); + static const IconData thinPodium = IconData(0xf680, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Podium Star icon /// /// https://fontawesome.com/icons/podium-star?style=solid /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData solidPodiumStar = IconDataSolid(0xf758); + static const IconData solidPodiumStar = IconData(0xf758, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Podium Star icon /// /// https://fontawesome.com/icons/podium-star?style=regular /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData podiumStar = IconDataRegular(0xf758); + static const IconData podiumStar = IconData(0xf758, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Podium Star icon /// /// https://fontawesome.com/icons/podium-star?style=light /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData lightPodiumStar = IconDataLight(0xf758); + static const IconData lightPodiumStar = IconData(0xf758, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Podium Star icon /// /// https://fontawesome.com/icons/podium-star?style=thin /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData thinPodiumStar = IconDataThin(0xf758); + static const IconData thinPodiumStar = IconData(0xf758, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Police Box icon /// /// https://fontawesome.com/icons/police-box?style=solid /// doctor who, tardis, time and relative dimension in space, time machine, time travel - static const IconData solidPoliceBox = IconDataSolid(0xe021); + static const IconData solidPoliceBox = IconData(0xe021, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Police Box icon /// /// https://fontawesome.com/icons/police-box?style=regular /// doctor who, tardis, time and relative dimension in space, time machine, time travel - static const IconData policeBox = IconDataRegular(0xe021); + static const IconData policeBox = IconData(0xe021, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Police Box icon /// /// https://fontawesome.com/icons/police-box?style=light /// doctor who, tardis, time and relative dimension in space, time machine, time travel - static const IconData lightPoliceBox = IconDataLight(0xe021); + static const IconData lightPoliceBox = IconData(0xe021, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Police Box icon /// /// https://fontawesome.com/icons/police-box?style=thin /// doctor who, tardis, time and relative dimension in space, time machine, time travel - static const IconData thinPoliceBox = IconDataThin(0xe021); + static const IconData thinPoliceBox = IconData(0xe021, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Poll People icon /// /// https://fontawesome.com/icons/poll-people?style=solid /// uer, users-people - static const IconData solidPollPeople = IconDataSolid(0xf759); + static const IconData solidPollPeople = IconData(0xf759, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Poll People icon /// /// https://fontawesome.com/icons/poll-people?style=regular /// uer, users-people - static const IconData pollPeople = IconDataRegular(0xf759); + static const IconData pollPeople = IconData(0xf759, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Poll People icon /// /// https://fontawesome.com/icons/poll-people?style=light /// uer, users-people - static const IconData lightPollPeople = IconDataLight(0xf759); + static const IconData lightPollPeople = IconData(0xf759, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Poll People icon /// /// https://fontawesome.com/icons/poll-people?style=thin /// uer, users-people - static const IconData thinPollPeople = IconDataThin(0xf759); + static const IconData thinPollPeople = IconData(0xf759, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pompebled icon /// /// https://fontawesome.com/icons/pompebled?style=solid /// frisian, leaf, lily pad, netherlands, seeblatt, water lily - static const IconData solidPompebled = IconDataSolid(0xe43d); + static const IconData solidPompebled = IconData(0xe43d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pompebled icon /// /// https://fontawesome.com/icons/pompebled?style=regular /// frisian, leaf, lily pad, netherlands, seeblatt, water lily - static const IconData pompebled = IconDataRegular(0xe43d); + static const IconData pompebled = IconData(0xe43d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pompebled icon /// /// https://fontawesome.com/icons/pompebled?style=light /// frisian, leaf, lily pad, netherlands, seeblatt, water lily - static const IconData lightPompebled = IconDataLight(0xe43d); + static const IconData lightPompebled = IconData(0xe43d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pompebled icon /// /// https://fontawesome.com/icons/pompebled?style=thin /// frisian, leaf, lily pad, netherlands, seeblatt, water lily - static const IconData thinPompebled = IconDataThin(0xe43d); + static const IconData thinPompebled = IconData(0xe43d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Poo icon /// /// https://fontawesome.com/icons/poo?style=solid /// crap, dung, face, monster, pile of poo, poo, poop, shit, smile, turd, uer - static const IconData solidPoo = IconDataSolid(0xf2fe); + static const IconData solidPoo = IconData(0xf2fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Poo icon /// /// https://fontawesome.com/icons/poo?style=regular /// crap, dung, face, monster, pile of poo, poo, poop, shit, smile, turd, uer - static const IconData poo = IconDataRegular(0xf2fe); + static const IconData poo = IconData(0xf2fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Poo icon /// /// https://fontawesome.com/icons/poo?style=light /// crap, dung, face, monster, pile of poo, poo, poop, shit, smile, turd, uer - static const IconData lightPoo = IconDataLight(0xf2fe); + static const IconData lightPoo = IconData(0xf2fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Poo icon /// /// https://fontawesome.com/icons/poo?style=thin /// crap, dung, face, monster, pile of poo, poo, poop, shit, smile, turd, uer - static const IconData thinPoo = IconDataThin(0xf2fe); + static const IconData thinPoo = IconData(0xf2fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Poo Storm icon /// /// https://fontawesome.com/icons/poo-storm?style=solid /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData solidPooStorm = IconDataSolid(0xf75a); + static const IconData solidPooStorm = IconData(0xf75a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias poo-bolt for icon [solidPooStorm] @Deprecated('Use "solidPooStorm" instead.') @@ -68589,7 +68589,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/poo-storm?style=regular /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData pooStorm = IconDataRegular(0xf75a); + static const IconData pooStorm = IconData(0xf75a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias poo-bolt for icon [pooStorm] @Deprecated('Use "pooStorm" instead.') @@ -68599,7 +68599,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/poo-storm?style=light /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData lightPooStorm = IconDataLight(0xf75a); + static const IconData lightPooStorm = IconData(0xf75a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias poo-bolt for icon [lightPooStorm] @Deprecated('Use "lightPooStorm" instead.') @@ -68609,7 +68609,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/poo-storm?style=thin /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData thinPooStorm = IconDataThin(0xf75a); + static const IconData thinPooStorm = IconData(0xf75a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias poo-bolt for icon [thinPooStorm] @Deprecated('Use "thinPooStorm" instead.') @@ -68619,223 +68619,223 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pool-8-ball?style=solid /// 8, ball, billiard, billiards, eight, fortune, game, luck, pool 8 ball - static const IconData solidPool8Ball = IconDataSolid(0xe3c5); + static const IconData solidPool8Ball = IconData(0xe3c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pool 8 Ball icon /// /// https://fontawesome.com/icons/pool-8-ball?style=regular /// 8, ball, billiard, billiards, eight, fortune, game, luck, pool 8 ball - static const IconData pool8Ball = IconDataRegular(0xe3c5); + static const IconData pool8Ball = IconData(0xe3c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pool 8 Ball icon /// /// https://fontawesome.com/icons/pool-8-ball?style=light /// 8, ball, billiard, billiards, eight, fortune, game, luck, pool 8 ball - static const IconData lightPool8Ball = IconDataLight(0xe3c5); + static const IconData lightPool8Ball = IconData(0xe3c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pool 8 Ball icon /// /// https://fontawesome.com/icons/pool-8-ball?style=thin /// 8, ball, billiard, billiards, eight, fortune, game, luck, pool 8 ball - static const IconData thinPool8Ball = IconDataThin(0xe3c5); + static const IconData thinPool8Ball = IconData(0xe3c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Poop icon /// /// https://fontawesome.com/icons/poop?style=solid /// crap, poop, shit, smile, turd - static const IconData solidPoop = IconDataSolid(0xf619); + static const IconData solidPoop = IconData(0xf619, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Poop icon /// /// https://fontawesome.com/icons/poop?style=regular /// crap, poop, shit, smile, turd - static const IconData poop = IconDataRegular(0xf619); + static const IconData poop = IconData(0xf619, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Poop icon /// /// https://fontawesome.com/icons/poop?style=light /// crap, poop, shit, smile, turd - static const IconData lightPoop = IconDataLight(0xf619); + static const IconData lightPoop = IconData(0xf619, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Poop icon /// /// https://fontawesome.com/icons/poop?style=thin /// crap, poop, shit, smile, turd - static const IconData thinPoop = IconDataThin(0xf619); + static const IconData thinPoop = IconData(0xf619, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Popcorn icon /// /// https://fontawesome.com/icons/popcorn?style=solid /// bucket, butter, corn, junk food, kernels, movie, popcor, popcorn, snack, theater - static const IconData solidPopcorn = IconDataSolid(0xf819); + static const IconData solidPopcorn = IconData(0xf819, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Popcorn icon /// /// https://fontawesome.com/icons/popcorn?style=regular /// bucket, butter, corn, junk food, kernels, movie, popcor, popcorn, snack, theater - static const IconData popcorn = IconDataRegular(0xf819); + static const IconData popcorn = IconData(0xf819, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Popcorn icon /// /// https://fontawesome.com/icons/popcorn?style=light /// bucket, butter, corn, junk food, kernels, movie, popcor, popcorn, snack, theater - static const IconData lightPopcorn = IconDataLight(0xf819); + static const IconData lightPopcorn = IconData(0xf819, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Popcorn icon /// /// https://fontawesome.com/icons/popcorn?style=thin /// bucket, butter, corn, junk food, kernels, movie, popcor, popcorn, snack, theater - static const IconData thinPopcorn = IconDataThin(0xf819); + static const IconData thinPopcorn = IconData(0xf819, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Popsicle icon /// /// https://fontawesome.com/icons/popsicle?style=solid /// dessert, frozen, ice lolly, lollipop, lolly, popsicle, sweet - static const IconData solidPopsicle = IconDataSolid(0xe43e); + static const IconData solidPopsicle = IconData(0xe43e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Popsicle icon /// /// https://fontawesome.com/icons/popsicle?style=regular /// dessert, frozen, ice lolly, lollipop, lolly, popsicle, sweet - static const IconData popsicle = IconDataRegular(0xe43e); + static const IconData popsicle = IconData(0xe43e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Popsicle icon /// /// https://fontawesome.com/icons/popsicle?style=light /// dessert, frozen, ice lolly, lollipop, lolly, popsicle, sweet - static const IconData lightPopsicle = IconDataLight(0xe43e); + static const IconData lightPopsicle = IconData(0xe43e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Popsicle icon /// /// https://fontawesome.com/icons/popsicle?style=thin /// dessert, frozen, ice lolly, lollipop, lolly, popsicle, sweet - static const IconData thinPopsicle = IconDataThin(0xe43e); + static const IconData thinPopsicle = IconData(0xe43e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pot Food icon /// /// https://fontawesome.com/icons/pot-food?style=solid /// food, pot, soup, stew - static const IconData solidPotFood = IconDataSolid(0xe43f); + static const IconData solidPotFood = IconData(0xe43f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pot Food icon /// /// https://fontawesome.com/icons/pot-food?style=regular /// food, pot, soup, stew - static const IconData potFood = IconDataRegular(0xe43f); + static const IconData potFood = IconData(0xe43f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pot Food icon /// /// https://fontawesome.com/icons/pot-food?style=light /// food, pot, soup, stew - static const IconData lightPotFood = IconDataLight(0xe43f); + static const IconData lightPotFood = IconData(0xe43f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pot Food icon /// /// https://fontawesome.com/icons/pot-food?style=thin /// food, pot, soup, stew - static const IconData thinPotFood = IconDataThin(0xe43f); + static const IconData thinPotFood = IconData(0xe43f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Potato icon /// /// https://fontawesome.com/icons/potato?style=solid /// potato, spud, tater, tuber - static const IconData solidPotato = IconDataSolid(0xe440); + static const IconData solidPotato = IconData(0xe440, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Potato icon /// /// https://fontawesome.com/icons/potato?style=regular /// potato, spud, tater, tuber - static const IconData potato = IconDataRegular(0xe440); + static const IconData potato = IconData(0xe440, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Potato icon /// /// https://fontawesome.com/icons/potato?style=light /// potato, spud, tater, tuber - static const IconData lightPotato = IconDataLight(0xe440); + static const IconData lightPotato = IconData(0xe440, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Potato icon /// /// https://fontawesome.com/icons/potato?style=thin /// potato, spud, tater, tuber - static const IconData thinPotato = IconDataThin(0xe440); + static const IconData thinPotato = IconData(0xe440, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Power Off icon /// /// https://fontawesome.com/icons/power-off?style=solid /// Power Symbol, cancel, computer, on, reboot, restart - static const IconData solidPowerOff = IconDataSolid(0xf011); + static const IconData solidPowerOff = IconData(0xf011, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Power Off icon /// /// https://fontawesome.com/icons/power-off?style=regular /// Power Symbol, cancel, computer, on, reboot, restart - static const IconData powerOff = IconDataRegular(0xf011); + static const IconData powerOff = IconData(0xf011, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Power Off icon /// /// https://fontawesome.com/icons/power-off?style=light /// Power Symbol, cancel, computer, on, reboot, restart - static const IconData lightPowerOff = IconDataLight(0xf011); + static const IconData lightPowerOff = IconData(0xf011, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Power Off icon /// /// https://fontawesome.com/icons/power-off?style=thin /// Power Symbol, cancel, computer, on, reboot, restart - static const IconData thinPowerOff = IconDataThin(0xf011); + static const IconData thinPowerOff = IconData(0xf011, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Prescription icon /// /// https://fontawesome.com/icons/prescription?style=solid /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescription = IconDataSolid(0xf5b1); + static const IconData solidPrescription = IconData(0xf5b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Prescription icon /// /// https://fontawesome.com/icons/prescription?style=regular /// drugs, medical, medicine, pharmacy, rx - static const IconData prescription = IconDataRegular(0xf5b1); + static const IconData prescription = IconData(0xf5b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Prescription icon /// /// https://fontawesome.com/icons/prescription?style=light /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescription = IconDataLight(0xf5b1); + static const IconData lightPrescription = IconData(0xf5b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Prescription icon /// /// https://fontawesome.com/icons/prescription?style=thin /// drugs, medical, medicine, pharmacy, rx - static const IconData thinPrescription = IconDataThin(0xf5b1); + static const IconData thinPrescription = IconData(0xf5b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Prescription Bottle icon /// /// https://fontawesome.com/icons/prescription-bottle?style=solid /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescriptionBottle = IconDataSolid(0xf485); + static const IconData solidPrescriptionBottle = IconData(0xf485, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Prescription Bottle icon /// /// https://fontawesome.com/icons/prescription-bottle?style=regular /// drugs, medical, medicine, pharmacy, rx - static const IconData prescriptionBottle = IconDataRegular(0xf485); + static const IconData prescriptionBottle = IconData(0xf485, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Prescription Bottle icon /// /// https://fontawesome.com/icons/prescription-bottle?style=light /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescriptionBottle = IconDataLight(0xf485); + static const IconData lightPrescriptionBottle = IconData(0xf485, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Prescription Bottle icon /// /// https://fontawesome.com/icons/prescription-bottle?style=thin /// drugs, medical, medicine, pharmacy, rx - static const IconData thinPrescriptionBottle = IconDataThin(0xf485); + static const IconData thinPrescriptionBottle = IconData(0xf485, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Prescription Bottle Medical icon /// /// https://fontawesome.com/icons/prescription-bottle-medical?style=solid /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescriptionBottleMedical = IconDataSolid(0xf486); + static const IconData solidPrescriptionBottleMedical = IconData(0xf486, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias prescription-bottle-alt for icon [solidPrescriptionBottleMedical] @Deprecated('Use "solidPrescriptionBottleMedical" instead.') @@ -68846,7 +68846,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/prescription-bottle-medical?style=regular /// drugs, medical, medicine, pharmacy, rx - static const IconData prescriptionBottleMedical = IconDataRegular(0xf486); + static const IconData prescriptionBottleMedical = IconData(0xf486, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias prescription-bottle-alt for icon [prescriptionBottleMedical] @Deprecated('Use "prescriptionBottleMedical" instead.') @@ -68856,7 +68856,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/prescription-bottle-medical?style=light /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescriptionBottleMedical = IconDataLight(0xf486); + static const IconData lightPrescriptionBottleMedical = IconData(0xf486, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias prescription-bottle-alt for icon [lightPrescriptionBottleMedical] @Deprecated('Use "lightPrescriptionBottleMedical" instead.') @@ -68867,7 +68867,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/prescription-bottle-medical?style=thin /// drugs, medical, medicine, pharmacy, rx - static const IconData thinPrescriptionBottleMedical = IconDataThin(0xf486); + static const IconData thinPrescriptionBottleMedical = IconData(0xf486, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias prescription-bottle-alt for icon [thinPrescriptionBottleMedical] @Deprecated('Use "thinPrescriptionBottleMedical" instead.') @@ -68878,31 +68878,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/prescription-bottle-pill?style=solid /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescriptionBottlePill = IconDataSolid(0xe5c0); + static const IconData solidPrescriptionBottlePill = IconData(0xe5c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Prescription Bottle Pill icon /// /// https://fontawesome.com/icons/prescription-bottle-pill?style=regular /// drugs, medical, medicine, pharmacy, rx - static const IconData prescriptionBottlePill = IconDataRegular(0xe5c0); + static const IconData prescriptionBottlePill = IconData(0xe5c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Prescription Bottle Pill icon /// /// https://fontawesome.com/icons/prescription-bottle-pill?style=light /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescriptionBottlePill = IconDataLight(0xe5c0); + static const IconData lightPrescriptionBottlePill = IconData(0xe5c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Prescription Bottle Pill icon /// /// https://fontawesome.com/icons/prescription-bottle-pill?style=thin /// drugs, medical, medicine, pharmacy, rx - static const IconData thinPrescriptionBottlePill = IconDataThin(0xe5c0); + static const IconData thinPrescriptionBottlePill = IconData(0xe5c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Presentation Screen icon /// /// https://fontawesome.com/icons/presentation-screen?style=solid /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData solidPresentationScreen = IconDataSolid(0xf685); + static const IconData solidPresentationScreen = IconData(0xf685, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias presentation for icon [solidPresentationScreen] @Deprecated('Use "solidPresentationScreen" instead.') @@ -68912,7 +68912,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/presentation-screen?style=regular /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData presentationScreen = IconDataRegular(0xf685); + static const IconData presentationScreen = IconData(0xf685, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias presentation for icon [presentationScreen] @Deprecated('Use "presentationScreen" instead.') @@ -68922,7 +68922,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/presentation-screen?style=light /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData lightPresentationScreen = IconDataLight(0xf685); + static const IconData lightPresentationScreen = IconData(0xf685, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias presentation for icon [lightPresentationScreen] @Deprecated('Use "lightPresentationScreen" instead.') @@ -68932,7 +68932,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/presentation-screen?style=thin /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData thinPresentationScreen = IconDataThin(0xf685); + static const IconData thinPresentationScreen = IconData(0xf685, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias presentation for icon [thinPresentationScreen] @Deprecated('Use "thinPresentationScreen" instead.') @@ -68942,55 +68942,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/pretzel?style=solid /// bakery, convoluted, dough, knot, pretzel, twisted - static const IconData solidPretzel = IconDataSolid(0xe441); + static const IconData solidPretzel = IconData(0xe441, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pretzel icon /// /// https://fontawesome.com/icons/pretzel?style=regular /// bakery, convoluted, dough, knot, pretzel, twisted - static const IconData pretzel = IconDataRegular(0xe441); + static const IconData pretzel = IconData(0xe441, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pretzel icon /// /// https://fontawesome.com/icons/pretzel?style=light /// bakery, convoluted, dough, knot, pretzel, twisted - static const IconData lightPretzel = IconDataLight(0xe441); + static const IconData lightPretzel = IconData(0xe441, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pretzel icon /// /// https://fontawesome.com/icons/pretzel?style=thin /// bakery, convoluted, dough, knot, pretzel, twisted - static const IconData thinPretzel = IconDataThin(0xe441); + static const IconData thinPretzel = IconData(0xe441, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Print icon /// /// https://fontawesome.com/icons/print?style=solid /// Print Screen Symbol, Printer Icon, business, computer, copy, document, office, paper, printer - static const IconData solidPrint = IconDataSolid(0xf02f); + static const IconData solidPrint = IconData(0xf02f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Print icon /// /// https://fontawesome.com/icons/print?style=regular /// Print Screen Symbol, Printer Icon, business, computer, copy, document, office, paper, printer - static const IconData print = IconDataRegular(0xf02f); + static const IconData print = IconData(0xf02f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Print icon /// /// https://fontawesome.com/icons/print?style=light /// Print Screen Symbol, Printer Icon, business, computer, copy, document, office, paper, printer - static const IconData lightPrint = IconDataLight(0xf02f); + static const IconData lightPrint = IconData(0xf02f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Print icon /// /// https://fontawesome.com/icons/print?style=thin /// Print Screen Symbol, Printer Icon, business, computer, copy, document, office, paper, printer - static const IconData thinPrint = IconDataThin(0xf02f); + static const IconData thinPrint = IconData(0xf02f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Print Magnifying Glass icon /// /// https://fontawesome.com/icons/print-magnifying-glass?style=solid /// business, copy, document, find, magnifier, office, paper, search - static const IconData solidPrintMagnifyingGlass = IconDataSolid(0xf81a); + static const IconData solidPrintMagnifyingGlass = IconData(0xf81a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias print-search for icon [solidPrintMagnifyingGlass] @Deprecated('Use "solidPrintMagnifyingGlass" instead.') @@ -69000,7 +69000,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/print-magnifying-glass?style=regular /// business, copy, document, find, magnifier, office, paper, search - static const IconData printMagnifyingGlass = IconDataRegular(0xf81a); + static const IconData printMagnifyingGlass = IconData(0xf81a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias print-search for icon [printMagnifyingGlass] @Deprecated('Use "printMagnifyingGlass" instead.') @@ -69010,7 +69010,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/print-magnifying-glass?style=light /// business, copy, document, find, magnifier, office, paper, search - static const IconData lightPrintMagnifyingGlass = IconDataLight(0xf81a); + static const IconData lightPrintMagnifyingGlass = IconData(0xf81a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias print-search for icon [lightPrintMagnifyingGlass] @Deprecated('Use "lightPrintMagnifyingGlass" instead.') @@ -69020,7 +69020,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/print-magnifying-glass?style=thin /// business, copy, document, find, magnifier, office, paper, search - static const IconData thinPrintMagnifyingGlass = IconDataThin(0xf81a); + static const IconData thinPrintMagnifyingGlass = IconData(0xf81a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias print-search for icon [thinPrintMagnifyingGlass] @Deprecated('Use "thinPrintMagnifyingGlass" instead.') @@ -69030,209 +69030,209 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/print-slash?style=solid /// business, copy, disabled, document, office, offline, paper - static const IconData solidPrintSlash = IconDataSolid(0xf686); + static const IconData solidPrintSlash = IconData(0xf686, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Print Slash icon /// /// https://fontawesome.com/icons/print-slash?style=regular /// business, copy, disabled, document, office, offline, paper - static const IconData printSlash = IconDataRegular(0xf686); + static const IconData printSlash = IconData(0xf686, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Print Slash icon /// /// https://fontawesome.com/icons/print-slash?style=light /// business, copy, disabled, document, office, offline, paper - static const IconData lightPrintSlash = IconDataLight(0xf686); + static const IconData lightPrintSlash = IconData(0xf686, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Print Slash icon /// /// https://fontawesome.com/icons/print-slash?style=thin /// business, copy, disabled, document, office, offline, paper - static const IconData thinPrintSlash = IconDataThin(0xf686); + static const IconData thinPrintSlash = IconData(0xf686, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Product Hunt icon /// /// https://fontawesome.com/icons/product-hunt?style=brands - static const IconData productHunt = IconDataBrands(0xf288); + static const IconData productHunt = IconData(0xf288, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Projector icon /// /// https://fontawesome.com/icons/projector?style=solid /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData solidProjector = IconDataSolid(0xf8d6); + static const IconData solidProjector = IconData(0xf8d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Projector icon /// /// https://fontawesome.com/icons/projector?style=regular /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData projector = IconDataRegular(0xf8d6); + static const IconData projector = IconData(0xf8d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Projector icon /// /// https://fontawesome.com/icons/projector?style=light /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData lightProjector = IconDataLight(0xf8d6); + static const IconData lightProjector = IconData(0xf8d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Projector icon /// /// https://fontawesome.com/icons/projector?style=thin /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData thinProjector = IconDataThin(0xf8d6); + static const IconData thinProjector = IconData(0xf8d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pump icon /// /// https://fontawesome.com/icons/pump?style=solid /// drain, flood, pump, sump, water - static const IconData solidPump = IconDataSolid(0xe442); + static const IconData solidPump = IconData(0xe442, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pump icon /// /// https://fontawesome.com/icons/pump?style=regular /// drain, flood, pump, sump, water - static const IconData pump = IconDataRegular(0xe442); + static const IconData pump = IconData(0xe442, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pump icon /// /// https://fontawesome.com/icons/pump?style=light /// drain, flood, pump, sump, water - static const IconData lightPump = IconDataLight(0xe442); + static const IconData lightPump = IconData(0xe442, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pump icon /// /// https://fontawesome.com/icons/pump?style=thin /// drain, flood, pump, sump, water - static const IconData thinPump = IconDataThin(0xe442); + static const IconData thinPump = IconData(0xe442, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pump Medical icon /// /// https://fontawesome.com/icons/pump-medical?style=solid /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconData solidPumpMedical = IconDataSolid(0xe06a); + static const IconData solidPumpMedical = IconData(0xe06a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pump Medical icon /// /// https://fontawesome.com/icons/pump-medical?style=regular /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconData pumpMedical = IconDataRegular(0xe06a); + static const IconData pumpMedical = IconData(0xe06a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pump Medical icon /// /// https://fontawesome.com/icons/pump-medical?style=light /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconData lightPumpMedical = IconDataLight(0xe06a); + static const IconData lightPumpMedical = IconData(0xe06a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pump Medical icon /// /// https://fontawesome.com/icons/pump-medical?style=thin /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconData thinPumpMedical = IconDataThin(0xe06a); + static const IconData thinPumpMedical = IconData(0xe06a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pump Soap icon /// /// https://fontawesome.com/icons/pump-soap?style=solid /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconData solidPumpSoap = IconDataSolid(0xe06b); + static const IconData solidPumpSoap = IconData(0xe06b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pump Soap icon /// /// https://fontawesome.com/icons/pump-soap?style=regular /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconData pumpSoap = IconDataRegular(0xe06b); + static const IconData pumpSoap = IconData(0xe06b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pump Soap icon /// /// https://fontawesome.com/icons/pump-soap?style=light /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconData lightPumpSoap = IconDataLight(0xe06b); + static const IconData lightPumpSoap = IconData(0xe06b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pump Soap icon /// /// https://fontawesome.com/icons/pump-soap?style=thin /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconData thinPumpSoap = IconDataThin(0xe06b); + static const IconData thinPumpSoap = IconData(0xe06b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Pumpkin icon /// /// https://fontawesome.com/icons/pumpkin?style=solid /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData solidPumpkin = IconDataSolid(0xf707); + static const IconData solidPumpkin = IconData(0xf707, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Pumpkin icon /// /// https://fontawesome.com/icons/pumpkin?style=regular /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData pumpkin = IconDataRegular(0xf707); + static const IconData pumpkin = IconData(0xf707, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Pumpkin icon /// /// https://fontawesome.com/icons/pumpkin?style=light /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData lightPumpkin = IconDataLight(0xf707); + static const IconData lightPumpkin = IconData(0xf707, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Pumpkin icon /// /// https://fontawesome.com/icons/pumpkin?style=thin /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData thinPumpkin = IconDataThin(0xf707); + static const IconData thinPumpkin = IconData(0xf707, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Pushed icon /// /// https://fontawesome.com/icons/pushed?style=brands - static const IconData pushed = IconDataBrands(0xf3e1); + static const IconData pushed = IconData(0xf3e1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Puzzle icon /// /// https://fontawesome.com/icons/puzzle?style=solid /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData solidPuzzle = IconDataSolid(0xe443); + static const IconData solidPuzzle = IconData(0xe443, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Puzzle icon /// /// https://fontawesome.com/icons/puzzle?style=regular /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData puzzle = IconDataRegular(0xe443); + static const IconData puzzle = IconData(0xe443, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Puzzle icon /// /// https://fontawesome.com/icons/puzzle?style=light /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData lightPuzzle = IconDataLight(0xe443); + static const IconData lightPuzzle = IconData(0xe443, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Puzzle icon /// /// https://fontawesome.com/icons/puzzle?style=thin /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData thinPuzzle = IconDataThin(0xe443); + static const IconData thinPuzzle = IconData(0xe443, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Puzzle Piece icon /// /// https://fontawesome.com/icons/puzzle-piece?style=solid /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData solidPuzzlePiece = IconDataSolid(0xf12e); + static const IconData solidPuzzlePiece = IconData(0xf12e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Puzzle Piece icon /// /// https://fontawesome.com/icons/puzzle-piece?style=regular /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData puzzlePiece = IconDataRegular(0xf12e); + static const IconData puzzlePiece = IconData(0xf12e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Puzzle Piece icon /// /// https://fontawesome.com/icons/puzzle-piece?style=light /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData lightPuzzlePiece = IconDataLight(0xf12e); + static const IconData lightPuzzlePiece = IconData(0xf12e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Puzzle Piece icon /// /// https://fontawesome.com/icons/puzzle-piece?style=thin /// add-on, addon, clue, game, interlocking, jigsaw, piece, puzzle, puzzle piece, section - static const IconData thinPuzzlePiece = IconDataThin(0xf12e); + static const IconData thinPuzzlePiece = IconData(0xf12e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Puzzle Piece Simple icon /// /// https://fontawesome.com/icons/puzzle-piece-simple?style=solid /// assemble, plugin - static const IconData solidPuzzlePieceSimple = IconDataSolid(0xe231); + static const IconData solidPuzzlePieceSimple = IconData(0xe231, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias puzzle-piece-alt for icon [solidPuzzlePieceSimple] @Deprecated('Use "solidPuzzlePieceSimple" instead.') @@ -69242,7 +69242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/puzzle-piece-simple?style=regular /// assemble, plugin - static const IconData puzzlePieceSimple = IconDataRegular(0xe231); + static const IconData puzzlePieceSimple = IconData(0xe231, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias puzzle-piece-alt for icon [puzzlePieceSimple] @Deprecated('Use "puzzlePieceSimple" instead.') @@ -69252,7 +69252,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/puzzle-piece-simple?style=light /// assemble, plugin - static const IconData lightPuzzlePieceSimple = IconDataLight(0xe231); + static const IconData lightPuzzlePieceSimple = IconData(0xe231, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias puzzle-piece-alt for icon [lightPuzzlePieceSimple] @Deprecated('Use "lightPuzzlePieceSimple" instead.') @@ -69262,7 +69262,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/puzzle-piece-simple?style=thin /// assemble, plugin - static const IconData thinPuzzlePieceSimple = IconDataThin(0xe231); + static const IconData thinPuzzlePieceSimple = IconData(0xe231, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias puzzle-piece-alt for icon [thinPuzzlePieceSimple] @Deprecated('Use "thinPuzzlePieceSimple" instead.') @@ -69271,100 +69271,100 @@ class FontAwesomeIcons { /// Brands Python icon /// /// https://fontawesome.com/icons/python?style=brands - static const IconData python = IconDataBrands(0xf3e2); + static const IconData python = IconData(0xf3e2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Q icon /// /// https://fontawesome.com/icons/q?style=solid /// Latin Capital Letter Q, Latin Small Letter Q, letter - static const IconData solidQ = IconDataSolid(0x51); + static const IconData solidQ = IconData(0x51, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Q icon /// /// https://fontawesome.com/icons/q?style=regular /// Latin Capital Letter Q, Latin Small Letter Q, letter - static const IconData q = IconDataRegular(0x51); + static const IconData q = IconData(0x51, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Q icon /// /// https://fontawesome.com/icons/q?style=light /// Latin Capital Letter Q, Latin Small Letter Q, letter - static const IconData lightQ = IconDataLight(0x51); + static const IconData lightQ = IconData(0x51, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Q icon /// /// https://fontawesome.com/icons/q?style=thin /// Latin Capital Letter Q, Latin Small Letter Q, letter - static const IconData thinQ = IconDataThin(0x51); + static const IconData thinQ = IconData(0x51, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands QQ icon /// /// https://fontawesome.com/icons/qq?style=brands - static const IconData qq = IconDataBrands(0xf1d6); + static const IconData qq = IconData(0xf1d6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Qrcode icon /// /// https://fontawesome.com/icons/qrcode?style=solid /// barcode, info, information, scan - static const IconData solidQrcode = IconDataSolid(0xf029); + static const IconData solidQrcode = IconData(0xf029, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Qrcode icon /// /// https://fontawesome.com/icons/qrcode?style=regular /// barcode, info, information, scan - static const IconData qrcode = IconDataRegular(0xf029); + static const IconData qrcode = IconData(0xf029, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Qrcode icon /// /// https://fontawesome.com/icons/qrcode?style=light /// barcode, info, information, scan - static const IconData lightQrcode = IconDataLight(0xf029); + static const IconData lightQrcode = IconData(0xf029, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Qrcode icon /// /// https://fontawesome.com/icons/qrcode?style=thin /// barcode, info, information, scan - static const IconData thinQrcode = IconDataThin(0xf029); + static const IconData thinQrcode = IconData(0xf029, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Question icon /// /// https://fontawesome.com/icons/question?style=solid /// ?, Question Mark, faq, help, information, mark, outlined, punctuation, question, red question mark, request, support, unknown, white question mark - static const IconData solidQuestion = IconDataSolid(0x3f); + static const IconData solidQuestion = IconData(0x3f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Question icon /// /// https://fontawesome.com/icons/question?style=regular /// ?, Question Mark, faq, help, information, mark, outlined, punctuation, question, red question mark, request, support, unknown, white question mark - static const IconData question = IconDataRegular(0x3f); + static const IconData question = IconData(0x3f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Question icon /// /// https://fontawesome.com/icons/question?style=light /// ?, Question Mark, faq, help, information, mark, outlined, punctuation, question, red question mark, request, support, unknown, white question mark - static const IconData lightQuestion = IconDataLight(0x3f); + static const IconData lightQuestion = IconData(0x3f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Question icon /// /// https://fontawesome.com/icons/question?style=thin /// ?, Question Mark, faq, help, information, mark, outlined, punctuation, question, red question mark, request, support, unknown, white question mark - static const IconData thinQuestion = IconDataThin(0x3f); + static const IconData thinQuestion = IconData(0x3f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands QuinScape icon /// /// https://fontawesome.com/icons/quinscape?style=brands - static const IconData quinscape = IconDataBrands(0xf459); + static const IconData quinscape = IconData(0xf459, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Quora icon /// /// https://fontawesome.com/icons/quora?style=brands - static const IconData quora = IconDataBrands(0xf2c4); + static const IconData quora = IconData(0xf2c4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Quote Left icon /// /// https://fontawesome.com/icons/quote-left?style=solid /// Left Double Quotation Mark, mention, note, phrase, text, type - static const IconData solidQuoteLeft = IconDataSolid(0xf10d); + static const IconData solidQuoteLeft = IconData(0xf10d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias quote-left-alt for icon [solidQuoteLeft] @Deprecated('Use "solidQuoteLeft" instead.') @@ -69374,7 +69374,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-left?style=regular /// Left Double Quotation Mark, mention, note, phrase, text, type - static const IconData quoteLeft = IconDataRegular(0xf10d); + static const IconData quoteLeft = IconData(0xf10d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias quote-left-alt for icon [quoteLeft] @Deprecated('Use "quoteLeft" instead.') @@ -69384,7 +69384,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-left?style=light /// Left Double Quotation Mark, mention, note, phrase, text, type - static const IconData lightQuoteLeft = IconDataLight(0xf10d); + static const IconData lightQuoteLeft = IconData(0xf10d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias quote-left-alt for icon [lightQuoteLeft] @Deprecated('Use "lightQuoteLeft" instead.') @@ -69394,7 +69394,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-left?style=thin /// Left Double Quotation Mark, mention, note, phrase, text, type - static const IconData thinQuoteLeft = IconDataThin(0xf10d); + static const IconData thinQuoteLeft = IconData(0xf10d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias quote-left-alt for icon [thinQuoteLeft] @Deprecated('Use "thinQuoteLeft" instead.') @@ -69404,7 +69404,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-right?style=solid /// Right Double Quotation Mark, mention, note, phrase, text, type - static const IconData solidQuoteRight = IconDataSolid(0xf10e); + static const IconData solidQuoteRight = IconData(0xf10e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias quote-right-alt for icon [solidQuoteRight] @Deprecated('Use "solidQuoteRight" instead.') @@ -69414,7 +69414,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-right?style=regular /// Right Double Quotation Mark, mention, note, phrase, text, type - static const IconData quoteRight = IconDataRegular(0xf10e); + static const IconData quoteRight = IconData(0xf10e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias quote-right-alt for icon [quoteRight] @Deprecated('Use "quoteRight" instead.') @@ -69424,7 +69424,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-right?style=light /// Right Double Quotation Mark, mention, note, phrase, text, type - static const IconData lightQuoteRight = IconDataLight(0xf10e); + static const IconData lightQuoteRight = IconData(0xf10e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias quote-right-alt for icon [lightQuoteRight] @Deprecated('Use "lightQuoteRight" instead.') @@ -69434,7 +69434,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quote-right?style=thin /// Right Double Quotation Mark, mention, note, phrase, text, type - static const IconData thinQuoteRight = IconDataThin(0xf10e); + static const IconData thinQuoteRight = IconData(0xf10e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias quote-right-alt for icon [thinQuoteRight] @Deprecated('Use "thinQuoteRight" instead.') @@ -69444,84 +69444,84 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/quotes?style=solid /// cite, quotation, quote - static const IconData solidQuotes = IconDataSolid(0xe234); + static const IconData solidQuotes = IconData(0xe234, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Quotes icon /// /// https://fontawesome.com/icons/quotes?style=regular /// cite, quotation, quote - static const IconData quotes = IconDataRegular(0xe234); + static const IconData quotes = IconData(0xe234, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Quotes icon /// /// https://fontawesome.com/icons/quotes?style=light /// cite, quotation, quote - static const IconData lightQuotes = IconDataLight(0xe234); + static const IconData lightQuotes = IconData(0xe234, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Quotes icon /// /// https://fontawesome.com/icons/quotes?style=thin /// cite, quotation, quote - static const IconData thinQuotes = IconDataThin(0xe234); + static const IconData thinQuotes = IconData(0xe234, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid R icon /// /// https://fontawesome.com/icons/r?style=solid /// Latin Capital Letter R, Latin Small Letter R, letter - static const IconData solidR = IconDataSolid(0x52); + static const IconData solidR = IconData(0x52, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular R icon /// /// https://fontawesome.com/icons/r?style=regular /// Latin Capital Letter R, Latin Small Letter R, letter - static const IconData r = IconDataRegular(0x52); + static const IconData r = IconData(0x52, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light R icon /// /// https://fontawesome.com/icons/r?style=light /// Latin Capital Letter R, Latin Small Letter R, letter - static const IconData lightR = IconDataLight(0x52); + static const IconData lightR = IconData(0x52, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin R icon /// /// https://fontawesome.com/icons/r?style=thin /// Latin Capital Letter R, Latin Small Letter R, letter - static const IconData thinR = IconDataThin(0x52); + static const IconData thinR = IconData(0x52, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands R Project icon /// /// https://fontawesome.com/icons/r-project?style=brands - static const IconData rProject = IconDataBrands(0xf4f7); + static const IconData rProject = IconData(0xf4f7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Rabbit icon /// /// https://fontawesome.com/icons/rabbit?style=solid /// animal, bunny, fast, fauna, hare, mammal, pet, rabbit, speed, wabbit - static const IconData solidRabbit = IconDataSolid(0xf708); + static const IconData solidRabbit = IconData(0xf708, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rabbit icon /// /// https://fontawesome.com/icons/rabbit?style=regular /// animal, bunny, fast, fauna, hare, mammal, pet, rabbit, speed, wabbit - static const IconData rabbit = IconDataRegular(0xf708); + static const IconData rabbit = IconData(0xf708, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rabbit icon /// /// https://fontawesome.com/icons/rabbit?style=light /// animal, bunny, fast, fauna, hare, mammal, pet, rabbit, speed, wabbit - static const IconData lightRabbit = IconDataLight(0xf708); + static const IconData lightRabbit = IconData(0xf708, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rabbit icon /// /// https://fontawesome.com/icons/rabbit?style=thin /// animal, bunny, fast, fauna, hare, mammal, pet, rabbit, speed, wabbit - static const IconData thinRabbit = IconDataThin(0xf708); + static const IconData thinRabbit = IconData(0xf708, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rabbit Running icon /// /// https://fontawesome.com/icons/rabbit-running?style=solid /// animal, bunny, fast, fauna, follow, hare, mammal, quick, running, speed, wabbit - static const IconData solidRabbitRunning = IconDataSolid(0xf709); + static const IconData solidRabbitRunning = IconData(0xf709, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rabbit-fast for icon [solidRabbitRunning] @Deprecated('Use "solidRabbitRunning" instead.') @@ -69531,7 +69531,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rabbit-running?style=regular /// animal, bunny, fast, fauna, follow, hare, mammal, quick, running, speed, wabbit - static const IconData rabbitRunning = IconDataRegular(0xf709); + static const IconData rabbitRunning = IconData(0xf709, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rabbit-fast for icon [rabbitRunning] @Deprecated('Use "rabbitRunning" instead.') @@ -69541,7 +69541,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rabbit-running?style=light /// animal, bunny, fast, fauna, follow, hare, mammal, quick, running, speed, wabbit - static const IconData lightRabbitRunning = IconDataLight(0xf709); + static const IconData lightRabbitRunning = IconData(0xf709, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rabbit-fast for icon [lightRabbitRunning] @Deprecated('Use "lightRabbitRunning" instead.') @@ -69551,7 +69551,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rabbit-running?style=thin /// animal, bunny, fast, fauna, follow, hare, mammal, quick, running, speed, wabbit - static const IconData thinRabbitRunning = IconDataThin(0xf709); + static const IconData thinRabbitRunning = IconData(0xf709, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rabbit-fast for icon [thinRabbitRunning] @Deprecated('Use "thinRabbitRunning" instead.') @@ -69561,127 +69561,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/raccoon?style=solid /// mask, paw, raccoon, tail, trash, mammal, panda - static const IconData solidRaccoon = IconDataSolid(0xe613); + static const IconData solidRaccoon = IconData(0xe613, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Raccoon icon /// /// https://fontawesome.com/icons/raccoon?style=regular /// mask, paw, raccoon, tail, trash, mammal, panda - static const IconData raccoon = IconDataRegular(0xe613); + static const IconData raccoon = IconData(0xe613, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Raccoon icon /// /// https://fontawesome.com/icons/raccoon?style=light /// mask, paw, raccoon, tail, trash, mammal, panda - static const IconData lightRaccoon = IconDataLight(0xe613); + static const IconData lightRaccoon = IconData(0xe613, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Raccoon icon /// /// https://fontawesome.com/icons/raccoon?style=thin /// mask, paw, raccoon, tail, trash, mammal, panda - static const IconData thinRaccoon = IconDataThin(0xe613); + static const IconData thinRaccoon = IconData(0xe613, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Racquet icon /// /// https://fontawesome.com/icons/racquet?style=solid /// badminton, racket, squash, tennis - static const IconData solidRacquet = IconDataSolid(0xf45a); + static const IconData solidRacquet = IconData(0xf45a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Racquet icon /// /// https://fontawesome.com/icons/racquet?style=regular /// badminton, racket, squash, tennis - static const IconData racquet = IconDataRegular(0xf45a); + static const IconData racquet = IconData(0xf45a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Racquet icon /// /// https://fontawesome.com/icons/racquet?style=light /// badminton, racket, squash, tennis - static const IconData lightRacquet = IconDataLight(0xf45a); + static const IconData lightRacquet = IconData(0xf45a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Racquet icon /// /// https://fontawesome.com/icons/racquet?style=thin /// badminton, racket, squash, tennis - static const IconData thinRacquet = IconDataThin(0xf45a); + static const IconData thinRacquet = IconData(0xf45a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Radar icon /// /// https://fontawesome.com/icons/radar?style=solid /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData solidRadar = IconDataSolid(0xe024); + static const IconData solidRadar = IconData(0xe024, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Radar icon /// /// https://fontawesome.com/icons/radar?style=regular /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData radar = IconDataRegular(0xe024); + static const IconData radar = IconData(0xe024, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Radar icon /// /// https://fontawesome.com/icons/radar?style=light /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData lightRadar = IconDataLight(0xe024); + static const IconData lightRadar = IconData(0xe024, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Radar icon /// /// https://fontawesome.com/icons/radar?style=thin /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData thinRadar = IconDataThin(0xe024); + static const IconData thinRadar = IconData(0xe024, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Radiation icon /// /// https://fontawesome.com/icons/radiation?style=solid /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData solidRadiation = IconDataSolid(0xf7b9); + static const IconData solidRadiation = IconData(0xf7b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Radiation icon /// /// https://fontawesome.com/icons/radiation?style=regular /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData radiation = IconDataRegular(0xf7b9); + static const IconData radiation = IconData(0xf7b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Radiation icon /// /// https://fontawesome.com/icons/radiation?style=light /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData lightRadiation = IconDataLight(0xf7b9); + static const IconData lightRadiation = IconData(0xf7b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Radiation icon /// /// https://fontawesome.com/icons/radiation?style=thin /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData thinRadiation = IconDataThin(0xf7b9); + static const IconData thinRadiation = IconData(0xf7b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Radio icon /// /// https://fontawesome.com/icons/radio?style=solid /// am, broadcast, fm, frequency, music, news, radio, receiver, transmitter, tuner, video - static const IconData solidRadio = IconDataSolid(0xf8d7); + static const IconData solidRadio = IconData(0xf8d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Radio icon /// /// https://fontawesome.com/icons/radio?style=regular /// am, broadcast, fm, frequency, music, news, radio, receiver, transmitter, tuner, video - static const IconData radio = IconDataRegular(0xf8d7); + static const IconData radio = IconData(0xf8d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Radio icon /// /// https://fontawesome.com/icons/radio?style=light /// am, broadcast, fm, frequency, music, news, radio, receiver, transmitter, tuner, video - static const IconData lightRadio = IconDataLight(0xf8d7); + static const IconData lightRadio = IconData(0xf8d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Radio icon /// /// https://fontawesome.com/icons/radio?style=thin /// am, broadcast, fm, frequency, music, news, radio, receiver, transmitter, tuner, video - static const IconData thinRadio = IconDataThin(0xf8d7); + static const IconData thinRadio = IconData(0xf8d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Radio Tuner icon /// /// https://fontawesome.com/icons/radio-tuner?style=solid /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData solidRadioTuner = IconDataSolid(0xf8d8); + static const IconData solidRadioTuner = IconData(0xf8d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias radio-alt for icon [solidRadioTuner] @Deprecated('Use "solidRadioTuner" instead.') @@ -69691,7 +69691,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/radio-tuner?style=regular /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData radioTuner = IconDataRegular(0xf8d8); + static const IconData radioTuner = IconData(0xf8d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias radio-alt for icon [radioTuner] @Deprecated('Use "radioTuner" instead.') @@ -69701,7 +69701,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/radio-tuner?style=light /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData lightRadioTuner = IconDataLight(0xf8d8); + static const IconData lightRadioTuner = IconData(0xf8d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias radio-alt for icon [lightRadioTuner] @Deprecated('Use "lightRadioTuner" instead.') @@ -69711,7 +69711,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/radio-tuner?style=thin /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData thinRadioTuner = IconDataThin(0xf8d8); + static const IconData thinRadioTuner = IconData(0xf8d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias radio-alt for icon [thinRadioTuner] @Deprecated('Use "thinRadioTuner" instead.') @@ -69721,229 +69721,229 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rainbow?style=solid /// gold, leprechaun, prism, rain, rainbow, sky - static const IconData solidRainbow = IconDataSolid(0xf75b); + static const IconData solidRainbow = IconData(0xf75b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rainbow icon /// /// https://fontawesome.com/icons/rainbow?style=regular /// gold, leprechaun, prism, rain, rainbow, sky - static const IconData rainbow = IconDataRegular(0xf75b); + static const IconData rainbow = IconData(0xf75b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rainbow icon /// /// https://fontawesome.com/icons/rainbow?style=light /// gold, leprechaun, prism, rain, rainbow, sky - static const IconData lightRainbow = IconDataLight(0xf75b); + static const IconData lightRainbow = IconData(0xf75b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rainbow icon /// /// https://fontawesome.com/icons/rainbow?style=thin /// gold, leprechaun, prism, rain, rainbow, sky - static const IconData thinRainbow = IconDataThin(0xf75b); + static const IconData thinRainbow = IconData(0xf75b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Raindrops icon /// /// https://fontawesome.com/icons/raindrops?style=solid /// precipitation, rain, sprinkle, storm - static const IconData solidRaindrops = IconDataSolid(0xf75c); + static const IconData solidRaindrops = IconData(0xf75c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Raindrops icon /// /// https://fontawesome.com/icons/raindrops?style=regular /// precipitation, rain, sprinkle, storm - static const IconData raindrops = IconDataRegular(0xf75c); + static const IconData raindrops = IconData(0xf75c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Raindrops icon /// /// https://fontawesome.com/icons/raindrops?style=light /// precipitation, rain, sprinkle, storm - static const IconData lightRaindrops = IconDataLight(0xf75c); + static const IconData lightRaindrops = IconData(0xf75c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Raindrops icon /// /// https://fontawesome.com/icons/raindrops?style=thin /// precipitation, rain, sprinkle, storm - static const IconData thinRaindrops = IconDataThin(0xf75c); + static const IconData thinRaindrops = IconData(0xf75c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ram icon /// /// https://fontawesome.com/icons/ram?style=solid /// Aries, animal, fauna, horns, male, mammal, ram, sheep, zodiac - static const IconData solidRam = IconDataSolid(0xf70a); + static const IconData solidRam = IconData(0xf70a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ram icon /// /// https://fontawesome.com/icons/ram?style=regular /// Aries, animal, fauna, horns, male, mammal, ram, sheep, zodiac - static const IconData ram = IconDataRegular(0xf70a); + static const IconData ram = IconData(0xf70a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ram icon /// /// https://fontawesome.com/icons/ram?style=light /// Aries, animal, fauna, horns, male, mammal, ram, sheep, zodiac - static const IconData lightRam = IconDataLight(0xf70a); + static const IconData lightRam = IconData(0xf70a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ram icon /// /// https://fontawesome.com/icons/ram?style=thin /// Aries, animal, fauna, horns, male, mammal, ram, sheep, zodiac - static const IconData thinRam = IconDataThin(0xf70a); + static const IconData thinRam = IconData(0xf70a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ramp Loading icon /// /// https://fontawesome.com/icons/ramp-loading?style=solid /// inventory, moving, shipping, storage, warehouse - static const IconData solidRampLoading = IconDataSolid(0xf4d4); + static const IconData solidRampLoading = IconData(0xf4d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ramp Loading icon /// /// https://fontawesome.com/icons/ramp-loading?style=regular /// inventory, moving, shipping, storage, warehouse - static const IconData rampLoading = IconDataRegular(0xf4d4); + static const IconData rampLoading = IconData(0xf4d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ramp Loading icon /// /// https://fontawesome.com/icons/ramp-loading?style=light /// inventory, moving, shipping, storage, warehouse - static const IconData lightRampLoading = IconDataLight(0xf4d4); + static const IconData lightRampLoading = IconData(0xf4d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ramp Loading icon /// /// https://fontawesome.com/icons/ramp-loading?style=thin /// inventory, moving, shipping, storage, warehouse - static const IconData thinRampLoading = IconDataThin(0xf4d4); + static const IconData thinRampLoading = IconData(0xf4d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ranking Star icon /// /// https://fontawesome.com/icons/ranking-star?style=solid /// chart, first place, podium, quality, rank, revenue, win - static const IconData solidRankingStar = IconDataSolid(0xe561); + static const IconData solidRankingStar = IconData(0xe561, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ranking Star icon /// /// https://fontawesome.com/icons/ranking-star?style=regular /// chart, first place, podium, quality, rank, revenue, win - static const IconData rankingStar = IconDataRegular(0xe561); + static const IconData rankingStar = IconData(0xe561, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ranking Star icon /// /// https://fontawesome.com/icons/ranking-star?style=light /// chart, first place, podium, quality, rank, revenue, win - static const IconData lightRankingStar = IconDataLight(0xe561); + static const IconData lightRankingStar = IconData(0xe561, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ranking Star icon /// /// https://fontawesome.com/icons/ranking-star?style=thin /// chart, first place, podium, quality, rank, revenue, win - static const IconData thinRankingStar = IconDataThin(0xe561); + static const IconData thinRankingStar = IconData(0xe561, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Raspberry Pi icon /// /// https://fontawesome.com/icons/raspberry-pi?style=brands - static const IconData raspberryPi = IconDataBrands(0xf7bb); + static const IconData raspberryPi = IconData(0xf7bb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Ravelry icon /// /// https://fontawesome.com/icons/ravelry?style=brands - static const IconData ravelry = IconDataBrands(0xf2d9); + static const IconData ravelry = IconData(0xf2d9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Raygun icon /// /// https://fontawesome.com/icons/raygun?style=solid /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData solidRaygun = IconDataSolid(0xe025); + static const IconData solidRaygun = IconData(0xe025, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Raygun icon /// /// https://fontawesome.com/icons/raygun?style=regular /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData raygun = IconDataRegular(0xe025); + static const IconData raygun = IconData(0xe025, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Raygun icon /// /// https://fontawesome.com/icons/raygun?style=light /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData lightRaygun = IconDataLight(0xe025); + static const IconData lightRaygun = IconData(0xe025, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Raygun icon /// /// https://fontawesome.com/icons/raygun?style=thin /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData thinRaygun = IconDataThin(0xe025); + static const IconData thinRaygun = IconData(0xe025, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands React icon /// /// https://fontawesome.com/icons/react?style=brands - static const IconData react = IconDataBrands(0xf41b); + static const IconData react = IconData(0xf41b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands ReactEurope icon /// /// https://fontawesome.com/icons/reacteurope?style=brands - static const IconData reacteurope = IconDataBrands(0xf75d); + static const IconData reacteurope = IconData(0xf75d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands ReadMe icon /// /// https://fontawesome.com/icons/readme?style=brands - static const IconData readme = IconDataBrands(0xf4d5); + static const IconData readme = IconData(0xf4d5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Rebel Alliance icon /// /// https://fontawesome.com/icons/rebel?style=brands - static const IconData rebel = IconDataBrands(0xf1d0); + static const IconData rebel = IconData(0xf1d0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Receipt icon /// /// https://fontawesome.com/icons/receipt?style=solid /// accounting, bookkeeping, check, coupon, evidence, invoice, money, pay, proof, receipt, table - static const IconData solidReceipt = IconDataSolid(0xf543); + static const IconData solidReceipt = IconData(0xf543, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Receipt icon /// /// https://fontawesome.com/icons/receipt?style=regular /// accounting, bookkeeping, check, coupon, evidence, invoice, money, pay, proof, receipt, table - static const IconData receipt = IconDataRegular(0xf543); + static const IconData receipt = IconData(0xf543, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Receipt icon /// /// https://fontawesome.com/icons/receipt?style=light /// accounting, bookkeeping, check, coupon, evidence, invoice, money, pay, proof, receipt, table - static const IconData lightReceipt = IconDataLight(0xf543); + static const IconData lightReceipt = IconData(0xf543, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Receipt icon /// /// https://fontawesome.com/icons/receipt?style=thin /// accounting, bookkeeping, check, coupon, evidence, invoice, money, pay, proof, receipt, table - static const IconData thinReceipt = IconDataThin(0xf543); + static const IconData thinReceipt = IconData(0xf543, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Record Vinyl icon /// /// https://fontawesome.com/icons/record-vinyl?style=solid /// LP, album, analog, music, phonograph, sound - static const IconData solidRecordVinyl = IconDataSolid(0xf8d9); + static const IconData solidRecordVinyl = IconData(0xf8d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Record Vinyl icon /// /// https://fontawesome.com/icons/record-vinyl?style=regular /// LP, album, analog, music, phonograph, sound - static const IconData recordVinyl = IconDataRegular(0xf8d9); + static const IconData recordVinyl = IconData(0xf8d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Record Vinyl icon /// /// https://fontawesome.com/icons/record-vinyl?style=light /// LP, album, analog, music, phonograph, sound - static const IconData lightRecordVinyl = IconDataLight(0xf8d9); + static const IconData lightRecordVinyl = IconData(0xf8d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Record Vinyl icon /// /// https://fontawesome.com/icons/record-vinyl?style=thin /// LP, album, analog, music, phonograph, sound - static const IconData thinRecordVinyl = IconDataThin(0xf8d9); + static const IconData thinRecordVinyl = IconData(0xf8d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle icon /// /// https://fontawesome.com/icons/rectangle?style=solid /// Black Rectangle, geometry, shape - static const IconData solidRectangle = IconDataSolid(0xf2fa); + static const IconData solidRectangle = IconData(0xf2fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-landscape for icon [solidRectangle] @Deprecated('Use "solidRectangle" instead.') @@ -69953,7 +69953,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle?style=regular /// Black Rectangle, geometry, shape - static const IconData rectangle = IconDataRegular(0xf2fa); + static const IconData rectangle = IconData(0xf2fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-landscape for icon [rectangle] @Deprecated('Use "rectangle" instead.') @@ -69963,7 +69963,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle?style=light /// Black Rectangle, geometry, shape - static const IconData lightRectangle = IconDataLight(0xf2fa); + static const IconData lightRectangle = IconData(0xf2fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-landscape for icon [lightRectangle] @Deprecated('Use "lightRectangle" instead.') @@ -69973,7 +69973,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle?style=thin /// Black Rectangle, geometry, shape - static const IconData thinRectangle = IconDataThin(0xf2fa); + static const IconData thinRectangle = IconData(0xf2fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-landscape for icon [thinRectangle] @Deprecated('Use "thinRectangle" instead.') @@ -69983,7 +69983,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-ad?style=solid /// advertisement, media, newspaper, promotion, publicity - static const IconData solidRectangleAd = IconDataSolid(0xf641); + static const IconData solidRectangleAd = IconData(0xf641, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ad for icon [solidRectangleAd] @Deprecated('Use "solidRectangleAd" instead.') @@ -69993,7 +69993,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-ad?style=regular /// advertisement, media, newspaper, promotion, publicity - static const IconData rectangleAd = IconDataRegular(0xf641); + static const IconData rectangleAd = IconData(0xf641, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ad for icon [rectangleAd] @Deprecated('Use "rectangleAd" instead.') @@ -70003,7 +70003,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-ad?style=light /// advertisement, media, newspaper, promotion, publicity - static const IconData lightRectangleAd = IconDataLight(0xf641); + static const IconData lightRectangleAd = IconData(0xf641, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ad for icon [lightRectangleAd] @Deprecated('Use "lightRectangleAd" instead.') @@ -70013,7 +70013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-ad?style=thin /// advertisement, media, newspaper, promotion, publicity - static const IconData thinRectangleAd = IconDataThin(0xf641); + static const IconData thinRectangleAd = IconData(0xf641, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ad for icon [thinRectangleAd] @Deprecated('Use "thinRectangleAd" instead.') @@ -70023,7 +70023,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-barcode?style=solid /// info, laser, price, scan, upc - static const IconData solidRectangleBarcode = IconDataSolid(0xf463); + static const IconData solidRectangleBarcode = IconData(0xf463, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias barcode-alt for icon [solidRectangleBarcode] @Deprecated('Use "solidRectangleBarcode" instead.') @@ -70033,7 +70033,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-barcode?style=regular /// info, laser, price, scan, upc - static const IconData rectangleBarcode = IconDataRegular(0xf463); + static const IconData rectangleBarcode = IconData(0xf463, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias barcode-alt for icon [rectangleBarcode] @Deprecated('Use "rectangleBarcode" instead.') @@ -70043,7 +70043,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-barcode?style=light /// info, laser, price, scan, upc - static const IconData lightRectangleBarcode = IconDataLight(0xf463); + static const IconData lightRectangleBarcode = IconData(0xf463, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias barcode-alt for icon [lightRectangleBarcode] @Deprecated('Use "lightRectangleBarcode" instead.') @@ -70053,7 +70053,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-barcode?style=thin /// info, laser, price, scan, upc - static const IconData thinRectangleBarcode = IconDataThin(0xf463); + static const IconData thinRectangleBarcode = IconData(0xf463, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias barcode-alt for icon [thinRectangleBarcode] @Deprecated('Use "thinRectangleBarcode" instead.') @@ -70063,103 +70063,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-code?style=solid /// code, coding, command, console, development, prompt, terminal - static const IconData solidRectangleCode = IconDataSolid(0xe322); + static const IconData solidRectangleCode = IconData(0xe322, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle Code icon /// /// https://fontawesome.com/icons/rectangle-code?style=regular /// code, coding, command, console, development, prompt, terminal - static const IconData rectangleCode = IconDataRegular(0xe322); + static const IconData rectangleCode = IconData(0xe322, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle Code icon /// /// https://fontawesome.com/icons/rectangle-code?style=light /// code, coding, command, console, development, prompt, terminal - static const IconData lightRectangleCode = IconDataLight(0xe322); + static const IconData lightRectangleCode = IconData(0xe322, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle Code icon /// /// https://fontawesome.com/icons/rectangle-code?style=thin /// code, coding, command, console, development, prompt, terminal - static const IconData thinRectangleCode = IconDataThin(0xe322); + static const IconData thinRectangleCode = IconData(0xe322, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle History icon /// /// https://fontawesome.com/icons/rectangle-history?style=solid /// album, carousel, collection, gallery, history, multiple, project, summary, windows - static const IconData solidRectangleHistory = IconDataSolid(0xe4a2); + static const IconData solidRectangleHistory = IconData(0xe4a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle History icon /// /// https://fontawesome.com/icons/rectangle-history?style=regular /// album, carousel, collection, gallery, history, multiple, project, summary, windows - static const IconData rectangleHistory = IconDataRegular(0xe4a2); + static const IconData rectangleHistory = IconData(0xe4a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle History icon /// /// https://fontawesome.com/icons/rectangle-history?style=light /// album, carousel, collection, gallery, history, multiple, project, summary, windows - static const IconData lightRectangleHistory = IconDataLight(0xe4a2); + static const IconData lightRectangleHistory = IconData(0xe4a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle History icon /// /// https://fontawesome.com/icons/rectangle-history?style=thin /// album, carousel, collection, gallery, history, multiple, project, summary, windows - static const IconData thinRectangleHistory = IconDataThin(0xe4a2); + static const IconData thinRectangleHistory = IconData(0xe4a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle History Circle Plus icon /// /// https://fontawesome.com/icons/rectangle-history-circle-plus?style=solid /// add, album, carousel, collection, gallery, history, multiple, new, project, windows - static const IconData solidRectangleHistoryCirclePlus = IconDataSolid(0xe4a3); + static const IconData solidRectangleHistoryCirclePlus = IconData(0xe4a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle History Circle Plus icon /// /// https://fontawesome.com/icons/rectangle-history-circle-plus?style=regular /// add, album, carousel, collection, gallery, history, multiple, new, project, windows - static const IconData rectangleHistoryCirclePlus = IconDataRegular(0xe4a3); + static const IconData rectangleHistoryCirclePlus = IconData(0xe4a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle History Circle Plus icon /// /// https://fontawesome.com/icons/rectangle-history-circle-plus?style=light /// add, album, carousel, collection, gallery, history, multiple, new, project, windows - static const IconData lightRectangleHistoryCirclePlus = IconDataLight(0xe4a3); + static const IconData lightRectangleHistoryCirclePlus = IconData(0xe4a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle History Circle Plus icon /// /// https://fontawesome.com/icons/rectangle-history-circle-plus?style=thin /// add, album, carousel, collection, gallery, history, multiple, new, project, windows - static const IconData thinRectangleHistoryCirclePlus = IconDataThin(0xe4a3); + static const IconData thinRectangleHistoryCirclePlus = IconData(0xe4a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle History Circle User icon /// /// https://fontawesome.com/icons/rectangle-history-circle-user?style=solid /// album, carousel, collection, gallery, history, multiple, project, shared, uer, user, windows - static const IconData solidRectangleHistoryCircleUser = IconDataSolid(0xe4a4); + static const IconData solidRectangleHistoryCircleUser = IconData(0xe4a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle History Circle User icon /// /// https://fontawesome.com/icons/rectangle-history-circle-user?style=regular /// album, carousel, collection, gallery, history, multiple, project, shared, uer, user, windows - static const IconData rectangleHistoryCircleUser = IconDataRegular(0xe4a4); + static const IconData rectangleHistoryCircleUser = IconData(0xe4a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle History Circle User icon /// /// https://fontawesome.com/icons/rectangle-history-circle-user?style=light /// album, carousel, collection, gallery, history, multiple, project, shared, uer, user, windows - static const IconData lightRectangleHistoryCircleUser = IconDataLight(0xe4a4); + static const IconData lightRectangleHistoryCircleUser = IconData(0xe4a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle History Circle User icon /// /// https://fontawesome.com/icons/rectangle-history-circle-user?style=thin /// album, carousel, collection, gallery, history, multiple, project, shared, uer, user, windows - static const IconData thinRectangleHistoryCircleUser = IconDataThin(0xe4a4); + static const IconData thinRectangleHistoryCircleUser = IconData(0xe4a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle List icon /// /// https://fontawesome.com/icons/rectangle-list?style=solid /// cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData solidRectangleList = IconDataSolid(0xf022); + static const IconData solidRectangleList = IconData(0xf022, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias list-alt for icon [solidRectangleList] @Deprecated('Use "solidRectangleList" instead.') @@ -70169,7 +70169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-list?style=regular /// cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData rectangleList = IconDataRegular(0xf022); + static const IconData rectangleList = IconData(0xf022, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias list-alt for icon [rectangleList] @Deprecated('Use "rectangleList" instead.') @@ -70179,7 +70179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-list?style=light /// cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData lightRectangleList = IconDataLight(0xf022); + static const IconData lightRectangleList = IconData(0xf022, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias list-alt for icon [lightRectangleList] @Deprecated('Use "lightRectangleList" instead.') @@ -70189,7 +70189,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-list?style=thin /// cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData thinRectangleList = IconDataThin(0xf022); + static const IconData thinRectangleList = IconData(0xf022, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias list-alt for icon [thinRectangleList] @Deprecated('Use "thinRectangleList" instead.') @@ -70199,7 +70199,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-pro?style=solid /// professional - static const IconData solidRectanglePro = IconDataSolid(0xe235); + static const IconData solidRectanglePro = IconData(0xe235, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pro for icon [solidRectanglePro] @Deprecated('Use "solidRectanglePro" instead.') @@ -70209,7 +70209,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-pro?style=regular /// professional - static const IconData rectanglePro = IconDataRegular(0xe235); + static const IconData rectanglePro = IconData(0xe235, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pro for icon [rectanglePro] @Deprecated('Use "rectanglePro" instead.') @@ -70219,7 +70219,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-pro?style=light /// professional - static const IconData lightRectanglePro = IconDataLight(0xe235); + static const IconData lightRectanglePro = IconData(0xe235, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pro for icon [lightRectanglePro] @Deprecated('Use "lightRectanglePro" instead.') @@ -70229,7 +70229,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-pro?style=thin /// professional - static const IconData thinRectanglePro = IconDataThin(0xe235); + static const IconData thinRectanglePro = IconData(0xe235, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pro for icon [thinRectanglePro] @Deprecated('Use "thinRectanglePro" instead.') @@ -70239,31 +70239,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-terminal?style=solid /// code, coding, command, console, development, prompt, terminal - static const IconData solidRectangleTerminal = IconDataSolid(0xe236); + static const IconData solidRectangleTerminal = IconData(0xe236, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle Terminal icon /// /// https://fontawesome.com/icons/rectangle-terminal?style=regular /// code, coding, command, console, development, prompt, terminal - static const IconData rectangleTerminal = IconDataRegular(0xe236); + static const IconData rectangleTerminal = IconData(0xe236, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle Terminal icon /// /// https://fontawesome.com/icons/rectangle-terminal?style=light /// code, coding, command, console, development, prompt, terminal - static const IconData lightRectangleTerminal = IconDataLight(0xe236); + static const IconData lightRectangleTerminal = IconData(0xe236, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle Terminal icon /// /// https://fontawesome.com/icons/rectangle-terminal?style=thin /// code, coding, command, console, development, prompt, terminal - static const IconData thinRectangleTerminal = IconDataThin(0xe236); + static const IconData thinRectangleTerminal = IconData(0xe236, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle Vertical icon /// /// https://fontawesome.com/icons/rectangle-vertical?style=solid /// geometry, shape - static const IconData solidRectangleVertical = IconDataSolid(0xf2fb); + static const IconData solidRectangleVertical = IconData(0xf2fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-portrait for icon [solidRectangleVertical] @Deprecated('Use "solidRectangleVertical" instead.') @@ -70273,7 +70273,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-vertical?style=regular /// geometry, shape - static const IconData rectangleVertical = IconDataRegular(0xf2fb); + static const IconData rectangleVertical = IconData(0xf2fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-portrait for icon [rectangleVertical] @Deprecated('Use "rectangleVertical" instead.') @@ -70283,7 +70283,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-vertical?style=light /// geometry, shape - static const IconData lightRectangleVertical = IconDataLight(0xf2fb); + static const IconData lightRectangleVertical = IconData(0xf2fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-portrait for icon [lightRectangleVertical] @Deprecated('Use "lightRectangleVertical" instead.') @@ -70293,7 +70293,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-vertical?style=thin /// geometry, shape - static const IconData thinRectangleVertical = IconDataThin(0xf2fb); + static const IconData thinRectangleVertical = IconData(0xf2fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-portrait for icon [thinRectangleVertical] @Deprecated('Use "thinRectangleVertical" instead.') @@ -70303,55 +70303,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-vertical-history?style=solid /// album, carousel, collection, gallery, history, multiple, project, windows - static const IconData solidRectangleVerticalHistory = IconDataSolid(0xe237); + static const IconData solidRectangleVerticalHistory = IconData(0xe237, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle Vertical History icon /// /// https://fontawesome.com/icons/rectangle-vertical-history?style=regular /// album, carousel, collection, gallery, history, multiple, project, windows - static const IconData rectangleVerticalHistory = IconDataRegular(0xe237); + static const IconData rectangleVerticalHistory = IconData(0xe237, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle Vertical History icon /// /// https://fontawesome.com/icons/rectangle-vertical-history?style=light /// album, carousel, collection, gallery, history, multiple, project, windows - static const IconData lightRectangleVerticalHistory = IconDataLight(0xe237); + static const IconData lightRectangleVerticalHistory = IconData(0xe237, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle Vertical History icon /// /// https://fontawesome.com/icons/rectangle-vertical-history?style=thin /// album, carousel, collection, gallery, history, multiple, project, windows - static const IconData thinRectangleVerticalHistory = IconDataThin(0xe237); + static const IconData thinRectangleVerticalHistory = IconData(0xe237, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle Wide icon /// /// https://fontawesome.com/icons/rectangle-wide?style=solid /// geometry, landscape, shape - static const IconData solidRectangleWide = IconDataSolid(0xf2fc); + static const IconData solidRectangleWide = IconData(0xf2fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangle Wide icon /// /// https://fontawesome.com/icons/rectangle-wide?style=regular /// geometry, landscape, shape - static const IconData rectangleWide = IconDataRegular(0xf2fc); + static const IconData rectangleWide = IconData(0xf2fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangle Wide icon /// /// https://fontawesome.com/icons/rectangle-wide?style=light /// geometry, landscape, shape - static const IconData lightRectangleWide = IconDataLight(0xf2fc); + static const IconData lightRectangleWide = IconData(0xf2fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangle Wide icon /// /// https://fontawesome.com/icons/rectangle-wide?style=thin /// geometry, landscape, shape - static const IconData thinRectangleWide = IconDataThin(0xf2fc); + static const IconData thinRectangleWide = IconData(0xf2fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rectangle Xmark icon /// /// https://fontawesome.com/icons/rectangle-xmark?style=solid /// browser, cancel, computer, development, uncheck - static const IconData solidRectangleXmark = IconDataSolid(0xf410); + static const IconData solidRectangleXmark = IconData(0xf410, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-times for icon [solidRectangleXmark] @Deprecated('Use "solidRectangleXmark" instead.') @@ -70369,7 +70369,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-xmark?style=regular /// browser, cancel, computer, development, uncheck - static const IconData rectangleXmark = IconDataRegular(0xf410); + static const IconData rectangleXmark = IconData(0xf410, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-times for icon [rectangleXmark] @Deprecated('Use "rectangleXmark" instead.') @@ -70387,7 +70387,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-xmark?style=light /// browser, cancel, computer, development, uncheck - static const IconData lightRectangleXmark = IconDataLight(0xf410); + static const IconData lightRectangleXmark = IconData(0xf410, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-times for icon [lightRectangleXmark] @Deprecated('Use "lightRectangleXmark" instead.') @@ -70405,7 +70405,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangle-xmark?style=thin /// browser, cancel, computer, development, uncheck - static const IconData thinRectangleXmark = IconDataThin(0xf410); + static const IconData thinRectangleXmark = IconData(0xf410, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-times for icon [thinRectangleXmark] @Deprecated('Use "thinRectangleXmark" instead.') @@ -70423,249 +70423,249 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rectangles-mixed?style=solid /// mission control, random, sizing - static const IconData solidRectanglesMixed = IconDataSolid(0xe323); + static const IconData solidRectanglesMixed = IconData(0xe323, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rectangles Mixed icon /// /// https://fontawesome.com/icons/rectangles-mixed?style=regular /// mission control, random, sizing - static const IconData rectanglesMixed = IconDataRegular(0xe323); + static const IconData rectanglesMixed = IconData(0xe323, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rectangles Mixed icon /// /// https://fontawesome.com/icons/rectangles-mixed?style=light /// mission control, random, sizing - static const IconData lightRectanglesMixed = IconDataLight(0xe323); + static const IconData lightRectanglesMixed = IconData(0xe323, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rectangles Mixed icon /// /// https://fontawesome.com/icons/rectangles-mixed?style=thin /// mission control, random, sizing - static const IconData thinRectanglesMixed = IconDataThin(0xe323); + static const IconData thinRectanglesMixed = IconData(0xe323, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Recycle icon /// /// https://fontawesome.com/icons/recycle?style=solid /// Recycling Symbol For Generic Materials, Universal Recycling Symbol, Waste, compost, garbage, recycle, recycling symbol, reuse, trash - static const IconData solidRecycle = IconDataSolid(0xf1b8); + static const IconData solidRecycle = IconData(0xf1b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Recycle icon /// /// https://fontawesome.com/icons/recycle?style=regular /// Recycling Symbol For Generic Materials, Universal Recycling Symbol, Waste, compost, garbage, recycle, recycling symbol, reuse, trash - static const IconData recycle = IconDataRegular(0xf1b8); + static const IconData recycle = IconData(0xf1b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Recycle icon /// /// https://fontawesome.com/icons/recycle?style=light /// Recycling Symbol For Generic Materials, Universal Recycling Symbol, Waste, compost, garbage, recycle, recycling symbol, reuse, trash - static const IconData lightRecycle = IconDataLight(0xf1b8); + static const IconData lightRecycle = IconData(0xf1b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Recycle icon /// /// https://fontawesome.com/icons/recycle?style=thin /// Recycling Symbol For Generic Materials, Universal Recycling Symbol, Waste, compost, garbage, recycle, recycling symbol, reuse, trash - static const IconData thinRecycle = IconDataThin(0xf1b8); + static const IconData thinRecycle = IconData(0xf1b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands red river icon /// /// https://fontawesome.com/icons/red-river?style=brands - static const IconData redRiver = IconDataBrands(0xf3e3); + static const IconData redRiver = IconData(0xf3e3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Reddit icon /// /// https://fontawesome.com/icons/reddit?style=brands - static const IconData reddit = IconDataBrands(0xf1a1); + static const IconData reddit = IconData(0xf1a1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Reddit Alien icon /// /// https://fontawesome.com/icons/reddit-alien?style=brands - static const IconData redditAlien = IconDataBrands(0xf281); + static const IconData redditAlien = IconData(0xf281, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Redhat icon /// /// https://fontawesome.com/icons/redhat?style=brands /// linux, operating system, os - static const IconData redhat = IconDataBrands(0xf7bc); + static const IconData redhat = IconData(0xf7bc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Reel icon /// /// https://fontawesome.com/icons/reel?style=solid /// needle, sewing, spool, string, thread, wire - static const IconData solidReel = IconDataSolid(0xe238); + static const IconData solidReel = IconData(0xe238, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Reel icon /// /// https://fontawesome.com/icons/reel?style=regular /// needle, sewing, spool, string, thread, wire - static const IconData reel = IconDataRegular(0xe238); + static const IconData reel = IconData(0xe238, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Reel icon /// /// https://fontawesome.com/icons/reel?style=light /// needle, sewing, spool, string, thread, wire - static const IconData lightReel = IconDataLight(0xe238); + static const IconData lightReel = IconData(0xe238, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Reel icon /// /// https://fontawesome.com/icons/reel?style=thin /// needle, sewing, spool, string, thread, wire - static const IconData thinReel = IconDataThin(0xe238); + static const IconData thinReel = IconData(0xe238, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Reflect Horizontal icon /// /// https://fontawesome.com/icons/reflect-horizontal?style=solid /// exchange, flip, horizontal, inverse, invert, negative, reflect, swap, tool, edit, mirror - static const IconData solidReflectHorizontal = IconDataSolid(0xe664); + static const IconData solidReflectHorizontal = IconData(0xe664, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Reflect Horizontal icon /// /// https://fontawesome.com/icons/reflect-horizontal?style=regular /// exchange, flip, horizontal, inverse, invert, negative, reflect, swap, tool, edit, mirror - static const IconData reflectHorizontal = IconDataRegular(0xe664); + static const IconData reflectHorizontal = IconData(0xe664, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Reflect Horizontal icon /// /// https://fontawesome.com/icons/reflect-horizontal?style=light /// exchange, flip, horizontal, inverse, invert, negative, reflect, swap, tool, edit, mirror - static const IconData lightReflectHorizontal = IconDataLight(0xe664); + static const IconData lightReflectHorizontal = IconData(0xe664, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Reflect Horizontal icon /// /// https://fontawesome.com/icons/reflect-horizontal?style=thin /// exchange, flip, horizontal, inverse, invert, negative, reflect, swap, tool, edit, mirror - static const IconData thinReflectHorizontal = IconDataThin(0xe664); + static const IconData thinReflectHorizontal = IconData(0xe664, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Reflect Vertical icon /// /// https://fontawesome.com/icons/reflect-vertical?style=solid /// exchange, flip, inverse, invert, negative, reflect, swap, tool, edit, mirror, vertical - static const IconData solidReflectVertical = IconDataSolid(0xe665); + static const IconData solidReflectVertical = IconData(0xe665, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Reflect Vertical icon /// /// https://fontawesome.com/icons/reflect-vertical?style=regular /// exchange, flip, inverse, invert, negative, reflect, swap, tool, edit, mirror, vertical - static const IconData reflectVertical = IconDataRegular(0xe665); + static const IconData reflectVertical = IconData(0xe665, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Reflect Vertical icon /// /// https://fontawesome.com/icons/reflect-vertical?style=light /// exchange, flip, inverse, invert, negative, reflect, swap, tool, edit, mirror, vertical - static const IconData lightReflectVertical = IconDataLight(0xe665); + static const IconData lightReflectVertical = IconData(0xe665, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Reflect Vertical icon /// /// https://fontawesome.com/icons/reflect-vertical?style=thin /// exchange, flip, inverse, invert, negative, reflect, swap, tool, edit, mirror, vertical - static const IconData thinReflectVertical = IconDataThin(0xe665); + static const IconData thinReflectVertical = IconData(0xe665, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Refrigerator icon /// /// https://fontawesome.com/icons/refrigerator?style=solid /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData solidRefrigerator = IconDataSolid(0xe026); + static const IconData solidRefrigerator = IconData(0xe026, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Refrigerator icon /// /// https://fontawesome.com/icons/refrigerator?style=regular /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData refrigerator = IconDataRegular(0xe026); + static const IconData refrigerator = IconData(0xe026, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Refrigerator icon /// /// https://fontawesome.com/icons/refrigerator?style=light /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData lightRefrigerator = IconDataLight(0xe026); + static const IconData lightRefrigerator = IconData(0xe026, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Refrigerator icon /// /// https://fontawesome.com/icons/refrigerator?style=thin /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData thinRefrigerator = IconDataThin(0xe026); + static const IconData thinRefrigerator = IconData(0xe026, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Registered icon /// /// https://fontawesome.com/icons/registered?style=solid /// copyright, mark, r, registered, trademark - static const IconData solidRegistered = IconDataSolid(0xf25d); + static const IconData solidRegistered = IconData(0xf25d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Registered icon /// /// https://fontawesome.com/icons/registered?style=regular /// copyright, mark, r, registered, trademark - static const IconData registered = IconDataRegular(0xf25d); + static const IconData registered = IconData(0xf25d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Registered icon /// /// https://fontawesome.com/icons/registered?style=light /// copyright, mark, r, registered, trademark - static const IconData lightRegistered = IconDataLight(0xf25d); + static const IconData lightRegistered = IconData(0xf25d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Registered icon /// /// https://fontawesome.com/icons/registered?style=thin /// copyright, mark, r, registered, trademark - static const IconData thinRegistered = IconDataThin(0xf25d); + static const IconData thinRegistered = IconData(0xf25d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Renren icon /// /// https://fontawesome.com/icons/renren?style=brands - static const IconData renren = IconDataBrands(0xf18b); + static const IconData renren = IconData(0xf18b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Repeat icon /// /// https://fontawesome.com/icons/repeat?style=solid /// arrow, clockwise, flip, reload, renew, repeat, repeat button, retry, rewind, switch - static const IconData solidRepeat = IconDataSolid(0xf363); + static const IconData solidRepeat = IconData(0xf363, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Repeat icon /// /// https://fontawesome.com/icons/repeat?style=regular /// arrow, clockwise, flip, reload, renew, repeat, repeat button, retry, rewind, switch - static const IconData repeat = IconDataRegular(0xf363); + static const IconData repeat = IconData(0xf363, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Repeat icon /// /// https://fontawesome.com/icons/repeat?style=light /// arrow, clockwise, flip, reload, renew, repeat, repeat button, retry, rewind, switch - static const IconData lightRepeat = IconDataLight(0xf363); + static const IconData lightRepeat = IconData(0xf363, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Repeat icon /// /// https://fontawesome.com/icons/repeat?style=thin /// arrow, clockwise, flip, reload, renew, repeat, repeat button, retry, rewind, switch - static const IconData thinRepeat = IconDataThin(0xf363); + static const IconData thinRepeat = IconData(0xf363, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Repeat 1 icon /// /// https://fontawesome.com/icons/repeat-1?style=solid /// arrow, clockwise, flip, once, reload, renew, repeat single button, retry, rewind, switch - static const IconData solidRepeat1 = IconDataSolid(0xf365); + static const IconData solidRepeat1 = IconData(0xf365, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Repeat 1 icon /// /// https://fontawesome.com/icons/repeat-1?style=regular /// arrow, clockwise, flip, once, reload, renew, repeat single button, retry, rewind, switch - static const IconData repeat1 = IconDataRegular(0xf365); + static const IconData repeat1 = IconData(0xf365, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Repeat 1 icon /// /// https://fontawesome.com/icons/repeat-1?style=light /// arrow, clockwise, flip, once, reload, renew, repeat single button, retry, rewind, switch - static const IconData lightRepeat1 = IconDataLight(0xf365); + static const IconData lightRepeat1 = IconData(0xf365, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Repeat 1 icon /// /// https://fontawesome.com/icons/repeat-1?style=thin /// arrow, clockwise, flip, once, reload, renew, repeat single button, retry, rewind, switch - static const IconData thinRepeat1 = IconDataThin(0xf365); + static const IconData thinRepeat1 = IconData(0xf365, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Reply icon /// /// https://fontawesome.com/icons/reply?style=solid /// mail, message, respond - static const IconData solidReply = IconDataSolid(0xf3e5); + static const IconData solidReply = IconData(0xf3e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply for icon [solidReply] @Deprecated('Use "solidReply" instead.') @@ -70675,7 +70675,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply?style=regular /// mail, message, respond - static const IconData reply = IconDataRegular(0xf3e5); + static const IconData reply = IconData(0xf3e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply for icon [reply] @Deprecated('Use "reply" instead.') @@ -70685,7 +70685,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply?style=light /// mail, message, respond - static const IconData lightReply = IconDataLight(0xf3e5); + static const IconData lightReply = IconData(0xf3e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply for icon [lightReply] @Deprecated('Use "lightReply" instead.') @@ -70695,7 +70695,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply?style=thin /// mail, message, respond - static const IconData thinReply = IconDataThin(0xf3e5); + static const IconData thinReply = IconData(0xf3e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply for icon [thinReply] @Deprecated('Use "thinReply" instead.') @@ -70705,7 +70705,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-all?style=solid /// mail, message, respond - static const IconData solidReplyAll = IconDataSolid(0xf122); + static const IconData solidReplyAll = IconData(0xf122, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply-all for icon [solidReplyAll] @Deprecated('Use "solidReplyAll" instead.') @@ -70715,7 +70715,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-all?style=regular /// mail, message, respond - static const IconData replyAll = IconDataRegular(0xf122); + static const IconData replyAll = IconData(0xf122, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply-all for icon [replyAll] @Deprecated('Use "replyAll" instead.') @@ -70725,7 +70725,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-all?style=light /// mail, message, respond - static const IconData lightReplyAll = IconDataLight(0xf122); + static const IconData lightReplyAll = IconData(0xf122, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply-all for icon [lightReplyAll] @Deprecated('Use "lightReplyAll" instead.') @@ -70735,7 +70735,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-all?style=thin /// mail, message, respond - static const IconData thinReplyAll = IconDataThin(0xf122); + static const IconData thinReplyAll = IconData(0xf122, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mail-reply-all for icon [thinReplyAll] @Deprecated('Use "thinReplyAll" instead.') @@ -70745,7 +70745,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-clock?style=solid /// email, remind, reply, send - static const IconData solidReplyClock = IconDataSolid(0xe239); + static const IconData solidReplyClock = IconData(0xe239, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias reply-time for icon [solidReplyClock] @Deprecated('Use "solidReplyClock" instead.') @@ -70755,7 +70755,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-clock?style=regular /// email, remind, reply, send - static const IconData replyClock = IconDataRegular(0xe239); + static const IconData replyClock = IconData(0xe239, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias reply-time for icon [replyClock] @Deprecated('Use "replyClock" instead.') @@ -70765,7 +70765,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-clock?style=light /// email, remind, reply, send - static const IconData lightReplyClock = IconDataLight(0xe239); + static const IconData lightReplyClock = IconData(0xe239, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias reply-time for icon [lightReplyClock] @Deprecated('Use "lightReplyClock" instead.') @@ -70775,7 +70775,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/reply-clock?style=thin /// email, remind, reply, send - static const IconData thinReplyClock = IconDataThin(0xe239); + static const IconData thinReplyClock = IconData(0xe239, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias reply-time for icon [thinReplyClock] @Deprecated('Use "thinReplyClock" instead.') @@ -70784,172 +70784,172 @@ class FontAwesomeIcons { /// Brands replyd icon /// /// https://fontawesome.com/icons/replyd?style=brands - static const IconData replyd = IconDataBrands(0xf3e6); + static const IconData replyd = IconData(0xf3e6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Republican icon /// /// https://fontawesome.com/icons/republican?style=solid /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconData solidRepublican = IconDataSolid(0xf75e); + static const IconData solidRepublican = IconData(0xf75e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Republican icon /// /// https://fontawesome.com/icons/republican?style=regular /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconData republican = IconDataRegular(0xf75e); + static const IconData republican = IconData(0xf75e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Republican icon /// /// https://fontawesome.com/icons/republican?style=light /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconData lightRepublican = IconDataLight(0xf75e); + static const IconData lightRepublican = IconData(0xf75e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Republican icon /// /// https://fontawesome.com/icons/republican?style=thin /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconData thinRepublican = IconDataThin(0xf75e); + static const IconData thinRepublican = IconData(0xf75e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Researchgate icon /// /// https://fontawesome.com/icons/researchgate?style=brands - static const IconData researchgate = IconDataBrands(0xf4f8); + static const IconData researchgate = IconData(0xf4f8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Resolving icon /// /// https://fontawesome.com/icons/resolving?style=brands - static const IconData resolving = IconDataBrands(0xf3e7); + static const IconData resolving = IconData(0xf3e7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Restroom icon /// /// https://fontawesome.com/icons/restroom?style=solid /// bathroom, toilet, uer, water closet, wc - static const IconData solidRestroom = IconDataSolid(0xf7bd); + static const IconData solidRestroom = IconData(0xf7bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Restroom icon /// /// https://fontawesome.com/icons/restroom?style=regular /// bathroom, toilet, uer, water closet, wc - static const IconData restroom = IconDataRegular(0xf7bd); + static const IconData restroom = IconData(0xf7bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Restroom icon /// /// https://fontawesome.com/icons/restroom?style=light /// bathroom, toilet, uer, water closet, wc - static const IconData lightRestroom = IconDataLight(0xf7bd); + static const IconData lightRestroom = IconData(0xf7bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Restroom icon /// /// https://fontawesome.com/icons/restroom?style=thin /// bathroom, toilet, uer, water closet, wc - static const IconData thinRestroom = IconDataThin(0xf7bd); + static const IconData thinRestroom = IconData(0xf7bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Restroom Simple icon /// /// https://fontawesome.com/icons/restroom-simple?style=solid /// WC, bathroom, lavatory, restroom, toilet, uer, water closet, wc - static const IconData solidRestroomSimple = IconDataSolid(0xe23a); + static const IconData solidRestroomSimple = IconData(0xe23a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Restroom Simple icon /// /// https://fontawesome.com/icons/restroom-simple?style=regular /// WC, bathroom, lavatory, restroom, toilet, uer, water closet, wc - static const IconData restroomSimple = IconDataRegular(0xe23a); + static const IconData restroomSimple = IconData(0xe23a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Restroom Simple icon /// /// https://fontawesome.com/icons/restroom-simple?style=light /// WC, bathroom, lavatory, restroom, toilet, uer, water closet, wc - static const IconData lightRestroomSimple = IconDataLight(0xe23a); + static const IconData lightRestroomSimple = IconData(0xe23a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Restroom Simple icon /// /// https://fontawesome.com/icons/restroom-simple?style=thin /// WC, bathroom, lavatory, restroom, toilet, uer, water closet, wc - static const IconData thinRestroomSimple = IconDataThin(0xe23a); + static const IconData thinRestroomSimple = IconData(0xe23a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Retweet icon /// /// https://fontawesome.com/icons/retweet?style=solid /// refresh, reload, renew, retry, share, swap - static const IconData solidRetweet = IconDataSolid(0xf079); + static const IconData solidRetweet = IconData(0xf079, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Retweet icon /// /// https://fontawesome.com/icons/retweet?style=regular /// refresh, reload, renew, retry, share, swap - static const IconData retweet = IconDataRegular(0xf079); + static const IconData retweet = IconData(0xf079, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Retweet icon /// /// https://fontawesome.com/icons/retweet?style=light /// refresh, reload, renew, retry, share, swap - static const IconData lightRetweet = IconDataLight(0xf079); + static const IconData lightRetweet = IconData(0xf079, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Retweet icon /// /// https://fontawesome.com/icons/retweet?style=thin /// refresh, reload, renew, retry, share, swap - static const IconData thinRetweet = IconDataThin(0xf079); + static const IconData thinRetweet = IconData(0xf079, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Rev.io icon /// /// https://fontawesome.com/icons/rev?style=brands - static const IconData rev = IconDataBrands(0xf5b2); + static const IconData rev = IconData(0xf5b2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Rhombus icon /// /// https://fontawesome.com/icons/rhombus?style=solid /// diamond, parallelogram - static const IconData solidRhombus = IconDataSolid(0xe23b); + static const IconData solidRhombus = IconData(0xe23b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rhombus icon /// /// https://fontawesome.com/icons/rhombus?style=regular /// diamond, parallelogram - static const IconData rhombus = IconDataRegular(0xe23b); + static const IconData rhombus = IconData(0xe23b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rhombus icon /// /// https://fontawesome.com/icons/rhombus?style=light /// diamond, parallelogram - static const IconData lightRhombus = IconDataLight(0xe23b); + static const IconData lightRhombus = IconData(0xe23b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rhombus icon /// /// https://fontawesome.com/icons/rhombus?style=thin /// diamond, parallelogram - static const IconData thinRhombus = IconDataThin(0xe23b); + static const IconData thinRhombus = IconData(0xe23b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ribbon icon /// /// https://fontawesome.com/icons/ribbon?style=solid /// badge, cause, celebration, lapel, pin, reminder, reminder ribbon, ribbon - static const IconData solidRibbon = IconDataSolid(0xf4d6); + static const IconData solidRibbon = IconData(0xf4d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ribbon icon /// /// https://fontawesome.com/icons/ribbon?style=regular /// badge, cause, celebration, lapel, pin, reminder, reminder ribbon, ribbon - static const IconData ribbon = IconDataRegular(0xf4d6); + static const IconData ribbon = IconData(0xf4d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ribbon icon /// /// https://fontawesome.com/icons/ribbon?style=light /// badge, cause, celebration, lapel, pin, reminder, reminder ribbon, ribbon - static const IconData lightRibbon = IconDataLight(0xf4d6); + static const IconData lightRibbon = IconData(0xf4d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ribbon icon /// /// https://fontawesome.com/icons/ribbon?style=thin /// badge, cause, celebration, lapel, pin, reminder, reminder ribbon, ribbon - static const IconData thinRibbon = IconDataThin(0xf4d6); + static const IconData thinRibbon = IconData(0xf4d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Right icon /// /// https://fontawesome.com/icons/right?style=solid /// Rightwards Black Arrow, forward, next - static const IconData solidRight = IconDataSolid(0xf356); + static const IconData solidRight = IconData(0xf356, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-right for icon [solidRight] @Deprecated('Use "solidRight" instead.') @@ -70959,7 +70959,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right?style=regular /// Rightwards Black Arrow, forward, next - static const IconData right = IconDataRegular(0xf356); + static const IconData right = IconData(0xf356, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-right for icon [right] @Deprecated('Use "right" instead.') @@ -70969,7 +70969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right?style=light /// Rightwards Black Arrow, forward, next - static const IconData lightRight = IconDataLight(0xf356); + static const IconData lightRight = IconData(0xf356, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-right for icon [lightRight] @Deprecated('Use "lightRight" instead.') @@ -70979,7 +70979,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right?style=thin /// Rightwards Black Arrow, forward, next - static const IconData thinRight = IconDataThin(0xf356); + static const IconData thinRight = IconData(0xf356, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-right for icon [thinRight] @Deprecated('Use "thinRight" instead.') @@ -70989,7 +70989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-bracket?style=solid /// arrow, exit, leave, log out, logout, sign-out - static const IconData solidRightFromBracket = IconDataSolid(0xf2f5); + static const IconData solidRightFromBracket = IconData(0xf2f5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign-out-alt for icon [solidRightFromBracket] @Deprecated('Use "solidRightFromBracket" instead.') @@ -70999,7 +70999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-bracket?style=regular /// arrow, exit, leave, log out, logout, sign-out - static const IconData rightFromBracket = IconDataRegular(0xf2f5); + static const IconData rightFromBracket = IconData(0xf2f5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign-out-alt for icon [rightFromBracket] @Deprecated('Use "rightFromBracket" instead.') @@ -71009,7 +71009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-bracket?style=light /// arrow, exit, leave, log out, logout, sign-out - static const IconData lightRightFromBracket = IconDataLight(0xf2f5); + static const IconData lightRightFromBracket = IconData(0xf2f5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign-out-alt for icon [lightRightFromBracket] @Deprecated('Use "lightRightFromBracket" instead.') @@ -71019,7 +71019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-bracket?style=thin /// arrow, exit, leave, log out, logout, sign-out - static const IconData thinRightFromBracket = IconDataThin(0xf2f5); + static const IconData thinRightFromBracket = IconData(0xf2f5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign-out-alt for icon [thinRightFromBracket] @Deprecated('Use "thinRightFromBracket" instead.') @@ -71029,7 +71029,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-line?style=solid /// back, previous - static const IconData solidRightFromLine = IconDataSolid(0xf347); + static const IconData solidRightFromLine = IconData(0xf347, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-left for icon [solidRightFromLine] @Deprecated('Use "solidRightFromLine" instead.') @@ -71039,7 +71039,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-line?style=regular /// back, previous - static const IconData rightFromLine = IconDataRegular(0xf347); + static const IconData rightFromLine = IconData(0xf347, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-left for icon [rightFromLine] @Deprecated('Use "rightFromLine" instead.') @@ -71049,7 +71049,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-line?style=light /// back, previous - static const IconData lightRightFromLine = IconDataLight(0xf347); + static const IconData lightRightFromLine = IconData(0xf347, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-left for icon [lightRightFromLine] @Deprecated('Use "lightRightFromLine" instead.') @@ -71059,7 +71059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-from-line?style=thin /// back, previous - static const IconData thinRightFromLine = IconDataThin(0xf347); + static const IconData thinRightFromLine = IconData(0xf347, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-left for icon [thinRightFromLine] @Deprecated('Use "thinRightFromLine" instead.') @@ -71069,7 +71069,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-left?style=solid /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData solidRightLeft = IconDataSolid(0xf362); + static const IconData solidRightLeft = IconData(0xf362, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exchange-alt for icon [solidRightLeft] @Deprecated('Use "solidRightLeft" instead.') @@ -71079,7 +71079,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-left?style=regular /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData rightLeft = IconDataRegular(0xf362); + static const IconData rightLeft = IconData(0xf362, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exchange-alt for icon [rightLeft] @Deprecated('Use "rightLeft" instead.') @@ -71089,7 +71089,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-left?style=light /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData lightRightLeft = IconDataLight(0xf362); + static const IconData lightRightLeft = IconData(0xf362, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exchange-alt for icon [lightRightLeft] @Deprecated('Use "lightRightLeft" instead.') @@ -71099,7 +71099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-left?style=thin /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData thinRightLeft = IconDataThin(0xf362); + static const IconData thinRightLeft = IconData(0xf362, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exchange-alt for icon [thinRightLeft] @Deprecated('Use "thinRightLeft" instead.') @@ -71109,31 +71109,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-left-large?style=solid /// demand, left, pull, push, right, share, transfer, direction, supply - static const IconData solidRightLeftLarge = IconDataSolid(0xe5e1); + static const IconData solidRightLeftLarge = IconData(0xe5e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Right Left Large icon /// /// https://fontawesome.com/icons/right-left-large?style=regular /// demand, left, pull, push, right, share, transfer, direction, supply - static const IconData rightLeftLarge = IconDataRegular(0xe5e1); + static const IconData rightLeftLarge = IconData(0xe5e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Right Left Large icon /// /// https://fontawesome.com/icons/right-left-large?style=light /// demand, left, pull, push, right, share, transfer, direction, supply - static const IconData lightRightLeftLarge = IconDataLight(0xe5e1); + static const IconData lightRightLeftLarge = IconData(0xe5e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Right Left Large icon /// /// https://fontawesome.com/icons/right-left-large?style=thin /// demand, left, pull, push, right, share, transfer, direction, supply - static const IconData thinRightLeftLarge = IconDataThin(0xe5e1); + static const IconData thinRightLeftLarge = IconData(0xe5e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Right Long icon /// /// https://fontawesome.com/icons/right-long?style=solid /// forward, long-arrow-right, next - static const IconData solidRightLong = IconDataSolid(0xf30b); + static const IconData solidRightLong = IconData(0xf30b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-right for icon [solidRightLong] @Deprecated('Use "solidRightLong" instead.') @@ -71143,7 +71143,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-long?style=regular /// forward, long-arrow-right, next - static const IconData rightLong = IconDataRegular(0xf30b); + static const IconData rightLong = IconData(0xf30b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-right for icon [rightLong] @Deprecated('Use "rightLong" instead.') @@ -71153,7 +71153,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-long?style=light /// forward, long-arrow-right, next - static const IconData lightRightLong = IconDataLight(0xf30b); + static const IconData lightRightLong = IconData(0xf30b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-right for icon [lightRightLong] @Deprecated('Use "lightRightLong" instead.') @@ -71163,7 +71163,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-long?style=thin /// forward, long-arrow-right, next - static const IconData thinRightLong = IconDataThin(0xf30b); + static const IconData thinRightLong = IconData(0xf30b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-right for icon [thinRightLong] @Deprecated('Use "thinRightLong" instead.') @@ -71173,31 +71173,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-long-to-line?style=solid /// forward, right, skip, tab - static const IconData solidRightLongToLine = IconDataSolid(0xe444); + static const IconData solidRightLongToLine = IconData(0xe444, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Right Long To Line icon /// /// https://fontawesome.com/icons/right-long-to-line?style=regular /// forward, right, skip, tab - static const IconData rightLongToLine = IconDataRegular(0xe444); + static const IconData rightLongToLine = IconData(0xe444, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Right Long To Line icon /// /// https://fontawesome.com/icons/right-long-to-line?style=light /// forward, right, skip, tab - static const IconData lightRightLongToLine = IconDataLight(0xe444); + static const IconData lightRightLongToLine = IconData(0xe444, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Right Long To Line icon /// /// https://fontawesome.com/icons/right-long-to-line?style=thin /// forward, right, skip, tab - static const IconData thinRightLongToLine = IconDataThin(0xe444); + static const IconData thinRightLongToLine = IconData(0xe444, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Right To Bracket icon /// /// https://fontawesome.com/icons/right-to-bracket?style=solid /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData solidRightToBracket = IconDataSolid(0xf2f6); + static const IconData solidRightToBracket = IconData(0xf2f6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign-in-alt for icon [solidRightToBracket] @Deprecated('Use "solidRightToBracket" instead.') @@ -71207,7 +71207,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-bracket?style=regular /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData rightToBracket = IconDataRegular(0xf2f6); + static const IconData rightToBracket = IconData(0xf2f6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign-in-alt for icon [rightToBracket] @Deprecated('Use "rightToBracket" instead.') @@ -71217,7 +71217,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-bracket?style=light /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData lightRightToBracket = IconDataLight(0xf2f6); + static const IconData lightRightToBracket = IconData(0xf2f6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign-in-alt for icon [lightRightToBracket] @Deprecated('Use "lightRightToBracket" instead.') @@ -71227,7 +71227,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-bracket?style=thin /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData thinRightToBracket = IconDataThin(0xf2f6); + static const IconData thinRightToBracket = IconData(0xf2f6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign-in-alt for icon [thinRightToBracket] @Deprecated('Use "thinRightToBracket" instead.') @@ -71237,7 +71237,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-line?style=solid /// forward, next - static const IconData solidRightToLine = IconDataSolid(0xf34c); + static const IconData solidRightToLine = IconData(0xf34c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-right for icon [solidRightToLine] @Deprecated('Use "solidRightToLine" instead.') @@ -71247,7 +71247,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-line?style=regular /// forward, next - static const IconData rightToLine = IconDataRegular(0xf34c); + static const IconData rightToLine = IconData(0xf34c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-right for icon [rightToLine] @Deprecated('Use "rightToLine" instead.') @@ -71257,7 +71257,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-line?style=light /// forward, next - static const IconData lightRightToLine = IconDataLight(0xf34c); + static const IconData lightRightToLine = IconData(0xf34c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-right for icon [lightRightToLine] @Deprecated('Use "lightRightToLine" instead.') @@ -71267,7 +71267,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/right-to-line?style=thin /// forward, next - static const IconData thinRightToLine = IconDataThin(0xf34c); + static const IconData thinRightToLine = IconData(0xf34c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-right for icon [thinRightToLine] @Deprecated('Use "thinRightToLine" instead.') @@ -71277,401 +71277,401 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ring?style=solid /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious, premium - static const IconData solidRing = IconDataSolid(0xf70b); + static const IconData solidRing = IconData(0xf70b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ring icon /// /// https://fontawesome.com/icons/ring?style=regular /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious, premium - static const IconData ring = IconDataRegular(0xf70b); + static const IconData ring = IconData(0xf70b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ring icon /// /// https://fontawesome.com/icons/ring?style=light /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious, premium - static const IconData lightRing = IconDataLight(0xf70b); + static const IconData lightRing = IconData(0xf70b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ring icon /// /// https://fontawesome.com/icons/ring?style=thin /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious, premium - static const IconData thinRing = IconDataThin(0xf70b); + static const IconData thinRing = IconData(0xf70b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ring Diamond icon /// /// https://fontawesome.com/icons/ring-diamond?style=solid /// diamond, engagement, gold, ice, marriage, matrimony, platinum, premium, proposal, rock, sparkle - static const IconData solidRingDiamond = IconDataSolid(0xe5ab); + static const IconData solidRingDiamond = IconData(0xe5ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ring Diamond icon /// /// https://fontawesome.com/icons/ring-diamond?style=regular /// diamond, engagement, gold, ice, marriage, matrimony, platinum, premium, proposal, rock, sparkle - static const IconData ringDiamond = IconDataRegular(0xe5ab); + static const IconData ringDiamond = IconData(0xe5ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ring Diamond icon /// /// https://fontawesome.com/icons/ring-diamond?style=light /// diamond, engagement, gold, ice, marriage, matrimony, platinum, premium, proposal, rock, sparkle - static const IconData lightRingDiamond = IconDataLight(0xe5ab); + static const IconData lightRingDiamond = IconData(0xe5ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ring Diamond icon /// /// https://fontawesome.com/icons/ring-diamond?style=thin /// diamond, engagement, gold, ice, marriage, matrimony, platinum, premium, proposal, rock, sparkle - static const IconData thinRingDiamond = IconDataThin(0xe5ab); + static const IconData thinRingDiamond = IconData(0xe5ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rings Wedding icon /// /// https://fontawesome.com/icons/rings-wedding?style=solid /// diamond, engagement, gold, marriage, matrimony, platinum, premium, proposal - static const IconData solidRingsWedding = IconDataSolid(0xf81b); + static const IconData solidRingsWedding = IconData(0xf81b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rings Wedding icon /// /// https://fontawesome.com/icons/rings-wedding?style=regular /// diamond, engagement, gold, marriage, matrimony, platinum, premium, proposal - static const IconData ringsWedding = IconDataRegular(0xf81b); + static const IconData ringsWedding = IconData(0xf81b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rings Wedding icon /// /// https://fontawesome.com/icons/rings-wedding?style=light /// diamond, engagement, gold, marriage, matrimony, platinum, premium, proposal - static const IconData lightRingsWedding = IconDataLight(0xf81b); + static const IconData lightRingsWedding = IconData(0xf81b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rings Wedding icon /// /// https://fontawesome.com/icons/rings-wedding?style=thin /// diamond, engagement, gold, marriage, matrimony, platinum, premium, proposal - static const IconData thinRingsWedding = IconDataThin(0xf81b); + static const IconData thinRingsWedding = IconData(0xf81b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road icon /// /// https://fontawesome.com/icons/road?style=solid /// highway, map, motorway, pavement, road, route, street, travel - static const IconData solidRoad = IconDataSolid(0xf018); + static const IconData solidRoad = IconData(0xf018, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road icon /// /// https://fontawesome.com/icons/road?style=regular /// highway, map, motorway, pavement, road, route, street, travel - static const IconData road = IconDataRegular(0xf018); + static const IconData road = IconData(0xf018, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road icon /// /// https://fontawesome.com/icons/road?style=light /// highway, map, motorway, pavement, road, route, street, travel - static const IconData lightRoad = IconDataLight(0xf018); + static const IconData lightRoad = IconData(0xf018, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road icon /// /// https://fontawesome.com/icons/road?style=thin /// highway, map, motorway, pavement, road, route, street, travel - static const IconData thinRoad = IconDataThin(0xf018); + static const IconData thinRoad = IconData(0xf018, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Barrier icon /// /// https://fontawesome.com/icons/road-barrier?style=solid /// block, border, no entry, roadblock - static const IconData solidRoadBarrier = IconDataSolid(0xe562); + static const IconData solidRoadBarrier = IconData(0xe562, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Barrier icon /// /// https://fontawesome.com/icons/road-barrier?style=regular /// block, border, no entry, roadblock - static const IconData roadBarrier = IconDataRegular(0xe562); + static const IconData roadBarrier = IconData(0xe562, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Barrier icon /// /// https://fontawesome.com/icons/road-barrier?style=light /// block, border, no entry, roadblock - static const IconData lightRoadBarrier = IconDataLight(0xe562); + static const IconData lightRoadBarrier = IconData(0xe562, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Barrier icon /// /// https://fontawesome.com/icons/road-barrier?style=thin /// block, border, no entry, roadblock - static const IconData thinRoadBarrier = IconDataThin(0xe562); + static const IconData thinRoadBarrier = IconData(0xe562, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Bridge icon /// /// https://fontawesome.com/icons/road-bridge?style=solid /// bridge, infrastructure, road, travel - static const IconData solidRoadBridge = IconDataSolid(0xe563); + static const IconData solidRoadBridge = IconData(0xe563, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Bridge icon /// /// https://fontawesome.com/icons/road-bridge?style=regular /// bridge, infrastructure, road, travel - static const IconData roadBridge = IconDataRegular(0xe563); + static const IconData roadBridge = IconData(0xe563, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Bridge icon /// /// https://fontawesome.com/icons/road-bridge?style=light /// bridge, infrastructure, road, travel - static const IconData lightRoadBridge = IconDataLight(0xe563); + static const IconData lightRoadBridge = IconData(0xe563, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Bridge icon /// /// https://fontawesome.com/icons/road-bridge?style=thin /// bridge, infrastructure, road, travel - static const IconData thinRoadBridge = IconDataThin(0xe563); + static const IconData thinRoadBridge = IconData(0xe563, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Circle Check icon /// /// https://fontawesome.com/icons/road-circle-check?style=solid /// enable, freeway, highway, not affected, ok, okay, pavement, road, validate, working - static const IconData solidRoadCircleCheck = IconDataSolid(0xe564); + static const IconData solidRoadCircleCheck = IconData(0xe564, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Circle Check icon /// /// https://fontawesome.com/icons/road-circle-check?style=regular /// enable, freeway, highway, not affected, ok, okay, pavement, road, validate, working - static const IconData roadCircleCheck = IconDataRegular(0xe564); + static const IconData roadCircleCheck = IconData(0xe564, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Circle Check icon /// /// https://fontawesome.com/icons/road-circle-check?style=light /// enable, freeway, highway, not affected, ok, okay, pavement, road, validate, working - static const IconData lightRoadCircleCheck = IconDataLight(0xe564); + static const IconData lightRoadCircleCheck = IconData(0xe564, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Circle Check icon /// /// https://fontawesome.com/icons/road-circle-check?style=thin /// enable, freeway, highway, not affected, ok, okay, pavement, road, validate, working - static const IconData thinRoadCircleCheck = IconDataThin(0xe564); + static const IconData thinRoadCircleCheck = IconData(0xe564, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Circle Exclamation icon /// /// https://fontawesome.com/icons/road-circle-exclamation?style=solid /// affected, failed, freeway, highway, pavement, road - static const IconData solidRoadCircleExclamation = IconDataSolid(0xe565); + static const IconData solidRoadCircleExclamation = IconData(0xe565, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Circle Exclamation icon /// /// https://fontawesome.com/icons/road-circle-exclamation?style=regular /// affected, failed, freeway, highway, pavement, road - static const IconData roadCircleExclamation = IconDataRegular(0xe565); + static const IconData roadCircleExclamation = IconData(0xe565, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Circle Exclamation icon /// /// https://fontawesome.com/icons/road-circle-exclamation?style=light /// affected, failed, freeway, highway, pavement, road - static const IconData lightRoadCircleExclamation = IconDataLight(0xe565); + static const IconData lightRoadCircleExclamation = IconData(0xe565, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Circle Exclamation icon /// /// https://fontawesome.com/icons/road-circle-exclamation?style=thin /// affected, failed, freeway, highway, pavement, road - static const IconData thinRoadCircleExclamation = IconDataThin(0xe565); + static const IconData thinRoadCircleExclamation = IconData(0xe565, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Circle Xmark icon /// /// https://fontawesome.com/icons/road-circle-xmark?style=solid /// destroy, freeway, highway, pavement, road, uncheck - static const IconData solidRoadCircleXmark = IconDataSolid(0xe566); + static const IconData solidRoadCircleXmark = IconData(0xe566, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Circle Xmark icon /// /// https://fontawesome.com/icons/road-circle-xmark?style=regular /// destroy, freeway, highway, pavement, road, uncheck - static const IconData roadCircleXmark = IconDataRegular(0xe566); + static const IconData roadCircleXmark = IconData(0xe566, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Circle Xmark icon /// /// https://fontawesome.com/icons/road-circle-xmark?style=light /// destroy, freeway, highway, pavement, road, uncheck - static const IconData lightRoadCircleXmark = IconDataLight(0xe566); + static const IconData lightRoadCircleXmark = IconData(0xe566, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Circle Xmark icon /// /// https://fontawesome.com/icons/road-circle-xmark?style=thin /// destroy, freeway, highway, pavement, road, uncheck - static const IconData thinRoadCircleXmark = IconDataThin(0xe566); + static const IconData thinRoadCircleXmark = IconData(0xe566, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Lock icon /// /// https://fontawesome.com/icons/road-lock?style=solid /// closed, freeway, highway, lockdown, padlock, pavement, privacy, quarantine, road - static const IconData solidRoadLock = IconDataSolid(0xe567); + static const IconData solidRoadLock = IconData(0xe567, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Lock icon /// /// https://fontawesome.com/icons/road-lock?style=regular /// closed, freeway, highway, lockdown, padlock, pavement, privacy, quarantine, road - static const IconData roadLock = IconDataRegular(0xe567); + static const IconData roadLock = IconData(0xe567, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Lock icon /// /// https://fontawesome.com/icons/road-lock?style=light /// closed, freeway, highway, lockdown, padlock, pavement, privacy, quarantine, road - static const IconData lightRoadLock = IconDataLight(0xe567); + static const IconData lightRoadLock = IconData(0xe567, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Lock icon /// /// https://fontawesome.com/icons/road-lock?style=thin /// closed, freeway, highway, lockdown, padlock, pavement, privacy, quarantine, road - static const IconData thinRoadLock = IconDataThin(0xe567); + static const IconData thinRoadLock = IconData(0xe567, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Road Spikes icon /// /// https://fontawesome.com/icons/road-spikes?style=solid /// barrier, roadblock, spikes - static const IconData solidRoadSpikes = IconDataSolid(0xe568); + static const IconData solidRoadSpikes = IconData(0xe568, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Road Spikes icon /// /// https://fontawesome.com/icons/road-spikes?style=regular /// barrier, roadblock, spikes - static const IconData roadSpikes = IconDataRegular(0xe568); + static const IconData roadSpikes = IconData(0xe568, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Road Spikes icon /// /// https://fontawesome.com/icons/road-spikes?style=light /// barrier, roadblock, spikes - static const IconData lightRoadSpikes = IconDataLight(0xe568); + static const IconData lightRoadSpikes = IconData(0xe568, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Road Spikes icon /// /// https://fontawesome.com/icons/road-spikes?style=thin /// barrier, roadblock, spikes - static const IconData thinRoadSpikes = IconDataThin(0xe568); + static const IconData thinRoadSpikes = IconData(0xe568, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Robot icon /// /// https://fontawesome.com/icons/robot?style=solid /// android, automate, computer, cyborg, face, monster, robot - static const IconData solidRobot = IconDataSolid(0xf544); + static const IconData solidRobot = IconData(0xf544, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Robot icon /// /// https://fontawesome.com/icons/robot?style=regular /// android, automate, computer, cyborg, face, monster, robot - static const IconData robot = IconDataRegular(0xf544); + static const IconData robot = IconData(0xf544, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Robot icon /// /// https://fontawesome.com/icons/robot?style=light /// android, automate, computer, cyborg, face, monster, robot - static const IconData lightRobot = IconDataLight(0xf544); + static const IconData lightRobot = IconData(0xf544, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Robot icon /// /// https://fontawesome.com/icons/robot?style=thin /// android, automate, computer, cyborg, face, monster, robot - static const IconData thinRobot = IconDataThin(0xf544); + static const IconData thinRobot = IconData(0xf544, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Robot Astromech icon /// /// https://fontawesome.com/icons/robot-astromech?style=solid /// artoo, beep, droid, gps, mechanic, r2d2, star wars - static const IconData solidRobotAstromech = IconDataSolid(0xe2d2); + static const IconData solidRobotAstromech = IconData(0xe2d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Robot Astromech icon /// /// https://fontawesome.com/icons/robot-astromech?style=regular /// artoo, beep, droid, gps, mechanic, r2d2, star wars - static const IconData robotAstromech = IconDataRegular(0xe2d2); + static const IconData robotAstromech = IconData(0xe2d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Robot Astromech icon /// /// https://fontawesome.com/icons/robot-astromech?style=light /// artoo, beep, droid, gps, mechanic, r2d2, star wars - static const IconData lightRobotAstromech = IconDataLight(0xe2d2); + static const IconData lightRobotAstromech = IconData(0xe2d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Robot Astromech icon /// /// https://fontawesome.com/icons/robot-astromech?style=thin /// artoo, beep, droid, gps, mechanic, r2d2, star wars - static const IconData thinRobotAstromech = IconDataThin(0xe2d2); + static const IconData thinRobotAstromech = IconData(0xe2d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rocket icon /// /// https://fontawesome.com/icons/rocket?style=solid /// aircraft, app, jet, launch, nasa, space - static const IconData solidRocket = IconDataSolid(0xf135); + static const IconData solidRocket = IconData(0xf135, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rocket icon /// /// https://fontawesome.com/icons/rocket?style=regular /// aircraft, app, jet, launch, nasa, space - static const IconData rocket = IconDataRegular(0xf135); + static const IconData rocket = IconData(0xf135, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rocket icon /// /// https://fontawesome.com/icons/rocket?style=light /// aircraft, app, jet, launch, nasa, space - static const IconData lightRocket = IconDataLight(0xf135); + static const IconData lightRocket = IconData(0xf135, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rocket icon /// /// https://fontawesome.com/icons/rocket?style=thin /// aircraft, app, jet, launch, nasa, space - static const IconData thinRocket = IconDataThin(0xf135); + static const IconData thinRocket = IconData(0xf135, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rocket Launch icon /// /// https://fontawesome.com/icons/rocket-launch?style=solid /// aircraft, app, ignition, jet, launch, nasa, rocket, space, thrusters - static const IconData solidRocketLaunch = IconDataSolid(0xe027); + static const IconData solidRocketLaunch = IconData(0xe027, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rocket Launch icon /// /// https://fontawesome.com/icons/rocket-launch?style=regular /// aircraft, app, ignition, jet, launch, nasa, rocket, space, thrusters - static const IconData rocketLaunch = IconDataRegular(0xe027); + static const IconData rocketLaunch = IconData(0xe027, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rocket Launch icon /// /// https://fontawesome.com/icons/rocket-launch?style=light /// aircraft, app, ignition, jet, launch, nasa, rocket, space, thrusters - static const IconData lightRocketLaunch = IconDataLight(0xe027); + static const IconData lightRocketLaunch = IconData(0xe027, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rocket Launch icon /// /// https://fontawesome.com/icons/rocket-launch?style=thin /// aircraft, app, ignition, jet, launch, nasa, rocket, space, thrusters - static const IconData thinRocketLaunch = IconDataThin(0xe027); + static const IconData thinRocketLaunch = IconData(0xe027, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Rocket.Chat icon /// /// https://fontawesome.com/icons/rocketchat?style=brands - static const IconData rocketchat = IconDataBrands(0xf3e8); + static const IconData rocketchat = IconData(0xf3e8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Rockrms icon /// /// https://fontawesome.com/icons/rockrms?style=brands - static const IconData rockrms = IconDataBrands(0xf3e9); + static const IconData rockrms = IconData(0xf3e9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Roller Coaster icon /// /// https://fontawesome.com/icons/roller-coaster?style=solid /// amusement park, coaster, fair, ride, roller, roller coaster, theme park - static const IconData solidRollerCoaster = IconDataSolid(0xe324); + static const IconData solidRollerCoaster = IconData(0xe324, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Roller Coaster icon /// /// https://fontawesome.com/icons/roller-coaster?style=regular /// amusement park, coaster, fair, ride, roller, roller coaster, theme park - static const IconData rollerCoaster = IconDataRegular(0xe324); + static const IconData rollerCoaster = IconData(0xe324, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Roller Coaster icon /// /// https://fontawesome.com/icons/roller-coaster?style=light /// amusement park, coaster, fair, ride, roller, roller coaster, theme park - static const IconData lightRollerCoaster = IconDataLight(0xe324); + static const IconData lightRollerCoaster = IconData(0xe324, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Roller Coaster icon /// /// https://fontawesome.com/icons/roller-coaster?style=thin /// amusement park, coaster, fair, ride, roller, roller coaster, theme park - static const IconData thinRollerCoaster = IconDataThin(0xe324); + static const IconData thinRollerCoaster = IconData(0xe324, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rotate icon /// /// https://fontawesome.com/icons/rotate?style=solid /// arrow, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins - static const IconData solidRotate = IconDataSolid(0xf2f1); + static const IconData solidRotate = IconData(0xf2f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sync-alt for icon [solidRotate] @Deprecated('Use "solidRotate" instead.') @@ -71681,7 +71681,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate?style=regular /// arrow, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins - static const IconData rotate = IconDataRegular(0xf2f1); + static const IconData rotate = IconData(0xf2f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sync-alt for icon [rotate] @Deprecated('Use "rotate" instead.') @@ -71691,7 +71691,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate?style=light /// arrow, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins - static const IconData lightRotate = IconDataLight(0xf2f1); + static const IconData lightRotate = IconData(0xf2f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sync-alt for icon [lightRotate] @Deprecated('Use "lightRotate" instead.') @@ -71701,7 +71701,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate?style=thin /// arrow, clockwise, exchange, modify, refresh, reload, renew, retry, rotate, swap, withershins - static const IconData thinRotate = IconDataThin(0xf2f1); + static const IconData thinRotate = IconData(0xf2f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sync-alt for icon [thinRotate] @Deprecated('Use "thinRotate" instead.') @@ -71711,31 +71711,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-exclamation?style=solid /// attention, failed, redo, sync, warning - static const IconData solidRotateExclamation = IconDataSolid(0xe23c); + static const IconData solidRotateExclamation = IconData(0xe23c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rotate Exclamation icon /// /// https://fontawesome.com/icons/rotate-exclamation?style=regular /// attention, failed, redo, sync, warning - static const IconData rotateExclamation = IconDataRegular(0xe23c); + static const IconData rotateExclamation = IconData(0xe23c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rotate Exclamation icon /// /// https://fontawesome.com/icons/rotate-exclamation?style=light /// attention, failed, redo, sync, warning - static const IconData lightRotateExclamation = IconDataLight(0xe23c); + static const IconData lightRotateExclamation = IconData(0xe23c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rotate Exclamation icon /// /// https://fontawesome.com/icons/rotate-exclamation?style=thin /// attention, failed, redo, sync, warning - static const IconData thinRotateExclamation = IconDataThin(0xe23c); + static const IconData thinRotateExclamation = IconData(0xe23c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rotate Left icon /// /// https://fontawesome.com/icons/rotate-left?style=solid /// back, control z, exchange, oops, return, swap - static const IconData solidRotateLeft = IconDataSolid(0xf2ea); + static const IconData solidRotateLeft = IconData(0xf2ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rotate-back for icon [solidRotateLeft] @Deprecated('Use "solidRotateLeft" instead.') @@ -71753,7 +71753,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-left?style=regular /// back, control z, exchange, oops, return, swap - static const IconData rotateLeft = IconDataRegular(0xf2ea); + static const IconData rotateLeft = IconData(0xf2ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rotate-back for icon [rotateLeft] @Deprecated('Use "rotateLeft" instead.') @@ -71771,7 +71771,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-left?style=light /// back, control z, exchange, oops, return, swap - static const IconData lightRotateLeft = IconDataLight(0xf2ea); + static const IconData lightRotateLeft = IconData(0xf2ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rotate-back for icon [lightRotateLeft] @Deprecated('Use "lightRotateLeft" instead.') @@ -71789,7 +71789,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-left?style=thin /// back, control z, exchange, oops, return, swap - static const IconData thinRotateLeft = IconDataThin(0xf2ea); + static const IconData thinRotateLeft = IconData(0xf2ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rotate-back for icon [thinRotateLeft] @Deprecated('Use "thinRotateLeft" instead.') @@ -71807,31 +71807,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-reverse?style=solid /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData solidRotateReverse = IconDataSolid(0xe631); + static const IconData solidRotateReverse = IconData(0xe631, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rotate Reverse icon /// /// https://fontawesome.com/icons/rotate-reverse?style=regular /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData rotateReverse = IconDataRegular(0xe631); + static const IconData rotateReverse = IconData(0xe631, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rotate Reverse icon /// /// https://fontawesome.com/icons/rotate-reverse?style=light /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData lightRotateReverse = IconDataLight(0xe631); + static const IconData lightRotateReverse = IconData(0xe631, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rotate Reverse icon /// /// https://fontawesome.com/icons/rotate-reverse?style=thin /// anticlockwise, arrow, counterclockwise, exchange, refresh, reload, renew, retry, rotate, swap, withershins, modify - static const IconData thinRotateReverse = IconDataThin(0xe631); + static const IconData thinRotateReverse = IconData(0xe631, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rotate Right icon /// /// https://fontawesome.com/icons/rotate-right?style=solid /// forward, refresh, reload, renew, repeat, retry - static const IconData solidRotateRight = IconDataSolid(0xf2f9); + static const IconData solidRotateRight = IconData(0xf2f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias redo-alt for icon [solidRotateRight] @Deprecated('Use "solidRotateRight" instead.') @@ -71845,7 +71845,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-right?style=regular /// forward, refresh, reload, renew, repeat, retry - static const IconData rotateRight = IconDataRegular(0xf2f9); + static const IconData rotateRight = IconData(0xf2f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias redo-alt for icon [rotateRight] @Deprecated('Use "rotateRight" instead.') @@ -71859,7 +71859,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-right?style=light /// forward, refresh, reload, renew, repeat, retry - static const IconData lightRotateRight = IconDataLight(0xf2f9); + static const IconData lightRotateRight = IconData(0xf2f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias redo-alt for icon [lightRotateRight] @Deprecated('Use "lightRotateRight" instead.') @@ -71873,7 +71873,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rotate-right?style=thin /// forward, refresh, reload, renew, repeat, retry - static const IconData thinRotateRight = IconDataThin(0xf2f9); + static const IconData thinRotateRight = IconData(0xf2f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias redo-alt for icon [thinRotateRight] @Deprecated('Use "thinRotateRight" instead.') @@ -71887,103 +71887,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/route?style=solid /// directions, navigation, travel - static const IconData solidRoute = IconDataSolid(0xf4d7); + static const IconData solidRoute = IconData(0xf4d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Route icon /// /// https://fontawesome.com/icons/route?style=regular /// directions, navigation, travel - static const IconData route = IconDataRegular(0xf4d7); + static const IconData route = IconData(0xf4d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Route icon /// /// https://fontawesome.com/icons/route?style=light /// directions, navigation, travel - static const IconData lightRoute = IconDataLight(0xf4d7); + static const IconData lightRoute = IconData(0xf4d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Route icon /// /// https://fontawesome.com/icons/route?style=thin /// directions, navigation, travel - static const IconData thinRoute = IconDataThin(0xf4d7); + static const IconData thinRoute = IconData(0xf4d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Route Highway icon /// /// https://fontawesome.com/icons/route-highway?style=solid /// directions, highway, interstate, navigation, sign, travel - static const IconData solidRouteHighway = IconDataSolid(0xf61a); + static const IconData solidRouteHighway = IconData(0xf61a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Route Highway icon /// /// https://fontawesome.com/icons/route-highway?style=regular /// directions, highway, interstate, navigation, sign, travel - static const IconData routeHighway = IconDataRegular(0xf61a); + static const IconData routeHighway = IconData(0xf61a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Route Highway icon /// /// https://fontawesome.com/icons/route-highway?style=light /// directions, highway, interstate, navigation, sign, travel - static const IconData lightRouteHighway = IconDataLight(0xf61a); + static const IconData lightRouteHighway = IconData(0xf61a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Route Highway icon /// /// https://fontawesome.com/icons/route-highway?style=thin /// directions, highway, interstate, navigation, sign, travel - static const IconData thinRouteHighway = IconDataThin(0xf61a); + static const IconData thinRouteHighway = IconData(0xf61a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Route Interstate icon /// /// https://fontawesome.com/icons/route-interstate?style=solid /// directions, highway, interstate, navigation, sign, travel - static const IconData solidRouteInterstate = IconDataSolid(0xf61b); + static const IconData solidRouteInterstate = IconData(0xf61b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Route Interstate icon /// /// https://fontawesome.com/icons/route-interstate?style=regular /// directions, highway, interstate, navigation, sign, travel - static const IconData routeInterstate = IconDataRegular(0xf61b); + static const IconData routeInterstate = IconData(0xf61b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Route Interstate icon /// /// https://fontawesome.com/icons/route-interstate?style=light /// directions, highway, interstate, navigation, sign, travel - static const IconData lightRouteInterstate = IconDataLight(0xf61b); + static const IconData lightRouteInterstate = IconData(0xf61b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Route Interstate icon /// /// https://fontawesome.com/icons/route-interstate?style=thin /// directions, highway, interstate, navigation, sign, travel - static const IconData thinRouteInterstate = IconDataThin(0xf61b); + static const IconData thinRouteInterstate = IconData(0xf61b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Router icon /// /// https://fontawesome.com/icons/router?style=solid /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless, www - static const IconData solidRouter = IconDataSolid(0xf8da); + static const IconData solidRouter = IconData(0xf8da, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Router icon /// /// https://fontawesome.com/icons/router?style=regular /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless, www - static const IconData router = IconDataRegular(0xf8da); + static const IconData router = IconData(0xf8da, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Router icon /// /// https://fontawesome.com/icons/router?style=light /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless, www - static const IconData lightRouter = IconDataLight(0xf8da); + static const IconData lightRouter = IconData(0xf8da, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Router icon /// /// https://fontawesome.com/icons/router?style=thin /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless, www - static const IconData thinRouter = IconDataThin(0xf8da); + static const IconData thinRouter = IconData(0xf8da, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rss icon /// /// https://fontawesome.com/icons/rss?style=solid /// blog, feed, journal, news, writing - static const IconData solidRss = IconDataSolid(0xf09e); + static const IconData solidRss = IconData(0xf09e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias feed for icon [solidRss] @Deprecated('Use "solidRss" instead.') @@ -71993,7 +71993,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rss?style=regular /// blog, feed, journal, news, writing - static const IconData rss = IconDataRegular(0xf09e); + static const IconData rss = IconData(0xf09e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias feed for icon [rss] @Deprecated('Use "rss" instead.') @@ -72003,7 +72003,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rss?style=light /// blog, feed, journal, news, writing - static const IconData lightRss = IconDataLight(0xf09e); + static const IconData lightRss = IconData(0xf09e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias feed for icon [lightRss] @Deprecated('Use "lightRss" instead.') @@ -72013,7 +72013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rss?style=thin /// blog, feed, journal, news, writing - static const IconData thinRss = IconDataThin(0xf09e); + static const IconData thinRss = IconData(0xf09e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias feed for icon [thinRss] @Deprecated('Use "thinRss" instead.') @@ -72023,7 +72023,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ruble-sign?style=solid /// Ruble Sign, currency - static const IconData solidRubleSign = IconDataSolid(0xf158); + static const IconData solidRubleSign = IconData(0xf158, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rouble for icon [solidRubleSign] @Deprecated('Use "solidRubleSign" instead.') @@ -72041,7 +72041,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ruble-sign?style=regular /// Ruble Sign, currency - static const IconData rubleSign = IconDataRegular(0xf158); + static const IconData rubleSign = IconData(0xf158, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rouble for icon [rubleSign] @Deprecated('Use "rubleSign" instead.') @@ -72059,7 +72059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ruble-sign?style=light /// Ruble Sign, currency - static const IconData lightRubleSign = IconDataLight(0xf158); + static const IconData lightRubleSign = IconData(0xf158, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rouble for icon [lightRubleSign] @Deprecated('Use "lightRubleSign" instead.') @@ -72077,7 +72077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ruble-sign?style=thin /// Ruble Sign, currency - static const IconData thinRubleSign = IconDataThin(0xf158); + static const IconData thinRubleSign = IconData(0xf158, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rouble for icon [thinRubleSign] @Deprecated('Use "thinRubleSign" instead.') @@ -72095,175 +72095,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rug?style=solid /// blanket, carpet, rug, textile - static const IconData solidRug = IconDataSolid(0xe569); + static const IconData solidRug = IconData(0xe569, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rug icon /// /// https://fontawesome.com/icons/rug?style=regular /// blanket, carpet, rug, textile - static const IconData rug = IconDataRegular(0xe569); + static const IconData rug = IconData(0xe569, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rug icon /// /// https://fontawesome.com/icons/rug?style=light /// blanket, carpet, rug, textile - static const IconData lightRug = IconDataLight(0xe569); + static const IconData lightRug = IconData(0xe569, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rug icon /// /// https://fontawesome.com/icons/rug?style=thin /// blanket, carpet, rug, textile - static const IconData thinRug = IconDataThin(0xe569); + static const IconData thinRug = IconData(0xe569, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rugby Ball icon /// /// https://fontawesome.com/icons/rugby-ball?style=solid /// ball, football, rugby, rugby football - static const IconData solidRugbyBall = IconDataSolid(0xe3c6); + static const IconData solidRugbyBall = IconData(0xe3c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rugby Ball icon /// /// https://fontawesome.com/icons/rugby-ball?style=regular /// ball, football, rugby, rugby football - static const IconData rugbyBall = IconDataRegular(0xe3c6); + static const IconData rugbyBall = IconData(0xe3c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rugby Ball icon /// /// https://fontawesome.com/icons/rugby-ball?style=light /// ball, football, rugby, rugby football - static const IconData lightRugbyBall = IconDataLight(0xe3c6); + static const IconData lightRugbyBall = IconData(0xe3c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rugby Ball icon /// /// https://fontawesome.com/icons/rugby-ball?style=thin /// ball, football, rugby, rugby football - static const IconData thinRugbyBall = IconDataThin(0xe3c6); + static const IconData thinRugbyBall = IconData(0xe3c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ruler icon /// /// https://fontawesome.com/icons/ruler?style=solid /// design, draft, length, measure, planning, ruler, straight edge, straight ruler - static const IconData solidRuler = IconDataSolid(0xf545); + static const IconData solidRuler = IconData(0xf545, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ruler icon /// /// https://fontawesome.com/icons/ruler?style=regular /// design, draft, length, measure, planning, ruler, straight edge, straight ruler - static const IconData ruler = IconDataRegular(0xf545); + static const IconData ruler = IconData(0xf545, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ruler icon /// /// https://fontawesome.com/icons/ruler?style=light /// design, draft, length, measure, planning, ruler, straight edge, straight ruler - static const IconData lightRuler = IconDataLight(0xf545); + static const IconData lightRuler = IconData(0xf545, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ruler icon /// /// https://fontawesome.com/icons/ruler?style=thin /// design, draft, length, measure, planning, ruler, straight edge, straight ruler - static const IconData thinRuler = IconDataThin(0xf545); + static const IconData thinRuler = IconData(0xf545, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ruler Combined icon /// /// https://fontawesome.com/icons/ruler-combined?style=solid /// design, draft, length, measure, planning - static const IconData solidRulerCombined = IconDataSolid(0xf546); + static const IconData solidRulerCombined = IconData(0xf546, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ruler Combined icon /// /// https://fontawesome.com/icons/ruler-combined?style=regular /// design, draft, length, measure, planning - static const IconData rulerCombined = IconDataRegular(0xf546); + static const IconData rulerCombined = IconData(0xf546, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ruler Combined icon /// /// https://fontawesome.com/icons/ruler-combined?style=light /// design, draft, length, measure, planning - static const IconData lightRulerCombined = IconDataLight(0xf546); + static const IconData lightRulerCombined = IconData(0xf546, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ruler Combined icon /// /// https://fontawesome.com/icons/ruler-combined?style=thin /// design, draft, length, measure, planning - static const IconData thinRulerCombined = IconDataThin(0xf546); + static const IconData thinRulerCombined = IconData(0xf546, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ruler Horizontal icon /// /// https://fontawesome.com/icons/ruler-horizontal?style=solid /// design, draft, length, measure, planning - static const IconData solidRulerHorizontal = IconDataSolid(0xf547); + static const IconData solidRulerHorizontal = IconData(0xf547, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ruler Horizontal icon /// /// https://fontawesome.com/icons/ruler-horizontal?style=regular /// design, draft, length, measure, planning - static const IconData rulerHorizontal = IconDataRegular(0xf547); + static const IconData rulerHorizontal = IconData(0xf547, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ruler Horizontal icon /// /// https://fontawesome.com/icons/ruler-horizontal?style=light /// design, draft, length, measure, planning - static const IconData lightRulerHorizontal = IconDataLight(0xf547); + static const IconData lightRulerHorizontal = IconData(0xf547, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ruler Horizontal icon /// /// https://fontawesome.com/icons/ruler-horizontal?style=thin /// design, draft, length, measure, planning - static const IconData thinRulerHorizontal = IconDataThin(0xf547); + static const IconData thinRulerHorizontal = IconData(0xf547, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ruler Triangle icon /// /// https://fontawesome.com/icons/ruler-triangle?style=solid /// design, draft, length, measure, planning, ruler, set, triangle, triangular ruler - static const IconData solidRulerTriangle = IconDataSolid(0xf61c); + static const IconData solidRulerTriangle = IconData(0xf61c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ruler Triangle icon /// /// https://fontawesome.com/icons/ruler-triangle?style=regular /// design, draft, length, measure, planning, ruler, set, triangle, triangular ruler - static const IconData rulerTriangle = IconDataRegular(0xf61c); + static const IconData rulerTriangle = IconData(0xf61c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ruler Triangle icon /// /// https://fontawesome.com/icons/ruler-triangle?style=light /// design, draft, length, measure, planning, ruler, set, triangle, triangular ruler - static const IconData lightRulerTriangle = IconDataLight(0xf61c); + static const IconData lightRulerTriangle = IconData(0xf61c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ruler Triangle icon /// /// https://fontawesome.com/icons/ruler-triangle?style=thin /// design, draft, length, measure, planning, ruler, set, triangle, triangular ruler - static const IconData thinRulerTriangle = IconDataThin(0xf61c); + static const IconData thinRulerTriangle = IconData(0xf61c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ruler Vertical icon /// /// https://fontawesome.com/icons/ruler-vertical?style=solid /// design, draft, length, measure, planning - static const IconData solidRulerVertical = IconDataSolid(0xf548); + static const IconData solidRulerVertical = IconData(0xf548, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ruler Vertical icon /// /// https://fontawesome.com/icons/ruler-vertical?style=regular /// design, draft, length, measure, planning - static const IconData rulerVertical = IconDataRegular(0xf548); + static const IconData rulerVertical = IconData(0xf548, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ruler Vertical icon /// /// https://fontawesome.com/icons/ruler-vertical?style=light /// design, draft, length, measure, planning - static const IconData lightRulerVertical = IconDataLight(0xf548); + static const IconData lightRulerVertical = IconData(0xf548, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ruler Vertical icon /// /// https://fontawesome.com/icons/ruler-vertical?style=thin /// design, draft, length, measure, planning - static const IconData thinRulerVertical = IconDataThin(0xf548); + static const IconData thinRulerVertical = IconData(0xf548, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Rupee Sign icon /// /// https://fontawesome.com/icons/rupee-sign?style=solid /// Rupee Sign, currency - static const IconData solidRupeeSign = IconDataSolid(0xf156); + static const IconData solidRupeeSign = IconData(0xf156, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rupee for icon [solidRupeeSign] @Deprecated('Use "solidRupeeSign" instead.') @@ -72273,7 +72273,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rupee-sign?style=regular /// Rupee Sign, currency - static const IconData rupeeSign = IconDataRegular(0xf156); + static const IconData rupeeSign = IconData(0xf156, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rupee for icon [rupeeSign] @Deprecated('Use "rupeeSign" instead.') @@ -72283,7 +72283,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rupee-sign?style=light /// Rupee Sign, currency - static const IconData lightRupeeSign = IconDataLight(0xf156); + static const IconData lightRupeeSign = IconData(0xf156, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rupee for icon [lightRupeeSign] @Deprecated('Use "lightRupeeSign" instead.') @@ -72293,7 +72293,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rupee-sign?style=thin /// Rupee Sign, currency - static const IconData thinRupeeSign = IconDataThin(0xf156); + static const IconData thinRupeeSign = IconData(0xf156, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rupee for icon [thinRupeeSign] @Deprecated('Use "thinRupeeSign" instead.') @@ -72303,186 +72303,186 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/rupiah-sign?style=solid /// currency - static const IconData solidRupiahSign = IconDataSolid(0xe23d); + static const IconData solidRupiahSign = IconData(0xe23d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rupiah Sign icon /// /// https://fontawesome.com/icons/rupiah-sign?style=regular /// currency - static const IconData rupiahSign = IconDataRegular(0xe23d); + static const IconData rupiahSign = IconData(0xe23d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rupiah Sign icon /// /// https://fontawesome.com/icons/rupiah-sign?style=light /// currency - static const IconData lightRupiahSign = IconDataLight(0xe23d); + static const IconData lightRupiahSign = IconData(0xe23d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rupiah Sign icon /// /// https://fontawesome.com/icons/rupiah-sign?style=thin /// currency - static const IconData thinRupiahSign = IconDataThin(0xe23d); + static const IconData thinRupiahSign = IconData(0xe23d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Rust icon /// /// https://fontawesome.com/icons/rust?style=brands - static const IconData rust = IconDataBrands(0xe07a); + static const IconData rust = IconData(0xe07a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Rv icon /// /// https://fontawesome.com/icons/rv?style=solid /// camping, cousin eddie, recreational, travel, vehicle - static const IconData solidRv = IconDataSolid(0xf7be); + static const IconData solidRv = IconData(0xf7be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Rv icon /// /// https://fontawesome.com/icons/rv?style=regular /// camping, cousin eddie, recreational, travel, vehicle - static const IconData rv = IconDataRegular(0xf7be); + static const IconData rv = IconData(0xf7be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Rv icon /// /// https://fontawesome.com/icons/rv?style=light /// camping, cousin eddie, recreational, travel, vehicle - static const IconData lightRv = IconDataLight(0xf7be); + static const IconData lightRv = IconData(0xf7be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Rv icon /// /// https://fontawesome.com/icons/rv?style=thin /// camping, cousin eddie, recreational, travel, vehicle - static const IconData thinRv = IconDataThin(0xf7be); + static const IconData thinRv = IconData(0xf7be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid S icon /// /// https://fontawesome.com/icons/s?style=solid /// Latin Capital Letter S, Latin Small Letter S, letter - static const IconData solidS = IconDataSolid(0x53); + static const IconData solidS = IconData(0x53, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular S icon /// /// https://fontawesome.com/icons/s?style=regular /// Latin Capital Letter S, Latin Small Letter S, letter - static const IconData s = IconDataRegular(0x53); + static const IconData s = IconData(0x53, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light S icon /// /// https://fontawesome.com/icons/s?style=light /// Latin Capital Letter S, Latin Small Letter S, letter - static const IconData lightS = IconDataLight(0x53); + static const IconData lightS = IconData(0x53, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin S icon /// /// https://fontawesome.com/icons/s?style=thin /// Latin Capital Letter S, Latin Small Letter S, letter - static const IconData thinS = IconDataThin(0x53); + static const IconData thinS = IconData(0x53, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sack icon /// /// https://fontawesome.com/icons/sack?style=solid /// bag, burlap, money, salary, santa - static const IconData solidSack = IconDataSolid(0xf81c); + static const IconData solidSack = IconData(0xf81c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sack icon /// /// https://fontawesome.com/icons/sack?style=regular /// bag, burlap, money, salary, santa - static const IconData sack = IconDataRegular(0xf81c); + static const IconData sack = IconData(0xf81c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sack icon /// /// https://fontawesome.com/icons/sack?style=light /// bag, burlap, money, salary, santa - static const IconData lightSack = IconDataLight(0xf81c); + static const IconData lightSack = IconData(0xf81c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sack icon /// /// https://fontawesome.com/icons/sack?style=thin /// bag, burlap, money, salary, santa - static const IconData thinSack = IconDataThin(0xf81c); + static const IconData thinSack = IconData(0xf81c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sack Dollar icon /// /// https://fontawesome.com/icons/sack-dollar?style=solid /// bag, burlap, cash, dollar, investment, money, money bag, moneybag, premium, robber, salary, santa, usd - static const IconData solidSackDollar = IconDataSolid(0xf81d); + static const IconData solidSackDollar = IconData(0xf81d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sack Dollar icon /// /// https://fontawesome.com/icons/sack-dollar?style=regular /// bag, burlap, cash, dollar, investment, money, money bag, moneybag, premium, robber, salary, santa, usd - static const IconData sackDollar = IconDataRegular(0xf81d); + static const IconData sackDollar = IconData(0xf81d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sack Dollar icon /// /// https://fontawesome.com/icons/sack-dollar?style=light /// bag, burlap, cash, dollar, investment, money, money bag, moneybag, premium, robber, salary, santa, usd - static const IconData lightSackDollar = IconDataLight(0xf81d); + static const IconData lightSackDollar = IconData(0xf81d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sack Dollar icon /// /// https://fontawesome.com/icons/sack-dollar?style=thin /// bag, burlap, cash, dollar, investment, money, money bag, moneybag, premium, robber, salary, santa, usd - static const IconData thinSackDollar = IconDataThin(0xf81d); + static const IconData thinSackDollar = IconData(0xf81d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sack Xmark icon /// /// https://fontawesome.com/icons/sack-xmark?style=solid /// bag, burlap, coupon, rations, salary, uncheck - static const IconData solidSackXmark = IconDataSolid(0xe56a); + static const IconData solidSackXmark = IconData(0xe56a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sack Xmark icon /// /// https://fontawesome.com/icons/sack-xmark?style=regular /// bag, burlap, coupon, rations, salary, uncheck - static const IconData sackXmark = IconDataRegular(0xe56a); + static const IconData sackXmark = IconData(0xe56a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sack Xmark icon /// /// https://fontawesome.com/icons/sack-xmark?style=light /// bag, burlap, coupon, rations, salary, uncheck - static const IconData lightSackXmark = IconDataLight(0xe56a); + static const IconData lightSackXmark = IconData(0xe56a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sack Xmark icon /// /// https://fontawesome.com/icons/sack-xmark?style=thin /// bag, burlap, coupon, rations, salary, uncheck - static const IconData thinSackXmark = IconDataThin(0xe56a); + static const IconData thinSackXmark = IconData(0xe56a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Safari icon /// /// https://fontawesome.com/icons/safari?style=brands /// browser - static const IconData safari = IconDataBrands(0xf267); + static const IconData safari = IconData(0xf267, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Sailboat icon /// /// https://fontawesome.com/icons/sailboat?style=solid /// dinghy, mast, sailboat, sailing, yacht - static const IconData solidSailboat = IconDataSolid(0xe445); + static const IconData solidSailboat = IconData(0xe445, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sailboat icon /// /// https://fontawesome.com/icons/sailboat?style=regular /// dinghy, mast, sailboat, sailing, yacht - static const IconData sailboat = IconDataRegular(0xe445); + static const IconData sailboat = IconData(0xe445, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sailboat icon /// /// https://fontawesome.com/icons/sailboat?style=light /// dinghy, mast, sailboat, sailing, yacht - static const IconData lightSailboat = IconDataLight(0xe445); + static const IconData lightSailboat = IconData(0xe445, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sailboat icon /// /// https://fontawesome.com/icons/sailboat?style=thin /// dinghy, mast, sailboat, sailing, yacht - static const IconData thinSailboat = IconDataThin(0xe445); + static const IconData thinSailboat = IconData(0xe445, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Salad icon /// /// https://fontawesome.com/icons/salad?style=solid /// bowl, food, green, green salad, health, lettuce, salad, spinach, vegan, vegetable, vegetarian - static const IconData solidSalad = IconDataSolid(0xf81e); + static const IconData solidSalad = IconData(0xf81e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias bowl-salad for icon [solidSalad] @Deprecated('Use "solidSalad" instead.') @@ -72492,7 +72492,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/salad?style=regular /// bowl, food, green, green salad, health, lettuce, salad, spinach, vegan, vegetable, vegetarian - static const IconData salad = IconDataRegular(0xf81e); + static const IconData salad = IconData(0xf81e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias bowl-salad for icon [salad] @Deprecated('Use "salad" instead.') @@ -72502,7 +72502,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/salad?style=light /// bowl, food, green, green salad, health, lettuce, salad, spinach, vegan, vegetable, vegetarian - static const IconData lightSalad = IconDataLight(0xf81e); + static const IconData lightSalad = IconData(0xf81e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias bowl-salad for icon [lightSalad] @Deprecated('Use "lightSalad" instead.') @@ -72512,7 +72512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/salad?style=thin /// bowl, food, green, green salad, health, lettuce, salad, spinach, vegan, vegetable, vegetarian - static const IconData thinSalad = IconDataThin(0xf81e); + static const IconData thinSalad = IconData(0xf81e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias bowl-salad for icon [thinSalad] @Deprecated('Use "thinSalad" instead.') @@ -72521,162 +72521,162 @@ class FontAwesomeIcons { /// Brands Salesforce icon /// /// https://fontawesome.com/icons/salesforce?style=brands - static const IconData salesforce = IconDataBrands(0xf83b); + static const IconData salesforce = IconData(0xf83b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Salt Shaker icon /// /// https://fontawesome.com/icons/salt-shaker?style=solid /// condiment, pepper, salt - static const IconData solidSaltShaker = IconDataSolid(0xe446); + static const IconData solidSaltShaker = IconData(0xe446, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Salt Shaker icon /// /// https://fontawesome.com/icons/salt-shaker?style=regular /// condiment, pepper, salt - static const IconData saltShaker = IconDataRegular(0xe446); + static const IconData saltShaker = IconData(0xe446, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Salt Shaker icon /// /// https://fontawesome.com/icons/salt-shaker?style=light /// condiment, pepper, salt - static const IconData lightSaltShaker = IconDataLight(0xe446); + static const IconData lightSaltShaker = IconData(0xe446, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Salt Shaker icon /// /// https://fontawesome.com/icons/salt-shaker?style=thin /// condiment, pepper, salt - static const IconData thinSaltShaker = IconDataThin(0xe446); + static const IconData thinSaltShaker = IconData(0xe446, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sandwich icon /// /// https://fontawesome.com/icons/sandwich?style=solid /// bread, deli, grilled cheese, sandwich, toast - static const IconData solidSandwich = IconDataSolid(0xf81f); + static const IconData solidSandwich = IconData(0xf81f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sandwich icon /// /// https://fontawesome.com/icons/sandwich?style=regular /// bread, deli, grilled cheese, sandwich, toast - static const IconData sandwich = IconDataRegular(0xf81f); + static const IconData sandwich = IconData(0xf81f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sandwich icon /// /// https://fontawesome.com/icons/sandwich?style=light /// bread, deli, grilled cheese, sandwich, toast - static const IconData lightSandwich = IconDataLight(0xf81f); + static const IconData lightSandwich = IconData(0xf81f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sandwich icon /// /// https://fontawesome.com/icons/sandwich?style=thin /// bread, deli, grilled cheese, sandwich, toast - static const IconData thinSandwich = IconDataThin(0xf81f); + static const IconData thinSandwich = IconData(0xf81f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Sass icon /// /// https://fontawesome.com/icons/sass?style=brands - static const IconData sass = IconDataBrands(0xf41e); + static const IconData sass = IconData(0xf41e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Satellite icon /// /// https://fontawesome.com/icons/satellite?style=solid /// communications, hardware, orbit, satellite, space - static const IconData solidSatellite = IconDataSolid(0xf7bf); + static const IconData solidSatellite = IconData(0xf7bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Satellite icon /// /// https://fontawesome.com/icons/satellite?style=regular /// communications, hardware, orbit, satellite, space - static const IconData satellite = IconDataRegular(0xf7bf); + static const IconData satellite = IconData(0xf7bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Satellite icon /// /// https://fontawesome.com/icons/satellite?style=light /// communications, hardware, orbit, satellite, space - static const IconData lightSatellite = IconDataLight(0xf7bf); + static const IconData lightSatellite = IconData(0xf7bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Satellite icon /// /// https://fontawesome.com/icons/satellite?style=thin /// communications, hardware, orbit, satellite, space - static const IconData thinSatellite = IconDataThin(0xf7bf); + static const IconData thinSatellite = IconData(0xf7bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Satellite Dish icon /// /// https://fontawesome.com/icons/satellite-dish?style=solid /// SETI, antenna, communications, dish, hardware, radar, receiver, satellite, satellite antenna, saucer, signal, space - static const IconData solidSatelliteDish = IconDataSolid(0xf7c0); + static const IconData solidSatelliteDish = IconData(0xf7c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Satellite Dish icon /// /// https://fontawesome.com/icons/satellite-dish?style=regular /// SETI, antenna, communications, dish, hardware, radar, receiver, satellite, satellite antenna, saucer, signal, space - static const IconData satelliteDish = IconDataRegular(0xf7c0); + static const IconData satelliteDish = IconData(0xf7c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Satellite Dish icon /// /// https://fontawesome.com/icons/satellite-dish?style=light /// SETI, antenna, communications, dish, hardware, radar, receiver, satellite, satellite antenna, saucer, signal, space - static const IconData lightSatelliteDish = IconDataLight(0xf7c0); + static const IconData lightSatelliteDish = IconData(0xf7c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Satellite Dish icon /// /// https://fontawesome.com/icons/satellite-dish?style=thin /// SETI, antenna, communications, dish, hardware, radar, receiver, satellite, satellite antenna, saucer, signal, space - static const IconData thinSatelliteDish = IconDataThin(0xf7c0); + static const IconData thinSatelliteDish = IconData(0xf7c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sausage icon /// /// https://fontawesome.com/icons/sausage?style=solid /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconData solidSausage = IconDataSolid(0xf820); + static const IconData solidSausage = IconData(0xf820, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sausage icon /// /// https://fontawesome.com/icons/sausage?style=regular /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconData sausage = IconDataRegular(0xf820); + static const IconData sausage = IconData(0xf820, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sausage icon /// /// https://fontawesome.com/icons/sausage?style=light /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconData lightSausage = IconDataLight(0xf820); + static const IconData lightSausage = IconData(0xf820, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sausage icon /// /// https://fontawesome.com/icons/sausage?style=thin /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconData thinSausage = IconDataThin(0xf820); + static const IconData thinSausage = IconData(0xf820, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Saxophone icon /// /// https://fontawesome.com/icons/saxophone?style=solid /// brass, instrument, jazz, music, sax, saxophone, woodwind - static const IconData solidSaxophone = IconDataSolid(0xf8dc); + static const IconData solidSaxophone = IconData(0xf8dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Saxophone icon /// /// https://fontawesome.com/icons/saxophone?style=regular /// brass, instrument, jazz, music, sax, saxophone, woodwind - static const IconData saxophone = IconDataRegular(0xf8dc); + static const IconData saxophone = IconData(0xf8dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Saxophone icon /// /// https://fontawesome.com/icons/saxophone?style=light /// brass, instrument, jazz, music, sax, saxophone, woodwind - static const IconData lightSaxophone = IconDataLight(0xf8dc); + static const IconData lightSaxophone = IconData(0xf8dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Saxophone icon /// /// https://fontawesome.com/icons/saxophone?style=thin /// brass, instrument, jazz, music, sax, saxophone, woodwind - static const IconData thinSaxophone = IconDataThin(0xf8dc); + static const IconData thinSaxophone = IconData(0xf8dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Saxophone Fire icon /// /// https://fontawesome.com/icons/saxophone-fire?style=solid /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData solidSaxophoneFire = IconDataSolid(0xf8db); + static const IconData solidSaxophoneFire = IconData(0xf8db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sax-hot for icon [solidSaxophoneFire] @Deprecated('Use "solidSaxophoneFire" instead.') @@ -72686,7 +72686,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/saxophone-fire?style=regular /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData saxophoneFire = IconDataRegular(0xf8db); + static const IconData saxophoneFire = IconData(0xf8db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sax-hot for icon [saxophoneFire] @Deprecated('Use "saxophoneFire" instead.') @@ -72696,7 +72696,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/saxophone-fire?style=light /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData lightSaxophoneFire = IconDataLight(0xf8db); + static const IconData lightSaxophoneFire = IconData(0xf8db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sax-hot for icon [lightSaxophoneFire] @Deprecated('Use "lightSaxophoneFire" instead.') @@ -72706,7 +72706,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/saxophone-fire?style=thin /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData thinSaxophoneFire = IconDataThin(0xf8db); + static const IconData thinSaxophoneFire = IconData(0xf8db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sax-hot for icon [thinSaxophoneFire] @Deprecated('Use "thinSaxophoneFire" instead.') @@ -72716,7 +72716,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-balanced?style=solid /// Libra, balance, balance scale, balanced, justice, law, legal, measure, rule, scale, weight, zodiac - static const IconData solidScaleBalanced = IconDataSolid(0xf24e); + static const IconData solidScaleBalanced = IconData(0xf24e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale for icon [solidScaleBalanced] @Deprecated('Use "solidScaleBalanced" instead.') @@ -72726,7 +72726,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-balanced?style=regular /// Libra, balance, balance scale, balanced, justice, law, legal, measure, rule, scale, weight, zodiac - static const IconData scaleBalanced = IconDataRegular(0xf24e); + static const IconData scaleBalanced = IconData(0xf24e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale for icon [scaleBalanced] @Deprecated('Use "scaleBalanced" instead.') @@ -72736,7 +72736,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-balanced?style=light /// Libra, balance, balance scale, balanced, justice, law, legal, measure, rule, scale, weight, zodiac - static const IconData lightScaleBalanced = IconDataLight(0xf24e); + static const IconData lightScaleBalanced = IconData(0xf24e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale for icon [lightScaleBalanced] @Deprecated('Use "lightScaleBalanced" instead.') @@ -72746,7 +72746,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-balanced?style=thin /// Libra, balance, balance scale, balanced, justice, law, legal, measure, rule, scale, weight, zodiac - static const IconData thinScaleBalanced = IconDataThin(0xf24e); + static const IconData thinScaleBalanced = IconData(0xf24e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale for icon [thinScaleBalanced] @Deprecated('Use "thinScaleBalanced" instead.') @@ -72756,7 +72756,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced?style=solid /// justice, legal, measure, unbalanced, weight - static const IconData solidScaleUnbalanced = IconDataSolid(0xf515); + static const IconData solidScaleUnbalanced = IconData(0xf515, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-left for icon [solidScaleUnbalanced] @Deprecated('Use "solidScaleUnbalanced" instead.') @@ -72766,7 +72766,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced?style=regular /// justice, legal, measure, unbalanced, weight - static const IconData scaleUnbalanced = IconDataRegular(0xf515); + static const IconData scaleUnbalanced = IconData(0xf515, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-left for icon [scaleUnbalanced] @Deprecated('Use "scaleUnbalanced" instead.') @@ -72776,7 +72776,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced?style=light /// justice, legal, measure, unbalanced, weight - static const IconData lightScaleUnbalanced = IconDataLight(0xf515); + static const IconData lightScaleUnbalanced = IconData(0xf515, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-left for icon [lightScaleUnbalanced] @Deprecated('Use "lightScaleUnbalanced" instead.') @@ -72786,7 +72786,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced?style=thin /// justice, legal, measure, unbalanced, weight - static const IconData thinScaleUnbalanced = IconDataThin(0xf515); + static const IconData thinScaleUnbalanced = IconData(0xf515, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-left for icon [thinScaleUnbalanced] @Deprecated('Use "thinScaleUnbalanced" instead.') @@ -72796,7 +72796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced-flip?style=solid /// justice, legal, measure, unbalanced, weight - static const IconData solidScaleUnbalancedFlip = IconDataSolid(0xf516); + static const IconData solidScaleUnbalancedFlip = IconData(0xf516, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-right for icon [solidScaleUnbalancedFlip] @Deprecated('Use "solidScaleUnbalancedFlip" instead.') @@ -72806,7 +72806,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced-flip?style=regular /// justice, legal, measure, unbalanced, weight - static const IconData scaleUnbalancedFlip = IconDataRegular(0xf516); + static const IconData scaleUnbalancedFlip = IconData(0xf516, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-right for icon [scaleUnbalancedFlip] @Deprecated('Use "scaleUnbalancedFlip" instead.') @@ -72816,7 +72816,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced-flip?style=light /// justice, legal, measure, unbalanced, weight - static const IconData lightScaleUnbalancedFlip = IconDataLight(0xf516); + static const IconData lightScaleUnbalancedFlip = IconData(0xf516, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-right for icon [lightScaleUnbalancedFlip] @Deprecated('Use "lightScaleUnbalancedFlip" instead.') @@ -72826,7 +72826,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scale-unbalanced-flip?style=thin /// justice, legal, measure, unbalanced, weight - static const IconData thinScaleUnbalancedFlip = IconDataThin(0xf516); + static const IconData thinScaleUnbalancedFlip = IconData(0xf516, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias balance-scale-right for icon [thinScaleUnbalancedFlip] @Deprecated('Use "thinScaleUnbalancedFlip" instead.') @@ -72836,31 +72836,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scalpel?style=solid /// blade, cut, doctor, knife, surgeon, surgery - static const IconData solidScalpel = IconDataSolid(0xf61d); + static const IconData solidScalpel = IconData(0xf61d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scalpel icon /// /// https://fontawesome.com/icons/scalpel?style=regular /// blade, cut, doctor, knife, surgeon, surgery - static const IconData scalpel = IconDataRegular(0xf61d); + static const IconData scalpel = IconData(0xf61d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scalpel icon /// /// https://fontawesome.com/icons/scalpel?style=light /// blade, cut, doctor, knife, surgeon, surgery - static const IconData lightScalpel = IconDataLight(0xf61d); + static const IconData lightScalpel = IconData(0xf61d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scalpel icon /// /// https://fontawesome.com/icons/scalpel?style=thin /// blade, cut, doctor, knife, surgeon, surgery - static const IconData thinScalpel = IconDataThin(0xf61d); + static const IconData thinScalpel = IconData(0xf61d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scalpel Line Dashed icon /// /// https://fontawesome.com/icons/scalpel-line-dashed?style=solid /// blade, cut, doctor, knife, surgeon, surgery - static const IconData solidScalpelLineDashed = IconDataSolid(0xf61e); + static const IconData solidScalpelLineDashed = IconData(0xf61e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias scalpel-path for icon [solidScalpelLineDashed] @Deprecated('Use "solidScalpelLineDashed" instead.') @@ -72870,7 +72870,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scalpel-line-dashed?style=regular /// blade, cut, doctor, knife, surgeon, surgery - static const IconData scalpelLineDashed = IconDataRegular(0xf61e); + static const IconData scalpelLineDashed = IconData(0xf61e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias scalpel-path for icon [scalpelLineDashed] @Deprecated('Use "scalpelLineDashed" instead.') @@ -72880,7 +72880,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scalpel-line-dashed?style=light /// blade, cut, doctor, knife, surgeon, surgery - static const IconData lightScalpelLineDashed = IconDataLight(0xf61e); + static const IconData lightScalpelLineDashed = IconData(0xf61e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias scalpel-path for icon [lightScalpelLineDashed] @Deprecated('Use "lightScalpelLineDashed" instead.') @@ -72890,7 +72890,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scalpel-line-dashed?style=thin /// blade, cut, doctor, knife, surgeon, surgery - static const IconData thinScalpelLineDashed = IconDataThin(0xf61e); + static const IconData thinScalpelLineDashed = IconData(0xf61e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias scalpel-path for icon [thinScalpelLineDashed] @Deprecated('Use "thinScalpelLineDashed" instead.') @@ -72900,7 +72900,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scanner-gun?style=solid /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScannerGun = IconDataSolid(0xf488); + static const IconData solidScannerGun = IconData(0xf488, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias scanner for icon [solidScannerGun] @Deprecated('Use "solidScannerGun" instead.') @@ -72910,7 +72910,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scanner-gun?style=regular /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scannerGun = IconDataRegular(0xf488); + static const IconData scannerGun = IconData(0xf488, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias scanner for icon [scannerGun] @Deprecated('Use "scannerGun" instead.') @@ -72920,7 +72920,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scanner-gun?style=light /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScannerGun = IconDataLight(0xf488); + static const IconData lightScannerGun = IconData(0xf488, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias scanner for icon [lightScannerGun] @Deprecated('Use "lightScannerGun" instead.') @@ -72930,7 +72930,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scanner-gun?style=thin /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData thinScannerGun = IconDataThin(0xf488); + static const IconData thinScannerGun = IconData(0xf488, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias scanner for icon [thinScannerGun] @Deprecated('Use "thinScannerGun" instead.') @@ -72940,276 +72940,276 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scanner-image?style=solid /// copy, device, digitize, image, img, import - static const IconData solidScannerImage = IconDataSolid(0xf8f3); + static const IconData solidScannerImage = IconData(0xf8f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scanner Image icon /// /// https://fontawesome.com/icons/scanner-image?style=regular /// copy, device, digitize, image, img, import - static const IconData scannerImage = IconDataRegular(0xf8f3); + static const IconData scannerImage = IconData(0xf8f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scanner Image icon /// /// https://fontawesome.com/icons/scanner-image?style=light /// copy, device, digitize, image, img, import - static const IconData lightScannerImage = IconDataLight(0xf8f3); + static const IconData lightScannerImage = IconData(0xf8f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scanner Image icon /// /// https://fontawesome.com/icons/scanner-image?style=thin /// copy, device, digitize, image, img, import - static const IconData thinScannerImage = IconDataThin(0xf8f3); + static const IconData thinScannerImage = IconData(0xf8f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scanner Keyboard icon /// /// https://fontawesome.com/icons/scanner-keyboard?style=solid /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScannerKeyboard = IconDataSolid(0xf489); + static const IconData solidScannerKeyboard = IconData(0xf489, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scanner Keyboard icon /// /// https://fontawesome.com/icons/scanner-keyboard?style=regular /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scannerKeyboard = IconDataRegular(0xf489); + static const IconData scannerKeyboard = IconData(0xf489, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scanner Keyboard icon /// /// https://fontawesome.com/icons/scanner-keyboard?style=light /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScannerKeyboard = IconDataLight(0xf489); + static const IconData lightScannerKeyboard = IconData(0xf489, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scanner Keyboard icon /// /// https://fontawesome.com/icons/scanner-keyboard?style=thin /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData thinScannerKeyboard = IconDataThin(0xf489); + static const IconData thinScannerKeyboard = IconData(0xf489, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scanner Touchscreen icon /// /// https://fontawesome.com/icons/scanner-touchscreen?style=solid /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScannerTouchscreen = IconDataSolid(0xf48a); + static const IconData solidScannerTouchscreen = IconData(0xf48a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scanner Touchscreen icon /// /// https://fontawesome.com/icons/scanner-touchscreen?style=regular /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scannerTouchscreen = IconDataRegular(0xf48a); + static const IconData scannerTouchscreen = IconData(0xf48a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scanner Touchscreen icon /// /// https://fontawesome.com/icons/scanner-touchscreen?style=light /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScannerTouchscreen = IconDataLight(0xf48a); + static const IconData lightScannerTouchscreen = IconData(0xf48a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scanner Touchscreen icon /// /// https://fontawesome.com/icons/scanner-touchscreen?style=thin /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData thinScannerTouchscreen = IconDataThin(0xf48a); + static const IconData thinScannerTouchscreen = IconData(0xf48a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scarecrow icon /// /// https://fontawesome.com/icons/scarecrow?style=solid /// bird, crow, farm, field, halloween, strawman - static const IconData solidScarecrow = IconDataSolid(0xf70d); + static const IconData solidScarecrow = IconData(0xf70d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scarecrow icon /// /// https://fontawesome.com/icons/scarecrow?style=regular /// bird, crow, farm, field, halloween, strawman - static const IconData scarecrow = IconDataRegular(0xf70d); + static const IconData scarecrow = IconData(0xf70d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scarecrow icon /// /// https://fontawesome.com/icons/scarecrow?style=light /// bird, crow, farm, field, halloween, strawman - static const IconData lightScarecrow = IconDataLight(0xf70d); + static const IconData lightScarecrow = IconData(0xf70d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scarecrow icon /// /// https://fontawesome.com/icons/scarecrow?style=thin /// bird, crow, farm, field, halloween, strawman - static const IconData thinScarecrow = IconDataThin(0xf70d); + static const IconData thinScarecrow = IconData(0xf70d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scarf icon /// /// https://fontawesome.com/icons/scarf?style=solid /// clothing, knitted, neck, scarf, seasonal, warmth - static const IconData solidScarf = IconDataSolid(0xf7c1); + static const IconData solidScarf = IconData(0xf7c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scarf icon /// /// https://fontawesome.com/icons/scarf?style=regular /// clothing, knitted, neck, scarf, seasonal, warmth - static const IconData scarf = IconDataRegular(0xf7c1); + static const IconData scarf = IconData(0xf7c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scarf icon /// /// https://fontawesome.com/icons/scarf?style=light /// clothing, knitted, neck, scarf, seasonal, warmth - static const IconData lightScarf = IconDataLight(0xf7c1); + static const IconData lightScarf = IconData(0xf7c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scarf icon /// /// https://fontawesome.com/icons/scarf?style=thin /// clothing, knitted, neck, scarf, seasonal, warmth - static const IconData thinScarf = IconDataThin(0xf7c1); + static const IconData thinScarf = IconData(0xf7c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands SCHLIX icon /// /// https://fontawesome.com/icons/schlix?style=brands - static const IconData schlix = IconDataBrands(0xf3ea); + static const IconData schlix = IconData(0xf3ea, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid School icon /// /// https://fontawesome.com/icons/school?style=solid /// building, education, learn, school, student, teacher - static const IconData solidSchool = IconDataSolid(0xf549); + static const IconData solidSchool = IconData(0xf549, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School icon /// /// https://fontawesome.com/icons/school?style=regular /// building, education, learn, school, student, teacher - static const IconData school = IconDataRegular(0xf549); + static const IconData school = IconData(0xf549, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School icon /// /// https://fontawesome.com/icons/school?style=light /// building, education, learn, school, student, teacher - static const IconData lightSchool = IconDataLight(0xf549); + static const IconData lightSchool = IconData(0xf549, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School icon /// /// https://fontawesome.com/icons/school?style=thin /// building, education, learn, school, student, teacher - static const IconData thinSchool = IconDataThin(0xf549); + static const IconData thinSchool = IconData(0xf549, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid School Circle Check icon /// /// https://fontawesome.com/icons/school-circle-check?style=solid /// enable, not affected, ok, okay, schoolhouse, validate, working - static const IconData solidSchoolCircleCheck = IconDataSolid(0xe56b); + static const IconData solidSchoolCircleCheck = IconData(0xe56b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School Circle Check icon /// /// https://fontawesome.com/icons/school-circle-check?style=regular /// enable, not affected, ok, okay, schoolhouse, validate, working - static const IconData schoolCircleCheck = IconDataRegular(0xe56b); + static const IconData schoolCircleCheck = IconData(0xe56b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School Circle Check icon /// /// https://fontawesome.com/icons/school-circle-check?style=light /// enable, not affected, ok, okay, schoolhouse, validate, working - static const IconData lightSchoolCircleCheck = IconDataLight(0xe56b); + static const IconData lightSchoolCircleCheck = IconData(0xe56b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School Circle Check icon /// /// https://fontawesome.com/icons/school-circle-check?style=thin /// enable, not affected, ok, okay, schoolhouse, validate, working - static const IconData thinSchoolCircleCheck = IconDataThin(0xe56b); + static const IconData thinSchoolCircleCheck = IconData(0xe56b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid School Circle Exclamation icon /// /// https://fontawesome.com/icons/school-circle-exclamation?style=solid /// affected, failed, schoolhouse - static const IconData solidSchoolCircleExclamation = IconDataSolid(0xe56c); + static const IconData solidSchoolCircleExclamation = IconData(0xe56c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School Circle Exclamation icon /// /// https://fontawesome.com/icons/school-circle-exclamation?style=regular /// affected, failed, schoolhouse - static const IconData schoolCircleExclamation = IconDataRegular(0xe56c); + static const IconData schoolCircleExclamation = IconData(0xe56c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School Circle Exclamation icon /// /// https://fontawesome.com/icons/school-circle-exclamation?style=light /// affected, failed, schoolhouse - static const IconData lightSchoolCircleExclamation = IconDataLight(0xe56c); + static const IconData lightSchoolCircleExclamation = IconData(0xe56c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School Circle Exclamation icon /// /// https://fontawesome.com/icons/school-circle-exclamation?style=thin /// affected, failed, schoolhouse - static const IconData thinSchoolCircleExclamation = IconDataThin(0xe56c); + static const IconData thinSchoolCircleExclamation = IconData(0xe56c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid School Circle Xmark icon /// /// https://fontawesome.com/icons/school-circle-xmark?style=solid /// destroy, schoolhouse, uncheck - static const IconData solidSchoolCircleXmark = IconDataSolid(0xe56d); + static const IconData solidSchoolCircleXmark = IconData(0xe56d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School Circle Xmark icon /// /// https://fontawesome.com/icons/school-circle-xmark?style=regular /// destroy, schoolhouse, uncheck - static const IconData schoolCircleXmark = IconDataRegular(0xe56d); + static const IconData schoolCircleXmark = IconData(0xe56d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School Circle Xmark icon /// /// https://fontawesome.com/icons/school-circle-xmark?style=light /// destroy, schoolhouse, uncheck - static const IconData lightSchoolCircleXmark = IconDataLight(0xe56d); + static const IconData lightSchoolCircleXmark = IconData(0xe56d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School Circle Xmark icon /// /// https://fontawesome.com/icons/school-circle-xmark?style=thin /// destroy, schoolhouse, uncheck - static const IconData thinSchoolCircleXmark = IconDataThin(0xe56d); + static const IconData thinSchoolCircleXmark = IconData(0xe56d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid School Flag icon /// /// https://fontawesome.com/icons/school-flag?style=solid /// educate, flag, school, schoolhouse - static const IconData solidSchoolFlag = IconDataSolid(0xe56e); + static const IconData solidSchoolFlag = IconData(0xe56e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School Flag icon /// /// https://fontawesome.com/icons/school-flag?style=regular /// educate, flag, school, schoolhouse - static const IconData schoolFlag = IconDataRegular(0xe56e); + static const IconData schoolFlag = IconData(0xe56e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School Flag icon /// /// https://fontawesome.com/icons/school-flag?style=light /// educate, flag, school, schoolhouse - static const IconData lightSchoolFlag = IconDataLight(0xe56e); + static const IconData lightSchoolFlag = IconData(0xe56e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School Flag icon /// /// https://fontawesome.com/icons/school-flag?style=thin /// educate, flag, school, schoolhouse - static const IconData thinSchoolFlag = IconDataThin(0xe56e); + static const IconData thinSchoolFlag = IconData(0xe56e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid School Lock icon /// /// https://fontawesome.com/icons/school-lock?style=solid /// closed, lockdown, padlock, privacy, quarantine, schoolhouse - static const IconData solidSchoolLock = IconDataSolid(0xe56f); + static const IconData solidSchoolLock = IconData(0xe56f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular School Lock icon /// /// https://fontawesome.com/icons/school-lock?style=regular /// closed, lockdown, padlock, privacy, quarantine, schoolhouse - static const IconData schoolLock = IconDataRegular(0xe56f); + static const IconData schoolLock = IconData(0xe56f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light School Lock icon /// /// https://fontawesome.com/icons/school-lock?style=light /// closed, lockdown, padlock, privacy, quarantine, schoolhouse - static const IconData lightSchoolLock = IconDataLight(0xe56f); + static const IconData lightSchoolLock = IconData(0xe56f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin School Lock icon /// /// https://fontawesome.com/icons/school-lock?style=thin /// closed, lockdown, padlock, privacy, quarantine, schoolhouse - static const IconData thinSchoolLock = IconDataThin(0xe56f); + static const IconData thinSchoolLock = IconData(0xe56f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scissors icon /// /// https://fontawesome.com/icons/scissors?style=solid /// Black Safety Scissors, White Scissors, clip, cutting, equipment, modify, scissors, snip, tool - static const IconData solidScissors = IconDataSolid(0xf0c4); + static const IconData solidScissors = IconData(0xf0c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cut for icon [solidScissors] @Deprecated('Use "solidScissors" instead.') @@ -73219,7 +73219,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scissors?style=regular /// Black Safety Scissors, White Scissors, clip, cutting, equipment, modify, scissors, snip, tool - static const IconData scissors = IconDataRegular(0xf0c4); + static const IconData scissors = IconData(0xf0c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cut for icon [scissors] @Deprecated('Use "scissors" instead.') @@ -73229,7 +73229,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scissors?style=light /// Black Safety Scissors, White Scissors, clip, cutting, equipment, modify, scissors, snip, tool - static const IconData lightScissors = IconDataLight(0xf0c4); + static const IconData lightScissors = IconData(0xf0c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cut for icon [lightScissors] @Deprecated('Use "lightScissors" instead.') @@ -73239,7 +73239,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scissors?style=thin /// Black Safety Scissors, White Scissors, clip, cutting, equipment, modify, scissors, snip, tool - static const IconData thinScissors = IconDataThin(0xf0c4); + static const IconData thinScissors = IconData(0xf0c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cut for icon [thinScissors] @Deprecated('Use "thinScissors" instead.') @@ -73249,7 +73249,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screen-users?style=solid /// chalkboard, crowd, employee, group, presentation, students, teachers, team, uer - static const IconData solidScreenUsers = IconDataSolid(0xf63d); + static const IconData solidScreenUsers = IconData(0xf63d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias users-class for icon [solidScreenUsers] @Deprecated('Use "solidScreenUsers" instead.') @@ -73259,7 +73259,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screen-users?style=regular /// chalkboard, crowd, employee, group, presentation, students, teachers, team, uer - static const IconData screenUsers = IconDataRegular(0xf63d); + static const IconData screenUsers = IconData(0xf63d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias users-class for icon [screenUsers] @Deprecated('Use "screenUsers" instead.') @@ -73269,7 +73269,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screen-users?style=light /// chalkboard, crowd, employee, group, presentation, students, teachers, team, uer - static const IconData lightScreenUsers = IconDataLight(0xf63d); + static const IconData lightScreenUsers = IconData(0xf63d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias users-class for icon [lightScreenUsers] @Deprecated('Use "lightScreenUsers" instead.') @@ -73279,7 +73279,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screen-users?style=thin /// chalkboard, crowd, employee, group, presentation, students, teachers, team, uer - static const IconData thinScreenUsers = IconDataThin(0xf63d); + static const IconData thinScreenUsers = IconData(0xf63d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias users-class for icon [thinScreenUsers] @Deprecated('Use "thinScreenUsers" instead.') @@ -73289,60 +73289,60 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screencast?style=solid /// airplay, share, stream - static const IconData solidScreencast = IconDataSolid(0xe23e); + static const IconData solidScreencast = IconData(0xe23e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Screencast icon /// /// https://fontawesome.com/icons/screencast?style=regular /// airplay, share, stream - static const IconData screencast = IconDataRegular(0xe23e); + static const IconData screencast = IconData(0xe23e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Screencast icon /// /// https://fontawesome.com/icons/screencast?style=light /// airplay, share, stream - static const IconData lightScreencast = IconDataLight(0xe23e); + static const IconData lightScreencast = IconData(0xe23e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Screencast icon /// /// https://fontawesome.com/icons/screencast?style=thin /// airplay, share, stream - static const IconData thinScreencast = IconDataThin(0xe23e); + static const IconData thinScreencast = IconData(0xe23e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Screenpal icon /// /// https://fontawesome.com/icons/screenpal?style=brands - static const IconData screenpal = IconDataBrands(0xe570); + static const IconData screenpal = IconData(0xe570, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Screwdriver icon /// /// https://fontawesome.com/icons/screwdriver?style=solid /// admin, configuration, equipment, fix, maintenance, mechanic, modify, repair, screw, screwdriver, settings, tool - static const IconData solidScrewdriver = IconDataSolid(0xf54a); + static const IconData solidScrewdriver = IconData(0xf54a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Screwdriver icon /// /// https://fontawesome.com/icons/screwdriver?style=regular /// admin, configuration, equipment, fix, maintenance, mechanic, modify, repair, screw, screwdriver, settings, tool - static const IconData screwdriver = IconDataRegular(0xf54a); + static const IconData screwdriver = IconData(0xf54a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Screwdriver icon /// /// https://fontawesome.com/icons/screwdriver?style=light /// admin, configuration, equipment, fix, maintenance, mechanic, modify, repair, screw, screwdriver, settings, tool - static const IconData lightScrewdriver = IconDataLight(0xf54a); + static const IconData lightScrewdriver = IconData(0xf54a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Screwdriver icon /// /// https://fontawesome.com/icons/screwdriver?style=thin /// admin, configuration, equipment, fix, maintenance, mechanic, modify, repair, screw, screwdriver, settings, tool - static const IconData thinScrewdriver = IconDataThin(0xf54a); + static const IconData thinScrewdriver = IconData(0xf54a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Screwdriver Wrench icon /// /// https://fontawesome.com/icons/screwdriver-wrench?style=solid /// admin, configuration, equipment, fix, maintenance, modify, repair, screwdriver, settings, tools, wrench - static const IconData solidScrewdriverWrench = IconDataSolid(0xf7d9); + static const IconData solidScrewdriverWrench = IconData(0xf7d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tools for icon [solidScrewdriverWrench] @Deprecated('Use "solidScrewdriverWrench" instead.') @@ -73352,7 +73352,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screwdriver-wrench?style=regular /// admin, configuration, equipment, fix, maintenance, modify, repair, screwdriver, settings, tools, wrench - static const IconData screwdriverWrench = IconDataRegular(0xf7d9); + static const IconData screwdriverWrench = IconData(0xf7d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tools for icon [screwdriverWrench] @Deprecated('Use "screwdriverWrench" instead.') @@ -73362,7 +73362,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screwdriver-wrench?style=light /// admin, configuration, equipment, fix, maintenance, modify, repair, screwdriver, settings, tools, wrench - static const IconData lightScrewdriverWrench = IconDataLight(0xf7d9); + static const IconData lightScrewdriverWrench = IconData(0xf7d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tools for icon [lightScrewdriverWrench] @Deprecated('Use "lightScrewdriverWrench" instead.') @@ -73372,7 +73372,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/screwdriver-wrench?style=thin /// admin, configuration, equipment, fix, maintenance, modify, repair, screwdriver, settings, tools, wrench - static const IconData thinScrewdriverWrench = IconDataThin(0xf7d9); + static const IconData thinScrewdriverWrench = IconData(0xf7d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tools for icon [thinScrewdriverWrench] @Deprecated('Use "thinScrewdriverWrench" instead.') @@ -73382,84 +73382,84 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scribble?style=solid /// doodle, draw, line, road, scrawl, switchback - static const IconData solidScribble = IconDataSolid(0xe23f); + static const IconData solidScribble = IconData(0xe23f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scribble icon /// /// https://fontawesome.com/icons/scribble?style=regular /// doodle, draw, line, road, scrawl, switchback - static const IconData scribble = IconDataRegular(0xe23f); + static const IconData scribble = IconData(0xe23f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scribble icon /// /// https://fontawesome.com/icons/scribble?style=light /// doodle, draw, line, road, scrawl, switchback - static const IconData lightScribble = IconDataLight(0xe23f); + static const IconData lightScribble = IconData(0xe23f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scribble icon /// /// https://fontawesome.com/icons/scribble?style=thin /// doodle, draw, line, road, scrawl, switchback - static const IconData thinScribble = IconDataThin(0xe23f); + static const IconData thinScribble = IconData(0xe23f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Scribd icon /// /// https://fontawesome.com/icons/scribd?style=brands - static const IconData scribd = IconDataBrands(0xf28a); + static const IconData scribd = IconData(0xf28a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Scroll icon /// /// https://fontawesome.com/icons/scroll?style=solid /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, scholar, script, scroll - static const IconData solidScroll = IconDataSolid(0xf70e); + static const IconData solidScroll = IconData(0xf70e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scroll icon /// /// https://fontawesome.com/icons/scroll?style=regular /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, scholar, script, scroll - static const IconData scroll = IconDataRegular(0xf70e); + static const IconData scroll = IconData(0xf70e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scroll icon /// /// https://fontawesome.com/icons/scroll?style=light /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, scholar, script, scroll - static const IconData lightScroll = IconDataLight(0xf70e); + static const IconData lightScroll = IconData(0xf70e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scroll icon /// /// https://fontawesome.com/icons/scroll?style=thin /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, scholar, script, scroll - static const IconData thinScroll = IconDataThin(0xf70e); + static const IconData thinScroll = IconData(0xf70e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scroll Old icon /// /// https://fontawesome.com/icons/scroll-old?style=solid /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, scholar, script, worn - static const IconData solidScrollOld = IconDataSolid(0xf70f); + static const IconData solidScrollOld = IconData(0xf70f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scroll Old icon /// /// https://fontawesome.com/icons/scroll-old?style=regular /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, scholar, script, worn - static const IconData scrollOld = IconDataRegular(0xf70f); + static const IconData scrollOld = IconData(0xf70f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scroll Old icon /// /// https://fontawesome.com/icons/scroll-old?style=light /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, scholar, script, worn - static const IconData lightScrollOld = IconDataLight(0xf70f); + static const IconData lightScrollOld = IconData(0xf70f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scroll Old icon /// /// https://fontawesome.com/icons/scroll-old?style=thin /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, scholar, script, worn - static const IconData thinScrollOld = IconDataThin(0xf70f); + static const IconData thinScrollOld = IconData(0xf70f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scroll Torah icon /// /// https://fontawesome.com/icons/scroll-torah?style=solid /// book, jewish, judaism, religion, scroll - static const IconData solidScrollTorah = IconDataSolid(0xf6a0); + static const IconData solidScrollTorah = IconData(0xf6a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias torah for icon [solidScrollTorah] @Deprecated('Use "solidScrollTorah" instead.') @@ -73469,7 +73469,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scroll-torah?style=regular /// book, jewish, judaism, religion, scroll - static const IconData scrollTorah = IconDataRegular(0xf6a0); + static const IconData scrollTorah = IconData(0xf6a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias torah for icon [scrollTorah] @Deprecated('Use "scrollTorah" instead.') @@ -73479,7 +73479,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scroll-torah?style=light /// book, jewish, judaism, religion, scroll - static const IconData lightScrollTorah = IconDataLight(0xf6a0); + static const IconData lightScrollTorah = IconData(0xf6a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias torah for icon [lightScrollTorah] @Deprecated('Use "lightScrollTorah" instead.') @@ -73489,7 +73489,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scroll-torah?style=thin /// book, jewish, judaism, religion, scroll - static const IconData thinScrollTorah = IconDataThin(0xf6a0); + static const IconData thinScrollTorah = IconData(0xf6a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias torah for icon [thinScrollTorah] @Deprecated('Use "thinScrollTorah" instead.') @@ -73499,228 +73499,228 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/scrubber?style=solid /// circle, dot, toggle - static const IconData solidScrubber = IconDataSolid(0xf2f8); + static const IconData solidScrubber = IconData(0xf2f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scrubber icon /// /// https://fontawesome.com/icons/scrubber?style=regular /// circle, dot, toggle - static const IconData scrubber = IconDataRegular(0xf2f8); + static const IconData scrubber = IconData(0xf2f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scrubber icon /// /// https://fontawesome.com/icons/scrubber?style=light /// circle, dot, toggle - static const IconData lightScrubber = IconDataLight(0xf2f8); + static const IconData lightScrubber = IconData(0xf2f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scrubber icon /// /// https://fontawesome.com/icons/scrubber?style=thin /// circle, dot, toggle - static const IconData thinScrubber = IconDataThin(0xf2f8); + static const IconData thinScrubber = IconData(0xf2f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Scythe icon /// /// https://fontawesome.com/icons/scythe?style=solid /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconData solidScythe = IconDataSolid(0xf710); + static const IconData solidScythe = IconData(0xf710, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Scythe icon /// /// https://fontawesome.com/icons/scythe?style=regular /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconData scythe = IconDataRegular(0xf710); + static const IconData scythe = IconData(0xf710, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Scythe icon /// /// https://fontawesome.com/icons/scythe?style=light /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconData lightScythe = IconDataLight(0xf710); + static const IconData lightScythe = IconData(0xf710, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Scythe icon /// /// https://fontawesome.com/icons/scythe?style=thin /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconData thinScythe = IconDataThin(0xf710); + static const IconData thinScythe = IconData(0xf710, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sd Card icon /// /// https://fontawesome.com/icons/sd-card?style=solid /// image, img, memory, photo, save - static const IconData solidSdCard = IconDataSolid(0xf7c2); + static const IconData solidSdCard = IconData(0xf7c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sd Card icon /// /// https://fontawesome.com/icons/sd-card?style=regular /// image, img, memory, photo, save - static const IconData sdCard = IconDataRegular(0xf7c2); + static const IconData sdCard = IconData(0xf7c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sd Card icon /// /// https://fontawesome.com/icons/sd-card?style=light /// image, img, memory, photo, save - static const IconData lightSdCard = IconDataLight(0xf7c2); + static const IconData lightSdCard = IconData(0xf7c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sd Card icon /// /// https://fontawesome.com/icons/sd-card?style=thin /// image, img, memory, photo, save - static const IconData thinSdCard = IconDataThin(0xf7c2); + static const IconData thinSdCard = IconData(0xf7c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sd Cards icon /// /// https://fontawesome.com/icons/sd-cards?style=solid /// memory, storage - static const IconData solidSdCards = IconDataSolid(0xe240); + static const IconData solidSdCards = IconData(0xe240, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sd Cards icon /// /// https://fontawesome.com/icons/sd-cards?style=regular /// memory, storage - static const IconData sdCards = IconDataRegular(0xe240); + static const IconData sdCards = IconData(0xe240, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sd Cards icon /// /// https://fontawesome.com/icons/sd-cards?style=light /// memory, storage - static const IconData lightSdCards = IconDataLight(0xe240); + static const IconData lightSdCards = IconData(0xe240, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sd Cards icon /// /// https://fontawesome.com/icons/sd-cards?style=thin /// memory, storage - static const IconData thinSdCards = IconDataThin(0xe240); + static const IconData thinSdCards = IconData(0xe240, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Seal icon /// /// https://fontawesome.com/icons/seal?style=solid /// badge, certificate, confirm, guarantee - static const IconData solidSeal = IconDataSolid(0xe241); + static const IconData solidSeal = IconData(0xe241, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Seal icon /// /// https://fontawesome.com/icons/seal?style=regular /// badge, certificate, confirm, guarantee - static const IconData seal = IconDataRegular(0xe241); + static const IconData seal = IconData(0xe241, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Seal icon /// /// https://fontawesome.com/icons/seal?style=light /// badge, certificate, confirm, guarantee - static const IconData lightSeal = IconDataLight(0xe241); + static const IconData lightSeal = IconData(0xe241, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Seal icon /// /// https://fontawesome.com/icons/seal?style=thin /// badge, certificate, confirm, guarantee - static const IconData thinSeal = IconDataThin(0xe241); + static const IconData thinSeal = IconData(0xe241, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Seal Exclamation icon /// /// https://fontawesome.com/icons/seal-exclamation?style=solid /// attention, badge, certificate, confirm, failed, guarantee, required - static const IconData solidSealExclamation = IconDataSolid(0xe242); + static const IconData solidSealExclamation = IconData(0xe242, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Seal Exclamation icon /// /// https://fontawesome.com/icons/seal-exclamation?style=regular /// attention, badge, certificate, confirm, failed, guarantee, required - static const IconData sealExclamation = IconDataRegular(0xe242); + static const IconData sealExclamation = IconData(0xe242, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Seal Exclamation icon /// /// https://fontawesome.com/icons/seal-exclamation?style=light /// attention, badge, certificate, confirm, failed, guarantee, required - static const IconData lightSealExclamation = IconDataLight(0xe242); + static const IconData lightSealExclamation = IconData(0xe242, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Seal Exclamation icon /// /// https://fontawesome.com/icons/seal-exclamation?style=thin /// attention, badge, certificate, confirm, failed, guarantee, required - static const IconData thinSealExclamation = IconDataThin(0xe242); + static const IconData thinSealExclamation = IconData(0xe242, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Seal Question icon /// /// https://fontawesome.com/icons/seal-question?style=solid /// badge, faq, idea, question - static const IconData solidSealQuestion = IconDataSolid(0xe243); + static const IconData solidSealQuestion = IconData(0xe243, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Seal Question icon /// /// https://fontawesome.com/icons/seal-question?style=regular /// badge, faq, idea, question - static const IconData sealQuestion = IconDataRegular(0xe243); + static const IconData sealQuestion = IconData(0xe243, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Seal Question icon /// /// https://fontawesome.com/icons/seal-question?style=light /// badge, faq, idea, question - static const IconData lightSealQuestion = IconDataLight(0xe243); + static const IconData lightSealQuestion = IconData(0xe243, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Seal Question icon /// /// https://fontawesome.com/icons/seal-question?style=thin /// badge, faq, idea, question - static const IconData thinSealQuestion = IconDataThin(0xe243); + static const IconData thinSealQuestion = IconData(0xe243, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Searchengin icon /// /// https://fontawesome.com/icons/searchengin?style=brands - static const IconData searchengin = IconDataBrands(0xf3eb); + static const IconData searchengin = IconData(0xf3eb, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Seat Airline icon /// /// https://fontawesome.com/icons/seat-airline?style=solid /// airplane, chair, recline, seat - static const IconData solidSeatAirline = IconDataSolid(0xe244); + static const IconData solidSeatAirline = IconData(0xe244, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Seat Airline icon /// /// https://fontawesome.com/icons/seat-airline?style=regular /// airplane, chair, recline, seat - static const IconData seatAirline = IconDataRegular(0xe244); + static const IconData seatAirline = IconData(0xe244, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Seat Airline icon /// /// https://fontawesome.com/icons/seat-airline?style=light /// airplane, chair, recline, seat - static const IconData lightSeatAirline = IconDataLight(0xe244); + static const IconData lightSeatAirline = IconData(0xe244, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Seat Airline icon /// /// https://fontawesome.com/icons/seat-airline?style=thin /// airplane, chair, recline, seat - static const IconData thinSeatAirline = IconDataThin(0xe244); + static const IconData thinSeatAirline = IconData(0xe244, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Section icon /// /// https://fontawesome.com/icons/section?style=solid /// Section Sign, law, legal, silcrow - static const IconData solidSection = IconDataSolid(0xe447); + static const IconData solidSection = IconData(0xe447, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Section icon /// /// https://fontawesome.com/icons/section?style=regular /// Section Sign, law, legal, silcrow - static const IconData section = IconDataRegular(0xe447); + static const IconData section = IconData(0xe447, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Section icon /// /// https://fontawesome.com/icons/section?style=light /// Section Sign, law, legal, silcrow - static const IconData lightSection = IconDataLight(0xe447); + static const IconData lightSection = IconData(0xe447, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Section icon /// /// https://fontawesome.com/icons/section?style=thin /// Section Sign, law, legal, silcrow - static const IconData thinSection = IconDataThin(0xe447); + static const IconData thinSection = IconData(0xe447, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Seedling icon /// /// https://fontawesome.com/icons/seedling?style=solid /// environment, flora, grow, investment, plant, sapling, seedling, vegan, young - static const IconData solidSeedling = IconDataSolid(0xf4d8); + static const IconData solidSeedling = IconData(0xf4d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sprout for icon [solidSeedling] @Deprecated('Use "solidSeedling" instead.') @@ -73730,7 +73730,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/seedling?style=regular /// environment, flora, grow, investment, plant, sapling, seedling, vegan, young - static const IconData seedling = IconDataRegular(0xf4d8); + static const IconData seedling = IconData(0xf4d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sprout for icon [seedling] @Deprecated('Use "seedling" instead.') @@ -73740,7 +73740,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/seedling?style=light /// environment, flora, grow, investment, plant, sapling, seedling, vegan, young - static const IconData lightSeedling = IconDataLight(0xf4d8); + static const IconData lightSeedling = IconData(0xf4d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sprout for icon [lightSeedling] @Deprecated('Use "lightSeedling" instead.') @@ -73750,7 +73750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/seedling?style=thin /// environment, flora, grow, investment, plant, sapling, seedling, vegan, young - static const IconData thinSeedling = IconDataThin(0xf4d8); + static const IconData thinSeedling = IconData(0xf4d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sprout for icon [thinSeedling] @Deprecated('Use "thinSeedling" instead.') @@ -73760,114 +73760,114 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sellcast?style=brands /// eercast - static const IconData sellcast = IconDataBrands(0xf2da); + static const IconData sellcast = IconData(0xf2da, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Sellsy icon /// /// https://fontawesome.com/icons/sellsy?style=brands - static const IconData sellsy = IconDataBrands(0xf213); + static const IconData sellsy = IconData(0xf213, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Semicolon icon /// /// https://fontawesome.com/icons/semicolon?style=solid /// Semicolon, semicolon - static const IconData solidSemicolon = IconDataSolid(0x3b); + static const IconData solidSemicolon = IconData(0x3b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Semicolon icon /// /// https://fontawesome.com/icons/semicolon?style=regular /// Semicolon, semicolon - static const IconData semicolon = IconDataRegular(0x3b); + static const IconData semicolon = IconData(0x3b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Semicolon icon /// /// https://fontawesome.com/icons/semicolon?style=light /// Semicolon, semicolon - static const IconData lightSemicolon = IconDataLight(0x3b); + static const IconData lightSemicolon = IconData(0x3b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Semicolon icon /// /// https://fontawesome.com/icons/semicolon?style=thin /// Semicolon, semicolon - static const IconData thinSemicolon = IconDataThin(0x3b); + static const IconData thinSemicolon = IconData(0x3b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Send Back icon /// /// https://fontawesome.com/icons/send-back?style=solid /// arrange, backward, layer, order, stack - static const IconData solidSendBack = IconDataSolid(0xf87e); + static const IconData solidSendBack = IconData(0xf87e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Send Back icon /// /// https://fontawesome.com/icons/send-back?style=regular /// arrange, backward, layer, order, stack - static const IconData sendBack = IconDataRegular(0xf87e); + static const IconData sendBack = IconData(0xf87e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Send Back icon /// /// https://fontawesome.com/icons/send-back?style=light /// arrange, backward, layer, order, stack - static const IconData lightSendBack = IconDataLight(0xf87e); + static const IconData lightSendBack = IconData(0xf87e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Send Back icon /// /// https://fontawesome.com/icons/send-back?style=thin /// arrange, backward, layer, order, stack - static const IconData thinSendBack = IconDataThin(0xf87e); + static const IconData thinSendBack = IconData(0xf87e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Send Backward icon /// /// https://fontawesome.com/icons/send-backward?style=solid /// arrange, back, layer, order, stack - static const IconData solidSendBackward = IconDataSolid(0xf87f); + static const IconData solidSendBackward = IconData(0xf87f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Send Backward icon /// /// https://fontawesome.com/icons/send-backward?style=regular /// arrange, back, layer, order, stack - static const IconData sendBackward = IconDataRegular(0xf87f); + static const IconData sendBackward = IconData(0xf87f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Send Backward icon /// /// https://fontawesome.com/icons/send-backward?style=light /// arrange, back, layer, order, stack - static const IconData lightSendBackward = IconDataLight(0xf87f); + static const IconData lightSendBackward = IconData(0xf87f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Send Backward icon /// /// https://fontawesome.com/icons/send-backward?style=thin /// arrange, back, layer, order, stack - static const IconData thinSendBackward = IconDataThin(0xf87f); + static const IconData thinSendBackward = IconData(0xf87f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sensor icon /// /// https://fontawesome.com/icons/sensor?style=solid /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensor = IconDataSolid(0xe028); + static const IconData solidSensor = IconData(0xe028, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sensor icon /// /// https://fontawesome.com/icons/sensor?style=regular /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensor = IconDataRegular(0xe028); + static const IconData sensor = IconData(0xe028, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sensor icon /// /// https://fontawesome.com/icons/sensor?style=light /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensor = IconDataLight(0xe028); + static const IconData lightSensor = IconData(0xe028, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sensor icon /// /// https://fontawesome.com/icons/sensor?style=thin /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData thinSensor = IconDataThin(0xe028); + static const IconData thinSensor = IconData(0xe028, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sensor Cloud icon /// /// https://fontawesome.com/icons/sensor-cloud?style=solid /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorCloud = IconDataSolid(0xe02c); + static const IconData solidSensorCloud = IconData(0xe02c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sensor-smoke for icon [solidSensorCloud] @Deprecated('Use "solidSensorCloud" instead.') @@ -73877,7 +73877,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-cloud?style=regular /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorCloud = IconDataRegular(0xe02c); + static const IconData sensorCloud = IconData(0xe02c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sensor-smoke for icon [sensorCloud] @Deprecated('Use "sensorCloud" instead.') @@ -73887,7 +73887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-cloud?style=light /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorCloud = IconDataLight(0xe02c); + static const IconData lightSensorCloud = IconData(0xe02c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sensor-smoke for icon [lightSensorCloud] @Deprecated('Use "lightSensorCloud" instead.') @@ -73897,7 +73897,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-cloud?style=thin /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData thinSensorCloud = IconDataThin(0xe02c); + static const IconData thinSensorCloud = IconData(0xe02c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sensor-smoke for icon [thinSensorCloud] @Deprecated('Use "thinSensorCloud" instead.') @@ -73907,55 +73907,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-fire?style=solid /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorFire = IconDataSolid(0xe02a); + static const IconData solidSensorFire = IconData(0xe02a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sensor Fire icon /// /// https://fontawesome.com/icons/sensor-fire?style=regular /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorFire = IconDataRegular(0xe02a); + static const IconData sensorFire = IconData(0xe02a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sensor Fire icon /// /// https://fontawesome.com/icons/sensor-fire?style=light /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorFire = IconDataLight(0xe02a); + static const IconData lightSensorFire = IconData(0xe02a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sensor Fire icon /// /// https://fontawesome.com/icons/sensor-fire?style=thin /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData thinSensorFire = IconDataThin(0xe02a); + static const IconData thinSensorFire = IconData(0xe02a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sensor On icon /// /// https://fontawesome.com/icons/sensor-on?style=solid /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorOn = IconDataSolid(0xe02b); + static const IconData solidSensorOn = IconData(0xe02b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sensor On icon /// /// https://fontawesome.com/icons/sensor-on?style=regular /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorOn = IconDataRegular(0xe02b); + static const IconData sensorOn = IconData(0xe02b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sensor On icon /// /// https://fontawesome.com/icons/sensor-on?style=light /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorOn = IconDataLight(0xe02b); + static const IconData lightSensorOn = IconData(0xe02b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sensor On icon /// /// https://fontawesome.com/icons/sensor-on?style=thin /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData thinSensorOn = IconDataThin(0xe02b); + static const IconData thinSensorOn = IconData(0xe02b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sensor Triangle Exclamation icon /// /// https://fontawesome.com/icons/sensor-triangle-exclamation?style=solid /// alarm, alert, carbon monoxide, detector, failed, fire, smoke - static const IconData solidSensorTriangleExclamation = IconDataSolid(0xe029); + static const IconData solidSensorTriangleExclamation = IconData(0xe029, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sensor-alert for icon [solidSensorTriangleExclamation] @Deprecated('Use "solidSensorTriangleExclamation" instead.') @@ -73965,7 +73965,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-triangle-exclamation?style=regular /// alarm, alert, carbon monoxide, detector, failed, fire, smoke - static const IconData sensorTriangleExclamation = IconDataRegular(0xe029); + static const IconData sensorTriangleExclamation = IconData(0xe029, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sensor-alert for icon [sensorTriangleExclamation] @Deprecated('Use "sensorTriangleExclamation" instead.') @@ -73975,7 +73975,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-triangle-exclamation?style=light /// alarm, alert, carbon monoxide, detector, failed, fire, smoke - static const IconData lightSensorTriangleExclamation = IconDataLight(0xe029); + static const IconData lightSensorTriangleExclamation = IconData(0xe029, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sensor-alert for icon [lightSensorTriangleExclamation] @Deprecated('Use "lightSensorTriangleExclamation" instead.') @@ -73985,7 +73985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sensor-triangle-exclamation?style=thin /// alarm, alert, carbon monoxide, detector, failed, fire, smoke - static const IconData thinSensorTriangleExclamation = IconDataThin(0xe029); + static const IconData thinSensorTriangleExclamation = IconData(0xe029, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sensor-alert for icon [thinSensorTriangleExclamation] @Deprecated('Use "thinSensorTriangleExclamation" instead.') @@ -73995,36 +73995,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/server?style=solid /// computer, cpu, database, hardware, mysql, network, sql - static const IconData solidServer = IconDataSolid(0xf233); + static const IconData solidServer = IconData(0xf233, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Server icon /// /// https://fontawesome.com/icons/server?style=regular /// computer, cpu, database, hardware, mysql, network, sql - static const IconData server = IconDataRegular(0xf233); + static const IconData server = IconData(0xf233, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Server icon /// /// https://fontawesome.com/icons/server?style=light /// computer, cpu, database, hardware, mysql, network, sql - static const IconData lightServer = IconDataLight(0xf233); + static const IconData lightServer = IconData(0xf233, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Server icon /// /// https://fontawesome.com/icons/server?style=thin /// computer, cpu, database, hardware, mysql, network, sql - static const IconData thinServer = IconDataThin(0xf233); + static const IconData thinServer = IconData(0xf233, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Servicestack icon /// /// https://fontawesome.com/icons/servicestack?style=brands - static const IconData servicestack = IconDataBrands(0xf3ec); + static const IconData servicestack = IconData(0xf3ec, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Shapes icon /// /// https://fontawesome.com/icons/shapes?style=solid /// blocks, build, circle, square, triangle - static const IconData solidShapes = IconDataSolid(0xf61f); + static const IconData solidShapes = IconData(0xf61f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias triangle-circle-square for icon [solidShapes] @Deprecated('Use "solidShapes" instead.') @@ -74034,7 +74034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shapes?style=regular /// blocks, build, circle, square, triangle - static const IconData shapes = IconDataRegular(0xf61f); + static const IconData shapes = IconData(0xf61f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias triangle-circle-square for icon [shapes] @Deprecated('Use "shapes" instead.') @@ -74044,7 +74044,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shapes?style=light /// blocks, build, circle, square, triangle - static const IconData lightShapes = IconDataLight(0xf61f); + static const IconData lightShapes = IconData(0xf61f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias triangle-circle-square for icon [lightShapes] @Deprecated('Use "lightShapes" instead.') @@ -74054,7 +74054,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shapes?style=thin /// blocks, build, circle, square, triangle - static const IconData thinShapes = IconDataThin(0xf61f); + static const IconData thinShapes = IconData(0xf61f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias triangle-circle-square for icon [thinShapes] @Deprecated('Use "thinShapes" instead.') @@ -74064,7 +74064,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share?style=solid /// forward, save, send, social - static const IconData solidShare = IconDataSolid(0xf064); + static const IconData solidShare = IconData(0xf064, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias mail-forward for icon [solidShare] @Deprecated('Use "solidShare" instead.') @@ -74074,7 +74074,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share?style=regular /// forward, save, send, social - static const IconData share = IconDataRegular(0xf064); + static const IconData share = IconData(0xf064, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias mail-forward for icon [share] @Deprecated('Use "share" instead.') @@ -74084,7 +74084,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share?style=light /// forward, save, send, social - static const IconData lightShare = IconDataLight(0xf064); + static const IconData lightShare = IconData(0xf064, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias mail-forward for icon [lightShare] @Deprecated('Use "lightShare" instead.') @@ -74094,7 +74094,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share?style=thin /// forward, save, send, social - static const IconData thinShare = IconDataThin(0xf064); + static const IconData thinShare = IconData(0xf064, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias mail-forward for icon [thinShare] @Deprecated('Use "thinShare" instead.') @@ -74104,31 +74104,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-all?style=solid /// forward, save, send, social - static const IconData solidShareAll = IconDataSolid(0xf367); + static const IconData solidShareAll = IconData(0xf367, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Share All icon /// /// https://fontawesome.com/icons/share-all?style=regular /// forward, save, send, social - static const IconData shareAll = IconDataRegular(0xf367); + static const IconData shareAll = IconData(0xf367, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Share All icon /// /// https://fontawesome.com/icons/share-all?style=light /// forward, save, send, social - static const IconData lightShareAll = IconDataLight(0xf367); + static const IconData lightShareAll = IconData(0xf367, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Share All icon /// /// https://fontawesome.com/icons/share-all?style=thin /// forward, save, send, social - static const IconData thinShareAll = IconDataThin(0xf367); + static const IconData thinShareAll = IconData(0xf367, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Share From Square icon /// /// https://fontawesome.com/icons/share-from-square?style=solid /// forward, save, send, social - static const IconData solidShareFromSquare = IconDataSolid(0xf14d); + static const IconData solidShareFromSquare = IconData(0xf14d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias share-square for icon [solidShareFromSquare] @Deprecated('Use "solidShareFromSquare" instead.') @@ -74138,7 +74138,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-from-square?style=regular /// forward, save, send, social - static const IconData shareFromSquare = IconDataRegular(0xf14d); + static const IconData shareFromSquare = IconData(0xf14d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias share-square for icon [shareFromSquare] @Deprecated('Use "shareFromSquare" instead.') @@ -74148,7 +74148,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-from-square?style=light /// forward, save, send, social - static const IconData lightShareFromSquare = IconDataLight(0xf14d); + static const IconData lightShareFromSquare = IconData(0xf14d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias share-square for icon [lightShareFromSquare] @Deprecated('Use "lightShareFromSquare" instead.') @@ -74158,7 +74158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-from-square?style=thin /// forward, save, send, social - static const IconData thinShareFromSquare = IconDataThin(0xf14d); + static const IconData thinShareFromSquare = IconData(0xf14d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias share-square for icon [thinShareFromSquare] @Deprecated('Use "thinShareFromSquare" instead.') @@ -74168,7 +74168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-nodes?style=solid /// forward, save, send, social - static const IconData solidShareNodes = IconDataSolid(0xf1e0); + static const IconData solidShareNodes = IconData(0xf1e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias share-alt for icon [solidShareNodes] @Deprecated('Use "solidShareNodes" instead.') @@ -74178,7 +74178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-nodes?style=regular /// forward, save, send, social - static const IconData shareNodes = IconDataRegular(0xf1e0); + static const IconData shareNodes = IconData(0xf1e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias share-alt for icon [shareNodes] @Deprecated('Use "shareNodes" instead.') @@ -74188,7 +74188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-nodes?style=light /// forward, save, send, social - static const IconData lightShareNodes = IconDataLight(0xf1e0); + static const IconData lightShareNodes = IconData(0xf1e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias share-alt for icon [lightShareNodes] @Deprecated('Use "lightShareNodes" instead.') @@ -74198,7 +74198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/share-nodes?style=thin /// forward, save, send, social - static const IconData thinShareNodes = IconDataThin(0xf1e0); + static const IconData thinShareNodes = IconData(0xf1e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias share-alt for icon [thinShareNodes] @Deprecated('Use "thinShareNodes" instead.') @@ -74208,55 +74208,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sheep?style=solid /// agriculture, animal, ewe, farming, fauna, female, mammal, sheep, wool, yarn - static const IconData solidSheep = IconDataSolid(0xf711); + static const IconData solidSheep = IconData(0xf711, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sheep icon /// /// https://fontawesome.com/icons/sheep?style=regular /// agriculture, animal, ewe, farming, fauna, female, mammal, sheep, wool, yarn - static const IconData sheep = IconDataRegular(0xf711); + static const IconData sheep = IconData(0xf711, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sheep icon /// /// https://fontawesome.com/icons/sheep?style=light /// agriculture, animal, ewe, farming, fauna, female, mammal, sheep, wool, yarn - static const IconData lightSheep = IconDataLight(0xf711); + static const IconData lightSheep = IconData(0xf711, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sheep icon /// /// https://fontawesome.com/icons/sheep?style=thin /// agriculture, animal, ewe, farming, fauna, female, mammal, sheep, wool, yarn - static const IconData thinSheep = IconDataThin(0xf711); + static const IconData thinSheep = IconData(0xf711, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sheet Plastic icon /// /// https://fontawesome.com/icons/sheet-plastic?style=solid /// plastic, plastic wrap, protect, tarp, tarpaulin, waterproof - static const IconData solidSheetPlastic = IconDataSolid(0xe571); + static const IconData solidSheetPlastic = IconData(0xe571, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sheet Plastic icon /// /// https://fontawesome.com/icons/sheet-plastic?style=regular /// plastic, plastic wrap, protect, tarp, tarpaulin, waterproof - static const IconData sheetPlastic = IconDataRegular(0xe571); + static const IconData sheetPlastic = IconData(0xe571, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sheet Plastic icon /// /// https://fontawesome.com/icons/sheet-plastic?style=light /// plastic, plastic wrap, protect, tarp, tarpaulin, waterproof - static const IconData lightSheetPlastic = IconDataLight(0xe571); + static const IconData lightSheetPlastic = IconData(0xe571, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sheet Plastic icon /// /// https://fontawesome.com/icons/sheet-plastic?style=thin /// plastic, plastic wrap, protect, tarp, tarpaulin, waterproof - static const IconData thinSheetPlastic = IconDataThin(0xe571); + static const IconData thinSheetPlastic = IconData(0xe571, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shekel Sign icon /// /// https://fontawesome.com/icons/shekel-sign?style=solid /// New Sheqel Sign, currency, ils, money - static const IconData solidShekelSign = IconDataSolid(0xf20b); + static const IconData solidShekelSign = IconData(0xf20b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ils for icon [solidShekelSign] @Deprecated('Use "solidShekelSign" instead.') @@ -74278,7 +74278,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shekel-sign?style=regular /// New Sheqel Sign, currency, ils, money - static const IconData shekelSign = IconDataRegular(0xf20b); + static const IconData shekelSign = IconData(0xf20b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ils for icon [shekelSign] @Deprecated('Use "shekelSign" instead.') @@ -74300,7 +74300,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shekel-sign?style=light /// New Sheqel Sign, currency, ils, money - static const IconData lightShekelSign = IconDataLight(0xf20b); + static const IconData lightShekelSign = IconData(0xf20b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ils for icon [lightShekelSign] @Deprecated('Use "lightShekelSign" instead.') @@ -74322,7 +74322,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shekel-sign?style=thin /// New Sheqel Sign, currency, ils, money - static const IconData thinShekelSign = IconDataThin(0xf20b); + static const IconData thinShekelSign = IconData(0xf20b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ils for icon [thinShekelSign] @Deprecated('Use "thinShekelSign" instead.') @@ -74344,7 +74344,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shelves?style=solid /// archive, box, shipping, warehouse - static const IconData solidShelves = IconDataSolid(0xf480); + static const IconData solidShelves = IconData(0xf480, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias inventory for icon [solidShelves] @Deprecated('Use "solidShelves" instead.') @@ -74354,7 +74354,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shelves?style=regular /// archive, box, shipping, warehouse - static const IconData shelves = IconDataRegular(0xf480); + static const IconData shelves = IconData(0xf480, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias inventory for icon [shelves] @Deprecated('Use "shelves" instead.') @@ -74364,7 +74364,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shelves?style=light /// archive, box, shipping, warehouse - static const IconData lightShelves = IconDataLight(0xf480); + static const IconData lightShelves = IconData(0xf480, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias inventory for icon [lightShelves] @Deprecated('Use "lightShelves" instead.') @@ -74374,7 +74374,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shelves?style=thin /// archive, box, shipping, warehouse - static const IconData thinShelves = IconDataThin(0xf480); + static const IconData thinShelves = IconData(0xf480, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias inventory for icon [thinShelves] @Deprecated('Use "thinShelves" instead.') @@ -74384,31 +74384,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shelves-empty?style=solid /// bookshelf, inventory, stock - static const IconData solidShelvesEmpty = IconDataSolid(0xe246); + static const IconData solidShelvesEmpty = IconData(0xe246, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shelves Empty icon /// /// https://fontawesome.com/icons/shelves-empty?style=regular /// bookshelf, inventory, stock - static const IconData shelvesEmpty = IconDataRegular(0xe246); + static const IconData shelvesEmpty = IconData(0xe246, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shelves Empty icon /// /// https://fontawesome.com/icons/shelves-empty?style=light /// bookshelf, inventory, stock - static const IconData lightShelvesEmpty = IconDataLight(0xe246); + static const IconData lightShelvesEmpty = IconData(0xe246, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shelves Empty icon /// /// https://fontawesome.com/icons/shelves-empty?style=thin /// bookshelf, inventory, stock - static const IconData thinShelvesEmpty = IconDataThin(0xe246); + static const IconData thinShelvesEmpty = IconData(0xe246, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield icon /// /// https://fontawesome.com/icons/shield?style=solid /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, protect, safety, security, shield, weapon, winner - static const IconData solidShield = IconDataSolid(0xf132); + static const IconData solidShield = IconData(0xf132, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shield-blank for icon [solidShield] @Deprecated('Use "solidShield" instead.') @@ -74418,7 +74418,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield?style=regular /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, protect, safety, security, shield, weapon, winner - static const IconData shield = IconDataRegular(0xf132); + static const IconData shield = IconData(0xf132, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shield-blank for icon [shield] @Deprecated('Use "shield" instead.') @@ -74428,7 +74428,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield?style=light /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, protect, safety, security, shield, weapon, winner - static const IconData lightShield = IconDataLight(0xf132); + static const IconData lightShield = IconData(0xf132, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shield-blank for icon [lightShield] @Deprecated('Use "lightShield" instead.') @@ -74438,7 +74438,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield?style=thin /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, protect, safety, security, shield, weapon, winner - static const IconData thinShield = IconDataThin(0xf132); + static const IconData thinShield = IconData(0xf132, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shield-blank for icon [thinShield] @Deprecated('Use "thinShield" instead.') @@ -74448,127 +74448,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-cat?style=solid /// animal, feline, pet, protect, safety, veterinary - static const IconData solidShieldCat = IconDataSolid(0xe572); + static const IconData solidShieldCat = IconData(0xe572, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Cat icon /// /// https://fontawesome.com/icons/shield-cat?style=regular /// animal, feline, pet, protect, safety, veterinary - static const IconData shieldCat = IconDataRegular(0xe572); + static const IconData shieldCat = IconData(0xe572, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Cat icon /// /// https://fontawesome.com/icons/shield-cat?style=light /// animal, feline, pet, protect, safety, veterinary - static const IconData lightShieldCat = IconDataLight(0xe572); + static const IconData lightShieldCat = IconData(0xe572, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Cat icon /// /// https://fontawesome.com/icons/shield-cat?style=thin /// animal, feline, pet, protect, safety, veterinary - static const IconData thinShieldCat = IconDataThin(0xe572); + static const IconData thinShieldCat = IconData(0xe572, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Check icon /// /// https://fontawesome.com/icons/shield-check?style=solid /// achievement, award, block, defend, enable, protect, safety, security, select, success, tick, todo, validate, warranty, winner, working - static const IconData solidShieldCheck = IconDataSolid(0xf2f7); + static const IconData solidShieldCheck = IconData(0xf2f7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Check icon /// /// https://fontawesome.com/icons/shield-check?style=regular /// achievement, award, block, defend, enable, protect, safety, security, select, success, tick, todo, validate, warranty, winner, working - static const IconData shieldCheck = IconDataRegular(0xf2f7); + static const IconData shieldCheck = IconData(0xf2f7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Check icon /// /// https://fontawesome.com/icons/shield-check?style=light /// achievement, award, block, defend, enable, protect, safety, security, select, success, tick, todo, validate, warranty, winner, working - static const IconData lightShieldCheck = IconDataLight(0xf2f7); + static const IconData lightShieldCheck = IconData(0xf2f7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Check icon /// /// https://fontawesome.com/icons/shield-check?style=thin /// achievement, award, block, defend, enable, protect, safety, security, select, success, tick, todo, validate, warranty, winner, working - static const IconData thinShieldCheck = IconDataThin(0xf2f7); + static const IconData thinShieldCheck = IconData(0xf2f7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Cross icon /// /// https://fontawesome.com/icons/shield-cross?style=solid /// Black Cross On Shield, Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, protect, safety, security, templar - static const IconData solidShieldCross = IconDataSolid(0xf712); + static const IconData solidShieldCross = IconData(0xf712, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Cross icon /// /// https://fontawesome.com/icons/shield-cross?style=regular /// Black Cross On Shield, Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, protect, safety, security, templar - static const IconData shieldCross = IconDataRegular(0xf712); + static const IconData shieldCross = IconData(0xf712, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Cross icon /// /// https://fontawesome.com/icons/shield-cross?style=light /// Black Cross On Shield, Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, protect, safety, security, templar - static const IconData lightShieldCross = IconDataLight(0xf712); + static const IconData lightShieldCross = IconData(0xf712, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Cross icon /// /// https://fontawesome.com/icons/shield-cross?style=thin /// Black Cross On Shield, Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, protect, safety, security, templar - static const IconData thinShieldCross = IconDataThin(0xf712); + static const IconData thinShieldCross = IconData(0xf712, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Dog icon /// /// https://fontawesome.com/icons/shield-dog?style=solid /// animal, canine, pet, protect, safety, veterinary - static const IconData solidShieldDog = IconDataSolid(0xe573); + static const IconData solidShieldDog = IconData(0xe573, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Dog icon /// /// https://fontawesome.com/icons/shield-dog?style=regular /// animal, canine, pet, protect, safety, veterinary - static const IconData shieldDog = IconDataRegular(0xe573); + static const IconData shieldDog = IconData(0xe573, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Dog icon /// /// https://fontawesome.com/icons/shield-dog?style=light /// animal, canine, pet, protect, safety, veterinary - static const IconData lightShieldDog = IconDataLight(0xe573); + static const IconData lightShieldDog = IconData(0xe573, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Dog icon /// /// https://fontawesome.com/icons/shield-dog?style=thin /// animal, canine, pet, protect, safety, veterinary - static const IconData thinShieldDog = IconDataThin(0xe573); + static const IconData thinShieldDog = IconData(0xe573, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Exclamation icon /// /// https://fontawesome.com/icons/shield-exclamation?style=solid /// attention, danger, failed, protect, required, safety - static const IconData solidShieldExclamation = IconDataSolid(0xe247); + static const IconData solidShieldExclamation = IconData(0xe247, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Exclamation icon /// /// https://fontawesome.com/icons/shield-exclamation?style=regular /// attention, danger, failed, protect, required, safety - static const IconData shieldExclamation = IconDataRegular(0xe247); + static const IconData shieldExclamation = IconData(0xe247, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Exclamation icon /// /// https://fontawesome.com/icons/shield-exclamation?style=light /// attention, danger, failed, protect, required, safety - static const IconData lightShieldExclamation = IconDataLight(0xe247); + static const IconData lightShieldExclamation = IconData(0xe247, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Exclamation icon /// /// https://fontawesome.com/icons/shield-exclamation?style=thin /// attention, danger, failed, protect, required, safety - static const IconData thinShieldExclamation = IconDataThin(0xe247); + static const IconData thinShieldExclamation = IconData(0xe247, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Halved icon /// /// https://fontawesome.com/icons/shield-halved?style=solid /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, privacy, security, shield, weapon, winner - static const IconData solidShieldHalved = IconDataSolid(0xf3ed); + static const IconData solidShieldHalved = IconData(0xf3ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shield-alt for icon [solidShieldHalved] @Deprecated('Use "solidShieldHalved" instead.') @@ -74578,7 +74578,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-halved?style=regular /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, privacy, security, shield, weapon, winner - static const IconData shieldHalved = IconDataRegular(0xf3ed); + static const IconData shieldHalved = IconData(0xf3ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shield-alt for icon [shieldHalved] @Deprecated('Use "shieldHalved" instead.') @@ -74588,7 +74588,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-halved?style=light /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, privacy, security, shield, weapon, winner - static const IconData lightShieldHalved = IconDataLight(0xf3ed); + static const IconData lightShieldHalved = IconData(0xf3ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shield-alt for icon [lightShieldHalved] @Deprecated('Use "lightShieldHalved" instead.') @@ -74598,7 +74598,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-halved?style=thin /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, privacy, security, shield, weapon, winner - static const IconData thinShieldHalved = IconDataThin(0xf3ed); + static const IconData thinShieldHalved = IconData(0xf3ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shield-alt for icon [thinShieldHalved] @Deprecated('Use "thinShieldHalved" instead.') @@ -74608,175 +74608,175 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-heart?style=solid /// love, protect, safe, safety, shield, wishlist - static const IconData solidShieldHeart = IconDataSolid(0xe574); + static const IconData solidShieldHeart = IconData(0xe574, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Heart icon /// /// https://fontawesome.com/icons/shield-heart?style=regular /// love, protect, safe, safety, shield, wishlist - static const IconData shieldHeart = IconDataRegular(0xe574); + static const IconData shieldHeart = IconData(0xe574, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Heart icon /// /// https://fontawesome.com/icons/shield-heart?style=light /// love, protect, safe, safety, shield, wishlist - static const IconData lightShieldHeart = IconDataLight(0xe574); + static const IconData lightShieldHeart = IconData(0xe574, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Heart icon /// /// https://fontawesome.com/icons/shield-heart?style=thin /// love, protect, safe, safety, shield, wishlist - static const IconData thinShieldHeart = IconDataThin(0xe574); + static const IconData thinShieldHeart = IconData(0xe574, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Keyhole icon /// /// https://fontawesome.com/icons/shield-keyhole?style=solid /// lock, privacy, protect, safety - static const IconData solidShieldKeyhole = IconDataSolid(0xe248); + static const IconData solidShieldKeyhole = IconData(0xe248, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Keyhole icon /// /// https://fontawesome.com/icons/shield-keyhole?style=regular /// lock, privacy, protect, safety - static const IconData shieldKeyhole = IconDataRegular(0xe248); + static const IconData shieldKeyhole = IconData(0xe248, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Keyhole icon /// /// https://fontawesome.com/icons/shield-keyhole?style=light /// lock, privacy, protect, safety - static const IconData lightShieldKeyhole = IconDataLight(0xe248); + static const IconData lightShieldKeyhole = IconData(0xe248, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Keyhole icon /// /// https://fontawesome.com/icons/shield-keyhole?style=thin /// lock, privacy, protect, safety - static const IconData thinShieldKeyhole = IconDataThin(0xe248); + static const IconData thinShieldKeyhole = IconData(0xe248, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Minus icon /// /// https://fontawesome.com/icons/shield-minus?style=solid /// minus, protect, remove, safety - static const IconData solidShieldMinus = IconDataSolid(0xe249); + static const IconData solidShieldMinus = IconData(0xe249, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Minus icon /// /// https://fontawesome.com/icons/shield-minus?style=regular /// minus, protect, remove, safety - static const IconData shieldMinus = IconDataRegular(0xe249); + static const IconData shieldMinus = IconData(0xe249, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Minus icon /// /// https://fontawesome.com/icons/shield-minus?style=light /// minus, protect, remove, safety - static const IconData lightShieldMinus = IconDataLight(0xe249); + static const IconData lightShieldMinus = IconData(0xe249, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Minus icon /// /// https://fontawesome.com/icons/shield-minus?style=thin /// minus, protect, remove, safety - static const IconData thinShieldMinus = IconDataThin(0xe249); + static const IconData thinShieldMinus = IconData(0xe249, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Plus icon /// /// https://fontawesome.com/icons/shield-plus?style=solid /// add, protect, safe, safety - static const IconData solidShieldPlus = IconDataSolid(0xe24a); + static const IconData solidShieldPlus = IconData(0xe24a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Plus icon /// /// https://fontawesome.com/icons/shield-plus?style=regular /// add, protect, safe, safety - static const IconData shieldPlus = IconDataRegular(0xe24a); + static const IconData shieldPlus = IconData(0xe24a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Plus icon /// /// https://fontawesome.com/icons/shield-plus?style=light /// add, protect, safe, safety - static const IconData lightShieldPlus = IconDataLight(0xe24a); + static const IconData lightShieldPlus = IconData(0xe24a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Plus icon /// /// https://fontawesome.com/icons/shield-plus?style=thin /// add, protect, safe, safety - static const IconData thinShieldPlus = IconDataThin(0xe24a); + static const IconData thinShieldPlus = IconData(0xe24a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Quartered icon /// /// https://fontawesome.com/icons/shield-quartered?style=solid /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, shield, weapon, winner - static const IconData solidShieldQuartered = IconDataSolid(0xe575); + static const IconData solidShieldQuartered = IconData(0xe575, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Quartered icon /// /// https://fontawesome.com/icons/shield-quartered?style=regular /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, shield, weapon, winner - static const IconData shieldQuartered = IconDataRegular(0xe575); + static const IconData shieldQuartered = IconData(0xe575, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Quartered icon /// /// https://fontawesome.com/icons/shield-quartered?style=light /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, shield, weapon, winner - static const IconData lightShieldQuartered = IconDataLight(0xe575); + static const IconData lightShieldQuartered = IconData(0xe575, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Quartered icon /// /// https://fontawesome.com/icons/shield-quartered?style=thin /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, shield, weapon, winner - static const IconData thinShieldQuartered = IconDataThin(0xe575); + static const IconData thinShieldQuartered = IconData(0xe575, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Slash icon /// /// https://fontawesome.com/icons/shield-slash?style=solid /// disabled, protect, remove, safety - static const IconData solidShieldSlash = IconDataSolid(0xe24b); + static const IconData solidShieldSlash = IconData(0xe24b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Slash icon /// /// https://fontawesome.com/icons/shield-slash?style=regular /// disabled, protect, remove, safety - static const IconData shieldSlash = IconDataRegular(0xe24b); + static const IconData shieldSlash = IconData(0xe24b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Slash icon /// /// https://fontawesome.com/icons/shield-slash?style=light /// disabled, protect, remove, safety - static const IconData lightShieldSlash = IconDataLight(0xe24b); + static const IconData lightShieldSlash = IconData(0xe24b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Slash icon /// /// https://fontawesome.com/icons/shield-slash?style=thin /// disabled, protect, remove, safety - static const IconData thinShieldSlash = IconDataThin(0xe24b); + static const IconData thinShieldSlash = IconData(0xe24b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Virus icon /// /// https://fontawesome.com/icons/shield-virus?style=solid /// antibodies, barrier, coronavirus, covid-19, flu, health, infection, pandemic, protect, safety, vaccine - static const IconData solidShieldVirus = IconDataSolid(0xe06c); + static const IconData solidShieldVirus = IconData(0xe06c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shield Virus icon /// /// https://fontawesome.com/icons/shield-virus?style=regular /// antibodies, barrier, coronavirus, covid-19, flu, health, infection, pandemic, protect, safety, vaccine - static const IconData shieldVirus = IconDataRegular(0xe06c); + static const IconData shieldVirus = IconData(0xe06c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shield Virus icon /// /// https://fontawesome.com/icons/shield-virus?style=light /// antibodies, barrier, coronavirus, covid-19, flu, health, infection, pandemic, protect, safety, vaccine - static const IconData lightShieldVirus = IconDataLight(0xe06c); + static const IconData lightShieldVirus = IconData(0xe06c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shield Virus icon /// /// https://fontawesome.com/icons/shield-virus?style=thin /// antibodies, barrier, coronavirus, covid-19, flu, health, infection, pandemic, protect, safety, vaccine - static const IconData thinShieldVirus = IconDataThin(0xe06c); + static const IconData thinShieldVirus = IconData(0xe06c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shield Xmark icon /// /// https://fontawesome.com/icons/shield-xmark?style=solid /// protect, remove, safety, uncheck - static const IconData solidShieldXmark = IconDataSolid(0xe24c); + static const IconData solidShieldXmark = IconData(0xe24c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shield-times for icon [solidShieldXmark] @Deprecated('Use "solidShieldXmark" instead.') @@ -74786,7 +74786,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-xmark?style=regular /// protect, remove, safety, uncheck - static const IconData shieldXmark = IconDataRegular(0xe24c); + static const IconData shieldXmark = IconData(0xe24c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shield-times for icon [shieldXmark] @Deprecated('Use "shieldXmark" instead.') @@ -74796,7 +74796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-xmark?style=light /// protect, remove, safety, uncheck - static const IconData lightShieldXmark = IconDataLight(0xe24c); + static const IconData lightShieldXmark = IconData(0xe24c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shield-times for icon [lightShieldXmark] @Deprecated('Use "lightShieldXmark" instead.') @@ -74806,7 +74806,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shield-xmark?style=thin /// protect, remove, safety, uncheck - static const IconData thinShieldXmark = IconDataThin(0xe24c); + static const IconData thinShieldXmark = IconData(0xe24c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shield-times for icon [thinShieldXmark] @Deprecated('Use "thinShieldXmark" instead.') @@ -74816,31 +74816,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ship?style=solid /// boat, passenger, sea, ship, water - static const IconData solidShip = IconDataSolid(0xf21a); + static const IconData solidShip = IconData(0xf21a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ship icon /// /// https://fontawesome.com/icons/ship?style=regular /// boat, passenger, sea, ship, water - static const IconData ship = IconDataRegular(0xf21a); + static const IconData ship = IconData(0xf21a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ship icon /// /// https://fontawesome.com/icons/ship?style=light /// boat, passenger, sea, ship, water - static const IconData lightShip = IconDataLight(0xf21a); + static const IconData lightShip = IconData(0xf21a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ship icon /// /// https://fontawesome.com/icons/ship?style=thin /// boat, passenger, sea, ship, water - static const IconData thinShip = IconDataThin(0xf21a); + static const IconData thinShip = IconData(0xf21a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shirt icon /// /// https://fontawesome.com/icons/shirt?style=solid /// clothing, fashion, garment, shirt, short sleeve, t-shirt, tshirt - static const IconData solidShirt = IconDataSolid(0xf553); + static const IconData solidShirt = IconData(0xf553, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias t-shirt for icon [solidShirt] @Deprecated('Use "solidShirt" instead.') @@ -74854,7 +74854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shirt?style=regular /// clothing, fashion, garment, shirt, short sleeve, t-shirt, tshirt - static const IconData shirt = IconDataRegular(0xf553); + static const IconData shirt = IconData(0xf553, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias t-shirt for icon [shirt] @Deprecated('Use "shirt" instead.') @@ -74868,7 +74868,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shirt?style=light /// clothing, fashion, garment, shirt, short sleeve, t-shirt, tshirt - static const IconData lightShirt = IconDataLight(0xf553); + static const IconData lightShirt = IconData(0xf553, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias t-shirt for icon [lightShirt] @Deprecated('Use "lightShirt" instead.') @@ -74882,7 +74882,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shirt?style=thin /// clothing, fashion, garment, shirt, short sleeve, t-shirt, tshirt - static const IconData thinShirt = IconDataThin(0xf553); + static const IconData thinShirt = IconData(0xf553, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias t-shirt for icon [thinShirt] @Deprecated('Use "thinShirt" instead.') @@ -74896,137 +74896,137 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shirt-long-sleeve?style=solid /// blouse, sweater - static const IconData solidShirtLongSleeve = IconDataSolid(0xe3c7); + static const IconData solidShirtLongSleeve = IconData(0xe3c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shirt Long Sleeve icon /// /// https://fontawesome.com/icons/shirt-long-sleeve?style=regular /// blouse, sweater - static const IconData shirtLongSleeve = IconDataRegular(0xe3c7); + static const IconData shirtLongSleeve = IconData(0xe3c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shirt Long Sleeve icon /// /// https://fontawesome.com/icons/shirt-long-sleeve?style=light /// blouse, sweater - static const IconData lightShirtLongSleeve = IconDataLight(0xe3c7); + static const IconData lightShirtLongSleeve = IconData(0xe3c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shirt Long Sleeve icon /// /// https://fontawesome.com/icons/shirt-long-sleeve?style=thin /// blouse, sweater - static const IconData thinShirtLongSleeve = IconDataThin(0xe3c7); + static const IconData thinShirtLongSleeve = IconData(0xe3c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shirt Running icon /// /// https://fontawesome.com/icons/shirt-running?style=solid /// athletics, running, running shirt, sash, shirt, tank top - static const IconData solidShirtRunning = IconDataSolid(0xe3c8); + static const IconData solidShirtRunning = IconData(0xe3c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shirt Running icon /// /// https://fontawesome.com/icons/shirt-running?style=regular /// athletics, running, running shirt, sash, shirt, tank top - static const IconData shirtRunning = IconDataRegular(0xe3c8); + static const IconData shirtRunning = IconData(0xe3c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shirt Running icon /// /// https://fontawesome.com/icons/shirt-running?style=light /// athletics, running, running shirt, sash, shirt, tank top - static const IconData lightShirtRunning = IconDataLight(0xe3c8); + static const IconData lightShirtRunning = IconData(0xe3c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shirt Running icon /// /// https://fontawesome.com/icons/shirt-running?style=thin /// athletics, running, running shirt, sash, shirt, tank top - static const IconData thinShirtRunning = IconDataThin(0xe3c8); + static const IconData thinShirtRunning = IconData(0xe3c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shirt Tank Top icon /// /// https://fontawesome.com/icons/shirt-tank-top?style=solid /// tank top, undershirt - static const IconData solidShirtTankTop = IconDataSolid(0xe3c9); + static const IconData solidShirtTankTop = IconData(0xe3c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shirt Tank Top icon /// /// https://fontawesome.com/icons/shirt-tank-top?style=regular /// tank top, undershirt - static const IconData shirtTankTop = IconDataRegular(0xe3c9); + static const IconData shirtTankTop = IconData(0xe3c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shirt Tank Top icon /// /// https://fontawesome.com/icons/shirt-tank-top?style=light /// tank top, undershirt - static const IconData lightShirtTankTop = IconDataLight(0xe3c9); + static const IconData lightShirtTankTop = IconData(0xe3c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shirt Tank Top icon /// /// https://fontawesome.com/icons/shirt-tank-top?style=thin /// tank top, undershirt - static const IconData thinShirtTankTop = IconDataThin(0xe3c9); + static const IconData thinShirtTankTop = IconData(0xe3c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Shirts in Bulk icon /// /// https://fontawesome.com/icons/shirtsinbulk?style=brands - static const IconData shirtsinbulk = IconDataBrands(0xf214); + static const IconData shirtsinbulk = IconData(0xf214, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Shish Kebab icon /// /// https://fontawesome.com/icons/shish-kebab?style=solid /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData solidShishKebab = IconDataSolid(0xf821); + static const IconData solidShishKebab = IconData(0xf821, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shish Kebab icon /// /// https://fontawesome.com/icons/shish-kebab?style=regular /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData shishKebab = IconDataRegular(0xf821); + static const IconData shishKebab = IconData(0xf821, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shish Kebab icon /// /// https://fontawesome.com/icons/shish-kebab?style=light /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData lightShishKebab = IconDataLight(0xf821); + static const IconData lightShishKebab = IconData(0xf821, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shish Kebab icon /// /// https://fontawesome.com/icons/shish-kebab?style=thin /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData thinShishKebab = IconDataThin(0xf821); + static const IconData thinShishKebab = IconData(0xf821, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shoe Prints icon /// /// https://fontawesome.com/icons/shoe-prints?style=solid /// feet, footprints, steps, walk - static const IconData solidShoePrints = IconDataSolid(0xf54b); + static const IconData solidShoePrints = IconData(0xf54b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shoe Prints icon /// /// https://fontawesome.com/icons/shoe-prints?style=regular /// feet, footprints, steps, walk - static const IconData shoePrints = IconDataRegular(0xf54b); + static const IconData shoePrints = IconData(0xf54b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shoe Prints icon /// /// https://fontawesome.com/icons/shoe-prints?style=light /// feet, footprints, steps, walk - static const IconData lightShoePrints = IconDataLight(0xf54b); + static const IconData lightShoePrints = IconData(0xf54b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shoe Prints icon /// /// https://fontawesome.com/icons/shoe-prints?style=thin /// feet, footprints, steps, walk - static const IconData thinShoePrints = IconDataThin(0xf54b); + static const IconData thinShoePrints = IconData(0xf54b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Shoelace icon /// /// https://fontawesome.com/icons/shoelace?style=brands - static const IconData shoelace = IconDataBrands(0xe60c); + static const IconData shoelace = IconData(0xe60c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Shop icon /// /// https://fontawesome.com/icons/shop?style=solid /// bodega, building, buy, market, purchase, shopping, store - static const IconData solidShop = IconDataSolid(0xf54f); + static const IconData solidShop = IconData(0xf54f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias store-alt for icon [solidShop] @Deprecated('Use "solidShop" instead.') @@ -75036,7 +75036,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop?style=regular /// bodega, building, buy, market, purchase, shopping, store - static const IconData shop = IconDataRegular(0xf54f); + static const IconData shop = IconData(0xf54f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias store-alt for icon [shop] @Deprecated('Use "shop" instead.') @@ -75046,7 +75046,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop?style=light /// bodega, building, buy, market, purchase, shopping, store - static const IconData lightShop = IconDataLight(0xf54f); + static const IconData lightShop = IconData(0xf54f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias store-alt for icon [lightShop] @Deprecated('Use "lightShop" instead.') @@ -75056,7 +75056,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop?style=thin /// bodega, building, buy, market, purchase, shopping, store - static const IconData thinShop = IconDataThin(0xf54f); + static const IconData thinShop = IconData(0xf54f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias store-alt for icon [thinShop] @Deprecated('Use "thinShop" instead.') @@ -75066,31 +75066,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop-lock?style=solid /// bodega, building, buy, closed, lock, lockdown, market, padlock, privacy, purchase, quarantine, shop, shopping, store - static const IconData solidShopLock = IconDataSolid(0xe4a5); + static const IconData solidShopLock = IconData(0xe4a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shop Lock icon /// /// https://fontawesome.com/icons/shop-lock?style=regular /// bodega, building, buy, closed, lock, lockdown, market, padlock, privacy, purchase, quarantine, shop, shopping, store - static const IconData shopLock = IconDataRegular(0xe4a5); + static const IconData shopLock = IconData(0xe4a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shop Lock icon /// /// https://fontawesome.com/icons/shop-lock?style=light /// bodega, building, buy, closed, lock, lockdown, market, padlock, privacy, purchase, quarantine, shop, shopping, store - static const IconData lightShopLock = IconDataLight(0xe4a5); + static const IconData lightShopLock = IconData(0xe4a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shop Lock icon /// /// https://fontawesome.com/icons/shop-lock?style=thin /// bodega, building, buy, closed, lock, lockdown, market, padlock, privacy, purchase, quarantine, shop, shopping, store - static const IconData thinShopLock = IconDataThin(0xe4a5); + static const IconData thinShopLock = IconData(0xe4a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shop Slash icon /// /// https://fontawesome.com/icons/shop-slash?style=solid /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData solidShopSlash = IconDataSolid(0xe070); + static const IconData solidShopSlash = IconData(0xe070, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias store-alt-slash for icon [solidShopSlash] @Deprecated('Use "solidShopSlash" instead.') @@ -75100,7 +75100,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop-slash?style=regular /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData shopSlash = IconDataRegular(0xe070); + static const IconData shopSlash = IconData(0xe070, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias store-alt-slash for icon [shopSlash] @Deprecated('Use "shopSlash" instead.') @@ -75110,7 +75110,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop-slash?style=light /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData lightShopSlash = IconDataLight(0xe070); + static const IconData lightShopSlash = IconData(0xe070, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias store-alt-slash for icon [lightShopSlash] @Deprecated('Use "lightShopSlash" instead.') @@ -75120,7 +75120,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shop-slash?style=thin /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData thinShopSlash = IconDataThin(0xe070); + static const IconData thinShopSlash = IconData(0xe070, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias store-alt-slash for icon [thinShopSlash] @Deprecated('Use "thinShopSlash" instead.') @@ -75129,90 +75129,90 @@ class FontAwesomeIcons { /// Brands Shopify icon /// /// https://fontawesome.com/icons/shopify?style=brands - static const IconData shopify = IconDataBrands(0xe057); + static const IconData shopify = IconData(0xe057, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Shopware icon /// /// https://fontawesome.com/icons/shopware?style=brands - static const IconData shopware = IconDataBrands(0xf5b5); + static const IconData shopware = IconData(0xf5b5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Shovel icon /// /// https://fontawesome.com/icons/shovel?style=solid /// construction, dig, equipment, excavate, maintenance, tool, trench - static const IconData solidShovel = IconDataSolid(0xf713); + static const IconData solidShovel = IconData(0xf713, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shovel icon /// /// https://fontawesome.com/icons/shovel?style=regular /// construction, dig, equipment, excavate, maintenance, tool, trench - static const IconData shovel = IconDataRegular(0xf713); + static const IconData shovel = IconData(0xf713, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shovel icon /// /// https://fontawesome.com/icons/shovel?style=light /// construction, dig, equipment, excavate, maintenance, tool, trench - static const IconData lightShovel = IconDataLight(0xf713); + static const IconData lightShovel = IconData(0xf713, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shovel icon /// /// https://fontawesome.com/icons/shovel?style=thin /// construction, dig, equipment, excavate, maintenance, tool, trench - static const IconData thinShovel = IconDataThin(0xf713); + static const IconData thinShovel = IconData(0xf713, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shovel Snow icon /// /// https://fontawesome.com/icons/shovel-snow?style=solid /// construction, dig, equipment, excavate, maintenance, plow, tool, trench - static const IconData solidShovelSnow = IconDataSolid(0xf7c3); + static const IconData solidShovelSnow = IconData(0xf7c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shovel Snow icon /// /// https://fontawesome.com/icons/shovel-snow?style=regular /// construction, dig, equipment, excavate, maintenance, plow, tool, trench - static const IconData shovelSnow = IconDataRegular(0xf7c3); + static const IconData shovelSnow = IconData(0xf7c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shovel Snow icon /// /// https://fontawesome.com/icons/shovel-snow?style=light /// construction, dig, equipment, excavate, maintenance, plow, tool, trench - static const IconData lightShovelSnow = IconDataLight(0xf7c3); + static const IconData lightShovelSnow = IconData(0xf7c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shovel Snow icon /// /// https://fontawesome.com/icons/shovel-snow?style=thin /// construction, dig, equipment, excavate, maintenance, plow, tool, trench - static const IconData thinShovelSnow = IconDataThin(0xf7c3); + static const IconData thinShovelSnow = IconData(0xf7c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shower icon /// /// https://fontawesome.com/icons/shower?style=solid /// bath, clean, faucet, shower, water - static const IconData solidShower = IconDataSolid(0xf2cc); + static const IconData solidShower = IconData(0xf2cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shower icon /// /// https://fontawesome.com/icons/shower?style=regular /// bath, clean, faucet, shower, water - static const IconData shower = IconDataRegular(0xf2cc); + static const IconData shower = IconData(0xf2cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shower icon /// /// https://fontawesome.com/icons/shower?style=light /// bath, clean, faucet, shower, water - static const IconData lightShower = IconDataLight(0xf2cc); + static const IconData lightShower = IconData(0xf2cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shower icon /// /// https://fontawesome.com/icons/shower?style=thin /// bath, clean, faucet, shower, water - static const IconData thinShower = IconDataThin(0xf2cc); + static const IconData thinShower = IconData(0xf2cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shower Down icon /// /// https://fontawesome.com/icons/shower-down?style=solid /// bath, drip, hygiene, water - static const IconData solidShowerDown = IconDataSolid(0xe24d); + static const IconData solidShowerDown = IconData(0xe24d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shower-alt for icon [solidShowerDown] @Deprecated('Use "solidShowerDown" instead.') @@ -75222,7 +75222,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shower-down?style=regular /// bath, drip, hygiene, water - static const IconData showerDown = IconDataRegular(0xe24d); + static const IconData showerDown = IconData(0xe24d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shower-alt for icon [showerDown] @Deprecated('Use "showerDown" instead.') @@ -75232,7 +75232,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shower-down?style=light /// bath, drip, hygiene, water - static const IconData lightShowerDown = IconDataLight(0xe24d); + static const IconData lightShowerDown = IconData(0xe24d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shower-alt for icon [lightShowerDown] @Deprecated('Use "lightShowerDown" instead.') @@ -75242,7 +75242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shower-down?style=thin /// bath, drip, hygiene, water - static const IconData thinShowerDown = IconDataThin(0xe24d); + static const IconData thinShowerDown = IconData(0xe24d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shower-alt for icon [thinShowerDown] @Deprecated('Use "thinShowerDown" instead.') @@ -75252,55 +75252,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shredder?style=solid /// destroy, document, office, paper, print - static const IconData solidShredder = IconDataSolid(0xf68a); + static const IconData solidShredder = IconData(0xf68a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shredder icon /// /// https://fontawesome.com/icons/shredder?style=regular /// destroy, document, office, paper, print - static const IconData shredder = IconDataRegular(0xf68a); + static const IconData shredder = IconData(0xf68a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shredder icon /// /// https://fontawesome.com/icons/shredder?style=light /// destroy, document, office, paper, print - static const IconData lightShredder = IconDataLight(0xf68a); + static const IconData lightShredder = IconData(0xf68a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shredder icon /// /// https://fontawesome.com/icons/shredder?style=thin /// destroy, document, office, paper, print - static const IconData thinShredder = IconDataThin(0xf68a); + static const IconData thinShredder = IconData(0xf68a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shrimp icon /// /// https://fontawesome.com/icons/shrimp?style=solid /// allergy, crustacean, prawn, seafood, shellfish, shrimp, tail - static const IconData solidShrimp = IconDataSolid(0xe448); + static const IconData solidShrimp = IconData(0xe448, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shrimp icon /// /// https://fontawesome.com/icons/shrimp?style=regular /// allergy, crustacean, prawn, seafood, shellfish, shrimp, tail - static const IconData shrimp = IconDataRegular(0xe448); + static const IconData shrimp = IconData(0xe448, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shrimp icon /// /// https://fontawesome.com/icons/shrimp?style=light /// allergy, crustacean, prawn, seafood, shellfish, shrimp, tail - static const IconData lightShrimp = IconDataLight(0xe448); + static const IconData lightShrimp = IconData(0xe448, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shrimp icon /// /// https://fontawesome.com/icons/shrimp?style=thin /// allergy, crustacean, prawn, seafood, shellfish, shrimp, tail - static const IconData thinShrimp = IconDataThin(0xe448); + static const IconData thinShrimp = IconData(0xe448, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shuffle icon /// /// https://fontawesome.com/icons/shuffle?style=solid /// arrow, arrows, crossed, shuffle, shuffle tracks button, sort, swap, switch, transfer - static const IconData solidShuffle = IconDataSolid(0xf074); + static const IconData solidShuffle = IconData(0xf074, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias random for icon [solidShuffle] @Deprecated('Use "solidShuffle" instead.') @@ -75310,7 +75310,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuffle?style=regular /// arrow, arrows, crossed, shuffle, shuffle tracks button, sort, swap, switch, transfer - static const IconData shuffle = IconDataRegular(0xf074); + static const IconData shuffle = IconData(0xf074, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias random for icon [shuffle] @Deprecated('Use "shuffle" instead.') @@ -75320,7 +75320,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuffle?style=light /// arrow, arrows, crossed, shuffle, shuffle tracks button, sort, swap, switch, transfer - static const IconData lightShuffle = IconDataLight(0xf074); + static const IconData lightShuffle = IconData(0xf074, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias random for icon [lightShuffle] @Deprecated('Use "lightShuffle" instead.') @@ -75330,7 +75330,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuffle?style=thin /// arrow, arrows, crossed, shuffle, shuffle tracks button, sort, swap, switch, transfer - static const IconData thinShuffle = IconDataThin(0xf074); + static const IconData thinShuffle = IconData(0xf074, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias random for icon [thinShuffle] @Deprecated('Use "thinShuffle" instead.') @@ -75340,31 +75340,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shutters?style=solid /// damper, fire, shades, window - static const IconData solidShutters = IconDataSolid(0xe449); + static const IconData solidShutters = IconData(0xe449, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shutters icon /// /// https://fontawesome.com/icons/shutters?style=regular /// damper, fire, shades, window - static const IconData shutters = IconDataRegular(0xe449); + static const IconData shutters = IconData(0xe449, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shutters icon /// /// https://fontawesome.com/icons/shutters?style=light /// damper, fire, shades, window - static const IconData lightShutters = IconDataLight(0xe449); + static const IconData lightShutters = IconData(0xe449, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shutters icon /// /// https://fontawesome.com/icons/shutters?style=thin /// damper, fire, shades, window - static const IconData thinShutters = IconDataThin(0xe449); + static const IconData thinShutters = IconData(0xe449, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Shuttle Space icon /// /// https://fontawesome.com/icons/shuttle-space?style=solid /// astronaut, machine, nasa, rocket, space, transportation - static const IconData solidShuttleSpace = IconDataSolid(0xf197); + static const IconData solidShuttleSpace = IconData(0xf197, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias space-shuttle for icon [solidShuttleSpace] @Deprecated('Use "solidShuttleSpace" instead.') @@ -75374,7 +75374,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuttle-space?style=regular /// astronaut, machine, nasa, rocket, space, transportation - static const IconData shuttleSpace = IconDataRegular(0xf197); + static const IconData shuttleSpace = IconData(0xf197, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias space-shuttle for icon [shuttleSpace] @Deprecated('Use "shuttleSpace" instead.') @@ -75384,7 +75384,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuttle-space?style=light /// astronaut, machine, nasa, rocket, space, transportation - static const IconData lightShuttleSpace = IconDataLight(0xf197); + static const IconData lightShuttleSpace = IconData(0xf197, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias space-shuttle for icon [lightShuttleSpace] @Deprecated('Use "lightShuttleSpace" instead.') @@ -75394,7 +75394,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuttle-space?style=thin /// astronaut, machine, nasa, rocket, space, transportation - static const IconData thinShuttleSpace = IconDataThin(0xf197); + static const IconData thinShuttleSpace = IconData(0xf197, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias space-shuttle for icon [thinShuttleSpace] @Deprecated('Use "thinShuttleSpace" instead.') @@ -75404,127 +75404,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/shuttlecock?style=solid /// badminton, birdie, feather, sport - static const IconData solidShuttlecock = IconDataSolid(0xf45b); + static const IconData solidShuttlecock = IconData(0xf45b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Shuttlecock icon /// /// https://fontawesome.com/icons/shuttlecock?style=regular /// badminton, birdie, feather, sport - static const IconData shuttlecock = IconDataRegular(0xf45b); + static const IconData shuttlecock = IconData(0xf45b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Shuttlecock icon /// /// https://fontawesome.com/icons/shuttlecock?style=light /// badminton, birdie, feather, sport - static const IconData lightShuttlecock = IconDataLight(0xf45b); + static const IconData lightShuttlecock = IconData(0xf45b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Shuttlecock icon /// /// https://fontawesome.com/icons/shuttlecock?style=thin /// badminton, birdie, feather, sport - static const IconData thinShuttlecock = IconDataThin(0xf45b); + static const IconData thinShuttlecock = IconData(0xf45b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sickle icon /// /// https://fontawesome.com/icons/sickle?style=solid /// blade, d&d, dnd, dungeons & dragons, equipment, fantasy, weapon - static const IconData solidSickle = IconDataSolid(0xf822); + static const IconData solidSickle = IconData(0xf822, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sickle icon /// /// https://fontawesome.com/icons/sickle?style=regular /// blade, d&d, dnd, dungeons & dragons, equipment, fantasy, weapon - static const IconData sickle = IconDataRegular(0xf822); + static const IconData sickle = IconData(0xf822, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sickle icon /// /// https://fontawesome.com/icons/sickle?style=light /// blade, d&d, dnd, dungeons & dragons, equipment, fantasy, weapon - static const IconData lightSickle = IconDataLight(0xf822); + static const IconData lightSickle = IconData(0xf822, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sickle icon /// /// https://fontawesome.com/icons/sickle?style=thin /// blade, d&d, dnd, dungeons & dragons, equipment, fantasy, weapon - static const IconData thinSickle = IconDataThin(0xf822); + static const IconData thinSickle = IconData(0xf822, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sidebar icon /// /// https://fontawesome.com/icons/sidebar?style=solid /// browser, ui, window - static const IconData solidSidebar = IconDataSolid(0xe24e); + static const IconData solidSidebar = IconData(0xe24e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sidebar icon /// /// https://fontawesome.com/icons/sidebar?style=regular /// browser, ui, window - static const IconData sidebar = IconDataRegular(0xe24e); + static const IconData sidebar = IconData(0xe24e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sidebar icon /// /// https://fontawesome.com/icons/sidebar?style=light /// browser, ui, window - static const IconData lightSidebar = IconDataLight(0xe24e); + static const IconData lightSidebar = IconData(0xe24e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sidebar icon /// /// https://fontawesome.com/icons/sidebar?style=thin /// browser, ui, window - static const IconData thinSidebar = IconDataThin(0xe24e); + static const IconData thinSidebar = IconData(0xe24e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sidebar Flip icon /// /// https://fontawesome.com/icons/sidebar-flip?style=solid /// browser, ui, window - static const IconData solidSidebarFlip = IconDataSolid(0xe24f); + static const IconData solidSidebarFlip = IconData(0xe24f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sidebar Flip icon /// /// https://fontawesome.com/icons/sidebar-flip?style=regular /// browser, ui, window - static const IconData sidebarFlip = IconDataRegular(0xe24f); + static const IconData sidebarFlip = IconData(0xe24f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sidebar Flip icon /// /// https://fontawesome.com/icons/sidebar-flip?style=light /// browser, ui, window - static const IconData lightSidebarFlip = IconDataLight(0xe24f); + static const IconData lightSidebarFlip = IconData(0xe24f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sidebar Flip icon /// /// https://fontawesome.com/icons/sidebar-flip?style=thin /// browser, ui, window - static const IconData thinSidebarFlip = IconDataThin(0xe24f); + static const IconData thinSidebarFlip = IconData(0xe24f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sigma icon /// /// https://fontawesome.com/icons/sigma?style=solid /// N-Ary Summation, alphabet, greek, math, summation - static const IconData solidSigma = IconDataSolid(0xf68b); + static const IconData solidSigma = IconData(0xf68b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sigma icon /// /// https://fontawesome.com/icons/sigma?style=regular /// N-Ary Summation, alphabet, greek, math, summation - static const IconData sigma = IconDataRegular(0xf68b); + static const IconData sigma = IconData(0xf68b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sigma icon /// /// https://fontawesome.com/icons/sigma?style=light /// N-Ary Summation, alphabet, greek, math, summation - static const IconData lightSigma = IconDataLight(0xf68b); + static const IconData lightSigma = IconData(0xf68b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sigma icon /// /// https://fontawesome.com/icons/sigma?style=thin /// N-Ary Summation, alphabet, greek, math, summation - static const IconData thinSigma = IconDataThin(0xf68b); + static const IconData thinSigma = IconData(0xf68b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sign Hanging icon /// /// https://fontawesome.com/icons/sign-hanging?style=solid /// directions, real estate, signage, wayfinding - static const IconData solidSignHanging = IconDataSolid(0xf4d9); + static const IconData solidSignHanging = IconData(0xf4d9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sign for icon [solidSignHanging] @Deprecated('Use "solidSignHanging" instead.') @@ -75534,7 +75534,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sign-hanging?style=regular /// directions, real estate, signage, wayfinding - static const IconData signHanging = IconDataRegular(0xf4d9); + static const IconData signHanging = IconData(0xf4d9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sign for icon [signHanging] @Deprecated('Use "signHanging" instead.') @@ -75544,7 +75544,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sign-hanging?style=light /// directions, real estate, signage, wayfinding - static const IconData lightSignHanging = IconDataLight(0xf4d9); + static const IconData lightSignHanging = IconData(0xf4d9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sign for icon [lightSignHanging] @Deprecated('Use "lightSignHanging" instead.') @@ -75554,7 +75554,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sign-hanging?style=thin /// directions, real estate, signage, wayfinding - static const IconData thinSignHanging = IconDataThin(0xf4d9); + static const IconData thinSignHanging = IconData(0xf4d9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sign for icon [thinSignHanging] @Deprecated('Use "thinSignHanging" instead.') @@ -75564,79 +75564,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sign-post?style=solid /// directory, map, signage, wayfinding, directions - static const IconData solidSignPost = IconDataSolid(0xe624); + static const IconData solidSignPost = IconData(0xe624, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sign Post icon /// /// https://fontawesome.com/icons/sign-post?style=regular /// directory, map, signage, wayfinding, directions - static const IconData signPost = IconDataRegular(0xe624); + static const IconData signPost = IconData(0xe624, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sign Post icon /// /// https://fontawesome.com/icons/sign-post?style=light /// directory, map, signage, wayfinding, directions - static const IconData lightSignPost = IconDataLight(0xe624); + static const IconData lightSignPost = IconData(0xe624, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sign Post icon /// /// https://fontawesome.com/icons/sign-post?style=thin /// directory, map, signage, wayfinding, directions - static const IconData thinSignPost = IconDataThin(0xe624); + static const IconData thinSignPost = IconData(0xe624, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sign Posts icon /// /// https://fontawesome.com/icons/sign-posts?style=solid /// directory, map, signage, wayfinding, directions - static const IconData solidSignPosts = IconDataSolid(0xe625); + static const IconData solidSignPosts = IconData(0xe625, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sign Posts icon /// /// https://fontawesome.com/icons/sign-posts?style=regular /// directory, map, signage, wayfinding, directions - static const IconData signPosts = IconDataRegular(0xe625); + static const IconData signPosts = IconData(0xe625, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sign Posts icon /// /// https://fontawesome.com/icons/sign-posts?style=light /// directory, map, signage, wayfinding, directions - static const IconData lightSignPosts = IconDataLight(0xe625); + static const IconData lightSignPosts = IconData(0xe625, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sign Posts icon /// /// https://fontawesome.com/icons/sign-posts?style=thin /// directory, map, signage, wayfinding, directions - static const IconData thinSignPosts = IconDataThin(0xe625); + static const IconData thinSignPosts = IconData(0xe625, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sign Posts Wrench icon /// /// https://fontawesome.com/icons/sign-posts-wrench?style=solid /// directory, map, signage, wayfinding, directions, install, permit - static const IconData solidSignPostsWrench = IconDataSolid(0xe626); + static const IconData solidSignPostsWrench = IconData(0xe626, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sign Posts Wrench icon /// /// https://fontawesome.com/icons/sign-posts-wrench?style=regular /// directory, map, signage, wayfinding, directions, install, permit - static const IconData signPostsWrench = IconDataRegular(0xe626); + static const IconData signPostsWrench = IconData(0xe626, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sign Posts Wrench icon /// /// https://fontawesome.com/icons/sign-posts-wrench?style=light /// directory, map, signage, wayfinding, directions, install, permit - static const IconData lightSignPostsWrench = IconDataLight(0xe626); + static const IconData lightSignPostsWrench = IconData(0xe626, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sign Posts Wrench icon /// /// https://fontawesome.com/icons/sign-posts-wrench?style=thin /// directory, map, signage, wayfinding, directions, install, permit - static const IconData thinSignPostsWrench = IconDataThin(0xe626); + static const IconData thinSignPostsWrench = IconData(0xe626, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signal icon /// /// https://fontawesome.com/icons/signal?style=solid /// antenna, antenna bars, bar, bars, cell, graph, mobile, online, phone, reception, status - static const IconData solidSignal = IconDataSolid(0xf012); + static const IconData solidSignal = IconData(0xf012, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-5 for icon [solidSignal] @Deprecated('Use "solidSignal" instead.') @@ -75650,7 +75650,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal?style=regular /// antenna, antenna bars, bar, bars, cell, graph, mobile, online, phone, reception, status - static const IconData signal = IconDataRegular(0xf012); + static const IconData signal = IconData(0xf012, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-5 for icon [signal] @Deprecated('Use "signal" instead.') @@ -75664,7 +75664,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal?style=light /// antenna, antenna bars, bar, bars, cell, graph, mobile, online, phone, reception, status - static const IconData lightSignal = IconDataLight(0xf012); + static const IconData lightSignal = IconData(0xf012, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-5 for icon [lightSignal] @Deprecated('Use "lightSignal" instead.') @@ -75678,7 +75678,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal?style=thin /// antenna, antenna bars, bar, bars, cell, graph, mobile, online, phone, reception, status - static const IconData thinSignal = IconDataThin(0xf012); + static const IconData thinSignal = IconData(0xf012, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-5 for icon [thinSignal] @Deprecated('Use "thinSignal" instead.') @@ -75692,7 +75692,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalBars = IconDataSolid(0xf690); + static const IconData solidSignalBars = IconData(0xf690, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt for icon [solidSignalBars] @Deprecated('Use "solidSignalBars" instead.') @@ -75710,7 +75710,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars?style=regular /// bars, graph, online, reception, status - static const IconData signalBars = IconDataRegular(0xf690); + static const IconData signalBars = IconData(0xf690, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt for icon [signalBars] @Deprecated('Use "signalBars" instead.') @@ -75728,7 +75728,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars?style=light /// bars, graph, online, reception, status - static const IconData lightSignalBars = IconDataLight(0xf690); + static const IconData lightSignalBars = IconData(0xf690, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt for icon [lightSignalBars] @Deprecated('Use "lightSignalBars" instead.') @@ -75746,7 +75746,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalBars = IconDataThin(0xf690); + static const IconData thinSignalBars = IconData(0xf690, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt for icon [thinSignalBars] @Deprecated('Use "thinSignalBars" instead.') @@ -75764,7 +75764,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-fair?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalBarsFair = IconDataSolid(0xf692); + static const IconData solidSignalBarsFair = IconData(0xf692, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-2 for icon [solidSignalBarsFair] @Deprecated('Use "solidSignalBarsFair" instead.') @@ -75774,7 +75774,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-fair?style=regular /// bars, graph, online, reception, status - static const IconData signalBarsFair = IconDataRegular(0xf692); + static const IconData signalBarsFair = IconData(0xf692, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-2 for icon [signalBarsFair] @Deprecated('Use "signalBarsFair" instead.') @@ -75784,7 +75784,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-fair?style=light /// bars, graph, online, reception, status - static const IconData lightSignalBarsFair = IconDataLight(0xf692); + static const IconData lightSignalBarsFair = IconData(0xf692, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-2 for icon [lightSignalBarsFair] @Deprecated('Use "lightSignalBarsFair" instead.') @@ -75794,7 +75794,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-fair?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalBarsFair = IconDataThin(0xf692); + static const IconData thinSignalBarsFair = IconData(0xf692, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-2 for icon [thinSignalBarsFair] @Deprecated('Use "thinSignalBarsFair" instead.') @@ -75804,7 +75804,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-good?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalBarsGood = IconDataSolid(0xf693); + static const IconData solidSignalBarsGood = IconData(0xf693, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-3 for icon [solidSignalBarsGood] @Deprecated('Use "solidSignalBarsGood" instead.') @@ -75814,7 +75814,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-good?style=regular /// bars, graph, online, reception, status - static const IconData signalBarsGood = IconDataRegular(0xf693); + static const IconData signalBarsGood = IconData(0xf693, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-3 for icon [signalBarsGood] @Deprecated('Use "signalBarsGood" instead.') @@ -75824,7 +75824,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-good?style=light /// bars, graph, online, reception, status - static const IconData lightSignalBarsGood = IconDataLight(0xf693); + static const IconData lightSignalBarsGood = IconData(0xf693, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-3 for icon [lightSignalBarsGood] @Deprecated('Use "lightSignalBarsGood" instead.') @@ -75834,7 +75834,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-good?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalBarsGood = IconDataThin(0xf693); + static const IconData thinSignalBarsGood = IconData(0xf693, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-3 for icon [thinSignalBarsGood] @Deprecated('Use "thinSignalBarsGood" instead.') @@ -75844,7 +75844,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-slash?style=solid /// bars, disabled, disconnect, graph, online, reception, status - static const IconData solidSignalBarsSlash = IconDataSolid(0xf694); + static const IconData solidSignalBarsSlash = IconData(0xf694, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-slash for icon [solidSignalBarsSlash] @Deprecated('Use "solidSignalBarsSlash" instead.') @@ -75854,7 +75854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-slash?style=regular /// bars, disabled, disconnect, graph, online, reception, status - static const IconData signalBarsSlash = IconDataRegular(0xf694); + static const IconData signalBarsSlash = IconData(0xf694, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-slash for icon [signalBarsSlash] @Deprecated('Use "signalBarsSlash" instead.') @@ -75864,7 +75864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-slash?style=light /// bars, disabled, disconnect, graph, online, reception, status - static const IconData lightSignalBarsSlash = IconDataLight(0xf694); + static const IconData lightSignalBarsSlash = IconData(0xf694, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-slash for icon [lightSignalBarsSlash] @Deprecated('Use "lightSignalBarsSlash" instead.') @@ -75874,7 +75874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-slash?style=thin /// bars, disabled, disconnect, graph, online, reception, status - static const IconData thinSignalBarsSlash = IconDataThin(0xf694); + static const IconData thinSignalBarsSlash = IconData(0xf694, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-slash for icon [thinSignalBarsSlash] @Deprecated('Use "thinSignalBarsSlash" instead.') @@ -75884,7 +75884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-weak?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalBarsWeak = IconDataSolid(0xf691); + static const IconData solidSignalBarsWeak = IconData(0xf691, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-1 for icon [solidSignalBarsWeak] @Deprecated('Use "solidSignalBarsWeak" instead.') @@ -75894,7 +75894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-weak?style=regular /// bars, graph, online, reception, status - static const IconData signalBarsWeak = IconDataRegular(0xf691); + static const IconData signalBarsWeak = IconData(0xf691, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-1 for icon [signalBarsWeak] @Deprecated('Use "signalBarsWeak" instead.') @@ -75904,7 +75904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-weak?style=light /// bars, graph, online, reception, status - static const IconData lightSignalBarsWeak = IconDataLight(0xf691); + static const IconData lightSignalBarsWeak = IconData(0xf691, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-1 for icon [lightSignalBarsWeak] @Deprecated('Use "lightSignalBarsWeak" instead.') @@ -75914,7 +75914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-bars-weak?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalBarsWeak = IconDataThin(0xf691); + static const IconData thinSignalBarsWeak = IconData(0xf691, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-alt-1 for icon [thinSignalBarsWeak] @Deprecated('Use "thinSignalBarsWeak" instead.') @@ -75924,7 +75924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-fair?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalFair = IconDataSolid(0xf68d); + static const IconData solidSignalFair = IconData(0xf68d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-2 for icon [solidSignalFair] @Deprecated('Use "solidSignalFair" instead.') @@ -75934,7 +75934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-fair?style=regular /// bars, graph, online, reception, status - static const IconData signalFair = IconDataRegular(0xf68d); + static const IconData signalFair = IconData(0xf68d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-2 for icon [signalFair] @Deprecated('Use "signalFair" instead.') @@ -75944,7 +75944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-fair?style=light /// bars, graph, online, reception, status - static const IconData lightSignalFair = IconDataLight(0xf68d); + static const IconData lightSignalFair = IconData(0xf68d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-2 for icon [lightSignalFair] @Deprecated('Use "lightSignalFair" instead.') @@ -75954,7 +75954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-fair?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalFair = IconDataThin(0xf68d); + static const IconData thinSignalFair = IconData(0xf68d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-2 for icon [thinSignalFair] @Deprecated('Use "thinSignalFair" instead.') @@ -75964,7 +75964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-good?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalGood = IconDataSolid(0xf68e); + static const IconData solidSignalGood = IconData(0xf68e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-3 for icon [solidSignalGood] @Deprecated('Use "solidSignalGood" instead.') @@ -75974,7 +75974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-good?style=regular /// bars, graph, online, reception, status - static const IconData signalGood = IconDataRegular(0xf68e); + static const IconData signalGood = IconData(0xf68e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-3 for icon [signalGood] @Deprecated('Use "signalGood" instead.') @@ -75984,7 +75984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-good?style=light /// bars, graph, online, reception, status - static const IconData lightSignalGood = IconDataLight(0xf68e); + static const IconData lightSignalGood = IconData(0xf68e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-3 for icon [lightSignalGood] @Deprecated('Use "lightSignalGood" instead.') @@ -75994,7 +75994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-good?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalGood = IconDataThin(0xf68e); + static const IconData thinSignalGood = IconData(0xf68e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-3 for icon [thinSignalGood] @Deprecated('Use "thinSignalGood" instead.') @@ -76003,85 +76003,85 @@ class FontAwesomeIcons { /// Brands Signal Messenger icon /// /// https://fontawesome.com/icons/signal-messenger?style=brands - static const IconData signalMessenger = IconDataBrands(0xe663); + static const IconData signalMessenger = IconData(0xe663, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Signal Slash icon /// /// https://fontawesome.com/icons/signal-slash?style=solid /// bars, disabled, disconnect, graph, online, reception, status - static const IconData solidSignalSlash = IconDataSolid(0xf695); + static const IconData solidSignalSlash = IconData(0xf695, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signal Slash icon /// /// https://fontawesome.com/icons/signal-slash?style=regular /// bars, disabled, disconnect, graph, online, reception, status - static const IconData signalSlash = IconDataRegular(0xf695); + static const IconData signalSlash = IconData(0xf695, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signal Slash icon /// /// https://fontawesome.com/icons/signal-slash?style=light /// bars, disabled, disconnect, graph, online, reception, status - static const IconData lightSignalSlash = IconDataLight(0xf695); + static const IconData lightSignalSlash = IconData(0xf695, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signal Slash icon /// /// https://fontawesome.com/icons/signal-slash?style=thin /// bars, disabled, disconnect, graph, online, reception, status - static const IconData thinSignalSlash = IconDataThin(0xf695); + static const IconData thinSignalSlash = IconData(0xf695, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signal Stream icon /// /// https://fontawesome.com/icons/signal-stream?style=solid /// podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData solidSignalStream = IconDataSolid(0xf8dd); + static const IconData solidSignalStream = IconData(0xf8dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signal Stream icon /// /// https://fontawesome.com/icons/signal-stream?style=regular /// podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData signalStream = IconDataRegular(0xf8dd); + static const IconData signalStream = IconData(0xf8dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signal Stream icon /// /// https://fontawesome.com/icons/signal-stream?style=light /// podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData lightSignalStream = IconDataLight(0xf8dd); + static const IconData lightSignalStream = IconData(0xf8dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signal Stream icon /// /// https://fontawesome.com/icons/signal-stream?style=thin /// podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData thinSignalStream = IconDataThin(0xf8dd); + static const IconData thinSignalStream = IconData(0xf8dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signal Stream Slash icon /// /// https://fontawesome.com/icons/signal-stream-slash?style=solid /// disabled, disconnect, podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData solidSignalStreamSlash = IconDataSolid(0xe250); + static const IconData solidSignalStreamSlash = IconData(0xe250, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signal Stream Slash icon /// /// https://fontawesome.com/icons/signal-stream-slash?style=regular /// disabled, disconnect, podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData signalStreamSlash = IconDataRegular(0xe250); + static const IconData signalStreamSlash = IconData(0xe250, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signal Stream Slash icon /// /// https://fontawesome.com/icons/signal-stream-slash?style=light /// disabled, disconnect, podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData lightSignalStreamSlash = IconDataLight(0xe250); + static const IconData lightSignalStreamSlash = IconData(0xe250, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signal Stream Slash icon /// /// https://fontawesome.com/icons/signal-stream-slash?style=thin /// disabled, disconnect, podcast, radio, sisngal, streaming, wave, wifi, wireless, www - static const IconData thinSignalStreamSlash = IconDataThin(0xe250); + static const IconData thinSignalStreamSlash = IconData(0xe250, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signal Strong icon /// /// https://fontawesome.com/icons/signal-strong?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalStrong = IconDataSolid(0xf68f); + static const IconData solidSignalStrong = IconData(0xf68f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-4 for icon [solidSignalStrong] @Deprecated('Use "solidSignalStrong" instead.') @@ -76091,7 +76091,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-strong?style=regular /// bars, graph, online, reception, status - static const IconData signalStrong = IconDataRegular(0xf68f); + static const IconData signalStrong = IconData(0xf68f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-4 for icon [signalStrong] @Deprecated('Use "signalStrong" instead.') @@ -76101,7 +76101,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-strong?style=light /// bars, graph, online, reception, status - static const IconData lightSignalStrong = IconDataLight(0xf68f); + static const IconData lightSignalStrong = IconData(0xf68f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-4 for icon [lightSignalStrong] @Deprecated('Use "lightSignalStrong" instead.') @@ -76111,7 +76111,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-strong?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalStrong = IconDataThin(0xf68f); + static const IconData thinSignalStrong = IconData(0xf68f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-4 for icon [thinSignalStrong] @Deprecated('Use "thinSignalStrong" instead.') @@ -76121,7 +76121,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-weak?style=solid /// bars, graph, online, reception, status - static const IconData solidSignalWeak = IconDataSolid(0xf68c); + static const IconData solidSignalWeak = IconData(0xf68c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias signal-1 for icon [solidSignalWeak] @Deprecated('Use "solidSignalWeak" instead.') @@ -76131,7 +76131,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-weak?style=regular /// bars, graph, online, reception, status - static const IconData signalWeak = IconDataRegular(0xf68c); + static const IconData signalWeak = IconData(0xf68c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias signal-1 for icon [signalWeak] @Deprecated('Use "signalWeak" instead.') @@ -76141,7 +76141,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-weak?style=light /// bars, graph, online, reception, status - static const IconData lightSignalWeak = IconDataLight(0xf68c); + static const IconData lightSignalWeak = IconData(0xf68c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias signal-1 for icon [lightSignalWeak] @Deprecated('Use "lightSignalWeak" instead.') @@ -76151,7 +76151,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signal-weak?style=thin /// bars, graph, online, reception, status - static const IconData thinSignalWeak = IconDataThin(0xf68c); + static const IconData thinSignalWeak = IconData(0xf68c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias signal-1 for icon [thinSignalWeak] @Deprecated('Use "thinSignalWeak" instead.') @@ -76161,79 +76161,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signature?style=solid /// John Hancock, cursive, name, username, writing - static const IconData solidSignature = IconDataSolid(0xf5b7); + static const IconData solidSignature = IconData(0xf5b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signature icon /// /// https://fontawesome.com/icons/signature?style=regular /// John Hancock, cursive, name, username, writing - static const IconData signature = IconDataRegular(0xf5b7); + static const IconData signature = IconData(0xf5b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signature icon /// /// https://fontawesome.com/icons/signature?style=light /// John Hancock, cursive, name, username, writing - static const IconData lightSignature = IconDataLight(0xf5b7); + static const IconData lightSignature = IconData(0xf5b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signature icon /// /// https://fontawesome.com/icons/signature?style=thin /// John Hancock, cursive, name, username, writing - static const IconData thinSignature = IconDataThin(0xf5b7); + static const IconData thinSignature = IconData(0xf5b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signature Lock icon /// /// https://fontawesome.com/icons/signature-lock?style=solid /// key signature, lock, padlock, privacy, private, signature, username, verified - static const IconData solidSignatureLock = IconDataSolid(0xe3ca); + static const IconData solidSignatureLock = IconData(0xe3ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signature Lock icon /// /// https://fontawesome.com/icons/signature-lock?style=regular /// key signature, lock, padlock, privacy, private, signature, username, verified - static const IconData signatureLock = IconDataRegular(0xe3ca); + static const IconData signatureLock = IconData(0xe3ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signature Lock icon /// /// https://fontawesome.com/icons/signature-lock?style=light /// key signature, lock, padlock, privacy, private, signature, username, verified - static const IconData lightSignatureLock = IconDataLight(0xe3ca); + static const IconData lightSignatureLock = IconData(0xe3ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signature Lock icon /// /// https://fontawesome.com/icons/signature-lock?style=thin /// key signature, lock, padlock, privacy, private, signature, username, verified - static const IconData thinSignatureLock = IconDataThin(0xe3ca); + static const IconData thinSignatureLock = IconData(0xe3ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signature Slash icon /// /// https://fontawesome.com/icons/signature-slash?style=solid /// disabled, signature, unverified, username - static const IconData solidSignatureSlash = IconDataSolid(0xe3cb); + static const IconData solidSignatureSlash = IconData(0xe3cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Signature Slash icon /// /// https://fontawesome.com/icons/signature-slash?style=regular /// disabled, signature, unverified, username - static const IconData signatureSlash = IconDataRegular(0xe3cb); + static const IconData signatureSlash = IconData(0xe3cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Signature Slash icon /// /// https://fontawesome.com/icons/signature-slash?style=light /// disabled, signature, unverified, username - static const IconData lightSignatureSlash = IconDataLight(0xe3cb); + static const IconData lightSignatureSlash = IconData(0xe3cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Signature Slash icon /// /// https://fontawesome.com/icons/signature-slash?style=thin /// disabled, signature, unverified, username - static const IconData thinSignatureSlash = IconDataThin(0xe3cb); + static const IconData thinSignatureSlash = IconData(0xe3cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Signs Post icon /// /// https://fontawesome.com/icons/signs-post?style=solid /// directions, directory, map, signage, wayfinding - static const IconData solidSignsPost = IconDataSolid(0xf277); + static const IconData solidSignsPost = IconData(0xf277, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias map-signs for icon [solidSignsPost] @Deprecated('Use "solidSignsPost" instead.') @@ -76243,7 +76243,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signs-post?style=regular /// directions, directory, map, signage, wayfinding - static const IconData signsPost = IconDataRegular(0xf277); + static const IconData signsPost = IconData(0xf277, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias map-signs for icon [signsPost] @Deprecated('Use "signsPost" instead.') @@ -76253,7 +76253,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signs-post?style=light /// directions, directory, map, signage, wayfinding - static const IconData lightSignsPost = IconDataLight(0xf277); + static const IconData lightSignsPost = IconData(0xf277, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias map-signs for icon [lightSignsPost] @Deprecated('Use "lightSignsPost" instead.') @@ -76263,7 +76263,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/signs-post?style=thin /// directions, directory, map, signage, wayfinding - static const IconData thinSignsPost = IconDataThin(0xf277); + static const IconData thinSignsPost = IconData(0xf277, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias map-signs for icon [thinSignsPost] @Deprecated('Use "thinSignsPost" instead.') @@ -76273,355 +76273,355 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sim-card?style=solid /// hard drive, hardware, portable, storage, technology, tiny - static const IconData solidSimCard = IconDataSolid(0xf7c4); + static const IconData solidSimCard = IconData(0xf7c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sim Card icon /// /// https://fontawesome.com/icons/sim-card?style=regular /// hard drive, hardware, portable, storage, technology, tiny - static const IconData simCard = IconDataRegular(0xf7c4); + static const IconData simCard = IconData(0xf7c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sim Card icon /// /// https://fontawesome.com/icons/sim-card?style=light /// hard drive, hardware, portable, storage, technology, tiny - static const IconData lightSimCard = IconDataLight(0xf7c4); + static const IconData lightSimCard = IconData(0xf7c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sim Card icon /// /// https://fontawesome.com/icons/sim-card?style=thin /// hard drive, hardware, portable, storage, technology, tiny - static const IconData thinSimCard = IconDataThin(0xf7c4); + static const IconData thinSimCard = IconData(0xf7c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sim Cards icon /// /// https://fontawesome.com/icons/sim-cards?style=solid /// contacts, memory, storage - static const IconData solidSimCards = IconDataSolid(0xe251); + static const IconData solidSimCards = IconData(0xe251, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sim Cards icon /// /// https://fontawesome.com/icons/sim-cards?style=regular /// contacts, memory, storage - static const IconData simCards = IconDataRegular(0xe251); + static const IconData simCards = IconData(0xe251, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sim Cards icon /// /// https://fontawesome.com/icons/sim-cards?style=light /// contacts, memory, storage - static const IconData lightSimCards = IconDataLight(0xe251); + static const IconData lightSimCards = IconData(0xe251, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sim Cards icon /// /// https://fontawesome.com/icons/sim-cards?style=thin /// contacts, memory, storage - static const IconData thinSimCards = IconDataThin(0xe251); + static const IconData thinSimCards = IconData(0xe251, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands SimplyBuilt icon /// /// https://fontawesome.com/icons/simplybuilt?style=brands - static const IconData simplybuilt = IconDataBrands(0xf215); + static const IconData simplybuilt = IconData(0xf215, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Sink icon /// /// https://fontawesome.com/icons/sink?style=solid /// bathroom, covid-19, faucet, kitchen, wash - static const IconData solidSink = IconDataSolid(0xe06d); + static const IconData solidSink = IconData(0xe06d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sink icon /// /// https://fontawesome.com/icons/sink?style=regular /// bathroom, covid-19, faucet, kitchen, wash - static const IconData sink = IconDataRegular(0xe06d); + static const IconData sink = IconData(0xe06d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sink icon /// /// https://fontawesome.com/icons/sink?style=light /// bathroom, covid-19, faucet, kitchen, wash - static const IconData lightSink = IconDataLight(0xe06d); + static const IconData lightSink = IconData(0xe06d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sink icon /// /// https://fontawesome.com/icons/sink?style=thin /// bathroom, covid-19, faucet, kitchen, wash - static const IconData thinSink = IconDataThin(0xe06d); + static const IconData thinSink = IconData(0xe06d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Siren icon /// /// https://fontawesome.com/icons/siren?style=solid /// alarm, alert, ambulance, loud, police, warning - static const IconData solidSiren = IconDataSolid(0xe02d); + static const IconData solidSiren = IconData(0xe02d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Siren icon /// /// https://fontawesome.com/icons/siren?style=regular /// alarm, alert, ambulance, loud, police, warning - static const IconData siren = IconDataRegular(0xe02d); + static const IconData siren = IconData(0xe02d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Siren icon /// /// https://fontawesome.com/icons/siren?style=light /// alarm, alert, ambulance, loud, police, warning - static const IconData lightSiren = IconDataLight(0xe02d); + static const IconData lightSiren = IconData(0xe02d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Siren icon /// /// https://fontawesome.com/icons/siren?style=thin /// alarm, alert, ambulance, loud, police, warning - static const IconData thinSiren = IconDataThin(0xe02d); + static const IconData thinSiren = IconData(0xe02d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Siren On icon /// /// https://fontawesome.com/icons/siren-on?style=solid /// alarm, alert, ambulance, loud, police, warning - static const IconData solidSirenOn = IconDataSolid(0xe02e); + static const IconData solidSirenOn = IconData(0xe02e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Siren On icon /// /// https://fontawesome.com/icons/siren-on?style=regular /// alarm, alert, ambulance, loud, police, warning - static const IconData sirenOn = IconDataRegular(0xe02e); + static const IconData sirenOn = IconData(0xe02e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Siren On icon /// /// https://fontawesome.com/icons/siren-on?style=light /// alarm, alert, ambulance, loud, police, warning - static const IconData lightSirenOn = IconDataLight(0xe02e); + static const IconData lightSirenOn = IconData(0xe02e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Siren On icon /// /// https://fontawesome.com/icons/siren-on?style=thin /// alarm, alert, ambulance, loud, police, warning - static const IconData thinSirenOn = IconDataThin(0xe02e); + static const IconData thinSirenOn = IconData(0xe02e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands SISTRIX icon /// /// https://fontawesome.com/icons/sistrix?style=brands - static const IconData sistrix = IconDataBrands(0xf3ee); + static const IconData sistrix = IconData(0xf3ee, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Sitemap icon /// /// https://fontawesome.com/icons/sitemap?style=solid /// directory, hierarchy, ia, information architecture, organization - static const IconData solidSitemap = IconDataSolid(0xf0e8); + static const IconData solidSitemap = IconData(0xf0e8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sitemap icon /// /// https://fontawesome.com/icons/sitemap?style=regular /// directory, hierarchy, ia, information architecture, organization - static const IconData sitemap = IconDataRegular(0xf0e8); + static const IconData sitemap = IconData(0xf0e8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sitemap icon /// /// https://fontawesome.com/icons/sitemap?style=light /// directory, hierarchy, ia, information architecture, organization - static const IconData lightSitemap = IconDataLight(0xf0e8); + static const IconData lightSitemap = IconData(0xf0e8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sitemap icon /// /// https://fontawesome.com/icons/sitemap?style=thin /// directory, hierarchy, ia, information architecture, organization - static const IconData thinSitemap = IconDataThin(0xf0e8); + static const IconData thinSitemap = IconData(0xf0e8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Sith icon /// /// https://fontawesome.com/icons/sith?style=brands - static const IconData sith = IconDataBrands(0xf512); + static const IconData sith = IconData(0xf512, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Sitrox icon /// /// https://fontawesome.com/icons/sitrox?style=brands - static const IconData sitrox = IconDataBrands(0xe44a); + static const IconData sitrox = IconData(0xe44a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Skeleton icon /// /// https://fontawesome.com/icons/skeleton?style=solid /// bones, skeletal, vertebrate, x-ray - static const IconData solidSkeleton = IconDataSolid(0xf620); + static const IconData solidSkeleton = IconData(0xf620, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Skeleton icon /// /// https://fontawesome.com/icons/skeleton?style=regular /// bones, skeletal, vertebrate, x-ray - static const IconData skeleton = IconDataRegular(0xf620); + static const IconData skeleton = IconData(0xf620, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Skeleton icon /// /// https://fontawesome.com/icons/skeleton?style=light /// bones, skeletal, vertebrate, x-ray - static const IconData lightSkeleton = IconDataLight(0xf620); + static const IconData lightSkeleton = IconData(0xf620, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Skeleton icon /// /// https://fontawesome.com/icons/skeleton?style=thin /// bones, skeletal, vertebrate, x-ray - static const IconData thinSkeleton = IconDataThin(0xf620); + static const IconData thinSkeleton = IconData(0xf620, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Skeleton Ribs icon /// /// https://fontawesome.com/icons/skeleton-ribs?style=solid /// arms, body, bone, ribs, shoulder, skeleton, vertebrae, x-ray - static const IconData solidSkeletonRibs = IconDataSolid(0xe5cb); + static const IconData solidSkeletonRibs = IconData(0xe5cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Skeleton Ribs icon /// /// https://fontawesome.com/icons/skeleton-ribs?style=regular /// arms, body, bone, ribs, shoulder, skeleton, vertebrae, x-ray - static const IconData skeletonRibs = IconDataRegular(0xe5cb); + static const IconData skeletonRibs = IconData(0xe5cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Skeleton Ribs icon /// /// https://fontawesome.com/icons/skeleton-ribs?style=light /// arms, body, bone, ribs, shoulder, skeleton, vertebrae, x-ray - static const IconData lightSkeletonRibs = IconDataLight(0xe5cb); + static const IconData lightSkeletonRibs = IconData(0xe5cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Skeleton Ribs icon /// /// https://fontawesome.com/icons/skeleton-ribs?style=thin /// arms, body, bone, ribs, shoulder, skeleton, vertebrae, x-ray - static const IconData thinSkeletonRibs = IconDataThin(0xe5cb); + static const IconData thinSkeletonRibs = IconData(0xe5cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Sketch icon /// /// https://fontawesome.com/icons/sketch?style=brands /// app, design, interface - static const IconData sketch = IconDataBrands(0xf7c6); + static const IconData sketch = IconData(0xf7c6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ski Boot icon /// /// https://fontawesome.com/icons/ski-boot?style=solid /// boot, ski, snow, winter - static const IconData solidSkiBoot = IconDataSolid(0xe3cc); + static const IconData solidSkiBoot = IconData(0xe3cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ski Boot icon /// /// https://fontawesome.com/icons/ski-boot?style=regular /// boot, ski, snow, winter - static const IconData skiBoot = IconDataRegular(0xe3cc); + static const IconData skiBoot = IconData(0xe3cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ski Boot icon /// /// https://fontawesome.com/icons/ski-boot?style=light /// boot, ski, snow, winter - static const IconData lightSkiBoot = IconDataLight(0xe3cc); + static const IconData lightSkiBoot = IconData(0xe3cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ski Boot icon /// /// https://fontawesome.com/icons/ski-boot?style=thin /// boot, ski, snow, winter - static const IconData thinSkiBoot = IconDataThin(0xe3cc); + static const IconData thinSkiBoot = IconData(0xe3cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ski Boot Ski icon /// /// https://fontawesome.com/icons/ski-boot-ski?style=solid /// boot, ski, skis, snow, winter - static const IconData solidSkiBootSki = IconDataSolid(0xe3cd); + static const IconData solidSkiBootSki = IconData(0xe3cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ski Boot Ski icon /// /// https://fontawesome.com/icons/ski-boot-ski?style=regular /// boot, ski, skis, snow, winter - static const IconData skiBootSki = IconDataRegular(0xe3cd); + static const IconData skiBootSki = IconData(0xe3cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ski Boot Ski icon /// /// https://fontawesome.com/icons/ski-boot-ski?style=light /// boot, ski, skis, snow, winter - static const IconData lightSkiBootSki = IconDataLight(0xe3cd); + static const IconData lightSkiBootSki = IconData(0xe3cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ski Boot Ski icon /// /// https://fontawesome.com/icons/ski-boot-ski?style=thin /// boot, ski, skis, snow, winter - static const IconData thinSkiBootSki = IconDataThin(0xe3cd); + static const IconData thinSkiBootSki = IconData(0xe3cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Skull icon /// /// https://fontawesome.com/icons/skull?style=solid /// bones, death, face, fairy tale, monster, skeleton, skull, uer, x-ray, yorick - static const IconData solidSkull = IconDataSolid(0xf54c); + static const IconData solidSkull = IconData(0xf54c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Skull icon /// /// https://fontawesome.com/icons/skull?style=regular /// bones, death, face, fairy tale, monster, skeleton, skull, uer, x-ray, yorick - static const IconData skull = IconDataRegular(0xf54c); + static const IconData skull = IconData(0xf54c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Skull icon /// /// https://fontawesome.com/icons/skull?style=light /// bones, death, face, fairy tale, monster, skeleton, skull, uer, x-ray, yorick - static const IconData lightSkull = IconDataLight(0xf54c); + static const IconData lightSkull = IconData(0xf54c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Skull icon /// /// https://fontawesome.com/icons/skull?style=thin /// bones, death, face, fairy tale, monster, skeleton, skull, uer, x-ray, yorick - static const IconData thinSkull = IconDataThin(0xf54c); + static const IconData thinSkull = IconData(0xf54c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Skull Cow icon /// /// https://fontawesome.com/icons/skull-cow?style=solid /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData solidSkullCow = IconDataSolid(0xf8de); + static const IconData solidSkullCow = IconData(0xf8de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Skull Cow icon /// /// https://fontawesome.com/icons/skull-cow?style=regular /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData skullCow = IconDataRegular(0xf8de); + static const IconData skullCow = IconData(0xf8de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Skull Cow icon /// /// https://fontawesome.com/icons/skull-cow?style=light /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData lightSkullCow = IconDataLight(0xf8de); + static const IconData lightSkullCow = IconData(0xf8de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Skull Cow icon /// /// https://fontawesome.com/icons/skull-cow?style=thin /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData thinSkullCow = IconDataThin(0xf8de); + static const IconData thinSkullCow = IconData(0xf8de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Skull Crossbones icon /// /// https://fontawesome.com/icons/skull-crossbones?style=solid /// Black Skull and Crossbones, Dungeons & Dragons, alert, bones, crossbones, d&d, danger, dangerous area, dead, deadly, death, dnd, face, fantasy, halloween, holiday, jolly-roger, monster, pirate, poison, skeleton, skull, skull and crossbones, warning - static const IconData solidSkullCrossbones = IconDataSolid(0xf714); + static const IconData solidSkullCrossbones = IconData(0xf714, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Skull Crossbones icon /// /// https://fontawesome.com/icons/skull-crossbones?style=regular /// Black Skull and Crossbones, Dungeons & Dragons, alert, bones, crossbones, d&d, danger, dangerous area, dead, deadly, death, dnd, face, fantasy, halloween, holiday, jolly-roger, monster, pirate, poison, skeleton, skull, skull and crossbones, warning - static const IconData skullCrossbones = IconDataRegular(0xf714); + static const IconData skullCrossbones = IconData(0xf714, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Skull Crossbones icon /// /// https://fontawesome.com/icons/skull-crossbones?style=light /// Black Skull and Crossbones, Dungeons & Dragons, alert, bones, crossbones, d&d, danger, dangerous area, dead, deadly, death, dnd, face, fantasy, halloween, holiday, jolly-roger, monster, pirate, poison, skeleton, skull, skull and crossbones, warning - static const IconData lightSkullCrossbones = IconDataLight(0xf714); + static const IconData lightSkullCrossbones = IconData(0xf714, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Skull Crossbones icon /// /// https://fontawesome.com/icons/skull-crossbones?style=thin /// Black Skull and Crossbones, Dungeons & Dragons, alert, bones, crossbones, d&d, danger, dangerous area, dead, deadly, death, dnd, face, fantasy, halloween, holiday, jolly-roger, monster, pirate, poison, skeleton, skull, skull and crossbones, warning - static const IconData thinSkullCrossbones = IconDataThin(0xf714); + static const IconData thinSkullCrossbones = IconData(0xf714, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands skyatlas icon /// /// https://fontawesome.com/icons/skyatlas?style=brands - static const IconData skyatlas = IconDataBrands(0xf216); + static const IconData skyatlas = IconData(0xf216, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Skype icon /// /// https://fontawesome.com/icons/skype?style=brands - static const IconData skype = IconDataBrands(0xf17e); + static const IconData skype = IconData(0xf17e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Slack Logo icon /// /// https://fontawesome.com/icons/slack?style=brands /// anchor, hash, hashtag - static const IconData slack = IconDataBrands(0xf198); + static const IconData slack = IconData(0xf198, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias slack-hash for icon [slack] @Deprecated('Use "slack" instead.') @@ -76631,127 +76631,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/slash?style=solid /// cancel, close, mute, off, stop, x - static const IconData solidSlash = IconDataSolid(0xf715); + static const IconData solidSlash = IconData(0xf715, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Slash icon /// /// https://fontawesome.com/icons/slash?style=regular /// cancel, close, mute, off, stop, x - static const IconData slash = IconDataRegular(0xf715); + static const IconData slash = IconData(0xf715, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Slash icon /// /// https://fontawesome.com/icons/slash?style=light /// cancel, close, mute, off, stop, x - static const IconData lightSlash = IconDataLight(0xf715); + static const IconData lightSlash = IconData(0xf715, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Slash icon /// /// https://fontawesome.com/icons/slash?style=thin /// cancel, close, mute, off, stop, x - static const IconData thinSlash = IconDataThin(0xf715); + static const IconData thinSlash = IconData(0xf715, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Slash Back icon /// /// https://fontawesome.com/icons/slash-back?style=solid /// Reverse Solidus, cancel, remove - static const IconData solidSlashBack = IconDataSolid(0x5c); + static const IconData solidSlashBack = IconData(0x5c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Slash Back icon /// /// https://fontawesome.com/icons/slash-back?style=regular /// Reverse Solidus, cancel, remove - static const IconData slashBack = IconDataRegular(0x5c); + static const IconData slashBack = IconData(0x5c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Slash Back icon /// /// https://fontawesome.com/icons/slash-back?style=light /// Reverse Solidus, cancel, remove - static const IconData lightSlashBack = IconDataLight(0x5c); + static const IconData lightSlashBack = IconData(0x5c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Slash Back icon /// /// https://fontawesome.com/icons/slash-back?style=thin /// Reverse Solidus, cancel, remove - static const IconData thinSlashBack = IconDataThin(0x5c); + static const IconData thinSlashBack = IconData(0x5c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Slash Forward icon /// /// https://fontawesome.com/icons/slash-forward?style=solid /// Division Slash, Solidus, divide, fraction - static const IconData solidSlashForward = IconDataSolid(0x2f); + static const IconData solidSlashForward = IconData(0x2f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Slash Forward icon /// /// https://fontawesome.com/icons/slash-forward?style=regular /// Division Slash, Solidus, divide, fraction - static const IconData slashForward = IconDataRegular(0x2f); + static const IconData slashForward = IconData(0x2f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Slash Forward icon /// /// https://fontawesome.com/icons/slash-forward?style=light /// Division Slash, Solidus, divide, fraction - static const IconData lightSlashForward = IconDataLight(0x2f); + static const IconData lightSlashForward = IconData(0x2f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Slash Forward icon /// /// https://fontawesome.com/icons/slash-forward?style=thin /// Division Slash, Solidus, divide, fraction - static const IconData thinSlashForward = IconDataThin(0x2f); + static const IconData thinSlashForward = IconData(0x2f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sleigh icon /// /// https://fontawesome.com/icons/sleigh?style=solid /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData solidSleigh = IconDataSolid(0xf7cc); + static const IconData solidSleigh = IconData(0xf7cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sleigh icon /// /// https://fontawesome.com/icons/sleigh?style=regular /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData sleigh = IconDataRegular(0xf7cc); + static const IconData sleigh = IconData(0xf7cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sleigh icon /// /// https://fontawesome.com/icons/sleigh?style=light /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData lightSleigh = IconDataLight(0xf7cc); + static const IconData lightSleigh = IconData(0xf7cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sleigh icon /// /// https://fontawesome.com/icons/sleigh?style=thin /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData thinSleigh = IconDataThin(0xf7cc); + static const IconData thinSleigh = IconData(0xf7cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Slider icon /// /// https://fontawesome.com/icons/slider?style=solid /// adjust, configuration, modify, settings, toggle - static const IconData solidSlider = IconDataSolid(0xe252); + static const IconData solidSlider = IconData(0xe252, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Slider icon /// /// https://fontawesome.com/icons/slider?style=regular /// adjust, configuration, modify, settings, toggle - static const IconData slider = IconDataRegular(0xe252); + static const IconData slider = IconData(0xe252, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Slider icon /// /// https://fontawesome.com/icons/slider?style=light /// adjust, configuration, modify, settings, toggle - static const IconData lightSlider = IconDataLight(0xe252); + static const IconData lightSlider = IconData(0xe252, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Slider icon /// /// https://fontawesome.com/icons/slider?style=thin /// adjust, configuration, modify, settings, toggle - static const IconData thinSlider = IconDataThin(0xe252); + static const IconData thinSlider = IconData(0xe252, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sliders icon /// /// https://fontawesome.com/icons/sliders?style=solid /// adjust, configuration, modify, settings, sliders, toggle - static const IconData solidSliders = IconDataSolid(0xf1de); + static const IconData solidSliders = IconData(0xf1de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h for icon [solidSliders] @Deprecated('Use "solidSliders" instead.') @@ -76761,7 +76761,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders?style=regular /// adjust, configuration, modify, settings, sliders, toggle - static const IconData sliders = IconDataRegular(0xf1de); + static const IconData sliders = IconData(0xf1de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h for icon [sliders] @Deprecated('Use "sliders" instead.') @@ -76771,7 +76771,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders?style=light /// adjust, configuration, modify, settings, sliders, toggle - static const IconData lightSliders = IconDataLight(0xf1de); + static const IconData lightSliders = IconData(0xf1de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h for icon [lightSliders] @Deprecated('Use "lightSliders" instead.') @@ -76781,7 +76781,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders?style=thin /// adjust, configuration, modify, settings, sliders, toggle - static const IconData thinSliders = IconDataThin(0xf1de); + static const IconData thinSliders = IconData(0xf1de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h for icon [thinSliders] @Deprecated('Use "thinSliders" instead.') @@ -76791,31 +76791,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders-simple?style=solid /// adjust, configuration, modify, off, on, settings, toggles - static const IconData solidSlidersSimple = IconDataSolid(0xe253); + static const IconData solidSlidersSimple = IconData(0xe253, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sliders Simple icon /// /// https://fontawesome.com/icons/sliders-simple?style=regular /// adjust, configuration, modify, off, on, settings, toggles - static const IconData slidersSimple = IconDataRegular(0xe253); + static const IconData slidersSimple = IconData(0xe253, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sliders Simple icon /// /// https://fontawesome.com/icons/sliders-simple?style=light /// adjust, configuration, modify, off, on, settings, toggles - static const IconData lightSlidersSimple = IconDataLight(0xe253); + static const IconData lightSlidersSimple = IconData(0xe253, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sliders Simple icon /// /// https://fontawesome.com/icons/sliders-simple?style=thin /// adjust, configuration, modify, off, on, settings, toggles - static const IconData thinSlidersSimple = IconDataThin(0xe253); + static const IconData thinSlidersSimple = IconData(0xe253, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sliders Up icon /// /// https://fontawesome.com/icons/sliders-up?style=solid /// adjust, configuration, modify, settings, sliders, toggle - static const IconData solidSlidersUp = IconDataSolid(0xf3f1); + static const IconData solidSlidersUp = IconData(0xf3f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v for icon [solidSlidersUp] @Deprecated('Use "solidSlidersUp" instead.') @@ -76825,7 +76825,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders-up?style=regular /// adjust, configuration, modify, settings, sliders, toggle - static const IconData slidersUp = IconDataRegular(0xf3f1); + static const IconData slidersUp = IconData(0xf3f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v for icon [slidersUp] @Deprecated('Use "slidersUp" instead.') @@ -76835,7 +76835,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders-up?style=light /// adjust, configuration, modify, settings, sliders, toggle - static const IconData lightSlidersUp = IconDataLight(0xf3f1); + static const IconData lightSlidersUp = IconData(0xf3f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v for icon [lightSlidersUp] @Deprecated('Use "lightSlidersUp" instead.') @@ -76845,7 +76845,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sliders-up?style=thin /// adjust, configuration, modify, settings, sliders, toggle - static const IconData thinSlidersUp = IconDataThin(0xf3f1); + static const IconData thinSlidersUp = IconData(0xf3f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v for icon [thinSlidersUp] @Deprecated('Use "thinSlidersUp" instead.') @@ -76854,132 +76854,132 @@ class FontAwesomeIcons { /// Brands Slideshare icon /// /// https://fontawesome.com/icons/slideshare?style=brands - static const IconData slideshare = IconDataBrands(0xf1e7); + static const IconData slideshare = IconData(0xf1e7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Slot Machine icon /// /// https://fontawesome.com/icons/slot-machine?style=solid /// gamble, gambling, game, lucky, slot, slot machine, vegas - static const IconData solidSlotMachine = IconDataSolid(0xe3ce); + static const IconData solidSlotMachine = IconData(0xe3ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Slot Machine icon /// /// https://fontawesome.com/icons/slot-machine?style=regular /// gamble, gambling, game, lucky, slot, slot machine, vegas - static const IconData slotMachine = IconDataRegular(0xe3ce); + static const IconData slotMachine = IconData(0xe3ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Slot Machine icon /// /// https://fontawesome.com/icons/slot-machine?style=light /// gamble, gambling, game, lucky, slot, slot machine, vegas - static const IconData lightSlotMachine = IconDataLight(0xe3ce); + static const IconData lightSlotMachine = IconData(0xe3ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Slot Machine icon /// /// https://fontawesome.com/icons/slot-machine?style=thin /// gamble, gambling, game, lucky, slot, slot machine, vegas - static const IconData thinSlotMachine = IconDataThin(0xe3ce); + static const IconData thinSlotMachine = IconData(0xe3ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Smog icon /// /// https://fontawesome.com/icons/smog?style=solid /// dragon, fog, haze, pollution, smoke, weather - static const IconData solidSmog = IconDataSolid(0xf75f); + static const IconData solidSmog = IconData(0xf75f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Smog icon /// /// https://fontawesome.com/icons/smog?style=regular /// dragon, fog, haze, pollution, smoke, weather - static const IconData smog = IconDataRegular(0xf75f); + static const IconData smog = IconData(0xf75f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Smog icon /// /// https://fontawesome.com/icons/smog?style=light /// dragon, fog, haze, pollution, smoke, weather - static const IconData lightSmog = IconDataLight(0xf75f); + static const IconData lightSmog = IconData(0xf75f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Smog icon /// /// https://fontawesome.com/icons/smog?style=thin /// dragon, fog, haze, pollution, smoke, weather - static const IconData thinSmog = IconDataThin(0xf75f); + static const IconData thinSmog = IconData(0xf75f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Smoke icon /// /// https://fontawesome.com/icons/smoke?style=solid /// cloud, fire, fog, haze - static const IconData solidSmoke = IconDataSolid(0xf760); + static const IconData solidSmoke = IconData(0xf760, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Smoke icon /// /// https://fontawesome.com/icons/smoke?style=regular /// cloud, fire, fog, haze - static const IconData smoke = IconDataRegular(0xf760); + static const IconData smoke = IconData(0xf760, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Smoke icon /// /// https://fontawesome.com/icons/smoke?style=light /// cloud, fire, fog, haze - static const IconData lightSmoke = IconDataLight(0xf760); + static const IconData lightSmoke = IconData(0xf760, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Smoke icon /// /// https://fontawesome.com/icons/smoke?style=thin /// cloud, fire, fog, haze - static const IconData thinSmoke = IconDataThin(0xf760); + static const IconData thinSmoke = IconData(0xf760, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Smoking icon /// /// https://fontawesome.com/icons/smoking?style=solid /// cancer, cigarette, nicotine, smoking, smoking status, tobacco - static const IconData solidSmoking = IconDataSolid(0xf48d); + static const IconData solidSmoking = IconData(0xf48d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Smoking icon /// /// https://fontawesome.com/icons/smoking?style=regular /// cancer, cigarette, nicotine, smoking, smoking status, tobacco - static const IconData smoking = IconDataRegular(0xf48d); + static const IconData smoking = IconData(0xf48d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Smoking icon /// /// https://fontawesome.com/icons/smoking?style=light /// cancer, cigarette, nicotine, smoking, smoking status, tobacco - static const IconData lightSmoking = IconDataLight(0xf48d); + static const IconData lightSmoking = IconData(0xf48d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Smoking icon /// /// https://fontawesome.com/icons/smoking?style=thin /// cancer, cigarette, nicotine, smoking, smoking status, tobacco - static const IconData thinSmoking = IconDataThin(0xf48d); + static const IconData thinSmoking = IconData(0xf48d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snake icon /// /// https://fontawesome.com/icons/snake?style=solid /// Ophiuchus, bearer, cobra, fauna, reptile, serpent, slither, snake, zodiac - static const IconData solidSnake = IconDataSolid(0xf716); + static const IconData solidSnake = IconData(0xf716, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snake icon /// /// https://fontawesome.com/icons/snake?style=regular /// Ophiuchus, bearer, cobra, fauna, reptile, serpent, slither, snake, zodiac - static const IconData snake = IconDataRegular(0xf716); + static const IconData snake = IconData(0xf716, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snake icon /// /// https://fontawesome.com/icons/snake?style=light /// Ophiuchus, bearer, cobra, fauna, reptile, serpent, slither, snake, zodiac - static const IconData lightSnake = IconDataLight(0xf716); + static const IconData lightSnake = IconData(0xf716, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snake icon /// /// https://fontawesome.com/icons/snake?style=thin /// Ophiuchus, bearer, cobra, fauna, reptile, serpent, slither, snake, zodiac - static const IconData thinSnake = IconDataThin(0xf716); + static const IconData thinSnake = IconData(0xf716, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Snapchat icon /// /// https://fontawesome.com/icons/snapchat?style=brands - static const IconData snapchat = IconDataBrands(0xf2ab); + static const IconData snapchat = IconData(0xf2ab, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias snapchat-ghost for icon [snapchat] @Deprecated('Use "snapchat" instead.') @@ -76989,7 +76989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snooze?style=solid /// alarm, comic, nap, rest, siesta, sleep, zzz - static const IconData solidSnooze = IconDataSolid(0xf880); + static const IconData solidSnooze = IconData(0xf880, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias zzz for icon [solidSnooze] @Deprecated('Use "solidSnooze" instead.') @@ -76999,7 +76999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snooze?style=regular /// alarm, comic, nap, rest, siesta, sleep, zzz - static const IconData snooze = IconDataRegular(0xf880); + static const IconData snooze = IconData(0xf880, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias zzz for icon [snooze] @Deprecated('Use "snooze" instead.') @@ -77009,7 +77009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snooze?style=light /// alarm, comic, nap, rest, siesta, sleep, zzz - static const IconData lightSnooze = IconDataLight(0xf880); + static const IconData lightSnooze = IconData(0xf880, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias zzz for icon [lightSnooze] @Deprecated('Use "lightSnooze" instead.') @@ -77019,7 +77019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snooze?style=thin /// alarm, comic, nap, rest, siesta, sleep, zzz - static const IconData thinSnooze = IconDataThin(0xf880); + static const IconData thinSnooze = IconData(0xf880, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias zzz for icon [thinSnooze] @Deprecated('Use "thinSnooze" instead.') @@ -77029,127 +77029,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snow-blowing?style=solid /// blizzard, precipitation, storm, winter - static const IconData solidSnowBlowing = IconDataSolid(0xf761); + static const IconData solidSnowBlowing = IconData(0xf761, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snow Blowing icon /// /// https://fontawesome.com/icons/snow-blowing?style=regular /// blizzard, precipitation, storm, winter - static const IconData snowBlowing = IconDataRegular(0xf761); + static const IconData snowBlowing = IconData(0xf761, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snow Blowing icon /// /// https://fontawesome.com/icons/snow-blowing?style=light /// blizzard, precipitation, storm, winter - static const IconData lightSnowBlowing = IconDataLight(0xf761); + static const IconData lightSnowBlowing = IconData(0xf761, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snow Blowing icon /// /// https://fontawesome.com/icons/snow-blowing?style=thin /// blizzard, precipitation, storm, winter - static const IconData thinSnowBlowing = IconDataThin(0xf761); + static const IconData thinSnowBlowing = IconData(0xf761, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snowflake icon /// /// https://fontawesome.com/icons/snowflake?style=solid /// Heavy Chevron Snowflake, cold, precipitation, rain, snow, snowfall, snowflake, winter - static const IconData solidSnowflake = IconDataSolid(0xf2dc); + static const IconData solidSnowflake = IconData(0xf2dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snowflake icon /// /// https://fontawesome.com/icons/snowflake?style=regular /// Heavy Chevron Snowflake, cold, precipitation, rain, snow, snowfall, snowflake, winter - static const IconData snowflake = IconDataRegular(0xf2dc); + static const IconData snowflake = IconData(0xf2dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snowflake icon /// /// https://fontawesome.com/icons/snowflake?style=light /// Heavy Chevron Snowflake, cold, precipitation, rain, snow, snowfall, snowflake, winter - static const IconData lightSnowflake = IconDataLight(0xf2dc); + static const IconData lightSnowflake = IconData(0xf2dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snowflake icon /// /// https://fontawesome.com/icons/snowflake?style=thin /// Heavy Chevron Snowflake, cold, precipitation, rain, snow, snowfall, snowflake, winter - static const IconData thinSnowflake = IconDataThin(0xf2dc); + static const IconData thinSnowflake = IconData(0xf2dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snowflake Droplets icon /// /// https://fontawesome.com/icons/snowflake-droplets?style=solid /// cold, droplets, melt, rain, snow, spring, thaw, winter - static const IconData solidSnowflakeDroplets = IconDataSolid(0xe5c1); + static const IconData solidSnowflakeDroplets = IconData(0xe5c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snowflake Droplets icon /// /// https://fontawesome.com/icons/snowflake-droplets?style=regular /// cold, droplets, melt, rain, snow, spring, thaw, winter - static const IconData snowflakeDroplets = IconDataRegular(0xe5c1); + static const IconData snowflakeDroplets = IconData(0xe5c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snowflake Droplets icon /// /// https://fontawesome.com/icons/snowflake-droplets?style=light /// cold, droplets, melt, rain, snow, spring, thaw, winter - static const IconData lightSnowflakeDroplets = IconDataLight(0xe5c1); + static const IconData lightSnowflakeDroplets = IconData(0xe5c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snowflake Droplets icon /// /// https://fontawesome.com/icons/snowflake-droplets?style=thin /// cold, droplets, melt, rain, snow, spring, thaw, winter - static const IconData thinSnowflakeDroplets = IconDataThin(0xe5c1); + static const IconData thinSnowflakeDroplets = IconData(0xe5c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snowflakes icon /// /// https://fontawesome.com/icons/snowflakes?style=solid /// precipitation, rain, winter - static const IconData solidSnowflakes = IconDataSolid(0xf7cf); + static const IconData solidSnowflakes = IconData(0xf7cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snowflakes icon /// /// https://fontawesome.com/icons/snowflakes?style=regular /// precipitation, rain, winter - static const IconData snowflakes = IconDataRegular(0xf7cf); + static const IconData snowflakes = IconData(0xf7cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snowflakes icon /// /// https://fontawesome.com/icons/snowflakes?style=light /// precipitation, rain, winter - static const IconData lightSnowflakes = IconDataLight(0xf7cf); + static const IconData lightSnowflakes = IconData(0xf7cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snowflakes icon /// /// https://fontawesome.com/icons/snowflakes?style=thin /// precipitation, rain, winter - static const IconData thinSnowflakes = IconDataThin(0xf7cf); + static const IconData thinSnowflakes = IconData(0xf7cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snowman icon /// /// https://fontawesome.com/icons/snowman?style=solid /// cold, decoration, frost, frosty, holiday, snow, snowman, snowman without snow - static const IconData solidSnowman = IconDataSolid(0xf7d0); + static const IconData solidSnowman = IconData(0xf7d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snowman icon /// /// https://fontawesome.com/icons/snowman?style=regular /// cold, decoration, frost, frosty, holiday, snow, snowman, snowman without snow - static const IconData snowman = IconDataRegular(0xf7d0); + static const IconData snowman = IconData(0xf7d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snowman icon /// /// https://fontawesome.com/icons/snowman?style=light /// cold, decoration, frost, frosty, holiday, snow, snowman, snowman without snow - static const IconData lightSnowman = IconDataLight(0xf7d0); + static const IconData lightSnowman = IconData(0xf7d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snowman icon /// /// https://fontawesome.com/icons/snowman?style=thin /// cold, decoration, frost, frosty, holiday, snow, snowman, snowman without snow - static const IconData thinSnowman = IconDataThin(0xf7d0); + static const IconData thinSnowman = IconData(0xf7d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Snowman Head icon /// /// https://fontawesome.com/icons/snowman-head?style=solid /// carrot, hat, snowman, winter - static const IconData solidSnowmanHead = IconDataSolid(0xf79b); + static const IconData solidSnowmanHead = IconData(0xf79b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias frosty-head for icon [solidSnowmanHead] @Deprecated('Use "solidSnowmanHead" instead.') @@ -77159,7 +77159,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snowman-head?style=regular /// carrot, hat, snowman, winter - static const IconData snowmanHead = IconDataRegular(0xf79b); + static const IconData snowmanHead = IconData(0xf79b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias frosty-head for icon [snowmanHead] @Deprecated('Use "snowmanHead" instead.') @@ -77169,7 +77169,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snowman-head?style=light /// carrot, hat, snowman, winter - static const IconData lightSnowmanHead = IconDataLight(0xf79b); + static const IconData lightSnowmanHead = IconData(0xf79b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias frosty-head for icon [lightSnowmanHead] @Deprecated('Use "lightSnowmanHead" instead.') @@ -77179,7 +77179,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snowman-head?style=thin /// carrot, hat, snowman, winter - static const IconData thinSnowmanHead = IconDataThin(0xf79b); + static const IconData thinSnowmanHead = IconData(0xf79b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias frosty-head for icon [thinSnowmanHead] @Deprecated('Use "thinSnowmanHead" instead.') @@ -77189,79 +77189,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/snowplow?style=solid /// clean up, cold, road, storm, winter - static const IconData solidSnowplow = IconDataSolid(0xf7d2); + static const IconData solidSnowplow = IconData(0xf7d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Snowplow icon /// /// https://fontawesome.com/icons/snowplow?style=regular /// clean up, cold, road, storm, winter - static const IconData snowplow = IconDataRegular(0xf7d2); + static const IconData snowplow = IconData(0xf7d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Snowplow icon /// /// https://fontawesome.com/icons/snowplow?style=light /// clean up, cold, road, storm, winter - static const IconData lightSnowplow = IconDataLight(0xf7d2); + static const IconData lightSnowplow = IconData(0xf7d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Snowplow icon /// /// https://fontawesome.com/icons/snowplow?style=thin /// clean up, cold, road, storm, winter - static const IconData thinSnowplow = IconDataThin(0xf7d2); + static const IconData thinSnowplow = IconData(0xf7d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Soap icon /// /// https://fontawesome.com/icons/soap?style=solid /// bar, bathing, bubbles, clean, cleaning, covid-19, hygiene, lather, soap, soapdish, wash - static const IconData solidSoap = IconDataSolid(0xe06e); + static const IconData solidSoap = IconData(0xe06e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Soap icon /// /// https://fontawesome.com/icons/soap?style=regular /// bar, bathing, bubbles, clean, cleaning, covid-19, hygiene, lather, soap, soapdish, wash - static const IconData soap = IconDataRegular(0xe06e); + static const IconData soap = IconData(0xe06e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Soap icon /// /// https://fontawesome.com/icons/soap?style=light /// bar, bathing, bubbles, clean, cleaning, covid-19, hygiene, lather, soap, soapdish, wash - static const IconData lightSoap = IconDataLight(0xe06e); + static const IconData lightSoap = IconData(0xe06e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Soap icon /// /// https://fontawesome.com/icons/soap?style=thin /// bar, bathing, bubbles, clean, cleaning, covid-19, hygiene, lather, soap, soapdish, wash - static const IconData thinSoap = IconDataThin(0xe06e); + static const IconData thinSoap = IconData(0xe06e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Socks icon /// /// https://fontawesome.com/icons/socks?style=solid /// business socks, business time, clothing, feet, flight of the conchords, socks, stocking, wednesday - static const IconData solidSocks = IconDataSolid(0xf696); + static const IconData solidSocks = IconData(0xf696, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Socks icon /// /// https://fontawesome.com/icons/socks?style=regular /// business socks, business time, clothing, feet, flight of the conchords, socks, stocking, wednesday - static const IconData socks = IconDataRegular(0xf696); + static const IconData socks = IconData(0xf696, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Socks icon /// /// https://fontawesome.com/icons/socks?style=light /// business socks, business time, clothing, feet, flight of the conchords, socks, stocking, wednesday - static const IconData lightSocks = IconDataLight(0xf696); + static const IconData lightSocks = IconData(0xf696, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Socks icon /// /// https://fontawesome.com/icons/socks?style=thin /// business socks, business time, clothing, feet, flight of the conchords, socks, stocking, wednesday - static const IconData thinSocks = IconDataThin(0xf696); + static const IconData thinSocks = IconData(0xf696, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Soft Serve icon /// /// https://fontawesome.com/icons/soft-serve?style=solid /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData solidSoftServe = IconDataSolid(0xe400); + static const IconData solidSoftServe = IconData(0xe400, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias creemee for icon [solidSoftServe] @Deprecated('Use "solidSoftServe" instead.') @@ -77271,7 +77271,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/soft-serve?style=regular /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData softServe = IconDataRegular(0xe400); + static const IconData softServe = IconData(0xe400, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias creemee for icon [softServe] @Deprecated('Use "softServe" instead.') @@ -77281,7 +77281,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/soft-serve?style=light /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData lightSoftServe = IconDataLight(0xe400); + static const IconData lightSoftServe = IconData(0xe400, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias creemee for icon [lightSoftServe] @Deprecated('Use "lightSoftServe" instead.') @@ -77291,7 +77291,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/soft-serve?style=thin /// cone, creemee, frozen yogurt, ice cream, icecream, softserve - static const IconData thinSoftServe = IconDataThin(0xe400); + static const IconData thinSoftServe = IconData(0xe400, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias creemee for icon [thinSoftServe] @Deprecated('Use "thinSoftServe" instead.') @@ -77301,55 +77301,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/solar-panel?style=solid /// clean, eco-friendly, energy, green, sun - static const IconData solidSolarPanel = IconDataSolid(0xf5ba); + static const IconData solidSolarPanel = IconData(0xf5ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Solar Panel icon /// /// https://fontawesome.com/icons/solar-panel?style=regular /// clean, eco-friendly, energy, green, sun - static const IconData solarPanel = IconDataRegular(0xf5ba); + static const IconData solarPanel = IconData(0xf5ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Solar Panel icon /// /// https://fontawesome.com/icons/solar-panel?style=light /// clean, eco-friendly, energy, green, sun - static const IconData lightSolarPanel = IconDataLight(0xf5ba); + static const IconData lightSolarPanel = IconData(0xf5ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Solar Panel icon /// /// https://fontawesome.com/icons/solar-panel?style=thin /// clean, eco-friendly, energy, green, sun - static const IconData thinSolarPanel = IconDataThin(0xf5ba); + static const IconData thinSolarPanel = IconData(0xf5ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Solar System icon /// /// https://fontawesome.com/icons/solar-system?style=solid /// galaxy, orbit, planets, premium, space, sun, universe - static const IconData solidSolarSystem = IconDataSolid(0xe02f); + static const IconData solidSolarSystem = IconData(0xe02f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Solar System icon /// /// https://fontawesome.com/icons/solar-system?style=regular /// galaxy, orbit, planets, premium, space, sun, universe - static const IconData solarSystem = IconDataRegular(0xe02f); + static const IconData solarSystem = IconData(0xe02f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Solar System icon /// /// https://fontawesome.com/icons/solar-system?style=light /// galaxy, orbit, planets, premium, space, sun, universe - static const IconData lightSolarSystem = IconDataLight(0xe02f); + static const IconData lightSolarSystem = IconData(0xe02f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Solar System icon /// /// https://fontawesome.com/icons/solar-system?style=thin /// galaxy, orbit, planets, premium, space, sun, universe - static const IconData thinSolarSystem = IconDataThin(0xe02f); + static const IconData thinSolarSystem = IconData(0xe02f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sort icon /// /// https://fontawesome.com/icons/sort?style=solid /// filter, order - static const IconData solidSort = IconDataSolid(0xf0dc); + static const IconData solidSort = IconData(0xf0dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias unsorted for icon [solidSort] @Deprecated('Use "solidSort" instead.') @@ -77359,7 +77359,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort?style=regular /// filter, order - static const IconData sort = IconDataRegular(0xf0dc); + static const IconData sort = IconData(0xf0dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias unsorted for icon [sort] @Deprecated('Use "sort" instead.') @@ -77369,7 +77369,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort?style=light /// filter, order - static const IconData lightSort = IconDataLight(0xf0dc); + static const IconData lightSort = IconData(0xf0dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias unsorted for icon [lightSort] @Deprecated('Use "lightSort" instead.') @@ -77379,7 +77379,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort?style=thin /// filter, order - static const IconData thinSort = IconDataThin(0xf0dc); + static const IconData thinSort = IconData(0xf0dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias unsorted for icon [thinSort] @Deprecated('Use "thinSort" instead.') @@ -77389,7 +77389,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-down?style=solid /// arrow, descending, filter, insert, order, sort-desc - static const IconData solidSortDown = IconDataSolid(0xf0dd); + static const IconData solidSortDown = IconData(0xf0dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-desc for icon [solidSortDown] @Deprecated('Use "solidSortDown" instead.') @@ -77399,7 +77399,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-down?style=regular /// arrow, descending, filter, insert, order, sort-desc - static const IconData sortDown = IconDataRegular(0xf0dd); + static const IconData sortDown = IconData(0xf0dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-desc for icon [sortDown] @Deprecated('Use "sortDown" instead.') @@ -77409,7 +77409,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-down?style=light /// arrow, descending, filter, insert, order, sort-desc - static const IconData lightSortDown = IconDataLight(0xf0dd); + static const IconData lightSortDown = IconData(0xf0dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-desc for icon [lightSortDown] @Deprecated('Use "lightSortDown" instead.') @@ -77419,7 +77419,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-down?style=thin /// arrow, descending, filter, insert, order, sort-desc - static const IconData thinSortDown = IconDataThin(0xf0dd); + static const IconData thinSortDown = IconData(0xf0dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-desc for icon [thinSortDown] @Deprecated('Use "thinSortDown" instead.') @@ -77429,7 +77429,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-up?style=solid /// arrow, ascending, filter, order, sort-asc, upgrade - static const IconData solidSortUp = IconDataSolid(0xf0de); + static const IconData solidSortUp = IconData(0xf0de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sort-asc for icon [solidSortUp] @Deprecated('Use "solidSortUp" instead.') @@ -77439,7 +77439,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-up?style=regular /// arrow, ascending, filter, order, sort-asc, upgrade - static const IconData sortUp = IconDataRegular(0xf0de); + static const IconData sortUp = IconData(0xf0de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sort-asc for icon [sortUp] @Deprecated('Use "sortUp" instead.') @@ -77449,7 +77449,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-up?style=light /// arrow, ascending, filter, order, sort-asc, upgrade - static const IconData lightSortUp = IconDataLight(0xf0de); + static const IconData lightSortUp = IconData(0xf0de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sort-asc for icon [lightSortUp] @Deprecated('Use "lightSortUp" instead.') @@ -77459,7 +77459,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sort-up?style=thin /// arrow, ascending, filter, order, sort-asc, upgrade - static const IconData thinSortUp = IconDataThin(0xf0de); + static const IconData thinSortUp = IconData(0xf0de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sort-asc for icon [thinSortUp] @Deprecated('Use "thinSortUp" instead.') @@ -77468,73 +77468,73 @@ class FontAwesomeIcons { /// Brands SoundCloud icon /// /// https://fontawesome.com/icons/soundcloud?style=brands - static const IconData soundcloud = IconDataBrands(0xf1be); + static const IconData soundcloud = IconData(0xf1be, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Sourcetree icon /// /// https://fontawesome.com/icons/sourcetree?style=brands - static const IconData sourcetree = IconDataBrands(0xf7d3); + static const IconData sourcetree = IconData(0xf7d3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Spa icon /// /// https://fontawesome.com/icons/spa?style=solid /// flora, massage, mindfulness, plant, wellness - static const IconData solidSpa = IconDataSolid(0xf5bb); + static const IconData solidSpa = IconData(0xf5bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spa icon /// /// https://fontawesome.com/icons/spa?style=regular /// flora, massage, mindfulness, plant, wellness - static const IconData spa = IconDataRegular(0xf5bb); + static const IconData spa = IconData(0xf5bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spa icon /// /// https://fontawesome.com/icons/spa?style=light /// flora, massage, mindfulness, plant, wellness - static const IconData lightSpa = IconDataLight(0xf5bb); + static const IconData lightSpa = IconData(0xf5bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spa icon /// /// https://fontawesome.com/icons/spa?style=thin /// flora, massage, mindfulness, plant, wellness - static const IconData thinSpa = IconDataThin(0xf5bb); + static const IconData thinSpa = IconData(0xf5bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Space Awesome icon /// /// https://fontawesome.com/icons/space-awesome?style=brands /// adventure, rocket, ship, shuttle - static const IconData spaceAwesome = IconDataBrands(0xe5ac); + static const IconData spaceAwesome = IconData(0xe5ac, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Space Station Moon icon /// /// https://fontawesome.com/icons/space-station-moon?style=solid /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconData solidSpaceStationMoon = IconDataSolid(0xe033); + static const IconData solidSpaceStationMoon = IconData(0xe033, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Space Station Moon icon /// /// https://fontawesome.com/icons/space-station-moon?style=regular /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconData spaceStationMoon = IconDataRegular(0xe033); + static const IconData spaceStationMoon = IconData(0xe033, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Space Station Moon icon /// /// https://fontawesome.com/icons/space-station-moon?style=light /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconData lightSpaceStationMoon = IconDataLight(0xe033); + static const IconData lightSpaceStationMoon = IconData(0xe033, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Space Station Moon icon /// /// https://fontawesome.com/icons/space-station-moon?style=thin /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconData thinSpaceStationMoon = IconDataThin(0xe033); + static const IconData thinSpaceStationMoon = IconData(0xe033, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Space Station Moon Construction icon /// /// https://fontawesome.com/icons/space-station-moon-construction?style=solid /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction static const IconData solidSpaceStationMoonConstruction = - IconDataSolid(0xe034); + IconData(0xe034, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias space-station-moon-alt for icon [solidSpaceStationMoonConstruction] @Deprecated('Use "solidSpaceStationMoonConstruction" instead.') @@ -77545,7 +77545,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/space-station-moon-construction?style=regular /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconData spaceStationMoonConstruction = IconDataRegular(0xe034); + static const IconData spaceStationMoonConstruction = IconData(0xe034, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias space-station-moon-alt for icon [spaceStationMoonConstruction] @Deprecated('Use "spaceStationMoonConstruction" instead.') @@ -77556,7 +77556,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/space-station-moon-construction?style=light /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction static const IconData lightSpaceStationMoonConstruction = - IconDataLight(0xe034); + IconData(0xe034, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias space-station-moon-alt for icon [lightSpaceStationMoonConstruction] @Deprecated('Use "lightSpaceStationMoonConstruction" instead.') @@ -77567,7 +77567,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/space-station-moon-construction?style=thin /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconData thinSpaceStationMoonConstruction = IconDataThin(0xe034); + static const IconData thinSpaceStationMoonConstruction = IconData(0xe034, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias space-station-moon-alt for icon [thinSpaceStationMoonConstruction] @Deprecated('Use "thinSpaceStationMoonConstruction" instead.') @@ -77578,31 +77578,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spade?style=solid /// ace, card, game, poker, spade suit, suit - static const IconData solidSpade = IconDataSolid(0xf2f4); + static const IconData solidSpade = IconData(0xf2f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spade icon /// /// https://fontawesome.com/icons/spade?style=regular /// ace, card, game, poker, spade suit, suit - static const IconData spade = IconDataRegular(0xf2f4); + static const IconData spade = IconData(0xf2f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spade icon /// /// https://fontawesome.com/icons/spade?style=light /// ace, card, game, poker, spade suit, suit - static const IconData lightSpade = IconDataLight(0xf2f4); + static const IconData lightSpade = IconData(0xf2f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spade icon /// /// https://fontawesome.com/icons/spade?style=thin /// ace, card, game, poker, spade suit, suit - static const IconData thinSpade = IconDataThin(0xf2f4); + static const IconData thinSpade = IconData(0xf2f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spaghetti Monster Flying icon /// /// https://fontawesome.com/icons/spaghetti-monster-flying?style=solid /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData solidSpaghettiMonsterFlying = IconDataSolid(0xf67b); + static const IconData solidSpaghettiMonsterFlying = IconData(0xf67b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pastafarianism for icon [solidSpaghettiMonsterFlying] @Deprecated('Use "solidSpaghettiMonsterFlying" instead.') @@ -77612,7 +77612,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spaghetti-monster-flying?style=regular /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData spaghettiMonsterFlying = IconDataRegular(0xf67b); + static const IconData spaghettiMonsterFlying = IconData(0xf67b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pastafarianism for icon [spaghettiMonsterFlying] @Deprecated('Use "spaghettiMonsterFlying" instead.') @@ -77622,7 +77622,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spaghetti-monster-flying?style=light /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData lightSpaghettiMonsterFlying = IconDataLight(0xf67b); + static const IconData lightSpaghettiMonsterFlying = IconData(0xf67b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pastafarianism for icon [lightSpaghettiMonsterFlying] @Deprecated('Use "lightSpaghettiMonsterFlying" instead.') @@ -77632,7 +77632,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spaghetti-monster-flying?style=thin /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData thinSpaghettiMonsterFlying = IconDataThin(0xf67b); + static const IconData thinSpaghettiMonsterFlying = IconData(0xf67b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pastafarianism for icon [thinSpaghettiMonsterFlying] @Deprecated('Use "thinSpaghettiMonsterFlying" instead.') @@ -77642,329 +77642,329 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sparkle?style=solid /// glitter, magic, new, shine, sparkle, special, star, twinkle - static const IconData solidSparkle = IconDataSolid(0xe5d6); + static const IconData solidSparkle = IconData(0xe5d6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sparkle icon /// /// https://fontawesome.com/icons/sparkle?style=regular /// glitter, magic, new, shine, sparkle, special, star, twinkle - static const IconData sparkle = IconDataRegular(0xe5d6); + static const IconData sparkle = IconData(0xe5d6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sparkle icon /// /// https://fontawesome.com/icons/sparkle?style=light /// glitter, magic, new, shine, sparkle, special, star, twinkle - static const IconData lightSparkle = IconDataLight(0xe5d6); + static const IconData lightSparkle = IconData(0xe5d6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sparkle icon /// /// https://fontawesome.com/icons/sparkle?style=thin /// glitter, magic, new, shine, sparkle, special, star, twinkle - static const IconData thinSparkle = IconDataThin(0xe5d6); + static const IconData thinSparkle = IconData(0xe5d6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sparkles icon /// /// https://fontawesome.com/icons/sparkles?style=solid /// *, glitter, magic, new, sparkle, sparkles, special, star, twinkle - static const IconData solidSparkles = IconDataSolid(0xf890); + static const IconData solidSparkles = IconData(0xf890, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sparkles icon /// /// https://fontawesome.com/icons/sparkles?style=regular /// *, glitter, magic, new, sparkle, sparkles, special, star, twinkle - static const IconData sparkles = IconDataRegular(0xf890); + static const IconData sparkles = IconData(0xf890, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sparkles icon /// /// https://fontawesome.com/icons/sparkles?style=light /// *, glitter, magic, new, sparkle, sparkles, special, star, twinkle - static const IconData lightSparkles = IconDataLight(0xf890); + static const IconData lightSparkles = IconData(0xf890, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sparkles icon /// /// https://fontawesome.com/icons/sparkles?style=thin /// *, glitter, magic, new, sparkle, sparkles, special, star, twinkle - static const IconData thinSparkles = IconDataThin(0xf890); + static const IconData thinSparkles = IconData(0xf890, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Speakap icon /// /// https://fontawesome.com/icons/speakap?style=brands - static const IconData speakap = IconDataBrands(0xf3f3); + static const IconData speakap = IconData(0xf3f3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Speaker icon /// /// https://fontawesome.com/icons/speaker?style=solid /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData solidSpeaker = IconDataSolid(0xf8df); + static const IconData solidSpeaker = IconData(0xf8df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Speaker icon /// /// https://fontawesome.com/icons/speaker?style=regular /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData speaker = IconDataRegular(0xf8df); + static const IconData speaker = IconData(0xf8df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Speaker icon /// /// https://fontawesome.com/icons/speaker?style=light /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData lightSpeaker = IconDataLight(0xf8df); + static const IconData lightSpeaker = IconData(0xf8df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Speaker icon /// /// https://fontawesome.com/icons/speaker?style=thin /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData thinSpeaker = IconDataThin(0xf8df); + static const IconData thinSpeaker = IconData(0xf8df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Speaker Deck icon /// /// https://fontawesome.com/icons/speaker-deck?style=brands - static const IconData speakerDeck = IconDataBrands(0xf83c); + static const IconData speakerDeck = IconData(0xf83c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Speakers icon /// /// https://fontawesome.com/icons/speakers?style=solid /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData solidSpeakers = IconDataSolid(0xf8e0); + static const IconData solidSpeakers = IconData(0xf8e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Speakers icon /// /// https://fontawesome.com/icons/speakers?style=regular /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData speakers = IconDataRegular(0xf8e0); + static const IconData speakers = IconData(0xf8e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Speakers icon /// /// https://fontawesome.com/icons/speakers?style=light /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData lightSpeakers = IconDataLight(0xf8e0); + static const IconData lightSpeakers = IconData(0xf8e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Speakers icon /// /// https://fontawesome.com/icons/speakers?style=thin /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData thinSpeakers = IconDataThin(0xf8e0); + static const IconData thinSpeakers = IconData(0xf8e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spell Check icon /// /// https://fontawesome.com/icons/spell-check?style=solid /// dictionary, edit, editor, enable, grammar, text, validate, working - static const IconData solidSpellCheck = IconDataSolid(0xf891); + static const IconData solidSpellCheck = IconData(0xf891, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spell Check icon /// /// https://fontawesome.com/icons/spell-check?style=regular /// dictionary, edit, editor, enable, grammar, text, validate, working - static const IconData spellCheck = IconDataRegular(0xf891); + static const IconData spellCheck = IconData(0xf891, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spell Check icon /// /// https://fontawesome.com/icons/spell-check?style=light /// dictionary, edit, editor, enable, grammar, text, validate, working - static const IconData lightSpellCheck = IconDataLight(0xf891); + static const IconData lightSpellCheck = IconData(0xf891, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spell Check icon /// /// https://fontawesome.com/icons/spell-check?style=thin /// dictionary, edit, editor, enable, grammar, text, validate, working - static const IconData thinSpellCheck = IconDataThin(0xf891); + static const IconData thinSpellCheck = IconData(0xf891, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spider icon /// /// https://fontawesome.com/icons/spider?style=solid /// arachnid, bug, charlotte, crawl, eight, halloween, insect, spider - static const IconData solidSpider = IconDataSolid(0xf717); + static const IconData solidSpider = IconData(0xf717, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spider icon /// /// https://fontawesome.com/icons/spider?style=regular /// arachnid, bug, charlotte, crawl, eight, halloween, insect, spider - static const IconData spider = IconDataRegular(0xf717); + static const IconData spider = IconData(0xf717, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spider icon /// /// https://fontawesome.com/icons/spider?style=light /// arachnid, bug, charlotte, crawl, eight, halloween, insect, spider - static const IconData lightSpider = IconDataLight(0xf717); + static const IconData lightSpider = IconData(0xf717, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spider icon /// /// https://fontawesome.com/icons/spider?style=thin /// arachnid, bug, charlotte, crawl, eight, halloween, insect, spider - static const IconData thinSpider = IconDataThin(0xf717); + static const IconData thinSpider = IconData(0xf717, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spider Black Widow icon /// /// https://fontawesome.com/icons/spider-black-widow?style=solid /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconData solidSpiderBlackWidow = IconDataSolid(0xf718); + static const IconData solidSpiderBlackWidow = IconData(0xf718, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spider Black Widow icon /// /// https://fontawesome.com/icons/spider-black-widow?style=regular /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconData spiderBlackWidow = IconDataRegular(0xf718); + static const IconData spiderBlackWidow = IconData(0xf718, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spider Black Widow icon /// /// https://fontawesome.com/icons/spider-black-widow?style=light /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconData lightSpiderBlackWidow = IconDataLight(0xf718); + static const IconData lightSpiderBlackWidow = IconData(0xf718, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spider Black Widow icon /// /// https://fontawesome.com/icons/spider-black-widow?style=thin /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconData thinSpiderBlackWidow = IconDataThin(0xf718); + static const IconData thinSpiderBlackWidow = IconData(0xf718, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spider Web icon /// /// https://fontawesome.com/icons/spider-web?style=solid /// cobweb, gossamer, halloween, spider, spider web, web - static const IconData solidSpiderWeb = IconDataSolid(0xf719); + static const IconData solidSpiderWeb = IconData(0xf719, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spider Web icon /// /// https://fontawesome.com/icons/spider-web?style=regular /// cobweb, gossamer, halloween, spider, spider web, web - static const IconData spiderWeb = IconDataRegular(0xf719); + static const IconData spiderWeb = IconData(0xf719, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spider Web icon /// /// https://fontawesome.com/icons/spider-web?style=light /// cobweb, gossamer, halloween, spider, spider web, web - static const IconData lightSpiderWeb = IconDataLight(0xf719); + static const IconData lightSpiderWeb = IconData(0xf719, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spider Web icon /// /// https://fontawesome.com/icons/spider-web?style=thin /// cobweb, gossamer, halloween, spider, spider web, web - static const IconData thinSpiderWeb = IconDataThin(0xf719); + static const IconData thinSpiderWeb = IconData(0xf719, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spinner icon /// /// https://fontawesome.com/icons/spinner?style=solid /// circle, loading, pending, progress - static const IconData solidSpinner = IconDataSolid(0xf110); + static const IconData solidSpinner = IconData(0xf110, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spinner icon /// /// https://fontawesome.com/icons/spinner?style=regular /// circle, loading, pending, progress - static const IconData spinner = IconDataRegular(0xf110); + static const IconData spinner = IconData(0xf110, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spinner icon /// /// https://fontawesome.com/icons/spinner?style=light /// circle, loading, pending, progress - static const IconData lightSpinner = IconDataLight(0xf110); + static const IconData lightSpinner = IconData(0xf110, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spinner icon /// /// https://fontawesome.com/icons/spinner?style=thin /// circle, loading, pending, progress - static const IconData thinSpinner = IconDataThin(0xf110); + static const IconData thinSpinner = IconData(0xf110, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spinner Scale icon /// /// https://fontawesome.com/icons/spinner-scale?style=solid /// circle, loading, progress, pending - static const IconData solidSpinnerScale = IconDataSolid(0xe62a); + static const IconData solidSpinnerScale = IconData(0xe62a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spinner Scale icon /// /// https://fontawesome.com/icons/spinner-scale?style=regular /// circle, loading, progress, pending - static const IconData spinnerScale = IconDataRegular(0xe62a); + static const IconData spinnerScale = IconData(0xe62a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spinner Scale icon /// /// https://fontawesome.com/icons/spinner-scale?style=light /// circle, loading, progress, pending - static const IconData lightSpinnerScale = IconDataLight(0xe62a); + static const IconData lightSpinnerScale = IconData(0xe62a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spinner Scale icon /// /// https://fontawesome.com/icons/spinner-scale?style=thin /// circle, loading, progress, pending - static const IconData thinSpinnerScale = IconDataThin(0xe62a); + static const IconData thinSpinnerScale = IconData(0xe62a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spinner Third icon /// /// https://fontawesome.com/icons/spinner-third?style=solid /// circle, loading, pending, progress - static const IconData solidSpinnerThird = IconDataSolid(0xf3f4); + static const IconData solidSpinnerThird = IconData(0xf3f4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spinner Third icon /// /// https://fontawesome.com/icons/spinner-third?style=regular /// circle, loading, pending, progress - static const IconData spinnerThird = IconDataRegular(0xf3f4); + static const IconData spinnerThird = IconData(0xf3f4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spinner Third icon /// /// https://fontawesome.com/icons/spinner-third?style=light /// circle, loading, pending, progress - static const IconData lightSpinnerThird = IconDataLight(0xf3f4); + static const IconData lightSpinnerThird = IconData(0xf3f4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spinner Third icon /// /// https://fontawesome.com/icons/spinner-third?style=thin /// circle, loading, pending, progress - static const IconData thinSpinnerThird = IconDataThin(0xf3f4); + static const IconData thinSpinnerThird = IconData(0xf3f4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Split icon /// /// https://fontawesome.com/icons/split?style=solid /// code, divide - static const IconData solidSplit = IconDataSolid(0xe254); + static const IconData solidSplit = IconData(0xe254, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Split icon /// /// https://fontawesome.com/icons/split?style=regular /// code, divide - static const IconData split = IconDataRegular(0xe254); + static const IconData split = IconData(0xe254, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Split icon /// /// https://fontawesome.com/icons/split?style=light /// code, divide - static const IconData lightSplit = IconDataLight(0xe254); + static const IconData lightSplit = IconData(0xe254, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Split icon /// /// https://fontawesome.com/icons/split?style=thin /// code, divide - static const IconData thinSplit = IconDataThin(0xe254); + static const IconData thinSplit = IconData(0xe254, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Splotch icon /// /// https://fontawesome.com/icons/splotch?style=solid /// Ink, blob, blotch, glob, stain - static const IconData solidSplotch = IconDataSolid(0xf5bc); + static const IconData solidSplotch = IconData(0xf5bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Splotch icon /// /// https://fontawesome.com/icons/splotch?style=regular /// Ink, blob, blotch, glob, stain - static const IconData splotch = IconDataRegular(0xf5bc); + static const IconData splotch = IconData(0xf5bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Splotch icon /// /// https://fontawesome.com/icons/splotch?style=light /// Ink, blob, blotch, glob, stain - static const IconData lightSplotch = IconDataLight(0xf5bc); + static const IconData lightSplotch = IconData(0xf5bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Splotch icon /// /// https://fontawesome.com/icons/splotch?style=thin /// Ink, blob, blotch, glob, stain - static const IconData thinSplotch = IconDataThin(0xf5bc); + static const IconData thinSplotch = IconData(0xf5bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spoon icon /// /// https://fontawesome.com/icons/spoon?style=solid /// cutlery, dining, scoop, silverware, spoon, tableware - static const IconData solidSpoon = IconDataSolid(0xf2e5); + static const IconData solidSpoon = IconData(0xf2e5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias utensil-spoon for icon [solidSpoon] @Deprecated('Use "solidSpoon" instead.') @@ -77974,7 +77974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spoon?style=regular /// cutlery, dining, scoop, silverware, spoon, tableware - static const IconData spoon = IconDataRegular(0xf2e5); + static const IconData spoon = IconData(0xf2e5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias utensil-spoon for icon [spoon] @Deprecated('Use "spoon" instead.') @@ -77984,7 +77984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spoon?style=light /// cutlery, dining, scoop, silverware, spoon, tableware - static const IconData lightSpoon = IconDataLight(0xf2e5); + static const IconData lightSpoon = IconData(0xf2e5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias utensil-spoon for icon [lightSpoon] @Deprecated('Use "lightSpoon" instead.') @@ -77994,7 +77994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spoon?style=thin /// cutlery, dining, scoop, silverware, spoon, tableware - static const IconData thinSpoon = IconDataThin(0xf2e5); + static const IconData thinSpoon = IconData(0xf2e5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias utensil-spoon for icon [thinSpoon] @Deprecated('Use "thinSpoon" instead.') @@ -78004,60 +78004,60 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sportsball?style=solid /// baseball, basketball, football, sports, sportsball - static const IconData solidSportsball = IconDataSolid(0xe44b); + static const IconData solidSportsball = IconData(0xe44b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sportsball icon /// /// https://fontawesome.com/icons/sportsball?style=regular /// baseball, basketball, football, sports, sportsball - static const IconData sportsball = IconDataRegular(0xe44b); + static const IconData sportsball = IconData(0xe44b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sportsball icon /// /// https://fontawesome.com/icons/sportsball?style=light /// baseball, basketball, football, sports, sportsball - static const IconData lightSportsball = IconDataLight(0xe44b); + static const IconData lightSportsball = IconData(0xe44b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sportsball icon /// /// https://fontawesome.com/icons/sportsball?style=thin /// baseball, basketball, football, sports, sportsball - static const IconData thinSportsball = IconDataThin(0xe44b); + static const IconData thinSportsball = IconData(0xe44b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Spotify icon /// /// https://fontawesome.com/icons/spotify?style=brands - static const IconData spotify = IconDataBrands(0xf1bc); + static const IconData spotify = IconData(0xf1bc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Spray Can icon /// /// https://fontawesome.com/icons/spray-can?style=solid /// Paint, aerosol, design, graffiti, tag - static const IconData solidSprayCan = IconDataSolid(0xf5bd); + static const IconData solidSprayCan = IconData(0xf5bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Spray Can icon /// /// https://fontawesome.com/icons/spray-can?style=regular /// Paint, aerosol, design, graffiti, tag - static const IconData sprayCan = IconDataRegular(0xf5bd); + static const IconData sprayCan = IconData(0xf5bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Spray Can icon /// /// https://fontawesome.com/icons/spray-can?style=light /// Paint, aerosol, design, graffiti, tag - static const IconData lightSprayCan = IconDataLight(0xf5bd); + static const IconData lightSprayCan = IconData(0xf5bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Spray Can icon /// /// https://fontawesome.com/icons/spray-can?style=thin /// Paint, aerosol, design, graffiti, tag - static const IconData thinSprayCan = IconDataThin(0xf5bd); + static const IconData thinSprayCan = IconData(0xf5bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Spray Can Sparkles icon /// /// https://fontawesome.com/icons/spray-can-sparkles?style=solid /// car, clean, deodorize, fresh, pine, scent - static const IconData solidSprayCanSparkles = IconDataSolid(0xf5d0); + static const IconData solidSprayCanSparkles = IconData(0xf5d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias air-freshener for icon [solidSprayCanSparkles] @Deprecated('Use "solidSprayCanSparkles" instead.') @@ -78067,7 +78067,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spray-can-sparkles?style=regular /// car, clean, deodorize, fresh, pine, scent - static const IconData sprayCanSparkles = IconDataRegular(0xf5d0); + static const IconData sprayCanSparkles = IconData(0xf5d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias air-freshener for icon [sprayCanSparkles] @Deprecated('Use "sprayCanSparkles" instead.') @@ -78077,7 +78077,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spray-can-sparkles?style=light /// car, clean, deodorize, fresh, pine, scent - static const IconData lightSprayCanSparkles = IconDataLight(0xf5d0); + static const IconData lightSprayCanSparkles = IconData(0xf5d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias air-freshener for icon [lightSprayCanSparkles] @Deprecated('Use "lightSprayCanSparkles" instead.') @@ -78087,7 +78087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/spray-can-sparkles?style=thin /// car, clean, deodorize, fresh, pine, scent - static const IconData thinSprayCanSparkles = IconDataThin(0xf5d0); + static const IconData thinSprayCanSparkles = IconData(0xf5d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias air-freshener for icon [thinSprayCanSparkles] @Deprecated('Use "thinSprayCanSparkles" instead.') @@ -78097,391 +78097,391 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sprinkler?style=solid /// grass, lawn, shower, spray, water - static const IconData solidSprinkler = IconDataSolid(0xe035); + static const IconData solidSprinkler = IconData(0xe035, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sprinkler icon /// /// https://fontawesome.com/icons/sprinkler?style=regular /// grass, lawn, shower, spray, water - static const IconData sprinkler = IconDataRegular(0xe035); + static const IconData sprinkler = IconData(0xe035, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sprinkler icon /// /// https://fontawesome.com/icons/sprinkler?style=light /// grass, lawn, shower, spray, water - static const IconData lightSprinkler = IconDataLight(0xe035); + static const IconData lightSprinkler = IconData(0xe035, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sprinkler icon /// /// https://fontawesome.com/icons/sprinkler?style=thin /// grass, lawn, shower, spray, water - static const IconData thinSprinkler = IconDataThin(0xe035); + static const IconData thinSprinkler = IconData(0xe035, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sprinkler Ceiling icon /// /// https://fontawesome.com/icons/sprinkler-ceiling?style=solid /// emergency, fire, water - static const IconData solidSprinklerCeiling = IconDataSolid(0xe44c); + static const IconData solidSprinklerCeiling = IconData(0xe44c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sprinkler Ceiling icon /// /// https://fontawesome.com/icons/sprinkler-ceiling?style=regular /// emergency, fire, water - static const IconData sprinklerCeiling = IconDataRegular(0xe44c); + static const IconData sprinklerCeiling = IconData(0xe44c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sprinkler Ceiling icon /// /// https://fontawesome.com/icons/sprinkler-ceiling?style=light /// emergency, fire, water - static const IconData lightSprinklerCeiling = IconDataLight(0xe44c); + static const IconData lightSprinklerCeiling = IconData(0xe44c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sprinkler Ceiling icon /// /// https://fontawesome.com/icons/sprinkler-ceiling?style=thin /// emergency, fire, water - static const IconData thinSprinklerCeiling = IconDataThin(0xe44c); + static const IconData thinSprinklerCeiling = IconData(0xe44c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square icon /// /// https://fontawesome.com/icons/square?style=solid /// Black Square, black medium square, block, box, geometric, shape, square, white medium square - static const IconData solidSquare = IconDataSolid(0xf0c8); + static const IconData solidSquare = IconData(0xf0c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square icon /// /// https://fontawesome.com/icons/square?style=regular /// Black Square, black medium square, block, box, geometric, shape, square, white medium square - static const IconData square = IconDataRegular(0xf0c8); + static const IconData square = IconData(0xf0c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square icon /// /// https://fontawesome.com/icons/square?style=light /// Black Square, black medium square, block, box, geometric, shape, square, white medium square - static const IconData lightSquare = IconDataLight(0xf0c8); + static const IconData lightSquare = IconData(0xf0c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square icon /// /// https://fontawesome.com/icons/square?style=thin /// Black Square, black medium square, block, box, geometric, shape, square, white medium square - static const IconData thinSquare = IconDataThin(0xf0c8); + static const IconData thinSquare = IconData(0xf0c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 0 icon /// /// https://fontawesome.com/icons/square-0?style=solid /// nada, none, zero, zilch - static const IconData solidSquare0 = IconDataSolid(0xe255); + static const IconData solidSquare0 = IconData(0xe255, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 0 icon /// /// https://fontawesome.com/icons/square-0?style=regular /// nada, none, zero, zilch - static const IconData square0 = IconDataRegular(0xe255); + static const IconData square0 = IconData(0xe255, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 0 icon /// /// https://fontawesome.com/icons/square-0?style=light /// nada, none, zero, zilch - static const IconData lightSquare0 = IconDataLight(0xe255); + static const IconData lightSquare0 = IconData(0xe255, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 0 icon /// /// https://fontawesome.com/icons/square-0?style=thin /// nada, none, zero, zilch - static const IconData thinSquare0 = IconDataThin(0xe255); + static const IconData thinSquare0 = IconData(0xe255, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 1 icon /// /// https://fontawesome.com/icons/square-1?style=solid /// one - static const IconData solidSquare1 = IconDataSolid(0xe256); + static const IconData solidSquare1 = IconData(0xe256, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 1 icon /// /// https://fontawesome.com/icons/square-1?style=regular /// one - static const IconData square1 = IconDataRegular(0xe256); + static const IconData square1 = IconData(0xe256, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 1 icon /// /// https://fontawesome.com/icons/square-1?style=light /// one - static const IconData lightSquare1 = IconDataLight(0xe256); + static const IconData lightSquare1 = IconData(0xe256, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 1 icon /// /// https://fontawesome.com/icons/square-1?style=thin /// one - static const IconData thinSquare1 = IconDataThin(0xe256); + static const IconData thinSquare1 = IconData(0xe256, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 2 icon /// /// https://fontawesome.com/icons/square-2?style=solid /// two - static const IconData solidSquare2 = IconDataSolid(0xe257); + static const IconData solidSquare2 = IconData(0xe257, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 2 icon /// /// https://fontawesome.com/icons/square-2?style=regular /// two - static const IconData square2 = IconDataRegular(0xe257); + static const IconData square2 = IconData(0xe257, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 2 icon /// /// https://fontawesome.com/icons/square-2?style=light /// two - static const IconData lightSquare2 = IconDataLight(0xe257); + static const IconData lightSquare2 = IconData(0xe257, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 2 icon /// /// https://fontawesome.com/icons/square-2?style=thin /// two - static const IconData thinSquare2 = IconDataThin(0xe257); + static const IconData thinSquare2 = IconData(0xe257, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 3 icon /// /// https://fontawesome.com/icons/square-3?style=solid /// three - static const IconData solidSquare3 = IconDataSolid(0xe258); + static const IconData solidSquare3 = IconData(0xe258, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 3 icon /// /// https://fontawesome.com/icons/square-3?style=regular /// three - static const IconData square3 = IconDataRegular(0xe258); + static const IconData square3 = IconData(0xe258, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 3 icon /// /// https://fontawesome.com/icons/square-3?style=light /// three - static const IconData lightSquare3 = IconDataLight(0xe258); + static const IconData lightSquare3 = IconData(0xe258, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 3 icon /// /// https://fontawesome.com/icons/square-3?style=thin /// three - static const IconData thinSquare3 = IconDataThin(0xe258); + static const IconData thinSquare3 = IconData(0xe258, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 4 icon /// /// https://fontawesome.com/icons/square-4?style=solid /// four - static const IconData solidSquare4 = IconDataSolid(0xe259); + static const IconData solidSquare4 = IconData(0xe259, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 4 icon /// /// https://fontawesome.com/icons/square-4?style=regular /// four - static const IconData square4 = IconDataRegular(0xe259); + static const IconData square4 = IconData(0xe259, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 4 icon /// /// https://fontawesome.com/icons/square-4?style=light /// four - static const IconData lightSquare4 = IconDataLight(0xe259); + static const IconData lightSquare4 = IconData(0xe259, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 4 icon /// /// https://fontawesome.com/icons/square-4?style=thin /// four - static const IconData thinSquare4 = IconDataThin(0xe259); + static const IconData thinSquare4 = IconData(0xe259, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 5 icon /// /// https://fontawesome.com/icons/square-5?style=solid /// five - static const IconData solidSquare5 = IconDataSolid(0xe25a); + static const IconData solidSquare5 = IconData(0xe25a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 5 icon /// /// https://fontawesome.com/icons/square-5?style=regular /// five - static const IconData square5 = IconDataRegular(0xe25a); + static const IconData square5 = IconData(0xe25a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 5 icon /// /// https://fontawesome.com/icons/square-5?style=light /// five - static const IconData lightSquare5 = IconDataLight(0xe25a); + static const IconData lightSquare5 = IconData(0xe25a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 5 icon /// /// https://fontawesome.com/icons/square-5?style=thin /// five - static const IconData thinSquare5 = IconDataThin(0xe25a); + static const IconData thinSquare5 = IconData(0xe25a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 6 icon /// /// https://fontawesome.com/icons/square-6?style=solid /// six - static const IconData solidSquare6 = IconDataSolid(0xe25b); + static const IconData solidSquare6 = IconData(0xe25b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 6 icon /// /// https://fontawesome.com/icons/square-6?style=regular /// six - static const IconData square6 = IconDataRegular(0xe25b); + static const IconData square6 = IconData(0xe25b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 6 icon /// /// https://fontawesome.com/icons/square-6?style=light /// six - static const IconData lightSquare6 = IconDataLight(0xe25b); + static const IconData lightSquare6 = IconData(0xe25b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 6 icon /// /// https://fontawesome.com/icons/square-6?style=thin /// six - static const IconData thinSquare6 = IconDataThin(0xe25b); + static const IconData thinSquare6 = IconData(0xe25b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 7 icon /// /// https://fontawesome.com/icons/square-7?style=solid /// seven - static const IconData solidSquare7 = IconDataSolid(0xe25c); + static const IconData solidSquare7 = IconData(0xe25c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 7 icon /// /// https://fontawesome.com/icons/square-7?style=regular /// seven - static const IconData square7 = IconDataRegular(0xe25c); + static const IconData square7 = IconData(0xe25c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 7 icon /// /// https://fontawesome.com/icons/square-7?style=light /// seven - static const IconData lightSquare7 = IconDataLight(0xe25c); + static const IconData lightSquare7 = IconData(0xe25c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 7 icon /// /// https://fontawesome.com/icons/square-7?style=thin /// seven - static const IconData thinSquare7 = IconDataThin(0xe25c); + static const IconData thinSquare7 = IconData(0xe25c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 8 icon /// /// https://fontawesome.com/icons/square-8?style=solid /// eight - static const IconData solidSquare8 = IconDataSolid(0xe25d); + static const IconData solidSquare8 = IconData(0xe25d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 8 icon /// /// https://fontawesome.com/icons/square-8?style=regular /// eight - static const IconData square8 = IconDataRegular(0xe25d); + static const IconData square8 = IconData(0xe25d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 8 icon /// /// https://fontawesome.com/icons/square-8?style=light /// eight - static const IconData lightSquare8 = IconDataLight(0xe25d); + static const IconData lightSquare8 = IconData(0xe25d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 8 icon /// /// https://fontawesome.com/icons/square-8?style=thin /// eight - static const IconData thinSquare8 = IconDataThin(0xe25d); + static const IconData thinSquare8 = IconData(0xe25d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square 9 icon /// /// https://fontawesome.com/icons/square-9?style=solid /// nine - static const IconData solidSquare9 = IconDataSolid(0xe25e); + static const IconData solidSquare9 = IconData(0xe25e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square 9 icon /// /// https://fontawesome.com/icons/square-9?style=regular /// nine - static const IconData square9 = IconDataRegular(0xe25e); + static const IconData square9 = IconData(0xe25e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square 9 icon /// /// https://fontawesome.com/icons/square-9?style=light /// nine - static const IconData lightSquare9 = IconDataLight(0xe25e); + static const IconData lightSquare9 = IconData(0xe25e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square 9 icon /// /// https://fontawesome.com/icons/square-9?style=thin /// nine - static const IconData thinSquare9 = IconDataThin(0xe25e); + static const IconData thinSquare9 = IconData(0xe25e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square A icon /// /// https://fontawesome.com/icons/square-a?style=solid /// letter - static const IconData solidSquareA = IconDataSolid(0xe25f); + static const IconData solidSquareA = IconData(0xe25f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square A icon /// /// https://fontawesome.com/icons/square-a?style=regular /// letter - static const IconData squareA = IconDataRegular(0xe25f); + static const IconData squareA = IconData(0xe25f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square A icon /// /// https://fontawesome.com/icons/square-a?style=light /// letter - static const IconData lightSquareA = IconDataLight(0xe25f); + static const IconData lightSquareA = IconData(0xe25f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square A icon /// /// https://fontawesome.com/icons/square-a?style=thin /// letter - static const IconData thinSquareA = IconDataThin(0xe25f); + static const IconData thinSquareA = IconData(0xe25f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square A Lock icon /// /// https://fontawesome.com/icons/square-a-lock?style=solid /// capital, capslock, letter, padlock, privacy - static const IconData solidSquareALock = IconDataSolid(0xe44d); + static const IconData solidSquareALock = IconData(0xe44d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square A Lock icon /// /// https://fontawesome.com/icons/square-a-lock?style=regular /// capital, capslock, letter, padlock, privacy - static const IconData squareALock = IconDataRegular(0xe44d); + static const IconData squareALock = IconData(0xe44d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square A Lock icon /// /// https://fontawesome.com/icons/square-a-lock?style=light /// capital, capslock, letter, padlock, privacy - static const IconData lightSquareALock = IconDataLight(0xe44d); + static const IconData lightSquareALock = IconData(0xe44d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square A Lock icon /// /// https://fontawesome.com/icons/square-a-lock?style=thin /// capital, capslock, letter, padlock, privacy - static const IconData thinSquareALock = IconDataThin(0xe44d); + static const IconData thinSquareALock = IconData(0xe44d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Ampersand icon /// /// https://fontawesome.com/icons/square-ampersand?style=solid /// and - static const IconData solidSquareAmpersand = IconDataSolid(0xe260); + static const IconData solidSquareAmpersand = IconData(0xe260, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Ampersand icon /// /// https://fontawesome.com/icons/square-ampersand?style=regular /// and - static const IconData squareAmpersand = IconDataRegular(0xe260); + static const IconData squareAmpersand = IconData(0xe260, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Ampersand icon /// /// https://fontawesome.com/icons/square-ampersand?style=light /// and - static const IconData lightSquareAmpersand = IconDataLight(0xe260); + static const IconData lightSquareAmpersand = IconData(0xe260, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Ampersand icon /// /// https://fontawesome.com/icons/square-ampersand?style=thin /// and - static const IconData thinSquareAmpersand = IconDataThin(0xe260); + static const IconData thinSquareAmpersand = IconData(0xe260, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Arrow Down icon /// /// https://fontawesome.com/icons/square-arrow-down?style=solid /// download, insert - static const IconData solidSquareArrowDown = IconDataSolid(0xf339); + static const IconData solidSquareArrowDown = IconData(0xf339, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-down for icon [solidSquareArrowDown] @Deprecated('Use "solidSquareArrowDown" instead.') @@ -78491,7 +78491,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-down?style=regular /// download, insert - static const IconData squareArrowDown = IconDataRegular(0xf339); + static const IconData squareArrowDown = IconData(0xf339, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-down for icon [squareArrowDown] @Deprecated('Use "squareArrowDown" instead.') @@ -78501,7 +78501,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-down?style=light /// download, insert - static const IconData lightSquareArrowDown = IconDataLight(0xf339); + static const IconData lightSquareArrowDown = IconData(0xf339, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-down for icon [lightSquareArrowDown] @Deprecated('Use "lightSquareArrowDown" instead.') @@ -78511,7 +78511,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-down?style=thin /// download, insert - static const IconData thinSquareArrowDown = IconDataThin(0xf339); + static const IconData thinSquareArrowDown = IconData(0xf339, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-down for icon [thinSquareArrowDown] @Deprecated('Use "thinSquareArrowDown" instead.') @@ -78521,55 +78521,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-down-left?style=solid /// diagonal - static const IconData solidSquareArrowDownLeft = IconDataSolid(0xe261); + static const IconData solidSquareArrowDownLeft = IconData(0xe261, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Arrow Down Left icon /// /// https://fontawesome.com/icons/square-arrow-down-left?style=regular /// diagonal - static const IconData squareArrowDownLeft = IconDataRegular(0xe261); + static const IconData squareArrowDownLeft = IconData(0xe261, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Arrow Down Left icon /// /// https://fontawesome.com/icons/square-arrow-down-left?style=light /// diagonal - static const IconData lightSquareArrowDownLeft = IconDataLight(0xe261); + static const IconData lightSquareArrowDownLeft = IconData(0xe261, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Arrow Down Left icon /// /// https://fontawesome.com/icons/square-arrow-down-left?style=thin /// diagonal - static const IconData thinSquareArrowDownLeft = IconDataThin(0xe261); + static const IconData thinSquareArrowDownLeft = IconData(0xe261, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Arrow Down Right icon /// /// https://fontawesome.com/icons/square-arrow-down-right?style=solid /// diagonal - static const IconData solidSquareArrowDownRight = IconDataSolid(0xe262); + static const IconData solidSquareArrowDownRight = IconData(0xe262, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Arrow Down Right icon /// /// https://fontawesome.com/icons/square-arrow-down-right?style=regular /// diagonal - static const IconData squareArrowDownRight = IconDataRegular(0xe262); + static const IconData squareArrowDownRight = IconData(0xe262, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Arrow Down Right icon /// /// https://fontawesome.com/icons/square-arrow-down-right?style=light /// diagonal - static const IconData lightSquareArrowDownRight = IconDataLight(0xe262); + static const IconData lightSquareArrowDownRight = IconData(0xe262, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Arrow Down Right icon /// /// https://fontawesome.com/icons/square-arrow-down-right?style=thin /// diagonal - static const IconData thinSquareArrowDownRight = IconDataThin(0xe262); + static const IconData thinSquareArrowDownRight = IconData(0xe262, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Arrow Left icon /// /// https://fontawesome.com/icons/square-arrow-left?style=solid /// back, previous - static const IconData solidSquareArrowLeft = IconDataSolid(0xf33a); + static const IconData solidSquareArrowLeft = IconData(0xf33a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-left for icon [solidSquareArrowLeft] @Deprecated('Use "solidSquareArrowLeft" instead.') @@ -78579,7 +78579,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-left?style=regular /// back, previous - static const IconData squareArrowLeft = IconDataRegular(0xf33a); + static const IconData squareArrowLeft = IconData(0xf33a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-left for icon [squareArrowLeft] @Deprecated('Use "squareArrowLeft" instead.') @@ -78589,7 +78589,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-left?style=light /// back, previous - static const IconData lightSquareArrowLeft = IconDataLight(0xf33a); + static const IconData lightSquareArrowLeft = IconData(0xf33a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-left for icon [lightSquareArrowLeft] @Deprecated('Use "lightSquareArrowLeft" instead.') @@ -78599,7 +78599,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-left?style=thin /// back, previous - static const IconData thinSquareArrowLeft = IconDataThin(0xf33a); + static const IconData thinSquareArrowLeft = IconData(0xf33a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-left for icon [thinSquareArrowLeft] @Deprecated('Use "thinSquareArrowLeft" instead.') @@ -78609,7 +78609,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-right?style=solid /// forward, next - static const IconData solidSquareArrowRight = IconDataSolid(0xf33b); + static const IconData solidSquareArrowRight = IconData(0xf33b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-right for icon [solidSquareArrowRight] @Deprecated('Use "solidSquareArrowRight" instead.') @@ -78619,7 +78619,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-right?style=regular /// forward, next - static const IconData squareArrowRight = IconDataRegular(0xf33b); + static const IconData squareArrowRight = IconData(0xf33b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-right for icon [squareArrowRight] @Deprecated('Use "squareArrowRight" instead.') @@ -78629,7 +78629,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-right?style=light /// forward, next - static const IconData lightSquareArrowRight = IconDataLight(0xf33b); + static const IconData lightSquareArrowRight = IconData(0xf33b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-right for icon [lightSquareArrowRight] @Deprecated('Use "lightSquareArrowRight" instead.') @@ -78639,7 +78639,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-right?style=thin /// forward, next - static const IconData thinSquareArrowRight = IconDataThin(0xf33b); + static const IconData thinSquareArrowRight = IconData(0xf33b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-right for icon [thinSquareArrowRight] @Deprecated('Use "thinSquareArrowRight" instead.') @@ -78649,7 +78649,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up?style=solid /// upgrade, upload - static const IconData solidSquareArrowUp = IconDataSolid(0xf33c); + static const IconData solidSquareArrowUp = IconData(0xf33c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-up for icon [solidSquareArrowUp] @Deprecated('Use "solidSquareArrowUp" instead.') @@ -78659,7 +78659,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up?style=regular /// upgrade, upload - static const IconData squareArrowUp = IconDataRegular(0xf33c); + static const IconData squareArrowUp = IconData(0xf33c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-up for icon [squareArrowUp] @Deprecated('Use "squareArrowUp" instead.') @@ -78669,7 +78669,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up?style=light /// upgrade, upload - static const IconData lightSquareArrowUp = IconDataLight(0xf33c); + static const IconData lightSquareArrowUp = IconData(0xf33c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-up for icon [lightSquareArrowUp] @Deprecated('Use "lightSquareArrowUp" instead.') @@ -78679,7 +78679,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up?style=thin /// upgrade, upload - static const IconData thinSquareArrowUp = IconDataThin(0xf33c); + static const IconData thinSquareArrowUp = IconData(0xf33c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-square-up for icon [thinSquareArrowUp] @Deprecated('Use "thinSquareArrowUp" instead.') @@ -78689,31 +78689,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up-left?style=solid /// diagonal - static const IconData solidSquareArrowUpLeft = IconDataSolid(0xe263); + static const IconData solidSquareArrowUpLeft = IconData(0xe263, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Arrow Up Left icon /// /// https://fontawesome.com/icons/square-arrow-up-left?style=regular /// diagonal - static const IconData squareArrowUpLeft = IconDataRegular(0xe263); + static const IconData squareArrowUpLeft = IconData(0xe263, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Arrow Up Left icon /// /// https://fontawesome.com/icons/square-arrow-up-left?style=light /// diagonal - static const IconData lightSquareArrowUpLeft = IconDataLight(0xe263); + static const IconData lightSquareArrowUpLeft = IconData(0xe263, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Arrow Up Left icon /// /// https://fontawesome.com/icons/square-arrow-up-left?style=thin /// diagonal - static const IconData thinSquareArrowUpLeft = IconDataThin(0xe263); + static const IconData thinSquareArrowUpLeft = IconData(0xe263, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Arrow Up Right icon /// /// https://fontawesome.com/icons/square-arrow-up-right?style=solid /// diagonal, new, open, send, share - static const IconData solidSquareArrowUpRight = IconDataSolid(0xf14c); + static const IconData solidSquareArrowUpRight = IconData(0xf14c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square for icon [solidSquareArrowUpRight] @Deprecated('Use "solidSquareArrowUpRight" instead.') @@ -78723,7 +78723,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up-right?style=regular /// diagonal, new, open, send, share - static const IconData squareArrowUpRight = IconDataRegular(0xf14c); + static const IconData squareArrowUpRight = IconData(0xf14c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square for icon [squareArrowUpRight] @Deprecated('Use "squareArrowUpRight" instead.') @@ -78733,7 +78733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up-right?style=light /// diagonal, new, open, send, share - static const IconData lightSquareArrowUpRight = IconDataLight(0xf14c); + static const IconData lightSquareArrowUpRight = IconData(0xf14c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square for icon [lightSquareArrowUpRight] @Deprecated('Use "lightSquareArrowUpRight" instead.') @@ -78743,7 +78743,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-arrow-up-right?style=thin /// diagonal, new, open, send, share - static const IconData thinSquareArrowUpRight = IconDataThin(0xf14c); + static const IconData thinSquareArrowUpRight = IconData(0xf14c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square for icon [thinSquareArrowUpRight] @Deprecated('Use "thinSquareArrowUpRight" instead.') @@ -78753,30 +78753,30 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-b?style=solid /// letter - static const IconData solidSquareB = IconDataSolid(0xe264); + static const IconData solidSquareB = IconData(0xe264, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square B icon /// /// https://fontawesome.com/icons/square-b?style=regular /// letter - static const IconData squareB = IconDataRegular(0xe264); + static const IconData squareB = IconData(0xe264, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square B icon /// /// https://fontawesome.com/icons/square-b?style=light /// letter - static const IconData lightSquareB = IconDataLight(0xe264); + static const IconData lightSquareB = IconData(0xe264, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square B icon /// /// https://fontawesome.com/icons/square-b?style=thin /// letter - static const IconData thinSquareB = IconDataThin(0xe264); + static const IconData thinSquareB = IconData(0xe264, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Behance icon /// /// https://fontawesome.com/icons/square-behance?style=brands - static const IconData squareBehance = IconDataBrands(0xf1b5); + static const IconData squareBehance = IconData(0xf1b5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias behance-square for icon [squareBehance] @Deprecated('Use "squareBehance" instead.') @@ -78786,55 +78786,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-bolt?style=solid /// energy, flash, lightning - static const IconData solidSquareBolt = IconDataSolid(0xe265); + static const IconData solidSquareBolt = IconData(0xe265, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Bolt icon /// /// https://fontawesome.com/icons/square-bolt?style=regular /// energy, flash, lightning - static const IconData squareBolt = IconDataRegular(0xe265); + static const IconData squareBolt = IconData(0xe265, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Bolt icon /// /// https://fontawesome.com/icons/square-bolt?style=light /// energy, flash, lightning - static const IconData lightSquareBolt = IconDataLight(0xe265); + static const IconData lightSquareBolt = IconData(0xe265, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Bolt icon /// /// https://fontawesome.com/icons/square-bolt?style=thin /// energy, flash, lightning - static const IconData thinSquareBolt = IconDataThin(0xe265); + static const IconData thinSquareBolt = IconData(0xe265, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square C icon /// /// https://fontawesome.com/icons/square-c?style=solid /// letter - static const IconData solidSquareC = IconDataSolid(0xe266); + static const IconData solidSquareC = IconData(0xe266, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square C icon /// /// https://fontawesome.com/icons/square-c?style=regular /// letter - static const IconData squareC = IconDataRegular(0xe266); + static const IconData squareC = IconData(0xe266, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square C icon /// /// https://fontawesome.com/icons/square-c?style=light /// letter - static const IconData lightSquareC = IconDataLight(0xe266); + static const IconData lightSquareC = IconData(0xe266, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square C icon /// /// https://fontawesome.com/icons/square-c?style=thin /// letter - static const IconData thinSquareC = IconDataThin(0xe266); + static const IconData thinSquareC = IconData(0xe266, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Caret Down icon /// /// https://fontawesome.com/icons/square-caret-down?style=solid /// arrow, caret-square-o-down, dropdown, expand, insert, menu, more, triangle - static const IconData solidSquareCaretDown = IconDataSolid(0xf150); + static const IconData solidSquareCaretDown = IconData(0xf150, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-down for icon [solidSquareCaretDown] @Deprecated('Use "solidSquareCaretDown" instead.') @@ -78844,7 +78844,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-down?style=regular /// arrow, caret-square-o-down, dropdown, expand, insert, menu, more, triangle - static const IconData squareCaretDown = IconDataRegular(0xf150); + static const IconData squareCaretDown = IconData(0xf150, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-down for icon [squareCaretDown] @Deprecated('Use "squareCaretDown" instead.') @@ -78854,7 +78854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-down?style=light /// arrow, caret-square-o-down, dropdown, expand, insert, menu, more, triangle - static const IconData lightSquareCaretDown = IconDataLight(0xf150); + static const IconData lightSquareCaretDown = IconData(0xf150, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-down for icon [lightSquareCaretDown] @Deprecated('Use "lightSquareCaretDown" instead.') @@ -78864,7 +78864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-down?style=thin /// arrow, caret-square-o-down, dropdown, expand, insert, menu, more, triangle - static const IconData thinSquareCaretDown = IconDataThin(0xf150); + static const IconData thinSquareCaretDown = IconData(0xf150, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-down for icon [thinSquareCaretDown] @Deprecated('Use "thinSquareCaretDown" instead.') @@ -78874,7 +78874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-left?style=solid /// arrow, back, caret-square-o-left, previous, triangle - static const IconData solidSquareCaretLeft = IconDataSolid(0xf191); + static const IconData solidSquareCaretLeft = IconData(0xf191, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-left for icon [solidSquareCaretLeft] @Deprecated('Use "solidSquareCaretLeft" instead.') @@ -78884,7 +78884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-left?style=regular /// arrow, back, caret-square-o-left, previous, triangle - static const IconData squareCaretLeft = IconDataRegular(0xf191); + static const IconData squareCaretLeft = IconData(0xf191, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-left for icon [squareCaretLeft] @Deprecated('Use "squareCaretLeft" instead.') @@ -78894,7 +78894,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-left?style=light /// arrow, back, caret-square-o-left, previous, triangle - static const IconData lightSquareCaretLeft = IconDataLight(0xf191); + static const IconData lightSquareCaretLeft = IconData(0xf191, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-left for icon [lightSquareCaretLeft] @Deprecated('Use "lightSquareCaretLeft" instead.') @@ -78904,7 +78904,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-left?style=thin /// arrow, back, caret-square-o-left, previous, triangle - static const IconData thinSquareCaretLeft = IconDataThin(0xf191); + static const IconData thinSquareCaretLeft = IconData(0xf191, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-left for icon [thinSquareCaretLeft] @Deprecated('Use "thinSquareCaretLeft" instead.') @@ -78914,7 +78914,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-right?style=solid /// arrow, caret-square-o-right, forward, next, triangle - static const IconData solidSquareCaretRight = IconDataSolid(0xf152); + static const IconData solidSquareCaretRight = IconData(0xf152, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-right for icon [solidSquareCaretRight] @Deprecated('Use "solidSquareCaretRight" instead.') @@ -78924,7 +78924,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-right?style=regular /// arrow, caret-square-o-right, forward, next, triangle - static const IconData squareCaretRight = IconDataRegular(0xf152); + static const IconData squareCaretRight = IconData(0xf152, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-right for icon [squareCaretRight] @Deprecated('Use "squareCaretRight" instead.') @@ -78934,7 +78934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-right?style=light /// arrow, caret-square-o-right, forward, next, triangle - static const IconData lightSquareCaretRight = IconDataLight(0xf152); + static const IconData lightSquareCaretRight = IconData(0xf152, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-right for icon [lightSquareCaretRight] @Deprecated('Use "lightSquareCaretRight" instead.') @@ -78944,7 +78944,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-right?style=thin /// arrow, caret-square-o-right, forward, next, triangle - static const IconData thinSquareCaretRight = IconDataThin(0xf152); + static const IconData thinSquareCaretRight = IconData(0xf152, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-right for icon [thinSquareCaretRight] @Deprecated('Use "thinSquareCaretRight" instead.') @@ -78954,7 +78954,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-up?style=solid /// arrow, caret-square-o-up, collapse, triangle, upgrade, upload - static const IconData solidSquareCaretUp = IconDataSolid(0xf151); + static const IconData solidSquareCaretUp = IconData(0xf151, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-up for icon [solidSquareCaretUp] @Deprecated('Use "solidSquareCaretUp" instead.') @@ -78964,7 +78964,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-up?style=regular /// arrow, caret-square-o-up, collapse, triangle, upgrade, upload - static const IconData squareCaretUp = IconDataRegular(0xf151); + static const IconData squareCaretUp = IconData(0xf151, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-up for icon [squareCaretUp] @Deprecated('Use "squareCaretUp" instead.') @@ -78974,7 +78974,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-up?style=light /// arrow, caret-square-o-up, collapse, triangle, upgrade, upload - static const IconData lightSquareCaretUp = IconDataLight(0xf151); + static const IconData lightSquareCaretUp = IconData(0xf151, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-up for icon [lightSquareCaretUp] @Deprecated('Use "lightSquareCaretUp" instead.') @@ -78984,7 +78984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-caret-up?style=thin /// arrow, caret-square-o-up, collapse, triangle, upgrade, upload - static const IconData thinSquareCaretUp = IconDataThin(0xf151); + static const IconData thinSquareCaretUp = IconData(0xf151, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias caret-square-up for icon [thinSquareCaretUp] @Deprecated('Use "thinSquareCaretUp" instead.') @@ -78994,7 +78994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-check?style=solid /// accept, agree, box, button, check, check box with check, check mark button, checkmark, confirm, correct, coupon, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData solidSquareCheck = IconDataSolid(0xf14a); + static const IconData solidSquareCheck = IconData(0xf14a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias check-square for icon [solidSquareCheck] @Deprecated('Use "solidSquareCheck" instead.') @@ -79004,7 +79004,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-check?style=regular /// accept, agree, box, button, check, check box with check, check mark button, checkmark, confirm, correct, coupon, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData squareCheck = IconDataRegular(0xf14a); + static const IconData squareCheck = IconData(0xf14a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias check-square for icon [squareCheck] @Deprecated('Use "squareCheck" instead.') @@ -79014,7 +79014,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-check?style=light /// accept, agree, box, button, check, check box with check, check mark button, checkmark, confirm, correct, coupon, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData lightSquareCheck = IconDataLight(0xf14a); + static const IconData lightSquareCheck = IconData(0xf14a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias check-square for icon [lightSquareCheck] @Deprecated('Use "lightSquareCheck" instead.') @@ -79024,7 +79024,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-check?style=thin /// accept, agree, box, button, check, check box with check, check mark button, checkmark, confirm, correct, coupon, done, enable, mark, ok, select, success, tick, todo, validate, working, yes, ✓ - static const IconData thinSquareCheck = IconDataThin(0xf14a); + static const IconData thinSquareCheck = IconData(0xf14a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias check-square for icon [thinSquareCheck] @Deprecated('Use "thinSquareCheck" instead.') @@ -79034,7 +79034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-down?style=solid /// arrow, download, dropdown, expand, insert, menu, more - static const IconData solidSquareChevronDown = IconDataSolid(0xf329); + static const IconData solidSquareChevronDown = IconData(0xf329, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-down for icon [solidSquareChevronDown] @Deprecated('Use "solidSquareChevronDown" instead.') @@ -79044,7 +79044,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-down?style=regular /// arrow, download, dropdown, expand, insert, menu, more - static const IconData squareChevronDown = IconDataRegular(0xf329); + static const IconData squareChevronDown = IconData(0xf329, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-down for icon [squareChevronDown] @Deprecated('Use "squareChevronDown" instead.') @@ -79054,7 +79054,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-down?style=light /// arrow, download, dropdown, expand, insert, menu, more - static const IconData lightSquareChevronDown = IconDataLight(0xf329); + static const IconData lightSquareChevronDown = IconData(0xf329, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-down for icon [lightSquareChevronDown] @Deprecated('Use "lightSquareChevronDown" instead.') @@ -79064,7 +79064,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-down?style=thin /// arrow, download, dropdown, expand, insert, menu, more - static const IconData thinSquareChevronDown = IconDataThin(0xf329); + static const IconData thinSquareChevronDown = IconData(0xf329, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-down for icon [thinSquareChevronDown] @Deprecated('Use "thinSquareChevronDown" instead.') @@ -79074,7 +79074,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-left?style=solid /// arrow, back, previous - static const IconData solidSquareChevronLeft = IconDataSolid(0xf32a); + static const IconData solidSquareChevronLeft = IconData(0xf32a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-left for icon [solidSquareChevronLeft] @Deprecated('Use "solidSquareChevronLeft" instead.') @@ -79084,7 +79084,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-left?style=regular /// arrow, back, previous - static const IconData squareChevronLeft = IconDataRegular(0xf32a); + static const IconData squareChevronLeft = IconData(0xf32a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-left for icon [squareChevronLeft] @Deprecated('Use "squareChevronLeft" instead.') @@ -79094,7 +79094,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-left?style=light /// arrow, back, previous - static const IconData lightSquareChevronLeft = IconDataLight(0xf32a); + static const IconData lightSquareChevronLeft = IconData(0xf32a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-left for icon [lightSquareChevronLeft] @Deprecated('Use "lightSquareChevronLeft" instead.') @@ -79104,7 +79104,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-left?style=thin /// arrow, back, previous - static const IconData thinSquareChevronLeft = IconDataThin(0xf32a); + static const IconData thinSquareChevronLeft = IconData(0xf32a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-left for icon [thinSquareChevronLeft] @Deprecated('Use "thinSquareChevronLeft" instead.') @@ -79114,7 +79114,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-right?style=solid /// arrow, forward, next - static const IconData solidSquareChevronRight = IconDataSolid(0xf32b); + static const IconData solidSquareChevronRight = IconData(0xf32b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-right for icon [solidSquareChevronRight] @Deprecated('Use "solidSquareChevronRight" instead.') @@ -79124,7 +79124,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-right?style=regular /// arrow, forward, next - static const IconData squareChevronRight = IconDataRegular(0xf32b); + static const IconData squareChevronRight = IconData(0xf32b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-right for icon [squareChevronRight] @Deprecated('Use "squareChevronRight" instead.') @@ -79134,7 +79134,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-right?style=light /// arrow, forward, next - static const IconData lightSquareChevronRight = IconDataLight(0xf32b); + static const IconData lightSquareChevronRight = IconData(0xf32b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-right for icon [lightSquareChevronRight] @Deprecated('Use "lightSquareChevronRight" instead.') @@ -79144,7 +79144,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-right?style=thin /// arrow, forward, next - static const IconData thinSquareChevronRight = IconDataThin(0xf32b); + static const IconData thinSquareChevronRight = IconData(0xf32b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-right for icon [thinSquareChevronRight] @Deprecated('Use "thinSquareChevronRight" instead.') @@ -79154,7 +79154,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-up?style=solid /// arrow, collapse, upgrade, upload - static const IconData solidSquareChevronUp = IconDataSolid(0xf32c); + static const IconData solidSquareChevronUp = IconData(0xf32c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-up for icon [solidSquareChevronUp] @Deprecated('Use "solidSquareChevronUp" instead.') @@ -79164,7 +79164,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-up?style=regular /// arrow, collapse, upgrade, upload - static const IconData squareChevronUp = IconDataRegular(0xf32c); + static const IconData squareChevronUp = IconData(0xf32c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-up for icon [squareChevronUp] @Deprecated('Use "squareChevronUp" instead.') @@ -79174,7 +79174,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-up?style=light /// arrow, collapse, upgrade, upload - static const IconData lightSquareChevronUp = IconDataLight(0xf32c); + static const IconData lightSquareChevronUp = IconData(0xf32c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-up for icon [lightSquareChevronUp] @Deprecated('Use "lightSquareChevronUp" instead.') @@ -79184,7 +79184,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-chevron-up?style=thin /// arrow, collapse, upgrade, upload - static const IconData thinSquareChevronUp = IconDataThin(0xf32c); + static const IconData thinSquareChevronUp = IconData(0xf32c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias chevron-square-up for icon [thinSquareChevronUp] @Deprecated('Use "thinSquareChevronUp" instead.') @@ -79194,127 +79194,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-code?style=solid /// code, coding, command, console, development, prompt, terminal - static const IconData solidSquareCode = IconDataSolid(0xe267); + static const IconData solidSquareCode = IconData(0xe267, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Code icon /// /// https://fontawesome.com/icons/square-code?style=regular /// code, coding, command, console, development, prompt, terminal - static const IconData squareCode = IconDataRegular(0xe267); + static const IconData squareCode = IconData(0xe267, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Code icon /// /// https://fontawesome.com/icons/square-code?style=light /// code, coding, command, console, development, prompt, terminal - static const IconData lightSquareCode = IconDataLight(0xe267); + static const IconData lightSquareCode = IconData(0xe267, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Code icon /// /// https://fontawesome.com/icons/square-code?style=thin /// code, coding, command, console, development, prompt, terminal - static const IconData thinSquareCode = IconDataThin(0xe267); + static const IconData thinSquareCode = IconData(0xe267, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square D icon /// /// https://fontawesome.com/icons/square-d?style=solid /// letter - static const IconData solidSquareD = IconDataSolid(0xe268); + static const IconData solidSquareD = IconData(0xe268, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square D icon /// /// https://fontawesome.com/icons/square-d?style=regular /// letter - static const IconData squareD = IconDataRegular(0xe268); + static const IconData squareD = IconData(0xe268, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square D icon /// /// https://fontawesome.com/icons/square-d?style=light /// letter - static const IconData lightSquareD = IconDataLight(0xe268); + static const IconData lightSquareD = IconData(0xe268, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square D icon /// /// https://fontawesome.com/icons/square-d?style=thin /// letter - static const IconData thinSquareD = IconDataThin(0xe268); + static const IconData thinSquareD = IconData(0xe268, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Dashed icon /// /// https://fontawesome.com/icons/square-dashed?style=solid /// add, copy, dashed, dotted, marquee, select, selection - static const IconData solidSquareDashed = IconDataSolid(0xe269); + static const IconData solidSquareDashed = IconData(0xe269, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Dashed icon /// /// https://fontawesome.com/icons/square-dashed?style=regular /// add, copy, dashed, dotted, marquee, select, selection - static const IconData squareDashed = IconDataRegular(0xe269); + static const IconData squareDashed = IconData(0xe269, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Dashed icon /// /// https://fontawesome.com/icons/square-dashed?style=light /// add, copy, dashed, dotted, marquee, select, selection - static const IconData lightSquareDashed = IconDataLight(0xe269); + static const IconData lightSquareDashed = IconData(0xe269, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Dashed icon /// /// https://fontawesome.com/icons/square-dashed?style=thin /// add, copy, dashed, dotted, marquee, select, selection - static const IconData thinSquareDashed = IconDataThin(0xe269); + static const IconData thinSquareDashed = IconData(0xe269, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Dashed Circle Plus icon /// /// https://fontawesome.com/icons/square-dashed-circle-plus?style=solid /// add, copy, dotted, modifier, new, select, selection - static const IconData solidSquareDashedCirclePlus = IconDataSolid(0xe5c2); + static const IconData solidSquareDashedCirclePlus = IconData(0xe5c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Dashed Circle Plus icon /// /// https://fontawesome.com/icons/square-dashed-circle-plus?style=regular /// add, copy, dotted, modifier, new, select, selection - static const IconData squareDashedCirclePlus = IconDataRegular(0xe5c2); + static const IconData squareDashedCirclePlus = IconData(0xe5c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Dashed Circle Plus icon /// /// https://fontawesome.com/icons/square-dashed-circle-plus?style=light /// add, copy, dotted, modifier, new, select, selection - static const IconData lightSquareDashedCirclePlus = IconDataLight(0xe5c2); + static const IconData lightSquareDashedCirclePlus = IconData(0xe5c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Dashed Circle Plus icon /// /// https://fontawesome.com/icons/square-dashed-circle-plus?style=thin /// add, copy, dotted, modifier, new, select, selection - static const IconData thinSquareDashedCirclePlus = IconDataThin(0xe5c2); + static const IconData thinSquareDashedCirclePlus = IconData(0xe5c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Divide icon /// /// https://fontawesome.com/icons/square-divide?style=solid /// algebra, arithmetic, division - static const IconData solidSquareDivide = IconDataSolid(0xe26a); + static const IconData solidSquareDivide = IconData(0xe26a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Divide icon /// /// https://fontawesome.com/icons/square-divide?style=regular /// algebra, arithmetic, division - static const IconData squareDivide = IconDataRegular(0xe26a); + static const IconData squareDivide = IconData(0xe26a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Divide icon /// /// https://fontawesome.com/icons/square-divide?style=light /// algebra, arithmetic, division - static const IconData lightSquareDivide = IconDataLight(0xe26a); + static const IconData lightSquareDivide = IconData(0xe26a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Divide icon /// /// https://fontawesome.com/icons/square-divide?style=thin /// algebra, arithmetic, division - static const IconData thinSquareDivide = IconDataThin(0xe26a); + static const IconData thinSquareDivide = IconData(0xe26a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Dollar icon /// /// https://fontawesome.com/icons/square-dollar?style=solid /// $, coupon, dollar-sign, money, premium, price, salary, usd - static const IconData solidSquareDollar = IconDataSolid(0xf2e9); + static const IconData solidSquareDollar = IconData(0xf2e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias dollar-square for icon [solidSquareDollar] @Deprecated('Use "solidSquareDollar" instead.') @@ -79328,7 +79328,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-dollar?style=regular /// $, coupon, dollar-sign, money, premium, price, salary, usd - static const IconData squareDollar = IconDataRegular(0xf2e9); + static const IconData squareDollar = IconData(0xf2e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias dollar-square for icon [squareDollar] @Deprecated('Use "squareDollar" instead.') @@ -79342,7 +79342,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-dollar?style=light /// $, coupon, dollar-sign, money, premium, price, salary, usd - static const IconData lightSquareDollar = IconDataLight(0xf2e9); + static const IconData lightSquareDollar = IconData(0xf2e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias dollar-square for icon [lightSquareDollar] @Deprecated('Use "lightSquareDollar" instead.') @@ -79356,7 +79356,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-dollar?style=thin /// $, coupon, dollar-sign, money, premium, price, salary, usd - static const IconData thinSquareDollar = IconDataThin(0xf2e9); + static const IconData thinSquareDollar = IconData(0xf2e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias dollar-square for icon [thinSquareDollar] @Deprecated('Use "thinSquareDollar" instead.') @@ -79370,7 +79370,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-down?style=solid /// arrow, cardinal, direction, down, down arrow, download, south - static const IconData solidSquareDown = IconDataSolid(0xf350); + static const IconData solidSquareDown = IconData(0xf350, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-down for icon [solidSquareDown] @Deprecated('Use "solidSquareDown" instead.') @@ -79380,7 +79380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-down?style=regular /// arrow, cardinal, direction, down, down arrow, download, south - static const IconData squareDown = IconDataRegular(0xf350); + static const IconData squareDown = IconData(0xf350, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-down for icon [squareDown] @Deprecated('Use "squareDown" instead.') @@ -79390,7 +79390,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-down?style=light /// arrow, cardinal, direction, down, down arrow, download, south - static const IconData lightSquareDown = IconDataLight(0xf350); + static const IconData lightSquareDown = IconData(0xf350, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-down for icon [lightSquareDown] @Deprecated('Use "lightSquareDown" instead.') @@ -79400,7 +79400,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-down?style=thin /// arrow, cardinal, direction, down, down arrow, download, south - static const IconData thinSquareDown = IconDataThin(0xf350); + static const IconData thinSquareDown = IconData(0xf350, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-down for icon [thinSquareDown] @Deprecated('Use "thinSquareDown" instead.') @@ -79410,54 +79410,54 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-down-left?style=solid /// arrow, diagonal, direction, down-left arrow, intercardinal, southwest - static const IconData solidSquareDownLeft = IconDataSolid(0xe26b); + static const IconData solidSquareDownLeft = IconData(0xe26b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Down Left icon /// /// https://fontawesome.com/icons/square-down-left?style=regular /// arrow, diagonal, direction, down-left arrow, intercardinal, southwest - static const IconData squareDownLeft = IconDataRegular(0xe26b); + static const IconData squareDownLeft = IconData(0xe26b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Down Left icon /// /// https://fontawesome.com/icons/square-down-left?style=light /// arrow, diagonal, direction, down-left arrow, intercardinal, southwest - static const IconData lightSquareDownLeft = IconDataLight(0xe26b); + static const IconData lightSquareDownLeft = IconData(0xe26b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Down Left icon /// /// https://fontawesome.com/icons/square-down-left?style=thin /// arrow, diagonal, direction, down-left arrow, intercardinal, southwest - static const IconData thinSquareDownLeft = IconDataThin(0xe26b); + static const IconData thinSquareDownLeft = IconData(0xe26b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Down Right icon /// /// https://fontawesome.com/icons/square-down-right?style=solid /// arrow, diagonal, direction, down-right arrow, intercardinal, southeast - static const IconData solidSquareDownRight = IconDataSolid(0xe26c); + static const IconData solidSquareDownRight = IconData(0xe26c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Down Right icon /// /// https://fontawesome.com/icons/square-down-right?style=regular /// arrow, diagonal, direction, down-right arrow, intercardinal, southeast - static const IconData squareDownRight = IconDataRegular(0xe26c); + static const IconData squareDownRight = IconData(0xe26c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Down Right icon /// /// https://fontawesome.com/icons/square-down-right?style=light /// arrow, diagonal, direction, down-right arrow, intercardinal, southeast - static const IconData lightSquareDownRight = IconDataLight(0xe26c); + static const IconData lightSquareDownRight = IconData(0xe26c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Down Right icon /// /// https://fontawesome.com/icons/square-down-right?style=thin /// arrow, diagonal, direction, down-right arrow, intercardinal, southeast - static const IconData thinSquareDownRight = IconDataThin(0xe26c); + static const IconData thinSquareDownRight = IconData(0xe26c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Dribbble icon /// /// https://fontawesome.com/icons/square-dribbble?style=brands - static const IconData squareDribbble = IconDataBrands(0xf397); + static const IconData squareDribbble = IconData(0xf397, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias dribbble-square for icon [squareDribbble] @Deprecated('Use "squareDribbble" instead.') @@ -79467,79 +79467,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-e?style=solid /// letter - static const IconData solidSquareE = IconDataSolid(0xe26d); + static const IconData solidSquareE = IconData(0xe26d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square E icon /// /// https://fontawesome.com/icons/square-e?style=regular /// letter - static const IconData squareE = IconDataRegular(0xe26d); + static const IconData squareE = IconData(0xe26d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square E icon /// /// https://fontawesome.com/icons/square-e?style=light /// letter - static const IconData lightSquareE = IconDataLight(0xe26d); + static const IconData lightSquareE = IconData(0xe26d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square E icon /// /// https://fontawesome.com/icons/square-e?style=thin /// letter - static const IconData thinSquareE = IconDataThin(0xe26d); + static const IconData thinSquareE = IconData(0xe26d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Ellipsis icon /// /// https://fontawesome.com/icons/square-ellipsis?style=solid /// dots, menu, three dots - static const IconData solidSquareEllipsis = IconDataSolid(0xe26e); + static const IconData solidSquareEllipsis = IconData(0xe26e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Ellipsis icon /// /// https://fontawesome.com/icons/square-ellipsis?style=regular /// dots, menu, three dots - static const IconData squareEllipsis = IconDataRegular(0xe26e); + static const IconData squareEllipsis = IconData(0xe26e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Ellipsis icon /// /// https://fontawesome.com/icons/square-ellipsis?style=light /// dots, menu, three dots - static const IconData lightSquareEllipsis = IconDataLight(0xe26e); + static const IconData lightSquareEllipsis = IconData(0xe26e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Ellipsis icon /// /// https://fontawesome.com/icons/square-ellipsis?style=thin /// dots, menu, three dots - static const IconData thinSquareEllipsis = IconDataThin(0xe26e); + static const IconData thinSquareEllipsis = IconData(0xe26e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Ellipsis Vertical icon /// /// https://fontawesome.com/icons/square-ellipsis-vertical?style=solid /// dots, menu, three dots - static const IconData solidSquareEllipsisVertical = IconDataSolid(0xe26f); + static const IconData solidSquareEllipsisVertical = IconData(0xe26f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Ellipsis Vertical icon /// /// https://fontawesome.com/icons/square-ellipsis-vertical?style=regular /// dots, menu, three dots - static const IconData squareEllipsisVertical = IconDataRegular(0xe26f); + static const IconData squareEllipsisVertical = IconData(0xe26f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Ellipsis Vertical icon /// /// https://fontawesome.com/icons/square-ellipsis-vertical?style=light /// dots, menu, three dots - static const IconData lightSquareEllipsisVertical = IconDataLight(0xe26f); + static const IconData lightSquareEllipsisVertical = IconData(0xe26f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Ellipsis Vertical icon /// /// https://fontawesome.com/icons/square-ellipsis-vertical?style=thin /// dots, menu, three dots - static const IconData thinSquareEllipsisVertical = IconDataThin(0xe26f); + static const IconData thinSquareEllipsisVertical = IconData(0xe26f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Envelope icon /// /// https://fontawesome.com/icons/square-envelope?style=solid /// e-mail, email, letter, mail, message, notification, offer, support - static const IconData solidSquareEnvelope = IconDataSolid(0xf199); + static const IconData solidSquareEnvelope = IconData(0xf199, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias envelope-square for icon [solidSquareEnvelope] @Deprecated('Use "solidSquareEnvelope" instead.') @@ -79549,7 +79549,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-envelope?style=regular /// e-mail, email, letter, mail, message, notification, offer, support - static const IconData squareEnvelope = IconDataRegular(0xf199); + static const IconData squareEnvelope = IconData(0xf199, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias envelope-square for icon [squareEnvelope] @Deprecated('Use "squareEnvelope" instead.') @@ -79559,7 +79559,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-envelope?style=light /// e-mail, email, letter, mail, message, notification, offer, support - static const IconData lightSquareEnvelope = IconDataLight(0xf199); + static const IconData lightSquareEnvelope = IconData(0xf199, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias envelope-square for icon [lightSquareEnvelope] @Deprecated('Use "lightSquareEnvelope" instead.') @@ -79569,7 +79569,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-envelope?style=thin /// e-mail, email, letter, mail, message, notification, offer, support - static const IconData thinSquareEnvelope = IconDataThin(0xf199); + static const IconData thinSquareEnvelope = IconData(0xf199, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias envelope-square for icon [thinSquareEnvelope] @Deprecated('Use "thinSquareEnvelope" instead.') @@ -79579,7 +79579,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-exclamation?style=solid /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData solidSquareExclamation = IconDataSolid(0xf321); + static const IconData solidSquareExclamation = IconData(0xf321, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-square for icon [solidSquareExclamation] @Deprecated('Use "solidSquareExclamation" instead.') @@ -79589,7 +79589,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-exclamation?style=regular /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData squareExclamation = IconDataRegular(0xf321); + static const IconData squareExclamation = IconData(0xf321, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-square for icon [squareExclamation] @Deprecated('Use "squareExclamation" instead.') @@ -79599,7 +79599,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-exclamation?style=light /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData lightSquareExclamation = IconDataLight(0xf321); + static const IconData lightSquareExclamation = IconData(0xf321, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-square for icon [lightSquareExclamation] @Deprecated('Use "lightSquareExclamation" instead.') @@ -79609,7 +79609,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-exclamation?style=thin /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warning - static const IconData thinSquareExclamation = IconDataThin(0xf321); + static const IconData thinSquareExclamation = IconData(0xf321, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-square for icon [thinSquareExclamation] @Deprecated('Use "thinSquareExclamation" instead.') @@ -79619,31 +79619,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-f?style=solid /// letter - static const IconData solidSquareF = IconDataSolid(0xe270); + static const IconData solidSquareF = IconData(0xe270, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square F icon /// /// https://fontawesome.com/icons/square-f?style=regular /// letter - static const IconData squareF = IconDataRegular(0xe270); + static const IconData squareF = IconData(0xe270, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square F icon /// /// https://fontawesome.com/icons/square-f?style=light /// letter - static const IconData lightSquareF = IconDataLight(0xe270); + static const IconData lightSquareF = IconData(0xe270, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square F icon /// /// https://fontawesome.com/icons/square-f?style=thin /// letter - static const IconData thinSquareF = IconDataThin(0xe270); + static const IconData thinSquareF = IconData(0xe270, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Facebook icon /// /// https://fontawesome.com/icons/square-facebook?style=brands /// fabook, fb, social network - static const IconData squareFacebook = IconDataBrands(0xf082); + static const IconData squareFacebook = IconData(0xf082, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias facebook-square for icon [squareFacebook] @Deprecated('Use "squareFacebook" instead.') @@ -79652,12 +79652,12 @@ class FontAwesomeIcons { /// Brands Font Awesome in Square icon /// /// https://fontawesome.com/icons/square-font-awesome?style=brands - static const IconData squareFontAwesome = IconDataBrands(0xe5ad); + static const IconData squareFontAwesome = IconData(0xe5ad, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Font Awesome in Square with Stroke Outline icon /// /// https://fontawesome.com/icons/square-font-awesome-stroke?style=brands - static const IconData squareFontAwesomeStroke = IconDataBrands(0xf35c); + static const IconData squareFontAwesomeStroke = IconData(0xf35c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias font-awesome-alt for icon [squareFontAwesomeStroke] @Deprecated('Use "squareFontAwesomeStroke" instead.') @@ -79667,7 +79667,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-fragile?style=solid /// broken, careful, glass, package - static const IconData solidSquareFragile = IconDataSolid(0xf49b); + static const IconData solidSquareFragile = IconData(0xf49b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias box-fragile for icon [solidSquareFragile] @Deprecated('Use "solidSquareFragile" instead.') @@ -79681,7 +79681,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-fragile?style=regular /// broken, careful, glass, package - static const IconData squareFragile = IconDataRegular(0xf49b); + static const IconData squareFragile = IconData(0xf49b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias box-fragile for icon [squareFragile] @Deprecated('Use "squareFragile" instead.') @@ -79695,7 +79695,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-fragile?style=light /// broken, careful, glass, package - static const IconData lightSquareFragile = IconDataLight(0xf49b); + static const IconData lightSquareFragile = IconData(0xf49b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias box-fragile for icon [lightSquareFragile] @Deprecated('Use "lightSquareFragile" instead.') @@ -79709,7 +79709,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-fragile?style=thin /// broken, careful, glass, package - static const IconData thinSquareFragile = IconDataThin(0xf49b); + static const IconData thinSquareFragile = IconData(0xf49b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias box-fragile for icon [thinSquareFragile] @Deprecated('Use "thinSquareFragile" instead.') @@ -79723,54 +79723,54 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-full?style=solid /// black large square, block, blue, blue square, box, brown, brown square, geometric, green, green square, orange, orange square, purple, purple square, red, red square, shape, square, white large square, yellow, yellow square - static const IconData solidSquareFull = IconDataSolid(0xf45c); + static const IconData solidSquareFull = IconData(0xf45c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Full icon /// /// https://fontawesome.com/icons/square-full?style=regular /// black large square, block, blue, blue square, box, brown, brown square, geometric, green, green square, orange, orange square, purple, purple square, red, red square, shape, square, white large square, yellow, yellow square - static const IconData squareFull = IconDataRegular(0xf45c); + static const IconData squareFull = IconData(0xf45c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Full icon /// /// https://fontawesome.com/icons/square-full?style=light /// black large square, block, blue, blue square, box, brown, brown square, geometric, green, green square, orange, orange square, purple, purple square, red, red square, shape, square, white large square, yellow, yellow square - static const IconData lightSquareFull = IconDataLight(0xf45c); + static const IconData lightSquareFull = IconData(0xf45c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Full icon /// /// https://fontawesome.com/icons/square-full?style=thin /// black large square, block, blue, blue square, box, brown, brown square, geometric, green, green square, orange, orange square, purple, purple square, red, red square, shape, square, white large square, yellow, yellow square - static const IconData thinSquareFull = IconDataThin(0xf45c); + static const IconData thinSquareFull = IconData(0xf45c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square G icon /// /// https://fontawesome.com/icons/square-g?style=solid /// letter - static const IconData solidSquareG = IconDataSolid(0xe271); + static const IconData solidSquareG = IconData(0xe271, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square G icon /// /// https://fontawesome.com/icons/square-g?style=regular /// letter - static const IconData squareG = IconDataRegular(0xe271); + static const IconData squareG = IconData(0xe271, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square G icon /// /// https://fontawesome.com/icons/square-g?style=light /// letter - static const IconData lightSquareG = IconDataLight(0xe271); + static const IconData lightSquareG = IconData(0xe271, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square G icon /// /// https://fontawesome.com/icons/square-g?style=thin /// letter - static const IconData thinSquareG = IconDataThin(0xe271); + static const IconData thinSquareG = IconData(0xe271, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Git icon /// /// https://fontawesome.com/icons/square-git?style=brands - static const IconData squareGit = IconDataBrands(0xf1d2); + static const IconData squareGit = IconData(0xf1d2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias git-square for icon [squareGit] @Deprecated('Use "squareGit" instead.') @@ -79780,7 +79780,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-github?style=brands /// octocat - static const IconData squareGithub = IconDataBrands(0xf092); + static const IconData squareGithub = IconData(0xf092, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias github-square for icon [squareGithub] @Deprecated('Use "squareGithub" instead.') @@ -79789,7 +79789,7 @@ class FontAwesomeIcons { /// Brands Square Gitlab icon /// /// https://fontawesome.com/icons/square-gitlab?style=brands - static const IconData squareGitlab = IconDataBrands(0xe5ae); + static const IconData squareGitlab = IconData(0xe5ae, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias gitlab-square for icon [squareGitlab] @Deprecated('Use "squareGitlab" instead.') @@ -79799,7 +79799,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-google-plus?style=brands /// social network - static const IconData squareGooglePlus = IconDataBrands(0xf0d4); + static const IconData squareGooglePlus = IconData(0xf0d4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias google-plus-square for icon [squareGooglePlus] @Deprecated('Use "squareGooglePlus" instead.') @@ -79809,7 +79809,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-h?style=solid /// directions, emergency, hospital, hotel, letter, map - static const IconData solidSquareH = IconDataSolid(0xf0fd); + static const IconData solidSquareH = IconData(0xf0fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias h-square for icon [solidSquareH] @Deprecated('Use "solidSquareH" instead.') @@ -79819,7 +79819,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-h?style=regular /// directions, emergency, hospital, hotel, letter, map - static const IconData squareH = IconDataRegular(0xf0fd); + static const IconData squareH = IconData(0xf0fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias h-square for icon [squareH] @Deprecated('Use "squareH" instead.') @@ -79829,7 +79829,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-h?style=light /// directions, emergency, hospital, hotel, letter, map - static const IconData lightSquareH = IconDataLight(0xf0fd); + static const IconData lightSquareH = IconData(0xf0fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias h-square for icon [lightSquareH] @Deprecated('Use "lightSquareH" instead.') @@ -79839,7 +79839,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-h?style=thin /// directions, emergency, hospital, hotel, letter, map - static const IconData thinSquareH = IconDataThin(0xf0fd); + static const IconData thinSquareH = IconData(0xf0fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias h-square for icon [thinSquareH] @Deprecated('Use "thinSquareH" instead.') @@ -79848,7 +79848,7 @@ class FontAwesomeIcons { /// Brands Square Hacker News icon /// /// https://fontawesome.com/icons/square-hacker-news?style=brands - static const IconData squareHackerNews = IconDataBrands(0xf3af); + static const IconData squareHackerNews = IconData(0xf3af, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias hacker-news-square for icon [squareHackerNews] @Deprecated('Use "squareHackerNews" instead.') @@ -79858,7 +79858,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-heart?style=solid /// favorite, heart, heart decoration, like, love, wishlist - static const IconData solidSquareHeart = IconDataSolid(0xf4c8); + static const IconData solidSquareHeart = IconData(0xf4c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-square for icon [solidSquareHeart] @Deprecated('Use "solidSquareHeart" instead.') @@ -79868,7 +79868,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-heart?style=regular /// favorite, heart, heart decoration, like, love, wishlist - static const IconData squareHeart = IconDataRegular(0xf4c8); + static const IconData squareHeart = IconData(0xf4c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-square for icon [squareHeart] @Deprecated('Use "squareHeart" instead.') @@ -79878,7 +79878,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-heart?style=light /// favorite, heart, heart decoration, like, love, wishlist - static const IconData lightSquareHeart = IconDataLight(0xf4c8); + static const IconData lightSquareHeart = IconData(0xf4c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-square for icon [lightSquareHeart] @Deprecated('Use "lightSquareHeart" instead.') @@ -79888,7 +79888,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-heart?style=thin /// favorite, heart, heart decoration, like, love, wishlist - static const IconData thinSquareHeart = IconDataThin(0xf4c8); + static const IconData thinSquareHeart = IconData(0xf4c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-square for icon [thinSquareHeart] @Deprecated('Use "thinSquareHeart" instead.') @@ -79898,31 +79898,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-i?style=solid /// letter - static const IconData solidSquareI = IconDataSolid(0xe272); + static const IconData solidSquareI = IconData(0xe272, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square I icon /// /// https://fontawesome.com/icons/square-i?style=regular /// letter - static const IconData squareI = IconDataRegular(0xe272); + static const IconData squareI = IconData(0xe272, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square I icon /// /// https://fontawesome.com/icons/square-i?style=light /// letter - static const IconData lightSquareI = IconDataLight(0xe272); + static const IconData lightSquareI = IconData(0xe272, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square I icon /// /// https://fontawesome.com/icons/square-i?style=thin /// letter - static const IconData thinSquareI = IconDataThin(0xe272); + static const IconData thinSquareI = IconData(0xe272, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Info icon /// /// https://fontawesome.com/icons/square-info?style=solid /// details, help, information, more, support - static const IconData solidSquareInfo = IconDataSolid(0xf30f); + static const IconData solidSquareInfo = IconData(0xf30f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias info-square for icon [solidSquareInfo] @Deprecated('Use "solidSquareInfo" instead.') @@ -79932,7 +79932,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-info?style=regular /// details, help, information, more, support - static const IconData squareInfo = IconDataRegular(0xf30f); + static const IconData squareInfo = IconData(0xf30f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias info-square for icon [squareInfo] @Deprecated('Use "squareInfo" instead.') @@ -79942,7 +79942,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-info?style=light /// details, help, information, more, support - static const IconData lightSquareInfo = IconDataLight(0xf30f); + static const IconData lightSquareInfo = IconData(0xf30f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias info-square for icon [lightSquareInfo] @Deprecated('Use "lightSquareInfo" instead.') @@ -79952,7 +79952,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-info?style=thin /// details, help, information, more, support - static const IconData thinSquareInfo = IconDataThin(0xf30f); + static const IconData thinSquareInfo = IconData(0xf30f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias info-square for icon [thinSquareInfo] @Deprecated('Use "thinSquareInfo" instead.') @@ -79961,7 +79961,7 @@ class FontAwesomeIcons { /// Brands Square Instagram icon /// /// https://fontawesome.com/icons/square-instagram?style=brands - static const IconData squareInstagram = IconDataBrands(0xe055); + static const IconData squareInstagram = IconData(0xe055, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias instagram-square for icon [squareInstagram] @Deprecated('Use "squareInstagram" instead.') @@ -79971,30 +79971,30 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-j?style=solid /// letter - static const IconData solidSquareJ = IconDataSolid(0xe273); + static const IconData solidSquareJ = IconData(0xe273, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square J icon /// /// https://fontawesome.com/icons/square-j?style=regular /// letter - static const IconData squareJ = IconDataRegular(0xe273); + static const IconData squareJ = IconData(0xe273, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square J icon /// /// https://fontawesome.com/icons/square-j?style=light /// letter - static const IconData lightSquareJ = IconDataLight(0xe273); + static const IconData lightSquareJ = IconData(0xe273, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square J icon /// /// https://fontawesome.com/icons/square-j?style=thin /// letter - static const IconData thinSquareJ = IconDataThin(0xe273); + static const IconData thinSquareJ = IconData(0xe273, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Js icon /// /// https://fontawesome.com/icons/square-js?style=brands - static const IconData squareJs = IconDataBrands(0xf3b9); + static const IconData squareJs = IconData(0xf3b9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias js-square for icon [squareJs] @Deprecated('Use "squareJs" instead.') @@ -80004,78 +80004,78 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-k?style=solid /// letter - static const IconData solidSquareK = IconDataSolid(0xe274); + static const IconData solidSquareK = IconData(0xe274, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square K icon /// /// https://fontawesome.com/icons/square-k?style=regular /// letter - static const IconData squareK = IconDataRegular(0xe274); + static const IconData squareK = IconData(0xe274, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square K icon /// /// https://fontawesome.com/icons/square-k?style=light /// letter - static const IconData lightSquareK = IconDataLight(0xe274); + static const IconData lightSquareK = IconData(0xe274, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square K icon /// /// https://fontawesome.com/icons/square-k?style=thin /// letter - static const IconData thinSquareK = IconDataThin(0xe274); + static const IconData thinSquareK = IconData(0xe274, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Kanban icon /// /// https://fontawesome.com/icons/square-kanban?style=solid /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData solidSquareKanban = IconDataSolid(0xe488); + static const IconData solidSquareKanban = IconData(0xe488, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Kanban icon /// /// https://fontawesome.com/icons/square-kanban?style=regular /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData squareKanban = IconDataRegular(0xe488); + static const IconData squareKanban = IconData(0xe488, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Kanban icon /// /// https://fontawesome.com/icons/square-kanban?style=light /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData lightSquareKanban = IconDataLight(0xe488); + static const IconData lightSquareKanban = IconData(0xe488, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Kanban icon /// /// https://fontawesome.com/icons/square-kanban?style=thin /// board, chart, graph, kanban, list, organize, project, statistics - static const IconData thinSquareKanban = IconDataThin(0xe488); + static const IconData thinSquareKanban = IconData(0xe488, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square L icon /// /// https://fontawesome.com/icons/square-l?style=solid /// letter - static const IconData solidSquareL = IconDataSolid(0xe275); + static const IconData solidSquareL = IconData(0xe275, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square L icon /// /// https://fontawesome.com/icons/square-l?style=regular /// letter - static const IconData squareL = IconDataRegular(0xe275); + static const IconData squareL = IconData(0xe275, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square L icon /// /// https://fontawesome.com/icons/square-l?style=light /// letter - static const IconData lightSquareL = IconDataLight(0xe275); + static const IconData lightSquareL = IconData(0xe275, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square L icon /// /// https://fontawesome.com/icons/square-l?style=thin /// letter - static const IconData thinSquareL = IconDataThin(0xe275); + static const IconData thinSquareL = IconData(0xe275, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Lastfm icon /// /// https://fontawesome.com/icons/square-lastfm?style=brands - static const IconData squareLastfm = IconDataBrands(0xf203); + static const IconData squareLastfm = IconData(0xf203, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias lastfm-square for icon [squareLastfm] @Deprecated('Use "squareLastfm" instead.') @@ -80085,7 +80085,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-left?style=solid /// arrow, back, cardinal, direction, left arrow, previous, west - static const IconData solidSquareLeft = IconDataSolid(0xf351); + static const IconData solidSquareLeft = IconData(0xf351, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-left for icon [solidSquareLeft] @Deprecated('Use "solidSquareLeft" instead.') @@ -80095,7 +80095,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-left?style=regular /// arrow, back, cardinal, direction, left arrow, previous, west - static const IconData squareLeft = IconDataRegular(0xf351); + static const IconData squareLeft = IconData(0xf351, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-left for icon [squareLeft] @Deprecated('Use "squareLeft" instead.') @@ -80105,7 +80105,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-left?style=light /// arrow, back, cardinal, direction, left arrow, previous, west - static const IconData lightSquareLeft = IconDataLight(0xf351); + static const IconData lightSquareLeft = IconData(0xf351, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-left for icon [lightSquareLeft] @Deprecated('Use "lightSquareLeft" instead.') @@ -80115,7 +80115,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-left?style=thin /// arrow, back, cardinal, direction, left arrow, previous, west - static const IconData thinSquareLeft = IconDataThin(0xf351); + static const IconData thinSquareLeft = IconData(0xf351, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-left for icon [thinSquareLeft] @Deprecated('Use "thinSquareLeft" instead.') @@ -80124,61 +80124,61 @@ class FontAwesomeIcons { /// Brands Square Letterboxd icon /// /// https://fontawesome.com/icons/square-letterboxd?style=brands - static const IconData squareLetterboxd = IconDataBrands(0xe62e); + static const IconData squareLetterboxd = IconData(0xe62e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Square List icon /// /// https://fontawesome.com/icons/square-list?style=solid /// cheatsheet, checklist, completed, done, menu, ol, summary, ul - static const IconData solidSquareList = IconDataSolid(0xe489); + static const IconData solidSquareList = IconData(0xe489, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square List icon /// /// https://fontawesome.com/icons/square-list?style=regular /// cheatsheet, checklist, completed, done, menu, ol, summary, ul - static const IconData squareList = IconDataRegular(0xe489); + static const IconData squareList = IconData(0xe489, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square List icon /// /// https://fontawesome.com/icons/square-list?style=light /// cheatsheet, checklist, completed, done, menu, ol, summary, ul - static const IconData lightSquareList = IconDataLight(0xe489); + static const IconData lightSquareList = IconData(0xe489, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square List icon /// /// https://fontawesome.com/icons/square-list?style=thin /// cheatsheet, checklist, completed, done, menu, ol, summary, ul - static const IconData thinSquareList = IconDataThin(0xe489); + static const IconData thinSquareList = IconData(0xe489, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square M icon /// /// https://fontawesome.com/icons/square-m?style=solid /// letter - static const IconData solidSquareM = IconDataSolid(0xe276); + static const IconData solidSquareM = IconData(0xe276, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square M icon /// /// https://fontawesome.com/icons/square-m?style=regular /// letter - static const IconData squareM = IconDataRegular(0xe276); + static const IconData squareM = IconData(0xe276, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square M icon /// /// https://fontawesome.com/icons/square-m?style=light /// letter - static const IconData lightSquareM = IconDataLight(0xe276); + static const IconData lightSquareM = IconData(0xe276, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square M icon /// /// https://fontawesome.com/icons/square-m?style=thin /// letter - static const IconData thinSquareM = IconDataThin(0xe276); + static const IconData thinSquareM = IconData(0xe276, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Minus icon /// /// https://fontawesome.com/icons/square-minus?style=solid /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData solidSquareMinus = IconDataSolid(0xf146); + static const IconData solidSquareMinus = IconData(0xf146, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias minus-square for icon [solidSquareMinus] @Deprecated('Use "solidSquareMinus" instead.') @@ -80188,7 +80188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-minus?style=regular /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData squareMinus = IconDataRegular(0xf146); + static const IconData squareMinus = IconData(0xf146, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias minus-square for icon [squareMinus] @Deprecated('Use "squareMinus" instead.') @@ -80198,7 +80198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-minus?style=light /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData lightSquareMinus = IconDataLight(0xf146); + static const IconData lightSquareMinus = IconData(0xf146, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias minus-square for icon [lightSquareMinus] @Deprecated('Use "lightSquareMinus" instead.') @@ -80208,7 +80208,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-minus?style=thin /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData thinSquareMinus = IconDataThin(0xf146); + static const IconData thinSquareMinus = IconData(0xf146, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias minus-square for icon [thinSquareMinus] @Deprecated('Use "thinSquareMinus" instead.') @@ -80218,78 +80218,78 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-n?style=solid /// letter, nay, no - static const IconData solidSquareN = IconDataSolid(0xe277); + static const IconData solidSquareN = IconData(0xe277, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square N icon /// /// https://fontawesome.com/icons/square-n?style=regular /// letter, nay, no - static const IconData squareN = IconDataRegular(0xe277); + static const IconData squareN = IconData(0xe277, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square N icon /// /// https://fontawesome.com/icons/square-n?style=light /// letter, nay, no - static const IconData lightSquareN = IconDataLight(0xe277); + static const IconData lightSquareN = IconData(0xe277, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square N icon /// /// https://fontawesome.com/icons/square-n?style=thin /// letter, nay, no - static const IconData thinSquareN = IconDataThin(0xe277); + static const IconData thinSquareN = IconData(0xe277, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Nfi icon /// /// https://fontawesome.com/icons/square-nfi?style=solid /// non-food item, supplies - static const IconData solidSquareNfi = IconDataSolid(0xe576); + static const IconData solidSquareNfi = IconData(0xe576, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Nfi icon /// /// https://fontawesome.com/icons/square-nfi?style=regular /// non-food item, supplies - static const IconData squareNfi = IconDataRegular(0xe576); + static const IconData squareNfi = IconData(0xe576, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Nfi icon /// /// https://fontawesome.com/icons/square-nfi?style=light /// non-food item, supplies - static const IconData lightSquareNfi = IconDataLight(0xe576); + static const IconData lightSquareNfi = IconData(0xe576, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Nfi icon /// /// https://fontawesome.com/icons/square-nfi?style=thin /// non-food item, supplies - static const IconData thinSquareNfi = IconDataThin(0xe576); + static const IconData thinSquareNfi = IconData(0xe576, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square O icon /// /// https://fontawesome.com/icons/square-o?style=solid /// letter - static const IconData solidSquareO = IconDataSolid(0xe278); + static const IconData solidSquareO = IconData(0xe278, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square O icon /// /// https://fontawesome.com/icons/square-o?style=regular /// letter - static const IconData squareO = IconDataRegular(0xe278); + static const IconData squareO = IconData(0xe278, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square O icon /// /// https://fontawesome.com/icons/square-o?style=light /// letter - static const IconData lightSquareO = IconDataLight(0xe278); + static const IconData lightSquareO = IconData(0xe278, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square O icon /// /// https://fontawesome.com/icons/square-o?style=thin /// letter - static const IconData thinSquareO = IconDataThin(0xe278); + static const IconData thinSquareO = IconData(0xe278, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Odnoklassniki icon /// /// https://fontawesome.com/icons/square-odnoklassniki?style=brands - static const IconData squareOdnoklassniki = IconDataBrands(0xf264); + static const IconData squareOdnoklassniki = IconData(0xf264, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias odnoklassniki-square for icon [squareOdnoklassniki] @Deprecated('Use "squareOdnoklassniki" instead.') @@ -80299,31 +80299,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-p?style=solid /// letter - static const IconData solidSquareP = IconDataSolid(0xe279); + static const IconData solidSquareP = IconData(0xe279, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square P icon /// /// https://fontawesome.com/icons/square-p?style=regular /// letter - static const IconData squareP = IconDataRegular(0xe279); + static const IconData squareP = IconData(0xe279, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square P icon /// /// https://fontawesome.com/icons/square-p?style=light /// letter - static const IconData lightSquareP = IconDataLight(0xe279); + static const IconData lightSquareP = IconData(0xe279, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square P icon /// /// https://fontawesome.com/icons/square-p?style=thin /// letter - static const IconData thinSquareP = IconDataThin(0xe279); + static const IconData thinSquareP = IconData(0xe279, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Parking icon /// /// https://fontawesome.com/icons/square-parking?style=solid /// auto, car, garage, meter, parking - static const IconData solidSquareParking = IconDataSolid(0xf540); + static const IconData solidSquareParking = IconData(0xf540, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parking for icon [solidSquareParking] @Deprecated('Use "solidSquareParking" instead.') @@ -80333,7 +80333,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking?style=regular /// auto, car, garage, meter, parking - static const IconData squareParking = IconDataRegular(0xf540); + static const IconData squareParking = IconData(0xf540, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parking for icon [squareParking] @Deprecated('Use "squareParking" instead.') @@ -80343,7 +80343,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking?style=light /// auto, car, garage, meter, parking - static const IconData lightSquareParking = IconDataLight(0xf540); + static const IconData lightSquareParking = IconData(0xf540, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parking for icon [lightSquareParking] @Deprecated('Use "lightSquareParking" instead.') @@ -80353,7 +80353,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking?style=thin /// auto, car, garage, meter, parking - static const IconData thinSquareParking = IconDataThin(0xf540); + static const IconData thinSquareParking = IconData(0xf540, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parking for icon [thinSquareParking] @Deprecated('Use "thinSquareParking" instead.') @@ -80363,7 +80363,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking-slash?style=solid /// auto, car, disabled, garage, meter - static const IconData solidSquareParkingSlash = IconDataSolid(0xf617); + static const IconData solidSquareParkingSlash = IconData(0xf617, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias parking-slash for icon [solidSquareParkingSlash] @Deprecated('Use "solidSquareParkingSlash" instead.') @@ -80373,7 +80373,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking-slash?style=regular /// auto, car, disabled, garage, meter - static const IconData squareParkingSlash = IconDataRegular(0xf617); + static const IconData squareParkingSlash = IconData(0xf617, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias parking-slash for icon [squareParkingSlash] @Deprecated('Use "squareParkingSlash" instead.') @@ -80383,7 +80383,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking-slash?style=light /// auto, car, disabled, garage, meter - static const IconData lightSquareParkingSlash = IconDataLight(0xf617); + static const IconData lightSquareParkingSlash = IconData(0xf617, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias parking-slash for icon [lightSquareParkingSlash] @Deprecated('Use "lightSquareParkingSlash" instead.') @@ -80393,7 +80393,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-parking-slash?style=thin /// auto, car, disabled, garage, meter - static const IconData thinSquareParkingSlash = IconDataThin(0xf617); + static const IconData thinSquareParkingSlash = IconData(0xf617, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias parking-slash for icon [thinSquareParkingSlash] @Deprecated('Use "thinSquareParkingSlash" instead.') @@ -80403,7 +80403,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-pen?style=solid /// edit, modify, pencil-square, update, write - static const IconData solidSquarePen = IconDataSolid(0xf14b); + static const IconData solidSquarePen = IconData(0xf14b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias pen-square for icon [solidSquarePen] @Deprecated('Use "solidSquarePen" instead.') @@ -80417,7 +80417,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-pen?style=regular /// edit, modify, pencil-square, update, write - static const IconData squarePen = IconDataRegular(0xf14b); + static const IconData squarePen = IconData(0xf14b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias pen-square for icon [squarePen] @Deprecated('Use "squarePen" instead.') @@ -80431,7 +80431,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-pen?style=light /// edit, modify, pencil-square, update, write - static const IconData lightSquarePen = IconDataLight(0xf14b); + static const IconData lightSquarePen = IconData(0xf14b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias pen-square for icon [lightSquarePen] @Deprecated('Use "lightSquarePen" instead.') @@ -80445,7 +80445,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-pen?style=thin /// edit, modify, pencil-square, update, write - static const IconData thinSquarePen = IconDataThin(0xf14b); + static const IconData thinSquarePen = IconData(0xf14b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias pen-square for icon [thinSquarePen] @Deprecated('Use "thinSquarePen" instead.') @@ -80459,31 +80459,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-person-confined?style=solid /// captivity, confined, uer - static const IconData solidSquarePersonConfined = IconDataSolid(0xe577); + static const IconData solidSquarePersonConfined = IconData(0xe577, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Person Confined icon /// /// https://fontawesome.com/icons/square-person-confined?style=regular /// captivity, confined, uer - static const IconData squarePersonConfined = IconDataRegular(0xe577); + static const IconData squarePersonConfined = IconData(0xe577, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Person Confined icon /// /// https://fontawesome.com/icons/square-person-confined?style=light /// captivity, confined, uer - static const IconData lightSquarePersonConfined = IconDataLight(0xe577); + static const IconData lightSquarePersonConfined = IconData(0xe577, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Person Confined icon /// /// https://fontawesome.com/icons/square-person-confined?style=thin /// captivity, confined, uer - static const IconData thinSquarePersonConfined = IconDataThin(0xe577); + static const IconData thinSquarePersonConfined = IconData(0xe577, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Phone icon /// /// https://fontawesome.com/icons/square-phone?style=solid /// call, earphone, number, support, telephone, voice - static const IconData solidSquarePhone = IconDataSolid(0xf098); + static const IconData solidSquarePhone = IconData(0xf098, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-square for icon [solidSquarePhone] @Deprecated('Use "solidSquarePhone" instead.') @@ -80493,7 +80493,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone?style=regular /// call, earphone, number, support, telephone, voice - static const IconData squarePhone = IconDataRegular(0xf098); + static const IconData squarePhone = IconData(0xf098, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-square for icon [squarePhone] @Deprecated('Use "squarePhone" instead.') @@ -80503,7 +80503,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone?style=light /// call, earphone, number, support, telephone, voice - static const IconData lightSquarePhone = IconDataLight(0xf098); + static const IconData lightSquarePhone = IconData(0xf098, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-square for icon [lightSquarePhone] @Deprecated('Use "lightSquarePhone" instead.') @@ -80513,7 +80513,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone?style=thin /// call, earphone, number, support, telephone, voice - static const IconData thinSquarePhone = IconDataThin(0xf098); + static const IconData thinSquarePhone = IconData(0xf098, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-square for icon [thinSquarePhone] @Deprecated('Use "thinSquarePhone" instead.') @@ -80523,7 +80523,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-flip?style=solid /// call, earphone, number, support, telephone, voice - static const IconData solidSquarePhoneFlip = IconDataSolid(0xf87b); + static const IconData solidSquarePhoneFlip = IconData(0xf87b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-alt for icon [solidSquarePhoneFlip] @Deprecated('Use "solidSquarePhoneFlip" instead.') @@ -80533,7 +80533,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-flip?style=regular /// call, earphone, number, support, telephone, voice - static const IconData squarePhoneFlip = IconDataRegular(0xf87b); + static const IconData squarePhoneFlip = IconData(0xf87b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-alt for icon [squarePhoneFlip] @Deprecated('Use "squarePhoneFlip" instead.') @@ -80543,7 +80543,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-flip?style=light /// call, earphone, number, support, telephone, voice - static const IconData lightSquarePhoneFlip = IconDataLight(0xf87b); + static const IconData lightSquarePhoneFlip = IconData(0xf87b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-alt for icon [lightSquarePhoneFlip] @Deprecated('Use "lightSquarePhoneFlip" instead.') @@ -80553,7 +80553,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-flip?style=thin /// call, earphone, number, support, telephone, voice - static const IconData thinSquarePhoneFlip = IconDataThin(0xf87b); + static const IconData thinSquarePhoneFlip = IconData(0xf87b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-alt for icon [thinSquarePhoneFlip] @Deprecated('Use "thinSquarePhoneFlip" instead.') @@ -80563,7 +80563,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-hangup?style=solid /// call, end, handset - static const IconData solidSquarePhoneHangup = IconDataSolid(0xe27a); + static const IconData solidSquarePhoneHangup = IconData(0xe27a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-down for icon [solidSquarePhoneHangup] @Deprecated('Use "solidSquarePhoneHangup" instead.') @@ -80573,7 +80573,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-hangup?style=regular /// call, end, handset - static const IconData squarePhoneHangup = IconDataRegular(0xe27a); + static const IconData squarePhoneHangup = IconData(0xe27a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-down for icon [squarePhoneHangup] @Deprecated('Use "squarePhoneHangup" instead.') @@ -80583,7 +80583,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-hangup?style=light /// call, end, handset - static const IconData lightSquarePhoneHangup = IconDataLight(0xe27a); + static const IconData lightSquarePhoneHangup = IconData(0xe27a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-down for icon [lightSquarePhoneHangup] @Deprecated('Use "lightSquarePhoneHangup" instead.') @@ -80593,7 +80593,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-phone-hangup?style=thin /// call, end, handset - static const IconData thinSquarePhoneHangup = IconDataThin(0xe27a); + static const IconData thinSquarePhoneHangup = IconData(0xe27a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias phone-square-down for icon [thinSquarePhoneHangup] @Deprecated('Use "thinSquarePhoneHangup" instead.') @@ -80602,7 +80602,7 @@ class FontAwesomeIcons { /// Brands Pied Piper Square Logo (Old) icon /// /// https://fontawesome.com/icons/square-pied-piper?style=brands - static const IconData squarePiedPiper = IconDataBrands(0xe01e); + static const IconData squarePiedPiper = IconData(0xe01e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias pied-piper-square for icon [squarePiedPiper] @Deprecated('Use "squarePiedPiper" instead.') @@ -80611,7 +80611,7 @@ class FontAwesomeIcons { /// Brands Square Pinterest icon /// /// https://fontawesome.com/icons/square-pinterest?style=brands - static const IconData squarePinterest = IconDataBrands(0xf0d3); + static const IconData squarePinterest = IconData(0xf0d3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias pinterest-square for icon [squarePinterest] @Deprecated('Use "squarePinterest" instead.') @@ -80621,7 +80621,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-plus?style=solid /// add, create, expand, new, positive, shape - static const IconData solidSquarePlus = IconDataSolid(0xf0fe); + static const IconData solidSquarePlus = IconData(0xf0fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias plus-square for icon [solidSquarePlus] @Deprecated('Use "solidSquarePlus" instead.') @@ -80631,7 +80631,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-plus?style=regular /// add, create, expand, new, positive, shape - static const IconData squarePlus = IconDataRegular(0xf0fe); + static const IconData squarePlus = IconData(0xf0fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias plus-square for icon [squarePlus] @Deprecated('Use "squarePlus" instead.') @@ -80641,7 +80641,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-plus?style=light /// add, create, expand, new, positive, shape - static const IconData lightSquarePlus = IconDataLight(0xf0fe); + static const IconData lightSquarePlus = IconData(0xf0fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias plus-square for icon [lightSquarePlus] @Deprecated('Use "lightSquarePlus" instead.') @@ -80651,7 +80651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-plus?style=thin /// add, create, expand, new, positive, shape - static const IconData thinSquarePlus = IconDataThin(0xf0fe); + static const IconData thinSquarePlus = IconData(0xf0fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias plus-square for icon [thinSquarePlus] @Deprecated('Use "thinSquarePlus" instead.') @@ -80661,7 +80661,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-horizontal?style=solid /// chart, graph, results, statistics, survey, trend, vote, voting - static const IconData solidSquarePollHorizontal = IconDataSolid(0xf682); + static const IconData solidSquarePollHorizontal = IconData(0xf682, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias poll-h for icon [solidSquarePollHorizontal] @Deprecated('Use "solidSquarePollHorizontal" instead.') @@ -80671,7 +80671,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-horizontal?style=regular /// chart, graph, results, statistics, survey, trend, vote, voting - static const IconData squarePollHorizontal = IconDataRegular(0xf682); + static const IconData squarePollHorizontal = IconData(0xf682, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias poll-h for icon [squarePollHorizontal] @Deprecated('Use "squarePollHorizontal" instead.') @@ -80681,7 +80681,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-horizontal?style=light /// chart, graph, results, statistics, survey, trend, vote, voting - static const IconData lightSquarePollHorizontal = IconDataLight(0xf682); + static const IconData lightSquarePollHorizontal = IconData(0xf682, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias poll-h for icon [lightSquarePollHorizontal] @Deprecated('Use "lightSquarePollHorizontal" instead.') @@ -80691,7 +80691,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-horizontal?style=thin /// chart, graph, results, statistics, survey, trend, vote, voting - static const IconData thinSquarePollHorizontal = IconDataThin(0xf682); + static const IconData thinSquarePollHorizontal = IconData(0xf682, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias poll-h for icon [thinSquarePollHorizontal] @Deprecated('Use "thinSquarePollHorizontal" instead.') @@ -80701,7 +80701,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-vertical?style=solid /// chart, graph, results, revenue, statistics, survey, trend, vote, voting - static const IconData solidSquarePollVertical = IconDataSolid(0xf681); + static const IconData solidSquarePollVertical = IconData(0xf681, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias poll for icon [solidSquarePollVertical] @Deprecated('Use "solidSquarePollVertical" instead.') @@ -80711,7 +80711,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-vertical?style=regular /// chart, graph, results, revenue, statistics, survey, trend, vote, voting - static const IconData squarePollVertical = IconDataRegular(0xf681); + static const IconData squarePollVertical = IconData(0xf681, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias poll for icon [squarePollVertical] @Deprecated('Use "squarePollVertical" instead.') @@ -80721,7 +80721,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-vertical?style=light /// chart, graph, results, revenue, statistics, survey, trend, vote, voting - static const IconData lightSquarePollVertical = IconDataLight(0xf681); + static const IconData lightSquarePollVertical = IconData(0xf681, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias poll for icon [lightSquarePollVertical] @Deprecated('Use "lightSquarePollVertical" instead.') @@ -80731,7 +80731,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-poll-vertical?style=thin /// chart, graph, results, revenue, statistics, survey, trend, vote, voting - static const IconData thinSquarePollVertical = IconDataThin(0xf681); + static const IconData thinSquarePollVertical = IconData(0xf681, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias poll for icon [thinSquarePollVertical] @Deprecated('Use "thinSquarePollVertical" instead.') @@ -80741,55 +80741,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-q?style=solid /// letter - static const IconData solidSquareQ = IconDataSolid(0xe27b); + static const IconData solidSquareQ = IconData(0xe27b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Q icon /// /// https://fontawesome.com/icons/square-q?style=regular /// letter - static const IconData squareQ = IconDataRegular(0xe27b); + static const IconData squareQ = IconData(0xe27b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Q icon /// /// https://fontawesome.com/icons/square-q?style=light /// letter - static const IconData lightSquareQ = IconDataLight(0xe27b); + static const IconData lightSquareQ = IconData(0xe27b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Q icon /// /// https://fontawesome.com/icons/square-q?style=thin /// letter - static const IconData thinSquareQ = IconDataThin(0xe27b); + static const IconData thinSquareQ = IconData(0xe27b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Quarters icon /// /// https://fontawesome.com/icons/square-quarters?style=solid /// damper, fire, vent - static const IconData solidSquareQuarters = IconDataSolid(0xe44e); + static const IconData solidSquareQuarters = IconData(0xe44e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Quarters icon /// /// https://fontawesome.com/icons/square-quarters?style=regular /// damper, fire, vent - static const IconData squareQuarters = IconDataRegular(0xe44e); + static const IconData squareQuarters = IconData(0xe44e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Quarters icon /// /// https://fontawesome.com/icons/square-quarters?style=light /// damper, fire, vent - static const IconData lightSquareQuarters = IconDataLight(0xe44e); + static const IconData lightSquareQuarters = IconData(0xe44e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Quarters icon /// /// https://fontawesome.com/icons/square-quarters?style=thin /// damper, fire, vent - static const IconData thinSquareQuarters = IconDataThin(0xe44e); + static const IconData thinSquareQuarters = IconData(0xe44e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Question icon /// /// https://fontawesome.com/icons/square-question?style=solid /// faq, help, information, support, unknown - static const IconData solidSquareQuestion = IconDataSolid(0xf2fd); + static const IconData solidSquareQuestion = IconData(0xf2fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias question-square for icon [solidSquareQuestion] @Deprecated('Use "solidSquareQuestion" instead.') @@ -80799,7 +80799,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-question?style=regular /// faq, help, information, support, unknown - static const IconData squareQuestion = IconDataRegular(0xf2fd); + static const IconData squareQuestion = IconData(0xf2fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias question-square for icon [squareQuestion] @Deprecated('Use "squareQuestion" instead.') @@ -80809,7 +80809,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-question?style=light /// faq, help, information, support, unknown - static const IconData lightSquareQuestion = IconDataLight(0xf2fd); + static const IconData lightSquareQuestion = IconData(0xf2fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias question-square for icon [lightSquareQuestion] @Deprecated('Use "lightSquareQuestion" instead.') @@ -80819,7 +80819,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-question?style=thin /// faq, help, information, support, unknown - static const IconData thinSquareQuestion = IconDataThin(0xf2fd); + static const IconData thinSquareQuestion = IconData(0xf2fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias question-square for icon [thinSquareQuestion] @Deprecated('Use "thinSquareQuestion" instead.') @@ -80829,54 +80829,54 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-quote?style=solid /// mention, note, text, type - static const IconData solidSquareQuote = IconDataSolid(0xe329); + static const IconData solidSquareQuote = IconData(0xe329, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Quote icon /// /// https://fontawesome.com/icons/square-quote?style=regular /// mention, note, text, type - static const IconData squareQuote = IconDataRegular(0xe329); + static const IconData squareQuote = IconData(0xe329, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Quote icon /// /// https://fontawesome.com/icons/square-quote?style=light /// mention, note, text, type - static const IconData lightSquareQuote = IconDataLight(0xe329); + static const IconData lightSquareQuote = IconData(0xe329, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Quote icon /// /// https://fontawesome.com/icons/square-quote?style=thin /// mention, note, text, type - static const IconData thinSquareQuote = IconDataThin(0xe329); + static const IconData thinSquareQuote = IconData(0xe329, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square R icon /// /// https://fontawesome.com/icons/square-r?style=solid /// letter - static const IconData solidSquareR = IconDataSolid(0xe27c); + static const IconData solidSquareR = IconData(0xe27c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square R icon /// /// https://fontawesome.com/icons/square-r?style=regular /// letter - static const IconData squareR = IconDataRegular(0xe27c); + static const IconData squareR = IconData(0xe27c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square R icon /// /// https://fontawesome.com/icons/square-r?style=light /// letter - static const IconData lightSquareR = IconDataLight(0xe27c); + static const IconData lightSquareR = IconData(0xe27c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square R icon /// /// https://fontawesome.com/icons/square-r?style=thin /// letter - static const IconData thinSquareR = IconDataThin(0xe27c); + static const IconData thinSquareR = IconData(0xe27c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Reddit icon /// /// https://fontawesome.com/icons/square-reddit?style=brands - static const IconData squareReddit = IconDataBrands(0xf1a2); + static const IconData squareReddit = IconData(0xf1a2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias reddit-square for icon [squareReddit] @Deprecated('Use "squareReddit" instead.') @@ -80886,7 +80886,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-right?style=solid /// arrow, cardinal, direction, east, forward, next, right arrow - static const IconData solidSquareRight = IconDataSolid(0xf352); + static const IconData solidSquareRight = IconData(0xf352, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-right for icon [solidSquareRight] @Deprecated('Use "solidSquareRight" instead.') @@ -80896,7 +80896,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-right?style=regular /// arrow, cardinal, direction, east, forward, next, right arrow - static const IconData squareRight = IconDataRegular(0xf352); + static const IconData squareRight = IconData(0xf352, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-right for icon [squareRight] @Deprecated('Use "squareRight" instead.') @@ -80906,7 +80906,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-right?style=light /// arrow, cardinal, direction, east, forward, next, right arrow - static const IconData lightSquareRight = IconDataLight(0xf352); + static const IconData lightSquareRight = IconData(0xf352, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-right for icon [lightSquareRight] @Deprecated('Use "lightSquareRight" instead.') @@ -80916,7 +80916,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-right?style=thin /// arrow, cardinal, direction, east, forward, next, right arrow - static const IconData thinSquareRight = IconDataThin(0xf352); + static const IconData thinSquareRight = IconData(0xf352, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-right for icon [thinSquareRight] @Deprecated('Use "thinSquareRight" instead.') @@ -80926,55 +80926,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-ring?style=solid /// pipe, service - static const IconData solidSquareRing = IconDataSolid(0xe44f); + static const IconData solidSquareRing = IconData(0xe44f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Ring icon /// /// https://fontawesome.com/icons/square-ring?style=regular /// pipe, service - static const IconData squareRing = IconDataRegular(0xe44f); + static const IconData squareRing = IconData(0xe44f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Ring icon /// /// https://fontawesome.com/icons/square-ring?style=light /// pipe, service - static const IconData lightSquareRing = IconDataLight(0xe44f); + static const IconData lightSquareRing = IconData(0xe44f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Ring icon /// /// https://fontawesome.com/icons/square-ring?style=thin /// pipe, service - static const IconData thinSquareRing = IconDataThin(0xe44f); + static const IconData thinSquareRing = IconData(0xe44f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Root icon /// /// https://fontawesome.com/icons/square-root?style=solid /// Square Root, arithmetic, calculus, division, math - static const IconData solidSquareRoot = IconDataSolid(0xf697); + static const IconData solidSquareRoot = IconData(0xf697, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Root icon /// /// https://fontawesome.com/icons/square-root?style=regular /// Square Root, arithmetic, calculus, division, math - static const IconData squareRoot = IconDataRegular(0xf697); + static const IconData squareRoot = IconData(0xf697, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Root icon /// /// https://fontawesome.com/icons/square-root?style=light /// Square Root, arithmetic, calculus, division, math - static const IconData lightSquareRoot = IconDataLight(0xf697); + static const IconData lightSquareRoot = IconData(0xf697, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Root icon /// /// https://fontawesome.com/icons/square-root?style=thin /// Square Root, arithmetic, calculus, division, math - static const IconData thinSquareRoot = IconDataThin(0xf697); + static const IconData thinSquareRoot = IconData(0xf697, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Root Variable icon /// /// https://fontawesome.com/icons/square-root-variable?style=solid /// arithmetic, calculus, division, math - static const IconData solidSquareRootVariable = IconDataSolid(0xf698); + static const IconData solidSquareRootVariable = IconData(0xf698, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias square-root-alt for icon [solidSquareRootVariable] @Deprecated('Use "solidSquareRootVariable" instead.') @@ -80984,7 +80984,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-root-variable?style=regular /// arithmetic, calculus, division, math - static const IconData squareRootVariable = IconDataRegular(0xf698); + static const IconData squareRootVariable = IconData(0xf698, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias square-root-alt for icon [squareRootVariable] @Deprecated('Use "squareRootVariable" instead.') @@ -80994,7 +80994,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-root-variable?style=light /// arithmetic, calculus, division, math - static const IconData lightSquareRootVariable = IconDataLight(0xf698); + static const IconData lightSquareRootVariable = IconData(0xf698, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias square-root-alt for icon [lightSquareRootVariable] @Deprecated('Use "lightSquareRootVariable" instead.') @@ -81004,7 +81004,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-root-variable?style=thin /// arithmetic, calculus, division, math - static const IconData thinSquareRootVariable = IconDataThin(0xf698); + static const IconData thinSquareRootVariable = IconData(0xf698, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias square-root-alt for icon [thinSquareRootVariable] @Deprecated('Use "thinSquareRootVariable" instead.') @@ -81014,7 +81014,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-rss?style=solid /// blog, feed, journal, news, writing - static const IconData solidSquareRss = IconDataSolid(0xf143); + static const IconData solidSquareRss = IconData(0xf143, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rss-square for icon [solidSquareRss] @Deprecated('Use "solidSquareRss" instead.') @@ -81024,7 +81024,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-rss?style=regular /// blog, feed, journal, news, writing - static const IconData squareRss = IconDataRegular(0xf143); + static const IconData squareRss = IconData(0xf143, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rss-square for icon [squareRss] @Deprecated('Use "squareRss" instead.') @@ -81034,7 +81034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-rss?style=light /// blog, feed, journal, news, writing - static const IconData lightSquareRss = IconDataLight(0xf143); + static const IconData lightSquareRss = IconData(0xf143, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rss-square for icon [lightSquareRss] @Deprecated('Use "lightSquareRss" instead.') @@ -81044,7 +81044,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-rss?style=thin /// blog, feed, journal, news, writing - static const IconData thinSquareRss = IconDataThin(0xf143); + static const IconData thinSquareRss = IconData(0xf143, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rss-square for icon [thinSquareRss] @Deprecated('Use "thinSquareRss" instead.') @@ -81054,31 +81054,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-s?style=solid /// letter - static const IconData solidSquareS = IconDataSolid(0xe27d); + static const IconData solidSquareS = IconData(0xe27d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square S icon /// /// https://fontawesome.com/icons/square-s?style=regular /// letter - static const IconData squareS = IconDataRegular(0xe27d); + static const IconData squareS = IconData(0xe27d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square S icon /// /// https://fontawesome.com/icons/square-s?style=light /// letter - static const IconData lightSquareS = IconDataLight(0xe27d); + static const IconData lightSquareS = IconData(0xe27d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square S icon /// /// https://fontawesome.com/icons/square-s?style=thin /// letter - static const IconData thinSquareS = IconDataThin(0xe27d); + static const IconData thinSquareS = IconData(0xe27d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Share Nodes icon /// /// https://fontawesome.com/icons/square-share-nodes?style=solid /// forward, save, send, social - static const IconData solidSquareShareNodes = IconDataSolid(0xf1e1); + static const IconData solidSquareShareNodes = IconData(0xf1e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias share-alt-square for icon [solidSquareShareNodes] @Deprecated('Use "solidSquareShareNodes" instead.') @@ -81088,7 +81088,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-share-nodes?style=regular /// forward, save, send, social - static const IconData squareShareNodes = IconDataRegular(0xf1e1); + static const IconData squareShareNodes = IconData(0xf1e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias share-alt-square for icon [squareShareNodes] @Deprecated('Use "squareShareNodes" instead.') @@ -81098,7 +81098,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-share-nodes?style=light /// forward, save, send, social - static const IconData lightSquareShareNodes = IconDataLight(0xf1e1); + static const IconData lightSquareShareNodes = IconData(0xf1e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias share-alt-square for icon [lightSquareShareNodes] @Deprecated('Use "lightSquareShareNodes" instead.') @@ -81108,7 +81108,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-share-nodes?style=thin /// forward, save, send, social - static const IconData thinSquareShareNodes = IconDataThin(0xf1e1); + static const IconData thinSquareShareNodes = IconData(0xf1e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias share-alt-square for icon [thinSquareShareNodes] @Deprecated('Use "thinSquareShareNodes" instead.') @@ -81118,7 +81118,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders?style=solid /// adjust, configuration, modify, settings, sliders, toggle - static const IconData solidSquareSliders = IconDataSolid(0xf3f0); + static const IconData solidSquareSliders = IconData(0xf3f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h-square for icon [solidSquareSliders] @Deprecated('Use "solidSquareSliders" instead.') @@ -81128,7 +81128,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders?style=regular /// adjust, configuration, modify, settings, sliders, toggle - static const IconData squareSliders = IconDataRegular(0xf3f0); + static const IconData squareSliders = IconData(0xf3f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h-square for icon [squareSliders] @Deprecated('Use "squareSliders" instead.') @@ -81138,7 +81138,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders?style=light /// adjust, configuration, modify, settings, sliders, toggle - static const IconData lightSquareSliders = IconDataLight(0xf3f0); + static const IconData lightSquareSliders = IconData(0xf3f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h-square for icon [lightSquareSliders] @Deprecated('Use "lightSquareSliders" instead.') @@ -81148,7 +81148,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders?style=thin /// adjust, configuration, modify, settings, sliders, toggle - static const IconData thinSquareSliders = IconDataThin(0xf3f0); + static const IconData thinSquareSliders = IconData(0xf3f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sliders-h-square for icon [thinSquareSliders] @Deprecated('Use "thinSquareSliders" instead.') @@ -81158,7 +81158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders-vertical?style=solid /// adjust, configuration, modify, settings, sliders, toggle - static const IconData solidSquareSlidersVertical = IconDataSolid(0xf3f2); + static const IconData solidSquareSlidersVertical = IconData(0xf3f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v-square for icon [solidSquareSlidersVertical] @Deprecated('Use "solidSquareSlidersVertical" instead.') @@ -81168,7 +81168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders-vertical?style=regular /// adjust, configuration, modify, settings, sliders, toggle - static const IconData squareSlidersVertical = IconDataRegular(0xf3f2); + static const IconData squareSlidersVertical = IconData(0xf3f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v-square for icon [squareSlidersVertical] @Deprecated('Use "squareSlidersVertical" instead.') @@ -81178,7 +81178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders-vertical?style=light /// adjust, configuration, modify, settings, sliders, toggle - static const IconData lightSquareSlidersVertical = IconDataLight(0xf3f2); + static const IconData lightSquareSlidersVertical = IconData(0xf3f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v-square for icon [lightSquareSlidersVertical] @Deprecated('Use "lightSquareSlidersVertical" instead.') @@ -81188,7 +81188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-sliders-vertical?style=thin /// adjust, configuration, modify, settings, sliders, toggle - static const IconData thinSquareSlidersVertical = IconDataThin(0xf3f2); + static const IconData thinSquareSlidersVertical = IconData(0xf3f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sliders-v-square for icon [thinSquareSlidersVertical] @Deprecated('Use "thinSquareSlidersVertical" instead.') @@ -81198,30 +81198,30 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-small?style=solid /// black small square, block, geometric, square, stop, white small square - static const IconData solidSquareSmall = IconDataSolid(0xe27e); + static const IconData solidSquareSmall = IconData(0xe27e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Small icon /// /// https://fontawesome.com/icons/square-small?style=regular /// black small square, block, geometric, square, stop, white small square - static const IconData squareSmall = IconDataRegular(0xe27e); + static const IconData squareSmall = IconData(0xe27e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Small icon /// /// https://fontawesome.com/icons/square-small?style=light /// black small square, block, geometric, square, stop, white small square - static const IconData lightSquareSmall = IconDataLight(0xe27e); + static const IconData lightSquareSmall = IconData(0xe27e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Small icon /// /// https://fontawesome.com/icons/square-small?style=thin /// black small square, block, geometric, square, stop, white small square - static const IconData thinSquareSmall = IconDataThin(0xe27e); + static const IconData thinSquareSmall = IconData(0xe27e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Snapchat Square icon /// /// https://fontawesome.com/icons/square-snapchat?style=brands - static const IconData squareSnapchat = IconDataBrands(0xf2ad); + static const IconData squareSnapchat = IconData(0xf2ad, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias snapchat-square for icon [squareSnapchat] @Deprecated('Use "squareSnapchat" instead.') @@ -81231,30 +81231,30 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-star?style=solid /// favorite, quality - static const IconData solidSquareStar = IconDataSolid(0xe27f); + static const IconData solidSquareStar = IconData(0xe27f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Star icon /// /// https://fontawesome.com/icons/square-star?style=regular /// favorite, quality - static const IconData squareStar = IconDataRegular(0xe27f); + static const IconData squareStar = IconData(0xe27f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Star icon /// /// https://fontawesome.com/icons/square-star?style=light /// favorite, quality - static const IconData lightSquareStar = IconDataLight(0xe27f); + static const IconData lightSquareStar = IconData(0xe27f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Star icon /// /// https://fontawesome.com/icons/square-star?style=thin /// favorite, quality - static const IconData thinSquareStar = IconDataThin(0xe27f); + static const IconData thinSquareStar = IconData(0xe27f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Steam icon /// /// https://fontawesome.com/icons/square-steam?style=brands - static const IconData squareSteam = IconDataBrands(0xf1b7); + static const IconData squareSteam = IconData(0xf1b7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias steam-square for icon [squareSteam] @Deprecated('Use "squareSteam" instead.') @@ -81264,55 +81264,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-t?style=solid /// letter - static const IconData solidSquareT = IconDataSolid(0xe280); + static const IconData solidSquareT = IconData(0xe280, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square T icon /// /// https://fontawesome.com/icons/square-t?style=regular /// letter - static const IconData squareT = IconDataRegular(0xe280); + static const IconData squareT = IconData(0xe280, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square T icon /// /// https://fontawesome.com/icons/square-t?style=light /// letter - static const IconData lightSquareT = IconDataLight(0xe280); + static const IconData lightSquareT = IconData(0xe280, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square T icon /// /// https://fontawesome.com/icons/square-t?style=thin /// letter - static const IconData thinSquareT = IconDataThin(0xe280); + static const IconData thinSquareT = IconData(0xe280, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Terminal icon /// /// https://fontawesome.com/icons/square-terminal?style=solid /// code, coding, command, console, development, prompt, terminal - static const IconData solidSquareTerminal = IconDataSolid(0xe32a); + static const IconData solidSquareTerminal = IconData(0xe32a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Terminal icon /// /// https://fontawesome.com/icons/square-terminal?style=regular /// code, coding, command, console, development, prompt, terminal - static const IconData squareTerminal = IconDataRegular(0xe32a); + static const IconData squareTerminal = IconData(0xe32a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Terminal icon /// /// https://fontawesome.com/icons/square-terminal?style=light /// code, coding, command, console, development, prompt, terminal - static const IconData lightSquareTerminal = IconDataLight(0xe32a); + static const IconData lightSquareTerminal = IconData(0xe32a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Terminal icon /// /// https://fontawesome.com/icons/square-terminal?style=thin /// code, coding, command, console, development, prompt, terminal - static const IconData thinSquareTerminal = IconDataThin(0xe32a); + static const IconData thinSquareTerminal = IconData(0xe32a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square This Way Up icon /// /// https://fontawesome.com/icons/square-this-way-up?style=solid /// archive, container, package, shipping, storage, upgrade - static const IconData solidSquareThisWayUp = IconDataSolid(0xf49f); + static const IconData solidSquareThisWayUp = IconData(0xf49f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias box-up for icon [solidSquareThisWayUp] @Deprecated('Use "solidSquareThisWayUp" instead.') @@ -81322,7 +81322,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-this-way-up?style=regular /// archive, container, package, shipping, storage, upgrade - static const IconData squareThisWayUp = IconDataRegular(0xf49f); + static const IconData squareThisWayUp = IconData(0xf49f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias box-up for icon [squareThisWayUp] @Deprecated('Use "squareThisWayUp" instead.') @@ -81332,7 +81332,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-this-way-up?style=light /// archive, container, package, shipping, storage, upgrade - static const IconData lightSquareThisWayUp = IconDataLight(0xf49f); + static const IconData lightSquareThisWayUp = IconData(0xf49f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias box-up for icon [lightSquareThisWayUp] @Deprecated('Use "lightSquareThisWayUp" instead.') @@ -81342,7 +81342,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-this-way-up?style=thin /// archive, container, package, shipping, storage, upgrade - static const IconData thinSquareThisWayUp = IconDataThin(0xf49f); + static const IconData thinSquareThisWayUp = IconData(0xf49f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias box-up for icon [thinSquareThisWayUp] @Deprecated('Use "thinSquareThisWayUp" instead.') @@ -81351,12 +81351,12 @@ class FontAwesomeIcons { /// Brands Square Threads icon /// /// https://fontawesome.com/icons/square-threads?style=brands - static const IconData squareThreads = IconDataBrands(0xe619); + static const IconData squareThreads = IconData(0xe619, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Square Tumblr icon /// /// https://fontawesome.com/icons/square-tumblr?style=brands - static const IconData squareTumblr = IconDataBrands(0xf174); + static const IconData squareTumblr = IconData(0xf174, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias tumblr-square for icon [squareTumblr] @Deprecated('Use "squareTumblr" instead.') @@ -81366,7 +81366,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-twitter?style=brands /// social network, tweet - static const IconData squareTwitter = IconDataBrands(0xf081); + static const IconData squareTwitter = IconData(0xf081, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias twitter-square for icon [squareTwitter] @Deprecated('Use "squareTwitter" instead.') @@ -81376,31 +81376,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-u?style=solid /// letter - static const IconData solidSquareU = IconDataSolid(0xe281); + static const IconData solidSquareU = IconData(0xe281, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square U icon /// /// https://fontawesome.com/icons/square-u?style=regular /// letter - static const IconData squareU = IconDataRegular(0xe281); + static const IconData squareU = IconData(0xe281, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square U icon /// /// https://fontawesome.com/icons/square-u?style=light /// letter - static const IconData lightSquareU = IconDataLight(0xe281); + static const IconData lightSquareU = IconData(0xe281, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square U icon /// /// https://fontawesome.com/icons/square-u?style=thin /// letter - static const IconData thinSquareU = IconDataThin(0xe281); + static const IconData thinSquareU = IconData(0xe281, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Up icon /// /// https://fontawesome.com/icons/square-up?style=solid /// arrow, cardinal, direction, north, up arrow, upgrade, upload - static const IconData solidSquareUp = IconDataSolid(0xf353); + static const IconData solidSquareUp = IconData(0xf353, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-up for icon [solidSquareUp] @Deprecated('Use "solidSquareUp" instead.') @@ -81410,7 +81410,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up?style=regular /// arrow, cardinal, direction, north, up arrow, upgrade, upload - static const IconData squareUp = IconDataRegular(0xf353); + static const IconData squareUp = IconData(0xf353, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-up for icon [squareUp] @Deprecated('Use "squareUp" instead.') @@ -81420,7 +81420,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up?style=light /// arrow, cardinal, direction, north, up arrow, upgrade, upload - static const IconData lightSquareUp = IconDataLight(0xf353); + static const IconData lightSquareUp = IconData(0xf353, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-up for icon [lightSquareUp] @Deprecated('Use "lightSquareUp" instead.') @@ -81430,7 +81430,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up?style=thin /// arrow, cardinal, direction, north, up arrow, upgrade, upload - static const IconData thinSquareUp = IconDataThin(0xf353); + static const IconData thinSquareUp = IconData(0xf353, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-square-up for icon [thinSquareUp] @Deprecated('Use "thinSquareUp" instead.') @@ -81440,31 +81440,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up-left?style=solid /// arrow, diagonal, direction, intercardinal, northwest, up-left arrow - static const IconData solidSquareUpLeft = IconDataSolid(0xe282); + static const IconData solidSquareUpLeft = IconData(0xe282, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Up Left icon /// /// https://fontawesome.com/icons/square-up-left?style=regular /// arrow, diagonal, direction, intercardinal, northwest, up-left arrow - static const IconData squareUpLeft = IconDataRegular(0xe282); + static const IconData squareUpLeft = IconData(0xe282, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Up Left icon /// /// https://fontawesome.com/icons/square-up-left?style=light /// arrow, diagonal, direction, intercardinal, northwest, up-left arrow - static const IconData lightSquareUpLeft = IconDataLight(0xe282); + static const IconData lightSquareUpLeft = IconData(0xe282, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Up Left icon /// /// https://fontawesome.com/icons/square-up-left?style=thin /// arrow, diagonal, direction, intercardinal, northwest, up-left arrow - static const IconData thinSquareUpLeft = IconDataThin(0xe282); + static const IconData thinSquareUpLeft = IconData(0xe282, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square Up Right icon /// /// https://fontawesome.com/icons/square-up-right?style=solid /// arrow, diagonal, direction, external-link-square, intercardinal, new, northeast, open, share, up-right arrow - static const IconData solidSquareUpRight = IconDataSolid(0xf360); + static const IconData solidSquareUpRight = IconData(0xf360, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square-alt for icon [solidSquareUpRight] @Deprecated('Use "solidSquareUpRight" instead.') @@ -81474,7 +81474,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up-right?style=regular /// arrow, diagonal, direction, external-link-square, intercardinal, new, northeast, open, share, up-right arrow - static const IconData squareUpRight = IconDataRegular(0xf360); + static const IconData squareUpRight = IconData(0xf360, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square-alt for icon [squareUpRight] @Deprecated('Use "squareUpRight" instead.') @@ -81484,7 +81484,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up-right?style=light /// arrow, diagonal, direction, external-link-square, intercardinal, new, northeast, open, share, up-right arrow - static const IconData lightSquareUpRight = IconDataLight(0xf360); + static const IconData lightSquareUpRight = IconData(0xf360, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square-alt for icon [lightSquareUpRight] @Deprecated('Use "lightSquareUpRight" instead.') @@ -81494,7 +81494,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-up-right?style=thin /// arrow, diagonal, direction, external-link-square, intercardinal, new, northeast, open, share, up-right arrow - static const IconData thinSquareUpRight = IconDataThin(0xf360); + static const IconData thinSquareUpRight = IconData(0xf360, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias external-link-square-alt for icon [thinSquareUpRight] @Deprecated('Use "thinSquareUpRight" instead.') @@ -81504,54 +81504,54 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-user?style=solid /// employee, person, profile, uer - static const IconData solidSquareUser = IconDataSolid(0xe283); + static const IconData solidSquareUser = IconData(0xe283, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square User icon /// /// https://fontawesome.com/icons/square-user?style=regular /// employee, person, profile, uer - static const IconData squareUser = IconDataRegular(0xe283); + static const IconData squareUser = IconData(0xe283, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square User icon /// /// https://fontawesome.com/icons/square-user?style=light /// employee, person, profile, uer - static const IconData lightSquareUser = IconDataLight(0xe283); + static const IconData lightSquareUser = IconData(0xe283, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square User icon /// /// https://fontawesome.com/icons/square-user?style=thin /// employee, person, profile, uer - static const IconData thinSquareUser = IconDataThin(0xe283); + static const IconData thinSquareUser = IconData(0xe283, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square V icon /// /// https://fontawesome.com/icons/square-v?style=solid /// letter - static const IconData solidSquareV = IconDataSolid(0xe284); + static const IconData solidSquareV = IconData(0xe284, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square V icon /// /// https://fontawesome.com/icons/square-v?style=regular /// letter - static const IconData squareV = IconDataRegular(0xe284); + static const IconData squareV = IconData(0xe284, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square V icon /// /// https://fontawesome.com/icons/square-v?style=light /// letter - static const IconData lightSquareV = IconDataLight(0xe284); + static const IconData lightSquareV = IconData(0xe284, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square V icon /// /// https://fontawesome.com/icons/square-v?style=thin /// letter - static const IconData thinSquareV = IconDataThin(0xe284); + static const IconData thinSquareV = IconData(0xe284, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Viadeo icon /// /// https://fontawesome.com/icons/square-viadeo?style=brands - static const IconData squareViadeo = IconDataBrands(0xf2aa); + static const IconData squareViadeo = IconData(0xf2aa, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias viadeo-square for icon [squareViadeo] @Deprecated('Use "squareViadeo" instead.') @@ -81560,7 +81560,7 @@ class FontAwesomeIcons { /// Brands Square Vimeo icon /// /// https://fontawesome.com/icons/square-vimeo?style=brands - static const IconData squareVimeo = IconDataBrands(0xf194); + static const IconData squareVimeo = IconData(0xf194, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias vimeo-square for icon [squareVimeo] @Deprecated('Use "squareVimeo" instead.') @@ -81570,54 +81570,54 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-virus?style=solid /// coronavirus, covid-19, disease, flu, infection, pandemic - static const IconData solidSquareVirus = IconDataSolid(0xe578); + static const IconData solidSquareVirus = IconData(0xe578, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Virus icon /// /// https://fontawesome.com/icons/square-virus?style=regular /// coronavirus, covid-19, disease, flu, infection, pandemic - static const IconData squareVirus = IconDataRegular(0xe578); + static const IconData squareVirus = IconData(0xe578, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Virus icon /// /// https://fontawesome.com/icons/square-virus?style=light /// coronavirus, covid-19, disease, flu, infection, pandemic - static const IconData lightSquareVirus = IconDataLight(0xe578); + static const IconData lightSquareVirus = IconData(0xe578, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Virus icon /// /// https://fontawesome.com/icons/square-virus?style=thin /// coronavirus, covid-19, disease, flu, infection, pandemic - static const IconData thinSquareVirus = IconDataThin(0xe578); + static const IconData thinSquareVirus = IconData(0xe578, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Square W icon /// /// https://fontawesome.com/icons/square-w?style=solid /// letter - static const IconData solidSquareW = IconDataSolid(0xe285); + static const IconData solidSquareW = IconData(0xe285, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square W icon /// /// https://fontawesome.com/icons/square-w?style=regular /// letter - static const IconData squareW = IconDataRegular(0xe285); + static const IconData squareW = IconData(0xe285, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square W icon /// /// https://fontawesome.com/icons/square-w?style=light /// letter - static const IconData lightSquareW = IconDataLight(0xe285); + static const IconData lightSquareW = IconData(0xe285, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square W icon /// /// https://fontawesome.com/icons/square-w?style=thin /// letter - static const IconData thinSquareW = IconDataThin(0xe285); + static const IconData thinSquareW = IconData(0xe285, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Whatsapp icon /// /// https://fontawesome.com/icons/square-whatsapp?style=brands - static const IconData squareWhatsapp = IconDataBrands(0xf40c); + static const IconData squareWhatsapp = IconData(0xf40c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias whatsapp-square for icon [squareWhatsapp] @Deprecated('Use "squareWhatsapp" instead.') @@ -81627,36 +81627,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-x?style=solid /// letter, uncheck - static const IconData solidSquareX = IconDataSolid(0xe286); + static const IconData solidSquareX = IconData(0xe286, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square X icon /// /// https://fontawesome.com/icons/square-x?style=regular /// letter, uncheck - static const IconData squareX = IconDataRegular(0xe286); + static const IconData squareX = IconData(0xe286, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square X icon /// /// https://fontawesome.com/icons/square-x?style=light /// letter, uncheck - static const IconData lightSquareX = IconDataLight(0xe286); + static const IconData lightSquareX = IconData(0xe286, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square X icon /// /// https://fontawesome.com/icons/square-x?style=thin /// letter, uncheck - static const IconData thinSquareX = IconDataThin(0xe286); + static const IconData thinSquareX = IconData(0xe286, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square X Twitter icon /// /// https://fontawesome.com/icons/square-x-twitter?style=brands /// elon, x, twitter - static const IconData squareXTwitter = IconDataBrands(0xe61a); + static const IconData squareXTwitter = IconData(0xe61a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Square Xing icon /// /// https://fontawesome.com/icons/square-xing?style=brands - static const IconData squareXing = IconDataBrands(0xf169); + static const IconData squareXing = IconData(0xf169, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias xing-square for icon [squareXing] @Deprecated('Use "squareXing" instead.') @@ -81666,7 +81666,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-xmark?style=solid /// close, cross, cross mark button, incorrect, mark, notice, notification, notify, problem, square, uncheck, window, wrong, x, × - static const IconData solidSquareXmark = IconDataSolid(0xf2d3); + static const IconData solidSquareXmark = IconData(0xf2d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias times-square for icon [solidSquareXmark] @Deprecated('Use "solidSquareXmark" instead.') @@ -81680,7 +81680,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-xmark?style=regular /// close, cross, cross mark button, incorrect, mark, notice, notification, notify, problem, square, uncheck, window, wrong, x, × - static const IconData squareXmark = IconDataRegular(0xf2d3); + static const IconData squareXmark = IconData(0xf2d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias times-square for icon [squareXmark] @Deprecated('Use "squareXmark" instead.') @@ -81694,7 +81694,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-xmark?style=light /// close, cross, cross mark button, incorrect, mark, notice, notification, notify, problem, square, uncheck, window, wrong, x, × - static const IconData lightSquareXmark = IconDataLight(0xf2d3); + static const IconData lightSquareXmark = IconData(0xf2d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias times-square for icon [lightSquareXmark] @Deprecated('Use "lightSquareXmark" instead.') @@ -81708,7 +81708,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-xmark?style=thin /// close, cross, cross mark button, incorrect, mark, notice, notification, notify, problem, square, uncheck, window, wrong, x, × - static const IconData thinSquareXmark = IconDataThin(0xf2d3); + static const IconData thinSquareXmark = IconData(0xf2d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias times-square for icon [thinSquareXmark] @Deprecated('Use "thinSquareXmark" instead.') @@ -81722,30 +81722,30 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-y?style=solid /// letter, yay, yes - static const IconData solidSquareY = IconDataSolid(0xe287); + static const IconData solidSquareY = IconData(0xe287, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Y icon /// /// https://fontawesome.com/icons/square-y?style=regular /// letter, yay, yes - static const IconData squareY = IconDataRegular(0xe287); + static const IconData squareY = IconData(0xe287, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Y icon /// /// https://fontawesome.com/icons/square-y?style=light /// letter, yay, yes - static const IconData lightSquareY = IconDataLight(0xe287); + static const IconData lightSquareY = IconData(0xe287, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Y icon /// /// https://fontawesome.com/icons/square-y?style=thin /// letter, yay, yes - static const IconData thinSquareY = IconDataThin(0xe287); + static const IconData thinSquareY = IconData(0xe287, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Square Youtube icon /// /// https://fontawesome.com/icons/square-youtube?style=brands - static const IconData squareYoutube = IconDataBrands(0xf431); + static const IconData squareYoutube = IconData(0xf431, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias youtube-square for icon [squareYoutube] @Deprecated('Use "squareYoutube" instead.') @@ -81755,123 +81755,123 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/square-z?style=solid /// letter - static const IconData solidSquareZ = IconDataSolid(0xe288); + static const IconData solidSquareZ = IconData(0xe288, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Square Z icon /// /// https://fontawesome.com/icons/square-z?style=regular /// letter - static const IconData squareZ = IconDataRegular(0xe288); + static const IconData squareZ = IconData(0xe288, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Square Z icon /// /// https://fontawesome.com/icons/square-z?style=light /// letter - static const IconData lightSquareZ = IconDataLight(0xe288); + static const IconData lightSquareZ = IconData(0xe288, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Square Z icon /// /// https://fontawesome.com/icons/square-z?style=thin /// letter - static const IconData thinSquareZ = IconDataThin(0xe288); + static const IconData thinSquareZ = IconData(0xe288, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Squarespace icon /// /// https://fontawesome.com/icons/squarespace?style=brands - static const IconData squarespace = IconDataBrands(0xf5be); + static const IconData squarespace = IconData(0xf5be, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Squid icon /// /// https://fontawesome.com/icons/squid?style=solid /// calamari, ink, marine, ocean, squid - static const IconData solidSquid = IconDataSolid(0xe450); + static const IconData solidSquid = IconData(0xe450, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Squid icon /// /// https://fontawesome.com/icons/squid?style=regular /// calamari, ink, marine, ocean, squid - static const IconData squid = IconDataRegular(0xe450); + static const IconData squid = IconData(0xe450, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Squid icon /// /// https://fontawesome.com/icons/squid?style=light /// calamari, ink, marine, ocean, squid - static const IconData lightSquid = IconDataLight(0xe450); + static const IconData lightSquid = IconData(0xe450, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Squid icon /// /// https://fontawesome.com/icons/squid?style=thin /// calamari, ink, marine, ocean, squid - static const IconData thinSquid = IconDataThin(0xe450); + static const IconData thinSquid = IconData(0xe450, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Squirrel icon /// /// https://fontawesome.com/icons/squirrel?style=solid /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData solidSquirrel = IconDataSolid(0xf71a); + static const IconData solidSquirrel = IconData(0xf71a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Squirrel icon /// /// https://fontawesome.com/icons/squirrel?style=regular /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData squirrel = IconDataRegular(0xf71a); + static const IconData squirrel = IconData(0xf71a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Squirrel icon /// /// https://fontawesome.com/icons/squirrel?style=light /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData lightSquirrel = IconDataLight(0xf71a); + static const IconData lightSquirrel = IconData(0xf71a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Squirrel icon /// /// https://fontawesome.com/icons/squirrel?style=thin /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData thinSquirrel = IconDataThin(0xf71a); + static const IconData thinSquirrel = IconData(0xf71a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Stack Exchange icon /// /// https://fontawesome.com/icons/stack-exchange?style=brands - static const IconData stackExchange = IconDataBrands(0xf18d); + static const IconData stackExchange = IconData(0xf18d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Stack Overflow icon /// /// https://fontawesome.com/icons/stack-overflow?style=brands - static const IconData stackOverflow = IconDataBrands(0xf16c); + static const IconData stackOverflow = IconData(0xf16c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Stackpath icon /// /// https://fontawesome.com/icons/stackpath?style=brands - static const IconData stackpath = IconDataBrands(0xf842); + static const IconData stackpath = IconData(0xf842, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Staff icon /// /// https://fontawesome.com/icons/staff?style=solid /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData solidStaff = IconDataSolid(0xf71b); + static const IconData solidStaff = IconData(0xf71b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Staff icon /// /// https://fontawesome.com/icons/staff?style=regular /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData staff = IconDataRegular(0xf71b); + static const IconData staff = IconData(0xf71b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Staff icon /// /// https://fontawesome.com/icons/staff?style=light /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData lightStaff = IconDataLight(0xf71b); + static const IconData lightStaff = IconData(0xf71b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Staff icon /// /// https://fontawesome.com/icons/staff?style=thin /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData thinStaff = IconDataThin(0xf71b); + static const IconData thinStaff = IconData(0xf71b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Staff Snake icon /// /// https://fontawesome.com/icons/staff-snake?style=solid /// asclepius, asklepian, health, serpent, wellness - static const IconData solidStaffSnake = IconDataSolid(0xe579); + static const IconData solidStaffSnake = IconData(0xe579, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rod-asclepius for icon [solidStaffSnake] @Deprecated('Use "solidStaffSnake" instead.') @@ -81889,7 +81889,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/staff-snake?style=regular /// asclepius, asklepian, health, serpent, wellness - static const IconData staffSnake = IconDataRegular(0xe579); + static const IconData staffSnake = IconData(0xe579, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rod-asclepius for icon [staffSnake] @Deprecated('Use "staffSnake" instead.') @@ -81907,7 +81907,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/staff-snake?style=light /// asclepius, asklepian, health, serpent, wellness - static const IconData lightStaffSnake = IconDataLight(0xe579); + static const IconData lightStaffSnake = IconData(0xe579, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rod-asclepius for icon [lightStaffSnake] @Deprecated('Use "lightStaffSnake" instead.') @@ -81925,7 +81925,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/staff-snake?style=thin /// asclepius, asklepian, health, serpent, wellness - static const IconData thinStaffSnake = IconDataThin(0xe579); + static const IconData thinStaffSnake = IconData(0xe579, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rod-asclepius for icon [thinStaffSnake] @Deprecated('Use "thinStaffSnake" instead.') @@ -81943,55 +81943,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/stairs?style=solid /// exit, steps, up - static const IconData solidStairs = IconDataSolid(0xe289); + static const IconData solidStairs = IconData(0xe289, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stairs icon /// /// https://fontawesome.com/icons/stairs?style=regular /// exit, steps, up - static const IconData stairs = IconDataRegular(0xe289); + static const IconData stairs = IconData(0xe289, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stairs icon /// /// https://fontawesome.com/icons/stairs?style=light /// exit, steps, up - static const IconData lightStairs = IconDataLight(0xe289); + static const IconData lightStairs = IconData(0xe289, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stairs icon /// /// https://fontawesome.com/icons/stairs?style=thin /// exit, steps, up - static const IconData thinStairs = IconDataThin(0xe289); + static const IconData thinStairs = IconData(0xe289, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stamp icon /// /// https://fontawesome.com/icons/stamp?style=solid /// art, certificate, imprint, rubber, seal - static const IconData solidStamp = IconDataSolid(0xf5bf); + static const IconData solidStamp = IconData(0xf5bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stamp icon /// /// https://fontawesome.com/icons/stamp?style=regular /// art, certificate, imprint, rubber, seal - static const IconData stamp = IconDataRegular(0xf5bf); + static const IconData stamp = IconData(0xf5bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stamp icon /// /// https://fontawesome.com/icons/stamp?style=light /// art, certificate, imprint, rubber, seal - static const IconData lightStamp = IconDataLight(0xf5bf); + static const IconData lightStamp = IconData(0xf5bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stamp icon /// /// https://fontawesome.com/icons/stamp?style=thin /// art, certificate, imprint, rubber, seal - static const IconData thinStamp = IconDataThin(0xf5bf); + static const IconData thinStamp = IconData(0xf5bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Standard Definition icon /// /// https://fontawesome.com/icons/standard-definition?style=solid /// low resolution - static const IconData solidStandardDefinition = IconDataSolid(0xe28a); + static const IconData solidStandardDefinition = IconData(0xe28a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-sd for icon [solidStandardDefinition] @Deprecated('Use "solidStandardDefinition" instead.') @@ -82001,7 +82001,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/standard-definition?style=regular /// low resolution - static const IconData standardDefinition = IconDataRegular(0xe28a); + static const IconData standardDefinition = IconData(0xe28a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-sd for icon [standardDefinition] @Deprecated('Use "standardDefinition" instead.') @@ -82011,7 +82011,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/standard-definition?style=light /// low resolution - static const IconData lightStandardDefinition = IconDataLight(0xe28a); + static const IconData lightStandardDefinition = IconData(0xe28a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-sd for icon [lightStandardDefinition] @Deprecated('Use "lightStandardDefinition" instead.') @@ -82021,7 +82021,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/standard-definition?style=thin /// low resolution - static const IconData thinStandardDefinition = IconDataThin(0xe28a); + static const IconData thinStandardDefinition = IconData(0xe28a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rectangle-sd for icon [thinStandardDefinition] @Deprecated('Use "thinStandardDefinition" instead.') @@ -82031,151 +82031,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/stapler?style=solid /// desktop, milton, office, paperclip, staple - static const IconData solidStapler = IconDataSolid(0xe5af); + static const IconData solidStapler = IconData(0xe5af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stapler icon /// /// https://fontawesome.com/icons/stapler?style=regular /// desktop, milton, office, paperclip, staple - static const IconData stapler = IconDataRegular(0xe5af); + static const IconData stapler = IconData(0xe5af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stapler icon /// /// https://fontawesome.com/icons/stapler?style=light /// desktop, milton, office, paperclip, staple - static const IconData lightStapler = IconDataLight(0xe5af); + static const IconData lightStapler = IconData(0xe5af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stapler icon /// /// https://fontawesome.com/icons/stapler?style=thin /// desktop, milton, office, paperclip, staple - static const IconData thinStapler = IconDataThin(0xe5af); + static const IconData thinStapler = IconData(0xe5af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star icon /// /// https://fontawesome.com/icons/star?style=solid /// achievement, award, favorite, important, night, quality, rating, score, star, vip - static const IconData solidStar = IconDataSolid(0xf005); + static const IconData solidStar = IconData(0xf005, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star icon /// /// https://fontawesome.com/icons/star?style=regular /// achievement, award, favorite, important, night, quality, rating, score, star, vip - static const IconData star = IconDataRegular(0xf005); + static const IconData star = IconData(0xf005, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star icon /// /// https://fontawesome.com/icons/star?style=light /// achievement, award, favorite, important, night, quality, rating, score, star, vip - static const IconData lightStar = IconDataLight(0xf005); + static const IconData lightStar = IconData(0xf005, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star icon /// /// https://fontawesome.com/icons/star?style=thin /// achievement, award, favorite, important, night, quality, rating, score, star, vip - static const IconData thinStar = IconDataThin(0xf005); + static const IconData thinStar = IconData(0xf005, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star And Crescent icon /// /// https://fontawesome.com/icons/star-and-crescent?style=solid /// Muslim, islam, muslim, religion, star and crescent - static const IconData solidStarAndCrescent = IconDataSolid(0xf699); + static const IconData solidStarAndCrescent = IconData(0xf699, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star And Crescent icon /// /// https://fontawesome.com/icons/star-and-crescent?style=regular /// Muslim, islam, muslim, religion, star and crescent - static const IconData starAndCrescent = IconDataRegular(0xf699); + static const IconData starAndCrescent = IconData(0xf699, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star And Crescent icon /// /// https://fontawesome.com/icons/star-and-crescent?style=light /// Muslim, islam, muslim, religion, star and crescent - static const IconData lightStarAndCrescent = IconDataLight(0xf699); + static const IconData lightStarAndCrescent = IconData(0xf699, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star And Crescent icon /// /// https://fontawesome.com/icons/star-and-crescent?style=thin /// Muslim, islam, muslim, religion, star and crescent - static const IconData thinStarAndCrescent = IconDataThin(0xf699); + static const IconData thinStarAndCrescent = IconData(0xf699, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Christmas icon /// /// https://fontawesome.com/icons/star-christmas?style=solid /// bethlehem, christmas, holiday, north, xmas - static const IconData solidStarChristmas = IconDataSolid(0xf7d4); + static const IconData solidStarChristmas = IconData(0xf7d4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Christmas icon /// /// https://fontawesome.com/icons/star-christmas?style=regular /// bethlehem, christmas, holiday, north, xmas - static const IconData starChristmas = IconDataRegular(0xf7d4); + static const IconData starChristmas = IconData(0xf7d4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Christmas icon /// /// https://fontawesome.com/icons/star-christmas?style=light /// bethlehem, christmas, holiday, north, xmas - static const IconData lightStarChristmas = IconDataLight(0xf7d4); + static const IconData lightStarChristmas = IconData(0xf7d4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Christmas icon /// /// https://fontawesome.com/icons/star-christmas?style=thin /// bethlehem, christmas, holiday, north, xmas - static const IconData thinStarChristmas = IconDataThin(0xf7d4); + static const IconData thinStarChristmas = IconData(0xf7d4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Exclamation icon /// /// https://fontawesome.com/icons/star-exclamation?style=solid /// achievement, alert, attention, award, failed, favorite, night, rating, required, score - static const IconData solidStarExclamation = IconDataSolid(0xf2f3); + static const IconData solidStarExclamation = IconData(0xf2f3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Exclamation icon /// /// https://fontawesome.com/icons/star-exclamation?style=regular /// achievement, alert, attention, award, failed, favorite, night, rating, required, score - static const IconData starExclamation = IconDataRegular(0xf2f3); + static const IconData starExclamation = IconData(0xf2f3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Exclamation icon /// /// https://fontawesome.com/icons/star-exclamation?style=light /// achievement, alert, attention, award, failed, favorite, night, rating, required, score - static const IconData lightStarExclamation = IconDataLight(0xf2f3); + static const IconData lightStarExclamation = IconData(0xf2f3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Exclamation icon /// /// https://fontawesome.com/icons/star-exclamation?style=thin /// achievement, alert, attention, award, failed, favorite, night, rating, required, score - static const IconData thinStarExclamation = IconDataThin(0xf2f3); + static const IconData thinStarExclamation = IconData(0xf2f3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Half icon /// /// https://fontawesome.com/icons/star-half?style=solid /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData solidStarHalf = IconDataSolid(0xf089); + static const IconData solidStarHalf = IconData(0xf089, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Half icon /// /// https://fontawesome.com/icons/star-half?style=regular /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData starHalf = IconDataRegular(0xf089); + static const IconData starHalf = IconData(0xf089, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Half icon /// /// https://fontawesome.com/icons/star-half?style=light /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData lightStarHalf = IconDataLight(0xf089); + static const IconData lightStarHalf = IconData(0xf089, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Half icon /// /// https://fontawesome.com/icons/star-half?style=thin /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData thinStarHalf = IconDataThin(0xf089); + static const IconData thinStarHalf = IconData(0xf089, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Half Stroke icon /// /// https://fontawesome.com/icons/star-half-stroke?style=solid /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData solidStarHalfStroke = IconDataSolid(0xf5c0); + static const IconData solidStarHalfStroke = IconData(0xf5c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias star-half-alt for icon [solidStarHalfStroke] @Deprecated('Use "solidStarHalfStroke" instead.') @@ -82185,7 +82185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-half-stroke?style=regular /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData starHalfStroke = IconDataRegular(0xf5c0); + static const IconData starHalfStroke = IconData(0xf5c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias star-half-alt for icon [starHalfStroke] @Deprecated('Use "starHalfStroke" instead.') @@ -82195,7 +82195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-half-stroke?style=light /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData lightStarHalfStroke = IconDataLight(0xf5c0); + static const IconData lightStarHalfStroke = IconData(0xf5c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias star-half-alt for icon [lightStarHalfStroke] @Deprecated('Use "lightStarHalfStroke" instead.') @@ -82205,7 +82205,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-half-stroke?style=thin /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData thinStarHalfStroke = IconDataThin(0xf5c0); + static const IconData thinStarHalfStroke = IconData(0xf5c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias star-half-alt for icon [thinStarHalfStroke] @Deprecated('Use "thinStarHalfStroke" instead.') @@ -82215,103 +82215,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-of-david?style=solid /// David, Jew, Jewish, jewish, judaism, religion, star, star of David - static const IconData solidStarOfDavid = IconDataSolid(0xf69a); + static const IconData solidStarOfDavid = IconData(0xf69a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Of David icon /// /// https://fontawesome.com/icons/star-of-david?style=regular /// David, Jew, Jewish, jewish, judaism, religion, star, star of David - static const IconData starOfDavid = IconDataRegular(0xf69a); + static const IconData starOfDavid = IconData(0xf69a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Of David icon /// /// https://fontawesome.com/icons/star-of-david?style=light /// David, Jew, Jewish, jewish, judaism, religion, star, star of David - static const IconData lightStarOfDavid = IconDataLight(0xf69a); + static const IconData lightStarOfDavid = IconData(0xf69a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Of David icon /// /// https://fontawesome.com/icons/star-of-david?style=thin /// David, Jew, Jewish, jewish, judaism, religion, star, star of David - static const IconData thinStarOfDavid = IconDataThin(0xf69a); + static const IconData thinStarOfDavid = IconData(0xf69a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Of Life icon /// /// https://fontawesome.com/icons/star-of-life?style=solid /// doctor, emt, first aid, health, medical - static const IconData solidStarOfLife = IconDataSolid(0xf621); + static const IconData solidStarOfLife = IconData(0xf621, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Of Life icon /// /// https://fontawesome.com/icons/star-of-life?style=regular /// doctor, emt, first aid, health, medical - static const IconData starOfLife = IconDataRegular(0xf621); + static const IconData starOfLife = IconData(0xf621, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Of Life icon /// /// https://fontawesome.com/icons/star-of-life?style=light /// doctor, emt, first aid, health, medical - static const IconData lightStarOfLife = IconDataLight(0xf621); + static const IconData lightStarOfLife = IconData(0xf621, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Of Life icon /// /// https://fontawesome.com/icons/star-of-life?style=thin /// doctor, emt, first aid, health, medical - static const IconData thinStarOfLife = IconDataThin(0xf621); + static const IconData thinStarOfLife = IconData(0xf621, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Sharp icon /// /// https://fontawesome.com/icons/star-sharp?style=solid /// Black Small Star, critic, quality, ratings, review, sky, vip - static const IconData solidStarSharp = IconDataSolid(0xe28b); + static const IconData solidStarSharp = IconData(0xe28b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Sharp icon /// /// https://fontawesome.com/icons/star-sharp?style=regular /// Black Small Star, critic, quality, ratings, review, sky, vip - static const IconData starSharp = IconDataRegular(0xe28b); + static const IconData starSharp = IconData(0xe28b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Sharp icon /// /// https://fontawesome.com/icons/star-sharp?style=light /// Black Small Star, critic, quality, ratings, review, sky, vip - static const IconData lightStarSharp = IconDataLight(0xe28b); + static const IconData lightStarSharp = IconData(0xe28b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Sharp icon /// /// https://fontawesome.com/icons/star-sharp?style=thin /// Black Small Star, critic, quality, ratings, review, sky, vip - static const IconData thinStarSharp = IconDataThin(0xe28b); + static const IconData thinStarSharp = IconData(0xe28b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Sharp Half icon /// /// https://fontawesome.com/icons/star-sharp-half?style=solid /// critic, ratings, review, sky - static const IconData solidStarSharpHalf = IconDataSolid(0xe28c); + static const IconData solidStarSharpHalf = IconData(0xe28c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Sharp Half icon /// /// https://fontawesome.com/icons/star-sharp-half?style=regular /// critic, ratings, review, sky - static const IconData starSharpHalf = IconDataRegular(0xe28c); + static const IconData starSharpHalf = IconData(0xe28c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Sharp Half icon /// /// https://fontawesome.com/icons/star-sharp-half?style=light /// critic, ratings, review, sky - static const IconData lightStarSharpHalf = IconDataLight(0xe28c); + static const IconData lightStarSharpHalf = IconData(0xe28c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Sharp Half icon /// /// https://fontawesome.com/icons/star-sharp-half?style=thin /// critic, ratings, review, sky - static const IconData thinStarSharpHalf = IconDataThin(0xe28c); + static const IconData thinStarSharpHalf = IconData(0xe28c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Star Sharp Half Stroke icon /// /// https://fontawesome.com/icons/star-sharp-half-stroke?style=solid /// critic, ratings, review, sky - static const IconData solidStarSharpHalfStroke = IconDataSolid(0xe28d); + static const IconData solidStarSharpHalfStroke = IconData(0xe28d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias star-sharp-half-alt for icon [solidStarSharpHalfStroke] @Deprecated('Use "solidStarSharpHalfStroke" instead.') @@ -82321,7 +82321,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-sharp-half-stroke?style=regular /// critic, ratings, review, sky - static const IconData starSharpHalfStroke = IconDataRegular(0xe28d); + static const IconData starSharpHalfStroke = IconData(0xe28d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias star-sharp-half-alt for icon [starSharpHalfStroke] @Deprecated('Use "starSharpHalfStroke" instead.') @@ -82331,7 +82331,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-sharp-half-stroke?style=light /// critic, ratings, review, sky - static const IconData lightStarSharpHalfStroke = IconDataLight(0xe28d); + static const IconData lightStarSharpHalfStroke = IconData(0xe28d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias star-sharp-half-alt for icon [lightStarSharpHalfStroke] @Deprecated('Use "lightStarSharpHalfStroke" instead.') @@ -82341,7 +82341,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-sharp-half-stroke?style=thin /// critic, ratings, review, sky - static const IconData thinStarSharpHalfStroke = IconDataThin(0xe28d); + static const IconData thinStarSharpHalfStroke = IconData(0xe28d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias star-sharp-half-alt for icon [thinStarSharpHalfStroke] @Deprecated('Use "thinStarSharpHalfStroke" instead.') @@ -82351,55 +82351,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/star-shooting?style=solid /// asteroid, comet, falling, meteor, shooting, shooting star, space, star, wish - static const IconData solidStarShooting = IconDataSolid(0xe036); + static const IconData solidStarShooting = IconData(0xe036, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Star Shooting icon /// /// https://fontawesome.com/icons/star-shooting?style=regular /// asteroid, comet, falling, meteor, shooting, shooting star, space, star, wish - static const IconData starShooting = IconDataRegular(0xe036); + static const IconData starShooting = IconData(0xe036, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Star Shooting icon /// /// https://fontawesome.com/icons/star-shooting?style=light /// asteroid, comet, falling, meteor, shooting, shooting star, space, star, wish - static const IconData lightStarShooting = IconDataLight(0xe036); + static const IconData lightStarShooting = IconData(0xe036, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Star Shooting icon /// /// https://fontawesome.com/icons/star-shooting?style=thin /// asteroid, comet, falling, meteor, shooting, shooting star, space, star, wish - static const IconData thinStarShooting = IconDataThin(0xe036); + static const IconData thinStarShooting = IconData(0xe036, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Starfighter icon /// /// https://fontawesome.com/icons/starfighter?style=solid /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData solidStarfighter = IconDataSolid(0xe037); + static const IconData solidStarfighter = IconData(0xe037, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Starfighter icon /// /// https://fontawesome.com/icons/starfighter?style=regular /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData starfighter = IconDataRegular(0xe037); + static const IconData starfighter = IconData(0xe037, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Starfighter icon /// /// https://fontawesome.com/icons/starfighter?style=light /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData lightStarfighter = IconDataLight(0xe037); + static const IconData lightStarfighter = IconData(0xe037, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Starfighter icon /// /// https://fontawesome.com/icons/starfighter?style=thin /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData thinStarfighter = IconDataThin(0xe037); + static const IconData thinStarfighter = IconData(0xe037, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Starfighter Twin Ion Engine icon /// /// https://fontawesome.com/icons/starfighter-twin-ion-engine?style=solid /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData solidStarfighterTwinIonEngine = IconDataSolid(0xe038); + static const IconData solidStarfighterTwinIonEngine = IconData(0xe038, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt for icon [solidStarfighterTwinIonEngine] @Deprecated('Use "solidStarfighterTwinIonEngine" instead.') @@ -82409,7 +82409,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/starfighter-twin-ion-engine?style=regular /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData starfighterTwinIonEngine = IconDataRegular(0xe038); + static const IconData starfighterTwinIonEngine = IconData(0xe038, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt for icon [starfighterTwinIonEngine] @Deprecated('Use "starfighterTwinIonEngine" instead.') @@ -82419,7 +82419,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/starfighter-twin-ion-engine?style=light /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData lightStarfighterTwinIonEngine = IconDataLight(0xe038); + static const IconData lightStarfighterTwinIonEngine = IconData(0xe038, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt for icon [lightStarfighterTwinIonEngine] @Deprecated('Use "lightStarfighterTwinIonEngine" instead.') @@ -82429,7 +82429,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/starfighter-twin-ion-engine?style=thin /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData thinStarfighterTwinIonEngine = IconDataThin(0xe038); + static const IconData thinStarfighterTwinIonEngine = IconData(0xe038, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt for icon [thinStarfighterTwinIonEngine] @Deprecated('Use "thinStarfighterTwinIonEngine" instead.') @@ -82440,7 +82440,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/starfighter-twin-ion-engine-advanced?style=solid /// empire, tie fighter static const IconData solidStarfighterTwinIonEngineAdvanced = - IconDataSolid(0xe28e); + IconData(0xe28e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt-advanced for icon [solidStarfighterTwinIonEngineAdvanced] @Deprecated('Use "solidStarfighterTwinIonEngineAdvanced" instead.') @@ -82452,7 +82452,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/starfighter-twin-ion-engine-advanced?style=regular /// empire, tie fighter static const IconData starfighterTwinIonEngineAdvanced = - IconDataRegular(0xe28e); + IconData(0xe28e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt-advanced for icon [starfighterTwinIonEngineAdvanced] @Deprecated('Use "starfighterTwinIonEngineAdvanced" instead.') @@ -82464,7 +82464,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/starfighter-twin-ion-engine-advanced?style=light /// empire, tie fighter static const IconData lightStarfighterTwinIonEngineAdvanced = - IconDataLight(0xe28e); + IconData(0xe28e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt-advanced for icon [lightStarfighterTwinIonEngineAdvanced] @Deprecated('Use "lightStarfighterTwinIonEngineAdvanced" instead.') @@ -82476,7 +82476,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/starfighter-twin-ion-engine-advanced?style=thin /// empire, tie fighter static const IconData thinStarfighterTwinIonEngineAdvanced = - IconDataThin(0xe28e); + IconData(0xe28e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias starfighter-alt-advanced for icon [thinStarfighterTwinIonEngineAdvanced] @Deprecated('Use "thinStarfighterTwinIonEngineAdvanced" instead.') @@ -82487,143 +82487,143 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/stars?style=solid /// favorite, galaxy, magic, night, quality, space - static const IconData solidStars = IconDataSolid(0xf762); + static const IconData solidStars = IconData(0xf762, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stars icon /// /// https://fontawesome.com/icons/stars?style=regular /// favorite, galaxy, magic, night, quality, space - static const IconData stars = IconDataRegular(0xf762); + static const IconData stars = IconData(0xf762, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stars icon /// /// https://fontawesome.com/icons/stars?style=light /// favorite, galaxy, magic, night, quality, space - static const IconData lightStars = IconDataLight(0xf762); + static const IconData lightStars = IconData(0xf762, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stars icon /// /// https://fontawesome.com/icons/stars?style=thin /// favorite, galaxy, magic, night, quality, space - static const IconData thinStars = IconDataThin(0xf762); + static const IconData thinStars = IconData(0xf762, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Starship icon /// /// https://fontawesome.com/icons/starship?style=solid /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconData solidStarship = IconDataSolid(0xe039); + static const IconData solidStarship = IconData(0xe039, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Starship icon /// /// https://fontawesome.com/icons/starship?style=regular /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconData starship = IconDataRegular(0xe039); + static const IconData starship = IconData(0xe039, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Starship icon /// /// https://fontawesome.com/icons/starship?style=light /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconData lightStarship = IconDataLight(0xe039); + static const IconData lightStarship = IconData(0xe039, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Starship icon /// /// https://fontawesome.com/icons/starship?style=thin /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconData thinStarship = IconDataThin(0xe039); + static const IconData thinStarship = IconData(0xe039, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Starship Freighter icon /// /// https://fontawesome.com/icons/starship-freighter?style=solid /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconData solidStarshipFreighter = IconDataSolid(0xe03a); + static const IconData solidStarshipFreighter = IconData(0xe03a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Starship Freighter icon /// /// https://fontawesome.com/icons/starship-freighter?style=regular /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconData starshipFreighter = IconDataRegular(0xe03a); + static const IconData starshipFreighter = IconData(0xe03a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Starship Freighter icon /// /// https://fontawesome.com/icons/starship-freighter?style=light /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconData lightStarshipFreighter = IconDataLight(0xe03a); + static const IconData lightStarshipFreighter = IconData(0xe03a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Starship Freighter icon /// /// https://fontawesome.com/icons/starship-freighter?style=thin /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconData thinStarshipFreighter = IconDataThin(0xe03a); + static const IconData thinStarshipFreighter = IconData(0xe03a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands StayLinked icon /// /// https://fontawesome.com/icons/staylinked?style=brands /// linkin - static const IconData staylinked = IconDataBrands(0xf3f5); + static const IconData staylinked = IconData(0xf3f5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Steak icon /// /// https://fontawesome.com/icons/steak?style=solid /// beef, chop, cut of meat, grill, lambchop, meat, porkchop, sirloin, steak - static const IconData solidSteak = IconDataSolid(0xf824); + static const IconData solidSteak = IconData(0xf824, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Steak icon /// /// https://fontawesome.com/icons/steak?style=regular /// beef, chop, cut of meat, grill, lambchop, meat, porkchop, sirloin, steak - static const IconData steak = IconDataRegular(0xf824); + static const IconData steak = IconData(0xf824, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Steak icon /// /// https://fontawesome.com/icons/steak?style=light /// beef, chop, cut of meat, grill, lambchop, meat, porkchop, sirloin, steak - static const IconData lightSteak = IconDataLight(0xf824); + static const IconData lightSteak = IconData(0xf824, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Steak icon /// /// https://fontawesome.com/icons/steak?style=thin /// beef, chop, cut of meat, grill, lambchop, meat, porkchop, sirloin, steak - static const IconData thinSteak = IconDataThin(0xf824); + static const IconData thinSteak = IconData(0xf824, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Steam icon /// /// https://fontawesome.com/icons/steam?style=brands - static const IconData steam = IconDataBrands(0xf1b6); + static const IconData steam = IconData(0xf1b6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Steam Symbol icon /// /// https://fontawesome.com/icons/steam-symbol?style=brands - static const IconData steamSymbol = IconDataBrands(0xf3f6); + static const IconData steamSymbol = IconData(0xf3f6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Steering Wheel icon /// /// https://fontawesome.com/icons/steering-wheel?style=solid /// auto, car, direction, driving, navigation - static const IconData solidSteeringWheel = IconDataSolid(0xf622); + static const IconData solidSteeringWheel = IconData(0xf622, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Steering Wheel icon /// /// https://fontawesome.com/icons/steering-wheel?style=regular /// auto, car, direction, driving, navigation - static const IconData steeringWheel = IconDataRegular(0xf622); + static const IconData steeringWheel = IconData(0xf622, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Steering Wheel icon /// /// https://fontawesome.com/icons/steering-wheel?style=light /// auto, car, direction, driving, navigation - static const IconData lightSteeringWheel = IconDataLight(0xf622); + static const IconData lightSteeringWheel = IconData(0xf622, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Steering Wheel icon /// /// https://fontawesome.com/icons/steering-wheel?style=thin /// auto, car, direction, driving, navigation - static const IconData thinSteeringWheel = IconDataThin(0xf622); + static const IconData thinSteeringWheel = IconData(0xf622, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sterling Sign icon /// /// https://fontawesome.com/icons/sterling-sign?style=solid /// Pound Sign, currency - static const IconData solidSterlingSign = IconDataSolid(0xf154); + static const IconData solidSterlingSign = IconData(0xf154, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias gbp for icon [solidSterlingSign] @Deprecated('Use "solidSterlingSign" instead.') @@ -82637,7 +82637,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sterling-sign?style=regular /// Pound Sign, currency - static const IconData sterlingSign = IconDataRegular(0xf154); + static const IconData sterlingSign = IconData(0xf154, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias gbp for icon [sterlingSign] @Deprecated('Use "sterlingSign" instead.') @@ -82651,7 +82651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sterling-sign?style=light /// Pound Sign, currency - static const IconData lightSterlingSign = IconDataLight(0xf154); + static const IconData lightSterlingSign = IconData(0xf154, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias gbp for icon [lightSterlingSign] @Deprecated('Use "lightSterlingSign" instead.') @@ -82665,7 +82665,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sterling-sign?style=thin /// Pound Sign, currency - static const IconData thinSterlingSign = IconDataThin(0xf154); + static const IconData thinSterlingSign = IconData(0xf154, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias gbp for icon [thinSterlingSign] @Deprecated('Use "thinSterlingSign" instead.') @@ -82679,479 +82679,479 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/stethoscope?style=solid /// covid-19, diagnosis, doctor, general practitioner, heart, hospital, infirmary, medicine, office, outpatient, stethoscope - static const IconData solidStethoscope = IconDataSolid(0xf0f1); + static const IconData solidStethoscope = IconData(0xf0f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stethoscope icon /// /// https://fontawesome.com/icons/stethoscope?style=regular /// covid-19, diagnosis, doctor, general practitioner, heart, hospital, infirmary, medicine, office, outpatient, stethoscope - static const IconData stethoscope = IconDataRegular(0xf0f1); + static const IconData stethoscope = IconData(0xf0f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stethoscope icon /// /// https://fontawesome.com/icons/stethoscope?style=light /// covid-19, diagnosis, doctor, general practitioner, heart, hospital, infirmary, medicine, office, outpatient, stethoscope - static const IconData lightStethoscope = IconDataLight(0xf0f1); + static const IconData lightStethoscope = IconData(0xf0f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stethoscope icon /// /// https://fontawesome.com/icons/stethoscope?style=thin /// covid-19, diagnosis, doctor, general practitioner, heart, hospital, infirmary, medicine, office, outpatient, stethoscope - static const IconData thinStethoscope = IconDataThin(0xf0f1); + static const IconData thinStethoscope = IconData(0xf0f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Sticker Mule icon /// /// https://fontawesome.com/icons/sticker-mule?style=brands - static const IconData stickerMule = IconDataBrands(0xf3f7); + static const IconData stickerMule = IconData(0xf3f7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Stocking icon /// /// https://fontawesome.com/icons/stocking?style=solid /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData solidStocking = IconDataSolid(0xf7d5); + static const IconData solidStocking = IconData(0xf7d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stocking icon /// /// https://fontawesome.com/icons/stocking?style=regular /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData stocking = IconDataRegular(0xf7d5); + static const IconData stocking = IconData(0xf7d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stocking icon /// /// https://fontawesome.com/icons/stocking?style=light /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData lightStocking = IconDataLight(0xf7d5); + static const IconData lightStocking = IconData(0xf7d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stocking icon /// /// https://fontawesome.com/icons/stocking?style=thin /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData thinStocking = IconDataThin(0xf7d5); + static const IconData thinStocking = IconData(0xf7d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stomach icon /// /// https://fontawesome.com/icons/stomach?style=solid /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData solidStomach = IconDataSolid(0xf623); + static const IconData solidStomach = IconData(0xf623, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stomach icon /// /// https://fontawesome.com/icons/stomach?style=regular /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData stomach = IconDataRegular(0xf623); + static const IconData stomach = IconData(0xf623, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stomach icon /// /// https://fontawesome.com/icons/stomach?style=light /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData lightStomach = IconDataLight(0xf623); + static const IconData lightStomach = IconData(0xf623, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stomach icon /// /// https://fontawesome.com/icons/stomach?style=thin /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData thinStomach = IconDataThin(0xf623); + static const IconData thinStomach = IconData(0xf623, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stop icon /// /// https://fontawesome.com/icons/stop?style=solid /// block, box, square, stop, stop button - static const IconData solidStop = IconDataSolid(0xf04d); + static const IconData solidStop = IconData(0xf04d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stop icon /// /// https://fontawesome.com/icons/stop?style=regular /// block, box, square, stop, stop button - static const IconData stop = IconDataRegular(0xf04d); + static const IconData stop = IconData(0xf04d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stop icon /// /// https://fontawesome.com/icons/stop?style=light /// block, box, square, stop, stop button - static const IconData lightStop = IconDataLight(0xf04d); + static const IconData lightStop = IconData(0xf04d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stop icon /// /// https://fontawesome.com/icons/stop?style=thin /// block, box, square, stop, stop button - static const IconData thinStop = IconDataThin(0xf04d); + static const IconData thinStop = IconData(0xf04d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stopwatch icon /// /// https://fontawesome.com/icons/stopwatch?style=solid /// clock, reminder, stopwatch, time, waiting - static const IconData solidStopwatch = IconDataSolid(0xf2f2); + static const IconData solidStopwatch = IconData(0xf2f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stopwatch icon /// /// https://fontawesome.com/icons/stopwatch?style=regular /// clock, reminder, stopwatch, time, waiting - static const IconData stopwatch = IconDataRegular(0xf2f2); + static const IconData stopwatch = IconData(0xf2f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stopwatch icon /// /// https://fontawesome.com/icons/stopwatch?style=light /// clock, reminder, stopwatch, time, waiting - static const IconData lightStopwatch = IconDataLight(0xf2f2); + static const IconData lightStopwatch = IconData(0xf2f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stopwatch icon /// /// https://fontawesome.com/icons/stopwatch?style=thin /// clock, reminder, stopwatch, time, waiting - static const IconData thinStopwatch = IconDataThin(0xf2f2); + static const IconData thinStopwatch = IconData(0xf2f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stopwatch 20 icon /// /// https://fontawesome.com/icons/stopwatch-20?style=solid /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconData solidStopwatch20 = IconDataSolid(0xe06f); + static const IconData solidStopwatch20 = IconData(0xe06f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stopwatch 20 icon /// /// https://fontawesome.com/icons/stopwatch-20?style=regular /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconData stopwatch20 = IconDataRegular(0xe06f); + static const IconData stopwatch20 = IconData(0xe06f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stopwatch 20 icon /// /// https://fontawesome.com/icons/stopwatch-20?style=light /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconData lightStopwatch20 = IconDataLight(0xe06f); + static const IconData lightStopwatch20 = IconData(0xe06f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stopwatch 20 icon /// /// https://fontawesome.com/icons/stopwatch-20?style=thin /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconData thinStopwatch20 = IconDataThin(0xe06f); + static const IconData thinStopwatch20 = IconData(0xe06f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Store icon /// /// https://fontawesome.com/icons/store?style=solid /// bodega, building, buy, market, purchase, shopping, store - static const IconData solidStore = IconDataSolid(0xf54e); + static const IconData solidStore = IconData(0xf54e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Store icon /// /// https://fontawesome.com/icons/store?style=regular /// bodega, building, buy, market, purchase, shopping, store - static const IconData store = IconDataRegular(0xf54e); + static const IconData store = IconData(0xf54e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Store icon /// /// https://fontawesome.com/icons/store?style=light /// bodega, building, buy, market, purchase, shopping, store - static const IconData lightStore = IconDataLight(0xf54e); + static const IconData lightStore = IconData(0xf54e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Store icon /// /// https://fontawesome.com/icons/store?style=thin /// bodega, building, buy, market, purchase, shopping, store - static const IconData thinStore = IconDataThin(0xf54e); + static const IconData thinStore = IconData(0xf54e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Store Lock icon /// /// https://fontawesome.com/icons/store-lock?style=solid /// buy, lock, padlock, privacy, purchase, shop, store - static const IconData solidStoreLock = IconDataSolid(0xe4a6); + static const IconData solidStoreLock = IconData(0xe4a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Store Lock icon /// /// https://fontawesome.com/icons/store-lock?style=regular /// buy, lock, padlock, privacy, purchase, shop, store - static const IconData storeLock = IconDataRegular(0xe4a6); + static const IconData storeLock = IconData(0xe4a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Store Lock icon /// /// https://fontawesome.com/icons/store-lock?style=light /// buy, lock, padlock, privacy, purchase, shop, store - static const IconData lightStoreLock = IconDataLight(0xe4a6); + static const IconData lightStoreLock = IconData(0xe4a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Store Lock icon /// /// https://fontawesome.com/icons/store-lock?style=thin /// buy, lock, padlock, privacy, purchase, shop, store - static const IconData thinStoreLock = IconDataThin(0xe4a6); + static const IconData thinStoreLock = IconData(0xe4a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Store Slash icon /// /// https://fontawesome.com/icons/store-slash?style=solid /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData solidStoreSlash = IconDataSolid(0xe071); + static const IconData solidStoreSlash = IconData(0xe071, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Store Slash icon /// /// https://fontawesome.com/icons/store-slash?style=regular /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData storeSlash = IconDataRegular(0xe071); + static const IconData storeSlash = IconData(0xe071, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Store Slash icon /// /// https://fontawesome.com/icons/store-slash?style=light /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData lightStoreSlash = IconDataLight(0xe071); + static const IconData lightStoreSlash = IconData(0xe071, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Store Slash icon /// /// https://fontawesome.com/icons/store-slash?style=thin /// building, buy, closed, covid-19, disabled, purchase, shopping - static const IconData thinStoreSlash = IconDataThin(0xe071); + static const IconData thinStoreSlash = IconData(0xe071, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Strava icon /// /// https://fontawesome.com/icons/strava?style=brands - static const IconData strava = IconDataBrands(0xf428); + static const IconData strava = IconData(0xf428, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Strawberry icon /// /// https://fontawesome.com/icons/strawberry?style=solid /// berry, fruit, juice, seed, strawberry, summer - static const IconData solidStrawberry = IconDataSolid(0xe32b); + static const IconData solidStrawberry = IconData(0xe32b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Strawberry icon /// /// https://fontawesome.com/icons/strawberry?style=regular /// berry, fruit, juice, seed, strawberry, summer - static const IconData strawberry = IconDataRegular(0xe32b); + static const IconData strawberry = IconData(0xe32b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Strawberry icon /// /// https://fontawesome.com/icons/strawberry?style=light /// berry, fruit, juice, seed, strawberry, summer - static const IconData lightStrawberry = IconDataLight(0xe32b); + static const IconData lightStrawberry = IconData(0xe32b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Strawberry icon /// /// https://fontawesome.com/icons/strawberry?style=thin /// berry, fruit, juice, seed, strawberry, summer - static const IconData thinStrawberry = IconDataThin(0xe32b); + static const IconData thinStrawberry = IconData(0xe32b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Street View icon /// /// https://fontawesome.com/icons/street-view?style=solid /// directions, location, map, navigation, uer - static const IconData solidStreetView = IconDataSolid(0xf21d); + static const IconData solidStreetView = IconData(0xf21d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Street View icon /// /// https://fontawesome.com/icons/street-view?style=regular /// directions, location, map, navigation, uer - static const IconData streetView = IconDataRegular(0xf21d); + static const IconData streetView = IconData(0xf21d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Street View icon /// /// https://fontawesome.com/icons/street-view?style=light /// directions, location, map, navigation, uer - static const IconData lightStreetView = IconDataLight(0xf21d); + static const IconData lightStreetView = IconData(0xf21d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Street View icon /// /// https://fontawesome.com/icons/street-view?style=thin /// directions, location, map, navigation, uer - static const IconData thinStreetView = IconDataThin(0xf21d); + static const IconData thinStreetView = IconData(0xf21d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Stretcher icon /// /// https://fontawesome.com/icons/stretcher?style=solid /// ambulance, bed, emergency, er, patient - static const IconData solidStretcher = IconDataSolid(0xf825); + static const IconData solidStretcher = IconData(0xf825, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stretcher icon /// /// https://fontawesome.com/icons/stretcher?style=regular /// ambulance, bed, emergency, er, patient - static const IconData stretcher = IconDataRegular(0xf825); + static const IconData stretcher = IconData(0xf825, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stretcher icon /// /// https://fontawesome.com/icons/stretcher?style=light /// ambulance, bed, emergency, er, patient - static const IconData lightStretcher = IconDataLight(0xf825); + static const IconData lightStretcher = IconData(0xf825, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stretcher icon /// /// https://fontawesome.com/icons/stretcher?style=thin /// ambulance, bed, emergency, er, patient - static const IconData thinStretcher = IconDataThin(0xf825); + static const IconData thinStretcher = IconData(0xf825, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Strikethrough icon /// /// https://fontawesome.com/icons/strikethrough?style=solid /// cancel, edit, font, format, modify, text, type - static const IconData solidStrikethrough = IconDataSolid(0xf0cc); + static const IconData solidStrikethrough = IconData(0xf0cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Strikethrough icon /// /// https://fontawesome.com/icons/strikethrough?style=regular /// cancel, edit, font, format, modify, text, type - static const IconData strikethrough = IconDataRegular(0xf0cc); + static const IconData strikethrough = IconData(0xf0cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Strikethrough icon /// /// https://fontawesome.com/icons/strikethrough?style=light /// cancel, edit, font, format, modify, text, type - static const IconData lightStrikethrough = IconDataLight(0xf0cc); + static const IconData lightStrikethrough = IconData(0xf0cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Strikethrough icon /// /// https://fontawesome.com/icons/strikethrough?style=thin /// cancel, edit, font, format, modify, text, type - static const IconData thinStrikethrough = IconDataThin(0xf0cc); + static const IconData thinStrikethrough = IconData(0xf0cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Stripe icon /// /// https://fontawesome.com/icons/stripe?style=brands - static const IconData stripe = IconDataBrands(0xf429); + static const IconData stripe = IconData(0xf429, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Stripe S icon /// /// https://fontawesome.com/icons/stripe-s?style=brands - static const IconData stripeS = IconDataBrands(0xf42a); + static const IconData stripeS = IconData(0xf42a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Stroopwafel icon /// /// https://fontawesome.com/icons/stroopwafel?style=solid /// caramel, cookie, dessert, sweets, waffle - static const IconData solidStroopwafel = IconDataSolid(0xf551); + static const IconData solidStroopwafel = IconData(0xf551, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Stroopwafel icon /// /// https://fontawesome.com/icons/stroopwafel?style=regular /// caramel, cookie, dessert, sweets, waffle - static const IconData stroopwafel = IconDataRegular(0xf551); + static const IconData stroopwafel = IconData(0xf551, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Stroopwafel icon /// /// https://fontawesome.com/icons/stroopwafel?style=light /// caramel, cookie, dessert, sweets, waffle - static const IconData lightStroopwafel = IconDataLight(0xf551); + static const IconData lightStroopwafel = IconData(0xf551, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Stroopwafel icon /// /// https://fontawesome.com/icons/stroopwafel?style=thin /// caramel, cookie, dessert, sweets, waffle - static const IconData thinStroopwafel = IconDataThin(0xf551); + static const IconData thinStroopwafel = IconData(0xf551, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Stubber icon /// /// https://fontawesome.com/icons/stubber?style=brands - static const IconData stubber = IconDataBrands(0xe5c7); + static const IconData stubber = IconData(0xe5c7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Studio Vinari icon /// /// https://fontawesome.com/icons/studiovinari?style=brands - static const IconData studiovinari = IconDataBrands(0xf3f8); + static const IconData studiovinari = IconData(0xf3f8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands StumbleUpon Logo icon /// /// https://fontawesome.com/icons/stumbleupon?style=brands - static const IconData stumbleupon = IconDataBrands(0xf1a4); + static const IconData stumbleupon = IconData(0xf1a4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands StumbleUpon Circle icon /// /// https://fontawesome.com/icons/stumbleupon-circle?style=brands - static const IconData stumbleuponCircle = IconDataBrands(0xf1a3); + static const IconData stumbleuponCircle = IconData(0xf1a3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Subscript icon /// /// https://fontawesome.com/icons/subscript?style=solid /// edit, font, format, text, type - static const IconData solidSubscript = IconDataSolid(0xf12c); + static const IconData solidSubscript = IconData(0xf12c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Subscript icon /// /// https://fontawesome.com/icons/subscript?style=regular /// edit, font, format, text, type - static const IconData subscript = IconDataRegular(0xf12c); + static const IconData subscript = IconData(0xf12c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Subscript icon /// /// https://fontawesome.com/icons/subscript?style=light /// edit, font, format, text, type - static const IconData lightSubscript = IconDataLight(0xf12c); + static const IconData lightSubscript = IconData(0xf12c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Subscript icon /// /// https://fontawesome.com/icons/subscript?style=thin /// edit, font, format, text, type - static const IconData thinSubscript = IconDataThin(0xf12c); + static const IconData thinSubscript = IconData(0xf12c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Subtitles icon /// /// https://fontawesome.com/icons/subtitles?style=solid /// caption, description, film, language, movie, text, translation, closed captions - static const IconData solidSubtitles = IconDataSolid(0xe60f); + static const IconData solidSubtitles = IconData(0xe60f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Subtitles icon /// /// https://fontawesome.com/icons/subtitles?style=regular /// caption, description, film, language, movie, text, translation, closed captions - static const IconData subtitles = IconDataRegular(0xe60f); + static const IconData subtitles = IconData(0xe60f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Subtitles icon /// /// https://fontawesome.com/icons/subtitles?style=light /// caption, description, film, language, movie, text, translation, closed captions - static const IconData lightSubtitles = IconDataLight(0xe60f); + static const IconData lightSubtitles = IconData(0xe60f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Subtitles icon /// /// https://fontawesome.com/icons/subtitles?style=thin /// caption, description, film, language, movie, text, translation, closed captions - static const IconData thinSubtitles = IconDataThin(0xe60f); + static const IconData thinSubtitles = IconData(0xe60f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Subtitles Slash icon /// /// https://fontawesome.com/icons/subtitles-slash?style=solid /// caption, film, language, movie, text, translation, closed captions, description, off - static const IconData solidSubtitlesSlash = IconDataSolid(0xe610); + static const IconData solidSubtitlesSlash = IconData(0xe610, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Subtitles Slash icon /// /// https://fontawesome.com/icons/subtitles-slash?style=regular /// caption, film, language, movie, text, translation, closed captions, description, off - static const IconData subtitlesSlash = IconDataRegular(0xe610); + static const IconData subtitlesSlash = IconData(0xe610, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Subtitles Slash icon /// /// https://fontawesome.com/icons/subtitles-slash?style=light /// caption, film, language, movie, text, translation, closed captions, description, off - static const IconData lightSubtitlesSlash = IconDataLight(0xe610); + static const IconData lightSubtitlesSlash = IconData(0xe610, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Subtitles Slash icon /// /// https://fontawesome.com/icons/subtitles-slash?style=thin /// caption, film, language, movie, text, translation, closed captions, description, off - static const IconData thinSubtitlesSlash = IconDataThin(0xe610); + static const IconData thinSubtitlesSlash = IconData(0xe610, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Suitcase icon /// /// https://fontawesome.com/icons/suitcase?style=solid /// baggage, luggage, move, packing, suitcase, travel, trip - static const IconData solidSuitcase = IconDataSolid(0xf0f2); + static const IconData solidSuitcase = IconData(0xf0f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Suitcase icon /// /// https://fontawesome.com/icons/suitcase?style=regular /// baggage, luggage, move, packing, suitcase, travel, trip - static const IconData suitcase = IconDataRegular(0xf0f2); + static const IconData suitcase = IconData(0xf0f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Suitcase icon /// /// https://fontawesome.com/icons/suitcase?style=light /// baggage, luggage, move, packing, suitcase, travel, trip - static const IconData lightSuitcase = IconDataLight(0xf0f2); + static const IconData lightSuitcase = IconData(0xf0f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Suitcase icon /// /// https://fontawesome.com/icons/suitcase?style=thin /// baggage, luggage, move, packing, suitcase, travel, trip - static const IconData thinSuitcase = IconDataThin(0xf0f2); + static const IconData thinSuitcase = IconData(0xf0f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Suitcase Medical icon /// /// https://fontawesome.com/icons/suitcase-medical?style=solid /// first aid, firstaid, health, help, medical, supply, support - static const IconData solidSuitcaseMedical = IconDataSolid(0xf0fa); + static const IconData solidSuitcaseMedical = IconData(0xf0fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias medkit for icon [solidSuitcaseMedical] @Deprecated('Use "solidSuitcaseMedical" instead.') @@ -83161,7 +83161,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/suitcase-medical?style=regular /// first aid, firstaid, health, help, medical, supply, support - static const IconData suitcaseMedical = IconDataRegular(0xf0fa); + static const IconData suitcaseMedical = IconData(0xf0fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias medkit for icon [suitcaseMedical] @Deprecated('Use "suitcaseMedical" instead.') @@ -83171,7 +83171,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/suitcase-medical?style=light /// first aid, firstaid, health, help, medical, supply, support - static const IconData lightSuitcaseMedical = IconDataLight(0xf0fa); + static const IconData lightSuitcaseMedical = IconData(0xf0fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias medkit for icon [lightSuitcaseMedical] @Deprecated('Use "lightSuitcaseMedical" instead.') @@ -83181,7 +83181,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/suitcase-medical?style=thin /// first aid, firstaid, health, help, medical, supply, support - static const IconData thinSuitcaseMedical = IconDataThin(0xf0fa); + static const IconData thinSuitcaseMedical = IconData(0xf0fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias medkit for icon [thinSuitcaseMedical] @Deprecated('Use "thinSuitcaseMedical" instead.') @@ -83191,55 +83191,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/suitcase-rolling?style=solid /// baggage, luggage, move, suitcase, travel, trip - static const IconData solidSuitcaseRolling = IconDataSolid(0xf5c1); + static const IconData solidSuitcaseRolling = IconData(0xf5c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Suitcase Rolling icon /// /// https://fontawesome.com/icons/suitcase-rolling?style=regular /// baggage, luggage, move, suitcase, travel, trip - static const IconData suitcaseRolling = IconDataRegular(0xf5c1); + static const IconData suitcaseRolling = IconData(0xf5c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Suitcase Rolling icon /// /// https://fontawesome.com/icons/suitcase-rolling?style=light /// baggage, luggage, move, suitcase, travel, trip - static const IconData lightSuitcaseRolling = IconDataLight(0xf5c1); + static const IconData lightSuitcaseRolling = IconData(0xf5c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Suitcase Rolling icon /// /// https://fontawesome.com/icons/suitcase-rolling?style=thin /// baggage, luggage, move, suitcase, travel, trip - static const IconData thinSuitcaseRolling = IconDataThin(0xf5c1); + static const IconData thinSuitcaseRolling = IconData(0xf5c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sun icon /// /// https://fontawesome.com/icons/sun?style=solid /// bright, brighten, contrast, day, lighter, rays, sol, solar, star, sun, sunny, weather - static const IconData solidSun = IconDataSolid(0xf185); + static const IconData solidSun = IconData(0xf185, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sun icon /// /// https://fontawesome.com/icons/sun?style=regular /// bright, brighten, contrast, day, lighter, rays, sol, solar, star, sun, sunny, weather - static const IconData sun = IconDataRegular(0xf185); + static const IconData sun = IconData(0xf185, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sun icon /// /// https://fontawesome.com/icons/sun?style=light /// bright, brighten, contrast, day, lighter, rays, sol, solar, star, sun, sunny, weather - static const IconData lightSun = IconDataLight(0xf185); + static const IconData lightSun = IconData(0xf185, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sun icon /// /// https://fontawesome.com/icons/sun?style=thin /// bright, brighten, contrast, day, lighter, rays, sol, solar, star, sun, sunny, weather - static const IconData thinSun = IconDataThin(0xf185); + static const IconData thinSun = IconData(0xf185, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sun Bright icon /// /// https://fontawesome.com/icons/sun-bright?style=solid /// brightness, sky, summer - static const IconData solidSunBright = IconDataSolid(0xe28f); + static const IconData solidSunBright = IconData(0xe28f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias sun-alt for icon [solidSunBright] @Deprecated('Use "solidSunBright" instead.') @@ -83249,7 +83249,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sun-bright?style=regular /// brightness, sky, summer - static const IconData sunBright = IconDataRegular(0xe28f); + static const IconData sunBright = IconData(0xe28f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias sun-alt for icon [sunBright] @Deprecated('Use "sunBright" instead.') @@ -83259,7 +83259,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sun-bright?style=light /// brightness, sky, summer - static const IconData lightSunBright = IconDataLight(0xe28f); + static const IconData lightSunBright = IconData(0xe28f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias sun-alt for icon [lightSunBright] @Deprecated('Use "lightSunBright" instead.') @@ -83269,7 +83269,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sun-bright?style=thin /// brightness, sky, summer - static const IconData thinSunBright = IconDataThin(0xe28f); + static const IconData thinSunBright = IconData(0xe28f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias sun-alt for icon [thinSunBright] @Deprecated('Use "thinSunBright" instead.') @@ -83279,215 +83279,215 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sun-cloud?style=solid /// cloud, day, lighter, sol, solar, star, sun, sun behind small cloud, weather - static const IconData solidSunCloud = IconDataSolid(0xf763); + static const IconData solidSunCloud = IconData(0xf763, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sun Cloud icon /// /// https://fontawesome.com/icons/sun-cloud?style=regular /// cloud, day, lighter, sol, solar, star, sun, sun behind small cloud, weather - static const IconData sunCloud = IconDataRegular(0xf763); + static const IconData sunCloud = IconData(0xf763, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sun Cloud icon /// /// https://fontawesome.com/icons/sun-cloud?style=light /// cloud, day, lighter, sol, solar, star, sun, sun behind small cloud, weather - static const IconData lightSunCloud = IconDataLight(0xf763); + static const IconData lightSunCloud = IconData(0xf763, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sun Cloud icon /// /// https://fontawesome.com/icons/sun-cloud?style=thin /// cloud, day, lighter, sol, solar, star, sun, sun behind small cloud, weather - static const IconData thinSunCloud = IconDataThin(0xf763); + static const IconData thinSunCloud = IconData(0xf763, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sun Dust icon /// /// https://fontawesome.com/icons/sun-dust?style=solid /// day, dry, haze, heat - static const IconData solidSunDust = IconDataSolid(0xf764); + static const IconData solidSunDust = IconData(0xf764, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sun Dust icon /// /// https://fontawesome.com/icons/sun-dust?style=regular /// day, dry, haze, heat - static const IconData sunDust = IconDataRegular(0xf764); + static const IconData sunDust = IconData(0xf764, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sun Dust icon /// /// https://fontawesome.com/icons/sun-dust?style=light /// day, dry, haze, heat - static const IconData lightSunDust = IconDataLight(0xf764); + static const IconData lightSunDust = IconData(0xf764, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sun Dust icon /// /// https://fontawesome.com/icons/sun-dust?style=thin /// day, dry, haze, heat - static const IconData thinSunDust = IconDataThin(0xf764); + static const IconData thinSunDust = IconData(0xf764, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sun Haze icon /// /// https://fontawesome.com/icons/sun-haze?style=solid /// fog, heat, hot, sweltering - static const IconData solidSunHaze = IconDataSolid(0xf765); + static const IconData solidSunHaze = IconData(0xf765, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sun Haze icon /// /// https://fontawesome.com/icons/sun-haze?style=regular /// fog, heat, hot, sweltering - static const IconData sunHaze = IconDataRegular(0xf765); + static const IconData sunHaze = IconData(0xf765, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sun Haze icon /// /// https://fontawesome.com/icons/sun-haze?style=light /// fog, heat, hot, sweltering - static const IconData lightSunHaze = IconDataLight(0xf765); + static const IconData lightSunHaze = IconData(0xf765, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sun Haze icon /// /// https://fontawesome.com/icons/sun-haze?style=thin /// fog, heat, hot, sweltering - static const IconData thinSunHaze = IconDataThin(0xf765); + static const IconData thinSunHaze = IconData(0xf765, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sun Plant Wilt icon /// /// https://fontawesome.com/icons/sun-plant-wilt?style=solid /// arid, droop, drought - static const IconData solidSunPlantWilt = IconDataSolid(0xe57a); + static const IconData solidSunPlantWilt = IconData(0xe57a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sun Plant Wilt icon /// /// https://fontawesome.com/icons/sun-plant-wilt?style=regular /// arid, droop, drought - static const IconData sunPlantWilt = IconDataRegular(0xe57a); + static const IconData sunPlantWilt = IconData(0xe57a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sun Plant Wilt icon /// /// https://fontawesome.com/icons/sun-plant-wilt?style=light /// arid, droop, drought - static const IconData lightSunPlantWilt = IconDataLight(0xe57a); + static const IconData lightSunPlantWilt = IconData(0xe57a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sun Plant Wilt icon /// /// https://fontawesome.com/icons/sun-plant-wilt?style=thin /// arid, droop, drought - static const IconData thinSunPlantWilt = IconDataThin(0xe57a); + static const IconData thinSunPlantWilt = IconData(0xe57a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sunglasses icon /// /// https://fontawesome.com/icons/sunglasses?style=solid /// bright, cool, dark, eye, eyewear, glasses, mib, shades, sunglasses - static const IconData solidSunglasses = IconDataSolid(0xf892); + static const IconData solidSunglasses = IconData(0xf892, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sunglasses icon /// /// https://fontawesome.com/icons/sunglasses?style=regular /// bright, cool, dark, eye, eyewear, glasses, mib, shades, sunglasses - static const IconData sunglasses = IconDataRegular(0xf892); + static const IconData sunglasses = IconData(0xf892, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sunglasses icon /// /// https://fontawesome.com/icons/sunglasses?style=light /// bright, cool, dark, eye, eyewear, glasses, mib, shades, sunglasses - static const IconData lightSunglasses = IconDataLight(0xf892); + static const IconData lightSunglasses = IconData(0xf892, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sunglasses icon /// /// https://fontawesome.com/icons/sunglasses?style=thin /// bright, cool, dark, eye, eyewear, glasses, mib, shades, sunglasses - static const IconData thinSunglasses = IconDataThin(0xf892); + static const IconData thinSunglasses = IconData(0xf892, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sunrise icon /// /// https://fontawesome.com/icons/sunrise?style=solid /// dawn, day, daybreak, daylight, daytime, morning, sun, sun up, sunrise - static const IconData solidSunrise = IconDataSolid(0xf766); + static const IconData solidSunrise = IconData(0xf766, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sunrise icon /// /// https://fontawesome.com/icons/sunrise?style=regular /// dawn, day, daybreak, daylight, daytime, morning, sun, sun up, sunrise - static const IconData sunrise = IconDataRegular(0xf766); + static const IconData sunrise = IconData(0xf766, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sunrise icon /// /// https://fontawesome.com/icons/sunrise?style=light /// dawn, day, daybreak, daylight, daytime, morning, sun, sun up, sunrise - static const IconData lightSunrise = IconDataLight(0xf766); + static const IconData lightSunrise = IconData(0xf766, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sunrise icon /// /// https://fontawesome.com/icons/sunrise?style=thin /// dawn, day, daybreak, daylight, daytime, morning, sun, sun up, sunrise - static const IconData thinSunrise = IconDataThin(0xf766); + static const IconData thinSunrise = IconData(0xf766, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sunset icon /// /// https://fontawesome.com/icons/sunset?style=solid /// dusk, night, nighttime, sun, sun down, sunset - static const IconData solidSunset = IconDataSolid(0xf767); + static const IconData solidSunset = IconData(0xf767, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sunset icon /// /// https://fontawesome.com/icons/sunset?style=regular /// dusk, night, nighttime, sun, sun down, sunset - static const IconData sunset = IconDataRegular(0xf767); + static const IconData sunset = IconData(0xf767, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sunset icon /// /// https://fontawesome.com/icons/sunset?style=light /// dusk, night, nighttime, sun, sun down, sunset - static const IconData lightSunset = IconDataLight(0xf767); + static const IconData lightSunset = IconData(0xf767, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sunset icon /// /// https://fontawesome.com/icons/sunset?style=thin /// dusk, night, nighttime, sun, sun down, sunset - static const IconData thinSunset = IconDataThin(0xf767); + static const IconData thinSunset = IconData(0xf767, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Superpowers icon /// /// https://fontawesome.com/icons/superpowers?style=brands - static const IconData superpowers = IconDataBrands(0xf2dd); + static const IconData superpowers = IconData(0xf2dd, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Superscript icon /// /// https://fontawesome.com/icons/superscript?style=solid /// edit, exponential, font, format, text, type - static const IconData solidSuperscript = IconDataSolid(0xf12b); + static const IconData solidSuperscript = IconData(0xf12b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Superscript icon /// /// https://fontawesome.com/icons/superscript?style=regular /// edit, exponential, font, format, text, type - static const IconData superscript = IconDataRegular(0xf12b); + static const IconData superscript = IconData(0xf12b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Superscript icon /// /// https://fontawesome.com/icons/superscript?style=light /// edit, exponential, font, format, text, type - static const IconData lightSuperscript = IconDataLight(0xf12b); + static const IconData lightSuperscript = IconData(0xf12b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Superscript icon /// /// https://fontawesome.com/icons/superscript?style=thin /// edit, exponential, font, format, text, type - static const IconData thinSuperscript = IconDataThin(0xf12b); + static const IconData thinSuperscript = IconData(0xf12b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Supple icon /// /// https://fontawesome.com/icons/supple?style=brands - static const IconData supple = IconDataBrands(0xf3f9); + static const IconData supple = IconData(0xf3f9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Suse icon /// /// https://fontawesome.com/icons/suse?style=brands /// linux, operating system, os - static const IconData suse = IconDataBrands(0xf7d6); + static const IconData suse = IconData(0xf7d6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Sushi icon /// /// https://fontawesome.com/icons/sushi?style=solid /// fish, nigiri, nori, raw, rice, salmon, seafood, tuna - static const IconData solidSushi = IconDataSolid(0xe48a); + static const IconData solidSushi = IconData(0xe48a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias nigiri for icon [solidSushi] @Deprecated('Use "solidSushi" instead.') @@ -83497,7 +83497,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi?style=regular /// fish, nigiri, nori, raw, rice, salmon, seafood, tuna - static const IconData sushi = IconDataRegular(0xe48a); + static const IconData sushi = IconData(0xe48a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias nigiri for icon [sushi] @Deprecated('Use "sushi" instead.') @@ -83507,7 +83507,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi?style=light /// fish, nigiri, nori, raw, rice, salmon, seafood, tuna - static const IconData lightSushi = IconDataLight(0xe48a); + static const IconData lightSushi = IconData(0xe48a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias nigiri for icon [lightSushi] @Deprecated('Use "lightSushi" instead.') @@ -83517,7 +83517,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi?style=thin /// fish, nigiri, nori, raw, rice, salmon, seafood, tuna - static const IconData thinSushi = IconDataThin(0xe48a); + static const IconData thinSushi = IconData(0xe48a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias nigiri for icon [thinSushi] @Deprecated('Use "thinSushi" instead.') @@ -83527,7 +83527,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi-roll?style=solid /// fish, maki, nori, raw, rice, salmon, seafood, seaweed, tuna - static const IconData solidSushiRoll = IconDataSolid(0xe48b); + static const IconData solidSushiRoll = IconData(0xe48b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias maki-roll for icon [solidSushiRoll] @Deprecated('Use "solidSushiRoll" instead.') @@ -83541,7 +83541,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi-roll?style=regular /// fish, maki, nori, raw, rice, salmon, seafood, seaweed, tuna - static const IconData sushiRoll = IconDataRegular(0xe48b); + static const IconData sushiRoll = IconData(0xe48b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias maki-roll for icon [sushiRoll] @Deprecated('Use "sushiRoll" instead.') @@ -83555,7 +83555,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi-roll?style=light /// fish, maki, nori, raw, rice, salmon, seafood, seaweed, tuna - static const IconData lightSushiRoll = IconDataLight(0xe48b); + static const IconData lightSushiRoll = IconData(0xe48b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias maki-roll for icon [lightSushiRoll] @Deprecated('Use "lightSushiRoll" instead.') @@ -83569,7 +83569,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/sushi-roll?style=thin /// fish, maki, nori, raw, rice, salmon, seafood, seaweed, tuna - static const IconData thinSushiRoll = IconDataThin(0xe48b); + static const IconData thinSushiRoll = IconData(0xe48b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias maki-roll for icon [thinSushiRoll] @Deprecated('Use "thinSushiRoll" instead.') @@ -83583,204 +83583,204 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/swap?style=solid /// arrows, merge, route, change, move, transfer - static const IconData solidSwap = IconDataSolid(0xe609); + static const IconData solidSwap = IconData(0xe609, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Swap icon /// /// https://fontawesome.com/icons/swap?style=regular /// arrows, merge, route, change, move, transfer - static const IconData swap = IconDataRegular(0xe609); + static const IconData swap = IconData(0xe609, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Swap icon /// /// https://fontawesome.com/icons/swap?style=light /// arrows, merge, route, change, move, transfer - static const IconData lightSwap = IconDataLight(0xe609); + static const IconData lightSwap = IconData(0xe609, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Swap icon /// /// https://fontawesome.com/icons/swap?style=thin /// arrows, merge, route, change, move, transfer - static const IconData thinSwap = IconDataThin(0xe609); + static const IconData thinSwap = IconData(0xe609, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Swap Arrows icon /// /// https://fontawesome.com/icons/swap-arrows?style=solid /// arrows, merge, route, change, transfer, move - static const IconData solidSwapArrows = IconDataSolid(0xe60a); + static const IconData solidSwapArrows = IconData(0xe60a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Swap Arrows icon /// /// https://fontawesome.com/icons/swap-arrows?style=regular /// arrows, merge, route, change, transfer, move - static const IconData swapArrows = IconDataRegular(0xe60a); + static const IconData swapArrows = IconData(0xe60a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Swap Arrows icon /// /// https://fontawesome.com/icons/swap-arrows?style=light /// arrows, merge, route, change, transfer, move - static const IconData lightSwapArrows = IconDataLight(0xe60a); + static const IconData lightSwapArrows = IconData(0xe60a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Swap Arrows icon /// /// https://fontawesome.com/icons/swap-arrows?style=thin /// arrows, merge, route, change, transfer, move - static const IconData thinSwapArrows = IconDataThin(0xe60a); + static const IconData thinSwapArrows = IconData(0xe60a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Swatchbook icon /// /// https://fontawesome.com/icons/swatchbook?style=solid /// Pantone, color, design, hue, palette - static const IconData solidSwatchbook = IconDataSolid(0xf5c3); + static const IconData solidSwatchbook = IconData(0xf5c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Swatchbook icon /// /// https://fontawesome.com/icons/swatchbook?style=regular /// Pantone, color, design, hue, palette - static const IconData swatchbook = IconDataRegular(0xf5c3); + static const IconData swatchbook = IconData(0xf5c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Swatchbook icon /// /// https://fontawesome.com/icons/swatchbook?style=light /// Pantone, color, design, hue, palette - static const IconData lightSwatchbook = IconDataLight(0xf5c3); + static const IconData lightSwatchbook = IconData(0xf5c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Swatchbook icon /// /// https://fontawesome.com/icons/swatchbook?style=thin /// Pantone, color, design, hue, palette - static const IconData thinSwatchbook = IconDataThin(0xf5c3); + static const IconData thinSwatchbook = IconData(0xf5c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Swift icon /// /// https://fontawesome.com/icons/swift?style=brands - static const IconData swift = IconDataBrands(0xf8e1); + static const IconData swift = IconData(0xf8e1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Sword icon /// /// https://fontawesome.com/icons/sword?style=solid /// Dungeons & Dragons, blade, d&d, dagger, dnd, fantasy, fight, knife, sharp, weapon - static const IconData solidSword = IconDataSolid(0xf71c); + static const IconData solidSword = IconData(0xf71c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sword icon /// /// https://fontawesome.com/icons/sword?style=regular /// Dungeons & Dragons, blade, d&d, dagger, dnd, fantasy, fight, knife, sharp, weapon - static const IconData sword = IconDataRegular(0xf71c); + static const IconData sword = IconData(0xf71c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sword icon /// /// https://fontawesome.com/icons/sword?style=light /// Dungeons & Dragons, blade, d&d, dagger, dnd, fantasy, fight, knife, sharp, weapon - static const IconData lightSword = IconDataLight(0xf71c); + static const IconData lightSword = IconData(0xf71c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sword icon /// /// https://fontawesome.com/icons/sword?style=thin /// Dungeons & Dragons, blade, d&d, dagger, dnd, fantasy, fight, knife, sharp, weapon - static const IconData thinSword = IconDataThin(0xf71c); + static const IconData thinSword = IconData(0xf71c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sword Laser icon /// /// https://fontawesome.com/icons/sword-laser?style=solid /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData solidSwordLaser = IconDataSolid(0xe03b); + static const IconData solidSwordLaser = IconData(0xe03b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sword Laser icon /// /// https://fontawesome.com/icons/sword-laser?style=regular /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData swordLaser = IconDataRegular(0xe03b); + static const IconData swordLaser = IconData(0xe03b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sword Laser icon /// /// https://fontawesome.com/icons/sword-laser?style=light /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData lightSwordLaser = IconDataLight(0xe03b); + static const IconData lightSwordLaser = IconData(0xe03b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sword Laser icon /// /// https://fontawesome.com/icons/sword-laser?style=thin /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData thinSwordLaser = IconDataThin(0xe03b); + static const IconData thinSwordLaser = IconData(0xe03b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Sword Laser Alt icon /// /// https://fontawesome.com/icons/sword-laser-alt?style=solid /// darth vader, empire, lightsaber, sith, star wars - static const IconData solidSwordLaserAlt = IconDataSolid(0xe03c); + static const IconData solidSwordLaserAlt = IconData(0xe03c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Sword Laser Alt icon /// /// https://fontawesome.com/icons/sword-laser-alt?style=regular /// darth vader, empire, lightsaber, sith, star wars - static const IconData swordLaserAlt = IconDataRegular(0xe03c); + static const IconData swordLaserAlt = IconData(0xe03c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Sword Laser Alt icon /// /// https://fontawesome.com/icons/sword-laser-alt?style=light /// darth vader, empire, lightsaber, sith, star wars - static const IconData lightSwordLaserAlt = IconDataLight(0xe03c); + static const IconData lightSwordLaserAlt = IconData(0xe03c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Sword Laser Alt icon /// /// https://fontawesome.com/icons/sword-laser-alt?style=thin /// darth vader, empire, lightsaber, sith, star wars - static const IconData thinSwordLaserAlt = IconDataThin(0xe03c); + static const IconData thinSwordLaserAlt = IconData(0xe03c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Swords icon /// /// https://fontawesome.com/icons/swords?style=solid /// Dungeons & Dragons, blade, crossed, crossed swords, d&d, dnd, fantasy, fight, sharp, swords, weapon - static const IconData solidSwords = IconDataSolid(0xf71d); + static const IconData solidSwords = IconData(0xf71d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Swords icon /// /// https://fontawesome.com/icons/swords?style=regular /// Dungeons & Dragons, blade, crossed, crossed swords, d&d, dnd, fantasy, fight, sharp, swords, weapon - static const IconData swords = IconDataRegular(0xf71d); + static const IconData swords = IconData(0xf71d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Swords icon /// /// https://fontawesome.com/icons/swords?style=light /// Dungeons & Dragons, blade, crossed, crossed swords, d&d, dnd, fantasy, fight, sharp, swords, weapon - static const IconData lightSwords = IconDataLight(0xf71d); + static const IconData lightSwords = IconData(0xf71d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Swords icon /// /// https://fontawesome.com/icons/swords?style=thin /// Dungeons & Dragons, blade, crossed, crossed swords, d&d, dnd, fantasy, fight, sharp, swords, weapon - static const IconData thinSwords = IconDataThin(0xf71d); + static const IconData thinSwords = IconData(0xf71d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Swords Laser icon /// /// https://fontawesome.com/icons/swords-laser?style=solid /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconData solidSwordsLaser = IconDataSolid(0xe03d); + static const IconData solidSwordsLaser = IconData(0xe03d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Swords Laser icon /// /// https://fontawesome.com/icons/swords-laser?style=regular /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconData swordsLaser = IconDataRegular(0xe03d); + static const IconData swordsLaser = IconData(0xe03d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Swords Laser icon /// /// https://fontawesome.com/icons/swords-laser?style=light /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconData lightSwordsLaser = IconDataLight(0xe03d); + static const IconData lightSwordsLaser = IconData(0xe03d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Swords Laser icon /// /// https://fontawesome.com/icons/swords-laser?style=thin /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconData thinSwordsLaser = IconDataThin(0xe03d); + static const IconData thinSwordsLaser = IconData(0xe03d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Symbols icon /// /// https://fontawesome.com/icons/symbols?style=solid /// bolt, category, emoji, heart, image, input, input symbols, music, photo, symbols, 〒♪&% - static const IconData solidSymbols = IconDataSolid(0xf86e); + static const IconData solidSymbols = IconData(0xf86e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias icons-alt for icon [solidSymbols] @Deprecated('Use "solidSymbols" instead.') @@ -83790,7 +83790,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/symbols?style=regular /// bolt, category, emoji, heart, image, input, input symbols, music, photo, symbols, 〒♪&% - static const IconData symbols = IconDataRegular(0xf86e); + static const IconData symbols = IconData(0xf86e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias icons-alt for icon [symbols] @Deprecated('Use "symbols" instead.') @@ -83800,7 +83800,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/symbols?style=light /// bolt, category, emoji, heart, image, input, input symbols, music, photo, symbols, 〒♪&% - static const IconData lightSymbols = IconDataLight(0xf86e); + static const IconData lightSymbols = IconData(0xf86e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias icons-alt for icon [lightSymbols] @Deprecated('Use "lightSymbols" instead.') @@ -83810,7 +83810,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/symbols?style=thin /// bolt, category, emoji, heart, image, input, input symbols, music, photo, symbols, 〒♪&% - static const IconData thinSymbols = IconDataThin(0xf86e); + static const IconData thinSymbols = IconData(0xf86e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias icons-alt for icon [thinSymbols] @Deprecated('Use "thinSymbols" instead.') @@ -83819,133 +83819,133 @@ class FontAwesomeIcons { /// Brands Symfony icon /// /// https://fontawesome.com/icons/symfony?style=brands - static const IconData symfony = IconDataBrands(0xf83d); + static const IconData symfony = IconData(0xf83d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Synagogue icon /// /// https://fontawesome.com/icons/synagogue?style=solid /// Jew, Jewish, building, jewish, judaism, religion, star of david, synagogue, temple - static const IconData solidSynagogue = IconDataSolid(0xf69b); + static const IconData solidSynagogue = IconData(0xf69b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Synagogue icon /// /// https://fontawesome.com/icons/synagogue?style=regular /// Jew, Jewish, building, jewish, judaism, religion, star of david, synagogue, temple - static const IconData synagogue = IconDataRegular(0xf69b); + static const IconData synagogue = IconData(0xf69b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Synagogue icon /// /// https://fontawesome.com/icons/synagogue?style=light /// Jew, Jewish, building, jewish, judaism, religion, star of david, synagogue, temple - static const IconData lightSynagogue = IconDataLight(0xf69b); + static const IconData lightSynagogue = IconData(0xf69b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Synagogue icon /// /// https://fontawesome.com/icons/synagogue?style=thin /// Jew, Jewish, building, jewish, judaism, religion, star of david, synagogue, temple - static const IconData thinSynagogue = IconDataThin(0xf69b); + static const IconData thinSynagogue = IconData(0xf69b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Syringe icon /// /// https://fontawesome.com/icons/syringe?style=solid /// covid-19, doctor, immunizations, medical, medicine, needle, shot, sick, syringe, vaccinate, vaccine - static const IconData solidSyringe = IconDataSolid(0xf48e); + static const IconData solidSyringe = IconData(0xf48e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Syringe icon /// /// https://fontawesome.com/icons/syringe?style=regular /// covid-19, doctor, immunizations, medical, medicine, needle, shot, sick, syringe, vaccinate, vaccine - static const IconData syringe = IconDataRegular(0xf48e); + static const IconData syringe = IconData(0xf48e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Syringe icon /// /// https://fontawesome.com/icons/syringe?style=light /// covid-19, doctor, immunizations, medical, medicine, needle, shot, sick, syringe, vaccinate, vaccine - static const IconData lightSyringe = IconDataLight(0xf48e); + static const IconData lightSyringe = IconData(0xf48e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Syringe icon /// /// https://fontawesome.com/icons/syringe?style=thin /// covid-19, doctor, immunizations, medical, medicine, needle, shot, sick, syringe, vaccinate, vaccine - static const IconData thinSyringe = IconDataThin(0xf48e); + static const IconData thinSyringe = IconData(0xf48e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid T icon /// /// https://fontawesome.com/icons/t?style=solid /// Latin Capital Letter T, Latin Small Letter T, letter - static const IconData solidT = IconDataSolid(0x54); + static const IconData solidT = IconData(0x54, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular T icon /// /// https://fontawesome.com/icons/t?style=regular /// Latin Capital Letter T, Latin Small Letter T, letter - static const IconData t = IconDataRegular(0x54); + static const IconData t = IconData(0x54, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light T icon /// /// https://fontawesome.com/icons/t?style=light /// Latin Capital Letter T, Latin Small Letter T, letter - static const IconData lightT = IconDataLight(0x54); + static const IconData lightT = IconData(0x54, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin T icon /// /// https://fontawesome.com/icons/t?style=thin /// Latin Capital Letter T, Latin Small Letter T, letter - static const IconData thinT = IconDataThin(0x54); + static const IconData thinT = IconData(0x54, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid T Rex icon /// /// https://fontawesome.com/icons/t-rex?style=solid /// carnivore, dinosaur, tyrannosaurus, dino, jurassic, king - static const IconData solidTRex = IconDataSolid(0xe629); + static const IconData solidTRex = IconData(0xe629, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular T Rex icon /// /// https://fontawesome.com/icons/t-rex?style=regular /// carnivore, dinosaur, tyrannosaurus, dino, jurassic, king - static const IconData tRex = IconDataRegular(0xe629); + static const IconData tRex = IconData(0xe629, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light T Rex icon /// /// https://fontawesome.com/icons/t-rex?style=light /// carnivore, dinosaur, tyrannosaurus, dino, jurassic, king - static const IconData lightTRex = IconDataLight(0xe629); + static const IconData lightTRex = IconData(0xe629, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin T Rex icon /// /// https://fontawesome.com/icons/t-rex?style=thin /// carnivore, dinosaur, tyrannosaurus, dino, jurassic, king - static const IconData thinTRex = IconDataThin(0xe629); + static const IconData thinTRex = IconData(0xe629, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Table icon /// /// https://fontawesome.com/icons/table?style=solid /// category, data, excel, spreadsheet - static const IconData solidTable = IconDataSolid(0xf0ce); + static const IconData solidTable = IconData(0xf0ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Table icon /// /// https://fontawesome.com/icons/table?style=regular /// category, data, excel, spreadsheet - static const IconData table = IconDataRegular(0xf0ce); + static const IconData table = IconData(0xf0ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Table icon /// /// https://fontawesome.com/icons/table?style=light /// category, data, excel, spreadsheet - static const IconData lightTable = IconDataLight(0xf0ce); + static const IconData lightTable = IconData(0xf0ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Table icon /// /// https://fontawesome.com/icons/table?style=thin /// category, data, excel, spreadsheet - static const IconData thinTable = IconDataThin(0xf0ce); + static const IconData thinTable = IconData(0xf0ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Table Cells icon /// /// https://fontawesome.com/icons/table-cells?style=solid /// blocks, boxes, category, grid, squares - static const IconData solidTableCells = IconDataSolid(0xf00a); + static const IconData solidTableCells = IconData(0xf00a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias th for icon [solidTableCells] @Deprecated('Use "solidTableCells" instead.') @@ -83955,7 +83955,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells?style=regular /// blocks, boxes, category, grid, squares - static const IconData tableCells = IconDataRegular(0xf00a); + static const IconData tableCells = IconData(0xf00a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias th for icon [tableCells] @Deprecated('Use "tableCells" instead.') @@ -83965,7 +83965,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells?style=light /// blocks, boxes, category, grid, squares - static const IconData lightTableCells = IconDataLight(0xf00a); + static const IconData lightTableCells = IconData(0xf00a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias th for icon [lightTableCells] @Deprecated('Use "lightTableCells" instead.') @@ -83975,7 +83975,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells?style=thin /// blocks, boxes, category, grid, squares - static const IconData thinTableCells = IconDataThin(0xf00a); + static const IconData thinTableCells = IconData(0xf00a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias th for icon [thinTableCells] @Deprecated('Use "thinTableCells" instead.') @@ -83985,7 +83985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells-large?style=solid /// blocks, boxes, category, grid, squares - static const IconData solidTableCellsLarge = IconDataSolid(0xf009); + static const IconData solidTableCellsLarge = IconData(0xf009, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias th-large for icon [solidTableCellsLarge] @Deprecated('Use "solidTableCellsLarge" instead.') @@ -83995,7 +83995,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells-large?style=regular /// blocks, boxes, category, grid, squares - static const IconData tableCellsLarge = IconDataRegular(0xf009); + static const IconData tableCellsLarge = IconData(0xf009, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias th-large for icon [tableCellsLarge] @Deprecated('Use "tableCellsLarge" instead.') @@ -84005,7 +84005,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells-large?style=light /// blocks, boxes, category, grid, squares - static const IconData lightTableCellsLarge = IconDataLight(0xf009); + static const IconData lightTableCellsLarge = IconData(0xf009, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias th-large for icon [lightTableCellsLarge] @Deprecated('Use "lightTableCellsLarge" instead.') @@ -84015,7 +84015,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-cells-large?style=thin /// blocks, boxes, category, grid, squares - static const IconData thinTableCellsLarge = IconDataThin(0xf009); + static const IconData thinTableCellsLarge = IconData(0xf009, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias th-large for icon [thinTableCellsLarge] @Deprecated('Use "thinTableCellsLarge" instead.') @@ -84025,7 +84025,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-columns?style=solid /// browser, category, dashboard, organize, panes, split - static const IconData solidTableColumns = IconDataSolid(0xf0db); + static const IconData solidTableColumns = IconData(0xf0db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias columns for icon [solidTableColumns] @Deprecated('Use "solidTableColumns" instead.') @@ -84035,7 +84035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-columns?style=regular /// browser, category, dashboard, organize, panes, split - static const IconData tableColumns = IconDataRegular(0xf0db); + static const IconData tableColumns = IconData(0xf0db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias columns for icon [tableColumns] @Deprecated('Use "tableColumns" instead.') @@ -84045,7 +84045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-columns?style=light /// browser, category, dashboard, organize, panes, split - static const IconData lightTableColumns = IconDataLight(0xf0db); + static const IconData lightTableColumns = IconData(0xf0db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias columns for icon [lightTableColumns] @Deprecated('Use "lightTableColumns" instead.') @@ -84055,7 +84055,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-columns?style=thin /// browser, category, dashboard, organize, panes, split - static const IconData thinTableColumns = IconDataThin(0xf0db); + static const IconData thinTableColumns = IconData(0xf0db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias columns for icon [thinTableColumns] @Deprecated('Use "thinTableColumns" instead.') @@ -84065,31 +84065,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-layout?style=solid /// category, cell, column, layout, row, spreadsheet - static const IconData solidTableLayout = IconDataSolid(0xe290); + static const IconData solidTableLayout = IconData(0xe290, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Table Layout icon /// /// https://fontawesome.com/icons/table-layout?style=regular /// category, cell, column, layout, row, spreadsheet - static const IconData tableLayout = IconDataRegular(0xe290); + static const IconData tableLayout = IconData(0xe290, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Table Layout icon /// /// https://fontawesome.com/icons/table-layout?style=light /// category, cell, column, layout, row, spreadsheet - static const IconData lightTableLayout = IconDataLight(0xe290); + static const IconData lightTableLayout = IconData(0xe290, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Table Layout icon /// /// https://fontawesome.com/icons/table-layout?style=thin /// category, cell, column, layout, row, spreadsheet - static const IconData thinTableLayout = IconDataThin(0xe290); + static const IconData thinTableLayout = IconData(0xe290, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Table List icon /// /// https://fontawesome.com/icons/table-list?style=solid /// category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData solidTableList = IconDataSolid(0xf00b); + static const IconData solidTableList = IconData(0xf00b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias th-list for icon [solidTableList] @Deprecated('Use "solidTableList" instead.') @@ -84099,7 +84099,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-list?style=regular /// category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData tableList = IconDataRegular(0xf00b); + static const IconData tableList = IconData(0xf00b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias th-list for icon [tableList] @Deprecated('Use "tableList" instead.') @@ -84109,7 +84109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-list?style=light /// category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData lightTableList = IconDataLight(0xf00b); + static const IconData lightTableList = IconData(0xf00b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias th-list for icon [lightTableList] @Deprecated('Use "lightTableList" instead.') @@ -84119,7 +84119,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-list?style=thin /// category, cheatsheet, checklist, completed, done, finished, ol, summary, todo, ul - static const IconData thinTableList = IconDataThin(0xf00b); + static const IconData thinTableList = IconData(0xf00b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias th-list for icon [thinTableList] @Deprecated('Use "thinTableList" instead.') @@ -84129,55 +84129,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-picnic?style=solid /// bench, outdoor, picnic, sit - static const IconData solidTablePicnic = IconDataSolid(0xe32d); + static const IconData solidTablePicnic = IconData(0xe32d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Table Picnic icon /// /// https://fontawesome.com/icons/table-picnic?style=regular /// bench, outdoor, picnic, sit - static const IconData tablePicnic = IconDataRegular(0xe32d); + static const IconData tablePicnic = IconData(0xe32d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Table Picnic icon /// /// https://fontawesome.com/icons/table-picnic?style=light /// bench, outdoor, picnic, sit - static const IconData lightTablePicnic = IconDataLight(0xe32d); + static const IconData lightTablePicnic = IconData(0xe32d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Table Picnic icon /// /// https://fontawesome.com/icons/table-picnic?style=thin /// bench, outdoor, picnic, sit - static const IconData thinTablePicnic = IconDataThin(0xe32d); + static const IconData thinTablePicnic = IconData(0xe32d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Table Pivot icon /// /// https://fontawesome.com/icons/table-pivot?style=solid /// cell, flip, layout, rotate, row, table - static const IconData solidTablePivot = IconDataSolid(0xe291); + static const IconData solidTablePivot = IconData(0xe291, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Table Pivot icon /// /// https://fontawesome.com/icons/table-pivot?style=regular /// cell, flip, layout, rotate, row, table - static const IconData tablePivot = IconDataRegular(0xe291); + static const IconData tablePivot = IconData(0xe291, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Table Pivot icon /// /// https://fontawesome.com/icons/table-pivot?style=light /// cell, flip, layout, rotate, row, table - static const IconData lightTablePivot = IconDataLight(0xe291); + static const IconData lightTablePivot = IconData(0xe291, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Table Pivot icon /// /// https://fontawesome.com/icons/table-pivot?style=thin /// cell, flip, layout, rotate, row, table - static const IconData thinTablePivot = IconDataThin(0xe291); + static const IconData thinTablePivot = IconData(0xe291, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Table Rows icon /// /// https://fontawesome.com/icons/table-rows?style=solid /// cell, spreadsheet, table - static const IconData solidTableRows = IconDataSolid(0xe292); + static const IconData solidTableRows = IconData(0xe292, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias rows for icon [solidTableRows] @Deprecated('Use "solidTableRows" instead.') @@ -84187,7 +84187,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-rows?style=regular /// cell, spreadsheet, table - static const IconData tableRows = IconDataRegular(0xe292); + static const IconData tableRows = IconData(0xe292, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias rows for icon [tableRows] @Deprecated('Use "tableRows" instead.') @@ -84197,7 +84197,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-rows?style=light /// cell, spreadsheet, table - static const IconData lightTableRows = IconDataLight(0xe292); + static const IconData lightTableRows = IconData(0xe292, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias rows for icon [lightTableRows] @Deprecated('Use "lightTableRows" instead.') @@ -84207,7 +84207,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-rows?style=thin /// cell, spreadsheet, table - static const IconData thinTableRows = IconDataThin(0xe292); + static const IconData thinTableRows = IconData(0xe292, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias rows for icon [thinTableRows] @Deprecated('Use "thinTableRows" instead.') @@ -84217,7 +84217,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-tennis-paddle-ball?style=solid /// ball, bat, game, paddle, ping pong, table tennis - static const IconData solidTableTennisPaddleBall = IconDataSolid(0xf45d); + static const IconData solidTableTennisPaddleBall = IconData(0xf45d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ping-pong-paddle-ball for icon [solidTableTennisPaddleBall] @Deprecated('Use "solidTableTennisPaddleBall" instead.') @@ -84231,7 +84231,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-tennis-paddle-ball?style=regular /// ball, bat, game, paddle, ping pong, table tennis - static const IconData tableTennisPaddleBall = IconDataRegular(0xf45d); + static const IconData tableTennisPaddleBall = IconData(0xf45d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ping-pong-paddle-ball for icon [tableTennisPaddleBall] @Deprecated('Use "tableTennisPaddleBall" instead.') @@ -84245,7 +84245,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-tennis-paddle-ball?style=light /// ball, bat, game, paddle, ping pong, table tennis - static const IconData lightTableTennisPaddleBall = IconDataLight(0xf45d); + static const IconData lightTableTennisPaddleBall = IconData(0xf45d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ping-pong-paddle-ball for icon [lightTableTennisPaddleBall] @Deprecated('Use "lightTableTennisPaddleBall" instead.') @@ -84259,7 +84259,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-tennis-paddle-ball?style=thin /// ball, bat, game, paddle, ping pong, table tennis - static const IconData thinTableTennisPaddleBall = IconDataThin(0xf45d); + static const IconData thinTableTennisPaddleBall = IconData(0xf45d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ping-pong-paddle-ball for icon [thinTableTennisPaddleBall] @Deprecated('Use "thinTableTennisPaddleBall" instead.') @@ -84273,31 +84273,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/table-tree?style=solid /// directory, file, folder, structure - static const IconData solidTableTree = IconDataSolid(0xe293); + static const IconData solidTableTree = IconData(0xe293, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Table Tree icon /// /// https://fontawesome.com/icons/table-tree?style=regular /// directory, file, folder, structure - static const IconData tableTree = IconDataRegular(0xe293); + static const IconData tableTree = IconData(0xe293, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Table Tree icon /// /// https://fontawesome.com/icons/table-tree?style=light /// directory, file, folder, structure - static const IconData lightTableTree = IconDataLight(0xe293); + static const IconData lightTableTree = IconData(0xe293, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Table Tree icon /// /// https://fontawesome.com/icons/table-tree?style=thin /// directory, file, folder, structure - static const IconData thinTableTree = IconDataThin(0xe293); + static const IconData thinTableTree = IconData(0xe293, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tablet icon /// /// https://fontawesome.com/icons/tablet?style=solid /// device, kindle, screen - static const IconData solidTablet = IconDataSolid(0xf3fb); + static const IconData solidTablet = IconData(0xf3fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android for icon [solidTablet] @Deprecated('Use "solidTablet" instead.') @@ -84307,7 +84307,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet?style=regular /// device, kindle, screen - static const IconData tablet = IconDataRegular(0xf3fb); + static const IconData tablet = IconData(0xf3fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android for icon [tablet] @Deprecated('Use "tablet" instead.') @@ -84317,7 +84317,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet?style=light /// device, kindle, screen - static const IconData lightTablet = IconDataLight(0xf3fb); + static const IconData lightTablet = IconData(0xf3fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android for icon [lightTablet] @Deprecated('Use "lightTablet" instead.') @@ -84327,7 +84327,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet?style=thin /// device, kindle, screen - static const IconData thinTablet = IconDataThin(0xf3fb); + static const IconData thinTablet = IconData(0xf3fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android for icon [thinTablet] @Deprecated('Use "thinTablet" instead.') @@ -84337,55 +84337,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-button?style=solid /// apple, device, ipad, kindle, screen - static const IconData solidTabletButton = IconDataSolid(0xf10a); + static const IconData solidTabletButton = IconData(0xf10a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tablet Button icon /// /// https://fontawesome.com/icons/tablet-button?style=regular /// apple, device, ipad, kindle, screen - static const IconData tabletButton = IconDataRegular(0xf10a); + static const IconData tabletButton = IconData(0xf10a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tablet Button icon /// /// https://fontawesome.com/icons/tablet-button?style=light /// apple, device, ipad, kindle, screen - static const IconData lightTabletButton = IconDataLight(0xf10a); + static const IconData lightTabletButton = IconData(0xf10a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tablet Button icon /// /// https://fontawesome.com/icons/tablet-button?style=thin /// apple, device, ipad, kindle, screen - static const IconData thinTabletButton = IconDataThin(0xf10a); + static const IconData thinTabletButton = IconData(0xf10a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tablet Rugged icon /// /// https://fontawesome.com/icons/tablet-rugged?style=solid /// device, durable, protection, screen, tough - static const IconData solidTabletRugged = IconDataSolid(0xf48f); + static const IconData solidTabletRugged = IconData(0xf48f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tablet Rugged icon /// /// https://fontawesome.com/icons/tablet-rugged?style=regular /// device, durable, protection, screen, tough - static const IconData tabletRugged = IconDataRegular(0xf48f); + static const IconData tabletRugged = IconData(0xf48f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tablet Rugged icon /// /// https://fontawesome.com/icons/tablet-rugged?style=light /// device, durable, protection, screen, tough - static const IconData lightTabletRugged = IconDataLight(0xf48f); + static const IconData lightTabletRugged = IconData(0xf48f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tablet Rugged icon /// /// https://fontawesome.com/icons/tablet-rugged?style=thin /// device, durable, protection, screen, tough - static const IconData thinTabletRugged = IconDataThin(0xf48f); + static const IconData thinTabletRugged = IconData(0xf48f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tablet Screen icon /// /// https://fontawesome.com/icons/tablet-screen?style=solid /// device, kindle, screen - static const IconData solidTabletScreen = IconDataSolid(0xf3fc); + static const IconData solidTabletScreen = IconData(0xf3fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android-alt for icon [solidTabletScreen] @Deprecated('Use "solidTabletScreen" instead.') @@ -84395,7 +84395,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen?style=regular /// device, kindle, screen - static const IconData tabletScreen = IconDataRegular(0xf3fc); + static const IconData tabletScreen = IconData(0xf3fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android-alt for icon [tabletScreen] @Deprecated('Use "tabletScreen" instead.') @@ -84405,7 +84405,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen?style=light /// device, kindle, screen - static const IconData lightTabletScreen = IconDataLight(0xf3fc); + static const IconData lightTabletScreen = IconData(0xf3fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android-alt for icon [lightTabletScreen] @Deprecated('Use "lightTabletScreen" instead.') @@ -84415,7 +84415,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen?style=thin /// device, kindle, screen - static const IconData thinTabletScreen = IconDataThin(0xf3fc); + static const IconData thinTabletScreen = IconData(0xf3fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tablet-android-alt for icon [thinTabletScreen] @Deprecated('Use "thinTabletScreen" instead.') @@ -84425,7 +84425,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen-button?style=solid /// apple, device, ipad, kindle, screen - static const IconData solidTabletScreenButton = IconDataSolid(0xf3fa); + static const IconData solidTabletScreenButton = IconData(0xf3fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tablet-alt for icon [solidTabletScreenButton] @Deprecated('Use "solidTabletScreenButton" instead.') @@ -84435,7 +84435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen-button?style=regular /// apple, device, ipad, kindle, screen - static const IconData tabletScreenButton = IconDataRegular(0xf3fa); + static const IconData tabletScreenButton = IconData(0xf3fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tablet-alt for icon [tabletScreenButton] @Deprecated('Use "tabletScreenButton" instead.') @@ -84445,7 +84445,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen-button?style=light /// apple, device, ipad, kindle, screen - static const IconData lightTabletScreenButton = IconDataLight(0xf3fa); + static const IconData lightTabletScreenButton = IconData(0xf3fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tablet-alt for icon [lightTabletScreenButton] @Deprecated('Use "lightTabletScreenButton" instead.') @@ -84455,7 +84455,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablet-screen-button?style=thin /// apple, device, ipad, kindle, screen - static const IconData thinTabletScreenButton = IconDataThin(0xf3fa); + static const IconData thinTabletScreenButton = IconData(0xf3fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tablet-alt for icon [thinTabletScreenButton] @Deprecated('Use "thinTabletScreenButton" instead.') @@ -84465,31 +84465,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tablets?style=solid /// drugs, medicine, pills, prescription - static const IconData solidTablets = IconDataSolid(0xf490); + static const IconData solidTablets = IconData(0xf490, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tablets icon /// /// https://fontawesome.com/icons/tablets?style=regular /// drugs, medicine, pills, prescription - static const IconData tablets = IconDataRegular(0xf490); + static const IconData tablets = IconData(0xf490, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tablets icon /// /// https://fontawesome.com/icons/tablets?style=light /// drugs, medicine, pills, prescription - static const IconData lightTablets = IconDataLight(0xf490); + static const IconData lightTablets = IconData(0xf490, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tablets icon /// /// https://fontawesome.com/icons/tablets?style=thin /// drugs, medicine, pills, prescription - static const IconData thinTablets = IconDataThin(0xf490); + static const IconData thinTablets = IconData(0xf490, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tachograph Digital icon /// /// https://fontawesome.com/icons/tachograph-digital?style=solid /// data, distance, speed, tachometer - static const IconData solidTachographDigital = IconDataSolid(0xf566); + static const IconData solidTachographDigital = IconData(0xf566, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias digital-tachograph for icon [solidTachographDigital] @Deprecated('Use "solidTachographDigital" instead.') @@ -84499,7 +84499,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tachograph-digital?style=regular /// data, distance, speed, tachometer - static const IconData tachographDigital = IconDataRegular(0xf566); + static const IconData tachographDigital = IconData(0xf566, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias digital-tachograph for icon [tachographDigital] @Deprecated('Use "tachographDigital" instead.') @@ -84509,7 +84509,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tachograph-digital?style=light /// data, distance, speed, tachometer - static const IconData lightTachographDigital = IconDataLight(0xf566); + static const IconData lightTachographDigital = IconData(0xf566, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias digital-tachograph for icon [lightTachographDigital] @Deprecated('Use "lightTachographDigital" instead.') @@ -84519,7 +84519,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tachograph-digital?style=thin /// data, distance, speed, tachometer - static const IconData thinTachographDigital = IconDataThin(0xf566); + static const IconData thinTachographDigital = IconData(0xf566, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias digital-tachograph for icon [thinTachographDigital] @Deprecated('Use "thinTachographDigital" instead.') @@ -84529,79 +84529,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/taco?style=solid /// corn, maize, mexican, salsa, taco, tortilla - static const IconData solidTaco = IconDataSolid(0xf826); + static const IconData solidTaco = IconData(0xf826, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Taco icon /// /// https://fontawesome.com/icons/taco?style=regular /// corn, maize, mexican, salsa, taco, tortilla - static const IconData taco = IconDataRegular(0xf826); + static const IconData taco = IconData(0xf826, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Taco icon /// /// https://fontawesome.com/icons/taco?style=light /// corn, maize, mexican, salsa, taco, tortilla - static const IconData lightTaco = IconDataLight(0xf826); + static const IconData lightTaco = IconData(0xf826, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Taco icon /// /// https://fontawesome.com/icons/taco?style=thin /// corn, maize, mexican, salsa, taco, tortilla - static const IconData thinTaco = IconDataThin(0xf826); + static const IconData thinTaco = IconData(0xf826, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tag icon /// /// https://fontawesome.com/icons/tag?style=solid /// discount, labe, label, price, shopping - static const IconData solidTag = IconDataSolid(0xf02b); + static const IconData solidTag = IconData(0xf02b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tag icon /// /// https://fontawesome.com/icons/tag?style=regular /// discount, labe, label, price, shopping - static const IconData tag = IconDataRegular(0xf02b); + static const IconData tag = IconData(0xf02b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tag icon /// /// https://fontawesome.com/icons/tag?style=light /// discount, labe, label, price, shopping - static const IconData lightTag = IconDataLight(0xf02b); + static const IconData lightTag = IconData(0xf02b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tag icon /// /// https://fontawesome.com/icons/tag?style=thin /// discount, labe, label, price, shopping - static const IconData thinTag = IconDataThin(0xf02b); + static const IconData thinTag = IconData(0xf02b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tags icon /// /// https://fontawesome.com/icons/tags?style=solid /// discount, label, price, shopping - static const IconData solidTags = IconDataSolid(0xf02c); + static const IconData solidTags = IconData(0xf02c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tags icon /// /// https://fontawesome.com/icons/tags?style=regular /// discount, label, price, shopping - static const IconData tags = IconDataRegular(0xf02c); + static const IconData tags = IconData(0xf02c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tags icon /// /// https://fontawesome.com/icons/tags?style=light /// discount, label, price, shopping - static const IconData lightTags = IconDataLight(0xf02c); + static const IconData lightTags = IconData(0xf02c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tags icon /// /// https://fontawesome.com/icons/tags?style=thin /// discount, label, price, shopping - static const IconData thinTags = IconDataThin(0xf02c); + static const IconData thinTags = IconData(0xf02c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tally icon /// /// https://fontawesome.com/icons/tally?style=solid /// count, hash, numbers - static const IconData solidTally = IconDataSolid(0xf69c); + static const IconData solidTally = IconData(0xf69c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tally-5 for icon [solidTally] @Deprecated('Use "solidTally" instead.') @@ -84611,7 +84611,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tally?style=regular /// count, hash, numbers - static const IconData tally = IconDataRegular(0xf69c); + static const IconData tally = IconData(0xf69c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tally-5 for icon [tally] @Deprecated('Use "tally" instead.') @@ -84621,7 +84621,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tally?style=light /// count, hash, numbers - static const IconData lightTally = IconDataLight(0xf69c); + static const IconData lightTally = IconData(0xf69c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tally-5 for icon [lightTally] @Deprecated('Use "lightTally" instead.') @@ -84631,7 +84631,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tally?style=thin /// count, hash, numbers - static const IconData thinTally = IconDataThin(0xf69c); + static const IconData thinTally = IconData(0xf69c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tally-5 for icon [thinTally] @Deprecated('Use "thinTally" instead.') @@ -84641,223 +84641,223 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tally-1?style=solid /// calculate, count, hash, number - static const IconData solidTally1 = IconDataSolid(0xe294); + static const IconData solidTally1 = IconData(0xe294, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tally 1 icon /// /// https://fontawesome.com/icons/tally-1?style=regular /// calculate, count, hash, number - static const IconData tally1 = IconDataRegular(0xe294); + static const IconData tally1 = IconData(0xe294, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tally 1 icon /// /// https://fontawesome.com/icons/tally-1?style=light /// calculate, count, hash, number - static const IconData lightTally1 = IconDataLight(0xe294); + static const IconData lightTally1 = IconData(0xe294, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tally 1 icon /// /// https://fontawesome.com/icons/tally-1?style=thin /// calculate, count, hash, number - static const IconData thinTally1 = IconDataThin(0xe294); + static const IconData thinTally1 = IconData(0xe294, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tally 2 icon /// /// https://fontawesome.com/icons/tally-2?style=solid /// calculate, count, hash, number - static const IconData solidTally2 = IconDataSolid(0xe295); + static const IconData solidTally2 = IconData(0xe295, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tally 2 icon /// /// https://fontawesome.com/icons/tally-2?style=regular /// calculate, count, hash, number - static const IconData tally2 = IconDataRegular(0xe295); + static const IconData tally2 = IconData(0xe295, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tally 2 icon /// /// https://fontawesome.com/icons/tally-2?style=light /// calculate, count, hash, number - static const IconData lightTally2 = IconDataLight(0xe295); + static const IconData lightTally2 = IconData(0xe295, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tally 2 icon /// /// https://fontawesome.com/icons/tally-2?style=thin /// calculate, count, hash, number - static const IconData thinTally2 = IconDataThin(0xe295); + static const IconData thinTally2 = IconData(0xe295, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tally 3 icon /// /// https://fontawesome.com/icons/tally-3?style=solid /// calculate, count, hash, number - static const IconData solidTally3 = IconDataSolid(0xe296); + static const IconData solidTally3 = IconData(0xe296, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tally 3 icon /// /// https://fontawesome.com/icons/tally-3?style=regular /// calculate, count, hash, number - static const IconData tally3 = IconDataRegular(0xe296); + static const IconData tally3 = IconData(0xe296, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tally 3 icon /// /// https://fontawesome.com/icons/tally-3?style=light /// calculate, count, hash, number - static const IconData lightTally3 = IconDataLight(0xe296); + static const IconData lightTally3 = IconData(0xe296, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tally 3 icon /// /// https://fontawesome.com/icons/tally-3?style=thin /// calculate, count, hash, number - static const IconData thinTally3 = IconDataThin(0xe296); + static const IconData thinTally3 = IconData(0xe296, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tally 4 icon /// /// https://fontawesome.com/icons/tally-4?style=solid /// calculate, count, hash, number - static const IconData solidTally4 = IconDataSolid(0xe297); + static const IconData solidTally4 = IconData(0xe297, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tally 4 icon /// /// https://fontawesome.com/icons/tally-4?style=regular /// calculate, count, hash, number - static const IconData tally4 = IconDataRegular(0xe297); + static const IconData tally4 = IconData(0xe297, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tally 4 icon /// /// https://fontawesome.com/icons/tally-4?style=light /// calculate, count, hash, number - static const IconData lightTally4 = IconDataLight(0xe297); + static const IconData lightTally4 = IconData(0xe297, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tally 4 icon /// /// https://fontawesome.com/icons/tally-4?style=thin /// calculate, count, hash, number - static const IconData thinTally4 = IconDataThin(0xe297); + static const IconData thinTally4 = IconData(0xe297, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tamale icon /// /// https://fontawesome.com/icons/tamale?style=solid /// mexican, tamale, wrapped - static const IconData solidTamale = IconDataSolid(0xe451); + static const IconData solidTamale = IconData(0xe451, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tamale icon /// /// https://fontawesome.com/icons/tamale?style=regular /// mexican, tamale, wrapped - static const IconData tamale = IconDataRegular(0xe451); + static const IconData tamale = IconData(0xe451, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tamale icon /// /// https://fontawesome.com/icons/tamale?style=light /// mexican, tamale, wrapped - static const IconData lightTamale = IconDataLight(0xe451); + static const IconData lightTamale = IconData(0xe451, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tamale icon /// /// https://fontawesome.com/icons/tamale?style=thin /// mexican, tamale, wrapped - static const IconData thinTamale = IconDataThin(0xe451); + static const IconData thinTamale = IconData(0xe451, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tank Water icon /// /// https://fontawesome.com/icons/tank-water?style=solid /// hydration, storage, water - static const IconData solidTankWater = IconDataSolid(0xe452); + static const IconData solidTankWater = IconData(0xe452, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tank Water icon /// /// https://fontawesome.com/icons/tank-water?style=regular /// hydration, storage, water - static const IconData tankWater = IconDataRegular(0xe452); + static const IconData tankWater = IconData(0xe452, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tank Water icon /// /// https://fontawesome.com/icons/tank-water?style=light /// hydration, storage, water - static const IconData lightTankWater = IconDataLight(0xe452); + static const IconData lightTankWater = IconData(0xe452, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tank Water icon /// /// https://fontawesome.com/icons/tank-water?style=thin /// hydration, storage, water - static const IconData thinTankWater = IconDataThin(0xe452); + static const IconData thinTankWater = IconData(0xe452, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tape icon /// /// https://fontawesome.com/icons/tape?style=solid /// design, package, sticky - static const IconData solidTape = IconDataSolid(0xf4db); + static const IconData solidTape = IconData(0xf4db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tape icon /// /// https://fontawesome.com/icons/tape?style=regular /// design, package, sticky - static const IconData tape = IconDataRegular(0xf4db); + static const IconData tape = IconData(0xf4db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tape icon /// /// https://fontawesome.com/icons/tape?style=light /// design, package, sticky - static const IconData lightTape = IconDataLight(0xf4db); + static const IconData lightTape = IconData(0xf4db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tape icon /// /// https://fontawesome.com/icons/tape?style=thin /// design, package, sticky - static const IconData thinTape = IconDataThin(0xf4db); + static const IconData thinTape = IconData(0xf4db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tarp icon /// /// https://fontawesome.com/icons/tarp?style=solid /// protection, tarp, tent, waterproof - static const IconData solidTarp = IconDataSolid(0xe57b); + static const IconData solidTarp = IconData(0xe57b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tarp icon /// /// https://fontawesome.com/icons/tarp?style=regular /// protection, tarp, tent, waterproof - static const IconData tarp = IconDataRegular(0xe57b); + static const IconData tarp = IconData(0xe57b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tarp icon /// /// https://fontawesome.com/icons/tarp?style=light /// protection, tarp, tent, waterproof - static const IconData lightTarp = IconDataLight(0xe57b); + static const IconData lightTarp = IconData(0xe57b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tarp icon /// /// https://fontawesome.com/icons/tarp?style=thin /// protection, tarp, tent, waterproof - static const IconData thinTarp = IconDataThin(0xe57b); + static const IconData thinTarp = IconData(0xe57b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tarp Droplet icon /// /// https://fontawesome.com/icons/tarp-droplet?style=solid /// protection, tarp, tent, waterproof - static const IconData solidTarpDroplet = IconDataSolid(0xe57c); + static const IconData solidTarpDroplet = IconData(0xe57c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tarp Droplet icon /// /// https://fontawesome.com/icons/tarp-droplet?style=regular /// protection, tarp, tent, waterproof - static const IconData tarpDroplet = IconDataRegular(0xe57c); + static const IconData tarpDroplet = IconData(0xe57c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tarp Droplet icon /// /// https://fontawesome.com/icons/tarp-droplet?style=light /// protection, tarp, tent, waterproof - static const IconData lightTarpDroplet = IconDataLight(0xe57c); + static const IconData lightTarpDroplet = IconData(0xe57c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tarp Droplet icon /// /// https://fontawesome.com/icons/tarp-droplet?style=thin /// protection, tarp, tent, waterproof - static const IconData thinTarpDroplet = IconDataThin(0xe57c); + static const IconData thinTarpDroplet = IconData(0xe57c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Taxi icon /// /// https://fontawesome.com/icons/taxi?style=solid /// cab, cabbie, car, car service, lyft, machine, oncoming, oncoming taxi, taxi, transportation, travel, uber, vehicle - static const IconData solidTaxi = IconDataSolid(0xf1ba); + static const IconData solidTaxi = IconData(0xf1ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cab for icon [solidTaxi] @Deprecated('Use "solidTaxi" instead.') @@ -84867,7 +84867,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/taxi?style=regular /// cab, cabbie, car, car service, lyft, machine, oncoming, oncoming taxi, taxi, transportation, travel, uber, vehicle - static const IconData taxi = IconDataRegular(0xf1ba); + static const IconData taxi = IconData(0xf1ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cab for icon [taxi] @Deprecated('Use "taxi" instead.') @@ -84877,7 +84877,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/taxi?style=light /// cab, cabbie, car, car service, lyft, machine, oncoming, oncoming taxi, taxi, transportation, travel, uber, vehicle - static const IconData lightTaxi = IconDataLight(0xf1ba); + static const IconData lightTaxi = IconData(0xf1ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cab for icon [lightTaxi] @Deprecated('Use "lightTaxi" instead.') @@ -84887,7 +84887,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/taxi?style=thin /// cab, cabbie, car, car service, lyft, machine, oncoming, oncoming taxi, taxi, transportation, travel, uber, vehicle - static const IconData thinTaxi = IconDataThin(0xf1ba); + static const IconData thinTaxi = IconData(0xf1ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cab for icon [thinTaxi] @Deprecated('Use "thinTaxi" instead.') @@ -84897,107 +84897,107 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/taxi-bus?style=solid /// bus, cab, coach, hack, motorbus, public transportation, taxicab - static const IconData solidTaxiBus = IconDataSolid(0xe298); + static const IconData solidTaxiBus = IconData(0xe298, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Taxi Bus icon /// /// https://fontawesome.com/icons/taxi-bus?style=regular /// bus, cab, coach, hack, motorbus, public transportation, taxicab - static const IconData taxiBus = IconDataRegular(0xe298); + static const IconData taxiBus = IconData(0xe298, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Taxi Bus icon /// /// https://fontawesome.com/icons/taxi-bus?style=light /// bus, cab, coach, hack, motorbus, public transportation, taxicab - static const IconData lightTaxiBus = IconDataLight(0xe298); + static const IconData lightTaxiBus = IconData(0xe298, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Taxi Bus icon /// /// https://fontawesome.com/icons/taxi-bus?style=thin /// bus, cab, coach, hack, motorbus, public transportation, taxicab - static const IconData thinTaxiBus = IconDataThin(0xe298); + static const IconData thinTaxiBus = IconData(0xe298, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Teamspeak icon /// /// https://fontawesome.com/icons/teamspeak?style=brands - static const IconData teamspeak = IconDataBrands(0xf4f9); + static const IconData teamspeak = IconData(0xf4f9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Teddy Bear icon /// /// https://fontawesome.com/icons/teddy-bear?style=solid /// plaything, plush, stuffed, teddy bear, toy - static const IconData solidTeddyBear = IconDataSolid(0xe3cf); + static const IconData solidTeddyBear = IconData(0xe3cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Teddy Bear icon /// /// https://fontawesome.com/icons/teddy-bear?style=regular /// plaything, plush, stuffed, teddy bear, toy - static const IconData teddyBear = IconDataRegular(0xe3cf); + static const IconData teddyBear = IconData(0xe3cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Teddy Bear icon /// /// https://fontawesome.com/icons/teddy-bear?style=light /// plaything, plush, stuffed, teddy bear, toy - static const IconData lightTeddyBear = IconDataLight(0xe3cf); + static const IconData lightTeddyBear = IconData(0xe3cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Teddy Bear icon /// /// https://fontawesome.com/icons/teddy-bear?style=thin /// plaything, plush, stuffed, teddy bear, toy - static const IconData thinTeddyBear = IconDataThin(0xe3cf); + static const IconData thinTeddyBear = IconData(0xe3cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Teeth icon /// /// https://fontawesome.com/icons/teeth?style=solid /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData solidTeeth = IconDataSolid(0xf62e); + static const IconData solidTeeth = IconData(0xf62e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Teeth icon /// /// https://fontawesome.com/icons/teeth?style=regular /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData teeth = IconDataRegular(0xf62e); + static const IconData teeth = IconData(0xf62e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Teeth icon /// /// https://fontawesome.com/icons/teeth?style=light /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData lightTeeth = IconDataLight(0xf62e); + static const IconData lightTeeth = IconData(0xf62e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Teeth icon /// /// https://fontawesome.com/icons/teeth?style=thin /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData thinTeeth = IconDataThin(0xf62e); + static const IconData thinTeeth = IconData(0xf62e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Teeth Open icon /// /// https://fontawesome.com/icons/teeth-open?style=solid /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData solidTeethOpen = IconDataSolid(0xf62f); + static const IconData solidTeethOpen = IconData(0xf62f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Teeth Open icon /// /// https://fontawesome.com/icons/teeth-open?style=regular /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData teethOpen = IconDataRegular(0xf62f); + static const IconData teethOpen = IconData(0xf62f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Teeth Open icon /// /// https://fontawesome.com/icons/teeth-open?style=light /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData lightTeethOpen = IconDataLight(0xf62f); + static const IconData lightTeethOpen = IconData(0xf62f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Teeth Open icon /// /// https://fontawesome.com/icons/teeth-open?style=thin /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData thinTeethOpen = IconDataThin(0xf62f); + static const IconData thinTeethOpen = IconData(0xf62f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Telegram icon /// /// https://fontawesome.com/icons/telegram?style=brands - static const IconData telegram = IconDataBrands(0xf2c6); + static const IconData telegram = IconData(0xf2c6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias telegram-plane for icon [telegram] @Deprecated('Use "telegram" instead.') @@ -85007,31 +85007,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/telescope?style=solid /// astronomy, knowledge, lens, look, microscope, observatory, science, scope, search, space, telescope, tool, view - static const IconData solidTelescope = IconDataSolid(0xe03e); + static const IconData solidTelescope = IconData(0xe03e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Telescope icon /// /// https://fontawesome.com/icons/telescope?style=regular /// astronomy, knowledge, lens, look, microscope, observatory, science, scope, search, space, telescope, tool, view - static const IconData telescope = IconDataRegular(0xe03e); + static const IconData telescope = IconData(0xe03e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Telescope icon /// /// https://fontawesome.com/icons/telescope?style=light /// astronomy, knowledge, lens, look, microscope, observatory, science, scope, search, space, telescope, tool, view - static const IconData lightTelescope = IconDataLight(0xe03e); + static const IconData lightTelescope = IconData(0xe03e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Telescope icon /// /// https://fontawesome.com/icons/telescope?style=thin /// astronomy, knowledge, lens, look, microscope, observatory, science, scope, search, space, telescope, tool, view - static const IconData thinTelescope = IconDataThin(0xe03e); + static const IconData thinTelescope = IconData(0xe03e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Temperature Arrow Down icon /// /// https://fontawesome.com/icons/temperature-arrow-down?style=solid /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData solidTemperatureArrowDown = IconDataSolid(0xe03f); + static const IconData solidTemperatureArrowDown = IconData(0xe03f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-down for icon [solidTemperatureArrowDown] @Deprecated('Use "solidTemperatureArrowDown" instead.') @@ -85041,7 +85041,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-down?style=regular /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData temperatureArrowDown = IconDataRegular(0xe03f); + static const IconData temperatureArrowDown = IconData(0xe03f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-down for icon [temperatureArrowDown] @Deprecated('Use "temperatureArrowDown" instead.') @@ -85051,7 +85051,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-down?style=light /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData lightTemperatureArrowDown = IconDataLight(0xe03f); + static const IconData lightTemperatureArrowDown = IconData(0xe03f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-down for icon [lightTemperatureArrowDown] @Deprecated('Use "lightTemperatureArrowDown" instead.') @@ -85061,7 +85061,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-down?style=thin /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData thinTemperatureArrowDown = IconDataThin(0xe03f); + static const IconData thinTemperatureArrowDown = IconData(0xe03f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-down for icon [thinTemperatureArrowDown] @Deprecated('Use "thinTemperatureArrowDown" instead.') @@ -85071,7 +85071,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-up?style=solid /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData solidTemperatureArrowUp = IconDataSolid(0xe040); + static const IconData solidTemperatureArrowUp = IconData(0xe040, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-up for icon [solidTemperatureArrowUp] @Deprecated('Use "solidTemperatureArrowUp" instead.') @@ -85081,7 +85081,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-up?style=regular /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData temperatureArrowUp = IconDataRegular(0xe040); + static const IconData temperatureArrowUp = IconData(0xe040, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-up for icon [temperatureArrowUp] @Deprecated('Use "temperatureArrowUp" instead.') @@ -85091,7 +85091,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-up?style=light /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData lightTemperatureArrowUp = IconDataLight(0xe040); + static const IconData lightTemperatureArrowUp = IconData(0xe040, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-up for icon [lightTemperatureArrowUp] @Deprecated('Use "lightTemperatureArrowUp" instead.') @@ -85101,7 +85101,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-arrow-up?style=thin /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData thinTemperatureArrowUp = IconDataThin(0xe040); + static const IconData thinTemperatureArrowUp = IconData(0xe040, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-up for icon [thinTemperatureArrowUp] @Deprecated('Use "thinTemperatureArrowUp" instead.') @@ -85111,7 +85111,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-empty?style=solid /// cold, mercury, status, temperature - static const IconData solidTemperatureEmpty = IconDataSolid(0xf2cb); + static const IconData solidTemperatureEmpty = IconData(0xf2cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-0 for icon [solidTemperatureEmpty] @Deprecated('Use "solidTemperatureEmpty" instead.') @@ -85129,7 +85129,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-empty?style=regular /// cold, mercury, status, temperature - static const IconData temperatureEmpty = IconDataRegular(0xf2cb); + static const IconData temperatureEmpty = IconData(0xf2cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-0 for icon [temperatureEmpty] @Deprecated('Use "temperatureEmpty" instead.') @@ -85147,7 +85147,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-empty?style=light /// cold, mercury, status, temperature - static const IconData lightTemperatureEmpty = IconDataLight(0xf2cb); + static const IconData lightTemperatureEmpty = IconData(0xf2cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-0 for icon [lightTemperatureEmpty] @Deprecated('Use "lightTemperatureEmpty" instead.') @@ -85165,7 +85165,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-empty?style=thin /// cold, mercury, status, temperature - static const IconData thinTemperatureEmpty = IconDataThin(0xf2cb); + static const IconData thinTemperatureEmpty = IconData(0xf2cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-0 for icon [thinTemperatureEmpty] @Deprecated('Use "thinTemperatureEmpty" instead.') @@ -85183,7 +85183,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-full?style=solid /// fever, hot, mercury, status, temperature - static const IconData solidTemperatureFull = IconDataSolid(0xf2c7); + static const IconData solidTemperatureFull = IconData(0xf2c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-4 for icon [solidTemperatureFull] @Deprecated('Use "solidTemperatureFull" instead.') @@ -85201,7 +85201,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-full?style=regular /// fever, hot, mercury, status, temperature - static const IconData temperatureFull = IconDataRegular(0xf2c7); + static const IconData temperatureFull = IconData(0xf2c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-4 for icon [temperatureFull] @Deprecated('Use "temperatureFull" instead.') @@ -85219,7 +85219,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-full?style=light /// fever, hot, mercury, status, temperature - static const IconData lightTemperatureFull = IconDataLight(0xf2c7); + static const IconData lightTemperatureFull = IconData(0xf2c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-4 for icon [lightTemperatureFull] @Deprecated('Use "lightTemperatureFull" instead.') @@ -85237,7 +85237,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-full?style=thin /// fever, hot, mercury, status, temperature - static const IconData thinTemperatureFull = IconDataThin(0xf2c7); + static const IconData thinTemperatureFull = IconData(0xf2c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-4 for icon [thinTemperatureFull] @Deprecated('Use "thinTemperatureFull" instead.') @@ -85255,7 +85255,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-half?style=solid /// mercury, status, temperature, thermometer, weather - static const IconData solidTemperatureHalf = IconDataSolid(0xf2c9); + static const IconData solidTemperatureHalf = IconData(0xf2c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-2 for icon [solidTemperatureHalf] @Deprecated('Use "solidTemperatureHalf" instead.') @@ -85273,7 +85273,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-half?style=regular /// mercury, status, temperature, thermometer, weather - static const IconData temperatureHalf = IconDataRegular(0xf2c9); + static const IconData temperatureHalf = IconData(0xf2c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-2 for icon [temperatureHalf] @Deprecated('Use "temperatureHalf" instead.') @@ -85291,7 +85291,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-half?style=light /// mercury, status, temperature, thermometer, weather - static const IconData lightTemperatureHalf = IconDataLight(0xf2c9); + static const IconData lightTemperatureHalf = IconData(0xf2c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-2 for icon [lightTemperatureHalf] @Deprecated('Use "lightTemperatureHalf" instead.') @@ -85309,7 +85309,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-half?style=thin /// mercury, status, temperature, thermometer, weather - static const IconData thinTemperatureHalf = IconDataThin(0xf2c9); + static const IconData thinTemperatureHalf = IconData(0xf2c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-2 for icon [thinTemperatureHalf] @Deprecated('Use "thinTemperatureHalf" instead.') @@ -85327,79 +85327,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-high?style=solid /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData solidTemperatureHigh = IconDataSolid(0xf769); + static const IconData solidTemperatureHigh = IconData(0xf769, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Temperature High icon /// /// https://fontawesome.com/icons/temperature-high?style=regular /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData temperatureHigh = IconDataRegular(0xf769); + static const IconData temperatureHigh = IconData(0xf769, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Temperature High icon /// /// https://fontawesome.com/icons/temperature-high?style=light /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData lightTemperatureHigh = IconDataLight(0xf769); + static const IconData lightTemperatureHigh = IconData(0xf769, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Temperature High icon /// /// https://fontawesome.com/icons/temperature-high?style=thin /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData thinTemperatureHigh = IconDataThin(0xf769); + static const IconData thinTemperatureHigh = IconData(0xf769, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Temperature List icon /// /// https://fontawesome.com/icons/temperature-list?style=solid /// cheatsheet, gauge, heat, thermometer - static const IconData solidTemperatureList = IconDataSolid(0xe299); + static const IconData solidTemperatureList = IconData(0xe299, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Temperature List icon /// /// https://fontawesome.com/icons/temperature-list?style=regular /// cheatsheet, gauge, heat, thermometer - static const IconData temperatureList = IconDataRegular(0xe299); + static const IconData temperatureList = IconData(0xe299, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Temperature List icon /// /// https://fontawesome.com/icons/temperature-list?style=light /// cheatsheet, gauge, heat, thermometer - static const IconData lightTemperatureList = IconDataLight(0xe299); + static const IconData lightTemperatureList = IconData(0xe299, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Temperature List icon /// /// https://fontawesome.com/icons/temperature-list?style=thin /// cheatsheet, gauge, heat, thermometer - static const IconData thinTemperatureList = IconDataThin(0xe299); + static const IconData thinTemperatureList = IconData(0xe299, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Temperature Low icon /// /// https://fontawesome.com/icons/temperature-low?style=solid /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData solidTemperatureLow = IconDataSolid(0xf76b); + static const IconData solidTemperatureLow = IconData(0xf76b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Temperature Low icon /// /// https://fontawesome.com/icons/temperature-low?style=regular /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData temperatureLow = IconDataRegular(0xf76b); + static const IconData temperatureLow = IconData(0xf76b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Temperature Low icon /// /// https://fontawesome.com/icons/temperature-low?style=light /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData lightTemperatureLow = IconDataLight(0xf76b); + static const IconData lightTemperatureLow = IconData(0xf76b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Temperature Low icon /// /// https://fontawesome.com/icons/temperature-low?style=thin /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData thinTemperatureLow = IconDataThin(0xf76b); + static const IconData thinTemperatureLow = IconData(0xf76b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Temperature Quarter icon /// /// https://fontawesome.com/icons/temperature-quarter?style=solid /// mercury, status, temperature - static const IconData solidTemperatureQuarter = IconDataSolid(0xf2ca); + static const IconData solidTemperatureQuarter = IconData(0xf2ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-1 for icon [solidTemperatureQuarter] @Deprecated('Use "solidTemperatureQuarter" instead.') @@ -85417,7 +85417,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-quarter?style=regular /// mercury, status, temperature - static const IconData temperatureQuarter = IconDataRegular(0xf2ca); + static const IconData temperatureQuarter = IconData(0xf2ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-1 for icon [temperatureQuarter] @Deprecated('Use "temperatureQuarter" instead.') @@ -85435,7 +85435,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-quarter?style=light /// mercury, status, temperature - static const IconData lightTemperatureQuarter = IconDataLight(0xf2ca); + static const IconData lightTemperatureQuarter = IconData(0xf2ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-1 for icon [lightTemperatureQuarter] @Deprecated('Use "lightTemperatureQuarter" instead.') @@ -85453,7 +85453,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-quarter?style=thin /// mercury, status, temperature - static const IconData thinTemperatureQuarter = IconDataThin(0xf2ca); + static const IconData thinTemperatureQuarter = IconData(0xf2ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-1 for icon [thinTemperatureQuarter] @Deprecated('Use "thinTemperatureQuarter" instead.') @@ -85471,7 +85471,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-snow?style=solid /// cold, mercury, thermometer, winter - static const IconData solidTemperatureSnow = IconDataSolid(0xf768); + static const IconData solidTemperatureSnow = IconData(0xf768, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-frigid for icon [solidTemperatureSnow] @Deprecated('Use "solidTemperatureSnow" instead.') @@ -85481,7 +85481,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-snow?style=regular /// cold, mercury, thermometer, winter - static const IconData temperatureSnow = IconDataRegular(0xf768); + static const IconData temperatureSnow = IconData(0xf768, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-frigid for icon [temperatureSnow] @Deprecated('Use "temperatureSnow" instead.') @@ -85491,7 +85491,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-snow?style=light /// cold, mercury, thermometer, winter - static const IconData lightTemperatureSnow = IconDataLight(0xf768); + static const IconData lightTemperatureSnow = IconData(0xf768, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-frigid for icon [lightTemperatureSnow] @Deprecated('Use "lightTemperatureSnow" instead.') @@ -85501,7 +85501,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-snow?style=thin /// cold, mercury, thermometer, winter - static const IconData thinTemperatureSnow = IconDataThin(0xf768); + static const IconData thinTemperatureSnow = IconData(0xf768, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-frigid for icon [thinTemperatureSnow] @Deprecated('Use "thinTemperatureSnow" instead.') @@ -85511,7 +85511,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-sun?style=solid /// heat, mercury, summer, thermometer - static const IconData solidTemperatureSun = IconDataSolid(0xf76a); + static const IconData solidTemperatureSun = IconData(0xf76a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-hot for icon [solidTemperatureSun] @Deprecated('Use "solidTemperatureSun" instead.') @@ -85521,7 +85521,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-sun?style=regular /// heat, mercury, summer, thermometer - static const IconData temperatureSun = IconDataRegular(0xf76a); + static const IconData temperatureSun = IconData(0xf76a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-hot for icon [temperatureSun] @Deprecated('Use "temperatureSun" instead.') @@ -85531,7 +85531,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-sun?style=light /// heat, mercury, summer, thermometer - static const IconData lightTemperatureSun = IconDataLight(0xf76a); + static const IconData lightTemperatureSun = IconData(0xf76a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-hot for icon [lightTemperatureSun] @Deprecated('Use "lightTemperatureSun" instead.') @@ -85541,7 +85541,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-sun?style=thin /// heat, mercury, summer, thermometer - static const IconData thinTemperatureSun = IconDataThin(0xf76a); + static const IconData thinTemperatureSun = IconData(0xf76a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-hot for icon [thinTemperatureSun] @Deprecated('Use "thinTemperatureSun" instead.') @@ -85551,7 +85551,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-three-quarters?style=solid /// mercury, status, temperature - static const IconData solidTemperatureThreeQuarters = IconDataSolid(0xf2c8); + static const IconData solidTemperatureThreeQuarters = IconData(0xf2c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias temperature-3 for icon [solidTemperatureThreeQuarters] @Deprecated('Use "solidTemperatureThreeQuarters" instead.') @@ -85570,7 +85570,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-three-quarters?style=regular /// mercury, status, temperature - static const IconData temperatureThreeQuarters = IconDataRegular(0xf2c8); + static const IconData temperatureThreeQuarters = IconData(0xf2c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias temperature-3 for icon [temperatureThreeQuarters] @Deprecated('Use "temperatureThreeQuarters" instead.') @@ -85588,7 +85588,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-three-quarters?style=light /// mercury, status, temperature - static const IconData lightTemperatureThreeQuarters = IconDataLight(0xf2c8); + static const IconData lightTemperatureThreeQuarters = IconData(0xf2c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias temperature-3 for icon [lightTemperatureThreeQuarters] @Deprecated('Use "lightTemperatureThreeQuarters" instead.') @@ -85607,7 +85607,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/temperature-three-quarters?style=thin /// mercury, status, temperature - static const IconData thinTemperatureThreeQuarters = IconDataThin(0xf2c8); + static const IconData thinTemperatureThreeQuarters = IconData(0xf2c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias temperature-3 for icon [thinTemperatureThreeQuarters] @Deprecated('Use "thinTemperatureThreeQuarters" instead.') @@ -85625,13 +85625,13 @@ class FontAwesomeIcons { /// Brands Tencent Weibo icon /// /// https://fontawesome.com/icons/tencent-weibo?style=brands - static const IconData tencentWeibo = IconDataBrands(0xf1d5); + static const IconData tencentWeibo = IconData(0xf1d5, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Tenge Sign icon /// /// https://fontawesome.com/icons/tenge-sign?style=solid /// Tenge Sign, currency - static const IconData solidTengeSign = IconDataSolid(0xf7d7); + static const IconData solidTengeSign = IconData(0xf7d7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tenge for icon [solidTengeSign] @Deprecated('Use "solidTengeSign" instead.') @@ -85641,7 +85641,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tenge-sign?style=regular /// Tenge Sign, currency - static const IconData tengeSign = IconDataRegular(0xf7d7); + static const IconData tengeSign = IconData(0xf7d7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tenge for icon [tengeSign] @Deprecated('Use "tengeSign" instead.') @@ -85651,7 +85651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tenge-sign?style=light /// Tenge Sign, currency - static const IconData lightTengeSign = IconDataLight(0xf7d7); + static const IconData lightTengeSign = IconData(0xf7d7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tenge for icon [lightTengeSign] @Deprecated('Use "lightTengeSign" instead.') @@ -85661,7 +85661,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tenge-sign?style=thin /// Tenge Sign, currency - static const IconData thinTengeSign = IconDataThin(0xf7d7); + static const IconData thinTengeSign = IconData(0xf7d7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tenge for icon [thinTengeSign] @Deprecated('Use "thinTengeSign" instead.') @@ -85671,295 +85671,295 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tennis-ball?style=solid /// ball, racket, racquet, sport, tennis, us open - static const IconData solidTennisBall = IconDataSolid(0xf45e); + static const IconData solidTennisBall = IconData(0xf45e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tennis Ball icon /// /// https://fontawesome.com/icons/tennis-ball?style=regular /// ball, racket, racquet, sport, tennis, us open - static const IconData tennisBall = IconDataRegular(0xf45e); + static const IconData tennisBall = IconData(0xf45e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tennis Ball icon /// /// https://fontawesome.com/icons/tennis-ball?style=light /// ball, racket, racquet, sport, tennis, us open - static const IconData lightTennisBall = IconDataLight(0xf45e); + static const IconData lightTennisBall = IconData(0xf45e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tennis Ball icon /// /// https://fontawesome.com/icons/tennis-ball?style=thin /// ball, racket, racquet, sport, tennis, us open - static const IconData thinTennisBall = IconDataThin(0xf45e); + static const IconData thinTennisBall = IconData(0xf45e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent icon /// /// https://fontawesome.com/icons/tent?style=solid /// bivouac, campground, campsite, refugee, shelter, tent - static const IconData solidTent = IconDataSolid(0xe57d); + static const IconData solidTent = IconData(0xe57d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent icon /// /// https://fontawesome.com/icons/tent?style=regular /// bivouac, campground, campsite, refugee, shelter, tent - static const IconData tent = IconDataRegular(0xe57d); + static const IconData tent = IconData(0xe57d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent icon /// /// https://fontawesome.com/icons/tent?style=light /// bivouac, campground, campsite, refugee, shelter, tent - static const IconData lightTent = IconDataLight(0xe57d); + static const IconData lightTent = IconData(0xe57d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent icon /// /// https://fontawesome.com/icons/tent?style=thin /// bivouac, campground, campsite, refugee, shelter, tent - static const IconData thinTent = IconDataThin(0xe57d); + static const IconData thinTent = IconData(0xe57d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent Arrow Down To Line icon /// /// https://fontawesome.com/icons/tent-arrow-down-to-line?style=solid /// bivouac, campground, refugee, shelter, tent, campsite, permanent, refugee, shelter - static const IconData solidTentArrowDownToLine = IconDataSolid(0xe57e); + static const IconData solidTentArrowDownToLine = IconData(0xe57e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent Arrow Down To Line icon /// /// https://fontawesome.com/icons/tent-arrow-down-to-line?style=regular /// bivouac, campground, refugee, shelter, tent, campsite, permanent, refugee, shelter - static const IconData tentArrowDownToLine = IconDataRegular(0xe57e); + static const IconData tentArrowDownToLine = IconData(0xe57e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent Arrow Down To Line icon /// /// https://fontawesome.com/icons/tent-arrow-down-to-line?style=light /// bivouac, campground, refugee, shelter, tent, campsite, permanent, refugee, shelter - static const IconData lightTentArrowDownToLine = IconDataLight(0xe57e); + static const IconData lightTentArrowDownToLine = IconData(0xe57e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent Arrow Down To Line icon /// /// https://fontawesome.com/icons/tent-arrow-down-to-line?style=thin /// bivouac, campground, refugee, shelter, tent, campsite, permanent, refugee, shelter - static const IconData thinTentArrowDownToLine = IconDataThin(0xe57e); + static const IconData thinTentArrowDownToLine = IconData(0xe57e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent Arrow Left Right icon /// /// https://fontawesome.com/icons/tent-arrow-left-right?style=solid /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, transition - static const IconData solidTentArrowLeftRight = IconDataSolid(0xe57f); + static const IconData solidTentArrowLeftRight = IconData(0xe57f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent Arrow Left Right icon /// /// https://fontawesome.com/icons/tent-arrow-left-right?style=regular /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, transition - static const IconData tentArrowLeftRight = IconDataRegular(0xe57f); + static const IconData tentArrowLeftRight = IconData(0xe57f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent Arrow Left Right icon /// /// https://fontawesome.com/icons/tent-arrow-left-right?style=light /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, transition - static const IconData lightTentArrowLeftRight = IconDataLight(0xe57f); + static const IconData lightTentArrowLeftRight = IconData(0xe57f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent Arrow Left Right icon /// /// https://fontawesome.com/icons/tent-arrow-left-right?style=thin /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, transition - static const IconData thinTentArrowLeftRight = IconDataThin(0xe57f); + static const IconData thinTentArrowLeftRight = IconData(0xe57f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent Arrow Turn Left icon /// /// https://fontawesome.com/icons/tent-arrow-turn-left?style=solid /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, temporary - static const IconData solidTentArrowTurnLeft = IconDataSolid(0xe580); + static const IconData solidTentArrowTurnLeft = IconData(0xe580, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent Arrow Turn Left icon /// /// https://fontawesome.com/icons/tent-arrow-turn-left?style=regular /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, temporary - static const IconData tentArrowTurnLeft = IconDataRegular(0xe580); + static const IconData tentArrowTurnLeft = IconData(0xe580, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent Arrow Turn Left icon /// /// https://fontawesome.com/icons/tent-arrow-turn-left?style=light /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, temporary - static const IconData lightTentArrowTurnLeft = IconDataLight(0xe580); + static const IconData lightTentArrowTurnLeft = IconData(0xe580, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent Arrow Turn Left icon /// /// https://fontawesome.com/icons/tent-arrow-turn-left?style=thin /// bivouac, campground, refugee, shelter, tent, campsite, refugee, shelter, temporary - static const IconData thinTentArrowTurnLeft = IconDataThin(0xe580); + static const IconData thinTentArrowTurnLeft = IconData(0xe580, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent Arrows Down icon /// /// https://fontawesome.com/icons/tent-arrows-down?style=solid /// bivouac, campground, refugee, shelter, tent, campsite, insert, refugee, shelter, spontaneous - static const IconData solidTentArrowsDown = IconDataSolid(0xe581); + static const IconData solidTentArrowsDown = IconData(0xe581, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent Arrows Down icon /// /// https://fontawesome.com/icons/tent-arrows-down?style=regular /// bivouac, campground, refugee, shelter, tent, campsite, insert, refugee, shelter, spontaneous - static const IconData tentArrowsDown = IconDataRegular(0xe581); + static const IconData tentArrowsDown = IconData(0xe581, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent Arrows Down icon /// /// https://fontawesome.com/icons/tent-arrows-down?style=light /// bivouac, campground, refugee, shelter, tent, campsite, insert, refugee, shelter, spontaneous - static const IconData lightTentArrowsDown = IconDataLight(0xe581); + static const IconData lightTentArrowsDown = IconData(0xe581, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent Arrows Down icon /// /// https://fontawesome.com/icons/tent-arrows-down?style=thin /// bivouac, campground, refugee, shelter, tent, campsite, insert, refugee, shelter, spontaneous - static const IconData thinTentArrowsDown = IconDataThin(0xe581); + static const IconData thinTentArrowsDown = IconData(0xe581, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tent Double Peak icon /// /// https://fontawesome.com/icons/tent-double-peak?style=solid /// campground, refugee, shelter, tent, big top, bivouac, camp, campsite, carnival, circus - static const IconData solidTentDoublePeak = IconDataSolid(0xe627); + static const IconData solidTentDoublePeak = IconData(0xe627, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tent Double Peak icon /// /// https://fontawesome.com/icons/tent-double-peak?style=regular /// campground, refugee, shelter, tent, big top, bivouac, camp, campsite, carnival, circus - static const IconData tentDoublePeak = IconDataRegular(0xe627); + static const IconData tentDoublePeak = IconData(0xe627, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tent Double Peak icon /// /// https://fontawesome.com/icons/tent-double-peak?style=light /// campground, refugee, shelter, tent, big top, bivouac, camp, campsite, carnival, circus - static const IconData lightTentDoublePeak = IconDataLight(0xe627); + static const IconData lightTentDoublePeak = IconData(0xe627, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tent Double Peak icon /// /// https://fontawesome.com/icons/tent-double-peak?style=thin /// campground, refugee, shelter, tent, big top, bivouac, camp, campsite, carnival, circus - static const IconData thinTentDoublePeak = IconDataThin(0xe627); + static const IconData thinTentDoublePeak = IconData(0xe627, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tents icon /// /// https://fontawesome.com/icons/tents?style=solid /// bivouac, campground, refugee, shelter, tent, bivouac, campground, campsite, refugee, shelter, tent - static const IconData solidTents = IconDataSolid(0xe582); + static const IconData solidTents = IconData(0xe582, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tents icon /// /// https://fontawesome.com/icons/tents?style=regular /// bivouac, campground, refugee, shelter, tent, bivouac, campground, campsite, refugee, shelter, tent - static const IconData tents = IconDataRegular(0xe582); + static const IconData tents = IconData(0xe582, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tents icon /// /// https://fontawesome.com/icons/tents?style=light /// bivouac, campground, refugee, shelter, tent, bivouac, campground, campsite, refugee, shelter, tent - static const IconData lightTents = IconDataLight(0xe582); + static const IconData lightTents = IconData(0xe582, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tents icon /// /// https://fontawesome.com/icons/tents?style=thin /// bivouac, campground, refugee, shelter, tent, bivouac, campground, campsite, refugee, shelter, tent - static const IconData thinTents = IconDataThin(0xe582); + static const IconData thinTents = IconData(0xe582, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Terminal icon /// /// https://fontawesome.com/icons/terminal?style=solid /// code, coding, command, console, development, prompt, terminal - static const IconData solidTerminal = IconDataSolid(0xf120); + static const IconData solidTerminal = IconData(0xf120, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Terminal icon /// /// https://fontawesome.com/icons/terminal?style=regular /// code, coding, command, console, development, prompt, terminal - static const IconData terminal = IconDataRegular(0xf120); + static const IconData terminal = IconData(0xf120, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Terminal icon /// /// https://fontawesome.com/icons/terminal?style=light /// code, coding, command, console, development, prompt, terminal - static const IconData lightTerminal = IconDataLight(0xf120); + static const IconData lightTerminal = IconData(0xf120, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Terminal icon /// /// https://fontawesome.com/icons/terminal?style=thin /// code, coding, command, console, development, prompt, terminal - static const IconData thinTerminal = IconDataThin(0xf120); + static const IconData thinTerminal = IconData(0xf120, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Text icon /// /// https://fontawesome.com/icons/text?style=solid /// font, format, letter, style, typography - static const IconData solidText = IconDataSolid(0xf893); + static const IconData solidText = IconData(0xf893, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Text icon /// /// https://fontawesome.com/icons/text?style=regular /// font, format, letter, style, typography - static const IconData text = IconDataRegular(0xf893); + static const IconData text = IconData(0xf893, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Text icon /// /// https://fontawesome.com/icons/text?style=light /// font, format, letter, style, typography - static const IconData lightText = IconDataLight(0xf893); + static const IconData lightText = IconData(0xf893, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Text icon /// /// https://fontawesome.com/icons/text?style=thin /// font, format, letter, style, typography - static const IconData thinText = IconDataThin(0xf893); + static const IconData thinText = IconData(0xf893, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Text Height icon /// /// https://fontawesome.com/icons/text-height?style=solid /// edit, font, format, modify, text, type - static const IconData solidTextHeight = IconDataSolid(0xf034); + static const IconData solidTextHeight = IconData(0xf034, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Text Height icon /// /// https://fontawesome.com/icons/text-height?style=regular /// edit, font, format, modify, text, type - static const IconData textHeight = IconDataRegular(0xf034); + static const IconData textHeight = IconData(0xf034, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Text Height icon /// /// https://fontawesome.com/icons/text-height?style=light /// edit, font, format, modify, text, type - static const IconData lightTextHeight = IconDataLight(0xf034); + static const IconData lightTextHeight = IconData(0xf034, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Text Height icon /// /// https://fontawesome.com/icons/text-height?style=thin /// edit, font, format, modify, text, type - static const IconData thinTextHeight = IconDataThin(0xf034); + static const IconData thinTextHeight = IconData(0xf034, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Text Size icon /// /// https://fontawesome.com/icons/text-size?style=solid /// decrease, edit, font, format, increase, modify, text, type - static const IconData solidTextSize = IconDataSolid(0xf894); + static const IconData solidTextSize = IconData(0xf894, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Text Size icon /// /// https://fontawesome.com/icons/text-size?style=regular /// decrease, edit, font, format, increase, modify, text, type - static const IconData textSize = IconDataRegular(0xf894); + static const IconData textSize = IconData(0xf894, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Text Size icon /// /// https://fontawesome.com/icons/text-size?style=light /// decrease, edit, font, format, increase, modify, text, type - static const IconData lightTextSize = IconDataLight(0xf894); + static const IconData lightTextSize = IconData(0xf894, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Text Size icon /// /// https://fontawesome.com/icons/text-size?style=thin /// decrease, edit, font, format, increase, modify, text, type - static const IconData thinTextSize = IconDataThin(0xf894); + static const IconData thinTextSize = IconData(0xf894, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Text Slash icon /// /// https://fontawesome.com/icons/text-slash?style=solid /// cancel, disabled, font, format, remove, style, text - static const IconData solidTextSlash = IconDataSolid(0xf87d); + static const IconData solidTextSlash = IconData(0xf87d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias remove-format for icon [solidTextSlash] @Deprecated('Use "solidTextSlash" instead.') @@ -85969,7 +85969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/text-slash?style=regular /// cancel, disabled, font, format, remove, style, text - static const IconData textSlash = IconDataRegular(0xf87d); + static const IconData textSlash = IconData(0xf87d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias remove-format for icon [textSlash] @Deprecated('Use "textSlash" instead.') @@ -85979,7 +85979,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/text-slash?style=light /// cancel, disabled, font, format, remove, style, text - static const IconData lightTextSlash = IconDataLight(0xf87d); + static const IconData lightTextSlash = IconData(0xf87d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias remove-format for icon [lightTextSlash] @Deprecated('Use "lightTextSlash" instead.') @@ -85989,7 +85989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/text-slash?style=thin /// cancel, disabled, font, format, remove, style, text - static const IconData thinTextSlash = IconDataThin(0xf87d); + static const IconData thinTextSlash = IconData(0xf87d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias remove-format for icon [thinTextSlash] @Deprecated('Use "thinTextSlash" instead.') @@ -85999,176 +85999,176 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/text-width?style=solid /// edit, font, format, modify, text, type - static const IconData solidTextWidth = IconDataSolid(0xf035); + static const IconData solidTextWidth = IconData(0xf035, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Text Width icon /// /// https://fontawesome.com/icons/text-width?style=regular /// edit, font, format, modify, text, type - static const IconData textWidth = IconDataRegular(0xf035); + static const IconData textWidth = IconData(0xf035, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Text Width icon /// /// https://fontawesome.com/icons/text-width?style=light /// edit, font, format, modify, text, type - static const IconData lightTextWidth = IconDataLight(0xf035); + static const IconData lightTextWidth = IconData(0xf035, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Text Width icon /// /// https://fontawesome.com/icons/text-width?style=thin /// edit, font, format, modify, text, type - static const IconData thinTextWidth = IconDataThin(0xf035); + static const IconData thinTextWidth = IconData(0xf035, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands The Red Yeti icon /// /// https://fontawesome.com/icons/the-red-yeti?style=brands - static const IconData theRedYeti = IconDataBrands(0xf69d); + static const IconData theRedYeti = IconData(0xf69d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Themeco icon /// /// https://fontawesome.com/icons/themeco?style=brands - static const IconData themeco = IconDataBrands(0xf5c6); + static const IconData themeco = IconData(0xf5c6, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands ThemeIsle icon /// /// https://fontawesome.com/icons/themeisle?style=brands - static const IconData themeisle = IconDataBrands(0xf2b2); + static const IconData themeisle = IconData(0xf2b2, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Thermometer icon /// /// https://fontawesome.com/icons/thermometer?style=solid /// covid-19, mercury, status, temperature - static const IconData solidThermometer = IconDataSolid(0xf491); + static const IconData solidThermometer = IconData(0xf491, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Thermometer icon /// /// https://fontawesome.com/icons/thermometer?style=regular /// covid-19, mercury, status, temperature - static const IconData thermometer = IconDataRegular(0xf491); + static const IconData thermometer = IconData(0xf491, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Thermometer icon /// /// https://fontawesome.com/icons/thermometer?style=light /// covid-19, mercury, status, temperature - static const IconData lightThermometer = IconDataLight(0xf491); + static const IconData lightThermometer = IconData(0xf491, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Thermometer icon /// /// https://fontawesome.com/icons/thermometer?style=thin /// covid-19, mercury, status, temperature - static const IconData thinThermometer = IconDataThin(0xf491); + static const IconData thinThermometer = IconData(0xf491, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Theta icon /// /// https://fontawesome.com/icons/theta?style=solid /// alphabet, greek, math - static const IconData solidTheta = IconDataSolid(0xf69e); + static const IconData solidTheta = IconData(0xf69e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Theta icon /// /// https://fontawesome.com/icons/theta?style=regular /// alphabet, greek, math - static const IconData theta = IconDataRegular(0xf69e); + static const IconData theta = IconData(0xf69e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Theta icon /// /// https://fontawesome.com/icons/theta?style=light /// alphabet, greek, math - static const IconData lightTheta = IconDataLight(0xf69e); + static const IconData lightTheta = IconData(0xf69e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Theta icon /// /// https://fontawesome.com/icons/theta?style=thin /// alphabet, greek, math - static const IconData thinTheta = IconDataThin(0xf69e); + static const IconData thinTheta = IconData(0xf69e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Think Peaks icon /// /// https://fontawesome.com/icons/think-peaks?style=brands - static const IconData thinkPeaks = IconDataBrands(0xf731); + static const IconData thinkPeaks = IconData(0xf731, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Thought Bubble icon /// /// https://fontawesome.com/icons/thought-bubble?style=solid /// Right Thought Bubble, balloon, bubble, comic, dream, idea, imagination, think, thought, thought balloon - static const IconData solidThoughtBubble = IconDataSolid(0xe32e); + static const IconData solidThoughtBubble = IconData(0xe32e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Thought Bubble icon /// /// https://fontawesome.com/icons/thought-bubble?style=regular /// Right Thought Bubble, balloon, bubble, comic, dream, idea, imagination, think, thought, thought balloon - static const IconData thoughtBubble = IconDataRegular(0xe32e); + static const IconData thoughtBubble = IconData(0xe32e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Thought Bubble icon /// /// https://fontawesome.com/icons/thought-bubble?style=light /// Right Thought Bubble, balloon, bubble, comic, dream, idea, imagination, think, thought, thought balloon - static const IconData lightThoughtBubble = IconDataLight(0xe32e); + static const IconData lightThoughtBubble = IconData(0xe32e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Thought Bubble icon /// /// https://fontawesome.com/icons/thought-bubble?style=thin /// Right Thought Bubble, balloon, bubble, comic, dream, idea, imagination, think, thought, thought balloon - static const IconData thinThoughtBubble = IconDataThin(0xe32e); + static const IconData thinThoughtBubble = IconData(0xe32e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Threads icon /// /// https://fontawesome.com/icons/threads?style=brands - static const IconData threads = IconDataBrands(0xe618); + static const IconData threads = IconData(0xe618, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Thumbs Down icon /// /// https://fontawesome.com/icons/thumbs-down?style=solid /// -1, disagree, disapprove, dislike, down, hand, social, thumb, thumbs down, thumbs-o-down - static const IconData solidThumbsDown = IconDataSolid(0xf165); + static const IconData solidThumbsDown = IconData(0xf165, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Thumbs Down icon /// /// https://fontawesome.com/icons/thumbs-down?style=regular /// -1, disagree, disapprove, dislike, down, hand, social, thumb, thumbs down, thumbs-o-down - static const IconData thumbsDown = IconDataRegular(0xf165); + static const IconData thumbsDown = IconData(0xf165, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Thumbs Down icon /// /// https://fontawesome.com/icons/thumbs-down?style=light /// -1, disagree, disapprove, dislike, down, hand, social, thumb, thumbs down, thumbs-o-down - static const IconData lightThumbsDown = IconDataLight(0xf165); + static const IconData lightThumbsDown = IconData(0xf165, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Thumbs Down icon /// /// https://fontawesome.com/icons/thumbs-down?style=thin /// -1, disagree, disapprove, dislike, down, hand, social, thumb, thumbs down, thumbs-o-down - static const IconData thinThumbsDown = IconDataThin(0xf165); + static const IconData thinThumbsDown = IconData(0xf165, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Thumbs Up icon /// /// https://fontawesome.com/icons/thumbs-up?style=solid /// +1, agree, approve, favorite, hand, like, ok, okay, social, success, thumb, thumbs up, thumbs-o-up, up, yes, you got it dude - static const IconData solidThumbsUp = IconDataSolid(0xf164); + static const IconData solidThumbsUp = IconData(0xf164, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Thumbs Up icon /// /// https://fontawesome.com/icons/thumbs-up?style=regular /// +1, agree, approve, favorite, hand, like, ok, okay, social, success, thumb, thumbs up, thumbs-o-up, up, yes, you got it dude - static const IconData thumbsUp = IconDataRegular(0xf164); + static const IconData thumbsUp = IconData(0xf164, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Thumbs Up icon /// /// https://fontawesome.com/icons/thumbs-up?style=light /// +1, agree, approve, favorite, hand, like, ok, okay, social, success, thumb, thumbs up, thumbs-o-up, up, yes, you got it dude - static const IconData lightThumbsUp = IconDataLight(0xf164); + static const IconData lightThumbsUp = IconData(0xf164, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Thumbs Up icon /// /// https://fontawesome.com/icons/thumbs-up?style=thin /// +1, agree, approve, favorite, hand, like, ok, okay, social, success, thumb, thumbs up, thumbs-o-up, up, yes, you got it dude - static const IconData thinThumbsUp = IconDataThin(0xf164); + static const IconData thinThumbsUp = IconData(0xf164, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Thumbtack icon /// /// https://fontawesome.com/icons/thumbtack?style=solid /// Black Pushpin, coordinates, location, marker, pin, pushpin, thumb-tack - static const IconData solidThumbtack = IconDataSolid(0xf08d); + static const IconData solidThumbtack = IconData(0xf08d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias thumb-tack for icon [solidThumbtack] @Deprecated('Use "solidThumbtack" instead.') @@ -86178,7 +86178,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/thumbtack?style=regular /// Black Pushpin, coordinates, location, marker, pin, pushpin, thumb-tack - static const IconData thumbtack = IconDataRegular(0xf08d); + static const IconData thumbtack = IconData(0xf08d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias thumb-tack for icon [thumbtack] @Deprecated('Use "thumbtack" instead.') @@ -86188,7 +86188,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/thumbtack?style=light /// Black Pushpin, coordinates, location, marker, pin, pushpin, thumb-tack - static const IconData lightThumbtack = IconDataLight(0xf08d); + static const IconData lightThumbtack = IconData(0xf08d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias thumb-tack for icon [lightThumbtack] @Deprecated('Use "lightThumbtack" instead.') @@ -86198,7 +86198,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/thumbtack?style=thin /// Black Pushpin, coordinates, location, marker, pin, pushpin, thumb-tack - static const IconData thinThumbtack = IconDataThin(0xf08d); + static const IconData thinThumbtack = IconData(0xf08d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias thumb-tack for icon [thinThumbtack] @Deprecated('Use "thinThumbtack" instead.') @@ -86208,55 +86208,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tick?style=solid /// apostrophe, foot - static const IconData solidTick = IconDataSolid(0xe32f); + static const IconData solidTick = IconData(0xe32f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tick icon /// /// https://fontawesome.com/icons/tick?style=regular /// apostrophe, foot - static const IconData tick = IconDataRegular(0xe32f); + static const IconData tick = IconData(0xe32f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tick icon /// /// https://fontawesome.com/icons/tick?style=light /// apostrophe, foot - static const IconData lightTick = IconDataLight(0xe32f); + static const IconData lightTick = IconData(0xe32f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tick icon /// /// https://fontawesome.com/icons/tick?style=thin /// apostrophe, foot - static const IconData thinTick = IconDataThin(0xe32f); + static const IconData thinTick = IconData(0xe32f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ticket icon /// /// https://fontawesome.com/icons/ticket?style=solid /// admission, admission tickets, coupon, movie, pass, support, ticket, voucher - static const IconData solidTicket = IconDataSolid(0xf145); + static const IconData solidTicket = IconData(0xf145, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ticket icon /// /// https://fontawesome.com/icons/ticket?style=regular /// admission, admission tickets, coupon, movie, pass, support, ticket, voucher - static const IconData ticket = IconDataRegular(0xf145); + static const IconData ticket = IconData(0xf145, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ticket icon /// /// https://fontawesome.com/icons/ticket?style=light /// admission, admission tickets, coupon, movie, pass, support, ticket, voucher - static const IconData lightTicket = IconDataLight(0xf145); + static const IconData lightTicket = IconData(0xf145, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ticket icon /// /// https://fontawesome.com/icons/ticket?style=thin /// admission, admission tickets, coupon, movie, pass, support, ticket, voucher - static const IconData thinTicket = IconDataThin(0xf145); + static const IconData thinTicket = IconData(0xf145, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ticket Airline icon /// /// https://fontawesome.com/icons/ticket-airline?style=solid /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData solidTicketAirline = IconDataSolid(0xe29a); + static const IconData solidTicketAirline = IconData(0xe29a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ticket-perforated-plane for icon [solidTicketAirline] @Deprecated('Use "solidTicketAirline" instead.') @@ -86270,7 +86270,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-airline?style=regular /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData ticketAirline = IconDataRegular(0xe29a); + static const IconData ticketAirline = IconData(0xe29a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ticket-perforated-plane for icon [ticketAirline] @Deprecated('Use "ticketAirline" instead.') @@ -86284,7 +86284,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-airline?style=light /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData lightTicketAirline = IconDataLight(0xe29a); + static const IconData lightTicketAirline = IconData(0xe29a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ticket-perforated-plane for icon [lightTicketAirline] @Deprecated('Use "lightTicketAirline" instead.') @@ -86298,7 +86298,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-airline?style=thin /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData thinTicketAirline = IconDataThin(0xe29a); + static const IconData thinTicketAirline = IconData(0xe29a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ticket-perforated-plane for icon [thinTicketAirline] @Deprecated('Use "thinTicketAirline" instead.') @@ -86312,31 +86312,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-perforated?style=solid /// admission, admission tickets, movie, pass, support, ticket, voucher, arrival, boarding, coupon - static const IconData solidTicketPerforated = IconDataSolid(0xe63e); + static const IconData solidTicketPerforated = IconData(0xe63e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ticket Perforated icon /// /// https://fontawesome.com/icons/ticket-perforated?style=regular /// admission, admission tickets, movie, pass, support, ticket, voucher, arrival, boarding, coupon - static const IconData ticketPerforated = IconDataRegular(0xe63e); + static const IconData ticketPerforated = IconData(0xe63e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ticket Perforated icon /// /// https://fontawesome.com/icons/ticket-perforated?style=light /// admission, admission tickets, movie, pass, support, ticket, voucher, arrival, boarding, coupon - static const IconData lightTicketPerforated = IconDataLight(0xe63e); + static const IconData lightTicketPerforated = IconData(0xe63e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ticket Perforated icon /// /// https://fontawesome.com/icons/ticket-perforated?style=thin /// admission, admission tickets, movie, pass, support, ticket, voucher, arrival, boarding, coupon - static const IconData thinTicketPerforated = IconDataThin(0xe63e); + static const IconData thinTicketPerforated = IconData(0xe63e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ticket Simple icon /// /// https://fontawesome.com/icons/ticket-simple?style=solid /// admission, coupon, movie, pass, support, ticket, voucher - static const IconData solidTicketSimple = IconDataSolid(0xf3ff); + static const IconData solidTicketSimple = IconData(0xf3ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ticket-alt for icon [solidTicketSimple] @Deprecated('Use "solidTicketSimple" instead.') @@ -86346,7 +86346,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-simple?style=regular /// admission, coupon, movie, pass, support, ticket, voucher - static const IconData ticketSimple = IconDataRegular(0xf3ff); + static const IconData ticketSimple = IconData(0xf3ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ticket-alt for icon [ticketSimple] @Deprecated('Use "ticketSimple" instead.') @@ -86356,7 +86356,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-simple?style=light /// admission, coupon, movie, pass, support, ticket, voucher - static const IconData lightTicketSimple = IconDataLight(0xf3ff); + static const IconData lightTicketSimple = IconData(0xf3ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ticket-alt for icon [lightTicketSimple] @Deprecated('Use "lightTicketSimple" instead.') @@ -86366,7 +86366,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/ticket-simple?style=thin /// admission, coupon, movie, pass, support, ticket, voucher - static const IconData thinTicketSimple = IconDataThin(0xf3ff); + static const IconData thinTicketSimple = IconData(0xf3ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ticket-alt for icon [thinTicketSimple] @Deprecated('Use "thinTicketSimple" instead.') @@ -86376,31 +86376,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tickets?style=solid /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData solidTickets = IconDataSolid(0xe658); + static const IconData solidTickets = IconData(0xe658, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tickets icon /// /// https://fontawesome.com/icons/tickets?style=regular /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData tickets = IconDataRegular(0xe658); + static const IconData tickets = IconData(0xe658, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tickets icon /// /// https://fontawesome.com/icons/tickets?style=light /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData lightTickets = IconDataLight(0xe658); + static const IconData lightTickets = IconData(0xe658, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tickets icon /// /// https://fontawesome.com/icons/tickets?style=thin /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData thinTickets = IconDataThin(0xe658); + static const IconData thinTickets = IconData(0xe658, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tickets Airline icon /// /// https://fontawesome.com/icons/tickets-airline?style=solid /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData solidTicketsAirline = IconDataSolid(0xe29b); + static const IconData solidTicketsAirline = IconData(0xe29b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tickets-perforated-plane for icon [solidTicketsAirline] @Deprecated('Use "solidTicketsAirline" instead.') @@ -86414,7 +86414,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tickets-airline?style=regular /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData ticketsAirline = IconDataRegular(0xe29b); + static const IconData ticketsAirline = IconData(0xe29b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tickets-perforated-plane for icon [ticketsAirline] @Deprecated('Use "ticketsAirline" instead.') @@ -86428,7 +86428,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tickets-airline?style=light /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData lightTicketsAirline = IconDataLight(0xe29b); + static const IconData lightTicketsAirline = IconData(0xe29b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tickets-perforated-plane for icon [lightTicketsAirline] @Deprecated('Use "lightTicketsAirline" instead.') @@ -86442,7 +86442,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tickets-airline?style=thin /// airplane, arrival, boarding pass, departure, ticket, travel - static const IconData thinTicketsAirline = IconDataThin(0xe29b); + static const IconData thinTicketsAirline = IconData(0xe29b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tickets-perforated-plane for icon [thinTicketsAirline] @Deprecated('Use "thinTicketsAirline" instead.') @@ -86456,396 +86456,396 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tickets-perforated?style=solid /// admission, admission tickets, movie, pass, support, voucher, coupon, ticket, arrival, boarding - static const IconData solidTicketsPerforated = IconDataSolid(0xe63f); + static const IconData solidTicketsPerforated = IconData(0xe63f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tickets Perforated icon /// /// https://fontawesome.com/icons/tickets-perforated?style=regular /// admission, admission tickets, movie, pass, support, voucher, coupon, ticket, arrival, boarding - static const IconData ticketsPerforated = IconDataRegular(0xe63f); + static const IconData ticketsPerforated = IconData(0xe63f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tickets Perforated icon /// /// https://fontawesome.com/icons/tickets-perforated?style=light /// admission, admission tickets, movie, pass, support, voucher, coupon, ticket, arrival, boarding - static const IconData lightTicketsPerforated = IconDataLight(0xe63f); + static const IconData lightTicketsPerforated = IconData(0xe63f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tickets Perforated icon /// /// https://fontawesome.com/icons/tickets-perforated?style=thin /// admission, admission tickets, movie, pass, support, voucher, coupon, ticket, arrival, boarding - static const IconData thinTicketsPerforated = IconDataThin(0xe63f); + static const IconData thinTicketsPerforated = IconData(0xe63f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tickets Simple icon /// /// https://fontawesome.com/icons/tickets-simple?style=solid /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData solidTicketsSimple = IconDataSolid(0xe659); + static const IconData solidTicketsSimple = IconData(0xe659, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tickets Simple icon /// /// https://fontawesome.com/icons/tickets-simple?style=regular /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData ticketsSimple = IconDataRegular(0xe659); + static const IconData ticketsSimple = IconData(0xe659, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tickets Simple icon /// /// https://fontawesome.com/icons/tickets-simple?style=light /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData lightTicketsSimple = IconDataLight(0xe659); + static const IconData lightTicketsSimple = IconData(0xe659, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tickets Simple icon /// /// https://fontawesome.com/icons/tickets-simple?style=thin /// admission, admission tickets, movie, pass, support, ticket, voucher, coupon - static const IconData thinTicketsSimple = IconDataThin(0xe659); + static const IconData thinTicketsSimple = IconData(0xe659, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands TikTok icon /// /// https://fontawesome.com/icons/tiktok?style=brands - static const IconData tiktok = IconDataBrands(0xe07b); + static const IconData tiktok = IconData(0xe07b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Tilde icon /// /// https://fontawesome.com/icons/tilde?style=solid /// Tilde, accent, symbol, text, type - static const IconData solidTilde = IconDataSolid(0x7e); + static const IconData solidTilde = IconData(0x7e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tilde icon /// /// https://fontawesome.com/icons/tilde?style=regular /// Tilde, accent, symbol, text, type - static const IconData tilde = IconDataRegular(0x7e); + static const IconData tilde = IconData(0x7e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tilde icon /// /// https://fontawesome.com/icons/tilde?style=light /// Tilde, accent, symbol, text, type - static const IconData lightTilde = IconDataLight(0x7e); + static const IconData lightTilde = IconData(0x7e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tilde icon /// /// https://fontawesome.com/icons/tilde?style=thin /// Tilde, accent, symbol, text, type - static const IconData thinTilde = IconDataThin(0x7e); + static const IconData thinTilde = IconData(0x7e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Timeline icon /// /// https://fontawesome.com/icons/timeline?style=solid /// chronological, deadline, history, linear - static const IconData solidTimeline = IconDataSolid(0xe29c); + static const IconData solidTimeline = IconData(0xe29c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Timeline icon /// /// https://fontawesome.com/icons/timeline?style=regular /// chronological, deadline, history, linear - static const IconData timeline = IconDataRegular(0xe29c); + static const IconData timeline = IconData(0xe29c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Timeline icon /// /// https://fontawesome.com/icons/timeline?style=light /// chronological, deadline, history, linear - static const IconData lightTimeline = IconDataLight(0xe29c); + static const IconData lightTimeline = IconData(0xe29c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Timeline icon /// /// https://fontawesome.com/icons/timeline?style=thin /// chronological, deadline, history, linear - static const IconData thinTimeline = IconDataThin(0xe29c); + static const IconData thinTimeline = IconData(0xe29c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Timeline Arrow icon /// /// https://fontawesome.com/icons/timeline-arrow?style=solid /// chronological, deadline, history, linear - static const IconData solidTimelineArrow = IconDataSolid(0xe29d); + static const IconData solidTimelineArrow = IconData(0xe29d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Timeline Arrow icon /// /// https://fontawesome.com/icons/timeline-arrow?style=regular /// chronological, deadline, history, linear - static const IconData timelineArrow = IconDataRegular(0xe29d); + static const IconData timelineArrow = IconData(0xe29d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Timeline Arrow icon /// /// https://fontawesome.com/icons/timeline-arrow?style=light /// chronological, deadline, history, linear - static const IconData lightTimelineArrow = IconDataLight(0xe29d); + static const IconData lightTimelineArrow = IconData(0xe29d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Timeline Arrow icon /// /// https://fontawesome.com/icons/timeline-arrow?style=thin /// chronological, deadline, history, linear - static const IconData thinTimelineArrow = IconDataThin(0xe29d); + static const IconData thinTimelineArrow = IconData(0xe29d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Timer icon /// /// https://fontawesome.com/icons/timer?style=solid /// clock, countdown, pending, stopwatch, timer, timer clock, waiting - static const IconData solidTimer = IconDataSolid(0xe29e); + static const IconData solidTimer = IconData(0xe29e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Timer icon /// /// https://fontawesome.com/icons/timer?style=regular /// clock, countdown, pending, stopwatch, timer, timer clock, waiting - static const IconData timer = IconDataRegular(0xe29e); + static const IconData timer = IconData(0xe29e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Timer icon /// /// https://fontawesome.com/icons/timer?style=light /// clock, countdown, pending, stopwatch, timer, timer clock, waiting - static const IconData lightTimer = IconDataLight(0xe29e); + static const IconData lightTimer = IconData(0xe29e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Timer icon /// /// https://fontawesome.com/icons/timer?style=thin /// clock, countdown, pending, stopwatch, timer, timer clock, waiting - static const IconData thinTimer = IconDataThin(0xe29e); + static const IconData thinTimer = IconData(0xe29e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tire icon /// /// https://fontawesome.com/icons/tire?style=solid /// auto, car, rim, rubber, wheel - static const IconData solidTire = IconDataSolid(0xf631); + static const IconData solidTire = IconData(0xf631, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tire icon /// /// https://fontawesome.com/icons/tire?style=regular /// auto, car, rim, rubber, wheel - static const IconData tire = IconDataRegular(0xf631); + static const IconData tire = IconData(0xf631, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tire icon /// /// https://fontawesome.com/icons/tire?style=light /// auto, car, rim, rubber, wheel - static const IconData lightTire = IconDataLight(0xf631); + static const IconData lightTire = IconData(0xf631, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tire icon /// /// https://fontawesome.com/icons/tire?style=thin /// auto, car, rim, rubber, wheel - static const IconData thinTire = IconDataThin(0xf631); + static const IconData thinTire = IconData(0xf631, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tire Flat icon /// /// https://fontawesome.com/icons/tire-flat?style=solid /// auto, car, rim, rubber, wheel - static const IconData solidTireFlat = IconDataSolid(0xf632); + static const IconData solidTireFlat = IconData(0xf632, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tire Flat icon /// /// https://fontawesome.com/icons/tire-flat?style=regular /// auto, car, rim, rubber, wheel - static const IconData tireFlat = IconDataRegular(0xf632); + static const IconData tireFlat = IconData(0xf632, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tire Flat icon /// /// https://fontawesome.com/icons/tire-flat?style=light /// auto, car, rim, rubber, wheel - static const IconData lightTireFlat = IconDataLight(0xf632); + static const IconData lightTireFlat = IconData(0xf632, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tire Flat icon /// /// https://fontawesome.com/icons/tire-flat?style=thin /// auto, car, rim, rubber, wheel - static const IconData thinTireFlat = IconDataThin(0xf632); + static const IconData thinTireFlat = IconData(0xf632, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tire Pressure Warning icon /// /// https://fontawesome.com/icons/tire-pressure-warning?style=solid /// alert, auto, car, flat, rim, rubber, wheel - static const IconData solidTirePressureWarning = IconDataSolid(0xf633); + static const IconData solidTirePressureWarning = IconData(0xf633, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tire Pressure Warning icon /// /// https://fontawesome.com/icons/tire-pressure-warning?style=regular /// alert, auto, car, flat, rim, rubber, wheel - static const IconData tirePressureWarning = IconDataRegular(0xf633); + static const IconData tirePressureWarning = IconData(0xf633, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tire Pressure Warning icon /// /// https://fontawesome.com/icons/tire-pressure-warning?style=light /// alert, auto, car, flat, rim, rubber, wheel - static const IconData lightTirePressureWarning = IconDataLight(0xf633); + static const IconData lightTirePressureWarning = IconData(0xf633, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tire Pressure Warning icon /// /// https://fontawesome.com/icons/tire-pressure-warning?style=thin /// alert, auto, car, flat, rim, rubber, wheel - static const IconData thinTirePressureWarning = IconDataThin(0xf633); + static const IconData thinTirePressureWarning = IconData(0xf633, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tire Rugged icon /// /// https://fontawesome.com/icons/tire-rugged?style=solid /// auto, car, offroad, rim, rubber, wheel - static const IconData solidTireRugged = IconDataSolid(0xf634); + static const IconData solidTireRugged = IconData(0xf634, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tire Rugged icon /// /// https://fontawesome.com/icons/tire-rugged?style=regular /// auto, car, offroad, rim, rubber, wheel - static const IconData tireRugged = IconDataRegular(0xf634); + static const IconData tireRugged = IconData(0xf634, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tire Rugged icon /// /// https://fontawesome.com/icons/tire-rugged?style=light /// auto, car, offroad, rim, rubber, wheel - static const IconData lightTireRugged = IconDataLight(0xf634); + static const IconData lightTireRugged = IconData(0xf634, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tire Rugged icon /// /// https://fontawesome.com/icons/tire-rugged?style=thin /// auto, car, offroad, rim, rubber, wheel - static const IconData thinTireRugged = IconDataThin(0xf634); + static const IconData thinTireRugged = IconData(0xf634, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toggle Large Off icon /// /// https://fontawesome.com/icons/toggle-large-off?style=solid /// button, off, on, switch - static const IconData solidToggleLargeOff = IconDataSolid(0xe5b0); + static const IconData solidToggleLargeOff = IconData(0xe5b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toggle Large Off icon /// /// https://fontawesome.com/icons/toggle-large-off?style=regular /// button, off, on, switch - static const IconData toggleLargeOff = IconDataRegular(0xe5b0); + static const IconData toggleLargeOff = IconData(0xe5b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toggle Large Off icon /// /// https://fontawesome.com/icons/toggle-large-off?style=light /// button, off, on, switch - static const IconData lightToggleLargeOff = IconDataLight(0xe5b0); + static const IconData lightToggleLargeOff = IconData(0xe5b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toggle Large Off icon /// /// https://fontawesome.com/icons/toggle-large-off?style=thin /// button, off, on, switch - static const IconData thinToggleLargeOff = IconDataThin(0xe5b0); + static const IconData thinToggleLargeOff = IconData(0xe5b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toggle Large On icon /// /// https://fontawesome.com/icons/toggle-large-on?style=solid /// button, off, on, switch - static const IconData solidToggleLargeOn = IconDataSolid(0xe5b1); + static const IconData solidToggleLargeOn = IconData(0xe5b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toggle Large On icon /// /// https://fontawesome.com/icons/toggle-large-on?style=regular /// button, off, on, switch - static const IconData toggleLargeOn = IconDataRegular(0xe5b1); + static const IconData toggleLargeOn = IconData(0xe5b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toggle Large On icon /// /// https://fontawesome.com/icons/toggle-large-on?style=light /// button, off, on, switch - static const IconData lightToggleLargeOn = IconDataLight(0xe5b1); + static const IconData lightToggleLargeOn = IconData(0xe5b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toggle Large On icon /// /// https://fontawesome.com/icons/toggle-large-on?style=thin /// button, off, on, switch - static const IconData thinToggleLargeOn = IconDataThin(0xe5b1); + static const IconData thinToggleLargeOn = IconData(0xe5b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toggle Off icon /// /// https://fontawesome.com/icons/toggle-off?style=solid /// button, off, on, switch - static const IconData solidToggleOff = IconDataSolid(0xf204); + static const IconData solidToggleOff = IconData(0xf204, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toggle Off icon /// /// https://fontawesome.com/icons/toggle-off?style=regular /// button, off, on, switch - static const IconData toggleOff = IconDataRegular(0xf204); + static const IconData toggleOff = IconData(0xf204, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toggle Off icon /// /// https://fontawesome.com/icons/toggle-off?style=light /// button, off, on, switch - static const IconData lightToggleOff = IconDataLight(0xf204); + static const IconData lightToggleOff = IconData(0xf204, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toggle Off icon /// /// https://fontawesome.com/icons/toggle-off?style=thin /// button, off, on, switch - static const IconData thinToggleOff = IconDataThin(0xf204); + static const IconData thinToggleOff = IconData(0xf204, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toggle On icon /// /// https://fontawesome.com/icons/toggle-on?style=solid /// button, off, on, switch - static const IconData solidToggleOn = IconDataSolid(0xf205); + static const IconData solidToggleOn = IconData(0xf205, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toggle On icon /// /// https://fontawesome.com/icons/toggle-on?style=regular /// button, off, on, switch - static const IconData toggleOn = IconDataRegular(0xf205); + static const IconData toggleOn = IconData(0xf205, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toggle On icon /// /// https://fontawesome.com/icons/toggle-on?style=light /// button, off, on, switch - static const IconData lightToggleOn = IconDataLight(0xf205); + static const IconData lightToggleOn = IconData(0xf205, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toggle On icon /// /// https://fontawesome.com/icons/toggle-on?style=thin /// button, off, on, switch - static const IconData thinToggleOn = IconDataThin(0xf205); + static const IconData thinToggleOn = IconData(0xf205, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet icon /// /// https://fontawesome.com/icons/toilet?style=solid /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, toile, toilet, washroom, waste, wc - static const IconData solidToilet = IconDataSolid(0xf7d8); + static const IconData solidToilet = IconData(0xf7d8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet icon /// /// https://fontawesome.com/icons/toilet?style=regular /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, toile, toilet, washroom, waste, wc - static const IconData toilet = IconDataRegular(0xf7d8); + static const IconData toilet = IconData(0xf7d8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet icon /// /// https://fontawesome.com/icons/toilet?style=light /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, toile, toilet, washroom, waste, wc - static const IconData lightToilet = IconDataLight(0xf7d8); + static const IconData lightToilet = IconData(0xf7d8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet icon /// /// https://fontawesome.com/icons/toilet?style=thin /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, toile, toilet, washroom, waste, wc - static const IconData thinToilet = IconDataThin(0xf7d8); + static const IconData thinToilet = IconData(0xf7d8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet Paper icon /// /// https://fontawesome.com/icons/toilet-paper?style=solid /// bathroom, covid-19, halloween, holiday, lavatory, paper towels, prank, privy, restroom, roll, roll of paper, toilet, toilet paper, wipe - static const IconData solidToiletPaper = IconDataSolid(0xf71e); + static const IconData solidToiletPaper = IconData(0xf71e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet Paper icon /// /// https://fontawesome.com/icons/toilet-paper?style=regular /// bathroom, covid-19, halloween, holiday, lavatory, paper towels, prank, privy, restroom, roll, roll of paper, toilet, toilet paper, wipe - static const IconData toiletPaper = IconDataRegular(0xf71e); + static const IconData toiletPaper = IconData(0xf71e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet Paper icon /// /// https://fontawesome.com/icons/toilet-paper?style=light /// bathroom, covid-19, halloween, holiday, lavatory, paper towels, prank, privy, restroom, roll, roll of paper, toilet, toilet paper, wipe - static const IconData lightToiletPaper = IconDataLight(0xf71e); + static const IconData lightToiletPaper = IconData(0xf71e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet Paper icon /// /// https://fontawesome.com/icons/toilet-paper?style=thin /// bathroom, covid-19, halloween, holiday, lavatory, paper towels, prank, privy, restroom, roll, roll of paper, toilet, toilet paper, wipe - static const IconData thinToiletPaper = IconDataThin(0xf71e); + static const IconData thinToiletPaper = IconData(0xf71e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet Paper Blank icon /// /// https://fontawesome.com/icons/toilet-paper-blank?style=solid /// bathroom, halloween, lavatory, prank, privy, restroom, roll, toilet, wipe - static const IconData solidToiletPaperBlank = IconDataSolid(0xf71f); + static const IconData solidToiletPaperBlank = IconData(0xf71f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-alt for icon [solidToiletPaperBlank] @Deprecated('Use "solidToiletPaperBlank" instead.') @@ -86855,7 +86855,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank?style=regular /// bathroom, halloween, lavatory, prank, privy, restroom, roll, toilet, wipe - static const IconData toiletPaperBlank = IconDataRegular(0xf71f); + static const IconData toiletPaperBlank = IconData(0xf71f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-alt for icon [toiletPaperBlank] @Deprecated('Use "toiletPaperBlank" instead.') @@ -86865,7 +86865,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank?style=light /// bathroom, halloween, lavatory, prank, privy, restroom, roll, toilet, wipe - static const IconData lightToiletPaperBlank = IconDataLight(0xf71f); + static const IconData lightToiletPaperBlank = IconData(0xf71f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-alt for icon [lightToiletPaperBlank] @Deprecated('Use "lightToiletPaperBlank" instead.') @@ -86875,7 +86875,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank?style=thin /// bathroom, halloween, lavatory, prank, privy, restroom, roll, toilet, wipe - static const IconData thinToiletPaperBlank = IconDataThin(0xf71f); + static const IconData thinToiletPaperBlank = IconData(0xf71f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-alt for icon [thinToiletPaperBlank] @Deprecated('Use "thinToiletPaperBlank" instead.') @@ -86885,7 +86885,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank-under?style=solid /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData solidToiletPaperBlankUnder = IconDataSolid(0xe29f); + static const IconData solidToiletPaperBlankUnder = IconData(0xe29f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-alt for icon [solidToiletPaperBlankUnder] @Deprecated('Use "solidToiletPaperBlankUnder" instead.') @@ -86895,7 +86895,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank-under?style=regular /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData toiletPaperBlankUnder = IconDataRegular(0xe29f); + static const IconData toiletPaperBlankUnder = IconData(0xe29f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-alt for icon [toiletPaperBlankUnder] @Deprecated('Use "toiletPaperBlankUnder" instead.') @@ -86905,7 +86905,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank-under?style=light /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData lightToiletPaperBlankUnder = IconDataLight(0xe29f); + static const IconData lightToiletPaperBlankUnder = IconData(0xe29f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-alt for icon [lightToiletPaperBlankUnder] @Deprecated('Use "lightToiletPaperBlankUnder" instead.') @@ -86915,7 +86915,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-blank-under?style=thin /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData thinToiletPaperBlankUnder = IconDataThin(0xe29f); + static const IconData thinToiletPaperBlankUnder = IconData(0xe29f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-alt for icon [thinToiletPaperBlankUnder] @Deprecated('Use "thinToiletPaperBlankUnder" instead.') @@ -86925,55 +86925,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-check?style=solid /// bathroom, correct, enable, lavatory, privy, restroom, roll, sanitary, toilet, validate, wipe, working - static const IconData solidToiletPaperCheck = IconDataSolid(0xe5b2); + static const IconData solidToiletPaperCheck = IconData(0xe5b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet Paper Check icon /// /// https://fontawesome.com/icons/toilet-paper-check?style=regular /// bathroom, correct, enable, lavatory, privy, restroom, roll, sanitary, toilet, validate, wipe, working - static const IconData toiletPaperCheck = IconDataRegular(0xe5b2); + static const IconData toiletPaperCheck = IconData(0xe5b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet Paper Check icon /// /// https://fontawesome.com/icons/toilet-paper-check?style=light /// bathroom, correct, enable, lavatory, privy, restroom, roll, sanitary, toilet, validate, wipe, working - static const IconData lightToiletPaperCheck = IconDataLight(0xe5b2); + static const IconData lightToiletPaperCheck = IconData(0xe5b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet Paper Check icon /// /// https://fontawesome.com/icons/toilet-paper-check?style=thin /// bathroom, correct, enable, lavatory, privy, restroom, roll, sanitary, toilet, validate, wipe, working - static const IconData thinToiletPaperCheck = IconDataThin(0xe5b2); + static const IconData thinToiletPaperCheck = IconData(0xe5b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet Paper Slash icon /// /// https://fontawesome.com/icons/toilet-paper-slash?style=solid /// bathroom, covid-19, disabled, halloween, holiday, lavatory, leaves, prank, privy, restroom, roll, toilet, trouble, ut oh, wipe - static const IconData solidToiletPaperSlash = IconDataSolid(0xe072); + static const IconData solidToiletPaperSlash = IconData(0xe072, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet Paper Slash icon /// /// https://fontawesome.com/icons/toilet-paper-slash?style=regular /// bathroom, covid-19, disabled, halloween, holiday, lavatory, leaves, prank, privy, restroom, roll, toilet, trouble, ut oh, wipe - static const IconData toiletPaperSlash = IconDataRegular(0xe072); + static const IconData toiletPaperSlash = IconData(0xe072, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet Paper Slash icon /// /// https://fontawesome.com/icons/toilet-paper-slash?style=light /// bathroom, covid-19, disabled, halloween, holiday, lavatory, leaves, prank, privy, restroom, roll, toilet, trouble, ut oh, wipe - static const IconData lightToiletPaperSlash = IconDataLight(0xe072); + static const IconData lightToiletPaperSlash = IconData(0xe072, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet Paper Slash icon /// /// https://fontawesome.com/icons/toilet-paper-slash?style=thin /// bathroom, covid-19, disabled, halloween, holiday, lavatory, leaves, prank, privy, restroom, roll, toilet, trouble, ut oh, wipe - static const IconData thinToiletPaperSlash = IconDataThin(0xe072); + static const IconData thinToiletPaperSlash = IconData(0xe072, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet Paper Under icon /// /// https://fontawesome.com/icons/toilet-paper-under?style=solid /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData solidToiletPaperUnder = IconDataSolid(0xe2a0); + static const IconData solidToiletPaperUnder = IconData(0xe2a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse for icon [solidToiletPaperUnder] @Deprecated('Use "solidToiletPaperUnder" instead.') @@ -86983,7 +86983,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under?style=regular /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData toiletPaperUnder = IconDataRegular(0xe2a0); + static const IconData toiletPaperUnder = IconData(0xe2a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse for icon [toiletPaperUnder] @Deprecated('Use "toiletPaperUnder" instead.') @@ -86993,7 +86993,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under?style=light /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData lightToiletPaperUnder = IconDataLight(0xe2a0); + static const IconData lightToiletPaperUnder = IconData(0xe2a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse for icon [lightToiletPaperUnder] @Deprecated('Use "lightToiletPaperUnder" instead.') @@ -87003,7 +87003,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under?style=thin /// bathroom, lavatory, privy, restroom, roll, toilet, wipe - static const IconData thinToiletPaperUnder = IconDataThin(0xe2a0); + static const IconData thinToiletPaperUnder = IconData(0xe2a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse for icon [thinToiletPaperUnder] @Deprecated('Use "thinToiletPaperUnder" instead.') @@ -87013,7 +87013,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under-slash?style=solid /// bathroom, disabled, lavatory, privy, restroom, roll, toilet, wipe - static const IconData solidToiletPaperUnderSlash = IconDataSolid(0xe2a1); + static const IconData solidToiletPaperUnderSlash = IconData(0xe2a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-slash for icon [solidToiletPaperUnderSlash] @Deprecated('Use "solidToiletPaperUnderSlash" instead.') @@ -87024,7 +87024,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under-slash?style=regular /// bathroom, disabled, lavatory, privy, restroom, roll, toilet, wipe - static const IconData toiletPaperUnderSlash = IconDataRegular(0xe2a1); + static const IconData toiletPaperUnderSlash = IconData(0xe2a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-slash for icon [toiletPaperUnderSlash] @Deprecated('Use "toiletPaperUnderSlash" instead.') @@ -87034,7 +87034,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under-slash?style=light /// bathroom, disabled, lavatory, privy, restroom, roll, toilet, wipe - static const IconData lightToiletPaperUnderSlash = IconDataLight(0xe2a1); + static const IconData lightToiletPaperUnderSlash = IconData(0xe2a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-slash for icon [lightToiletPaperUnderSlash] @Deprecated('Use "lightToiletPaperUnderSlash" instead.') @@ -87045,7 +87045,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-under-slash?style=thin /// bathroom, disabled, lavatory, privy, restroom, roll, toilet, wipe - static const IconData thinToiletPaperUnderSlash = IconDataThin(0xe2a1); + static const IconData thinToiletPaperUnderSlash = IconData(0xe2a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias toilet-paper-reverse-slash for icon [thinToiletPaperUnderSlash] @Deprecated('Use "thinToiletPaperUnderSlash" instead.') @@ -87055,127 +87055,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toilet-paper-xmark?style=solid /// bathroom, incorrect, lavatory, privy, restroom, roll, toilet, uncheck, unsanitary, wipe - static const IconData solidToiletPaperXmark = IconDataSolid(0xe5b3); + static const IconData solidToiletPaperXmark = IconData(0xe5b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet Paper Xmark icon /// /// https://fontawesome.com/icons/toilet-paper-xmark?style=regular /// bathroom, incorrect, lavatory, privy, restroom, roll, toilet, uncheck, unsanitary, wipe - static const IconData toiletPaperXmark = IconDataRegular(0xe5b3); + static const IconData toiletPaperXmark = IconData(0xe5b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet Paper Xmark icon /// /// https://fontawesome.com/icons/toilet-paper-xmark?style=light /// bathroom, incorrect, lavatory, privy, restroom, roll, toilet, uncheck, unsanitary, wipe - static const IconData lightToiletPaperXmark = IconDataLight(0xe5b3); + static const IconData lightToiletPaperXmark = IconData(0xe5b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet Paper Xmark icon /// /// https://fontawesome.com/icons/toilet-paper-xmark?style=thin /// bathroom, incorrect, lavatory, privy, restroom, roll, toilet, uncheck, unsanitary, wipe - static const IconData thinToiletPaperXmark = IconDataThin(0xe5b3); + static const IconData thinToiletPaperXmark = IconData(0xe5b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilet Portable icon /// /// https://fontawesome.com/icons/toilet-portable?style=solid /// outhouse, toilet - static const IconData solidToiletPortable = IconDataSolid(0xe583); + static const IconData solidToiletPortable = IconData(0xe583, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilet Portable icon /// /// https://fontawesome.com/icons/toilet-portable?style=regular /// outhouse, toilet - static const IconData toiletPortable = IconDataRegular(0xe583); + static const IconData toiletPortable = IconData(0xe583, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilet Portable icon /// /// https://fontawesome.com/icons/toilet-portable?style=light /// outhouse, toilet - static const IconData lightToiletPortable = IconDataLight(0xe583); + static const IconData lightToiletPortable = IconData(0xe583, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilet Portable icon /// /// https://fontawesome.com/icons/toilet-portable?style=thin /// outhouse, toilet - static const IconData thinToiletPortable = IconDataThin(0xe583); + static const IconData thinToiletPortable = IconData(0xe583, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toilets Portable icon /// /// https://fontawesome.com/icons/toilets-portable?style=solid /// outhouse, toilet - static const IconData solidToiletsPortable = IconDataSolid(0xe584); + static const IconData solidToiletsPortable = IconData(0xe584, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toilets Portable icon /// /// https://fontawesome.com/icons/toilets-portable?style=regular /// outhouse, toilet - static const IconData toiletsPortable = IconDataRegular(0xe584); + static const IconData toiletsPortable = IconData(0xe584, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toilets Portable icon /// /// https://fontawesome.com/icons/toilets-portable?style=light /// outhouse, toilet - static const IconData lightToiletsPortable = IconDataLight(0xe584); + static const IconData lightToiletsPortable = IconData(0xe584, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toilets Portable icon /// /// https://fontawesome.com/icons/toilets-portable?style=thin /// outhouse, toilet - static const IconData thinToiletsPortable = IconDataThin(0xe584); + static const IconData thinToiletsPortable = IconData(0xe584, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tomato icon /// /// https://fontawesome.com/icons/tomato?style=solid /// blt, fresh, fruit, garden, salad, summer, tomato, vegetable - static const IconData solidTomato = IconDataSolid(0xe330); + static const IconData solidTomato = IconData(0xe330, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tomato icon /// /// https://fontawesome.com/icons/tomato?style=regular /// blt, fresh, fruit, garden, salad, summer, tomato, vegetable - static const IconData tomato = IconDataRegular(0xe330); + static const IconData tomato = IconData(0xe330, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tomato icon /// /// https://fontawesome.com/icons/tomato?style=light /// blt, fresh, fruit, garden, salad, summer, tomato, vegetable - static const IconData lightTomato = IconDataLight(0xe330); + static const IconData lightTomato = IconData(0xe330, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tomato icon /// /// https://fontawesome.com/icons/tomato?style=thin /// blt, fresh, fruit, garden, salad, summer, tomato, vegetable - static const IconData thinTomato = IconDataThin(0xe330); + static const IconData thinTomato = IconData(0xe330, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tombstone icon /// /// https://fontawesome.com/icons/tombstone?style=solid /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData solidTombstone = IconDataSolid(0xf720); + static const IconData solidTombstone = IconData(0xf720, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tombstone icon /// /// https://fontawesome.com/icons/tombstone?style=regular /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData tombstone = IconDataRegular(0xf720); + static const IconData tombstone = IconData(0xf720, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tombstone icon /// /// https://fontawesome.com/icons/tombstone?style=light /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData lightTombstone = IconDataLight(0xf720); + static const IconData lightTombstone = IconData(0xf720, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tombstone icon /// /// https://fontawesome.com/icons/tombstone?style=thin /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData thinTombstone = IconDataThin(0xf720); + static const IconData thinTombstone = IconData(0xf720, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tombstone Blank icon /// /// https://fontawesome.com/icons/tombstone-blank?style=solid /// cemetery, cross, dead, death, delete, grave, graveyard, halloween, headstone, holiday, remove, tombstone - static const IconData solidTombstoneBlank = IconDataSolid(0xf721); + static const IconData solidTombstoneBlank = IconData(0xf721, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tombstone-alt for icon [solidTombstoneBlank] @Deprecated('Use "solidTombstoneBlank" instead.') @@ -87185,7 +87185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tombstone-blank?style=regular /// cemetery, cross, dead, death, delete, grave, graveyard, halloween, headstone, holiday, remove, tombstone - static const IconData tombstoneBlank = IconDataRegular(0xf721); + static const IconData tombstoneBlank = IconData(0xf721, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tombstone-alt for icon [tombstoneBlank] @Deprecated('Use "tombstoneBlank" instead.') @@ -87195,7 +87195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tombstone-blank?style=light /// cemetery, cross, dead, death, delete, grave, graveyard, halloween, headstone, holiday, remove, tombstone - static const IconData lightTombstoneBlank = IconDataLight(0xf721); + static const IconData lightTombstoneBlank = IconData(0xf721, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tombstone-alt for icon [lightTombstoneBlank] @Deprecated('Use "lightTombstoneBlank" instead.') @@ -87205,7 +87205,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tombstone-blank?style=thin /// cemetery, cross, dead, death, delete, grave, graveyard, halloween, headstone, holiday, remove, tombstone - static const IconData thinTombstoneBlank = IconDataThin(0xf721); + static const IconData thinTombstoneBlank = IconData(0xf721, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tombstone-alt for icon [thinTombstoneBlank] @Deprecated('Use "thinTombstoneBlank" instead.') @@ -87215,127 +87215,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/toolbox?style=solid /// admin, chest, configuration, container, equipment, fix, maintenance, mechanic, modify, repair, settings, tool, toolbox, tools - static const IconData solidToolbox = IconDataSolid(0xf552); + static const IconData solidToolbox = IconData(0xf552, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toolbox icon /// /// https://fontawesome.com/icons/toolbox?style=regular /// admin, chest, configuration, container, equipment, fix, maintenance, mechanic, modify, repair, settings, tool, toolbox, tools - static const IconData toolbox = IconDataRegular(0xf552); + static const IconData toolbox = IconData(0xf552, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toolbox icon /// /// https://fontawesome.com/icons/toolbox?style=light /// admin, chest, configuration, container, equipment, fix, maintenance, mechanic, modify, repair, settings, tool, toolbox, tools - static const IconData lightToolbox = IconDataLight(0xf552); + static const IconData lightToolbox = IconData(0xf552, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toolbox icon /// /// https://fontawesome.com/icons/toolbox?style=thin /// admin, chest, configuration, container, equipment, fix, maintenance, mechanic, modify, repair, settings, tool, toolbox, tools - static const IconData thinToolbox = IconDataThin(0xf552); + static const IconData thinToolbox = IconData(0xf552, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tooth icon /// /// https://fontawesome.com/icons/tooth?style=solid /// bicuspid, dental, dentist, molar, mouth, teeth, tooth - static const IconData solidTooth = IconDataSolid(0xf5c9); + static const IconData solidTooth = IconData(0xf5c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tooth icon /// /// https://fontawesome.com/icons/tooth?style=regular /// bicuspid, dental, dentist, molar, mouth, teeth, tooth - static const IconData tooth = IconDataRegular(0xf5c9); + static const IconData tooth = IconData(0xf5c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tooth icon /// /// https://fontawesome.com/icons/tooth?style=light /// bicuspid, dental, dentist, molar, mouth, teeth, tooth - static const IconData lightTooth = IconDataLight(0xf5c9); + static const IconData lightTooth = IconData(0xf5c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tooth icon /// /// https://fontawesome.com/icons/tooth?style=thin /// bicuspid, dental, dentist, molar, mouth, teeth, tooth - static const IconData thinTooth = IconDataThin(0xf5c9); + static const IconData thinTooth = IconData(0xf5c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Toothbrush icon /// /// https://fontawesome.com/icons/toothbrush?style=solid /// bathroom, bicuspid, brush, clean, dental, dentist, hygiene, molar, mouth, teeth, toothbrush - static const IconData solidToothbrush = IconDataSolid(0xf635); + static const IconData solidToothbrush = IconData(0xf635, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Toothbrush icon /// /// https://fontawesome.com/icons/toothbrush?style=regular /// bathroom, bicuspid, brush, clean, dental, dentist, hygiene, molar, mouth, teeth, toothbrush - static const IconData toothbrush = IconDataRegular(0xf635); + static const IconData toothbrush = IconData(0xf635, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Toothbrush icon /// /// https://fontawesome.com/icons/toothbrush?style=light /// bathroom, bicuspid, brush, clean, dental, dentist, hygiene, molar, mouth, teeth, toothbrush - static const IconData lightToothbrush = IconDataLight(0xf635); + static const IconData lightToothbrush = IconData(0xf635, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Toothbrush icon /// /// https://fontawesome.com/icons/toothbrush?style=thin /// bathroom, bicuspid, brush, clean, dental, dentist, hygiene, molar, mouth, teeth, toothbrush - static const IconData thinToothbrush = IconDataThin(0xf635); + static const IconData thinToothbrush = IconData(0xf635, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Torii Gate icon /// /// https://fontawesome.com/icons/torii-gate?style=solid /// building, religion, shinto, shinto shrine, shintoism, shrine - static const IconData solidToriiGate = IconDataSolid(0xf6a1); + static const IconData solidToriiGate = IconData(0xf6a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Torii Gate icon /// /// https://fontawesome.com/icons/torii-gate?style=regular /// building, religion, shinto, shinto shrine, shintoism, shrine - static const IconData toriiGate = IconDataRegular(0xf6a1); + static const IconData toriiGate = IconData(0xf6a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Torii Gate icon /// /// https://fontawesome.com/icons/torii-gate?style=light /// building, religion, shinto, shinto shrine, shintoism, shrine - static const IconData lightToriiGate = IconDataLight(0xf6a1); + static const IconData lightToriiGate = IconData(0xf6a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Torii Gate icon /// /// https://fontawesome.com/icons/torii-gate?style=thin /// building, religion, shinto, shinto shrine, shintoism, shrine - static const IconData thinToriiGate = IconDataThin(0xf6a1); + static const IconData thinToriiGate = IconData(0xf6a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tornado icon /// /// https://fontawesome.com/icons/tornado?style=solid /// cloud, cyclone, dorothy, landspout, tornado, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData solidTornado = IconDataSolid(0xf76f); + static const IconData solidTornado = IconData(0xf76f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tornado icon /// /// https://fontawesome.com/icons/tornado?style=regular /// cloud, cyclone, dorothy, landspout, tornado, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData tornado = IconDataRegular(0xf76f); + static const IconData tornado = IconData(0xf76f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tornado icon /// /// https://fontawesome.com/icons/tornado?style=light /// cloud, cyclone, dorothy, landspout, tornado, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData lightTornado = IconDataLight(0xf76f); + static const IconData lightTornado = IconData(0xf76f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tornado icon /// /// https://fontawesome.com/icons/tornado?style=thin /// cloud, cyclone, dorothy, landspout, tornado, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData thinTornado = IconDataThin(0xf76f); + static const IconData thinTornado = IconData(0xf76f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tower Broadcast icon /// /// https://fontawesome.com/icons/tower-broadcast?style=solid /// airwaves, antenna, communication, emergency, radio, reception, waves - static const IconData solidTowerBroadcast = IconDataSolid(0xf519); + static const IconData solidTowerBroadcast = IconData(0xf519, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias broadcast-tower for icon [solidTowerBroadcast] @Deprecated('Use "solidTowerBroadcast" instead.') @@ -87345,7 +87345,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tower-broadcast?style=regular /// airwaves, antenna, communication, emergency, radio, reception, waves - static const IconData towerBroadcast = IconDataRegular(0xf519); + static const IconData towerBroadcast = IconData(0xf519, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias broadcast-tower for icon [towerBroadcast] @Deprecated('Use "towerBroadcast" instead.') @@ -87355,7 +87355,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tower-broadcast?style=light /// airwaves, antenna, communication, emergency, radio, reception, waves - static const IconData lightTowerBroadcast = IconDataLight(0xf519); + static const IconData lightTowerBroadcast = IconData(0xf519, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias broadcast-tower for icon [lightTowerBroadcast] @Deprecated('Use "lightTowerBroadcast" instead.') @@ -87365,7 +87365,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tower-broadcast?style=thin /// airwaves, antenna, communication, emergency, radio, reception, waves - static const IconData thinTowerBroadcast = IconDataThin(0xf519); + static const IconData thinTowerBroadcast = IconData(0xf519, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias broadcast-tower for icon [thinTowerBroadcast] @Deprecated('Use "thinTowerBroadcast" instead.') @@ -87375,300 +87375,300 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tower-cell?style=solid /// airwaves, antenna, communication, radio, reception, waves - static const IconData solidTowerCell = IconDataSolid(0xe585); + static const IconData solidTowerCell = IconData(0xe585, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tower Cell icon /// /// https://fontawesome.com/icons/tower-cell?style=regular /// airwaves, antenna, communication, radio, reception, waves - static const IconData towerCell = IconDataRegular(0xe585); + static const IconData towerCell = IconData(0xe585, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tower Cell icon /// /// https://fontawesome.com/icons/tower-cell?style=light /// airwaves, antenna, communication, radio, reception, waves - static const IconData lightTowerCell = IconDataLight(0xe585); + static const IconData lightTowerCell = IconData(0xe585, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tower Cell icon /// /// https://fontawesome.com/icons/tower-cell?style=thin /// airwaves, antenna, communication, radio, reception, waves - static const IconData thinTowerCell = IconDataThin(0xe585); + static const IconData thinTowerCell = IconData(0xe585, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tower Control icon /// /// https://fontawesome.com/icons/tower-control?style=solid /// air traffic control, airplane, airport - static const IconData solidTowerControl = IconDataSolid(0xe2a2); + static const IconData solidTowerControl = IconData(0xe2a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tower Control icon /// /// https://fontawesome.com/icons/tower-control?style=regular /// air traffic control, airplane, airport - static const IconData towerControl = IconDataRegular(0xe2a2); + static const IconData towerControl = IconData(0xe2a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tower Control icon /// /// https://fontawesome.com/icons/tower-control?style=light /// air traffic control, airplane, airport - static const IconData lightTowerControl = IconDataLight(0xe2a2); + static const IconData lightTowerControl = IconData(0xe2a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tower Control icon /// /// https://fontawesome.com/icons/tower-control?style=thin /// air traffic control, airplane, airport - static const IconData thinTowerControl = IconDataThin(0xe2a2); + static const IconData thinTowerControl = IconData(0xe2a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tower Observation icon /// /// https://fontawesome.com/icons/tower-observation?style=solid /// fire tower, view - static const IconData solidTowerObservation = IconDataSolid(0xe586); + static const IconData solidTowerObservation = IconData(0xe586, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tower Observation icon /// /// https://fontawesome.com/icons/tower-observation?style=regular /// fire tower, view - static const IconData towerObservation = IconDataRegular(0xe586); + static const IconData towerObservation = IconData(0xe586, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tower Observation icon /// /// https://fontawesome.com/icons/tower-observation?style=light /// fire tower, view - static const IconData lightTowerObservation = IconDataLight(0xe586); + static const IconData lightTowerObservation = IconData(0xe586, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tower Observation icon /// /// https://fontawesome.com/icons/tower-observation?style=thin /// fire tower, view - static const IconData thinTowerObservation = IconDataThin(0xe586); + static const IconData thinTowerObservation = IconData(0xe586, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tractor icon /// /// https://fontawesome.com/icons/tractor?style=solid /// agriculture, farm, tractor, vehicle - static const IconData solidTractor = IconDataSolid(0xf722); + static const IconData solidTractor = IconData(0xf722, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tractor icon /// /// https://fontawesome.com/icons/tractor?style=regular /// agriculture, farm, tractor, vehicle - static const IconData tractor = IconDataRegular(0xf722); + static const IconData tractor = IconData(0xf722, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tractor icon /// /// https://fontawesome.com/icons/tractor?style=light /// agriculture, farm, tractor, vehicle - static const IconData lightTractor = IconDataLight(0xf722); + static const IconData lightTractor = IconData(0xf722, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tractor icon /// /// https://fontawesome.com/icons/tractor?style=thin /// agriculture, farm, tractor, vehicle - static const IconData thinTractor = IconDataThin(0xf722); + static const IconData thinTractor = IconData(0xf722, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Trade Federation icon /// /// https://fontawesome.com/icons/trade-federation?style=brands - static const IconData tradeFederation = IconDataBrands(0xf513); + static const IconData tradeFederation = IconData(0xf513, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Trademark icon /// /// https://fontawesome.com/icons/trademark?style=solid /// copyright, mark, register, symbol, tm, trade mark, trademark - static const IconData solidTrademark = IconDataSolid(0xf25c); + static const IconData solidTrademark = IconData(0xf25c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trademark icon /// /// https://fontawesome.com/icons/trademark?style=regular /// copyright, mark, register, symbol, tm, trade mark, trademark - static const IconData trademark = IconDataRegular(0xf25c); + static const IconData trademark = IconData(0xf25c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trademark icon /// /// https://fontawesome.com/icons/trademark?style=light /// copyright, mark, register, symbol, tm, trade mark, trademark - static const IconData lightTrademark = IconDataLight(0xf25c); + static const IconData lightTrademark = IconData(0xf25c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trademark icon /// /// https://fontawesome.com/icons/trademark?style=thin /// copyright, mark, register, symbol, tm, trade mark, trademark - static const IconData thinTrademark = IconDataThin(0xf25c); + static const IconData thinTrademark = IconData(0xf25c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Traffic Cone icon /// /// https://fontawesome.com/icons/traffic-cone?style=solid /// alert, construction, maintenance, road - static const IconData solidTrafficCone = IconDataSolid(0xf636); + static const IconData solidTrafficCone = IconData(0xf636, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Traffic Cone icon /// /// https://fontawesome.com/icons/traffic-cone?style=regular /// alert, construction, maintenance, road - static const IconData trafficCone = IconDataRegular(0xf636); + static const IconData trafficCone = IconData(0xf636, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Traffic Cone icon /// /// https://fontawesome.com/icons/traffic-cone?style=light /// alert, construction, maintenance, road - static const IconData lightTrafficCone = IconDataLight(0xf636); + static const IconData lightTrafficCone = IconData(0xf636, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Traffic Cone icon /// /// https://fontawesome.com/icons/traffic-cone?style=thin /// alert, construction, maintenance, road - static const IconData thinTrafficCone = IconDataThin(0xf636); + static const IconData thinTrafficCone = IconData(0xf636, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Traffic Light icon /// /// https://fontawesome.com/icons/traffic-light?style=solid /// direction, light, road, signal, traffic, travel, vertical traffic light - static const IconData solidTrafficLight = IconDataSolid(0xf637); + static const IconData solidTrafficLight = IconData(0xf637, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Traffic Light icon /// /// https://fontawesome.com/icons/traffic-light?style=regular /// direction, light, road, signal, traffic, travel, vertical traffic light - static const IconData trafficLight = IconDataRegular(0xf637); + static const IconData trafficLight = IconData(0xf637, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Traffic Light icon /// /// https://fontawesome.com/icons/traffic-light?style=light /// direction, light, road, signal, traffic, travel, vertical traffic light - static const IconData lightTrafficLight = IconDataLight(0xf637); + static const IconData lightTrafficLight = IconData(0xf637, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Traffic Light icon /// /// https://fontawesome.com/icons/traffic-light?style=thin /// direction, light, road, signal, traffic, travel, vertical traffic light - static const IconData thinTrafficLight = IconDataThin(0xf637); + static const IconData thinTrafficLight = IconData(0xf637, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Traffic Light Go icon /// /// https://fontawesome.com/icons/traffic-light-go?style=solid /// direction, green, road, signal, travel - static const IconData solidTrafficLightGo = IconDataSolid(0xf638); + static const IconData solidTrafficLightGo = IconData(0xf638, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Traffic Light Go icon /// /// https://fontawesome.com/icons/traffic-light-go?style=regular /// direction, green, road, signal, travel - static const IconData trafficLightGo = IconDataRegular(0xf638); + static const IconData trafficLightGo = IconData(0xf638, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Traffic Light Go icon /// /// https://fontawesome.com/icons/traffic-light-go?style=light /// direction, green, road, signal, travel - static const IconData lightTrafficLightGo = IconDataLight(0xf638); + static const IconData lightTrafficLightGo = IconData(0xf638, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Traffic Light Go icon /// /// https://fontawesome.com/icons/traffic-light-go?style=thin /// direction, green, road, signal, travel - static const IconData thinTrafficLightGo = IconDataThin(0xf638); + static const IconData thinTrafficLightGo = IconData(0xf638, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Traffic Light Slow icon /// /// https://fontawesome.com/icons/traffic-light-slow?style=solid /// direction, road, signal, travel, yellow - static const IconData solidTrafficLightSlow = IconDataSolid(0xf639); + static const IconData solidTrafficLightSlow = IconData(0xf639, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Traffic Light Slow icon /// /// https://fontawesome.com/icons/traffic-light-slow?style=regular /// direction, road, signal, travel, yellow - static const IconData trafficLightSlow = IconDataRegular(0xf639); + static const IconData trafficLightSlow = IconData(0xf639, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Traffic Light Slow icon /// /// https://fontawesome.com/icons/traffic-light-slow?style=light /// direction, road, signal, travel, yellow - static const IconData lightTrafficLightSlow = IconDataLight(0xf639); + static const IconData lightTrafficLightSlow = IconData(0xf639, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Traffic Light Slow icon /// /// https://fontawesome.com/icons/traffic-light-slow?style=thin /// direction, road, signal, travel, yellow - static const IconData thinTrafficLightSlow = IconDataThin(0xf639); + static const IconData thinTrafficLightSlow = IconData(0xf639, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Traffic Light Stop icon /// /// https://fontawesome.com/icons/traffic-light-stop?style=solid /// direction, red, road, signal, travel - static const IconData solidTrafficLightStop = IconDataSolid(0xf63a); + static const IconData solidTrafficLightStop = IconData(0xf63a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Traffic Light Stop icon /// /// https://fontawesome.com/icons/traffic-light-stop?style=regular /// direction, red, road, signal, travel - static const IconData trafficLightStop = IconDataRegular(0xf63a); + static const IconData trafficLightStop = IconData(0xf63a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Traffic Light Stop icon /// /// https://fontawesome.com/icons/traffic-light-stop?style=light /// direction, red, road, signal, travel - static const IconData lightTrafficLightStop = IconDataLight(0xf63a); + static const IconData lightTrafficLightStop = IconData(0xf63a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Traffic Light Stop icon /// /// https://fontawesome.com/icons/traffic-light-stop?style=thin /// direction, red, road, signal, travel - static const IconData thinTrafficLightStop = IconDataThin(0xf63a); + static const IconData thinTrafficLightStop = IconData(0xf63a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trailer icon /// /// https://fontawesome.com/icons/trailer?style=solid /// carry, haul, moving, travel - static const IconData solidTrailer = IconDataSolid(0xe041); + static const IconData solidTrailer = IconData(0xe041, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trailer icon /// /// https://fontawesome.com/icons/trailer?style=regular /// carry, haul, moving, travel - static const IconData trailer = IconDataRegular(0xe041); + static const IconData trailer = IconData(0xe041, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trailer icon /// /// https://fontawesome.com/icons/trailer?style=light /// carry, haul, moving, travel - static const IconData lightTrailer = IconDataLight(0xe041); + static const IconData lightTrailer = IconData(0xe041, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trailer icon /// /// https://fontawesome.com/icons/trailer?style=thin /// carry, haul, moving, travel - static const IconData thinTrailer = IconDataThin(0xe041); + static const IconData thinTrailer = IconData(0xe041, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Train icon /// /// https://fontawesome.com/icons/train?style=solid /// bullet, commute, locomotive, railway, subway, train - static const IconData solidTrain = IconDataSolid(0xf238); + static const IconData solidTrain = IconData(0xf238, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Train icon /// /// https://fontawesome.com/icons/train?style=regular /// bullet, commute, locomotive, railway, subway, train - static const IconData train = IconDataRegular(0xf238); + static const IconData train = IconData(0xf238, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Train icon /// /// https://fontawesome.com/icons/train?style=light /// bullet, commute, locomotive, railway, subway, train - static const IconData lightTrain = IconDataLight(0xf238); + static const IconData lightTrain = IconData(0xf238, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Train icon /// /// https://fontawesome.com/icons/train?style=thin /// bullet, commute, locomotive, railway, subway, train - static const IconData thinTrain = IconDataThin(0xf238); + static const IconData thinTrain = IconData(0xf238, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Train Subway icon /// /// https://fontawesome.com/icons/train-subway?style=solid /// machine, railway, train, transportation, vehicle - static const IconData solidTrainSubway = IconDataSolid(0xf239); + static const IconData solidTrainSubway = IconData(0xf239, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias subway for icon [solidTrainSubway] @Deprecated('Use "solidTrainSubway" instead.') @@ -87678,7 +87678,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway?style=regular /// machine, railway, train, transportation, vehicle - static const IconData trainSubway = IconDataRegular(0xf239); + static const IconData trainSubway = IconData(0xf239, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias subway for icon [trainSubway] @Deprecated('Use "trainSubway" instead.') @@ -87688,7 +87688,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway?style=light /// machine, railway, train, transportation, vehicle - static const IconData lightTrainSubway = IconDataLight(0xf239); + static const IconData lightTrainSubway = IconData(0xf239, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias subway for icon [lightTrainSubway] @Deprecated('Use "lightTrainSubway" instead.') @@ -87698,7 +87698,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway?style=thin /// machine, railway, train, transportation, vehicle - static const IconData thinTrainSubway = IconDataThin(0xf239); + static const IconData thinTrainSubway = IconData(0xf239, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias subway for icon [thinTrainSubway] @Deprecated('Use "thinTrainSubway" instead.') @@ -87708,7 +87708,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway-tunnel?style=solid /// metro, rail, railroad, railway, subway, train, tunnel - static const IconData solidTrainSubwayTunnel = IconDataSolid(0xe2a3); + static const IconData solidTrainSubwayTunnel = IconData(0xe2a3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias subway-tunnel for icon [solidTrainSubwayTunnel] @Deprecated('Use "solidTrainSubwayTunnel" instead.') @@ -87718,7 +87718,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway-tunnel?style=regular /// metro, rail, railroad, railway, subway, train, tunnel - static const IconData trainSubwayTunnel = IconDataRegular(0xe2a3); + static const IconData trainSubwayTunnel = IconData(0xe2a3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias subway-tunnel for icon [trainSubwayTunnel] @Deprecated('Use "trainSubwayTunnel" instead.') @@ -87728,7 +87728,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway-tunnel?style=light /// metro, rail, railroad, railway, subway, train, tunnel - static const IconData lightTrainSubwayTunnel = IconDataLight(0xe2a3); + static const IconData lightTrainSubwayTunnel = IconData(0xe2a3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias subway-tunnel for icon [lightTrainSubwayTunnel] @Deprecated('Use "lightTrainSubwayTunnel" instead.') @@ -87738,7 +87738,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-subway-tunnel?style=thin /// metro, rail, railroad, railway, subway, train, tunnel - static const IconData thinTrainSubwayTunnel = IconDataThin(0xe2a3); + static const IconData thinTrainSubwayTunnel = IconData(0xe2a3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias subway-tunnel for icon [thinTrainSubwayTunnel] @Deprecated('Use "thinTrainSubwayTunnel" instead.') @@ -87748,103 +87748,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/train-track?style=solid /// rail, railroad, tracks, train - static const IconData solidTrainTrack = IconDataSolid(0xe453); + static const IconData solidTrainTrack = IconData(0xe453, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Train Track icon /// /// https://fontawesome.com/icons/train-track?style=regular /// rail, railroad, tracks, train - static const IconData trainTrack = IconDataRegular(0xe453); + static const IconData trainTrack = IconData(0xe453, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Train Track icon /// /// https://fontawesome.com/icons/train-track?style=light /// rail, railroad, tracks, train - static const IconData lightTrainTrack = IconDataLight(0xe453); + static const IconData lightTrainTrack = IconData(0xe453, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Train Track icon /// /// https://fontawesome.com/icons/train-track?style=thin /// rail, railroad, tracks, train - static const IconData thinTrainTrack = IconDataThin(0xe453); + static const IconData thinTrainTrack = IconData(0xe453, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Train Tram icon /// /// https://fontawesome.com/icons/train-tram?style=solid /// crossing, machine, mountains, seasonal, tram, transportation, trolleybus - static const IconData solidTrainTram = IconDataSolid(0xe5b4); + static const IconData solidTrainTram = IconData(0xe5b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Train Tram icon /// /// https://fontawesome.com/icons/train-tram?style=regular /// crossing, machine, mountains, seasonal, tram, transportation, trolleybus - static const IconData trainTram = IconDataRegular(0xe5b4); + static const IconData trainTram = IconData(0xe5b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Train Tram icon /// /// https://fontawesome.com/icons/train-tram?style=light /// crossing, machine, mountains, seasonal, tram, transportation, trolleybus - static const IconData lightTrainTram = IconDataLight(0xe5b4); + static const IconData lightTrainTram = IconData(0xe5b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Train Tram icon /// /// https://fontawesome.com/icons/train-tram?style=thin /// crossing, machine, mountains, seasonal, tram, transportation, trolleybus - static const IconData thinTrainTram = IconDataThin(0xe5b4); + static const IconData thinTrainTram = IconData(0xe5b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Train Tunnel icon /// /// https://fontawesome.com/icons/train-tunnel?style=solid /// rail, subway, tracks, train, tunnel - static const IconData solidTrainTunnel = IconDataSolid(0xe454); + static const IconData solidTrainTunnel = IconData(0xe454, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Train Tunnel icon /// /// https://fontawesome.com/icons/train-tunnel?style=regular /// rail, subway, tracks, train, tunnel - static const IconData trainTunnel = IconDataRegular(0xe454); + static const IconData trainTunnel = IconData(0xe454, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Train Tunnel icon /// /// https://fontawesome.com/icons/train-tunnel?style=light /// rail, subway, tracks, train, tunnel - static const IconData lightTrainTunnel = IconDataLight(0xe454); + static const IconData lightTrainTunnel = IconData(0xe454, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Train Tunnel icon /// /// https://fontawesome.com/icons/train-tunnel?style=thin /// rail, subway, tracks, train, tunnel - static const IconData thinTrainTunnel = IconDataThin(0xe454); + static const IconData thinTrainTunnel = IconData(0xe454, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transformer Bolt icon /// /// https://fontawesome.com/icons/transformer-bolt?style=solid /// electricity, energy, substation, thunderbolt - static const IconData solidTransformerBolt = IconDataSolid(0xe2a4); + static const IconData solidTransformerBolt = IconData(0xe2a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transformer Bolt icon /// /// https://fontawesome.com/icons/transformer-bolt?style=regular /// electricity, energy, substation, thunderbolt - static const IconData transformerBolt = IconDataRegular(0xe2a4); + static const IconData transformerBolt = IconData(0xe2a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transformer Bolt icon /// /// https://fontawesome.com/icons/transformer-bolt?style=light /// electricity, energy, substation, thunderbolt - static const IconData lightTransformerBolt = IconDataLight(0xe2a4); + static const IconData lightTransformerBolt = IconData(0xe2a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transformer Bolt icon /// /// https://fontawesome.com/icons/transformer-bolt?style=thin /// electricity, energy, substation, thunderbolt - static const IconData thinTransformerBolt = IconDataThin(0xe2a4); + static const IconData thinTransformerBolt = IconData(0xe2a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transgender icon /// /// https://fontawesome.com/icons/transgender?style=solid /// female, gender, intersex, male, transgender, transgender symbol - static const IconData solidTransgender = IconDataSolid(0xf225); + static const IconData solidTransgender = IconData(0xf225, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias transgender-alt for icon [solidTransgender] @Deprecated('Use "solidTransgender" instead.') @@ -87854,7 +87854,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/transgender?style=regular /// female, gender, intersex, male, transgender, transgender symbol - static const IconData transgender = IconDataRegular(0xf225); + static const IconData transgender = IconData(0xf225, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias transgender-alt for icon [transgender] @Deprecated('Use "transgender" instead.') @@ -87864,7 +87864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/transgender?style=light /// female, gender, intersex, male, transgender, transgender symbol - static const IconData lightTransgender = IconDataLight(0xf225); + static const IconData lightTransgender = IconData(0xf225, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias transgender-alt for icon [lightTransgender] @Deprecated('Use "lightTransgender" instead.') @@ -87874,7 +87874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/transgender?style=thin /// female, gender, intersex, male, transgender, transgender symbol - static const IconData thinTransgender = IconDataThin(0xf225); + static const IconData thinTransgender = IconData(0xf225, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias transgender-alt for icon [thinTransgender] @Deprecated('Use "thinTransgender" instead.') @@ -87884,247 +87884,247 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/transporter?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter = IconDataSolid(0xe042); + static const IconData solidTransporter = IconData(0xe042, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter icon /// /// https://fontawesome.com/icons/transporter?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter = IconDataRegular(0xe042); + static const IconData transporter = IconData(0xe042, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter icon /// /// https://fontawesome.com/icons/transporter?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter = IconDataLight(0xe042); + static const IconData lightTransporter = IconData(0xe042, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter icon /// /// https://fontawesome.com/icons/transporter?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter = IconDataThin(0xe042); + static const IconData thinTransporter = IconData(0xe042, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 1 icon /// /// https://fontawesome.com/icons/transporter-1?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter1 = IconDataSolid(0xe043); + static const IconData solidTransporter1 = IconData(0xe043, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 1 icon /// /// https://fontawesome.com/icons/transporter-1?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter1 = IconDataRegular(0xe043); + static const IconData transporter1 = IconData(0xe043, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 1 icon /// /// https://fontawesome.com/icons/transporter-1?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter1 = IconDataLight(0xe043); + static const IconData lightTransporter1 = IconData(0xe043, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 1 icon /// /// https://fontawesome.com/icons/transporter-1?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter1 = IconDataThin(0xe043); + static const IconData thinTransporter1 = IconData(0xe043, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 2 icon /// /// https://fontawesome.com/icons/transporter-2?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter2 = IconDataSolid(0xe044); + static const IconData solidTransporter2 = IconData(0xe044, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 2 icon /// /// https://fontawesome.com/icons/transporter-2?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter2 = IconDataRegular(0xe044); + static const IconData transporter2 = IconData(0xe044, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 2 icon /// /// https://fontawesome.com/icons/transporter-2?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter2 = IconDataLight(0xe044); + static const IconData lightTransporter2 = IconData(0xe044, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 2 icon /// /// https://fontawesome.com/icons/transporter-2?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter2 = IconDataThin(0xe044); + static const IconData thinTransporter2 = IconData(0xe044, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 3 icon /// /// https://fontawesome.com/icons/transporter-3?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter3 = IconDataSolid(0xe045); + static const IconData solidTransporter3 = IconData(0xe045, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 3 icon /// /// https://fontawesome.com/icons/transporter-3?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter3 = IconDataRegular(0xe045); + static const IconData transporter3 = IconData(0xe045, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 3 icon /// /// https://fontawesome.com/icons/transporter-3?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter3 = IconDataLight(0xe045); + static const IconData lightTransporter3 = IconData(0xe045, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 3 icon /// /// https://fontawesome.com/icons/transporter-3?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter3 = IconDataThin(0xe045); + static const IconData thinTransporter3 = IconData(0xe045, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 4 icon /// /// https://fontawesome.com/icons/transporter-4?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter4 = IconDataSolid(0xe2a5); + static const IconData solidTransporter4 = IconData(0xe2a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 4 icon /// /// https://fontawesome.com/icons/transporter-4?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter4 = IconDataRegular(0xe2a5); + static const IconData transporter4 = IconData(0xe2a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 4 icon /// /// https://fontawesome.com/icons/transporter-4?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter4 = IconDataLight(0xe2a5); + static const IconData lightTransporter4 = IconData(0xe2a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 4 icon /// /// https://fontawesome.com/icons/transporter-4?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter4 = IconDataThin(0xe2a5); + static const IconData thinTransporter4 = IconData(0xe2a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 5 icon /// /// https://fontawesome.com/icons/transporter-5?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter5 = IconDataSolid(0xe2a6); + static const IconData solidTransporter5 = IconData(0xe2a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 5 icon /// /// https://fontawesome.com/icons/transporter-5?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter5 = IconDataRegular(0xe2a6); + static const IconData transporter5 = IconData(0xe2a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 5 icon /// /// https://fontawesome.com/icons/transporter-5?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter5 = IconDataLight(0xe2a6); + static const IconData lightTransporter5 = IconData(0xe2a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 5 icon /// /// https://fontawesome.com/icons/transporter-5?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter5 = IconDataThin(0xe2a6); + static const IconData thinTransporter5 = IconData(0xe2a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 6 icon /// /// https://fontawesome.com/icons/transporter-6?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter6 = IconDataSolid(0xe2a7); + static const IconData solidTransporter6 = IconData(0xe2a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 6 icon /// /// https://fontawesome.com/icons/transporter-6?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter6 = IconDataRegular(0xe2a7); + static const IconData transporter6 = IconData(0xe2a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 6 icon /// /// https://fontawesome.com/icons/transporter-6?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter6 = IconDataLight(0xe2a7); + static const IconData lightTransporter6 = IconData(0xe2a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 6 icon /// /// https://fontawesome.com/icons/transporter-6?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter6 = IconDataThin(0xe2a7); + static const IconData thinTransporter6 = IconData(0xe2a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter 7 icon /// /// https://fontawesome.com/icons/transporter-7?style=solid /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter7 = IconDataSolid(0xe2a8); + static const IconData solidTransporter7 = IconData(0xe2a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter 7 icon /// /// https://fontawesome.com/icons/transporter-7?style=regular /// move, teleport, transfer, translocate, travel - static const IconData transporter7 = IconDataRegular(0xe2a8); + static const IconData transporter7 = IconData(0xe2a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter 7 icon /// /// https://fontawesome.com/icons/transporter-7?style=light /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter7 = IconDataLight(0xe2a8); + static const IconData lightTransporter7 = IconData(0xe2a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter 7 icon /// /// https://fontawesome.com/icons/transporter-7?style=thin /// move, teleport, transfer, translocate, travel - static const IconData thinTransporter7 = IconDataThin(0xe2a8); + static const IconData thinTransporter7 = IconData(0xe2a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Transporter Empty icon /// /// https://fontawesome.com/icons/transporter-empty?style=solid /// complete, move, teleport, transfer, translocate, travel - static const IconData solidTransporterEmpty = IconDataSolid(0xe046); + static const IconData solidTransporterEmpty = IconData(0xe046, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Transporter Empty icon /// /// https://fontawesome.com/icons/transporter-empty?style=regular /// complete, move, teleport, transfer, translocate, travel - static const IconData transporterEmpty = IconDataRegular(0xe046); + static const IconData transporterEmpty = IconData(0xe046, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Transporter Empty icon /// /// https://fontawesome.com/icons/transporter-empty?style=light /// complete, move, teleport, transfer, translocate, travel - static const IconData lightTransporterEmpty = IconDataLight(0xe046); + static const IconData lightTransporterEmpty = IconData(0xe046, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Transporter Empty icon /// /// https://fontawesome.com/icons/transporter-empty?style=thin /// complete, move, teleport, transfer, translocate, travel - static const IconData thinTransporterEmpty = IconDataThin(0xe046); + static const IconData thinTransporterEmpty = IconData(0xe046, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash icon /// /// https://fontawesome.com/icons/trash?style=solid /// delete, garbage, hide, remove - static const IconData solidTrash = IconDataSolid(0xf1f8); + static const IconData solidTrash = IconData(0xf1f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash icon /// /// https://fontawesome.com/icons/trash?style=regular /// delete, garbage, hide, remove - static const IconData trash = IconDataRegular(0xf1f8); + static const IconData trash = IconData(0xf1f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash icon /// /// https://fontawesome.com/icons/trash?style=light /// delete, garbage, hide, remove - static const IconData lightTrash = IconDataLight(0xf1f8); + static const IconData lightTrash = IconData(0xf1f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash icon /// /// https://fontawesome.com/icons/trash?style=thin /// delete, garbage, hide, remove - static const IconData thinTrash = IconDataThin(0xf1f8); + static const IconData thinTrash = IconData(0xf1f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Arrow Up icon /// /// https://fontawesome.com/icons/trash-arrow-up?style=solid /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData solidTrashArrowUp = IconDataSolid(0xf829); + static const IconData solidTrashArrowUp = IconData(0xf829, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore for icon [solidTrashArrowUp] @Deprecated('Use "solidTrashArrowUp" instead.') @@ -88134,7 +88134,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-arrow-up?style=regular /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData trashArrowUp = IconDataRegular(0xf829); + static const IconData trashArrowUp = IconData(0xf829, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore for icon [trashArrowUp] @Deprecated('Use "trashArrowUp" instead.') @@ -88144,7 +88144,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-arrow-up?style=light /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData lightTrashArrowUp = IconDataLight(0xf829); + static const IconData lightTrashArrowUp = IconData(0xf829, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore for icon [lightTrashArrowUp] @Deprecated('Use "lightTrashArrowUp" instead.') @@ -88154,7 +88154,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-arrow-up?style=thin /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData thinTrashArrowUp = IconDataThin(0xf829); + static const IconData thinTrashArrowUp = IconData(0xf829, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore for icon [thinTrashArrowUp] @Deprecated('Use "thinTrashArrowUp" instead.') @@ -88164,7 +88164,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can?style=solid /// delete, garbage, hide, remove, trash-o - static const IconData solidTrashCan = IconDataSolid(0xf2ed); + static const IconData solidTrashCan = IconData(0xf2ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt for icon [solidTrashCan] @Deprecated('Use "solidTrashCan" instead.') @@ -88174,7 +88174,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can?style=regular /// delete, garbage, hide, remove, trash-o - static const IconData trashCan = IconDataRegular(0xf2ed); + static const IconData trashCan = IconData(0xf2ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt for icon [trashCan] @Deprecated('Use "trashCan" instead.') @@ -88184,7 +88184,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can?style=light /// delete, garbage, hide, remove, trash-o - static const IconData lightTrashCan = IconDataLight(0xf2ed); + static const IconData lightTrashCan = IconData(0xf2ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt for icon [lightTrashCan] @Deprecated('Use "lightTrashCan" instead.') @@ -88194,7 +88194,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can?style=thin /// delete, garbage, hide, remove, trash-o - static const IconData thinTrashCan = IconDataThin(0xf2ed); + static const IconData thinTrashCan = IconData(0xf2ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt for icon [thinTrashCan] @Deprecated('Use "thinTrashCan" instead.') @@ -88204,7 +88204,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-arrow-up?style=solid /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData solidTrashCanArrowUp = IconDataSolid(0xf82a); + static const IconData solidTrashCanArrowUp = IconData(0xf82a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore-alt for icon [solidTrashCanArrowUp] @Deprecated('Use "solidTrashCanArrowUp" instead.') @@ -88214,7 +88214,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-arrow-up?style=regular /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData trashCanArrowUp = IconDataRegular(0xf82a); + static const IconData trashCanArrowUp = IconData(0xf82a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore-alt for icon [trashCanArrowUp] @Deprecated('Use "trashCanArrowUp" instead.') @@ -88224,7 +88224,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-arrow-up?style=light /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData lightTrashCanArrowUp = IconDataLight(0xf82a); + static const IconData lightTrashCanArrowUp = IconData(0xf82a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore-alt for icon [lightTrashCanArrowUp] @Deprecated('Use "lightTrashCanArrowUp" instead.') @@ -88234,7 +88234,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-arrow-up?style=thin /// back, control z, delete, garbage, hide, oops, remove, undo, upgrade - static const IconData thinTrashCanArrowUp = IconDataThin(0xf82a); + static const IconData thinTrashCanArrowUp = IconData(0xf82a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-restore-alt for icon [thinTrashCanArrowUp] @Deprecated('Use "thinTrashCanArrowUp" instead.') @@ -88244,103 +88244,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-check?style=solid /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData solidTrashCanCheck = IconDataSolid(0xe2a9); + static const IconData solidTrashCanCheck = IconData(0xe2a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Can Check icon /// /// https://fontawesome.com/icons/trash-can-check?style=regular /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData trashCanCheck = IconDataRegular(0xe2a9); + static const IconData trashCanCheck = IconData(0xe2a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Can Check icon /// /// https://fontawesome.com/icons/trash-can-check?style=light /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData lightTrashCanCheck = IconDataLight(0xe2a9); + static const IconData lightTrashCanCheck = IconData(0xe2a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Can Check icon /// /// https://fontawesome.com/icons/trash-can-check?style=thin /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData thinTrashCanCheck = IconDataThin(0xe2a9); + static const IconData thinTrashCanCheck = IconData(0xe2a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Can Clock icon /// /// https://fontawesome.com/icons/trash-can-clock?style=solid /// delay, delete, garbage, hide, remove - static const IconData solidTrashCanClock = IconDataSolid(0xe2aa); + static const IconData solidTrashCanClock = IconData(0xe2aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Can Clock icon /// /// https://fontawesome.com/icons/trash-can-clock?style=regular /// delay, delete, garbage, hide, remove - static const IconData trashCanClock = IconDataRegular(0xe2aa); + static const IconData trashCanClock = IconData(0xe2aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Can Clock icon /// /// https://fontawesome.com/icons/trash-can-clock?style=light /// delay, delete, garbage, hide, remove - static const IconData lightTrashCanClock = IconDataLight(0xe2aa); + static const IconData lightTrashCanClock = IconData(0xe2aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Can Clock icon /// /// https://fontawesome.com/icons/trash-can-clock?style=thin /// delay, delete, garbage, hide, remove - static const IconData thinTrashCanClock = IconDataThin(0xe2aa); + static const IconData thinTrashCanClock = IconData(0xe2aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Can List icon /// /// https://fontawesome.com/icons/trash-can-list?style=solid /// cheatsheet, delete, garbage, hide, remove - static const IconData solidTrashCanList = IconDataSolid(0xe2ab); + static const IconData solidTrashCanList = IconData(0xe2ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Can List icon /// /// https://fontawesome.com/icons/trash-can-list?style=regular /// cheatsheet, delete, garbage, hide, remove - static const IconData trashCanList = IconDataRegular(0xe2ab); + static const IconData trashCanList = IconData(0xe2ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Can List icon /// /// https://fontawesome.com/icons/trash-can-list?style=light /// cheatsheet, delete, garbage, hide, remove - static const IconData lightTrashCanList = IconDataLight(0xe2ab); + static const IconData lightTrashCanList = IconData(0xe2ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Can List icon /// /// https://fontawesome.com/icons/trash-can-list?style=thin /// cheatsheet, delete, garbage, hide, remove - static const IconData thinTrashCanList = IconDataThin(0xe2ab); + static const IconData thinTrashCanList = IconData(0xe2ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Can Plus icon /// /// https://fontawesome.com/icons/trash-can-plus?style=solid /// delete, garbage, hide, remove - static const IconData solidTrashCanPlus = IconDataSolid(0xe2ac); + static const IconData solidTrashCanPlus = IconData(0xe2ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Can Plus icon /// /// https://fontawesome.com/icons/trash-can-plus?style=regular /// delete, garbage, hide, remove - static const IconData trashCanPlus = IconDataRegular(0xe2ac); + static const IconData trashCanPlus = IconData(0xe2ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Can Plus icon /// /// https://fontawesome.com/icons/trash-can-plus?style=light /// delete, garbage, hide, remove - static const IconData lightTrashCanPlus = IconDataLight(0xe2ac); + static const IconData lightTrashCanPlus = IconData(0xe2ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Can Plus icon /// /// https://fontawesome.com/icons/trash-can-plus?style=thin /// delete, garbage, hide, remove - static const IconData thinTrashCanPlus = IconDataThin(0xe2ac); + static const IconData thinTrashCanPlus = IconData(0xe2ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Can Slash icon /// /// https://fontawesome.com/icons/trash-can-slash?style=solid /// delete, disabled, garbage, hide, remove - static const IconData solidTrashCanSlash = IconDataSolid(0xe2ad); + static const IconData solidTrashCanSlash = IconData(0xe2ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt-slash for icon [solidTrashCanSlash] @Deprecated('Use "solidTrashCanSlash" instead.') @@ -88350,7 +88350,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-slash?style=regular /// delete, disabled, garbage, hide, remove - static const IconData trashCanSlash = IconDataRegular(0xe2ad); + static const IconData trashCanSlash = IconData(0xe2ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt-slash for icon [trashCanSlash] @Deprecated('Use "trashCanSlash" instead.') @@ -88360,7 +88360,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-slash?style=light /// delete, disabled, garbage, hide, remove - static const IconData lightTrashCanSlash = IconDataLight(0xe2ad); + static const IconData lightTrashCanSlash = IconData(0xe2ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt-slash for icon [lightTrashCanSlash] @Deprecated('Use "lightTrashCanSlash" instead.') @@ -88370,7 +88370,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-slash?style=thin /// delete, disabled, garbage, hide, remove - static const IconData thinTrashCanSlash = IconDataThin(0xe2ad); + static const IconData thinTrashCanSlash = IconData(0xe2ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-alt-slash for icon [thinTrashCanSlash] @Deprecated('Use "thinTrashCanSlash" instead.') @@ -88380,7 +88380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-undo?style=solid /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData solidTrashCanUndo = IconDataSolid(0xf896); + static const IconData solidTrashCanUndo = IconData(0xf896, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-can-arrow-turn-left for icon [solidTrashCanUndo] @Deprecated('Use "solidTrashCanUndo" instead.') @@ -88394,7 +88394,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-undo?style=regular /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData trashCanUndo = IconDataRegular(0xf896); + static const IconData trashCanUndo = IconData(0xf896, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-can-arrow-turn-left for icon [trashCanUndo] @Deprecated('Use "trashCanUndo" instead.') @@ -88408,7 +88408,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-undo?style=light /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData lightTrashCanUndo = IconDataLight(0xf896); + static const IconData lightTrashCanUndo = IconData(0xf896, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-can-arrow-turn-left for icon [lightTrashCanUndo] @Deprecated('Use "lightTrashCanUndo" instead.') @@ -88422,7 +88422,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-undo?style=thin /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData thinTrashCanUndo = IconDataThin(0xf896); + static const IconData thinTrashCanUndo = IconData(0xf896, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-can-arrow-turn-left for icon [thinTrashCanUndo] @Deprecated('Use "thinTrashCanUndo" instead.') @@ -88436,151 +88436,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-can-xmark?style=solid /// cancel, delete, garbage, hide, remove, uncheck - static const IconData solidTrashCanXmark = IconDataSolid(0xe2ae); + static const IconData solidTrashCanXmark = IconData(0xe2ae, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Can Xmark icon /// /// https://fontawesome.com/icons/trash-can-xmark?style=regular /// cancel, delete, garbage, hide, remove, uncheck - static const IconData trashCanXmark = IconDataRegular(0xe2ae); + static const IconData trashCanXmark = IconData(0xe2ae, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Can Xmark icon /// /// https://fontawesome.com/icons/trash-can-xmark?style=light /// cancel, delete, garbage, hide, remove, uncheck - static const IconData lightTrashCanXmark = IconDataLight(0xe2ae); + static const IconData lightTrashCanXmark = IconData(0xe2ae, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Can Xmark icon /// /// https://fontawesome.com/icons/trash-can-xmark?style=thin /// cancel, delete, garbage, hide, remove, uncheck - static const IconData thinTrashCanXmark = IconDataThin(0xe2ae); + static const IconData thinTrashCanXmark = IconData(0xe2ae, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Check icon /// /// https://fontawesome.com/icons/trash-check?style=solid /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData solidTrashCheck = IconDataSolid(0xe2af); + static const IconData solidTrashCheck = IconData(0xe2af, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Check icon /// /// https://fontawesome.com/icons/trash-check?style=regular /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData trashCheck = IconDataRegular(0xe2af); + static const IconData trashCheck = IconData(0xe2af, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Check icon /// /// https://fontawesome.com/icons/trash-check?style=light /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData lightTrashCheck = IconDataLight(0xe2af); + static const IconData lightTrashCheck = IconData(0xe2af, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Check icon /// /// https://fontawesome.com/icons/trash-check?style=thin /// confirm, delete, enable, garbage, hide, remove, validate, working - static const IconData thinTrashCheck = IconDataThin(0xe2af); + static const IconData thinTrashCheck = IconData(0xe2af, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Clock icon /// /// https://fontawesome.com/icons/trash-clock?style=solid /// delay, delete, garbage, hide, remove - static const IconData solidTrashClock = IconDataSolid(0xe2b0); + static const IconData solidTrashClock = IconData(0xe2b0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Clock icon /// /// https://fontawesome.com/icons/trash-clock?style=regular /// delay, delete, garbage, hide, remove - static const IconData trashClock = IconDataRegular(0xe2b0); + static const IconData trashClock = IconData(0xe2b0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Clock icon /// /// https://fontawesome.com/icons/trash-clock?style=light /// delay, delete, garbage, hide, remove - static const IconData lightTrashClock = IconDataLight(0xe2b0); + static const IconData lightTrashClock = IconData(0xe2b0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Clock icon /// /// https://fontawesome.com/icons/trash-clock?style=thin /// delay, delete, garbage, hide, remove - static const IconData thinTrashClock = IconDataThin(0xe2b0); + static const IconData thinTrashClock = IconData(0xe2b0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash List icon /// /// https://fontawesome.com/icons/trash-list?style=solid /// cheatsheet, delete, garbage, hide, remove - static const IconData solidTrashList = IconDataSolid(0xe2b1); + static const IconData solidTrashList = IconData(0xe2b1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash List icon /// /// https://fontawesome.com/icons/trash-list?style=regular /// cheatsheet, delete, garbage, hide, remove - static const IconData trashList = IconDataRegular(0xe2b1); + static const IconData trashList = IconData(0xe2b1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash List icon /// /// https://fontawesome.com/icons/trash-list?style=light /// cheatsheet, delete, garbage, hide, remove - static const IconData lightTrashList = IconDataLight(0xe2b1); + static const IconData lightTrashList = IconData(0xe2b1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash List icon /// /// https://fontawesome.com/icons/trash-list?style=thin /// cheatsheet, delete, garbage, hide, remove - static const IconData thinTrashList = IconDataThin(0xe2b1); + static const IconData thinTrashList = IconData(0xe2b1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Plus icon /// /// https://fontawesome.com/icons/trash-plus?style=solid /// delete, garbage, hide, remove - static const IconData solidTrashPlus = IconDataSolid(0xe2b2); + static const IconData solidTrashPlus = IconData(0xe2b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Plus icon /// /// https://fontawesome.com/icons/trash-plus?style=regular /// delete, garbage, hide, remove - static const IconData trashPlus = IconDataRegular(0xe2b2); + static const IconData trashPlus = IconData(0xe2b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Plus icon /// /// https://fontawesome.com/icons/trash-plus?style=light /// delete, garbage, hide, remove - static const IconData lightTrashPlus = IconDataLight(0xe2b2); + static const IconData lightTrashPlus = IconData(0xe2b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Plus icon /// /// https://fontawesome.com/icons/trash-plus?style=thin /// delete, garbage, hide, remove - static const IconData thinTrashPlus = IconDataThin(0xe2b2); + static const IconData thinTrashPlus = IconData(0xe2b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Slash icon /// /// https://fontawesome.com/icons/trash-slash?style=solid /// delete, disabled, garbage, hide, remove - static const IconData solidTrashSlash = IconDataSolid(0xe2b3); + static const IconData solidTrashSlash = IconData(0xe2b3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Slash icon /// /// https://fontawesome.com/icons/trash-slash?style=regular /// delete, disabled, garbage, hide, remove - static const IconData trashSlash = IconDataRegular(0xe2b3); + static const IconData trashSlash = IconData(0xe2b3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Slash icon /// /// https://fontawesome.com/icons/trash-slash?style=light /// delete, disabled, garbage, hide, remove - static const IconData lightTrashSlash = IconDataLight(0xe2b3); + static const IconData lightTrashSlash = IconData(0xe2b3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Slash icon /// /// https://fontawesome.com/icons/trash-slash?style=thin /// delete, disabled, garbage, hide, remove - static const IconData thinTrashSlash = IconDataThin(0xe2b3); + static const IconData thinTrashSlash = IconData(0xe2b3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trash Undo icon /// /// https://fontawesome.com/icons/trash-undo?style=solid /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData solidTrashUndo = IconDataSolid(0xf895); + static const IconData solidTrashUndo = IconData(0xf895, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trash-arrow-turn-left for icon [solidTrashUndo] @Deprecated('Use "solidTrashUndo" instead.') @@ -88590,7 +88590,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-undo?style=regular /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData trashUndo = IconDataRegular(0xf895); + static const IconData trashUndo = IconData(0xf895, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trash-arrow-turn-left for icon [trashUndo] @Deprecated('Use "trashUndo" instead.') @@ -88600,7 +88600,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-undo?style=light /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData lightTrashUndo = IconDataLight(0xf895); + static const IconData lightTrashUndo = IconData(0xf895, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trash-arrow-turn-left for icon [lightTrashUndo] @Deprecated('Use "lightTrashUndo" instead.') @@ -88610,7 +88610,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-undo?style=thin /// back, control z, delete, garbage, hide, oops, remove, restore, undo - static const IconData thinTrashUndo = IconDataThin(0xf895); + static const IconData thinTrashUndo = IconData(0xf895, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trash-arrow-turn-left for icon [thinTrashUndo] @Deprecated('Use "thinTrashUndo" instead.') @@ -88620,127 +88620,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trash-xmark?style=solid /// delete, garbage, hide, remove, uncheck - static const IconData solidTrashXmark = IconDataSolid(0xe2b4); + static const IconData solidTrashXmark = IconData(0xe2b4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trash Xmark icon /// /// https://fontawesome.com/icons/trash-xmark?style=regular /// delete, garbage, hide, remove, uncheck - static const IconData trashXmark = IconDataRegular(0xe2b4); + static const IconData trashXmark = IconData(0xe2b4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trash Xmark icon /// /// https://fontawesome.com/icons/trash-xmark?style=light /// delete, garbage, hide, remove, uncheck - static const IconData lightTrashXmark = IconDataLight(0xe2b4); + static const IconData lightTrashXmark = IconData(0xe2b4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trash Xmark icon /// /// https://fontawesome.com/icons/trash-xmark?style=thin /// delete, garbage, hide, remove, uncheck - static const IconData thinTrashXmark = IconDataThin(0xe2b4); + static const IconData thinTrashXmark = IconData(0xe2b4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Treasure Chest icon /// /// https://fontawesome.com/icons/treasure-chest?style=solid /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, premium, reward, trap - static const IconData solidTreasureChest = IconDataSolid(0xf723); + static const IconData solidTreasureChest = IconData(0xf723, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Treasure Chest icon /// /// https://fontawesome.com/icons/treasure-chest?style=regular /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, premium, reward, trap - static const IconData treasureChest = IconDataRegular(0xf723); + static const IconData treasureChest = IconData(0xf723, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Treasure Chest icon /// /// https://fontawesome.com/icons/treasure-chest?style=light /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, premium, reward, trap - static const IconData lightTreasureChest = IconDataLight(0xf723); + static const IconData lightTreasureChest = IconData(0xf723, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Treasure Chest icon /// /// https://fontawesome.com/icons/treasure-chest?style=thin /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, premium, reward, trap - static const IconData thinTreasureChest = IconDataThin(0xf723); + static const IconData thinTreasureChest = IconData(0xf723, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree icon /// /// https://fontawesome.com/icons/tree?style=solid /// bark, evergreen tree, fall, flora, forest, investment, nature, plant, seasonal, tree - static const IconData solidTree = IconDataSolid(0xf1bb); + static const IconData solidTree = IconData(0xf1bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree icon /// /// https://fontawesome.com/icons/tree?style=regular /// bark, evergreen tree, fall, flora, forest, investment, nature, plant, seasonal, tree - static const IconData tree = IconDataRegular(0xf1bb); + static const IconData tree = IconData(0xf1bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree icon /// /// https://fontawesome.com/icons/tree?style=light /// bark, evergreen tree, fall, flora, forest, investment, nature, plant, seasonal, tree - static const IconData lightTree = IconDataLight(0xf1bb); + static const IconData lightTree = IconData(0xf1bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree icon /// /// https://fontawesome.com/icons/tree?style=thin /// bark, evergreen tree, fall, flora, forest, investment, nature, plant, seasonal, tree - static const IconData thinTree = IconDataThin(0xf1bb); + static const IconData thinTree = IconData(0xf1bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree Christmas icon /// /// https://fontawesome.com/icons/tree-christmas?style=solid /// Christmas, Christmas tree, celebration, christmas, decorated, decorations, flora, holiday, lights, plant, star, tree, xmas - static const IconData solidTreeChristmas = IconDataSolid(0xf7db); + static const IconData solidTreeChristmas = IconData(0xf7db, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree Christmas icon /// /// https://fontawesome.com/icons/tree-christmas?style=regular /// Christmas, Christmas tree, celebration, christmas, decorated, decorations, flora, holiday, lights, plant, star, tree, xmas - static const IconData treeChristmas = IconDataRegular(0xf7db); + static const IconData treeChristmas = IconData(0xf7db, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree Christmas icon /// /// https://fontawesome.com/icons/tree-christmas?style=light /// Christmas, Christmas tree, celebration, christmas, decorated, decorations, flora, holiday, lights, plant, star, tree, xmas - static const IconData lightTreeChristmas = IconDataLight(0xf7db); + static const IconData lightTreeChristmas = IconData(0xf7db, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree Christmas icon /// /// https://fontawesome.com/icons/tree-christmas?style=thin /// Christmas, Christmas tree, celebration, christmas, decorated, decorations, flora, holiday, lights, plant, star, tree, xmas - static const IconData thinTreeChristmas = IconDataThin(0xf7db); + static const IconData thinTreeChristmas = IconData(0xf7db, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree City icon /// /// https://fontawesome.com/icons/tree-city?style=solid /// building, city, urban - static const IconData solidTreeCity = IconDataSolid(0xe587); + static const IconData solidTreeCity = IconData(0xe587, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree City icon /// /// https://fontawesome.com/icons/tree-city?style=regular /// building, city, urban - static const IconData treeCity = IconDataRegular(0xe587); + static const IconData treeCity = IconData(0xe587, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree City icon /// /// https://fontawesome.com/icons/tree-city?style=light /// building, city, urban - static const IconData lightTreeCity = IconDataLight(0xe587); + static const IconData lightTreeCity = IconData(0xe587, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree City icon /// /// https://fontawesome.com/icons/tree-city?style=thin /// building, city, urban - static const IconData thinTreeCity = IconDataThin(0xe587); + static const IconData thinTreeCity = IconData(0xe587, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree Deciduous icon /// /// https://fontawesome.com/icons/tree-deciduous?style=solid /// bark, deciduous, deciduous tree, fall, flora, forest, nature, plant, seasonal, shedding, tree - static const IconData solidTreeDeciduous = IconDataSolid(0xf400); + static const IconData solidTreeDeciduous = IconData(0xf400, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias tree-alt for icon [solidTreeDeciduous] @Deprecated('Use "solidTreeDeciduous" instead.') @@ -88750,7 +88750,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tree-deciduous?style=regular /// bark, deciduous, deciduous tree, fall, flora, forest, nature, plant, seasonal, shedding, tree - static const IconData treeDeciduous = IconDataRegular(0xf400); + static const IconData treeDeciduous = IconData(0xf400, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias tree-alt for icon [treeDeciduous] @Deprecated('Use "treeDeciduous" instead.') @@ -88760,7 +88760,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tree-deciduous?style=light /// bark, deciduous, deciduous tree, fall, flora, forest, nature, plant, seasonal, shedding, tree - static const IconData lightTreeDeciduous = IconDataLight(0xf400); + static const IconData lightTreeDeciduous = IconData(0xf400, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias tree-alt for icon [lightTreeDeciduous] @Deprecated('Use "lightTreeDeciduous" instead.') @@ -88770,7 +88770,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tree-deciduous?style=thin /// bark, deciduous, deciduous tree, fall, flora, forest, nature, plant, seasonal, shedding, tree - static const IconData thinTreeDeciduous = IconDataThin(0xf400); + static const IconData thinTreeDeciduous = IconData(0xf400, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias tree-alt for icon [thinTreeDeciduous] @Deprecated('Use "thinTreeDeciduous" instead.') @@ -88780,133 +88780,133 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tree-decorated?style=solid /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData solidTreeDecorated = IconDataSolid(0xf7dc); + static const IconData solidTreeDecorated = IconData(0xf7dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree Decorated icon /// /// https://fontawesome.com/icons/tree-decorated?style=regular /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData treeDecorated = IconDataRegular(0xf7dc); + static const IconData treeDecorated = IconData(0xf7dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree Decorated icon /// /// https://fontawesome.com/icons/tree-decorated?style=light /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData lightTreeDecorated = IconDataLight(0xf7dc); + static const IconData lightTreeDecorated = IconData(0xf7dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree Decorated icon /// /// https://fontawesome.com/icons/tree-decorated?style=thin /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData thinTreeDecorated = IconDataThin(0xf7dc); + static const IconData thinTreeDecorated = IconData(0xf7dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree Large icon /// /// https://fontawesome.com/icons/tree-large?style=solid /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTreeLarge = IconDataSolid(0xf7dd); + static const IconData solidTreeLarge = IconData(0xf7dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree Large icon /// /// https://fontawesome.com/icons/tree-large?style=regular /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData treeLarge = IconDataRegular(0xf7dd); + static const IconData treeLarge = IconData(0xf7dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree Large icon /// /// https://fontawesome.com/icons/tree-large?style=light /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTreeLarge = IconDataLight(0xf7dd); + static const IconData lightTreeLarge = IconData(0xf7dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree Large icon /// /// https://fontawesome.com/icons/tree-large?style=thin /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData thinTreeLarge = IconDataThin(0xf7dd); + static const IconData thinTreeLarge = IconData(0xf7dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tree Palm icon /// /// https://fontawesome.com/icons/tree-palm?style=solid /// coconut, frond, palm, palm tree, tree, tropical - static const IconData solidTreePalm = IconDataSolid(0xf82b); + static const IconData solidTreePalm = IconData(0xf82b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tree Palm icon /// /// https://fontawesome.com/icons/tree-palm?style=regular /// coconut, frond, palm, palm tree, tree, tropical - static const IconData treePalm = IconDataRegular(0xf82b); + static const IconData treePalm = IconData(0xf82b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tree Palm icon /// /// https://fontawesome.com/icons/tree-palm?style=light /// coconut, frond, palm, palm tree, tree, tropical - static const IconData lightTreePalm = IconDataLight(0xf82b); + static const IconData lightTreePalm = IconData(0xf82b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tree Palm icon /// /// https://fontawesome.com/icons/tree-palm?style=thin /// coconut, frond, palm, palm tree, tree, tropical - static const IconData thinTreePalm = IconDataThin(0xf82b); + static const IconData thinTreePalm = IconData(0xf82b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trees icon /// /// https://fontawesome.com/icons/trees?style=solid /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTrees = IconDataSolid(0xf724); + static const IconData solidTrees = IconData(0xf724, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trees icon /// /// https://fontawesome.com/icons/trees?style=regular /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData trees = IconDataRegular(0xf724); + static const IconData trees = IconData(0xf724, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trees icon /// /// https://fontawesome.com/icons/trees?style=light /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTrees = IconDataLight(0xf724); + static const IconData lightTrees = IconData(0xf724, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trees icon /// /// https://fontawesome.com/icons/trees?style=thin /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData thinTrees = IconDataThin(0xf724); + static const IconData thinTrees = IconData(0xf724, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Trello icon /// /// https://fontawesome.com/icons/trello?style=brands /// atlassian - static const IconData trello = IconDataBrands(0xf181); + static const IconData trello = IconData(0xf181, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Triangle icon /// /// https://fontawesome.com/icons/triangle?style=solid /// Black Up-Pointing Triangle, pyramid, shape - static const IconData solidTriangle = IconDataSolid(0xf2ec); + static const IconData solidTriangle = IconData(0xf2ec, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Triangle icon /// /// https://fontawesome.com/icons/triangle?style=regular /// Black Up-Pointing Triangle, pyramid, shape - static const IconData triangle = IconDataRegular(0xf2ec); + static const IconData triangle = IconData(0xf2ec, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Triangle icon /// /// https://fontawesome.com/icons/triangle?style=light /// Black Up-Pointing Triangle, pyramid, shape - static const IconData lightTriangle = IconDataLight(0xf2ec); + static const IconData lightTriangle = IconData(0xf2ec, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Triangle icon /// /// https://fontawesome.com/icons/triangle?style=thin /// Black Up-Pointing Triangle, pyramid, shape - static const IconData thinTriangle = IconDataThin(0xf2ec); + static const IconData thinTriangle = IconData(0xf2ec, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Triangle Exclamation icon /// /// https://fontawesome.com/icons/triangle-exclamation?style=solid /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warnin, warning - static const IconData solidTriangleExclamation = IconDataSolid(0xf071); + static const IconData solidTriangleExclamation = IconData(0xf071, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-triangle for icon [solidTriangleExclamation] @Deprecated('Use "solidTriangleExclamation" instead.') @@ -88920,7 +88920,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-exclamation?style=regular /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warnin, warning - static const IconData triangleExclamation = IconDataRegular(0xf071); + static const IconData triangleExclamation = IconData(0xf071, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-triangle for icon [triangleExclamation] @Deprecated('Use "triangleExclamation" instead.') @@ -88934,7 +88934,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-exclamation?style=light /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warnin, warning - static const IconData lightTriangleExclamation = IconDataLight(0xf071); + static const IconData lightTriangleExclamation = IconData(0xf071, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-triangle for icon [lightTriangleExclamation] @Deprecated('Use "lightTriangleExclamation" instead.') @@ -88948,7 +88948,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-exclamation?style=thin /// alert, attention, danger, error, failed, important, notice, notification, notify, problem, required, warnin, warning - static const IconData thinTriangleExclamation = IconDataThin(0xf071); + static const IconData thinTriangleExclamation = IconData(0xf071, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias exclamation-triangle for icon [thinTriangleExclamation] @Deprecated('Use "thinTriangleExclamation" instead.') @@ -88962,7 +88962,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-instrument?style=solid /// ding, idiophone, instrument, music, percussion - static const IconData solidTriangleInstrument = IconDataSolid(0xf8e2); + static const IconData solidTriangleInstrument = IconData(0xf8e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias triangle-music for icon [solidTriangleInstrument] @Deprecated('Use "solidTriangleInstrument" instead.') @@ -88972,7 +88972,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-instrument?style=regular /// ding, idiophone, instrument, music, percussion - static const IconData triangleInstrument = IconDataRegular(0xf8e2); + static const IconData triangleInstrument = IconData(0xf8e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias triangle-music for icon [triangleInstrument] @Deprecated('Use "triangleInstrument" instead.') @@ -88982,7 +88982,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-instrument?style=light /// ding, idiophone, instrument, music, percussion - static const IconData lightTriangleInstrument = IconDataLight(0xf8e2); + static const IconData lightTriangleInstrument = IconData(0xf8e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias triangle-music for icon [lightTriangleInstrument] @Deprecated('Use "lightTriangleInstrument" instead.') @@ -88992,7 +88992,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-instrument?style=thin /// ding, idiophone, instrument, music, percussion - static const IconData thinTriangleInstrument = IconDataThin(0xf8e2); + static const IconData thinTriangleInstrument = IconData(0xf8e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias triangle-music for icon [thinTriangleInstrument] @Deprecated('Use "thinTriangleInstrument" instead.') @@ -89002,7 +89002,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-person-digging?style=solid /// bury, construction, debris, dig, maintenance, men at work, warning - static const IconData solidTrianglePersonDigging = IconDataSolid(0xf85d); + static const IconData solidTrianglePersonDigging = IconData(0xf85d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias construction for icon [solidTrianglePersonDigging] @Deprecated('Use "solidTrianglePersonDigging" instead.') @@ -89012,7 +89012,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-person-digging?style=regular /// bury, construction, debris, dig, maintenance, men at work, warning - static const IconData trianglePersonDigging = IconDataRegular(0xf85d); + static const IconData trianglePersonDigging = IconData(0xf85d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias construction for icon [trianglePersonDigging] @Deprecated('Use "trianglePersonDigging" instead.') @@ -89022,7 +89022,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-person-digging?style=light /// bury, construction, debris, dig, maintenance, men at work, warning - static const IconData lightTrianglePersonDigging = IconDataLight(0xf85d); + static const IconData lightTrianglePersonDigging = IconData(0xf85d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias construction for icon [lightTrianglePersonDigging] @Deprecated('Use "lightTrianglePersonDigging" instead.') @@ -89032,7 +89032,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/triangle-person-digging?style=thin /// bury, construction, debris, dig, maintenance, men at work, warning - static const IconData thinTrianglePersonDigging = IconDataThin(0xf85d); + static const IconData thinTrianglePersonDigging = IconData(0xf85d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias construction for icon [thinTrianglePersonDigging] @Deprecated('Use "thinTrianglePersonDigging" instead.') @@ -89042,103 +89042,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tricycle?style=solid /// bicycle, bike, peddle, ride, trike - static const IconData solidTricycle = IconDataSolid(0xe5c3); + static const IconData solidTricycle = IconData(0xe5c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tricycle icon /// /// https://fontawesome.com/icons/tricycle?style=regular /// bicycle, bike, peddle, ride, trike - static const IconData tricycle = IconDataRegular(0xe5c3); + static const IconData tricycle = IconData(0xe5c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tricycle icon /// /// https://fontawesome.com/icons/tricycle?style=light /// bicycle, bike, peddle, ride, trike - static const IconData lightTricycle = IconDataLight(0xe5c3); + static const IconData lightTricycle = IconData(0xe5c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tricycle icon /// /// https://fontawesome.com/icons/tricycle?style=thin /// bicycle, bike, peddle, ride, trike - static const IconData thinTricycle = IconDataThin(0xe5c3); + static const IconData thinTricycle = IconData(0xe5c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tricycle Adult icon /// /// https://fontawesome.com/icons/tricycle-adult?style=solid /// adaptive, bicycle, bike, peddle, seat, trike - static const IconData solidTricycleAdult = IconDataSolid(0xe5c4); + static const IconData solidTricycleAdult = IconData(0xe5c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tricycle Adult icon /// /// https://fontawesome.com/icons/tricycle-adult?style=regular /// adaptive, bicycle, bike, peddle, seat, trike - static const IconData tricycleAdult = IconDataRegular(0xe5c4); + static const IconData tricycleAdult = IconData(0xe5c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tricycle Adult icon /// /// https://fontawesome.com/icons/tricycle-adult?style=light /// adaptive, bicycle, bike, peddle, seat, trike - static const IconData lightTricycleAdult = IconDataLight(0xe5c4); + static const IconData lightTricycleAdult = IconData(0xe5c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tricycle Adult icon /// /// https://fontawesome.com/icons/tricycle-adult?style=thin /// adaptive, bicycle, bike, peddle, seat, trike - static const IconData thinTricycleAdult = IconDataThin(0xe5c4); + static const IconData thinTricycleAdult = IconData(0xe5c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trillium icon /// /// https://fontawesome.com/icons/trillium?style=solid /// blossom, flower, leaves, nature, spring, summer - static const IconData solidTrillium = IconDataSolid(0xe588); + static const IconData solidTrillium = IconData(0xe588, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trillium icon /// /// https://fontawesome.com/icons/trillium?style=regular /// blossom, flower, leaves, nature, spring, summer - static const IconData trillium = IconDataRegular(0xe588); + static const IconData trillium = IconData(0xe588, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trillium icon /// /// https://fontawesome.com/icons/trillium?style=light /// blossom, flower, leaves, nature, spring, summer - static const IconData lightTrillium = IconDataLight(0xe588); + static const IconData lightTrillium = IconData(0xe588, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trillium icon /// /// https://fontawesome.com/icons/trillium?style=thin /// blossom, flower, leaves, nature, spring, summer - static const IconData thinTrillium = IconDataThin(0xe588); + static const IconData thinTrillium = IconData(0xe588, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trophy icon /// /// https://fontawesome.com/icons/trophy?style=solid /// achievement, award, cup, game, prize, trophy, winner - static const IconData solidTrophy = IconDataSolid(0xf091); + static const IconData solidTrophy = IconData(0xf091, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trophy icon /// /// https://fontawesome.com/icons/trophy?style=regular /// achievement, award, cup, game, prize, trophy, winner - static const IconData trophy = IconDataRegular(0xf091); + static const IconData trophy = IconData(0xf091, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trophy icon /// /// https://fontawesome.com/icons/trophy?style=light /// achievement, award, cup, game, prize, trophy, winner - static const IconData lightTrophy = IconDataLight(0xf091); + static const IconData lightTrophy = IconData(0xf091, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trophy icon /// /// https://fontawesome.com/icons/trophy?style=thin /// achievement, award, cup, game, prize, trophy, winner - static const IconData thinTrophy = IconDataThin(0xf091); + static const IconData thinTrophy = IconData(0xf091, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trophy Star icon /// /// https://fontawesome.com/icons/trophy-star?style=solid /// achievement, award, cup, game, quality, star, winner - static const IconData solidTrophyStar = IconDataSolid(0xf2eb); + static const IconData solidTrophyStar = IconData(0xf2eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias trophy-alt for icon [solidTrophyStar] @Deprecated('Use "solidTrophyStar" instead.') @@ -89148,7 +89148,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trophy-star?style=regular /// achievement, award, cup, game, quality, star, winner - static const IconData trophyStar = IconDataRegular(0xf2eb); + static const IconData trophyStar = IconData(0xf2eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias trophy-alt for icon [trophyStar] @Deprecated('Use "trophyStar" instead.') @@ -89158,7 +89158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trophy-star?style=light /// achievement, award, cup, game, quality, star, winner - static const IconData lightTrophyStar = IconDataLight(0xf2eb); + static const IconData lightTrophyStar = IconData(0xf2eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias trophy-alt for icon [lightTrophyStar] @Deprecated('Use "lightTrophyStar" instead.') @@ -89168,7 +89168,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trophy-star?style=thin /// achievement, award, cup, game, quality, star, winner - static const IconData thinTrophyStar = IconDataThin(0xf2eb); + static const IconData thinTrophyStar = IconData(0xf2eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias trophy-alt for icon [thinTrophyStar] @Deprecated('Use "thinTrophyStar" instead.') @@ -89178,127 +89178,127 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/trowel?style=solid /// build, construction, equipment, maintenance, tool - static const IconData solidTrowel = IconDataSolid(0xe589); + static const IconData solidTrowel = IconData(0xe589, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trowel icon /// /// https://fontawesome.com/icons/trowel?style=regular /// build, construction, equipment, maintenance, tool - static const IconData trowel = IconDataRegular(0xe589); + static const IconData trowel = IconData(0xe589, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trowel icon /// /// https://fontawesome.com/icons/trowel?style=light /// build, construction, equipment, maintenance, tool - static const IconData lightTrowel = IconDataLight(0xe589); + static const IconData lightTrowel = IconData(0xe589, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trowel icon /// /// https://fontawesome.com/icons/trowel?style=thin /// build, construction, equipment, maintenance, tool - static const IconData thinTrowel = IconDataThin(0xe589); + static const IconData thinTrowel = IconData(0xe589, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trowel Bricks icon /// /// https://fontawesome.com/icons/trowel-bricks?style=solid /// build, construction, maintenance, reconstruction, tool - static const IconData solidTrowelBricks = IconDataSolid(0xe58a); + static const IconData solidTrowelBricks = IconData(0xe58a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trowel Bricks icon /// /// https://fontawesome.com/icons/trowel-bricks?style=regular /// build, construction, maintenance, reconstruction, tool - static const IconData trowelBricks = IconDataRegular(0xe58a); + static const IconData trowelBricks = IconData(0xe58a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trowel Bricks icon /// /// https://fontawesome.com/icons/trowel-bricks?style=light /// build, construction, maintenance, reconstruction, tool - static const IconData lightTrowelBricks = IconDataLight(0xe58a); + static const IconData lightTrowelBricks = IconData(0xe58a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trowel Bricks icon /// /// https://fontawesome.com/icons/trowel-bricks?style=thin /// build, construction, maintenance, reconstruction, tool - static const IconData thinTrowelBricks = IconDataThin(0xe58a); + static const IconData thinTrowelBricks = IconData(0xe58a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck icon /// /// https://fontawesome.com/icons/truck?style=solid /// Black Truck, cargo, delivery, delivery truck, shipping, truck, vehicle - static const IconData solidTruck = IconDataSolid(0xf0d1); + static const IconData solidTruck = IconData(0xf0d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck icon /// /// https://fontawesome.com/icons/truck?style=regular /// Black Truck, cargo, delivery, delivery truck, shipping, truck, vehicle - static const IconData truck = IconDataRegular(0xf0d1); + static const IconData truck = IconData(0xf0d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck icon /// /// https://fontawesome.com/icons/truck?style=light /// Black Truck, cargo, delivery, delivery truck, shipping, truck, vehicle - static const IconData lightTruck = IconDataLight(0xf0d1); + static const IconData lightTruck = IconData(0xf0d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck icon /// /// https://fontawesome.com/icons/truck?style=thin /// Black Truck, cargo, delivery, delivery truck, shipping, truck, vehicle - static const IconData thinTruck = IconDataThin(0xf0d1); + static const IconData thinTruck = IconData(0xf0d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Arrow Right icon /// /// https://fontawesome.com/icons/truck-arrow-right?style=solid /// access, fast, shipping, transport - static const IconData solidTruckArrowRight = IconDataSolid(0xe58b); + static const IconData solidTruckArrowRight = IconData(0xe58b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Arrow Right icon /// /// https://fontawesome.com/icons/truck-arrow-right?style=regular /// access, fast, shipping, transport - static const IconData truckArrowRight = IconDataRegular(0xe58b); + static const IconData truckArrowRight = IconData(0xe58b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Arrow Right icon /// /// https://fontawesome.com/icons/truck-arrow-right?style=light /// access, fast, shipping, transport - static const IconData lightTruckArrowRight = IconDataLight(0xe58b); + static const IconData lightTruckArrowRight = IconData(0xe58b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Arrow Right icon /// /// https://fontawesome.com/icons/truck-arrow-right?style=thin /// access, fast, shipping, transport - static const IconData thinTruckArrowRight = IconDataThin(0xe58b); + static const IconData thinTruckArrowRight = IconData(0xe58b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Bolt icon /// /// https://fontawesome.com/icons/truck-bolt?style=solid /// cargo, delivery, electric, ev, shipping, vehicle - static const IconData solidTruckBolt = IconDataSolid(0xe3d0); + static const IconData solidTruckBolt = IconData(0xe3d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Bolt icon /// /// https://fontawesome.com/icons/truck-bolt?style=regular /// cargo, delivery, electric, ev, shipping, vehicle - static const IconData truckBolt = IconDataRegular(0xe3d0); + static const IconData truckBolt = IconData(0xe3d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Bolt icon /// /// https://fontawesome.com/icons/truck-bolt?style=light /// cargo, delivery, electric, ev, shipping, vehicle - static const IconData lightTruckBolt = IconDataLight(0xe3d0); + static const IconData lightTruckBolt = IconData(0xe3d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Bolt icon /// /// https://fontawesome.com/icons/truck-bolt?style=thin /// cargo, delivery, electric, ev, shipping, vehicle - static const IconData thinTruckBolt = IconDataThin(0xe3d0); + static const IconData thinTruckBolt = IconData(0xe3d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Clock icon /// /// https://fontawesome.com/icons/truck-clock?style=solid /// express, fedex, mail, overnight, package, ups - static const IconData solidTruckClock = IconDataSolid(0xf48c); + static const IconData solidTruckClock = IconData(0xf48c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shipping-timed for icon [solidTruckClock] @Deprecated('Use "solidTruckClock" instead.') @@ -89308,7 +89308,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-clock?style=regular /// express, fedex, mail, overnight, package, ups - static const IconData truckClock = IconDataRegular(0xf48c); + static const IconData truckClock = IconData(0xf48c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shipping-timed for icon [truckClock] @Deprecated('Use "truckClock" instead.') @@ -89318,7 +89318,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-clock?style=light /// express, fedex, mail, overnight, package, ups - static const IconData lightTruckClock = IconDataLight(0xf48c); + static const IconData lightTruckClock = IconData(0xf48c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shipping-timed for icon [lightTruckClock] @Deprecated('Use "lightTruckClock" instead.') @@ -89328,7 +89328,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-clock?style=thin /// express, fedex, mail, overnight, package, ups - static const IconData thinTruckClock = IconDataThin(0xf48c); + static const IconData thinTruckClock = IconData(0xf48c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shipping-timed for icon [thinTruckClock] @Deprecated('Use "thinTruckClock" instead.') @@ -89338,79 +89338,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-container?style=solid /// cargo, delivery, maintenance, shipping, vehicle - static const IconData solidTruckContainer = IconDataSolid(0xf4dc); + static const IconData solidTruckContainer = IconData(0xf4dc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Container icon /// /// https://fontawesome.com/icons/truck-container?style=regular /// cargo, delivery, maintenance, shipping, vehicle - static const IconData truckContainer = IconDataRegular(0xf4dc); + static const IconData truckContainer = IconData(0xf4dc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Container icon /// /// https://fontawesome.com/icons/truck-container?style=light /// cargo, delivery, maintenance, shipping, vehicle - static const IconData lightTruckContainer = IconDataLight(0xf4dc); + static const IconData lightTruckContainer = IconData(0xf4dc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Container icon /// /// https://fontawesome.com/icons/truck-container?style=thin /// cargo, delivery, maintenance, shipping, vehicle - static const IconData thinTruckContainer = IconDataThin(0xf4dc); + static const IconData thinTruckContainer = IconData(0xf4dc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Container Empty icon /// /// https://fontawesome.com/icons/truck-container-empty?style=solid /// container, flatbed, shipping - static const IconData solidTruckContainerEmpty = IconDataSolid(0xe2b5); + static const IconData solidTruckContainerEmpty = IconData(0xe2b5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Container Empty icon /// /// https://fontawesome.com/icons/truck-container-empty?style=regular /// container, flatbed, shipping - static const IconData truckContainerEmpty = IconDataRegular(0xe2b5); + static const IconData truckContainerEmpty = IconData(0xe2b5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Container Empty icon /// /// https://fontawesome.com/icons/truck-container-empty?style=light /// container, flatbed, shipping - static const IconData lightTruckContainerEmpty = IconDataLight(0xe2b5); + static const IconData lightTruckContainerEmpty = IconData(0xe2b5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Container Empty icon /// /// https://fontawesome.com/icons/truck-container-empty?style=thin /// container, flatbed, shipping - static const IconData thinTruckContainerEmpty = IconDataThin(0xe2b5); + static const IconData thinTruckContainerEmpty = IconData(0xe2b5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Droplet icon /// /// https://fontawesome.com/icons/truck-droplet?style=solid /// blood, thirst, truck, water, water supply - static const IconData solidTruckDroplet = IconDataSolid(0xe58c); + static const IconData solidTruckDroplet = IconData(0xe58c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Droplet icon /// /// https://fontawesome.com/icons/truck-droplet?style=regular /// blood, thirst, truck, water, water supply - static const IconData truckDroplet = IconDataRegular(0xe58c); + static const IconData truckDroplet = IconData(0xe58c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Droplet icon /// /// https://fontawesome.com/icons/truck-droplet?style=light /// blood, thirst, truck, water, water supply - static const IconData lightTruckDroplet = IconDataLight(0xe58c); + static const IconData lightTruckDroplet = IconData(0xe58c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Droplet icon /// /// https://fontawesome.com/icons/truck-droplet?style=thin /// blood, thirst, truck, water, water supply - static const IconData thinTruckDroplet = IconDataThin(0xe58c); + static const IconData thinTruckDroplet = IconData(0xe58c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Fast icon /// /// https://fontawesome.com/icons/truck-fast?style=solid /// express, fedex, mail, overnight, package, quick, ups - static const IconData solidTruckFast = IconDataSolid(0xf48b); + static const IconData solidTruckFast = IconData(0xf48b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shipping-fast for icon [solidTruckFast] @Deprecated('Use "solidTruckFast" instead.') @@ -89420,7 +89420,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-fast?style=regular /// express, fedex, mail, overnight, package, quick, ups - static const IconData truckFast = IconDataRegular(0xf48b); + static const IconData truckFast = IconData(0xf48b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shipping-fast for icon [truckFast] @Deprecated('Use "truckFast" instead.') @@ -89430,7 +89430,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-fast?style=light /// express, fedex, mail, overnight, package, quick, ups - static const IconData lightTruckFast = IconDataLight(0xf48b); + static const IconData lightTruckFast = IconData(0xf48b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shipping-fast for icon [lightTruckFast] @Deprecated('Use "lightTruckFast" instead.') @@ -89440,7 +89440,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-fast?style=thin /// express, fedex, mail, overnight, package, quick, ups - static const IconData thinTruckFast = IconDataThin(0xf48b); + static const IconData thinTruckFast = IconData(0xf48b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shipping-fast for icon [thinTruckFast] @Deprecated('Use "thinTruckFast" instead.') @@ -89450,151 +89450,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-field?style=solid /// supplies, truck - static const IconData solidTruckField = IconDataSolid(0xe58d); + static const IconData solidTruckField = IconData(0xe58d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Field icon /// /// https://fontawesome.com/icons/truck-field?style=regular /// supplies, truck - static const IconData truckField = IconDataRegular(0xe58d); + static const IconData truckField = IconData(0xe58d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Field icon /// /// https://fontawesome.com/icons/truck-field?style=light /// supplies, truck - static const IconData lightTruckField = IconDataLight(0xe58d); + static const IconData lightTruckField = IconData(0xe58d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Field icon /// /// https://fontawesome.com/icons/truck-field?style=thin /// supplies, truck - static const IconData thinTruckField = IconDataThin(0xe58d); + static const IconData thinTruckField = IconData(0xe58d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Field Un icon /// /// https://fontawesome.com/icons/truck-field-un?style=solid /// supplies, truck, united nations - static const IconData solidTruckFieldUn = IconDataSolid(0xe58e); + static const IconData solidTruckFieldUn = IconData(0xe58e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Field Un icon /// /// https://fontawesome.com/icons/truck-field-un?style=regular /// supplies, truck, united nations - static const IconData truckFieldUn = IconDataRegular(0xe58e); + static const IconData truckFieldUn = IconData(0xe58e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Field Un icon /// /// https://fontawesome.com/icons/truck-field-un?style=light /// supplies, truck, united nations - static const IconData lightTruckFieldUn = IconDataLight(0xe58e); + static const IconData lightTruckFieldUn = IconData(0xe58e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Field Un icon /// /// https://fontawesome.com/icons/truck-field-un?style=thin /// supplies, truck, united nations - static const IconData thinTruckFieldUn = IconDataThin(0xe58e); + static const IconData thinTruckFieldUn = IconData(0xe58e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Fire icon /// /// https://fontawesome.com/icons/truck-fire?style=solid /// Dalmatian, burning, emergency, engine, fight, hose, ladder, rescue, arson, emt, fire, flame - static const IconData solidTruckFire = IconDataSolid(0xe65a); + static const IconData solidTruckFire = IconData(0xe65a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Fire icon /// /// https://fontawesome.com/icons/truck-fire?style=regular /// Dalmatian, burning, emergency, engine, fight, hose, ladder, rescue, arson, emt, fire, flame - static const IconData truckFire = IconDataRegular(0xe65a); + static const IconData truckFire = IconData(0xe65a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Fire icon /// /// https://fontawesome.com/icons/truck-fire?style=light /// Dalmatian, burning, emergency, engine, fight, hose, ladder, rescue, arson, emt, fire, flame - static const IconData lightTruckFire = IconDataLight(0xe65a); + static const IconData lightTruckFire = IconData(0xe65a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Fire icon /// /// https://fontawesome.com/icons/truck-fire?style=thin /// Dalmatian, burning, emergency, engine, fight, hose, ladder, rescue, arson, emt, fire, flame - static const IconData thinTruckFire = IconDataThin(0xe65a); + static const IconData thinTruckFire = IconData(0xe65a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Flatbed icon /// /// https://fontawesome.com/icons/truck-flatbed?style=solid /// container, flatbed, shipping - static const IconData solidTruckFlatbed = IconDataSolid(0xe2b6); + static const IconData solidTruckFlatbed = IconData(0xe2b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Flatbed icon /// /// https://fontawesome.com/icons/truck-flatbed?style=regular /// container, flatbed, shipping - static const IconData truckFlatbed = IconDataRegular(0xe2b6); + static const IconData truckFlatbed = IconData(0xe2b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Flatbed icon /// /// https://fontawesome.com/icons/truck-flatbed?style=light /// container, flatbed, shipping - static const IconData lightTruckFlatbed = IconDataLight(0xe2b6); + static const IconData lightTruckFlatbed = IconData(0xe2b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Flatbed icon /// /// https://fontawesome.com/icons/truck-flatbed?style=thin /// container, flatbed, shipping - static const IconData thinTruckFlatbed = IconDataThin(0xe2b6); + static const IconData thinTruckFlatbed = IconData(0xe2b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Front icon /// /// https://fontawesome.com/icons/truck-front?style=solid /// shuttle, truck, van - static const IconData solidTruckFront = IconDataSolid(0xe2b7); + static const IconData solidTruckFront = IconData(0xe2b7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Front icon /// /// https://fontawesome.com/icons/truck-front?style=regular /// shuttle, truck, van - static const IconData truckFront = IconDataRegular(0xe2b7); + static const IconData truckFront = IconData(0xe2b7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Front icon /// /// https://fontawesome.com/icons/truck-front?style=light /// shuttle, truck, van - static const IconData lightTruckFront = IconDataLight(0xe2b7); + static const IconData lightTruckFront = IconData(0xe2b7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Front icon /// /// https://fontawesome.com/icons/truck-front?style=thin /// shuttle, truck, van - static const IconData thinTruckFront = IconDataThin(0xe2b7); + static const IconData thinTruckFront = IconData(0xe2b7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Ladder icon /// /// https://fontawesome.com/icons/truck-ladder?style=solid /// climb, pickup, ladder - static const IconData solidTruckLadder = IconDataSolid(0xe657); + static const IconData solidTruckLadder = IconData(0xe657, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Ladder icon /// /// https://fontawesome.com/icons/truck-ladder?style=regular /// climb, pickup, ladder - static const IconData truckLadder = IconDataRegular(0xe657); + static const IconData truckLadder = IconData(0xe657, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Ladder icon /// /// https://fontawesome.com/icons/truck-ladder?style=light /// climb, pickup, ladder - static const IconData lightTruckLadder = IconDataLight(0xe657); + static const IconData lightTruckLadder = IconData(0xe657, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Ladder icon /// /// https://fontawesome.com/icons/truck-ladder?style=thin /// climb, pickup, ladder - static const IconData thinTruckLadder = IconDataThin(0xe657); + static const IconData thinTruckLadder = IconData(0xe657, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Medical icon /// /// https://fontawesome.com/icons/truck-medical?style=solid /// ambulance, clinic, covid-19, emergency, emt, er, help, hospital, mobile, support, vehicle - static const IconData solidTruckMedical = IconDataSolid(0xf0f9); + static const IconData solidTruckMedical = IconData(0xf0f9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ambulance for icon [solidTruckMedical] @Deprecated('Use "solidTruckMedical" instead.') @@ -89604,7 +89604,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-medical?style=regular /// ambulance, clinic, covid-19, emergency, emt, er, help, hospital, mobile, support, vehicle - static const IconData truckMedical = IconDataRegular(0xf0f9); + static const IconData truckMedical = IconData(0xf0f9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ambulance for icon [truckMedical] @Deprecated('Use "truckMedical" instead.') @@ -89614,7 +89614,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-medical?style=light /// ambulance, clinic, covid-19, emergency, emt, er, help, hospital, mobile, support, vehicle - static const IconData lightTruckMedical = IconDataLight(0xf0f9); + static const IconData lightTruckMedical = IconData(0xf0f9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ambulance for icon [lightTruckMedical] @Deprecated('Use "lightTruckMedical" instead.') @@ -89624,7 +89624,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-medical?style=thin /// ambulance, clinic, covid-19, emergency, emt, er, help, hospital, mobile, support, vehicle - static const IconData thinTruckMedical = IconDataThin(0xf0f9); + static const IconData thinTruckMedical = IconData(0xf0f9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ambulance for icon [thinTruckMedical] @Deprecated('Use "thinTruckMedical" instead.') @@ -89634,151 +89634,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-monster?style=solid /// offroad, vehicle, wheel - static const IconData solidTruckMonster = IconDataSolid(0xf63b); + static const IconData solidTruckMonster = IconData(0xf63b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Monster icon /// /// https://fontawesome.com/icons/truck-monster?style=regular /// offroad, vehicle, wheel - static const IconData truckMonster = IconDataRegular(0xf63b); + static const IconData truckMonster = IconData(0xf63b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Monster icon /// /// https://fontawesome.com/icons/truck-monster?style=light /// offroad, vehicle, wheel - static const IconData lightTruckMonster = IconDataLight(0xf63b); + static const IconData lightTruckMonster = IconData(0xf63b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Monster icon /// /// https://fontawesome.com/icons/truck-monster?style=thin /// offroad, vehicle, wheel - static const IconData thinTruckMonster = IconDataThin(0xf63b); + static const IconData thinTruckMonster = IconData(0xf63b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Moving icon /// /// https://fontawesome.com/icons/truck-moving?style=solid /// cargo, inventory, rental, vehicle - static const IconData solidTruckMoving = IconDataSolid(0xf4df); + static const IconData solidTruckMoving = IconData(0xf4df, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Moving icon /// /// https://fontawesome.com/icons/truck-moving?style=regular /// cargo, inventory, rental, vehicle - static const IconData truckMoving = IconDataRegular(0xf4df); + static const IconData truckMoving = IconData(0xf4df, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Moving icon /// /// https://fontawesome.com/icons/truck-moving?style=light /// cargo, inventory, rental, vehicle - static const IconData lightTruckMoving = IconDataLight(0xf4df); + static const IconData lightTruckMoving = IconData(0xf4df, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Moving icon /// /// https://fontawesome.com/icons/truck-moving?style=thin /// cargo, inventory, rental, vehicle - static const IconData thinTruckMoving = IconDataThin(0xf4df); + static const IconData thinTruckMoving = IconData(0xf4df, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Pickup icon /// /// https://fontawesome.com/icons/truck-pickup?style=solid /// cargo, maintenance, pick-up, pickup, pickup truck, truck, vehicle - static const IconData solidTruckPickup = IconDataSolid(0xf63c); + static const IconData solidTruckPickup = IconData(0xf63c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Pickup icon /// /// https://fontawesome.com/icons/truck-pickup?style=regular /// cargo, maintenance, pick-up, pickup, pickup truck, truck, vehicle - static const IconData truckPickup = IconDataRegular(0xf63c); + static const IconData truckPickup = IconData(0xf63c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Pickup icon /// /// https://fontawesome.com/icons/truck-pickup?style=light /// cargo, maintenance, pick-up, pickup, pickup truck, truck, vehicle - static const IconData lightTruckPickup = IconDataLight(0xf63c); + static const IconData lightTruckPickup = IconData(0xf63c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Pickup icon /// /// https://fontawesome.com/icons/truck-pickup?style=thin /// cargo, maintenance, pick-up, pickup, pickup truck, truck, vehicle - static const IconData thinTruckPickup = IconDataThin(0xf63c); + static const IconData thinTruckPickup = IconData(0xf63c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Plane icon /// /// https://fontawesome.com/icons/truck-plane?style=solid /// airplane, plane, transportation, truck, vehicle - static const IconData solidTruckPlane = IconDataSolid(0xe58f); + static const IconData solidTruckPlane = IconData(0xe58f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Plane icon /// /// https://fontawesome.com/icons/truck-plane?style=regular /// airplane, plane, transportation, truck, vehicle - static const IconData truckPlane = IconDataRegular(0xe58f); + static const IconData truckPlane = IconData(0xe58f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Plane icon /// /// https://fontawesome.com/icons/truck-plane?style=light /// airplane, plane, transportation, truck, vehicle - static const IconData lightTruckPlane = IconDataLight(0xe58f); + static const IconData lightTruckPlane = IconData(0xe58f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Plane icon /// /// https://fontawesome.com/icons/truck-plane?style=thin /// airplane, plane, transportation, truck, vehicle - static const IconData thinTruckPlane = IconDataThin(0xe58f); + static const IconData thinTruckPlane = IconData(0xe58f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Plow icon /// /// https://fontawesome.com/icons/truck-plow?style=solid /// clean up, cold, seasonal, snow, winter - static const IconData solidTruckPlow = IconDataSolid(0xf7de); + static const IconData solidTruckPlow = IconData(0xf7de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Plow icon /// /// https://fontawesome.com/icons/truck-plow?style=regular /// clean up, cold, seasonal, snow, winter - static const IconData truckPlow = IconDataRegular(0xf7de); + static const IconData truckPlow = IconData(0xf7de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Plow icon /// /// https://fontawesome.com/icons/truck-plow?style=light /// clean up, cold, seasonal, snow, winter - static const IconData lightTruckPlow = IconDataLight(0xf7de); + static const IconData lightTruckPlow = IconData(0xf7de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Plow icon /// /// https://fontawesome.com/icons/truck-plow?style=thin /// clean up, cold, seasonal, snow, winter - static const IconData thinTruckPlow = IconDataThin(0xf7de); + static const IconData thinTruckPlow = IconData(0xf7de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Ramp icon /// /// https://fontawesome.com/icons/truck-ramp?style=solid /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData solidTruckRamp = IconDataSolid(0xf4e0); + static const IconData solidTruckRamp = IconData(0xf4e0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Ramp icon /// /// https://fontawesome.com/icons/truck-ramp?style=regular /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData truckRamp = IconDataRegular(0xf4e0); + static const IconData truckRamp = IconData(0xf4e0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Ramp icon /// /// https://fontawesome.com/icons/truck-ramp?style=light /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData lightTruckRamp = IconDataLight(0xf4e0); + static const IconData lightTruckRamp = IconData(0xf4e0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Ramp icon /// /// https://fontawesome.com/icons/truck-ramp?style=thin /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData thinTruckRamp = IconDataThin(0xf4e0); + static const IconData thinTruckRamp = IconData(0xf4e0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Ramp Box icon /// /// https://fontawesome.com/icons/truck-ramp-box?style=solid /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData solidTruckRampBox = IconDataSolid(0xf4de); + static const IconData solidTruckRampBox = IconData(0xf4de, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias truck-loading for icon [solidTruckRampBox] @Deprecated('Use "solidTruckRampBox" instead.') @@ -89788,7 +89788,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-box?style=regular /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData truckRampBox = IconDataRegular(0xf4de); + static const IconData truckRampBox = IconData(0xf4de, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias truck-loading for icon [truckRampBox] @Deprecated('Use "truckRampBox" instead.') @@ -89798,7 +89798,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-box?style=light /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData lightTruckRampBox = IconDataLight(0xf4de); + static const IconData lightTruckRampBox = IconData(0xf4de, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias truck-loading for icon [lightTruckRampBox] @Deprecated('Use "lightTruckRampBox" instead.') @@ -89808,7 +89808,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-box?style=thin /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData thinTruckRampBox = IconDataThin(0xf4de); + static const IconData thinTruckRampBox = IconData(0xf4de, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias truck-loading for icon [thinTruckRampBox] @Deprecated('Use "thinTruckRampBox" instead.') @@ -89818,7 +89818,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-couch?style=solid /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData solidTruckRampCouch = IconDataSolid(0xf4dd); + static const IconData solidTruckRampCouch = IconData(0xf4dd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias truck-couch for icon [solidTruckRampCouch] @Deprecated('Use "solidTruckRampCouch" instead.') @@ -89828,7 +89828,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-couch?style=regular /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData truckRampCouch = IconDataRegular(0xf4dd); + static const IconData truckRampCouch = IconData(0xf4dd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias truck-couch for icon [truckRampCouch] @Deprecated('Use "truckRampCouch" instead.') @@ -89838,7 +89838,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-couch?style=light /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData lightTruckRampCouch = IconDataLight(0xf4dd); + static const IconData lightTruckRampCouch = IconData(0xf4dd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias truck-couch for icon [lightTruckRampCouch] @Deprecated('Use "lightTruckRampCouch" instead.') @@ -89848,7 +89848,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-ramp-couch?style=thin /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData thinTruckRampCouch = IconDataThin(0xf4dd); + static const IconData thinTruckRampCouch = IconData(0xf4dd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias truck-couch for icon [thinTruckRampCouch] @Deprecated('Use "thinTruckRampCouch" instead.') @@ -89858,79 +89858,79 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/truck-tow?style=solid /// accident, assistance, help, tow - static const IconData solidTruckTow = IconDataSolid(0xe2b8); + static const IconData solidTruckTow = IconData(0xe2b8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Tow icon /// /// https://fontawesome.com/icons/truck-tow?style=regular /// accident, assistance, help, tow - static const IconData truckTow = IconDataRegular(0xe2b8); + static const IconData truckTow = IconData(0xe2b8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Tow icon /// /// https://fontawesome.com/icons/truck-tow?style=light /// accident, assistance, help, tow - static const IconData lightTruckTow = IconDataLight(0xe2b8); + static const IconData lightTruckTow = IconData(0xe2b8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Tow icon /// /// https://fontawesome.com/icons/truck-tow?style=thin /// accident, assistance, help, tow - static const IconData thinTruckTow = IconDataThin(0xe2b8); + static const IconData thinTruckTow = IconData(0xe2b8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Truck Utensils icon /// /// https://fontawesome.com/icons/truck-utensils?style=solid /// cargo, delivery, delivery truck, shipping, truck, vehicle, cook, food, food truck, kitchen - static const IconData solidTruckUtensils = IconDataSolid(0xe628); + static const IconData solidTruckUtensils = IconData(0xe628, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Truck Utensils icon /// /// https://fontawesome.com/icons/truck-utensils?style=regular /// cargo, delivery, delivery truck, shipping, truck, vehicle, cook, food, food truck, kitchen - static const IconData truckUtensils = IconDataRegular(0xe628); + static const IconData truckUtensils = IconData(0xe628, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Truck Utensils icon /// /// https://fontawesome.com/icons/truck-utensils?style=light /// cargo, delivery, delivery truck, shipping, truck, vehicle, cook, food, food truck, kitchen - static const IconData lightTruckUtensils = IconDataLight(0xe628); + static const IconData lightTruckUtensils = IconData(0xe628, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Truck Utensils icon /// /// https://fontawesome.com/icons/truck-utensils?style=thin /// cargo, delivery, delivery truck, shipping, truck, vehicle, cook, food, food truck, kitchen - static const IconData thinTruckUtensils = IconDataThin(0xe628); + static const IconData thinTruckUtensils = IconData(0xe628, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Trumpet icon /// /// https://fontawesome.com/icons/trumpet?style=solid /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra, trumpet - static const IconData solidTrumpet = IconDataSolid(0xf8e3); + static const IconData solidTrumpet = IconData(0xf8e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Trumpet icon /// /// https://fontawesome.com/icons/trumpet?style=regular /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra, trumpet - static const IconData trumpet = IconDataRegular(0xf8e3); + static const IconData trumpet = IconData(0xf8e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Trumpet icon /// /// https://fontawesome.com/icons/trumpet?style=light /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra, trumpet - static const IconData lightTrumpet = IconDataLight(0xf8e3); + static const IconData lightTrumpet = IconData(0xf8e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Trumpet icon /// /// https://fontawesome.com/icons/trumpet?style=thin /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra, trumpet - static const IconData thinTrumpet = IconDataThin(0xf8e3); + static const IconData thinTrumpet = IconData(0xf8e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tty icon /// /// https://fontawesome.com/icons/tty?style=solid /// communication, deaf, telephone, teletypewriter, text - static const IconData solidTty = IconDataSolid(0xf1e4); + static const IconData solidTty = IconData(0xf1e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias teletype for icon [solidTty] @Deprecated('Use "solidTty" instead.') @@ -89940,7 +89940,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty?style=regular /// communication, deaf, telephone, teletypewriter, text - static const IconData tty = IconDataRegular(0xf1e4); + static const IconData tty = IconData(0xf1e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias teletype for icon [tty] @Deprecated('Use "tty" instead.') @@ -89950,7 +89950,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty?style=light /// communication, deaf, telephone, teletypewriter, text - static const IconData lightTty = IconDataLight(0xf1e4); + static const IconData lightTty = IconData(0xf1e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias teletype for icon [lightTty] @Deprecated('Use "lightTty" instead.') @@ -89960,7 +89960,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty?style=thin /// communication, deaf, telephone, teletypewriter, text - static const IconData thinTty = IconDataThin(0xf1e4); + static const IconData thinTty = IconData(0xf1e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias teletype for icon [thinTty] @Deprecated('Use "thinTty" instead.') @@ -89970,7 +89970,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty-answer?style=solid /// answer, listen, teletype - static const IconData solidTtyAnswer = IconDataSolid(0xe2b9); + static const IconData solidTtyAnswer = IconData(0xe2b9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias teletype-answer for icon [solidTtyAnswer] @Deprecated('Use "solidTtyAnswer" instead.') @@ -89980,7 +89980,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty-answer?style=regular /// answer, listen, teletype - static const IconData ttyAnswer = IconDataRegular(0xe2b9); + static const IconData ttyAnswer = IconData(0xe2b9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias teletype-answer for icon [ttyAnswer] @Deprecated('Use "ttyAnswer" instead.') @@ -89990,7 +89990,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty-answer?style=light /// answer, listen, teletype - static const IconData lightTtyAnswer = IconDataLight(0xe2b9); + static const IconData lightTtyAnswer = IconData(0xe2b9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias teletype-answer for icon [lightTtyAnswer] @Deprecated('Use "lightTtyAnswer" instead.') @@ -90000,7 +90000,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tty-answer?style=thin /// answer, listen, teletype - static const IconData thinTtyAnswer = IconDataThin(0xe2b9); + static const IconData thinTtyAnswer = IconData(0xe2b9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias teletype-answer for icon [thinTtyAnswer] @Deprecated('Use "thinTtyAnswer" instead.') @@ -90010,60 +90010,60 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tugrik-sign?style=solid /// Tugrik Sign, currency - static const IconData solidTugrikSign = IconDataSolid(0xe2ba); + static const IconData solidTugrikSign = IconData(0xe2ba, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tugrik Sign icon /// /// https://fontawesome.com/icons/tugrik-sign?style=regular /// Tugrik Sign, currency - static const IconData tugrikSign = IconDataRegular(0xe2ba); + static const IconData tugrikSign = IconData(0xe2ba, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tugrik Sign icon /// /// https://fontawesome.com/icons/tugrik-sign?style=light /// Tugrik Sign, currency - static const IconData lightTugrikSign = IconDataLight(0xe2ba); + static const IconData lightTugrikSign = IconData(0xe2ba, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tugrik Sign icon /// /// https://fontawesome.com/icons/tugrik-sign?style=thin /// Tugrik Sign, currency - static const IconData thinTugrikSign = IconDataThin(0xe2ba); + static const IconData thinTugrikSign = IconData(0xe2ba, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Tumblr icon /// /// https://fontawesome.com/icons/tumblr?style=brands - static const IconData tumblr = IconDataBrands(0xf173); + static const IconData tumblr = IconData(0xf173, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Turkey icon /// /// https://fontawesome.com/icons/turkey?style=solid /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData solidTurkey = IconDataSolid(0xf725); + static const IconData solidTurkey = IconData(0xf725, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turkey icon /// /// https://fontawesome.com/icons/turkey?style=regular /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData turkey = IconDataRegular(0xf725); + static const IconData turkey = IconData(0xf725, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turkey icon /// /// https://fontawesome.com/icons/turkey?style=light /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData lightTurkey = IconDataLight(0xf725); + static const IconData lightTurkey = IconData(0xf725, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turkey icon /// /// https://fontawesome.com/icons/turkey?style=thin /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData thinTurkey = IconDataThin(0xf725); + static const IconData thinTurkey = IconData(0xf725, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turkish Lira Sign icon /// /// https://fontawesome.com/icons/turkish-lira-sign?style=solid /// Turkish Lira Sign, currency - static const IconData solidTurkishLiraSign = IconDataSolid(0xe2bb); + static const IconData solidTurkishLiraSign = IconData(0xe2bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias turkish-lira for icon [solidTurkishLiraSign] @Deprecated('Use "solidTurkishLiraSign" instead.') @@ -90073,7 +90073,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turkish-lira-sign?style=regular /// Turkish Lira Sign, currency - static const IconData turkishLiraSign = IconDataRegular(0xe2bb); + static const IconData turkishLiraSign = IconData(0xe2bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias turkish-lira for icon [turkishLiraSign] @Deprecated('Use "turkishLiraSign" instead.') @@ -90083,7 +90083,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turkish-lira-sign?style=light /// Turkish Lira Sign, currency - static const IconData lightTurkishLiraSign = IconDataLight(0xe2bb); + static const IconData lightTurkishLiraSign = IconData(0xe2bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias turkish-lira for icon [lightTurkishLiraSign] @Deprecated('Use "lightTurkishLiraSign" instead.') @@ -90093,7 +90093,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turkish-lira-sign?style=thin /// Turkish Lira Sign, currency - static const IconData thinTurkishLiraSign = IconDataThin(0xe2bb); + static const IconData thinTurkishLiraSign = IconData(0xe2bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias turkish-lira for icon [thinTurkishLiraSign] @Deprecated('Use "thinTurkishLiraSign" instead.') @@ -90103,7 +90103,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-down?style=solid /// arrow, down, level-down, right arrow curving down - static const IconData solidTurnDown = IconDataSolid(0xf3be); + static const IconData solidTurnDown = IconData(0xf3be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias level-down-alt for icon [solidTurnDown] @Deprecated('Use "solidTurnDown" instead.') @@ -90113,7 +90113,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-down?style=regular /// arrow, down, level-down, right arrow curving down - static const IconData turnDown = IconDataRegular(0xf3be); + static const IconData turnDown = IconData(0xf3be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias level-down-alt for icon [turnDown] @Deprecated('Use "turnDown" instead.') @@ -90123,7 +90123,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-down?style=light /// arrow, down, level-down, right arrow curving down - static const IconData lightTurnDown = IconDataLight(0xf3be); + static const IconData lightTurnDown = IconData(0xf3be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias level-down-alt for icon [lightTurnDown] @Deprecated('Use "lightTurnDown" instead.') @@ -90133,7 +90133,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-down?style=thin /// arrow, down, level-down, right arrow curving down - static const IconData thinTurnDown = IconDataThin(0xf3be); + static const IconData thinTurnDown = IconData(0xf3be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias level-down-alt for icon [thinTurnDown] @Deprecated('Use "thinTurnDown" instead.') @@ -90143,151 +90143,151 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-down-left?style=solid /// Downwards Arrow with Corner Leftwards, Return Left, Return Symbol, enter, keyboard, return - static const IconData solidTurnDownLeft = IconDataSolid(0xe331); + static const IconData solidTurnDownLeft = IconData(0xe331, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Down Left icon /// /// https://fontawesome.com/icons/turn-down-left?style=regular /// Downwards Arrow with Corner Leftwards, Return Left, Return Symbol, enter, keyboard, return - static const IconData turnDownLeft = IconDataRegular(0xe331); + static const IconData turnDownLeft = IconData(0xe331, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Down Left icon /// /// https://fontawesome.com/icons/turn-down-left?style=light /// Downwards Arrow with Corner Leftwards, Return Left, Return Symbol, enter, keyboard, return - static const IconData lightTurnDownLeft = IconDataLight(0xe331); + static const IconData lightTurnDownLeft = IconData(0xe331, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Down Left icon /// /// https://fontawesome.com/icons/turn-down-left?style=thin /// Downwards Arrow with Corner Leftwards, Return Left, Return Symbol, enter, keyboard, return - static const IconData thinTurnDownLeft = IconDataThin(0xe331); + static const IconData thinTurnDownLeft = IconData(0xe331, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Down Right icon /// /// https://fontawesome.com/icons/turn-down-right?style=solid /// forward, move - static const IconData solidTurnDownRight = IconDataSolid(0xe455); + static const IconData solidTurnDownRight = IconData(0xe455, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Down Right icon /// /// https://fontawesome.com/icons/turn-down-right?style=regular /// forward, move - static const IconData turnDownRight = IconDataRegular(0xe455); + static const IconData turnDownRight = IconData(0xe455, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Down Right icon /// /// https://fontawesome.com/icons/turn-down-right?style=light /// forward, move - static const IconData lightTurnDownRight = IconDataLight(0xe455); + static const IconData lightTurnDownRight = IconData(0xe455, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Down Right icon /// /// https://fontawesome.com/icons/turn-down-right?style=thin /// forward, move - static const IconData thinTurnDownRight = IconDataThin(0xe455); + static const IconData thinTurnDownRight = IconData(0xe455, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Left icon /// /// https://fontawesome.com/icons/turn-left?style=solid /// direction, left, return, turn, west, back - static const IconData solidTurnLeft = IconDataSolid(0xe636); + static const IconData solidTurnLeft = IconData(0xe636, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Left icon /// /// https://fontawesome.com/icons/turn-left?style=regular /// direction, left, return, turn, west, back - static const IconData turnLeft = IconDataRegular(0xe636); + static const IconData turnLeft = IconData(0xe636, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Left icon /// /// https://fontawesome.com/icons/turn-left?style=light /// direction, left, return, turn, west, back - static const IconData lightTurnLeft = IconDataLight(0xe636); + static const IconData lightTurnLeft = IconData(0xe636, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Left icon /// /// https://fontawesome.com/icons/turn-left?style=thin /// direction, left, return, turn, west, back - static const IconData thinTurnLeft = IconDataThin(0xe636); + static const IconData thinTurnLeft = IconData(0xe636, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Left Down icon /// /// https://fontawesome.com/icons/turn-left-down?style=solid /// direction, down, left, reverse, south, turn, backwards - static const IconData solidTurnLeftDown = IconDataSolid(0xe637); + static const IconData solidTurnLeftDown = IconData(0xe637, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Left Down icon /// /// https://fontawesome.com/icons/turn-left-down?style=regular /// direction, down, left, reverse, south, turn, backwards - static const IconData turnLeftDown = IconDataRegular(0xe637); + static const IconData turnLeftDown = IconData(0xe637, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Left Down icon /// /// https://fontawesome.com/icons/turn-left-down?style=light /// direction, down, left, reverse, south, turn, backwards - static const IconData lightTurnLeftDown = IconDataLight(0xe637); + static const IconData lightTurnLeftDown = IconData(0xe637, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Left Down icon /// /// https://fontawesome.com/icons/turn-left-down?style=thin /// direction, down, left, reverse, south, turn, backwards - static const IconData thinTurnLeftDown = IconDataThin(0xe637); + static const IconData thinTurnLeftDown = IconData(0xe637, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Left Up icon /// /// https://fontawesome.com/icons/turn-left-up?style=solid /// direction, north, turn, forward, right - static const IconData solidTurnLeftUp = IconDataSolid(0xe638); + static const IconData solidTurnLeftUp = IconData(0xe638, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Left Up icon /// /// https://fontawesome.com/icons/turn-left-up?style=regular /// direction, north, turn, forward, right - static const IconData turnLeftUp = IconDataRegular(0xe638); + static const IconData turnLeftUp = IconData(0xe638, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Left Up icon /// /// https://fontawesome.com/icons/turn-left-up?style=light /// direction, north, turn, forward, right - static const IconData lightTurnLeftUp = IconDataLight(0xe638); + static const IconData lightTurnLeftUp = IconData(0xe638, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Left Up icon /// /// https://fontawesome.com/icons/turn-left-up?style=thin /// direction, north, turn, forward, right - static const IconData thinTurnLeftUp = IconDataThin(0xe638); + static const IconData thinTurnLeftUp = IconData(0xe638, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Right icon /// /// https://fontawesome.com/icons/turn-right?style=solid /// direction, east, next, right, turn, forward - static const IconData solidTurnRight = IconDataSolid(0xe639); + static const IconData solidTurnRight = IconData(0xe639, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turn Right icon /// /// https://fontawesome.com/icons/turn-right?style=regular /// direction, east, next, right, turn, forward - static const IconData turnRight = IconDataRegular(0xe639); + static const IconData turnRight = IconData(0xe639, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turn Right icon /// /// https://fontawesome.com/icons/turn-right?style=light /// direction, east, next, right, turn, forward - static const IconData lightTurnRight = IconDataLight(0xe639); + static const IconData lightTurnRight = IconData(0xe639, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turn Right icon /// /// https://fontawesome.com/icons/turn-right?style=thin /// direction, east, next, right, turn, forward - static const IconData thinTurnRight = IconDataThin(0xe639); + static const IconData thinTurnRight = IconData(0xe639, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turn Up icon /// /// https://fontawesome.com/icons/turn-up?style=solid /// arrow, level-up, right arrow curving up - static const IconData solidTurnUp = IconDataSolid(0xf3bf); + static const IconData solidTurnUp = IconData(0xf3bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias level-up-alt for icon [solidTurnUp] @Deprecated('Use "solidTurnUp" instead.') @@ -90297,7 +90297,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-up?style=regular /// arrow, level-up, right arrow curving up - static const IconData turnUp = IconDataRegular(0xf3bf); + static const IconData turnUp = IconData(0xf3bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias level-up-alt for icon [turnUp] @Deprecated('Use "turnUp" instead.') @@ -90307,7 +90307,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-up?style=light /// arrow, level-up, right arrow curving up - static const IconData lightTurnUp = IconDataLight(0xf3bf); + static const IconData lightTurnUp = IconData(0xf3bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias level-up-alt for icon [lightTurnUp] @Deprecated('Use "lightTurnUp" instead.') @@ -90317,7 +90317,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turn-up?style=thin /// arrow, level-up, right arrow curving up - static const IconData thinTurnUp = IconDataThin(0xf3bf); + static const IconData thinTurnUp = IconData(0xf3bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias level-up-alt for icon [thinTurnUp] @Deprecated('Use "thinTurnUp" instead.') @@ -90327,55 +90327,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/turntable?style=solid /// album, music, phonograph, record, record player, vinyl - static const IconData solidTurntable = IconDataSolid(0xf8e4); + static const IconData solidTurntable = IconData(0xf8e4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turntable icon /// /// https://fontawesome.com/icons/turntable?style=regular /// album, music, phonograph, record, record player, vinyl - static const IconData turntable = IconDataRegular(0xf8e4); + static const IconData turntable = IconData(0xf8e4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turntable icon /// /// https://fontawesome.com/icons/turntable?style=light /// album, music, phonograph, record, record player, vinyl - static const IconData lightTurntable = IconDataLight(0xf8e4); + static const IconData lightTurntable = IconData(0xf8e4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turntable icon /// /// https://fontawesome.com/icons/turntable?style=thin /// album, music, phonograph, record, record player, vinyl - static const IconData thinTurntable = IconDataThin(0xf8e4); + static const IconData thinTurntable = IconData(0xf8e4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Turtle icon /// /// https://fontawesome.com/icons/turtle?style=solid /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow, terrapin, tortoise, turtle - static const IconData solidTurtle = IconDataSolid(0xf726); + static const IconData solidTurtle = IconData(0xf726, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Turtle icon /// /// https://fontawesome.com/icons/turtle?style=regular /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow, terrapin, tortoise, turtle - static const IconData turtle = IconDataRegular(0xf726); + static const IconData turtle = IconData(0xf726, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Turtle icon /// /// https://fontawesome.com/icons/turtle?style=light /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow, terrapin, tortoise, turtle - static const IconData lightTurtle = IconDataLight(0xf726); + static const IconData lightTurtle = IconData(0xf726, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Turtle icon /// /// https://fontawesome.com/icons/turtle?style=thin /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow, terrapin, tortoise, turtle - static const IconData thinTurtle = IconDataThin(0xf726); + static const IconData thinTurtle = IconData(0xf726, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tv icon /// /// https://fontawesome.com/icons/tv?style=solid /// computer, display, monitor, television - static const IconData solidTv = IconDataSolid(0xf26c); + static const IconData solidTv = IconData(0xf26c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias television for icon [solidTv] @Deprecated('Use "solidTv" instead.') @@ -90389,7 +90389,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tv?style=regular /// computer, display, monitor, television - static const IconData tv = IconDataRegular(0xf26c); + static const IconData tv = IconData(0xf26c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias television for icon [tv] @Deprecated('Use "tv" instead.') @@ -90403,7 +90403,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tv?style=light /// computer, display, monitor, television - static const IconData lightTv = IconDataLight(0xf26c); + static const IconData lightTv = IconData(0xf26c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias television for icon [lightTv] @Deprecated('Use "lightTv" instead.') @@ -90417,7 +90417,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tv?style=thin /// computer, display, monitor, television - static const IconData thinTv = IconDataThin(0xf26c); + static const IconData thinTv = IconData(0xf26c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias television for icon [thinTv] @Deprecated('Use "thinTv" instead.') @@ -90431,236 +90431,236 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/tv-music?style=solid /// audio, mtv, music, music video, sound, television, vh1 - static const IconData solidTvMusic = IconDataSolid(0xf8e6); + static const IconData solidTvMusic = IconData(0xf8e6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tv Music icon /// /// https://fontawesome.com/icons/tv-music?style=regular /// audio, mtv, music, music video, sound, television, vh1 - static const IconData tvMusic = IconDataRegular(0xf8e6); + static const IconData tvMusic = IconData(0xf8e6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tv Music icon /// /// https://fontawesome.com/icons/tv-music?style=light /// audio, mtv, music, music video, sound, television, vh1 - static const IconData lightTvMusic = IconDataLight(0xf8e6); + static const IconData lightTvMusic = IconData(0xf8e6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tv Music icon /// /// https://fontawesome.com/icons/tv-music?style=thin /// audio, mtv, music, music video, sound, television, vh1 - static const IconData thinTvMusic = IconDataThin(0xf8e6); + static const IconData thinTvMusic = IconData(0xf8e6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Tv Retro icon /// /// https://fontawesome.com/icons/tv-retro?style=solid /// computer, display, monitor, television, tv, video - static const IconData solidTvRetro = IconDataSolid(0xf401); + static const IconData solidTvRetro = IconData(0xf401, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Tv Retro icon /// /// https://fontawesome.com/icons/tv-retro?style=regular /// computer, display, monitor, television, tv, video - static const IconData tvRetro = IconDataRegular(0xf401); + static const IconData tvRetro = IconData(0xf401, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Tv Retro icon /// /// https://fontawesome.com/icons/tv-retro?style=light /// computer, display, monitor, television, tv, video - static const IconData lightTvRetro = IconDataLight(0xf401); + static const IconData lightTvRetro = IconData(0xf401, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Tv Retro icon /// /// https://fontawesome.com/icons/tv-retro?style=thin /// computer, display, monitor, television, tv, video - static const IconData thinTvRetro = IconDataThin(0xf401); + static const IconData thinTvRetro = IconData(0xf401, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Twitch icon /// /// https://fontawesome.com/icons/twitch?style=brands - static const IconData twitch = IconDataBrands(0xf1e8); + static const IconData twitch = IconData(0xf1e8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Twitter icon /// /// https://fontawesome.com/icons/twitter?style=brands /// social network, tweet - static const IconData twitter = IconDataBrands(0xf099); + static const IconData twitter = IconData(0xf099, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Typewriter icon /// /// https://fontawesome.com/icons/typewriter?style=solid /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage, writing - static const IconData solidTypewriter = IconDataSolid(0xf8e7); + static const IconData solidTypewriter = IconData(0xf8e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Typewriter icon /// /// https://fontawesome.com/icons/typewriter?style=regular /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage, writing - static const IconData typewriter = IconDataRegular(0xf8e7); + static const IconData typewriter = IconData(0xf8e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Typewriter icon /// /// https://fontawesome.com/icons/typewriter?style=light /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage, writing - static const IconData lightTypewriter = IconDataLight(0xf8e7); + static const IconData lightTypewriter = IconData(0xf8e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Typewriter icon /// /// https://fontawesome.com/icons/typewriter?style=thin /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage, writing - static const IconData thinTypewriter = IconDataThin(0xf8e7); + static const IconData thinTypewriter = IconData(0xf8e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Typo3 icon /// /// https://fontawesome.com/icons/typo3?style=brands - static const IconData typo3 = IconDataBrands(0xf42b); + static const IconData typo3 = IconData(0xf42b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid U icon /// /// https://fontawesome.com/icons/u?style=solid /// Latin Capital Letter U, Latin Small Letter U, letter - static const IconData solidU = IconDataSolid(0x55); + static const IconData solidU = IconData(0x55, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular U icon /// /// https://fontawesome.com/icons/u?style=regular /// Latin Capital Letter U, Latin Small Letter U, letter - static const IconData u = IconDataRegular(0x55); + static const IconData u = IconData(0x55, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light U icon /// /// https://fontawesome.com/icons/u?style=light /// Latin Capital Letter U, Latin Small Letter U, letter - static const IconData lightU = IconDataLight(0x55); + static const IconData lightU = IconData(0x55, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin U icon /// /// https://fontawesome.com/icons/u?style=thin /// Latin Capital Letter U, Latin Small Letter U, letter - static const IconData thinU = IconDataThin(0x55); + static const IconData thinU = IconData(0x55, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Uber icon /// /// https://fontawesome.com/icons/uber?style=brands - static const IconData uber = IconDataBrands(0xf402); + static const IconData uber = IconData(0xf402, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Ubuntu icon /// /// https://fontawesome.com/icons/ubuntu?style=brands /// linux, operating system, os - static const IconData ubuntu = IconDataBrands(0xf7df); + static const IconData ubuntu = IconData(0xf7df, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Ufo icon /// /// https://fontawesome.com/icons/ufo?style=solid /// UFO, abduct, alien, extraterrestrial, flying saucer, space, spacecraft, spaceship, t-craft, travel, unidentified flying object - static const IconData solidUfo = IconDataSolid(0xe047); + static const IconData solidUfo = IconData(0xe047, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ufo icon /// /// https://fontawesome.com/icons/ufo?style=regular /// UFO, abduct, alien, extraterrestrial, flying saucer, space, spacecraft, spaceship, t-craft, travel, unidentified flying object - static const IconData ufo = IconDataRegular(0xe047); + static const IconData ufo = IconData(0xe047, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ufo icon /// /// https://fontawesome.com/icons/ufo?style=light /// UFO, abduct, alien, extraterrestrial, flying saucer, space, spacecraft, spaceship, t-craft, travel, unidentified flying object - static const IconData lightUfo = IconDataLight(0xe047); + static const IconData lightUfo = IconData(0xe047, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ufo icon /// /// https://fontawesome.com/icons/ufo?style=thin /// UFO, abduct, alien, extraterrestrial, flying saucer, space, spacecraft, spaceship, t-craft, travel, unidentified flying object - static const IconData thinUfo = IconDataThin(0xe047); + static const IconData thinUfo = IconData(0xe047, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Ufo Beam icon /// /// https://fontawesome.com/icons/ufo-beam?style=solid /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, spaceship, t-craft, tractor beam, travel, unidentified flying object - static const IconData solidUfoBeam = IconDataSolid(0xe048); + static const IconData solidUfoBeam = IconData(0xe048, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Ufo Beam icon /// /// https://fontawesome.com/icons/ufo-beam?style=regular /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, spaceship, t-craft, tractor beam, travel, unidentified flying object - static const IconData ufoBeam = IconDataRegular(0xe048); + static const IconData ufoBeam = IconData(0xe048, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Ufo Beam icon /// /// https://fontawesome.com/icons/ufo-beam?style=light /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, spaceship, t-craft, tractor beam, travel, unidentified flying object - static const IconData lightUfoBeam = IconDataLight(0xe048); + static const IconData lightUfoBeam = IconData(0xe048, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Ufo Beam icon /// /// https://fontawesome.com/icons/ufo-beam?style=thin /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, spaceship, t-craft, tractor beam, travel, unidentified flying object - static const IconData thinUfoBeam = IconDataThin(0xe048); + static const IconData thinUfoBeam = IconData(0xe048, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands UIkit icon /// /// https://fontawesome.com/icons/uikit?style=brands - static const IconData uikit = IconDataBrands(0xf403); + static const IconData uikit = IconData(0xf403, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Umbraco icon /// /// https://fontawesome.com/icons/umbraco?style=brands - static const IconData umbraco = IconDataBrands(0xf8e8); + static const IconData umbraco = IconData(0xf8e8, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Umbrella icon /// /// https://fontawesome.com/icons/umbrella?style=solid /// protection, rain, storm, wet - static const IconData solidUmbrella = IconDataSolid(0xf0e9); + static const IconData solidUmbrella = IconData(0xf0e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Umbrella icon /// /// https://fontawesome.com/icons/umbrella?style=regular /// protection, rain, storm, wet - static const IconData umbrella = IconDataRegular(0xf0e9); + static const IconData umbrella = IconData(0xf0e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Umbrella icon /// /// https://fontawesome.com/icons/umbrella?style=light /// protection, rain, storm, wet - static const IconData lightUmbrella = IconDataLight(0xf0e9); + static const IconData lightUmbrella = IconData(0xf0e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Umbrella icon /// /// https://fontawesome.com/icons/umbrella?style=thin /// protection, rain, storm, wet - static const IconData thinUmbrella = IconDataThin(0xf0e9); + static const IconData thinUmbrella = IconData(0xf0e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Umbrella Beach icon /// /// https://fontawesome.com/icons/umbrella-beach?style=solid /// beach, beach with umbrella, protection, recreation, sand, shade, summer, sun, umbrella - static const IconData solidUmbrellaBeach = IconDataSolid(0xf5ca); + static const IconData solidUmbrellaBeach = IconData(0xf5ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Umbrella Beach icon /// /// https://fontawesome.com/icons/umbrella-beach?style=regular /// beach, beach with umbrella, protection, recreation, sand, shade, summer, sun, umbrella - static const IconData umbrellaBeach = IconDataRegular(0xf5ca); + static const IconData umbrellaBeach = IconData(0xf5ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Umbrella Beach icon /// /// https://fontawesome.com/icons/umbrella-beach?style=light /// beach, beach with umbrella, protection, recreation, sand, shade, summer, sun, umbrella - static const IconData lightUmbrellaBeach = IconDataLight(0xf5ca); + static const IconData lightUmbrellaBeach = IconData(0xf5ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Umbrella Beach icon /// /// https://fontawesome.com/icons/umbrella-beach?style=thin /// beach, beach with umbrella, protection, recreation, sand, shade, summer, sun, umbrella - static const IconData thinUmbrellaBeach = IconDataThin(0xf5ca); + static const IconData thinUmbrellaBeach = IconData(0xf5ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Umbrella Simple icon /// /// https://fontawesome.com/icons/umbrella-simple?style=solid /// clothing, rain, spring, umbrella - static const IconData solidUmbrellaSimple = IconDataSolid(0xe2bc); + static const IconData solidUmbrellaSimple = IconData(0xe2bc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias umbrella-alt for icon [solidUmbrellaSimple] @Deprecated('Use "solidUmbrellaSimple" instead.') @@ -90670,7 +90670,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/umbrella-simple?style=regular /// clothing, rain, spring, umbrella - static const IconData umbrellaSimple = IconDataRegular(0xe2bc); + static const IconData umbrellaSimple = IconData(0xe2bc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias umbrella-alt for icon [umbrellaSimple] @Deprecated('Use "umbrellaSimple" instead.') @@ -90680,7 +90680,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/umbrella-simple?style=light /// clothing, rain, spring, umbrella - static const IconData lightUmbrellaSimple = IconDataLight(0xe2bc); + static const IconData lightUmbrellaSimple = IconData(0xe2bc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias umbrella-alt for icon [lightUmbrellaSimple] @Deprecated('Use "lightUmbrellaSimple" instead.') @@ -90690,7 +90690,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/umbrella-simple?style=thin /// clothing, rain, spring, umbrella - static const IconData thinUmbrellaSimple = IconDataThin(0xe2bc); + static const IconData thinUmbrellaSimple = IconData(0xe2bc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias umbrella-alt for icon [thinUmbrellaSimple] @Deprecated('Use "thinUmbrellaSimple" instead.') @@ -90699,167 +90699,167 @@ class FontAwesomeIcons { /// Brands Uncharted Software icon /// /// https://fontawesome.com/icons/uncharted?style=brands - static const IconData uncharted = IconDataBrands(0xe084); + static const IconData uncharted = IconData(0xe084, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Underline icon /// /// https://fontawesome.com/icons/underline?style=solid /// edit, emphasis, format, modify, text, writing - static const IconData solidUnderline = IconDataSolid(0xf0cd); + static const IconData solidUnderline = IconData(0xf0cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Underline icon /// /// https://fontawesome.com/icons/underline?style=regular /// edit, emphasis, format, modify, text, writing - static const IconData underline = IconDataRegular(0xf0cd); + static const IconData underline = IconData(0xf0cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Underline icon /// /// https://fontawesome.com/icons/underline?style=light /// edit, emphasis, format, modify, text, writing - static const IconData lightUnderline = IconDataLight(0xf0cd); + static const IconData lightUnderline = IconData(0xf0cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Underline icon /// /// https://fontawesome.com/icons/underline?style=thin /// edit, emphasis, format, modify, text, writing - static const IconData thinUnderline = IconDataThin(0xf0cd); + static const IconData thinUnderline = IconData(0xf0cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Unicorn icon /// /// https://fontawesome.com/icons/unicorn?style=solid /// face, fantasy, fauna, horn, horse, unicorn - static const IconData solidUnicorn = IconDataSolid(0xf727); + static const IconData solidUnicorn = IconData(0xf727, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Unicorn icon /// /// https://fontawesome.com/icons/unicorn?style=regular /// face, fantasy, fauna, horn, horse, unicorn - static const IconData unicorn = IconDataRegular(0xf727); + static const IconData unicorn = IconData(0xf727, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Unicorn icon /// /// https://fontawesome.com/icons/unicorn?style=light /// face, fantasy, fauna, horn, horse, unicorn - static const IconData lightUnicorn = IconDataLight(0xf727); + static const IconData lightUnicorn = IconData(0xf727, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Unicorn icon /// /// https://fontawesome.com/icons/unicorn?style=thin /// face, fantasy, fauna, horn, horse, unicorn - static const IconData thinUnicorn = IconDataThin(0xf727); + static const IconData thinUnicorn = IconData(0xf727, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Uniform Martial Arts icon /// /// https://fontawesome.com/icons/uniform-martial-arts?style=solid /// aikido, belt, jiu jitsu, judo, karate, martial arts, martial arts uniform, taekwondo, uniform - static const IconData solidUniformMartialArts = IconDataSolid(0xe3d1); + static const IconData solidUniformMartialArts = IconData(0xe3d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Uniform Martial Arts icon /// /// https://fontawesome.com/icons/uniform-martial-arts?style=regular /// aikido, belt, jiu jitsu, judo, karate, martial arts, martial arts uniform, taekwondo, uniform - static const IconData uniformMartialArts = IconDataRegular(0xe3d1); + static const IconData uniformMartialArts = IconData(0xe3d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Uniform Martial Arts icon /// /// https://fontawesome.com/icons/uniform-martial-arts?style=light /// aikido, belt, jiu jitsu, judo, karate, martial arts, martial arts uniform, taekwondo, uniform - static const IconData lightUniformMartialArts = IconDataLight(0xe3d1); + static const IconData lightUniformMartialArts = IconData(0xe3d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Uniform Martial Arts icon /// /// https://fontawesome.com/icons/uniform-martial-arts?style=thin /// aikido, belt, jiu jitsu, judo, karate, martial arts, martial arts uniform, taekwondo, uniform - static const IconData thinUniformMartialArts = IconDataThin(0xe3d1); + static const IconData thinUniformMartialArts = IconData(0xe3d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Union icon /// /// https://fontawesome.com/icons/union?style=solid /// N-Ary Union, calculus, equation, function, math - static const IconData solidUnion = IconDataSolid(0xf6a2); + static const IconData solidUnion = IconData(0xf6a2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Union icon /// /// https://fontawesome.com/icons/union?style=regular /// N-Ary Union, calculus, equation, function, math - static const IconData union = IconDataRegular(0xf6a2); + static const IconData union = IconData(0xf6a2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Union icon /// /// https://fontawesome.com/icons/union?style=light /// N-Ary Union, calculus, equation, function, math - static const IconData lightUnion = IconDataLight(0xf6a2); + static const IconData lightUnion = IconData(0xf6a2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Union icon /// /// https://fontawesome.com/icons/union?style=thin /// N-Ary Union, calculus, equation, function, math - static const IconData thinUnion = IconDataThin(0xf6a2); + static const IconData thinUnion = IconData(0xf6a2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Uniregistry icon /// /// https://fontawesome.com/icons/uniregistry?style=brands - static const IconData uniregistry = IconDataBrands(0xf404); + static const IconData uniregistry = IconData(0xf404, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Unity 3D icon /// /// https://fontawesome.com/icons/unity?style=brands - static const IconData unity = IconDataBrands(0xe049); + static const IconData unity = IconData(0xe049, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Universal Access icon /// /// https://fontawesome.com/icons/universal-access?style=solid /// uer, users-people - static const IconData solidUniversalAccess = IconDataSolid(0xf29a); + static const IconData solidUniversalAccess = IconData(0xf29a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Universal Access icon /// /// https://fontawesome.com/icons/universal-access?style=regular /// uer, users-people - static const IconData universalAccess = IconDataRegular(0xf29a); + static const IconData universalAccess = IconData(0xf29a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Universal Access icon /// /// https://fontawesome.com/icons/universal-access?style=light /// uer, users-people - static const IconData lightUniversalAccess = IconDataLight(0xf29a); + static const IconData lightUniversalAccess = IconData(0xf29a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Universal Access icon /// /// https://fontawesome.com/icons/universal-access?style=thin /// uer, users-people - static const IconData thinUniversalAccess = IconDataThin(0xf29a); + static const IconData thinUniversalAccess = IconData(0xf29a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Unlock icon /// /// https://fontawesome.com/icons/unlock?style=solid /// admin, lock, open, padlock, password, privacy, private, protect, unlock, unlocked - static const IconData solidUnlock = IconDataSolid(0xf09c); + static const IconData solidUnlock = IconData(0xf09c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Unlock icon /// /// https://fontawesome.com/icons/unlock?style=regular /// admin, lock, open, padlock, password, privacy, private, protect, unlock, unlocked - static const IconData unlock = IconDataRegular(0xf09c); + static const IconData unlock = IconData(0xf09c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Unlock icon /// /// https://fontawesome.com/icons/unlock?style=light /// admin, lock, open, padlock, password, privacy, private, protect, unlock, unlocked - static const IconData lightUnlock = IconDataLight(0xf09c); + static const IconData lightUnlock = IconData(0xf09c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Unlock icon /// /// https://fontawesome.com/icons/unlock?style=thin /// admin, lock, open, padlock, password, privacy, private, protect, unlock, unlocked - static const IconData thinUnlock = IconDataThin(0xf09c); + static const IconData thinUnlock = IconData(0xf09c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Unlock Keyhole icon /// /// https://fontawesome.com/icons/unlock-keyhole?style=solid /// admin, lock, padlock, password, privacy, private, protect - static const IconData solidUnlockKeyhole = IconDataSolid(0xf13e); + static const IconData solidUnlockKeyhole = IconData(0xf13e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias unlock-alt for icon [solidUnlockKeyhole] @Deprecated('Use "solidUnlockKeyhole" instead.') @@ -90869,7 +90869,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/unlock-keyhole?style=regular /// admin, lock, padlock, password, privacy, private, protect - static const IconData unlockKeyhole = IconDataRegular(0xf13e); + static const IconData unlockKeyhole = IconData(0xf13e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias unlock-alt for icon [unlockKeyhole] @Deprecated('Use "unlockKeyhole" instead.') @@ -90879,7 +90879,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/unlock-keyhole?style=light /// admin, lock, padlock, password, privacy, private, protect - static const IconData lightUnlockKeyhole = IconDataLight(0xf13e); + static const IconData lightUnlockKeyhole = IconData(0xf13e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias unlock-alt for icon [lightUnlockKeyhole] @Deprecated('Use "lightUnlockKeyhole" instead.') @@ -90889,7 +90889,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/unlock-keyhole?style=thin /// admin, lock, padlock, password, privacy, private, protect - static const IconData thinUnlockKeyhole = IconDataThin(0xf13e); + static const IconData thinUnlockKeyhole = IconData(0xf13e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias unlock-alt for icon [thinUnlockKeyhole] @Deprecated('Use "thinUnlockKeyhole" instead.') @@ -90898,18 +90898,18 @@ class FontAwesomeIcons { /// Brands Unsplash icon /// /// https://fontawesome.com/icons/unsplash?style=brands - static const IconData unsplash = IconDataBrands(0xe07c); + static const IconData unsplash = IconData(0xe07c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Untappd icon /// /// https://fontawesome.com/icons/untappd?style=brands - static const IconData untappd = IconDataBrands(0xf405); + static const IconData untappd = IconData(0xf405, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Up icon /// /// https://fontawesome.com/icons/up?style=solid /// upgrade, upload - static const IconData solidUp = IconDataSolid(0xf357); + static const IconData solidUp = IconData(0xf357, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-up for icon [solidUp] @Deprecated('Use "solidUp" instead.') @@ -90919,7 +90919,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up?style=regular /// upgrade, upload - static const IconData up = IconDataRegular(0xf357); + static const IconData up = IconData(0xf357, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-up for icon [up] @Deprecated('Use "up" instead.') @@ -90929,7 +90929,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up?style=light /// upgrade, upload - static const IconData lightUp = IconDataLight(0xf357); + static const IconData lightUp = IconData(0xf357, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-up for icon [lightUp] @Deprecated('Use "lightUp" instead.') @@ -90939,7 +90939,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up?style=thin /// upgrade, upload - static const IconData thinUp = IconDataThin(0xf357); + static const IconData thinUp = IconData(0xf357, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-up for icon [thinUp] @Deprecated('Use "thinUp" instead.') @@ -90949,7 +90949,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down?style=solid /// Up Down Black Arrow, arrow, arrows-v, expand, portrait, resize, tall, up-down arrow, vertical - static const IconData solidUpDown = IconDataSolid(0xf338); + static const IconData solidUpDown = IconData(0xf338, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-v for icon [solidUpDown] @Deprecated('Use "solidUpDown" instead.') @@ -90959,7 +90959,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down?style=regular /// Up Down Black Arrow, arrow, arrows-v, expand, portrait, resize, tall, up-down arrow, vertical - static const IconData upDown = IconDataRegular(0xf338); + static const IconData upDown = IconData(0xf338, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-v for icon [upDown] @Deprecated('Use "upDown" instead.') @@ -90969,7 +90969,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down?style=light /// Up Down Black Arrow, arrow, arrows-v, expand, portrait, resize, tall, up-down arrow, vertical - static const IconData lightUpDown = IconDataLight(0xf338); + static const IconData lightUpDown = IconData(0xf338, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-v for icon [lightUpDown] @Deprecated('Use "lightUpDown" instead.') @@ -90979,7 +90979,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down?style=thin /// Up Down Black Arrow, arrow, arrows-v, expand, portrait, resize, tall, up-down arrow, vertical - static const IconData thinUpDown = IconDataThin(0xf338); + static const IconData thinUpDown = IconData(0xf338, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt-v for icon [thinUpDown] @Deprecated('Use "thinUpDown" instead.') @@ -90989,7 +90989,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down-left-right?style=solid /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData solidUpDownLeftRight = IconDataSolid(0xf0b2); + static const IconData solidUpDownLeftRight = IconData(0xf0b2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt for icon [solidUpDownLeftRight] @Deprecated('Use "solidUpDownLeftRight" instead.') @@ -90999,7 +90999,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down-left-right?style=regular /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData upDownLeftRight = IconDataRegular(0xf0b2); + static const IconData upDownLeftRight = IconData(0xf0b2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt for icon [upDownLeftRight] @Deprecated('Use "upDownLeftRight" instead.') @@ -91009,7 +91009,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down-left-right?style=light /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData lightUpDownLeftRight = IconDataLight(0xf0b2); + static const IconData lightUpDownLeftRight = IconData(0xf0b2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt for icon [lightUpDownLeftRight] @Deprecated('Use "lightUpDownLeftRight" instead.') @@ -91019,7 +91019,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-down-left-right?style=thin /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData thinUpDownLeftRight = IconDataThin(0xf0b2); + static const IconData thinUpDownLeftRight = IconData(0xf0b2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrows-alt for icon [thinUpDownLeftRight] @Deprecated('Use "thinUpDownLeftRight" instead.') @@ -91029,55 +91029,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-from-bracket?style=solid /// import, share, transfer, upgrade, upload - static const IconData solidUpFromBracket = IconDataSolid(0xe590); + static const IconData solidUpFromBracket = IconData(0xe590, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Up From Bracket icon /// /// https://fontawesome.com/icons/up-from-bracket?style=regular /// import, share, transfer, upgrade, upload - static const IconData upFromBracket = IconDataRegular(0xe590); + static const IconData upFromBracket = IconData(0xe590, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Up From Bracket icon /// /// https://fontawesome.com/icons/up-from-bracket?style=light /// import, share, transfer, upgrade, upload - static const IconData lightUpFromBracket = IconDataLight(0xe590); + static const IconData lightUpFromBracket = IconData(0xe590, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Up From Bracket icon /// /// https://fontawesome.com/icons/up-from-bracket?style=thin /// import, share, transfer, upgrade, upload - static const IconData thinUpFromBracket = IconDataThin(0xe590); + static const IconData thinUpFromBracket = IconData(0xe590, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Up From Dotted Line icon /// /// https://fontawesome.com/icons/up-from-dotted-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidUpFromDottedLine = IconDataSolid(0xe456); + static const IconData solidUpFromDottedLine = IconData(0xe456, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Up From Dotted Line icon /// /// https://fontawesome.com/icons/up-from-dotted-line?style=regular /// import, transfer, upgrade, upload - static const IconData upFromDottedLine = IconDataRegular(0xe456); + static const IconData upFromDottedLine = IconData(0xe456, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Up From Dotted Line icon /// /// https://fontawesome.com/icons/up-from-dotted-line?style=light /// import, transfer, upgrade, upload - static const IconData lightUpFromDottedLine = IconDataLight(0xe456); + static const IconData lightUpFromDottedLine = IconData(0xe456, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Up From Dotted Line icon /// /// https://fontawesome.com/icons/up-from-dotted-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinUpFromDottedLine = IconDataThin(0xe456); + static const IconData thinUpFromDottedLine = IconData(0xe456, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Up From Line icon /// /// https://fontawesome.com/icons/up-from-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidUpFromLine = IconDataSolid(0xf346); + static const IconData solidUpFromLine = IconData(0xf346, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-bottom for icon [solidUpFromLine] @Deprecated('Use "solidUpFromLine" instead.') @@ -91087,7 +91087,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-from-line?style=regular /// import, transfer, upgrade, upload - static const IconData upFromLine = IconDataRegular(0xf346); + static const IconData upFromLine = IconData(0xf346, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-bottom for icon [upFromLine] @Deprecated('Use "upFromLine" instead.') @@ -91097,7 +91097,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-from-line?style=light /// import, transfer, upgrade, upload - static const IconData lightUpFromLine = IconDataLight(0xf346); + static const IconData lightUpFromLine = IconData(0xf346, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-bottom for icon [lightUpFromLine] @Deprecated('Use "lightUpFromLine" instead.') @@ -91107,7 +91107,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-from-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinUpFromLine = IconDataThin(0xf346); + static const IconData thinUpFromLine = IconData(0xf346, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-from-bottom for icon [thinUpFromLine] @Deprecated('Use "thinUpFromLine" instead.') @@ -91117,31 +91117,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-left?style=solid /// North West Black Arrow, diagonal, direction, northwest - static const IconData solidUpLeft = IconDataSolid(0xe2bd); + static const IconData solidUpLeft = IconData(0xe2bd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Up Left icon /// /// https://fontawesome.com/icons/up-left?style=regular /// North West Black Arrow, diagonal, direction, northwest - static const IconData upLeft = IconDataRegular(0xe2bd); + static const IconData upLeft = IconData(0xe2bd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Up Left icon /// /// https://fontawesome.com/icons/up-left?style=light /// North West Black Arrow, diagonal, direction, northwest - static const IconData lightUpLeft = IconDataLight(0xe2bd); + static const IconData lightUpLeft = IconData(0xe2bd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Up Left icon /// /// https://fontawesome.com/icons/up-left?style=thin /// North West Black Arrow, diagonal, direction, northwest - static const IconData thinUpLeft = IconDataThin(0xe2bd); + static const IconData thinUpLeft = IconData(0xe2bd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Up Long icon /// /// https://fontawesome.com/icons/up-long?style=solid /// long-arrow-up, upgrade, upload - static const IconData solidUpLong = IconDataSolid(0xf30c); + static const IconData solidUpLong = IconData(0xf30c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-up for icon [solidUpLong] @Deprecated('Use "solidUpLong" instead.') @@ -91151,7 +91151,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-long?style=regular /// long-arrow-up, upgrade, upload - static const IconData upLong = IconDataRegular(0xf30c); + static const IconData upLong = IconData(0xf30c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-up for icon [upLong] @Deprecated('Use "upLong" instead.') @@ -91161,7 +91161,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-long?style=light /// long-arrow-up, upgrade, upload - static const IconData lightUpLong = IconDataLight(0xf30c); + static const IconData lightUpLong = IconData(0xf30c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-up for icon [lightUpLong] @Deprecated('Use "lightUpLong" instead.') @@ -91171,7 +91171,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-long?style=thin /// long-arrow-up, upgrade, upload - static const IconData thinUpLong = IconDataThin(0xf30c); + static const IconData thinUpLong = IconData(0xf30c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias long-arrow-alt-up for icon [thinUpLong] @Deprecated('Use "thinUpLong" instead.') @@ -91181,32 +91181,32 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right?style=solid /// North East Black Arrow, diagonal, direction, northeast - static const IconData solidUpRight = IconDataSolid(0xe2be); + static const IconData solidUpRight = IconData(0xe2be, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Up Right icon /// /// https://fontawesome.com/icons/up-right?style=regular /// North East Black Arrow, diagonal, direction, northeast - static const IconData upRight = IconDataRegular(0xe2be); + static const IconData upRight = IconData(0xe2be, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Up Right icon /// /// https://fontawesome.com/icons/up-right?style=light /// North East Black Arrow, diagonal, direction, northeast - static const IconData lightUpRight = IconDataLight(0xe2be); + static const IconData lightUpRight = IconData(0xe2be, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Up Right icon /// /// https://fontawesome.com/icons/up-right?style=thin /// North East Black Arrow, diagonal, direction, northeast - static const IconData thinUpRight = IconDataThin(0xe2be); + static const IconData thinUpRight = IconData(0xe2be, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Up Right And Down Left From Center icon /// /// https://fontawesome.com/icons/up-right-and-down-left-from-center?style=solid /// maximize, resize, scale, arrows, bigger, enlarge, expand, fullscreen, resize, size static const IconData solidUpRightAndDownLeftFromCenter = - IconDataSolid(0xf424); + IconData(0xf424, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias expand-alt for icon [solidUpRightAndDownLeftFromCenter] @Deprecated('Use "solidUpRightAndDownLeftFromCenter" instead.') @@ -91216,7 +91216,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-and-down-left-from-center?style=regular /// maximize, resize, scale, arrows, bigger, enlarge, expand, fullscreen, resize, size - static const IconData upRightAndDownLeftFromCenter = IconDataRegular(0xf424); + static const IconData upRightAndDownLeftFromCenter = IconData(0xf424, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias expand-alt for icon [upRightAndDownLeftFromCenter] @Deprecated('Use "upRightAndDownLeftFromCenter" instead.') @@ -91227,7 +91227,7 @@ class FontAwesomeIcons { /// https://fontawesome.com/icons/up-right-and-down-left-from-center?style=light /// maximize, resize, scale, arrows, bigger, enlarge, expand, fullscreen, resize, size static const IconData lightUpRightAndDownLeftFromCenter = - IconDataLight(0xf424); + IconData(0xf424, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias expand-alt for icon [lightUpRightAndDownLeftFromCenter] @Deprecated('Use "lightUpRightAndDownLeftFromCenter" instead.') @@ -91237,7 +91237,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-and-down-left-from-center?style=thin /// maximize, resize, scale, arrows, bigger, enlarge, expand, fullscreen, resize, size - static const IconData thinUpRightAndDownLeftFromCenter = IconDataThin(0xf424); + static const IconData thinUpRightAndDownLeftFromCenter = IconData(0xf424, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias expand-alt for icon [thinUpRightAndDownLeftFromCenter] @Deprecated('Use "thinUpRightAndDownLeftFromCenter" instead.') @@ -91247,7 +91247,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-from-square?style=solid /// external-link, new, open, share, upgrade - static const IconData solidUpRightFromSquare = IconDataSolid(0xf35d); + static const IconData solidUpRightFromSquare = IconData(0xf35d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias external-link-alt for icon [solidUpRightFromSquare] @Deprecated('Use "solidUpRightFromSquare" instead.') @@ -91257,7 +91257,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-from-square?style=regular /// external-link, new, open, share, upgrade - static const IconData upRightFromSquare = IconDataRegular(0xf35d); + static const IconData upRightFromSquare = IconData(0xf35d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias external-link-alt for icon [upRightFromSquare] @Deprecated('Use "upRightFromSquare" instead.') @@ -91267,7 +91267,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-from-square?style=light /// external-link, new, open, share, upgrade - static const IconData lightUpRightFromSquare = IconDataLight(0xf35d); + static const IconData lightUpRightFromSquare = IconData(0xf35d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias external-link-alt for icon [lightUpRightFromSquare] @Deprecated('Use "lightUpRightFromSquare" instead.') @@ -91277,7 +91277,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-right-from-square?style=thin /// external-link, new, open, share, upgrade - static const IconData thinUpRightFromSquare = IconDataThin(0xf35d); + static const IconData thinUpRightFromSquare = IconData(0xf35d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias external-link-alt for icon [thinUpRightFromSquare] @Deprecated('Use "thinUpRightFromSquare" instead.') @@ -91287,31 +91287,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-to-dotted-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidUpToDottedLine = IconDataSolid(0xe457); + static const IconData solidUpToDottedLine = IconData(0xe457, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Up To Dotted Line icon /// /// https://fontawesome.com/icons/up-to-dotted-line?style=regular /// import, transfer, upgrade, upload - static const IconData upToDottedLine = IconDataRegular(0xe457); + static const IconData upToDottedLine = IconData(0xe457, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Up To Dotted Line icon /// /// https://fontawesome.com/icons/up-to-dotted-line?style=light /// import, transfer, upgrade, upload - static const IconData lightUpToDottedLine = IconDataLight(0xe457); + static const IconData lightUpToDottedLine = IconData(0xe457, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Up To Dotted Line icon /// /// https://fontawesome.com/icons/up-to-dotted-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinUpToDottedLine = IconDataThin(0xe457); + static const IconData thinUpToDottedLine = IconData(0xe457, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Up To Line icon /// /// https://fontawesome.com/icons/up-to-line?style=solid /// import, transfer, upgrade, upload - static const IconData solidUpToLine = IconDataSolid(0xf34d); + static const IconData solidUpToLine = IconData(0xf34d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-top for icon [solidUpToLine] @Deprecated('Use "solidUpToLine" instead.') @@ -91321,7 +91321,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-to-line?style=regular /// import, transfer, upgrade, upload - static const IconData upToLine = IconDataRegular(0xf34d); + static const IconData upToLine = IconData(0xf34d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-top for icon [upToLine] @Deprecated('Use "upToLine" instead.') @@ -91331,7 +91331,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-to-line?style=light /// import, transfer, upgrade, upload - static const IconData lightUpToLine = IconDataLight(0xf34d); + static const IconData lightUpToLine = IconData(0xf34d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-top for icon [lightUpToLine] @Deprecated('Use "lightUpToLine" instead.') @@ -91341,7 +91341,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/up-to-line?style=thin /// import, transfer, upgrade, upload - static const IconData thinUpToLine = IconDataThin(0xf34d); + static const IconData thinUpToLine = IconData(0xf34d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias arrow-alt-to-top for icon [thinUpToLine] @Deprecated('Use "thinUpToLine" instead.') @@ -91351,287 +91351,287 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/upload?style=solid /// hard drive, import, publish, upgrade - static const IconData solidUpload = IconDataSolid(0xf093); + static const IconData solidUpload = IconData(0xf093, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Upload icon /// /// https://fontawesome.com/icons/upload?style=regular /// hard drive, import, publish, upgrade - static const IconData upload = IconDataRegular(0xf093); + static const IconData upload = IconData(0xf093, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Upload icon /// /// https://fontawesome.com/icons/upload?style=light /// hard drive, import, publish, upgrade - static const IconData lightUpload = IconDataLight(0xf093); + static const IconData lightUpload = IconData(0xf093, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Upload icon /// /// https://fontawesome.com/icons/upload?style=thin /// hard drive, import, publish, upgrade - static const IconData thinUpload = IconDataThin(0xf093); + static const IconData thinUpload = IconData(0xf093, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands UPS icon /// /// https://fontawesome.com/icons/ups?style=brands /// United Parcel Service, package, shipping - static const IconData ups = IconDataBrands(0xf7e0); + static const IconData ups = IconData(0xf7e0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Upwork icon /// /// https://fontawesome.com/icons/upwork?style=brands - static const IconData upwork = IconDataBrands(0xe641); + static const IconData upwork = IconData(0xe641, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands USB icon /// /// https://fontawesome.com/icons/usb?style=brands - static const IconData usb = IconDataBrands(0xf287); + static const IconData usb = IconData(0xf287, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Usb Drive icon /// /// https://fontawesome.com/icons/usb-drive?style=solid /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData solidUsbDrive = IconDataSolid(0xf8e9); + static const IconData solidUsbDrive = IconData(0xf8e9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Usb Drive icon /// /// https://fontawesome.com/icons/usb-drive?style=regular /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData usbDrive = IconDataRegular(0xf8e9); + static const IconData usbDrive = IconData(0xf8e9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Usb Drive icon /// /// https://fontawesome.com/icons/usb-drive?style=light /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData lightUsbDrive = IconDataLight(0xf8e9); + static const IconData lightUsbDrive = IconData(0xf8e9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Usb Drive icon /// /// https://fontawesome.com/icons/usb-drive?style=thin /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData thinUsbDrive = IconDataThin(0xf8e9); + static const IconData thinUsbDrive = IconData(0xf8e9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User icon /// /// https://fontawesome.com/icons/user?style=solid /// adult, bust, bust in silhouette, default, employee, gender-neutral, person, profile, silhouette, uer, unspecified gender, username, users-people - static const IconData solidUser = IconDataSolid(0xf007); + static const IconData solidUser = IconData(0xf007, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User icon /// /// https://fontawesome.com/icons/user?style=regular /// adult, bust, bust in silhouette, default, employee, gender-neutral, person, profile, silhouette, uer, unspecified gender, username, users-people - static const IconData user = IconDataRegular(0xf007); + static const IconData user = IconData(0xf007, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User icon /// /// https://fontawesome.com/icons/user?style=light /// adult, bust, bust in silhouette, default, employee, gender-neutral, person, profile, silhouette, uer, unspecified gender, username, users-people - static const IconData lightUser = IconDataLight(0xf007); + static const IconData lightUser = IconData(0xf007, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User icon /// /// https://fontawesome.com/icons/user?style=thin /// adult, bust, bust in silhouette, default, employee, gender-neutral, person, profile, silhouette, uer, unspecified gender, username, users-people - static const IconData thinUser = IconDataThin(0xf007); + static const IconData thinUser = IconData(0xf007, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Alien icon /// /// https://fontawesome.com/icons/user-alien?style=solid /// ET, extraterrestrial, humanoid, monster, space, strange, uer, ufo - static const IconData solidUserAlien = IconDataSolid(0xe04a); + static const IconData solidUserAlien = IconData(0xe04a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Alien icon /// /// https://fontawesome.com/icons/user-alien?style=regular /// ET, extraterrestrial, humanoid, monster, space, strange, uer, ufo - static const IconData userAlien = IconDataRegular(0xe04a); + static const IconData userAlien = IconData(0xe04a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Alien icon /// /// https://fontawesome.com/icons/user-alien?style=light /// ET, extraterrestrial, humanoid, monster, space, strange, uer, ufo - static const IconData lightUserAlien = IconDataLight(0xe04a); + static const IconData lightUserAlien = IconData(0xe04a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Alien icon /// /// https://fontawesome.com/icons/user-alien?style=thin /// ET, extraterrestrial, humanoid, monster, space, strange, uer, ufo - static const IconData thinUserAlien = IconDataThin(0xe04a); + static const IconData thinUserAlien = IconData(0xe04a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Astronaut icon /// /// https://fontawesome.com/icons/user-astronaut?style=solid /// avatar, clothing, cosmonaut, nasa, space, suit, uer - static const IconData solidUserAstronaut = IconDataSolid(0xf4fb); + static const IconData solidUserAstronaut = IconData(0xf4fb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Astronaut icon /// /// https://fontawesome.com/icons/user-astronaut?style=regular /// avatar, clothing, cosmonaut, nasa, space, suit, uer - static const IconData userAstronaut = IconDataRegular(0xf4fb); + static const IconData userAstronaut = IconData(0xf4fb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Astronaut icon /// /// https://fontawesome.com/icons/user-astronaut?style=light /// avatar, clothing, cosmonaut, nasa, space, suit, uer - static const IconData lightUserAstronaut = IconDataLight(0xf4fb); + static const IconData lightUserAstronaut = IconData(0xf4fb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Astronaut icon /// /// https://fontawesome.com/icons/user-astronaut?style=thin /// avatar, clothing, cosmonaut, nasa, space, suit, uer - static const IconData thinUserAstronaut = IconDataThin(0xf4fb); + static const IconData thinUserAstronaut = IconData(0xf4fb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Bounty Hunter icon /// /// https://fontawesome.com/icons/user-bounty-hunter?style=solid /// beskar, boba fett, jango fett, mando, mandolorian, star wars, uer - static const IconData solidUserBountyHunter = IconDataSolid(0xe2bf); + static const IconData solidUserBountyHunter = IconData(0xe2bf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Bounty Hunter icon /// /// https://fontawesome.com/icons/user-bounty-hunter?style=regular /// beskar, boba fett, jango fett, mando, mandolorian, star wars, uer - static const IconData userBountyHunter = IconDataRegular(0xe2bf); + static const IconData userBountyHunter = IconData(0xe2bf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Bounty Hunter icon /// /// https://fontawesome.com/icons/user-bounty-hunter?style=light /// beskar, boba fett, jango fett, mando, mandolorian, star wars, uer - static const IconData lightUserBountyHunter = IconDataLight(0xe2bf); + static const IconData lightUserBountyHunter = IconData(0xe2bf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Bounty Hunter icon /// /// https://fontawesome.com/icons/user-bounty-hunter?style=thin /// beskar, boba fett, jango fett, mando, mandolorian, star wars, uer - static const IconData thinUserBountyHunter = IconDataThin(0xe2bf); + static const IconData thinUserBountyHunter = IconData(0xe2bf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Check icon /// /// https://fontawesome.com/icons/user-check?style=solid /// employee, enable, uer, users-people, validate, working - static const IconData solidUserCheck = IconDataSolid(0xf4fc); + static const IconData solidUserCheck = IconData(0xf4fc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Check icon /// /// https://fontawesome.com/icons/user-check?style=regular /// employee, enable, uer, users-people, validate, working - static const IconData userCheck = IconDataRegular(0xf4fc); + static const IconData userCheck = IconData(0xf4fc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Check icon /// /// https://fontawesome.com/icons/user-check?style=light /// employee, enable, uer, users-people, validate, working - static const IconData lightUserCheck = IconDataLight(0xf4fc); + static const IconData lightUserCheck = IconData(0xf4fc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Check icon /// /// https://fontawesome.com/icons/user-check?style=thin /// employee, enable, uer, users-people, validate, working - static const IconData thinUserCheck = IconDataThin(0xf4fc); + static const IconData thinUserCheck = IconData(0xf4fc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Chef icon /// /// https://fontawesome.com/icons/user-chef?style=solid /// chef, cook, dining, employee, food, kitchen, restaurant, uer - static const IconData solidUserChef = IconDataSolid(0xe3d2); + static const IconData solidUserChef = IconData(0xe3d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Chef icon /// /// https://fontawesome.com/icons/user-chef?style=regular /// chef, cook, dining, employee, food, kitchen, restaurant, uer - static const IconData userChef = IconDataRegular(0xe3d2); + static const IconData userChef = IconData(0xe3d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Chef icon /// /// https://fontawesome.com/icons/user-chef?style=light /// chef, cook, dining, employee, food, kitchen, restaurant, uer - static const IconData lightUserChef = IconDataLight(0xe3d2); + static const IconData lightUserChef = IconData(0xe3d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Chef icon /// /// https://fontawesome.com/icons/user-chef?style=thin /// chef, cook, dining, employee, food, kitchen, restaurant, uer - static const IconData thinUserChef = IconDataThin(0xe3d2); + static const IconData thinUserChef = IconData(0xe3d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Clock icon /// /// https://fontawesome.com/icons/user-clock?style=solid /// employee, uer, users-people - static const IconData solidUserClock = IconDataSolid(0xf4fd); + static const IconData solidUserClock = IconData(0xf4fd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Clock icon /// /// https://fontawesome.com/icons/user-clock?style=regular /// employee, uer, users-people - static const IconData userClock = IconDataRegular(0xf4fd); + static const IconData userClock = IconData(0xf4fd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Clock icon /// /// https://fontawesome.com/icons/user-clock?style=light /// employee, uer, users-people - static const IconData lightUserClock = IconDataLight(0xf4fd); + static const IconData lightUserClock = IconData(0xf4fd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Clock icon /// /// https://fontawesome.com/icons/user-clock?style=thin /// employee, uer, users-people - static const IconData thinUserClock = IconDataThin(0xf4fd); + static const IconData thinUserClock = IconData(0xf4fd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Cowboy icon /// /// https://fontawesome.com/icons/user-cowboy?style=solid /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, uer, western, woody, wrangler - static const IconData solidUserCowboy = IconDataSolid(0xf8ea); + static const IconData solidUserCowboy = IconData(0xf8ea, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Cowboy icon /// /// https://fontawesome.com/icons/user-cowboy?style=regular /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, uer, western, woody, wrangler - static const IconData userCowboy = IconDataRegular(0xf8ea); + static const IconData userCowboy = IconData(0xf8ea, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Cowboy icon /// /// https://fontawesome.com/icons/user-cowboy?style=light /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, uer, western, woody, wrangler - static const IconData lightUserCowboy = IconDataLight(0xf8ea); + static const IconData lightUserCowboy = IconData(0xf8ea, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Cowboy icon /// /// https://fontawesome.com/icons/user-cowboy?style=thin /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, uer, western, woody, wrangler - static const IconData thinUserCowboy = IconDataThin(0xf8ea); + static const IconData thinUserCowboy = IconData(0xf8ea, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Crown icon /// /// https://fontawesome.com/icons/user-crown?style=solid /// administrator, uer, users-people, vip - static const IconData solidUserCrown = IconDataSolid(0xf6a4); + static const IconData solidUserCrown = IconData(0xf6a4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Crown icon /// /// https://fontawesome.com/icons/user-crown?style=regular /// administrator, uer, users-people, vip - static const IconData userCrown = IconDataRegular(0xf6a4); + static const IconData userCrown = IconData(0xf6a4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Crown icon /// /// https://fontawesome.com/icons/user-crown?style=light /// administrator, uer, users-people, vip - static const IconData lightUserCrown = IconDataLight(0xf6a4); + static const IconData lightUserCrown = IconData(0xf6a4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Crown icon /// /// https://fontawesome.com/icons/user-crown?style=thin /// administrator, uer, users-people, vip - static const IconData thinUserCrown = IconDataThin(0xf6a4); + static const IconData thinUserCrown = IconData(0xf6a4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Doctor icon /// /// https://fontawesome.com/icons/user-doctor?style=solid /// covid-19, health, job, medical, nurse, occupation, physician, profile, surgeon, uer, worker - static const IconData solidUserDoctor = IconDataSolid(0xf0f0); + static const IconData solidUserDoctor = IconData(0xf0f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-md for icon [solidUserDoctor] @Deprecated('Use "solidUserDoctor" instead.') @@ -91641,7 +91641,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor?style=regular /// covid-19, health, job, medical, nurse, occupation, physician, profile, surgeon, uer, worker - static const IconData userDoctor = IconDataRegular(0xf0f0); + static const IconData userDoctor = IconData(0xf0f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-md for icon [userDoctor] @Deprecated('Use "userDoctor" instead.') @@ -91651,7 +91651,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor?style=light /// covid-19, health, job, medical, nurse, occupation, physician, profile, surgeon, uer, worker - static const IconData lightUserDoctor = IconDataLight(0xf0f0); + static const IconData lightUserDoctor = IconData(0xf0f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-md for icon [lightUserDoctor] @Deprecated('Use "lightUserDoctor" instead.') @@ -91661,7 +91661,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor?style=thin /// covid-19, health, job, medical, nurse, occupation, physician, profile, surgeon, uer, worker - static const IconData thinUserDoctor = IconDataThin(0xf0f0); + static const IconData thinUserDoctor = IconData(0xf0f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-md for icon [thinUserDoctor] @Deprecated('Use "thinUserDoctor" instead.') @@ -91671,55 +91671,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor-hair?style=solid /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData solidUserDoctorHair = IconDataSolid(0xe458); + static const IconData solidUserDoctorHair = IconData(0xe458, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Doctor Hair icon /// /// https://fontawesome.com/icons/user-doctor-hair?style=regular /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData userDoctorHair = IconDataRegular(0xe458); + static const IconData userDoctorHair = IconData(0xe458, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Doctor Hair icon /// /// https://fontawesome.com/icons/user-doctor-hair?style=light /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData lightUserDoctorHair = IconDataLight(0xe458); + static const IconData lightUserDoctorHair = IconData(0xe458, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Doctor Hair icon /// /// https://fontawesome.com/icons/user-doctor-hair?style=thin /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData thinUserDoctorHair = IconDataThin(0xe458); + static const IconData thinUserDoctorHair = IconData(0xe458, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Doctor Hair Long icon /// /// https://fontawesome.com/icons/user-doctor-hair-long?style=solid /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData solidUserDoctorHairLong = IconDataSolid(0xe459); + static const IconData solidUserDoctorHairLong = IconData(0xe459, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Doctor Hair Long icon /// /// https://fontawesome.com/icons/user-doctor-hair-long?style=regular /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData userDoctorHairLong = IconDataRegular(0xe459); + static const IconData userDoctorHairLong = IconData(0xe459, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Doctor Hair Long icon /// /// https://fontawesome.com/icons/user-doctor-hair-long?style=light /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData lightUserDoctorHairLong = IconDataLight(0xe459); + static const IconData lightUserDoctorHairLong = IconData(0xe459, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Doctor Hair Long icon /// /// https://fontawesome.com/icons/user-doctor-hair-long?style=thin /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon, uer - static const IconData thinUserDoctorHairLong = IconDataThin(0xe459); + static const IconData thinUserDoctorHairLong = IconData(0xe459, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Doctor Message icon /// /// https://fontawesome.com/icons/user-doctor-message?style=solid /// advice, answer, comment, diagnosis, opinion, prescription, uer - static const IconData solidUserDoctorMessage = IconDataSolid(0xf82e); + static const IconData solidUserDoctorMessage = IconData(0xf82e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-md-chat for icon [solidUserDoctorMessage] @Deprecated('Use "solidUserDoctorMessage" instead.') @@ -91729,7 +91729,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor-message?style=regular /// advice, answer, comment, diagnosis, opinion, prescription, uer - static const IconData userDoctorMessage = IconDataRegular(0xf82e); + static const IconData userDoctorMessage = IconData(0xf82e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-md-chat for icon [userDoctorMessage] @Deprecated('Use "userDoctorMessage" instead.') @@ -91739,7 +91739,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor-message?style=light /// advice, answer, comment, diagnosis, opinion, prescription, uer - static const IconData lightUserDoctorMessage = IconDataLight(0xf82e); + static const IconData lightUserDoctorMessage = IconData(0xf82e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-md-chat for icon [lightUserDoctorMessage] @Deprecated('Use "lightUserDoctorMessage" instead.') @@ -91749,7 +91749,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-doctor-message?style=thin /// advice, answer, comment, diagnosis, opinion, prescription, uer - static const IconData thinUserDoctorMessage = IconDataThin(0xf82e); + static const IconData thinUserDoctorMessage = IconData(0xf82e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-md-chat for icon [thinUserDoctorMessage] @Deprecated('Use "thinUserDoctorMessage" instead.') @@ -91759,7 +91759,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-gear?style=solid /// employee, together, uer, users-people - static const IconData solidUserGear = IconDataSolid(0xf4fe); + static const IconData solidUserGear = IconData(0xf4fe, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-cog for icon [solidUserGear] @Deprecated('Use "solidUserGear" instead.') @@ -91769,7 +91769,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-gear?style=regular /// employee, together, uer, users-people - static const IconData userGear = IconDataRegular(0xf4fe); + static const IconData userGear = IconData(0xf4fe, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-cog for icon [userGear] @Deprecated('Use "userGear" instead.') @@ -91779,7 +91779,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-gear?style=light /// employee, together, uer, users-people - static const IconData lightUserGear = IconDataLight(0xf4fe); + static const IconData lightUserGear = IconData(0xf4fe, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-cog for icon [lightUserGear] @Deprecated('Use "lightUserGear" instead.') @@ -91789,7 +91789,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-gear?style=thin /// employee, together, uer, users-people - static const IconData thinUserGear = IconDataThin(0xf4fe); + static const IconData thinUserGear = IconData(0xf4fe, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-cog for icon [thinUserGear] @Deprecated('Use "thinUserGear" instead.') @@ -91799,31 +91799,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-graduate?style=solid /// uer, users-people - static const IconData solidUserGraduate = IconDataSolid(0xf501); + static const IconData solidUserGraduate = IconData(0xf501, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Graduate icon /// /// https://fontawesome.com/icons/user-graduate?style=regular /// uer, users-people - static const IconData userGraduate = IconDataRegular(0xf501); + static const IconData userGraduate = IconData(0xf501, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Graduate icon /// /// https://fontawesome.com/icons/user-graduate?style=light /// uer, users-people - static const IconData lightUserGraduate = IconDataLight(0xf501); + static const IconData lightUserGraduate = IconData(0xf501, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Graduate icon /// /// https://fontawesome.com/icons/user-graduate?style=thin /// uer, users-people - static const IconData thinUserGraduate = IconDataThin(0xf501); + static const IconData thinUserGraduate = IconData(0xf501, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Group icon /// /// https://fontawesome.com/icons/user-group?style=solid /// bust, busts in silhouette, crowd, employee, silhouette, together, uer, users-people - static const IconData solidUserGroup = IconDataSolid(0xf500); + static const IconData solidUserGroup = IconData(0xf500, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-friends for icon [solidUserGroup] @Deprecated('Use "solidUserGroup" instead.') @@ -91833,7 +91833,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group?style=regular /// bust, busts in silhouette, crowd, employee, silhouette, together, uer, users-people - static const IconData userGroup = IconDataRegular(0xf500); + static const IconData userGroup = IconData(0xf500, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-friends for icon [userGroup] @Deprecated('Use "userGroup" instead.') @@ -91843,7 +91843,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group?style=light /// bust, busts in silhouette, crowd, employee, silhouette, together, uer, users-people - static const IconData lightUserGroup = IconDataLight(0xf500); + static const IconData lightUserGroup = IconData(0xf500, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-friends for icon [lightUserGroup] @Deprecated('Use "lightUserGroup" instead.') @@ -91853,7 +91853,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group?style=thin /// bust, busts in silhouette, crowd, employee, silhouette, together, uer, users-people - static const IconData thinUserGroup = IconDataThin(0xf500); + static const IconData thinUserGroup = IconData(0xf500, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-friends for icon [thinUserGroup] @Deprecated('Use "thinUserGroup" instead.') @@ -91863,7 +91863,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group-crown?style=solid /// administrator, crowd, together, uer, users-people, vip - static const IconData solidUserGroupCrown = IconDataSolid(0xf6a5); + static const IconData solidUserGroupCrown = IconData(0xf6a5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias users-crown for icon [solidUserGroupCrown] @Deprecated('Use "solidUserGroupCrown" instead.') @@ -91873,7 +91873,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group-crown?style=regular /// administrator, crowd, together, uer, users-people, vip - static const IconData userGroupCrown = IconDataRegular(0xf6a5); + static const IconData userGroupCrown = IconData(0xf6a5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias users-crown for icon [userGroupCrown] @Deprecated('Use "userGroupCrown" instead.') @@ -91883,7 +91883,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group-crown?style=light /// administrator, crowd, together, uer, users-people, vip - static const IconData lightUserGroupCrown = IconDataLight(0xf6a5); + static const IconData lightUserGroupCrown = IconData(0xf6a5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias users-crown for icon [lightUserGroupCrown] @Deprecated('Use "lightUserGroupCrown" instead.') @@ -91893,7 +91893,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group-crown?style=thin /// administrator, crowd, together, uer, users-people, vip - static const IconData thinUserGroupCrown = IconDataThin(0xf6a5); + static const IconData thinUserGroupCrown = IconData(0xf6a5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias users-crown for icon [thinUserGroupCrown] @Deprecated('Use "thinUserGroupCrown" instead.') @@ -91903,103 +91903,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-group-simple?style=solid /// busts in silhouette, silhouette, users-people, bust - static const IconData solidUserGroupSimple = IconDataSolid(0xe603); + static const IconData solidUserGroupSimple = IconData(0xe603, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Group Simple icon /// /// https://fontawesome.com/icons/user-group-simple?style=regular /// busts in silhouette, silhouette, users-people, bust - static const IconData userGroupSimple = IconDataRegular(0xe603); + static const IconData userGroupSimple = IconData(0xe603, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Group Simple icon /// /// https://fontawesome.com/icons/user-group-simple?style=light /// busts in silhouette, silhouette, users-people, bust - static const IconData lightUserGroupSimple = IconDataLight(0xe603); + static const IconData lightUserGroupSimple = IconData(0xe603, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Group Simple icon /// /// https://fontawesome.com/icons/user-group-simple?style=thin /// busts in silhouette, silhouette, users-people, bust - static const IconData thinUserGroupSimple = IconDataThin(0xe603); + static const IconData thinUserGroupSimple = IconData(0xe603, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Hair icon /// /// https://fontawesome.com/icons/user-hair?style=solid /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData solidUserHair = IconDataSolid(0xe45a); + static const IconData solidUserHair = IconData(0xe45a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Hair icon /// /// https://fontawesome.com/icons/user-hair?style=regular /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData userHair = IconDataRegular(0xe45a); + static const IconData userHair = IconData(0xe45a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Hair icon /// /// https://fontawesome.com/icons/user-hair?style=light /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData lightUserHair = IconDataLight(0xe45a); + static const IconData lightUserHair = IconData(0xe45a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Hair icon /// /// https://fontawesome.com/icons/user-hair?style=thin /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData thinUserHair = IconDataThin(0xe45a); + static const IconData thinUserHair = IconData(0xe45a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Hair Buns icon /// /// https://fontawesome.com/icons/user-hair-buns?style=solid /// hairstyle, leia, organa, princess, rebel, skywalker, star wars, uer - static const IconData solidUserHairBuns = IconDataSolid(0xe3d3); + static const IconData solidUserHairBuns = IconData(0xe3d3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Hair Buns icon /// /// https://fontawesome.com/icons/user-hair-buns?style=regular /// hairstyle, leia, organa, princess, rebel, skywalker, star wars, uer - static const IconData userHairBuns = IconDataRegular(0xe3d3); + static const IconData userHairBuns = IconData(0xe3d3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Hair Buns icon /// /// https://fontawesome.com/icons/user-hair-buns?style=light /// hairstyle, leia, organa, princess, rebel, skywalker, star wars, uer - static const IconData lightUserHairBuns = IconDataLight(0xe3d3); + static const IconData lightUserHairBuns = IconData(0xe3d3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Hair Buns icon /// /// https://fontawesome.com/icons/user-hair-buns?style=thin /// hairstyle, leia, organa, princess, rebel, skywalker, star wars, uer - static const IconData thinUserHairBuns = IconDataThin(0xe3d3); + static const IconData thinUserHairBuns = IconData(0xe3d3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Hair Long icon /// /// https://fontawesome.com/icons/user-hair-long?style=solid /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData solidUserHairLong = IconDataSolid(0xe45b); + static const IconData solidUserHairLong = IconData(0xe45b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Hair Long icon /// /// https://fontawesome.com/icons/user-hair-long?style=regular /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData userHairLong = IconDataRegular(0xe45b); + static const IconData userHairLong = IconData(0xe45b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Hair Long icon /// /// https://fontawesome.com/icons/user-hair-long?style=light /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData lightUserHairLong = IconDataLight(0xe45b); + static const IconData lightUserHairLong = IconData(0xe45b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Hair Long icon /// /// https://fontawesome.com/icons/user-hair-long?style=thin /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData thinUserHairLong = IconDataThin(0xe45b); + static const IconData thinUserHairLong = IconData(0xe45b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Hair Mullet icon /// /// https://fontawesome.com/icons/user-hair-mullet?style=solid /// business, mullet, party, uer - static const IconData solidUserHairMullet = IconDataSolid(0xe45c); + static const IconData solidUserHairMullet = IconData(0xe45c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias business-front for icon [solidUserHairMullet] @Deprecated('Use "solidUserHairMullet" instead.') @@ -92017,7 +92017,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-hair-mullet?style=regular /// business, mullet, party, uer - static const IconData userHairMullet = IconDataRegular(0xe45c); + static const IconData userHairMullet = IconData(0xe45c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias business-front for icon [userHairMullet] @Deprecated('Use "userHairMullet" instead.') @@ -92035,7 +92035,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-hair-mullet?style=light /// business, mullet, party, uer - static const IconData lightUserHairMullet = IconDataLight(0xe45c); + static const IconData lightUserHairMullet = IconData(0xe45c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias business-front for icon [lightUserHairMullet] @Deprecated('Use "lightUserHairMullet" instead.') @@ -92053,7 +92053,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-hair-mullet?style=thin /// business, mullet, party, uer - static const IconData thinUserHairMullet = IconDataThin(0xe45c); + static const IconData thinUserHairMullet = IconData(0xe45c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias business-front for icon [thinUserHairMullet] @Deprecated('Use "thinUserHairMullet" instead.') @@ -92071,31 +92071,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-headset?style=solid /// employee, uer, users-people - static const IconData solidUserHeadset = IconDataSolid(0xf82d); + static const IconData solidUserHeadset = IconData(0xf82d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Headset icon /// /// https://fontawesome.com/icons/user-headset?style=regular /// employee, uer, users-people - static const IconData userHeadset = IconDataRegular(0xf82d); + static const IconData userHeadset = IconData(0xf82d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Headset icon /// /// https://fontawesome.com/icons/user-headset?style=light /// employee, uer, users-people - static const IconData lightUserHeadset = IconDataLight(0xf82d); + static const IconData lightUserHeadset = IconData(0xf82d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Headset icon /// /// https://fontawesome.com/icons/user-headset?style=thin /// employee, uer, users-people - static const IconData thinUserHeadset = IconDataThin(0xf82d); + static const IconData thinUserHeadset = IconData(0xf82d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Helmet Safety icon /// /// https://fontawesome.com/icons/user-helmet-safety?style=solid /// construction, construction worker, employee, hardhat, hat, helmet, maintenance, safety, uer, worker - static const IconData solidUserHelmetSafety = IconDataSolid(0xf82c); + static const IconData solidUserHelmetSafety = IconData(0xf82c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-construction for icon [solidUserHelmetSafety] @Deprecated('Use "solidUserHelmetSafety" instead.') @@ -92109,7 +92109,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-helmet-safety?style=regular /// construction, construction worker, employee, hardhat, hat, helmet, maintenance, safety, uer, worker - static const IconData userHelmetSafety = IconDataRegular(0xf82c); + static const IconData userHelmetSafety = IconData(0xf82c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-construction for icon [userHelmetSafety] @Deprecated('Use "userHelmetSafety" instead.') @@ -92123,7 +92123,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-helmet-safety?style=light /// construction, construction worker, employee, hardhat, hat, helmet, maintenance, safety, uer, worker - static const IconData lightUserHelmetSafety = IconDataLight(0xf82c); + static const IconData lightUserHelmetSafety = IconData(0xf82c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-construction for icon [lightUserHelmetSafety] @Deprecated('Use "lightUserHelmetSafety" instead.') @@ -92137,7 +92137,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-helmet-safety?style=thin /// construction, construction worker, employee, hardhat, hat, helmet, maintenance, safety, uer, worker - static const IconData thinUserHelmetSafety = IconDataThin(0xf82c); + static const IconData thinUserHelmetSafety = IconData(0xf82c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-construction for icon [thinUserHelmetSafety] @Deprecated('Use "thinUserHelmetSafety" instead.') @@ -92151,31 +92151,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-injured?style=solid /// employee, uer, users-people - static const IconData solidUserInjured = IconDataSolid(0xf728); + static const IconData solidUserInjured = IconData(0xf728, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Injured icon /// /// https://fontawesome.com/icons/user-injured?style=regular /// employee, uer, users-people - static const IconData userInjured = IconDataRegular(0xf728); + static const IconData userInjured = IconData(0xf728, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Injured icon /// /// https://fontawesome.com/icons/user-injured?style=light /// employee, uer, users-people - static const IconData lightUserInjured = IconDataLight(0xf728); + static const IconData lightUserInjured = IconData(0xf728, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Injured icon /// /// https://fontawesome.com/icons/user-injured?style=thin /// employee, uer, users-people - static const IconData thinUserInjured = IconDataThin(0xf728); + static const IconData thinUserInjured = IconData(0xf728, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Large icon /// /// https://fontawesome.com/icons/user-large?style=solid /// employee, uer, users-people - static const IconData solidUserLarge = IconDataSolid(0xf406); + static const IconData solidUserLarge = IconData(0xf406, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-alt for icon [solidUserLarge] @Deprecated('Use "solidUserLarge" instead.') @@ -92185,7 +92185,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large?style=regular /// employee, uer, users-people - static const IconData userLarge = IconDataRegular(0xf406); + static const IconData userLarge = IconData(0xf406, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-alt for icon [userLarge] @Deprecated('Use "userLarge" instead.') @@ -92195,7 +92195,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large?style=light /// employee, uer, users-people - static const IconData lightUserLarge = IconDataLight(0xf406); + static const IconData lightUserLarge = IconData(0xf406, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-alt for icon [lightUserLarge] @Deprecated('Use "lightUserLarge" instead.') @@ -92205,7 +92205,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large?style=thin /// employee, uer, users-people - static const IconData thinUserLarge = IconDataThin(0xf406); + static const IconData thinUserLarge = IconData(0xf406, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-alt for icon [thinUserLarge] @Deprecated('Use "thinUserLarge" instead.') @@ -92215,7 +92215,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large-slash?style=solid /// disabled, disconnect, employee, uer, users-people - static const IconData solidUserLargeSlash = IconDataSolid(0xf4fa); + static const IconData solidUserLargeSlash = IconData(0xf4fa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-alt-slash for icon [solidUserLargeSlash] @Deprecated('Use "solidUserLargeSlash" instead.') @@ -92225,7 +92225,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large-slash?style=regular /// disabled, disconnect, employee, uer, users-people - static const IconData userLargeSlash = IconDataRegular(0xf4fa); + static const IconData userLargeSlash = IconData(0xf4fa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-alt-slash for icon [userLargeSlash] @Deprecated('Use "userLargeSlash" instead.') @@ -92235,7 +92235,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large-slash?style=light /// disabled, disconnect, employee, uer, users-people - static const IconData lightUserLargeSlash = IconDataLight(0xf4fa); + static const IconData lightUserLargeSlash = IconData(0xf4fa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-alt-slash for icon [lightUserLargeSlash] @Deprecated('Use "lightUserLargeSlash" instead.') @@ -92245,7 +92245,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-large-slash?style=thin /// disabled, disconnect, employee, uer, users-people - static const IconData thinUserLargeSlash = IconDataThin(0xf4fa); + static const IconData thinUserLargeSlash = IconData(0xf4fa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-alt-slash for icon [thinUserLargeSlash] @Deprecated('Use "thinUserLargeSlash" instead.') @@ -92255,199 +92255,199 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-lock?style=solid /// employee, padlock, privacy, uer, users-people - static const IconData solidUserLock = IconDataSolid(0xf502); + static const IconData solidUserLock = IconData(0xf502, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Lock icon /// /// https://fontawesome.com/icons/user-lock?style=regular /// employee, padlock, privacy, uer, users-people - static const IconData userLock = IconDataRegular(0xf502); + static const IconData userLock = IconData(0xf502, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Lock icon /// /// https://fontawesome.com/icons/user-lock?style=light /// employee, padlock, privacy, uer, users-people - static const IconData lightUserLock = IconDataLight(0xf502); + static const IconData lightUserLock = IconData(0xf502, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Lock icon /// /// https://fontawesome.com/icons/user-lock?style=thin /// employee, padlock, privacy, uer, users-people - static const IconData thinUserLock = IconDataThin(0xf502); + static const IconData thinUserLock = IconData(0xf502, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Magnifying Glass icon /// /// https://fontawesome.com/icons/user-magnifying-glass?style=solid /// bust, find, person, review, search, silhouette, user - static const IconData solidUserMagnifyingGlass = IconDataSolid(0xe5c5); + static const IconData solidUserMagnifyingGlass = IconData(0xe5c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Magnifying Glass icon /// /// https://fontawesome.com/icons/user-magnifying-glass?style=regular /// bust, find, person, review, search, silhouette, user - static const IconData userMagnifyingGlass = IconDataRegular(0xe5c5); + static const IconData userMagnifyingGlass = IconData(0xe5c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Magnifying Glass icon /// /// https://fontawesome.com/icons/user-magnifying-glass?style=light /// bust, find, person, review, search, silhouette, user - static const IconData lightUserMagnifyingGlass = IconDataLight(0xe5c5); + static const IconData lightUserMagnifyingGlass = IconData(0xe5c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Magnifying Glass icon /// /// https://fontawesome.com/icons/user-magnifying-glass?style=thin /// bust, find, person, review, search, silhouette, user - static const IconData thinUserMagnifyingGlass = IconDataThin(0xe5c5); + static const IconData thinUserMagnifyingGlass = IconData(0xe5c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Minus icon /// /// https://fontawesome.com/icons/user-minus?style=solid /// delete, employee, negative, remove, uer - static const IconData solidUserMinus = IconDataSolid(0xf503); + static const IconData solidUserMinus = IconData(0xf503, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Minus icon /// /// https://fontawesome.com/icons/user-minus?style=regular /// delete, employee, negative, remove, uer - static const IconData userMinus = IconDataRegular(0xf503); + static const IconData userMinus = IconData(0xf503, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Minus icon /// /// https://fontawesome.com/icons/user-minus?style=light /// delete, employee, negative, remove, uer - static const IconData lightUserMinus = IconDataLight(0xf503); + static const IconData lightUserMinus = IconData(0xf503, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Minus icon /// /// https://fontawesome.com/icons/user-minus?style=thin /// delete, employee, negative, remove, uer - static const IconData thinUserMinus = IconDataThin(0xf503); + static const IconData thinUserMinus = IconData(0xf503, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Music icon /// /// https://fontawesome.com/icons/user-music?style=solid /// artist, music, musician, singer, uer - static const IconData solidUserMusic = IconDataSolid(0xf8eb); + static const IconData solidUserMusic = IconData(0xf8eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Music icon /// /// https://fontawesome.com/icons/user-music?style=regular /// artist, music, musician, singer, uer - static const IconData userMusic = IconDataRegular(0xf8eb); + static const IconData userMusic = IconData(0xf8eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Music icon /// /// https://fontawesome.com/icons/user-music?style=light /// artist, music, musician, singer, uer - static const IconData lightUserMusic = IconDataLight(0xf8eb); + static const IconData lightUserMusic = IconData(0xf8eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Music icon /// /// https://fontawesome.com/icons/user-music?style=thin /// artist, music, musician, singer, uer - static const IconData thinUserMusic = IconDataThin(0xf8eb); + static const IconData thinUserMusic = IconData(0xf8eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Ninja icon /// /// https://fontawesome.com/icons/user-ninja?style=solid /// assassin, avatar, dangerous, deadly, fighter, hidden, ninja, sneaky, stealth, uer - static const IconData solidUserNinja = IconDataSolid(0xf504); + static const IconData solidUserNinja = IconData(0xf504, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Ninja icon /// /// https://fontawesome.com/icons/user-ninja?style=regular /// assassin, avatar, dangerous, deadly, fighter, hidden, ninja, sneaky, stealth, uer - static const IconData userNinja = IconDataRegular(0xf504); + static const IconData userNinja = IconData(0xf504, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Ninja icon /// /// https://fontawesome.com/icons/user-ninja?style=light /// assassin, avatar, dangerous, deadly, fighter, hidden, ninja, sneaky, stealth, uer - static const IconData lightUserNinja = IconDataLight(0xf504); + static const IconData lightUserNinja = IconData(0xf504, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Ninja icon /// /// https://fontawesome.com/icons/user-ninja?style=thin /// assassin, avatar, dangerous, deadly, fighter, hidden, ninja, sneaky, stealth, uer - static const IconData thinUserNinja = IconDataThin(0xf504); + static const IconData thinUserNinja = IconData(0xf504, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Nurse icon /// /// https://fontawesome.com/icons/user-nurse?style=solid /// covid-19, doctor, health, md, medical, midwife, physician, practitioner, surgeon, uer, worker - static const IconData solidUserNurse = IconDataSolid(0xf82f); + static const IconData solidUserNurse = IconData(0xf82f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Nurse icon /// /// https://fontawesome.com/icons/user-nurse?style=regular /// covid-19, doctor, health, md, medical, midwife, physician, practitioner, surgeon, uer, worker - static const IconData userNurse = IconDataRegular(0xf82f); + static const IconData userNurse = IconData(0xf82f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Nurse icon /// /// https://fontawesome.com/icons/user-nurse?style=light /// covid-19, doctor, health, md, medical, midwife, physician, practitioner, surgeon, uer, worker - static const IconData lightUserNurse = IconDataLight(0xf82f); + static const IconData lightUserNurse = IconData(0xf82f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Nurse icon /// /// https://fontawesome.com/icons/user-nurse?style=thin /// covid-19, doctor, health, md, medical, midwife, physician, practitioner, surgeon, uer, worker - static const IconData thinUserNurse = IconDataThin(0xf82f); + static const IconData thinUserNurse = IconData(0xf82f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Nurse Hair icon /// /// https://fontawesome.com/icons/user-nurse-hair?style=solid /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData solidUserNurseHair = IconDataSolid(0xe45d); + static const IconData solidUserNurseHair = IconData(0xe45d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Nurse Hair icon /// /// https://fontawesome.com/icons/user-nurse-hair?style=regular /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData userNurseHair = IconDataRegular(0xe45d); + static const IconData userNurseHair = IconData(0xe45d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Nurse Hair icon /// /// https://fontawesome.com/icons/user-nurse-hair?style=light /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData lightUserNurseHair = IconDataLight(0xe45d); + static const IconData lightUserNurseHair = IconData(0xe45d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Nurse Hair icon /// /// https://fontawesome.com/icons/user-nurse-hair?style=thin /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData thinUserNurseHair = IconDataThin(0xe45d); + static const IconData thinUserNurseHair = IconData(0xe45d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Nurse Hair Long icon /// /// https://fontawesome.com/icons/user-nurse-hair-long?style=solid /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData solidUserNurseHairLong = IconDataSolid(0xe45e); + static const IconData solidUserNurseHairLong = IconData(0xe45e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Nurse Hair Long icon /// /// https://fontawesome.com/icons/user-nurse-hair-long?style=regular /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData userNurseHairLong = IconDataRegular(0xe45e); + static const IconData userNurseHairLong = IconData(0xe45e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Nurse Hair Long icon /// /// https://fontawesome.com/icons/user-nurse-hair-long?style=light /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData lightUserNurseHairLong = IconDataLight(0xe45e); + static const IconData lightUserNurseHairLong = IconData(0xe45e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Nurse Hair Long icon /// /// https://fontawesome.com/icons/user-nurse-hair-long?style=thin /// doctor, md, midwife, physician, practitioner, surgeon, uer - static const IconData thinUserNurseHairLong = IconDataThin(0xe45e); + static const IconData thinUserNurseHairLong = IconData(0xe45e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Pen icon /// /// https://fontawesome.com/icons/user-pen?style=solid /// employee, modify, uer, users-people - static const IconData solidUserPen = IconDataSolid(0xf4ff); + static const IconData solidUserPen = IconData(0xf4ff, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-edit for icon [solidUserPen] @Deprecated('Use "solidUserPen" instead.') @@ -92457,7 +92457,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-pen?style=regular /// employee, modify, uer, users-people - static const IconData userPen = IconDataRegular(0xf4ff); + static const IconData userPen = IconData(0xf4ff, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-edit for icon [userPen] @Deprecated('Use "userPen" instead.') @@ -92467,7 +92467,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-pen?style=light /// employee, modify, uer, users-people - static const IconData lightUserPen = IconDataLight(0xf4ff); + static const IconData lightUserPen = IconData(0xf4ff, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-edit for icon [lightUserPen] @Deprecated('Use "lightUserPen" instead.') @@ -92477,7 +92477,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-pen?style=thin /// employee, modify, uer, users-people - static const IconData thinUserPen = IconDataThin(0xf4ff); + static const IconData thinUserPen = IconData(0xf4ff, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-edit for icon [thinUserPen] @Deprecated('Use "thinUserPen" instead.') @@ -92487,487 +92487,487 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-pilot?style=solid /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData solidUserPilot = IconDataSolid(0xe2c0); + static const IconData solidUserPilot = IconData(0xe2c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Pilot icon /// /// https://fontawesome.com/icons/user-pilot?style=regular /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData userPilot = IconDataRegular(0xe2c0); + static const IconData userPilot = IconData(0xe2c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Pilot icon /// /// https://fontawesome.com/icons/user-pilot?style=light /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData lightUserPilot = IconDataLight(0xe2c0); + static const IconData lightUserPilot = IconData(0xe2c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Pilot icon /// /// https://fontawesome.com/icons/user-pilot?style=thin /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData thinUserPilot = IconDataThin(0xe2c0); + static const IconData thinUserPilot = IconData(0xe2c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Pilot Tie icon /// /// https://fontawesome.com/icons/user-pilot-tie?style=solid /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData solidUserPilotTie = IconDataSolid(0xe2c1); + static const IconData solidUserPilotTie = IconData(0xe2c1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Pilot Tie icon /// /// https://fontawesome.com/icons/user-pilot-tie?style=regular /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData userPilotTie = IconDataRegular(0xe2c1); + static const IconData userPilotTie = IconData(0xe2c1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Pilot Tie icon /// /// https://fontawesome.com/icons/user-pilot-tie?style=light /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData lightUserPilotTie = IconDataLight(0xe2c1); + static const IconData lightUserPilotTie = IconData(0xe2c1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Pilot Tie icon /// /// https://fontawesome.com/icons/user-pilot-tie?style=thin /// airplane, airport, flight, fly, navigate, pilot, uer - static const IconData thinUserPilotTie = IconDataThin(0xe2c1); + static const IconData thinUserPilotTie = IconData(0xe2c1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Plus icon /// /// https://fontawesome.com/icons/user-plus?style=solid /// add, avatar, employee, follow, positive, sign up, signup, team, uer - static const IconData solidUserPlus = IconDataSolid(0xf234); + static const IconData solidUserPlus = IconData(0xf234, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Plus icon /// /// https://fontawesome.com/icons/user-plus?style=regular /// add, avatar, employee, follow, positive, sign up, signup, team, uer - static const IconData userPlus = IconDataRegular(0xf234); + static const IconData userPlus = IconData(0xf234, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Plus icon /// /// https://fontawesome.com/icons/user-plus?style=light /// add, avatar, employee, follow, positive, sign up, signup, team, uer - static const IconData lightUserPlus = IconDataLight(0xf234); + static const IconData lightUserPlus = IconData(0xf234, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Plus icon /// /// https://fontawesome.com/icons/user-plus?style=thin /// add, avatar, employee, follow, positive, sign up, signup, team, uer - static const IconData thinUserPlus = IconDataThin(0xf234); + static const IconData thinUserPlus = IconData(0xf234, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Police icon /// /// https://fontawesome.com/icons/user-police?style=solid /// cop, five-o, law enforcement, officer, patrol, police, police officer, trooper, uer - static const IconData solidUserPolice = IconDataSolid(0xe333); + static const IconData solidUserPolice = IconData(0xe333, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Police icon /// /// https://fontawesome.com/icons/user-police?style=regular /// cop, five-o, law enforcement, officer, patrol, police, police officer, trooper, uer - static const IconData userPolice = IconDataRegular(0xe333); + static const IconData userPolice = IconData(0xe333, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Police icon /// /// https://fontawesome.com/icons/user-police?style=light /// cop, five-o, law enforcement, officer, patrol, police, police officer, trooper, uer - static const IconData lightUserPolice = IconDataLight(0xe333); + static const IconData lightUserPolice = IconData(0xe333, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Police icon /// /// https://fontawesome.com/icons/user-police?style=thin /// cop, five-o, law enforcement, officer, patrol, police, police officer, trooper, uer - static const IconData thinUserPolice = IconDataThin(0xe333); + static const IconData thinUserPolice = IconData(0xe333, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Police Tie icon /// /// https://fontawesome.com/icons/user-police-tie?style=solid /// cop, five-o, law enforcement, officer, patrol, police, trooper, uer - static const IconData solidUserPoliceTie = IconDataSolid(0xe334); + static const IconData solidUserPoliceTie = IconData(0xe334, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Police Tie icon /// /// https://fontawesome.com/icons/user-police-tie?style=regular /// cop, five-o, law enforcement, officer, patrol, police, trooper, uer - static const IconData userPoliceTie = IconDataRegular(0xe334); + static const IconData userPoliceTie = IconData(0xe334, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Police Tie icon /// /// https://fontawesome.com/icons/user-police-tie?style=light /// cop, five-o, law enforcement, officer, patrol, police, trooper, uer - static const IconData lightUserPoliceTie = IconDataLight(0xe334); + static const IconData lightUserPoliceTie = IconData(0xe334, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Police Tie icon /// /// https://fontawesome.com/icons/user-police-tie?style=thin /// cop, five-o, law enforcement, officer, patrol, police, trooper, uer - static const IconData thinUserPoliceTie = IconDataThin(0xe334); + static const IconData thinUserPoliceTie = IconData(0xe334, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Robot icon /// /// https://fontawesome.com/icons/user-robot?style=solid /// android, automate, computer, cyborg, rosie, uer - static const IconData solidUserRobot = IconDataSolid(0xe04b); + static const IconData solidUserRobot = IconData(0xe04b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Robot icon /// /// https://fontawesome.com/icons/user-robot?style=regular /// android, automate, computer, cyborg, rosie, uer - static const IconData userRobot = IconDataRegular(0xe04b); + static const IconData userRobot = IconData(0xe04b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Robot icon /// /// https://fontawesome.com/icons/user-robot?style=light /// android, automate, computer, cyborg, rosie, uer - static const IconData lightUserRobot = IconDataLight(0xe04b); + static const IconData lightUserRobot = IconData(0xe04b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Robot icon /// /// https://fontawesome.com/icons/user-robot?style=thin /// android, automate, computer, cyborg, rosie, uer - static const IconData thinUserRobot = IconDataThin(0xe04b); + static const IconData thinUserRobot = IconData(0xe04b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Robot Xmarks icon /// /// https://fontawesome.com/icons/user-robot-xmarks?style=solid /// android, automate, computer, cyborg, dead, offline, uer - static const IconData solidUserRobotXmarks = IconDataSolid(0xe4a7); + static const IconData solidUserRobotXmarks = IconData(0xe4a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Robot Xmarks icon /// /// https://fontawesome.com/icons/user-robot-xmarks?style=regular /// android, automate, computer, cyborg, dead, offline, uer - static const IconData userRobotXmarks = IconDataRegular(0xe4a7); + static const IconData userRobotXmarks = IconData(0xe4a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Robot Xmarks icon /// /// https://fontawesome.com/icons/user-robot-xmarks?style=light /// android, automate, computer, cyborg, dead, offline, uer - static const IconData lightUserRobotXmarks = IconDataLight(0xe4a7); + static const IconData lightUserRobotXmarks = IconData(0xe4a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Robot Xmarks icon /// /// https://fontawesome.com/icons/user-robot-xmarks?style=thin /// android, automate, computer, cyborg, dead, offline, uer - static const IconData thinUserRobotXmarks = IconDataThin(0xe4a7); + static const IconData thinUserRobotXmarks = IconData(0xe4a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Secret icon /// /// https://fontawesome.com/icons/user-secret?style=solid /// detective, sleuth, spy, uer, users-people - static const IconData solidUserSecret = IconDataSolid(0xf21b); + static const IconData solidUserSecret = IconData(0xf21b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Secret icon /// /// https://fontawesome.com/icons/user-secret?style=regular /// detective, sleuth, spy, uer, users-people - static const IconData userSecret = IconDataRegular(0xf21b); + static const IconData userSecret = IconData(0xf21b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Secret icon /// /// https://fontawesome.com/icons/user-secret?style=light /// detective, sleuth, spy, uer, users-people - static const IconData lightUserSecret = IconDataLight(0xf21b); + static const IconData lightUserSecret = IconData(0xf21b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Secret icon /// /// https://fontawesome.com/icons/user-secret?style=thin /// detective, sleuth, spy, uer, users-people - static const IconData thinUserSecret = IconDataThin(0xf21b); + static const IconData thinUserSecret = IconData(0xf21b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Shakespeare icon /// /// https://fontawesome.com/icons/user-shakespeare?style=solid /// bard, playwright, theater, theatre, uer - static const IconData solidUserShakespeare = IconDataSolid(0xe2c2); + static const IconData solidUserShakespeare = IconData(0xe2c2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Shakespeare icon /// /// https://fontawesome.com/icons/user-shakespeare?style=regular /// bard, playwright, theater, theatre, uer - static const IconData userShakespeare = IconDataRegular(0xe2c2); + static const IconData userShakespeare = IconData(0xe2c2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Shakespeare icon /// /// https://fontawesome.com/icons/user-shakespeare?style=light /// bard, playwright, theater, theatre, uer - static const IconData lightUserShakespeare = IconDataLight(0xe2c2); + static const IconData lightUserShakespeare = IconData(0xe2c2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Shakespeare icon /// /// https://fontawesome.com/icons/user-shakespeare?style=thin /// bard, playwright, theater, theatre, uer - static const IconData thinUserShakespeare = IconDataThin(0xe2c2); + static const IconData thinUserShakespeare = IconData(0xe2c2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Shield icon /// /// https://fontawesome.com/icons/user-shield?style=solid /// employee, protect, safety, uer - static const IconData solidUserShield = IconDataSolid(0xf505); + static const IconData solidUserShield = IconData(0xf505, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Shield icon /// /// https://fontawesome.com/icons/user-shield?style=regular /// employee, protect, safety, uer - static const IconData userShield = IconDataRegular(0xf505); + static const IconData userShield = IconData(0xf505, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Shield icon /// /// https://fontawesome.com/icons/user-shield?style=light /// employee, protect, safety, uer - static const IconData lightUserShield = IconDataLight(0xf505); + static const IconData lightUserShield = IconData(0xf505, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Shield icon /// /// https://fontawesome.com/icons/user-shield?style=thin /// employee, protect, safety, uer - static const IconData thinUserShield = IconDataThin(0xf505); + static const IconData thinUserShield = IconData(0xf505, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Slash icon /// /// https://fontawesome.com/icons/user-slash?style=solid /// ban, delete, deny, disabled, disconnect, employee, remove, uer - static const IconData solidUserSlash = IconDataSolid(0xf506); + static const IconData solidUserSlash = IconData(0xf506, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Slash icon /// /// https://fontawesome.com/icons/user-slash?style=regular /// ban, delete, deny, disabled, disconnect, employee, remove, uer - static const IconData userSlash = IconDataRegular(0xf506); + static const IconData userSlash = IconData(0xf506, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Slash icon /// /// https://fontawesome.com/icons/user-slash?style=light /// ban, delete, deny, disabled, disconnect, employee, remove, uer - static const IconData lightUserSlash = IconDataLight(0xf506); + static const IconData lightUserSlash = IconData(0xf506, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Slash icon /// /// https://fontawesome.com/icons/user-slash?style=thin /// ban, delete, deny, disabled, disconnect, employee, remove, uer - static const IconData thinUserSlash = IconDataThin(0xf506); + static const IconData thinUserSlash = IconData(0xf506, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Tag icon /// /// https://fontawesome.com/icons/user-tag?style=solid /// employee, uer, users-people - static const IconData solidUserTag = IconDataSolid(0xf507); + static const IconData solidUserTag = IconData(0xf507, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Tag icon /// /// https://fontawesome.com/icons/user-tag?style=regular /// employee, uer, users-people - static const IconData userTag = IconDataRegular(0xf507); + static const IconData userTag = IconData(0xf507, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Tag icon /// /// https://fontawesome.com/icons/user-tag?style=light /// employee, uer, users-people - static const IconData lightUserTag = IconDataLight(0xf507); + static const IconData lightUserTag = IconData(0xf507, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Tag icon /// /// https://fontawesome.com/icons/user-tag?style=thin /// employee, uer, users-people - static const IconData thinUserTag = IconDataThin(0xf507); + static const IconData thinUserTag = IconData(0xf507, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Tie icon /// /// https://fontawesome.com/icons/user-tie?style=solid /// administrator, avatar, business, clothing, employee, formal, offer, portfolio, professional, suit, uer - static const IconData solidUserTie = IconDataSolid(0xf508); + static const IconData solidUserTie = IconData(0xf508, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Tie icon /// /// https://fontawesome.com/icons/user-tie?style=regular /// administrator, avatar, business, clothing, employee, formal, offer, portfolio, professional, suit, uer - static const IconData userTie = IconDataRegular(0xf508); + static const IconData userTie = IconData(0xf508, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Tie icon /// /// https://fontawesome.com/icons/user-tie?style=light /// administrator, avatar, business, clothing, employee, formal, offer, portfolio, professional, suit, uer - static const IconData lightUserTie = IconDataLight(0xf508); + static const IconData lightUserTie = IconData(0xf508, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Tie icon /// /// https://fontawesome.com/icons/user-tie?style=thin /// administrator, avatar, business, clothing, employee, formal, offer, portfolio, professional, suit, uer - static const IconData thinUserTie = IconDataThin(0xf508); + static const IconData thinUserTie = IconData(0xf508, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Tie Hair icon /// /// https://fontawesome.com/icons/user-tie-hair?style=solid /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData solidUserTieHair = IconDataSolid(0xe45f); + static const IconData solidUserTieHair = IconData(0xe45f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Tie Hair icon /// /// https://fontawesome.com/icons/user-tie-hair?style=regular /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData userTieHair = IconDataRegular(0xe45f); + static const IconData userTieHair = IconData(0xe45f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Tie Hair icon /// /// https://fontawesome.com/icons/user-tie-hair?style=light /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData lightUserTieHair = IconDataLight(0xe45f); + static const IconData lightUserTieHair = IconData(0xe45f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Tie Hair icon /// /// https://fontawesome.com/icons/user-tie-hair?style=thin /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData thinUserTieHair = IconDataThin(0xe45f); + static const IconData thinUserTieHair = IconData(0xe45f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Tie Hair Long icon /// /// https://fontawesome.com/icons/user-tie-hair-long?style=solid /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData solidUserTieHairLong = IconDataSolid(0xe460); + static const IconData solidUserTieHairLong = IconData(0xe460, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Tie Hair Long icon /// /// https://fontawesome.com/icons/user-tie-hair-long?style=regular /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData userTieHairLong = IconDataRegular(0xe460); + static const IconData userTieHairLong = IconData(0xe460, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Tie Hair Long icon /// /// https://fontawesome.com/icons/user-tie-hair-long?style=light /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData lightUserTieHairLong = IconDataLight(0xe460); + static const IconData lightUserTieHairLong = IconData(0xe460, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Tie Hair Long icon /// /// https://fontawesome.com/icons/user-tie-hair-long?style=thin /// administrator, avatar, business, clothing, employee, formal, professional, suit, uer - static const IconData thinUserTieHairLong = IconDataThin(0xe460); + static const IconData thinUserTieHairLong = IconData(0xe460, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Unlock icon /// /// https://fontawesome.com/icons/user-unlock?style=solid /// employee, uer, users-people - static const IconData solidUserUnlock = IconDataSolid(0xe058); + static const IconData solidUserUnlock = IconData(0xe058, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Unlock icon /// /// https://fontawesome.com/icons/user-unlock?style=regular /// employee, uer, users-people - static const IconData userUnlock = IconDataRegular(0xe058); + static const IconData userUnlock = IconData(0xe058, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Unlock icon /// /// https://fontawesome.com/icons/user-unlock?style=light /// employee, uer, users-people - static const IconData lightUserUnlock = IconDataLight(0xe058); + static const IconData lightUserUnlock = IconData(0xe058, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Unlock icon /// /// https://fontawesome.com/icons/user-unlock?style=thin /// employee, uer, users-people - static const IconData thinUserUnlock = IconDataThin(0xe058); + static const IconData thinUserUnlock = IconData(0xe058, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Visor icon /// /// https://fontawesome.com/icons/user-visor?style=solid /// geordi la forge, star trek, uer - static const IconData solidUserVisor = IconDataSolid(0xe04c); + static const IconData solidUserVisor = IconData(0xe04c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Visor icon /// /// https://fontawesome.com/icons/user-visor?style=regular /// geordi la forge, star trek, uer - static const IconData userVisor = IconDataRegular(0xe04c); + static const IconData userVisor = IconData(0xe04c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Visor icon /// /// https://fontawesome.com/icons/user-visor?style=light /// geordi la forge, star trek, uer - static const IconData lightUserVisor = IconDataLight(0xe04c); + static const IconData lightUserVisor = IconData(0xe04c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Visor icon /// /// https://fontawesome.com/icons/user-visor?style=thin /// geordi la forge, star trek, uer - static const IconData thinUserVisor = IconDataThin(0xe04c); + static const IconData thinUserVisor = IconData(0xe04c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Vneck icon /// /// https://fontawesome.com/icons/user-vneck?style=solid /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData solidUserVneck = IconDataSolid(0xe461); + static const IconData solidUserVneck = IconData(0xe461, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Vneck icon /// /// https://fontawesome.com/icons/user-vneck?style=regular /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData userVneck = IconDataRegular(0xe461); + static const IconData userVneck = IconData(0xe461, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Vneck icon /// /// https://fontawesome.com/icons/user-vneck?style=light /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData lightUserVneck = IconDataLight(0xe461); + static const IconData lightUserVneck = IconData(0xe461, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Vneck icon /// /// https://fontawesome.com/icons/user-vneck?style=thin /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData thinUserVneck = IconDataThin(0xe461); + static const IconData thinUserVneck = IconData(0xe461, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Vneck Hair icon /// /// https://fontawesome.com/icons/user-vneck-hair?style=solid /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData solidUserVneckHair = IconDataSolid(0xe462); + static const IconData solidUserVneckHair = IconData(0xe462, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Vneck Hair icon /// /// https://fontawesome.com/icons/user-vneck-hair?style=regular /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData userVneckHair = IconDataRegular(0xe462); + static const IconData userVneckHair = IconData(0xe462, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Vneck Hair icon /// /// https://fontawesome.com/icons/user-vneck-hair?style=light /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData lightUserVneckHair = IconDataLight(0xe462); + static const IconData lightUserVneckHair = IconData(0xe462, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Vneck Hair icon /// /// https://fontawesome.com/icons/user-vneck-hair?style=thin /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData thinUserVneckHair = IconDataThin(0xe462); + static const IconData thinUserVneckHair = IconData(0xe462, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Vneck Hair Long icon /// /// https://fontawesome.com/icons/user-vneck-hair-long?style=solid /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData solidUserVneckHairLong = IconDataSolid(0xe463); + static const IconData solidUserVneckHairLong = IconData(0xe463, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular User Vneck Hair Long icon /// /// https://fontawesome.com/icons/user-vneck-hair-long?style=regular /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData userVneckHairLong = IconDataRegular(0xe463); + static const IconData userVneckHairLong = IconData(0xe463, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light User Vneck Hair Long icon /// /// https://fontawesome.com/icons/user-vneck-hair-long?style=light /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData lightUserVneckHairLong = IconDataLight(0xe463); + static const IconData lightUserVneckHairLong = IconData(0xe463, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin User Vneck Hair Long icon /// /// https://fontawesome.com/icons/user-vneck-hair-long?style=thin /// bust, bust in silhouette, person, profile, silhouette, uer - static const IconData thinUserVneckHairLong = IconDataThin(0xe463); + static const IconData thinUserVneckHairLong = IconData(0xe463, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid User Xmark icon /// /// https://fontawesome.com/icons/user-xmark?style=solid /// archive, delete, employee, remove, uer, uncheck, x - static const IconData solidUserXmark = IconDataSolid(0xf235); + static const IconData solidUserXmark = IconData(0xf235, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias user-times for icon [solidUserXmark] @Deprecated('Use "solidUserXmark" instead.') @@ -92977,7 +92977,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-xmark?style=regular /// archive, delete, employee, remove, uer, uncheck, x - static const IconData userXmark = IconDataRegular(0xf235); + static const IconData userXmark = IconData(0xf235, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias user-times for icon [userXmark] @Deprecated('Use "userXmark" instead.') @@ -92987,7 +92987,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-xmark?style=light /// archive, delete, employee, remove, uer, uncheck, x - static const IconData lightUserXmark = IconDataLight(0xf235); + static const IconData lightUserXmark = IconData(0xf235, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias user-times for icon [lightUserXmark] @Deprecated('Use "lightUserXmark" instead.') @@ -92997,7 +92997,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/user-xmark?style=thin /// archive, delete, employee, remove, uer, uncheck, x - static const IconData thinUserXmark = IconDataThin(0xf235); + static const IconData thinUserXmark = IconData(0xf235, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias user-times for icon [thinUserXmark] @Deprecated('Use "thinUserXmark" instead.') @@ -93007,55 +93007,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/users?style=solid /// employee, together, uer, users-people - static const IconData solidUsers = IconDataSolid(0xf0c0); + static const IconData solidUsers = IconData(0xf0c0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users icon /// /// https://fontawesome.com/icons/users?style=regular /// employee, together, uer, users-people - static const IconData users = IconDataRegular(0xf0c0); + static const IconData users = IconData(0xf0c0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users icon /// /// https://fontawesome.com/icons/users?style=light /// employee, together, uer, users-people - static const IconData lightUsers = IconDataLight(0xf0c0); + static const IconData lightUsers = IconData(0xf0c0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users icon /// /// https://fontawesome.com/icons/users?style=thin /// employee, together, uer, users-people - static const IconData thinUsers = IconDataThin(0xf0c0); + static const IconData thinUsers = IconData(0xf0c0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Between Lines icon /// /// https://fontawesome.com/icons/users-between-lines?style=solid /// covered, crowd, employee, group, people, together, uer - static const IconData solidUsersBetweenLines = IconDataSolid(0xe591); + static const IconData solidUsersBetweenLines = IconData(0xe591, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Between Lines icon /// /// https://fontawesome.com/icons/users-between-lines?style=regular /// covered, crowd, employee, group, people, together, uer - static const IconData usersBetweenLines = IconDataRegular(0xe591); + static const IconData usersBetweenLines = IconData(0xe591, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Between Lines icon /// /// https://fontawesome.com/icons/users-between-lines?style=light /// covered, crowd, employee, group, people, together, uer - static const IconData lightUsersBetweenLines = IconDataLight(0xe591); + static const IconData lightUsersBetweenLines = IconData(0xe591, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Between Lines icon /// /// https://fontawesome.com/icons/users-between-lines?style=thin /// covered, crowd, employee, group, people, together, uer - static const IconData thinUsersBetweenLines = IconDataThin(0xe591); + static const IconData thinUsersBetweenLines = IconData(0xe591, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Gear icon /// /// https://fontawesome.com/icons/users-gear?style=solid /// employee, uer, users-people - static const IconData solidUsersGear = IconDataSolid(0xf509); + static const IconData solidUsersGear = IconData(0xf509, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias users-cog for icon [solidUsersGear] @Deprecated('Use "solidUsersGear" instead.') @@ -93065,7 +93065,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/users-gear?style=regular /// employee, uer, users-people - static const IconData usersGear = IconDataRegular(0xf509); + static const IconData usersGear = IconData(0xf509, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias users-cog for icon [usersGear] @Deprecated('Use "usersGear" instead.') @@ -93075,7 +93075,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/users-gear?style=light /// employee, uer, users-people - static const IconData lightUsersGear = IconDataLight(0xf509); + static const IconData lightUsersGear = IconData(0xf509, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias users-cog for icon [lightUsersGear] @Deprecated('Use "lightUsersGear" instead.') @@ -93085,7 +93085,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/users-gear?style=thin /// employee, uer, users-people - static const IconData thinUsersGear = IconDataThin(0xf509); + static const IconData thinUsersGear = IconData(0xf509, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias users-cog for icon [thinUsersGear] @Deprecated('Use "thinUsersGear" instead.') @@ -93095,162 +93095,162 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/users-line?style=solid /// crowd, employee, group, need, people, together, uer - static const IconData solidUsersLine = IconDataSolid(0xe592); + static const IconData solidUsersLine = IconData(0xe592, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Line icon /// /// https://fontawesome.com/icons/users-line?style=regular /// crowd, employee, group, need, people, together, uer - static const IconData usersLine = IconDataRegular(0xe592); + static const IconData usersLine = IconData(0xe592, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Line icon /// /// https://fontawesome.com/icons/users-line?style=light /// crowd, employee, group, need, people, together, uer - static const IconData lightUsersLine = IconDataLight(0xe592); + static const IconData lightUsersLine = IconData(0xe592, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Line icon /// /// https://fontawesome.com/icons/users-line?style=thin /// crowd, employee, group, need, people, together, uer - static const IconData thinUsersLine = IconDataThin(0xe592); + static const IconData thinUsersLine = IconData(0xe592, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Medical icon /// /// https://fontawesome.com/icons/users-medical?style=solid /// employee, group, patients, physician, team, together, uer - static const IconData solidUsersMedical = IconDataSolid(0xf830); + static const IconData solidUsersMedical = IconData(0xf830, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Medical icon /// /// https://fontawesome.com/icons/users-medical?style=regular /// employee, group, patients, physician, team, together, uer - static const IconData usersMedical = IconDataRegular(0xf830); + static const IconData usersMedical = IconData(0xf830, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Medical icon /// /// https://fontawesome.com/icons/users-medical?style=light /// employee, group, patients, physician, team, together, uer - static const IconData lightUsersMedical = IconDataLight(0xf830); + static const IconData lightUsersMedical = IconData(0xf830, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Medical icon /// /// https://fontawesome.com/icons/users-medical?style=thin /// employee, group, patients, physician, team, together, uer - static const IconData thinUsersMedical = IconDataThin(0xf830); + static const IconData thinUsersMedical = IconData(0xf830, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Rays icon /// /// https://fontawesome.com/icons/users-rays?style=solid /// affected, crowd, employee, focused, group, people, uer - static const IconData solidUsersRays = IconDataSolid(0xe593); + static const IconData solidUsersRays = IconData(0xe593, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Rays icon /// /// https://fontawesome.com/icons/users-rays?style=regular /// affected, crowd, employee, focused, group, people, uer - static const IconData usersRays = IconDataRegular(0xe593); + static const IconData usersRays = IconData(0xe593, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Rays icon /// /// https://fontawesome.com/icons/users-rays?style=light /// affected, crowd, employee, focused, group, people, uer - static const IconData lightUsersRays = IconDataLight(0xe593); + static const IconData lightUsersRays = IconData(0xe593, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Rays icon /// /// https://fontawesome.com/icons/users-rays?style=thin /// affected, crowd, employee, focused, group, people, uer - static const IconData thinUsersRays = IconDataThin(0xe593); + static const IconData thinUsersRays = IconData(0xe593, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Rectangle icon /// /// https://fontawesome.com/icons/users-rectangle?style=solid /// crowd, employee, focus, group, people, reached, uer - static const IconData solidUsersRectangle = IconDataSolid(0xe594); + static const IconData solidUsersRectangle = IconData(0xe594, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Rectangle icon /// /// https://fontawesome.com/icons/users-rectangle?style=regular /// crowd, employee, focus, group, people, reached, uer - static const IconData usersRectangle = IconDataRegular(0xe594); + static const IconData usersRectangle = IconData(0xe594, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Rectangle icon /// /// https://fontawesome.com/icons/users-rectangle?style=light /// crowd, employee, focus, group, people, reached, uer - static const IconData lightUsersRectangle = IconDataLight(0xe594); + static const IconData lightUsersRectangle = IconData(0xe594, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Rectangle icon /// /// https://fontawesome.com/icons/users-rectangle?style=thin /// crowd, employee, focus, group, people, reached, uer - static const IconData thinUsersRectangle = IconDataThin(0xe594); + static const IconData thinUsersRectangle = IconData(0xe594, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Slash icon /// /// https://fontawesome.com/icons/users-slash?style=solid /// disabled, disconnect, employee, together, uer, users-people - static const IconData solidUsersSlash = IconDataSolid(0xe073); + static const IconData solidUsersSlash = IconData(0xe073, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Slash icon /// /// https://fontawesome.com/icons/users-slash?style=regular /// disabled, disconnect, employee, together, uer, users-people - static const IconData usersSlash = IconDataRegular(0xe073); + static const IconData usersSlash = IconData(0xe073, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Slash icon /// /// https://fontawesome.com/icons/users-slash?style=light /// disabled, disconnect, employee, together, uer, users-people - static const IconData lightUsersSlash = IconDataLight(0xe073); + static const IconData lightUsersSlash = IconData(0xe073, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Slash icon /// /// https://fontawesome.com/icons/users-slash?style=thin /// disabled, disconnect, employee, together, uer, users-people - static const IconData thinUsersSlash = IconDataThin(0xe073); + static const IconData thinUsersSlash = IconData(0xe073, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Users Viewfinder icon /// /// https://fontawesome.com/icons/users-viewfinder?style=solid /// crowd, focus, group, people, targeted, uer - static const IconData solidUsersViewfinder = IconDataSolid(0xe595); + static const IconData solidUsersViewfinder = IconData(0xe595, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Users Viewfinder icon /// /// https://fontawesome.com/icons/users-viewfinder?style=regular /// crowd, focus, group, people, targeted, uer - static const IconData usersViewfinder = IconDataRegular(0xe595); + static const IconData usersViewfinder = IconData(0xe595, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Users Viewfinder icon /// /// https://fontawesome.com/icons/users-viewfinder?style=light /// crowd, focus, group, people, targeted, uer - static const IconData lightUsersViewfinder = IconDataLight(0xe595); + static const IconData lightUsersViewfinder = IconData(0xe595, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Users Viewfinder icon /// /// https://fontawesome.com/icons/users-viewfinder?style=thin /// crowd, focus, group, people, targeted, uer - static const IconData thinUsersViewfinder = IconDataThin(0xe595); + static const IconData thinUsersViewfinder = IconData(0xe595, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands United States Postal Service icon /// /// https://fontawesome.com/icons/usps?style=brands /// american, package, shipping, usa - static const IconData usps = IconDataBrands(0xf7e1); + static const IconData usps = IconData(0xf7e1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands us-Sunnah Foundation icon /// /// https://fontawesome.com/icons/ussunnah?style=brands - static const IconData ussunnah = IconDataBrands(0xf407); + static const IconData ussunnah = IconData(0xf407, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Utensils icon /// /// https://fontawesome.com/icons/utensils?style=solid /// cooking, cutlery, dining, dinner, eat, food, fork, fork and knife, knife, restaurant - static const IconData solidUtensils = IconDataSolid(0xf2e7); + static const IconData solidUtensils = IconData(0xf2e7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cutlery for icon [solidUtensils] @Deprecated('Use "solidUtensils" instead.') @@ -93260,7 +93260,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/utensils?style=regular /// cooking, cutlery, dining, dinner, eat, food, fork, fork and knife, knife, restaurant - static const IconData utensils = IconDataRegular(0xf2e7); + static const IconData utensils = IconData(0xf2e7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cutlery for icon [utensils] @Deprecated('Use "utensils" instead.') @@ -93270,7 +93270,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/utensils?style=light /// cooking, cutlery, dining, dinner, eat, food, fork, fork and knife, knife, restaurant - static const IconData lightUtensils = IconDataLight(0xf2e7); + static const IconData lightUtensils = IconData(0xf2e7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cutlery for icon [lightUtensils] @Deprecated('Use "lightUtensils" instead.') @@ -93280,7 +93280,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/utensils?style=thin /// cooking, cutlery, dining, dinner, eat, food, fork, fork and knife, knife, restaurant - static const IconData thinUtensils = IconDataThin(0xf2e7); + static const IconData thinUtensils = IconData(0xf2e7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cutlery for icon [thinUtensils] @Deprecated('Use "thinUtensils" instead.') @@ -93290,180 +93290,180 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/utensils-slash?style=solid /// cooking, cutlery, dining, dinner, disabled, eat, food, fork, fork and knife, knife, restaurant - static const IconData solidUtensilsSlash = IconDataSolid(0xe464); + static const IconData solidUtensilsSlash = IconData(0xe464, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Utensils Slash icon /// /// https://fontawesome.com/icons/utensils-slash?style=regular /// cooking, cutlery, dining, dinner, disabled, eat, food, fork, fork and knife, knife, restaurant - static const IconData utensilsSlash = IconDataRegular(0xe464); + static const IconData utensilsSlash = IconData(0xe464, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Utensils Slash icon /// /// https://fontawesome.com/icons/utensils-slash?style=light /// cooking, cutlery, dining, dinner, disabled, eat, food, fork, fork and knife, knife, restaurant - static const IconData lightUtensilsSlash = IconDataLight(0xe464); + static const IconData lightUtensilsSlash = IconData(0xe464, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Utensils Slash icon /// /// https://fontawesome.com/icons/utensils-slash?style=thin /// cooking, cutlery, dining, dinner, disabled, eat, food, fork, fork and knife, knife, restaurant - static const IconData thinUtensilsSlash = IconDataThin(0xe464); + static const IconData thinUtensilsSlash = IconData(0xe464, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Utility Pole icon /// /// https://fontawesome.com/icons/utility-pole?style=solid /// phone, power, transmission - static const IconData solidUtilityPole = IconDataSolid(0xe2c3); + static const IconData solidUtilityPole = IconData(0xe2c3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Utility Pole icon /// /// https://fontawesome.com/icons/utility-pole?style=regular /// phone, power, transmission - static const IconData utilityPole = IconDataRegular(0xe2c3); + static const IconData utilityPole = IconData(0xe2c3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Utility Pole icon /// /// https://fontawesome.com/icons/utility-pole?style=light /// phone, power, transmission - static const IconData lightUtilityPole = IconDataLight(0xe2c3); + static const IconData lightUtilityPole = IconData(0xe2c3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Utility Pole icon /// /// https://fontawesome.com/icons/utility-pole?style=thin /// phone, power, transmission - static const IconData thinUtilityPole = IconDataThin(0xe2c3); + static const IconData thinUtilityPole = IconData(0xe2c3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Utility Pole Double icon /// /// https://fontawesome.com/icons/utility-pole-double?style=solid /// phone, power, transmission - static const IconData solidUtilityPoleDouble = IconDataSolid(0xe2c4); + static const IconData solidUtilityPoleDouble = IconData(0xe2c4, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Utility Pole Double icon /// /// https://fontawesome.com/icons/utility-pole-double?style=regular /// phone, power, transmission - static const IconData utilityPoleDouble = IconDataRegular(0xe2c4); + static const IconData utilityPoleDouble = IconData(0xe2c4, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Utility Pole Double icon /// /// https://fontawesome.com/icons/utility-pole-double?style=light /// phone, power, transmission - static const IconData lightUtilityPoleDouble = IconDataLight(0xe2c4); + static const IconData lightUtilityPoleDouble = IconData(0xe2c4, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Utility Pole Double icon /// /// https://fontawesome.com/icons/utility-pole-double?style=thin /// phone, power, transmission - static const IconData thinUtilityPoleDouble = IconDataThin(0xe2c4); + static const IconData thinUtilityPoleDouble = IconData(0xe2c4, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid V icon /// /// https://fontawesome.com/icons/v?style=solid /// Latin Capital Letter V, Latin Small Letter V, letter - static const IconData solidV = IconDataSolid(0x56); + static const IconData solidV = IconData(0x56, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular V icon /// /// https://fontawesome.com/icons/v?style=regular /// Latin Capital Letter V, Latin Small Letter V, letter - static const IconData v = IconDataRegular(0x56); + static const IconData v = IconData(0x56, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light V icon /// /// https://fontawesome.com/icons/v?style=light /// Latin Capital Letter V, Latin Small Letter V, letter - static const IconData lightV = IconDataLight(0x56); + static const IconData lightV = IconData(0x56, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin V icon /// /// https://fontawesome.com/icons/v?style=thin /// Latin Capital Letter V, Latin Small Letter V, letter - static const IconData thinV = IconDataThin(0x56); + static const IconData thinV = IconData(0x56, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Vaadin icon /// /// https://fontawesome.com/icons/vaadin?style=brands - static const IconData vaadin = IconDataBrands(0xf408); + static const IconData vaadin = IconData(0xf408, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Vacuum icon /// /// https://fontawesome.com/icons/vacuum?style=solid /// cleaning, dyson, floor, suck, suction - static const IconData solidVacuum = IconDataSolid(0xe04d); + static const IconData solidVacuum = IconData(0xe04d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vacuum icon /// /// https://fontawesome.com/icons/vacuum?style=regular /// cleaning, dyson, floor, suck, suction - static const IconData vacuum = IconDataRegular(0xe04d); + static const IconData vacuum = IconData(0xe04d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vacuum icon /// /// https://fontawesome.com/icons/vacuum?style=light /// cleaning, dyson, floor, suck, suction - static const IconData lightVacuum = IconDataLight(0xe04d); + static const IconData lightVacuum = IconData(0xe04d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vacuum icon /// /// https://fontawesome.com/icons/vacuum?style=thin /// cleaning, dyson, floor, suck, suction - static const IconData thinVacuum = IconDataThin(0xe04d); + static const IconData thinVacuum = IconData(0xe04d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vacuum Robot icon /// /// https://fontawesome.com/icons/vacuum-robot?style=solid /// cleaning, floor, roomba, suck, suction - static const IconData solidVacuumRobot = IconDataSolid(0xe04e); + static const IconData solidVacuumRobot = IconData(0xe04e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vacuum Robot icon /// /// https://fontawesome.com/icons/vacuum-robot?style=regular /// cleaning, floor, roomba, suck, suction - static const IconData vacuumRobot = IconDataRegular(0xe04e); + static const IconData vacuumRobot = IconData(0xe04e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vacuum Robot icon /// /// https://fontawesome.com/icons/vacuum-robot?style=light /// cleaning, floor, roomba, suck, suction - static const IconData lightVacuumRobot = IconDataLight(0xe04e); + static const IconData lightVacuumRobot = IconData(0xe04e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vacuum Robot icon /// /// https://fontawesome.com/icons/vacuum-robot?style=thin /// cleaning, floor, roomba, suck, suction - static const IconData thinVacuumRobot = IconDataThin(0xe04e); + static const IconData thinVacuumRobot = IconData(0xe04e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Value Absolute icon /// /// https://fontawesome.com/icons/value-absolute?style=solid /// Math - static const IconData solidValueAbsolute = IconDataSolid(0xf6a6); + static const IconData solidValueAbsolute = IconData(0xf6a6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Value Absolute icon /// /// https://fontawesome.com/icons/value-absolute?style=regular /// Math - static const IconData valueAbsolute = IconDataRegular(0xf6a6); + static const IconData valueAbsolute = IconData(0xf6a6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Value Absolute icon /// /// https://fontawesome.com/icons/value-absolute?style=light /// Math - static const IconData lightValueAbsolute = IconDataLight(0xf6a6); + static const IconData lightValueAbsolute = IconData(0xf6a6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Value Absolute icon /// /// https://fontawesome.com/icons/value-absolute?style=thin /// Math - static const IconData thinValueAbsolute = IconDataThin(0xf6a6); + static const IconData thinValueAbsolute = IconData(0xf6a6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Van Shuttle icon /// /// https://fontawesome.com/icons/van-shuttle?style=solid /// airport, bus, machine, minibus, public-transportation, transportation, travel, vehicle - static const IconData solidVanShuttle = IconDataSolid(0xf5b6); + static const IconData solidVanShuttle = IconData(0xf5b6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias shuttle-van for icon [solidVanShuttle] @Deprecated('Use "solidVanShuttle" instead.') @@ -93473,7 +93473,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/van-shuttle?style=regular /// airport, bus, machine, minibus, public-transportation, transportation, travel, vehicle - static const IconData vanShuttle = IconDataRegular(0xf5b6); + static const IconData vanShuttle = IconData(0xf5b6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias shuttle-van for icon [vanShuttle] @Deprecated('Use "vanShuttle" instead.') @@ -93483,7 +93483,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/van-shuttle?style=light /// airport, bus, machine, minibus, public-transportation, transportation, travel, vehicle - static const IconData lightVanShuttle = IconDataLight(0xf5b6); + static const IconData lightVanShuttle = IconData(0xf5b6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias shuttle-van for icon [lightVanShuttle] @Deprecated('Use "lightVanShuttle" instead.') @@ -93493,7 +93493,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/van-shuttle?style=thin /// airport, bus, machine, minibus, public-transportation, transportation, travel, vehicle - static const IconData thinVanShuttle = IconDataThin(0xf5b6); + static const IconData thinVanShuttle = IconData(0xf5b6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias shuttle-van for icon [thinVanShuttle] @Deprecated('Use "thinVanShuttle" instead.') @@ -93503,358 +93503,358 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/vault?style=solid /// bank, important, investment, lock, money, premium, privacy, safe, salary - static const IconData solidVault = IconDataSolid(0xe2c5); + static const IconData solidVault = IconData(0xe2c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vault icon /// /// https://fontawesome.com/icons/vault?style=regular /// bank, important, investment, lock, money, premium, privacy, safe, salary - static const IconData vault = IconDataRegular(0xe2c5); + static const IconData vault = IconData(0xe2c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vault icon /// /// https://fontawesome.com/icons/vault?style=light /// bank, important, investment, lock, money, premium, privacy, safe, salary - static const IconData lightVault = IconDataLight(0xe2c5); + static const IconData lightVault = IconData(0xe2c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vault icon /// /// https://fontawesome.com/icons/vault?style=thin /// bank, important, investment, lock, money, premium, privacy, safe, salary - static const IconData thinVault = IconDataThin(0xe2c5); + static const IconData thinVault = IconData(0xe2c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vector Circle icon /// /// https://fontawesome.com/icons/vector-circle?style=solid /// anchors, lines, objects, render, shape - static const IconData solidVectorCircle = IconDataSolid(0xe2c6); + static const IconData solidVectorCircle = IconData(0xe2c6, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vector Circle icon /// /// https://fontawesome.com/icons/vector-circle?style=regular /// anchors, lines, objects, render, shape - static const IconData vectorCircle = IconDataRegular(0xe2c6); + static const IconData vectorCircle = IconData(0xe2c6, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vector Circle icon /// /// https://fontawesome.com/icons/vector-circle?style=light /// anchors, lines, objects, render, shape - static const IconData lightVectorCircle = IconDataLight(0xe2c6); + static const IconData lightVectorCircle = IconData(0xe2c6, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vector Circle icon /// /// https://fontawesome.com/icons/vector-circle?style=thin /// anchors, lines, objects, render, shape - static const IconData thinVectorCircle = IconDataThin(0xe2c6); + static const IconData thinVectorCircle = IconData(0xe2c6, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vector Polygon icon /// /// https://fontawesome.com/icons/vector-polygon?style=solid /// anchors, lines, objects, render, shape - static const IconData solidVectorPolygon = IconDataSolid(0xe2c7); + static const IconData solidVectorPolygon = IconData(0xe2c7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vector Polygon icon /// /// https://fontawesome.com/icons/vector-polygon?style=regular /// anchors, lines, objects, render, shape - static const IconData vectorPolygon = IconDataRegular(0xe2c7); + static const IconData vectorPolygon = IconData(0xe2c7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vector Polygon icon /// /// https://fontawesome.com/icons/vector-polygon?style=light /// anchors, lines, objects, render, shape - static const IconData lightVectorPolygon = IconDataLight(0xe2c7); + static const IconData lightVectorPolygon = IconData(0xe2c7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vector Polygon icon /// /// https://fontawesome.com/icons/vector-polygon?style=thin /// anchors, lines, objects, render, shape - static const IconData thinVectorPolygon = IconDataThin(0xe2c7); + static const IconData thinVectorPolygon = IconData(0xe2c7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vector Square icon /// /// https://fontawesome.com/icons/vector-square?style=solid /// anchors, lines, object, render, shape - static const IconData solidVectorSquare = IconDataSolid(0xf5cb); + static const IconData solidVectorSquare = IconData(0xf5cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vector Square icon /// /// https://fontawesome.com/icons/vector-square?style=regular /// anchors, lines, object, render, shape - static const IconData vectorSquare = IconDataRegular(0xf5cb); + static const IconData vectorSquare = IconData(0xf5cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vector Square icon /// /// https://fontawesome.com/icons/vector-square?style=light /// anchors, lines, object, render, shape - static const IconData lightVectorSquare = IconDataLight(0xf5cb); + static const IconData lightVectorSquare = IconData(0xf5cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vector Square icon /// /// https://fontawesome.com/icons/vector-square?style=thin /// anchors, lines, object, render, shape - static const IconData thinVectorSquare = IconDataThin(0xf5cb); + static const IconData thinVectorSquare = IconData(0xf5cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vent Damper icon /// /// https://fontawesome.com/icons/vent-damper?style=solid /// air, fire, hvac, ventilate - static const IconData solidVentDamper = IconDataSolid(0xe465); + static const IconData solidVentDamper = IconData(0xe465, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vent Damper icon /// /// https://fontawesome.com/icons/vent-damper?style=regular /// air, fire, hvac, ventilate - static const IconData ventDamper = IconDataRegular(0xe465); + static const IconData ventDamper = IconData(0xe465, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vent Damper icon /// /// https://fontawesome.com/icons/vent-damper?style=light /// air, fire, hvac, ventilate - static const IconData lightVentDamper = IconDataLight(0xe465); + static const IconData lightVentDamper = IconData(0xe465, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vent Damper icon /// /// https://fontawesome.com/icons/vent-damper?style=thin /// air, fire, hvac, ventilate - static const IconData thinVentDamper = IconDataThin(0xe465); + static const IconData thinVentDamper = IconData(0xe465, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Venus icon /// /// https://fontawesome.com/icons/venus?style=solid /// female, female sign, gender, woman - static const IconData solidVenus = IconDataSolid(0xf221); + static const IconData solidVenus = IconData(0xf221, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Venus icon /// /// https://fontawesome.com/icons/venus?style=regular /// female, female sign, gender, woman - static const IconData venus = IconDataRegular(0xf221); + static const IconData venus = IconData(0xf221, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Venus icon /// /// https://fontawesome.com/icons/venus?style=light /// female, female sign, gender, woman - static const IconData lightVenus = IconDataLight(0xf221); + static const IconData lightVenus = IconData(0xf221, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Venus icon /// /// https://fontawesome.com/icons/venus?style=thin /// female, female sign, gender, woman - static const IconData thinVenus = IconDataThin(0xf221); + static const IconData thinVenus = IconData(0xf221, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Venus Double icon /// /// https://fontawesome.com/icons/venus-double?style=solid /// Doubled Female Sign, female, gender, lesbian - static const IconData solidVenusDouble = IconDataSolid(0xf226); + static const IconData solidVenusDouble = IconData(0xf226, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Venus Double icon /// /// https://fontawesome.com/icons/venus-double?style=regular /// Doubled Female Sign, female, gender, lesbian - static const IconData venusDouble = IconDataRegular(0xf226); + static const IconData venusDouble = IconData(0xf226, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Venus Double icon /// /// https://fontawesome.com/icons/venus-double?style=light /// Doubled Female Sign, female, gender, lesbian - static const IconData lightVenusDouble = IconDataLight(0xf226); + static const IconData lightVenusDouble = IconData(0xf226, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Venus Double icon /// /// https://fontawesome.com/icons/venus-double?style=thin /// Doubled Female Sign, female, gender, lesbian - static const IconData thinVenusDouble = IconDataThin(0xf226); + static const IconData thinVenusDouble = IconData(0xf226, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Venus Mars icon /// /// https://fontawesome.com/icons/venus-mars?style=solid /// Interlocked Female and Male Sign, female, gender, heterosexual, male - static const IconData solidVenusMars = IconDataSolid(0xf228); + static const IconData solidVenusMars = IconData(0xf228, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Venus Mars icon /// /// https://fontawesome.com/icons/venus-mars?style=regular /// Interlocked Female and Male Sign, female, gender, heterosexual, male - static const IconData venusMars = IconDataRegular(0xf228); + static const IconData venusMars = IconData(0xf228, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Venus Mars icon /// /// https://fontawesome.com/icons/venus-mars?style=light /// Interlocked Female and Male Sign, female, gender, heterosexual, male - static const IconData lightVenusMars = IconDataLight(0xf228); + static const IconData lightVenusMars = IconData(0xf228, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Venus Mars icon /// /// https://fontawesome.com/icons/venus-mars?style=thin /// Interlocked Female and Male Sign, female, gender, heterosexual, male - static const IconData thinVenusMars = IconDataThin(0xf228); + static const IconData thinVenusMars = IconData(0xf228, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vest icon /// /// https://fontawesome.com/icons/vest?style=solid /// biker, fashion, style - static const IconData solidVest = IconDataSolid(0xe085); + static const IconData solidVest = IconData(0xe085, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vest icon /// /// https://fontawesome.com/icons/vest?style=regular /// biker, fashion, style - static const IconData vest = IconDataRegular(0xe085); + static const IconData vest = IconData(0xe085, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vest icon /// /// https://fontawesome.com/icons/vest?style=light /// biker, fashion, style - static const IconData lightVest = IconDataLight(0xe085); + static const IconData lightVest = IconData(0xe085, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vest icon /// /// https://fontawesome.com/icons/vest?style=thin /// biker, fashion, style - static const IconData thinVest = IconDataThin(0xe085); + static const IconData thinVest = IconData(0xe085, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vest Patches icon /// /// https://fontawesome.com/icons/vest-patches?style=solid /// biker, fashion, style - static const IconData solidVestPatches = IconDataSolid(0xe086); + static const IconData solidVestPatches = IconData(0xe086, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vest Patches icon /// /// https://fontawesome.com/icons/vest-patches?style=regular /// biker, fashion, style - static const IconData vestPatches = IconDataRegular(0xe086); + static const IconData vestPatches = IconData(0xe086, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vest Patches icon /// /// https://fontawesome.com/icons/vest-patches?style=light /// biker, fashion, style - static const IconData lightVestPatches = IconDataLight(0xe086); + static const IconData lightVestPatches = IconData(0xe086, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vest Patches icon /// /// https://fontawesome.com/icons/vest-patches?style=thin /// biker, fashion, style - static const IconData thinVestPatches = IconDataThin(0xe086); + static const IconData thinVestPatches = IconData(0xe086, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Viacoin icon /// /// https://fontawesome.com/icons/viacoin?style=brands - static const IconData viacoin = IconDataBrands(0xf237); + static const IconData viacoin = IconData(0xf237, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Viadeo icon /// /// https://fontawesome.com/icons/viadeo?style=brands - static const IconData viadeo = IconDataBrands(0xf2a9); + static const IconData viadeo = IconData(0xf2a9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Vial icon /// /// https://fontawesome.com/icons/vial?style=solid /// ampule, chemist, chemistry, experiment, knowledge, lab, sample, science, test, test tube - static const IconData solidVial = IconDataSolid(0xf492); + static const IconData solidVial = IconData(0xf492, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vial icon /// /// https://fontawesome.com/icons/vial?style=regular /// ampule, chemist, chemistry, experiment, knowledge, lab, sample, science, test, test tube - static const IconData vial = IconDataRegular(0xf492); + static const IconData vial = IconData(0xf492, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vial icon /// /// https://fontawesome.com/icons/vial?style=light /// ampule, chemist, chemistry, experiment, knowledge, lab, sample, science, test, test tube - static const IconData lightVial = IconDataLight(0xf492); + static const IconData lightVial = IconData(0xf492, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vial icon /// /// https://fontawesome.com/icons/vial?style=thin /// ampule, chemist, chemistry, experiment, knowledge, lab, sample, science, test, test tube - static const IconData thinVial = IconDataThin(0xf492); + static const IconData thinVial = IconData(0xf492, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vial Circle Check icon /// /// https://fontawesome.com/icons/vial-circle-check?style=solid /// ampule, chemist, chemistry, enable, not affected, ok, okay, success, test tube, tube, vaccine, validate, working - static const IconData solidVialCircleCheck = IconDataSolid(0xe596); + static const IconData solidVialCircleCheck = IconData(0xe596, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vial Circle Check icon /// /// https://fontawesome.com/icons/vial-circle-check?style=regular /// ampule, chemist, chemistry, enable, not affected, ok, okay, success, test tube, tube, vaccine, validate, working - static const IconData vialCircleCheck = IconDataRegular(0xe596); + static const IconData vialCircleCheck = IconData(0xe596, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vial Circle Check icon /// /// https://fontawesome.com/icons/vial-circle-check?style=light /// ampule, chemist, chemistry, enable, not affected, ok, okay, success, test tube, tube, vaccine, validate, working - static const IconData lightVialCircleCheck = IconDataLight(0xe596); + static const IconData lightVialCircleCheck = IconData(0xe596, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vial Circle Check icon /// /// https://fontawesome.com/icons/vial-circle-check?style=thin /// ampule, chemist, chemistry, enable, not affected, ok, okay, success, test tube, tube, vaccine, validate, working - static const IconData thinVialCircleCheck = IconDataThin(0xe596); + static const IconData thinVialCircleCheck = IconData(0xe596, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vial Virus icon /// /// https://fontawesome.com/icons/vial-virus?style=solid /// ampule, coronavirus, covid-19, flue, infection, lab, laboratory, pandemic, test, test tube, vaccine - static const IconData solidVialVirus = IconDataSolid(0xe597); + static const IconData solidVialVirus = IconData(0xe597, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vial Virus icon /// /// https://fontawesome.com/icons/vial-virus?style=regular /// ampule, coronavirus, covid-19, flue, infection, lab, laboratory, pandemic, test, test tube, vaccine - static const IconData vialVirus = IconDataRegular(0xe597); + static const IconData vialVirus = IconData(0xe597, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vial Virus icon /// /// https://fontawesome.com/icons/vial-virus?style=light /// ampule, coronavirus, covid-19, flue, infection, lab, laboratory, pandemic, test, test tube, vaccine - static const IconData lightVialVirus = IconDataLight(0xe597); + static const IconData lightVialVirus = IconData(0xe597, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vial Virus icon /// /// https://fontawesome.com/icons/vial-virus?style=thin /// ampule, coronavirus, covid-19, flue, infection, lab, laboratory, pandemic, test, test tube, vaccine - static const IconData thinVialVirus = IconDataThin(0xe597); + static const IconData thinVialVirus = IconData(0xe597, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vials icon /// /// https://fontawesome.com/icons/vials?style=solid /// ampule, experiment, knowledge, lab, sample, science, test, test tube - static const IconData solidVials = IconDataSolid(0xf493); + static const IconData solidVials = IconData(0xf493, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vials icon /// /// https://fontawesome.com/icons/vials?style=regular /// ampule, experiment, knowledge, lab, sample, science, test, test tube - static const IconData vials = IconDataRegular(0xf493); + static const IconData vials = IconData(0xf493, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vials icon /// /// https://fontawesome.com/icons/vials?style=light /// ampule, experiment, knowledge, lab, sample, science, test, test tube - static const IconData lightVials = IconDataLight(0xf493); + static const IconData lightVials = IconData(0xf493, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vials icon /// /// https://fontawesome.com/icons/vials?style=thin /// ampule, experiment, knowledge, lab, sample, science, test, test tube - static const IconData thinVials = IconDataThin(0xf493); + static const IconData thinVials = IconData(0xf493, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Viber icon /// /// https://fontawesome.com/icons/viber?style=brands - static const IconData viber = IconDataBrands(0xf409); + static const IconData viber = IconData(0xf409, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Video icon /// /// https://fontawesome.com/icons/video?style=solid /// camera, film, movie, record, video-camera - static const IconData solidVideo = IconDataSolid(0xf03d); + static const IconData solidVideo = IconData(0xf03d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias video-camera for icon [solidVideo] @Deprecated('Use "solidVideo" instead.') @@ -93864,7 +93864,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/video?style=regular /// camera, film, movie, record, video-camera - static const IconData video = IconDataRegular(0xf03d); + static const IconData video = IconData(0xf03d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias video-camera for icon [video] @Deprecated('Use "video" instead.') @@ -93874,7 +93874,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/video?style=light /// camera, film, movie, record, video-camera - static const IconData lightVideo = IconDataLight(0xf03d); + static const IconData lightVideo = IconData(0xf03d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias video-camera for icon [lightVideo] @Deprecated('Use "lightVideo" instead.') @@ -93884,7 +93884,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/video?style=thin /// camera, film, movie, record, video-camera - static const IconData thinVideo = IconDataThin(0xf03d); + static const IconData thinVideo = IconData(0xf03d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias video-camera for icon [thinVideo] @Deprecated('Use "thinVideo" instead.') @@ -93894,345 +93894,345 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/video-arrow-down-left?style=solid /// download, film, import, movie - static const IconData solidVideoArrowDownLeft = IconDataSolid(0xe2c8); + static const IconData solidVideoArrowDownLeft = IconData(0xe2c8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Video Arrow Down Left icon /// /// https://fontawesome.com/icons/video-arrow-down-left?style=regular /// download, film, import, movie - static const IconData videoArrowDownLeft = IconDataRegular(0xe2c8); + static const IconData videoArrowDownLeft = IconData(0xe2c8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Video Arrow Down Left icon /// /// https://fontawesome.com/icons/video-arrow-down-left?style=light /// download, film, import, movie - static const IconData lightVideoArrowDownLeft = IconDataLight(0xe2c8); + static const IconData lightVideoArrowDownLeft = IconData(0xe2c8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Video Arrow Down Left icon /// /// https://fontawesome.com/icons/video-arrow-down-left?style=thin /// download, film, import, movie - static const IconData thinVideoArrowDownLeft = IconDataThin(0xe2c8); + static const IconData thinVideoArrowDownLeft = IconData(0xe2c8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Video Arrow Up Right icon /// /// https://fontawesome.com/icons/video-arrow-up-right?style=solid /// export, film, movie, send, upgrade - static const IconData solidVideoArrowUpRight = IconDataSolid(0xe2c9); + static const IconData solidVideoArrowUpRight = IconData(0xe2c9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Video Arrow Up Right icon /// /// https://fontawesome.com/icons/video-arrow-up-right?style=regular /// export, film, movie, send, upgrade - static const IconData videoArrowUpRight = IconDataRegular(0xe2c9); + static const IconData videoArrowUpRight = IconData(0xe2c9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Video Arrow Up Right icon /// /// https://fontawesome.com/icons/video-arrow-up-right?style=light /// export, film, movie, send, upgrade - static const IconData lightVideoArrowUpRight = IconDataLight(0xe2c9); + static const IconData lightVideoArrowUpRight = IconData(0xe2c9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Video Arrow Up Right icon /// /// https://fontawesome.com/icons/video-arrow-up-right?style=thin /// export, film, movie, send, upgrade - static const IconData thinVideoArrowUpRight = IconDataThin(0xe2c9); + static const IconData thinVideoArrowUpRight = IconData(0xe2c9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Video Plus icon /// /// https://fontawesome.com/icons/video-plus?style=solid /// add, create, film, new, positive, record, video - static const IconData solidVideoPlus = IconDataSolid(0xf4e1); + static const IconData solidVideoPlus = IconData(0xf4e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Video Plus icon /// /// https://fontawesome.com/icons/video-plus?style=regular /// add, create, film, new, positive, record, video - static const IconData videoPlus = IconDataRegular(0xf4e1); + static const IconData videoPlus = IconData(0xf4e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Video Plus icon /// /// https://fontawesome.com/icons/video-plus?style=light /// add, create, film, new, positive, record, video - static const IconData lightVideoPlus = IconDataLight(0xf4e1); + static const IconData lightVideoPlus = IconData(0xf4e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Video Plus icon /// /// https://fontawesome.com/icons/video-plus?style=thin /// add, create, film, new, positive, record, video - static const IconData thinVideoPlus = IconDataThin(0xf4e1); + static const IconData thinVideoPlus = IconData(0xf4e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Video Slash icon /// /// https://fontawesome.com/icons/video-slash?style=solid /// add, create, disabled, disconnect, film, new, positive, record, video - static const IconData solidVideoSlash = IconDataSolid(0xf4e2); + static const IconData solidVideoSlash = IconData(0xf4e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Video Slash icon /// /// https://fontawesome.com/icons/video-slash?style=regular /// add, create, disabled, disconnect, film, new, positive, record, video - static const IconData videoSlash = IconDataRegular(0xf4e2); + static const IconData videoSlash = IconData(0xf4e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Video Slash icon /// /// https://fontawesome.com/icons/video-slash?style=light /// add, create, disabled, disconnect, film, new, positive, record, video - static const IconData lightVideoSlash = IconDataLight(0xf4e2); + static const IconData lightVideoSlash = IconData(0xf4e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Video Slash icon /// /// https://fontawesome.com/icons/video-slash?style=thin /// add, create, disabled, disconnect, film, new, positive, record, video - static const IconData thinVideoSlash = IconDataThin(0xf4e2); + static const IconData thinVideoSlash = IconData(0xf4e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Vihara icon /// /// https://fontawesome.com/icons/vihara?style=solid /// buddhism, buddhist, building, monastery - static const IconData solidVihara = IconDataSolid(0xf6a7); + static const IconData solidVihara = IconData(0xf6a7, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vihara icon /// /// https://fontawesome.com/icons/vihara?style=regular /// buddhism, buddhist, building, monastery - static const IconData vihara = IconDataRegular(0xf6a7); + static const IconData vihara = IconData(0xf6a7, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vihara icon /// /// https://fontawesome.com/icons/vihara?style=light /// buddhism, buddhist, building, monastery - static const IconData lightVihara = IconDataLight(0xf6a7); + static const IconData lightVihara = IconData(0xf6a7, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vihara icon /// /// https://fontawesome.com/icons/vihara?style=thin /// buddhism, buddhist, building, monastery - static const IconData thinVihara = IconDataThin(0xf6a7); + static const IconData thinVihara = IconData(0xf6a7, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Vimeo icon /// /// https://fontawesome.com/icons/vimeo?style=brands - static const IconData vimeo = IconDataBrands(0xf40a); + static const IconData vimeo = IconData(0xf40a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Vimeo icon /// /// https://fontawesome.com/icons/vimeo-v?style=brands /// vimeo - static const IconData vimeoV = IconDataBrands(0xf27d); + static const IconData vimeoV = IconData(0xf27d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Vine icon /// /// https://fontawesome.com/icons/vine?style=brands - static const IconData vine = IconDataBrands(0xf1ca); + static const IconData vine = IconData(0xf1ca, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Violin icon /// /// https://fontawesome.com/icons/violin?style=solid /// bow, cello, fiddle, instrument, music, orchestra, string, violin - static const IconData solidViolin = IconDataSolid(0xf8ed); + static const IconData solidViolin = IconData(0xf8ed, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Violin icon /// /// https://fontawesome.com/icons/violin?style=regular /// bow, cello, fiddle, instrument, music, orchestra, string, violin - static const IconData violin = IconDataRegular(0xf8ed); + static const IconData violin = IconData(0xf8ed, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Violin icon /// /// https://fontawesome.com/icons/violin?style=light /// bow, cello, fiddle, instrument, music, orchestra, string, violin - static const IconData lightViolin = IconDataLight(0xf8ed); + static const IconData lightViolin = IconData(0xf8ed, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Violin icon /// /// https://fontawesome.com/icons/violin?style=thin /// bow, cello, fiddle, instrument, music, orchestra, string, violin - static const IconData thinViolin = IconDataThin(0xf8ed); + static const IconData thinViolin = IconData(0xf8ed, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Virus icon /// /// https://fontawesome.com/icons/virus?style=solid /// bug, coronavirus, covid-19, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData solidVirus = IconDataSolid(0xe074); + static const IconData solidVirus = IconData(0xe074, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Virus icon /// /// https://fontawesome.com/icons/virus?style=regular /// bug, coronavirus, covid-19, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData virus = IconDataRegular(0xe074); + static const IconData virus = IconData(0xe074, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Virus icon /// /// https://fontawesome.com/icons/virus?style=light /// bug, coronavirus, covid-19, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData lightVirus = IconDataLight(0xe074); + static const IconData lightVirus = IconData(0xe074, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Virus icon /// /// https://fontawesome.com/icons/virus?style=thin /// bug, coronavirus, covid-19, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData thinVirus = IconDataThin(0xe074); + static const IconData thinVirus = IconData(0xe074, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Virus Covid icon /// /// https://fontawesome.com/icons/virus-covid?style=solid /// bug, covid-19, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData solidVirusCovid = IconDataSolid(0xe4a8); + static const IconData solidVirusCovid = IconData(0xe4a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Virus Covid icon /// /// https://fontawesome.com/icons/virus-covid?style=regular /// bug, covid-19, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData virusCovid = IconDataRegular(0xe4a8); + static const IconData virusCovid = IconData(0xe4a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Virus Covid icon /// /// https://fontawesome.com/icons/virus-covid?style=light /// bug, covid-19, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData lightVirusCovid = IconDataLight(0xe4a8); + static const IconData lightVirusCovid = IconData(0xe4a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Virus Covid icon /// /// https://fontawesome.com/icons/virus-covid?style=thin /// bug, covid-19, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData thinVirusCovid = IconDataThin(0xe4a8); + static const IconData thinVirusCovid = IconData(0xe4a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Virus Covid Slash icon /// /// https://fontawesome.com/icons/virus-covid-slash?style=solid /// bug, covid-19, disabled, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData solidVirusCovidSlash = IconDataSolid(0xe4a9); + static const IconData solidVirusCovidSlash = IconData(0xe4a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Virus Covid Slash icon /// /// https://fontawesome.com/icons/virus-covid-slash?style=regular /// bug, covid-19, disabled, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData virusCovidSlash = IconDataRegular(0xe4a9); + static const IconData virusCovidSlash = IconData(0xe4a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Virus Covid Slash icon /// /// https://fontawesome.com/icons/virus-covid-slash?style=light /// bug, covid-19, disabled, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData lightVirusCovidSlash = IconDataLight(0xe4a9); + static const IconData lightVirusCovidSlash = IconData(0xe4a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Virus Covid Slash icon /// /// https://fontawesome.com/icons/virus-covid-slash?style=thin /// bug, covid-19, disabled, flu, health, infection, pandemic, vaccine, viral, virus - static const IconData thinVirusCovidSlash = IconDataThin(0xe4a9); + static const IconData thinVirusCovidSlash = IconData(0xe4a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Virus Slash icon /// /// https://fontawesome.com/icons/virus-slash?style=solid /// bug, coronavirus, covid-19, cure, disabled, eliminate, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData solidVirusSlash = IconDataSolid(0xe075); + static const IconData solidVirusSlash = IconData(0xe075, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Virus Slash icon /// /// https://fontawesome.com/icons/virus-slash?style=regular /// bug, coronavirus, covid-19, cure, disabled, eliminate, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData virusSlash = IconDataRegular(0xe075); + static const IconData virusSlash = IconData(0xe075, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Virus Slash icon /// /// https://fontawesome.com/icons/virus-slash?style=light /// bug, coronavirus, covid-19, cure, disabled, eliminate, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData lightVirusSlash = IconDataLight(0xe075); + static const IconData lightVirusSlash = IconData(0xe075, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Virus Slash icon /// /// https://fontawesome.com/icons/virus-slash?style=thin /// bug, coronavirus, covid-19, cure, disabled, eliminate, flu, health, infection, pandemic, sick, vaccine, viral - static const IconData thinVirusSlash = IconDataThin(0xe075); + static const IconData thinVirusSlash = IconData(0xe075, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Viruses icon /// /// https://fontawesome.com/icons/viruses?style=solid /// bugs, coronavirus, covid-19, flu, health, infection, multiply, pandemic, sick, spread, vaccine, viral - static const IconData solidViruses = IconDataSolid(0xe076); + static const IconData solidViruses = IconData(0xe076, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Viruses icon /// /// https://fontawesome.com/icons/viruses?style=regular /// bugs, coronavirus, covid-19, flu, health, infection, multiply, pandemic, sick, spread, vaccine, viral - static const IconData viruses = IconDataRegular(0xe076); + static const IconData viruses = IconData(0xe076, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Viruses icon /// /// https://fontawesome.com/icons/viruses?style=light /// bugs, coronavirus, covid-19, flu, health, infection, multiply, pandemic, sick, spread, vaccine, viral - static const IconData lightViruses = IconDataLight(0xe076); + static const IconData lightViruses = IconData(0xe076, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Viruses icon /// /// https://fontawesome.com/icons/viruses?style=thin /// bugs, coronavirus, covid-19, flu, health, infection, multiply, pandemic, sick, spread, vaccine, viral - static const IconData thinViruses = IconDataThin(0xe076); + static const IconData thinViruses = IconData(0xe076, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands VK icon /// /// https://fontawesome.com/icons/vk?style=brands - static const IconData vk = IconDataBrands(0xf189); + static const IconData vk = IconData(0xf189, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands VNV icon /// /// https://fontawesome.com/icons/vnv?style=brands - static const IconData vnv = IconDataBrands(0xf40b); + static const IconData vnv = IconData(0xf40b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Voicemail icon /// /// https://fontawesome.com/icons/voicemail?style=solid /// answer, inbox, message, phone - static const IconData solidVoicemail = IconDataSolid(0xf897); + static const IconData solidVoicemail = IconData(0xf897, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Voicemail icon /// /// https://fontawesome.com/icons/voicemail?style=regular /// answer, inbox, message, phone - static const IconData voicemail = IconDataRegular(0xf897); + static const IconData voicemail = IconData(0xf897, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Voicemail icon /// /// https://fontawesome.com/icons/voicemail?style=light /// answer, inbox, message, phone - static const IconData lightVoicemail = IconDataLight(0xf897); + static const IconData lightVoicemail = IconData(0xf897, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Voicemail icon /// /// https://fontawesome.com/icons/voicemail?style=thin /// answer, inbox, message, phone - static const IconData thinVoicemail = IconDataThin(0xf897); + static const IconData thinVoicemail = IconData(0xf897, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Volcano icon /// /// https://fontawesome.com/icons/volcano?style=solid /// caldera, eruption, lava, magma, mountain, smoke, volcano - static const IconData solidVolcano = IconDataSolid(0xf770); + static const IconData solidVolcano = IconData(0xf770, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Volcano icon /// /// https://fontawesome.com/icons/volcano?style=regular /// caldera, eruption, lava, magma, mountain, smoke, volcano - static const IconData volcano = IconDataRegular(0xf770); + static const IconData volcano = IconData(0xf770, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Volcano icon /// /// https://fontawesome.com/icons/volcano?style=light /// caldera, eruption, lava, magma, mountain, smoke, volcano - static const IconData lightVolcano = IconDataLight(0xf770); + static const IconData lightVolcano = IconData(0xf770, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Volcano icon /// /// https://fontawesome.com/icons/volcano?style=thin /// caldera, eruption, lava, magma, mountain, smoke, volcano - static const IconData thinVolcano = IconDataThin(0xf770); + static const IconData thinVolcano = IconData(0xf770, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Volleyball icon /// /// https://fontawesome.com/icons/volleyball?style=solid /// ball, beach, game, olympics, sport, volleyball - static const IconData solidVolleyball = IconDataSolid(0xf45f); + static const IconData solidVolleyball = IconData(0xf45f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volleyball-ball for icon [solidVolleyball] @Deprecated('Use "solidVolleyball" instead.') @@ -94242,7 +94242,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volleyball?style=regular /// ball, beach, game, olympics, sport, volleyball - static const IconData volleyball = IconDataRegular(0xf45f); + static const IconData volleyball = IconData(0xf45f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volleyball-ball for icon [volleyball] @Deprecated('Use "volleyball" instead.') @@ -94252,7 +94252,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volleyball?style=light /// ball, beach, game, olympics, sport, volleyball - static const IconData lightVolleyball = IconDataLight(0xf45f); + static const IconData lightVolleyball = IconData(0xf45f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volleyball-ball for icon [lightVolleyball] @Deprecated('Use "lightVolleyball" instead.') @@ -94262,7 +94262,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volleyball?style=thin /// ball, beach, game, olympics, sport, volleyball - static const IconData thinVolleyball = IconDataThin(0xf45f); + static const IconData thinVolleyball = IconData(0xf45f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volleyball-ball for icon [thinVolleyball] @Deprecated('Use "thinVolleyball" instead.') @@ -94272,7 +94272,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume?style=solid /// audio, control, medium, music, sound, speaker, speaker medium volume - static const IconData solidVolume = IconDataSolid(0xf6a8); + static const IconData solidVolume = IconData(0xf6a8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volume-medium for icon [solidVolume] @Deprecated('Use "solidVolume" instead.') @@ -94282,7 +94282,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume?style=regular /// audio, control, medium, music, sound, speaker, speaker medium volume - static const IconData volume = IconDataRegular(0xf6a8); + static const IconData volume = IconData(0xf6a8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volume-medium for icon [volume] @Deprecated('Use "volume" instead.') @@ -94292,7 +94292,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume?style=light /// audio, control, medium, music, sound, speaker, speaker medium volume - static const IconData lightVolume = IconDataLight(0xf6a8); + static const IconData lightVolume = IconData(0xf6a8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volume-medium for icon [lightVolume] @Deprecated('Use "lightVolume" instead.') @@ -94302,7 +94302,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume?style=thin /// audio, control, medium, music, sound, speaker, speaker medium volume - static const IconData thinVolume = IconDataThin(0xf6a8); + static const IconData thinVolume = IconData(0xf6a8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volume-medium for icon [thinVolume] @Deprecated('Use "thinVolume" instead.') @@ -94312,7 +94312,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-high?style=solid /// audio, higher, loud, louder, music, sound, speaker, speaker high volume - static const IconData solidVolumeHigh = IconDataSolid(0xf028); + static const IconData solidVolumeHigh = IconData(0xf028, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volume-up for icon [solidVolumeHigh] @Deprecated('Use "solidVolumeHigh" instead.') @@ -94322,7 +94322,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-high?style=regular /// audio, higher, loud, louder, music, sound, speaker, speaker high volume - static const IconData volumeHigh = IconDataRegular(0xf028); + static const IconData volumeHigh = IconData(0xf028, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volume-up for icon [volumeHigh] @Deprecated('Use "volumeHigh" instead.') @@ -94332,7 +94332,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-high?style=light /// audio, higher, loud, louder, music, sound, speaker, speaker high volume - static const IconData lightVolumeHigh = IconDataLight(0xf028); + static const IconData lightVolumeHigh = IconData(0xf028, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volume-up for icon [lightVolumeHigh] @Deprecated('Use "lightVolumeHigh" instead.') @@ -94342,7 +94342,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-high?style=thin /// audio, higher, loud, louder, music, sound, speaker, speaker high volume - static const IconData thinVolumeHigh = IconDataThin(0xf028); + static const IconData thinVolumeHigh = IconData(0xf028, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volume-up for icon [thinVolumeHigh] @Deprecated('Use "thinVolumeHigh" instead.') @@ -94352,7 +94352,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-low?style=solid /// audio, lower, music, quieter, soft, sound, speaker, speaker low volume - static const IconData solidVolumeLow = IconDataSolid(0xf027); + static const IconData solidVolumeLow = IconData(0xf027, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volume-down for icon [solidVolumeLow] @Deprecated('Use "solidVolumeLow" instead.') @@ -94362,7 +94362,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-low?style=regular /// audio, lower, music, quieter, soft, sound, speaker, speaker low volume - static const IconData volumeLow = IconDataRegular(0xf027); + static const IconData volumeLow = IconData(0xf027, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volume-down for icon [volumeLow] @Deprecated('Use "volumeLow" instead.') @@ -94372,7 +94372,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-low?style=light /// audio, lower, music, quieter, soft, sound, speaker, speaker low volume - static const IconData lightVolumeLow = IconDataLight(0xf027); + static const IconData lightVolumeLow = IconData(0xf027, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volume-down for icon [lightVolumeLow] @Deprecated('Use "lightVolumeLow" instead.') @@ -94382,7 +94382,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-low?style=thin /// audio, lower, music, quieter, soft, sound, speaker, speaker low volume - static const IconData thinVolumeLow = IconDataThin(0xf027); + static const IconData thinVolumeLow = IconData(0xf027, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volume-down for icon [thinVolumeLow] @Deprecated('Use "thinVolumeLow" instead.') @@ -94392,55 +94392,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-off?style=solid /// audio, ban, music, mute, quiet, silent, sound - static const IconData solidVolumeOff = IconDataSolid(0xf026); + static const IconData solidVolumeOff = IconData(0xf026, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Volume Off icon /// /// https://fontawesome.com/icons/volume-off?style=regular /// audio, ban, music, mute, quiet, silent, sound - static const IconData volumeOff = IconDataRegular(0xf026); + static const IconData volumeOff = IconData(0xf026, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Volume Off icon /// /// https://fontawesome.com/icons/volume-off?style=light /// audio, ban, music, mute, quiet, silent, sound - static const IconData lightVolumeOff = IconDataLight(0xf026); + static const IconData lightVolumeOff = IconData(0xf026, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Volume Off icon /// /// https://fontawesome.com/icons/volume-off?style=thin /// audio, ban, music, mute, quiet, silent, sound - static const IconData thinVolumeOff = IconDataThin(0xf026); + static const IconData thinVolumeOff = IconData(0xf026, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Volume Slash icon /// /// https://fontawesome.com/icons/volume-slash?style=solid /// audio, ban, disabled, music, mute, muted speaker, quiet, silent, sound, speaker - static const IconData solidVolumeSlash = IconDataSolid(0xf2e2); + static const IconData solidVolumeSlash = IconData(0xf2e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Volume Slash icon /// /// https://fontawesome.com/icons/volume-slash?style=regular /// audio, ban, disabled, music, mute, muted speaker, quiet, silent, sound, speaker - static const IconData volumeSlash = IconDataRegular(0xf2e2); + static const IconData volumeSlash = IconData(0xf2e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Volume Slash icon /// /// https://fontawesome.com/icons/volume-slash?style=light /// audio, ban, disabled, music, mute, muted speaker, quiet, silent, sound, speaker - static const IconData lightVolumeSlash = IconDataLight(0xf2e2); + static const IconData lightVolumeSlash = IconData(0xf2e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Volume Slash icon /// /// https://fontawesome.com/icons/volume-slash?style=thin /// audio, ban, disabled, music, mute, muted speaker, quiet, silent, sound, speaker - static const IconData thinVolumeSlash = IconDataThin(0xf2e2); + static const IconData thinVolumeSlash = IconData(0xf2e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Volume Xmark icon /// /// https://fontawesome.com/icons/volume-xmark?style=solid /// audio, music, quiet, sound, speaker - static const IconData solidVolumeXmark = IconDataSolid(0xf6a9); + static const IconData solidVolumeXmark = IconData(0xf6a9, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias volume-mute for icon [solidVolumeXmark] @Deprecated('Use "solidVolumeXmark" instead.') @@ -94454,7 +94454,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-xmark?style=regular /// audio, music, quiet, sound, speaker - static const IconData volumeXmark = IconDataRegular(0xf6a9); + static const IconData volumeXmark = IconData(0xf6a9, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias volume-mute for icon [volumeXmark] @Deprecated('Use "volumeXmark" instead.') @@ -94468,7 +94468,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-xmark?style=light /// audio, music, quiet, sound, speaker - static const IconData lightVolumeXmark = IconDataLight(0xf6a9); + static const IconData lightVolumeXmark = IconData(0xf6a9, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias volume-mute for icon [lightVolumeXmark] @Deprecated('Use "lightVolumeXmark" instead.') @@ -94482,7 +94482,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/volume-xmark?style=thin /// audio, music, quiet, sound, speaker - static const IconData thinVolumeXmark = IconDataThin(0xf6a9); + static const IconData thinVolumeXmark = IconData(0xf6a9, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias volume-mute for icon [thinVolumeXmark] @Deprecated('Use "thinVolumeXmark" instead.') @@ -94496,204 +94496,204 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/vr-cardboard?style=solid /// 3d, augment, google, reality, virtual - static const IconData solidVrCardboard = IconDataSolid(0xf729); + static const IconData solidVrCardboard = IconData(0xf729, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Vr Cardboard icon /// /// https://fontawesome.com/icons/vr-cardboard?style=regular /// 3d, augment, google, reality, virtual - static const IconData vrCardboard = IconDataRegular(0xf729); + static const IconData vrCardboard = IconData(0xf729, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Vr Cardboard icon /// /// https://fontawesome.com/icons/vr-cardboard?style=light /// 3d, augment, google, reality, virtual - static const IconData lightVrCardboard = IconDataLight(0xf729); + static const IconData lightVrCardboard = IconData(0xf729, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Vr Cardboard icon /// /// https://fontawesome.com/icons/vr-cardboard?style=thin /// 3d, augment, google, reality, virtual - static const IconData thinVrCardboard = IconDataThin(0xf729); + static const IconData thinVrCardboard = IconData(0xf729, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Vue.js icon /// /// https://fontawesome.com/icons/vuejs?style=brands - static const IconData vuejs = IconDataBrands(0xf41f); + static const IconData vuejs = IconData(0xf41f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid W icon /// /// https://fontawesome.com/icons/w?style=solid /// Latin Capital Letter W, Latin Small Letter W, letter - static const IconData solidW = IconDataSolid(0x57); + static const IconData solidW = IconData(0x57, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular W icon /// /// https://fontawesome.com/icons/w?style=regular /// Latin Capital Letter W, Latin Small Letter W, letter - static const IconData w = IconDataRegular(0x57); + static const IconData w = IconData(0x57, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light W icon /// /// https://fontawesome.com/icons/w?style=light /// Latin Capital Letter W, Latin Small Letter W, letter - static const IconData lightW = IconDataLight(0x57); + static const IconData lightW = IconData(0x57, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin W icon /// /// https://fontawesome.com/icons/w?style=thin /// Latin Capital Letter W, Latin Small Letter W, letter - static const IconData thinW = IconDataThin(0x57); + static const IconData thinW = IconData(0x57, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Waffle icon /// /// https://fontawesome.com/icons/waffle?style=solid /// breakfast, indecisive, iron, waffle - static const IconData solidWaffle = IconDataSolid(0xe466); + static const IconData solidWaffle = IconData(0xe466, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Waffle icon /// /// https://fontawesome.com/icons/waffle?style=regular /// breakfast, indecisive, iron, waffle - static const IconData waffle = IconDataRegular(0xe466); + static const IconData waffle = IconData(0xe466, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Waffle icon /// /// https://fontawesome.com/icons/waffle?style=light /// breakfast, indecisive, iron, waffle - static const IconData lightWaffle = IconDataLight(0xe466); + static const IconData lightWaffle = IconData(0xe466, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Waffle icon /// /// https://fontawesome.com/icons/waffle?style=thin /// breakfast, indecisive, iron, waffle - static const IconData thinWaffle = IconDataThin(0xe466); + static const IconData thinWaffle = IconData(0xe466, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wagon Covered icon /// /// https://fontawesome.com/icons/wagon-covered?style=solid /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData solidWagonCovered = IconDataSolid(0xf8ee); + static const IconData solidWagonCovered = IconData(0xf8ee, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wagon Covered icon /// /// https://fontawesome.com/icons/wagon-covered?style=regular /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData wagonCovered = IconDataRegular(0xf8ee); + static const IconData wagonCovered = IconData(0xf8ee, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wagon Covered icon /// /// https://fontawesome.com/icons/wagon-covered?style=light /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData lightWagonCovered = IconDataLight(0xf8ee); + static const IconData lightWagonCovered = IconData(0xf8ee, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wagon Covered icon /// /// https://fontawesome.com/icons/wagon-covered?style=thin /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData thinWagonCovered = IconDataThin(0xf8ee); + static const IconData thinWagonCovered = IconData(0xf8ee, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Walker icon /// /// https://fontawesome.com/icons/walker?style=solid /// accessibility, assistance, disabled, wheelchair - static const IconData solidWalker = IconDataSolid(0xf831); + static const IconData solidWalker = IconData(0xf831, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Walker icon /// /// https://fontawesome.com/icons/walker?style=regular /// accessibility, assistance, disabled, wheelchair - static const IconData walker = IconDataRegular(0xf831); + static const IconData walker = IconData(0xf831, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Walker icon /// /// https://fontawesome.com/icons/walker?style=light /// accessibility, assistance, disabled, wheelchair - static const IconData lightWalker = IconDataLight(0xf831); + static const IconData lightWalker = IconData(0xf831, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Walker icon /// /// https://fontawesome.com/icons/walker?style=thin /// accessibility, assistance, disabled, wheelchair - static const IconData thinWalker = IconDataThin(0xf831); + static const IconData thinWalker = IconData(0xf831, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Walkie Talkie icon /// /// https://fontawesome.com/icons/walkie-talkie?style=solid /// communication, copy, intercom, over, portable, radio, two way radio - static const IconData solidWalkieTalkie = IconDataSolid(0xf8ef); + static const IconData solidWalkieTalkie = IconData(0xf8ef, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Walkie Talkie icon /// /// https://fontawesome.com/icons/walkie-talkie?style=regular /// communication, copy, intercom, over, portable, radio, two way radio - static const IconData walkieTalkie = IconDataRegular(0xf8ef); + static const IconData walkieTalkie = IconData(0xf8ef, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Walkie Talkie icon /// /// https://fontawesome.com/icons/walkie-talkie?style=light /// communication, copy, intercom, over, portable, radio, two way radio - static const IconData lightWalkieTalkie = IconDataLight(0xf8ef); + static const IconData lightWalkieTalkie = IconData(0xf8ef, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Walkie Talkie icon /// /// https://fontawesome.com/icons/walkie-talkie?style=thin /// communication, copy, intercom, over, portable, radio, two way radio - static const IconData thinWalkieTalkie = IconDataThin(0xf8ef); + static const IconData thinWalkieTalkie = IconData(0xf8ef, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wallet icon /// /// https://fontawesome.com/icons/wallet?style=solid /// billfold, cash, currency, money, salary - static const IconData solidWallet = IconDataSolid(0xf555); + static const IconData solidWallet = IconData(0xf555, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wallet icon /// /// https://fontawesome.com/icons/wallet?style=regular /// billfold, cash, currency, money, salary - static const IconData wallet = IconDataRegular(0xf555); + static const IconData wallet = IconData(0xf555, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wallet icon /// /// https://fontawesome.com/icons/wallet?style=light /// billfold, cash, currency, money, salary - static const IconData lightWallet = IconDataLight(0xf555); + static const IconData lightWallet = IconData(0xf555, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wallet icon /// /// https://fontawesome.com/icons/wallet?style=thin /// billfold, cash, currency, money, salary - static const IconData thinWallet = IconDataThin(0xf555); + static const IconData thinWallet = IconData(0xf555, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wand icon /// /// https://fontawesome.com/icons/wand?style=solid /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData solidWand = IconDataSolid(0xf72a); + static const IconData solidWand = IconData(0xf72a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wand icon /// /// https://fontawesome.com/icons/wand?style=regular /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData wand = IconDataRegular(0xf72a); + static const IconData wand = IconData(0xf72a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wand icon /// /// https://fontawesome.com/icons/wand?style=light /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData lightWand = IconDataLight(0xf72a); + static const IconData lightWand = IconData(0xf72a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wand icon /// /// https://fontawesome.com/icons/wand?style=thin /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData thinWand = IconDataThin(0xf72a); + static const IconData thinWand = IconData(0xf72a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wand Magic icon /// /// https://fontawesome.com/icons/wand-magic?style=solid /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData solidWandMagic = IconDataSolid(0xf0d0); + static const IconData solidWandMagic = IconData(0xf0d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias magic for icon [solidWandMagic] @Deprecated('Use "solidWandMagic" instead.') @@ -94703,7 +94703,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic?style=regular /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData wandMagic = IconDataRegular(0xf0d0); + static const IconData wandMagic = IconData(0xf0d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias magic for icon [wandMagic] @Deprecated('Use "wandMagic" instead.') @@ -94713,7 +94713,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic?style=light /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData lightWandMagic = IconDataLight(0xf0d0); + static const IconData lightWandMagic = IconData(0xf0d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias magic for icon [lightWandMagic] @Deprecated('Use "lightWandMagic" instead.') @@ -94723,7 +94723,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic?style=thin /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData thinWandMagic = IconDataThin(0xf0d0); + static const IconData thinWandMagic = IconData(0xf0d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias magic for icon [thinWandMagic] @Deprecated('Use "thinWandMagic" instead.') @@ -94733,7 +94733,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic-sparkles?style=solid /// auto, magic, magic wand, trick, witch, wizard - static const IconData solidWandMagicSparkles = IconDataSolid(0xe2ca); + static const IconData solidWandMagicSparkles = IconData(0xe2ca, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias magic-wand-sparkles for icon [solidWandMagicSparkles] @Deprecated('Use "solidWandMagicSparkles" instead.') @@ -94743,7 +94743,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic-sparkles?style=regular /// auto, magic, magic wand, trick, witch, wizard - static const IconData wandMagicSparkles = IconDataRegular(0xe2ca); + static const IconData wandMagicSparkles = IconData(0xe2ca, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias magic-wand-sparkles for icon [wandMagicSparkles] @Deprecated('Use "wandMagicSparkles" instead.') @@ -94753,7 +94753,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic-sparkles?style=light /// auto, magic, magic wand, trick, witch, wizard - static const IconData lightWandMagicSparkles = IconDataLight(0xe2ca); + static const IconData lightWandMagicSparkles = IconData(0xe2ca, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias magic-wand-sparkles for icon [lightWandMagicSparkles] @Deprecated('Use "lightWandMagicSparkles" instead.') @@ -94763,7 +94763,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-magic-sparkles?style=thin /// auto, magic, magic wand, trick, witch, wizard - static const IconData thinWandMagicSparkles = IconDataThin(0xe2ca); + static const IconData thinWandMagicSparkles = IconData(0xe2ca, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias magic-wand-sparkles for icon [thinWandMagicSparkles] @Deprecated('Use "thinWandMagicSparkles" instead.') @@ -94773,55 +94773,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wand-sparkles?style=solid /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData solidWandSparkles = IconDataSolid(0xf72b); + static const IconData solidWandSparkles = IconData(0xf72b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wand Sparkles icon /// /// https://fontawesome.com/icons/wand-sparkles?style=regular /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData wandSparkles = IconDataRegular(0xf72b); + static const IconData wandSparkles = IconData(0xf72b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wand Sparkles icon /// /// https://fontawesome.com/icons/wand-sparkles?style=light /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData lightWandSparkles = IconDataLight(0xf72b); + static const IconData lightWandSparkles = IconData(0xf72b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wand Sparkles icon /// /// https://fontawesome.com/icons/wand-sparkles?style=thin /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData thinWandSparkles = IconDataThin(0xf72b); + static const IconData thinWandSparkles = IconData(0xf72b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Warehouse icon /// /// https://fontawesome.com/icons/warehouse?style=solid /// building, capacity, garage, inventory, storage - static const IconData solidWarehouse = IconDataSolid(0xf494); + static const IconData solidWarehouse = IconData(0xf494, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Warehouse icon /// /// https://fontawesome.com/icons/warehouse?style=regular /// building, capacity, garage, inventory, storage - static const IconData warehouse = IconDataRegular(0xf494); + static const IconData warehouse = IconData(0xf494, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Warehouse icon /// /// https://fontawesome.com/icons/warehouse?style=light /// building, capacity, garage, inventory, storage - static const IconData lightWarehouse = IconDataLight(0xf494); + static const IconData lightWarehouse = IconData(0xf494, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Warehouse icon /// /// https://fontawesome.com/icons/warehouse?style=thin /// building, capacity, garage, inventory, storage - static const IconData thinWarehouse = IconDataThin(0xf494); + static const IconData thinWarehouse = IconData(0xf494, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Warehouse Full icon /// /// https://fontawesome.com/icons/warehouse-full?style=solid /// building, capacity, garage, inventory, storage - static const IconData solidWarehouseFull = IconDataSolid(0xf495); + static const IconData solidWarehouseFull = IconData(0xf495, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias warehouse-alt for icon [solidWarehouseFull] @Deprecated('Use "solidWarehouseFull" instead.') @@ -94831,7 +94831,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/warehouse-full?style=regular /// building, capacity, garage, inventory, storage - static const IconData warehouseFull = IconDataRegular(0xf495); + static const IconData warehouseFull = IconData(0xf495, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias warehouse-alt for icon [warehouseFull] @Deprecated('Use "warehouseFull" instead.') @@ -94841,7 +94841,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/warehouse-full?style=light /// building, capacity, garage, inventory, storage - static const IconData lightWarehouseFull = IconDataLight(0xf495); + static const IconData lightWarehouseFull = IconData(0xf495, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias warehouse-alt for icon [lightWarehouseFull] @Deprecated('Use "lightWarehouseFull" instead.') @@ -94851,7 +94851,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/warehouse-full?style=thin /// building, capacity, garage, inventory, storage - static const IconData thinWarehouseFull = IconDataThin(0xf495); + static const IconData thinWarehouseFull = IconData(0xf495, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias warehouse-alt for icon [thinWarehouseFull] @Deprecated('Use "thinWarehouseFull" instead.') @@ -94861,7 +94861,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/washing-machine?style=solid /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidWashingMachine = IconDataSolid(0xf898); + static const IconData solidWashingMachine = IconData(0xf898, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias washer for icon [solidWashingMachine] @Deprecated('Use "solidWashingMachine" instead.') @@ -94871,7 +94871,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/washing-machine?style=regular /// clean, clothes, laundromat, laundry, washing machine - static const IconData washingMachine = IconDataRegular(0xf898); + static const IconData washingMachine = IconData(0xf898, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias washer for icon [washingMachine] @Deprecated('Use "washingMachine" instead.') @@ -94881,7 +94881,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/washing-machine?style=light /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightWashingMachine = IconDataLight(0xf898); + static const IconData lightWashingMachine = IconData(0xf898, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias washer for icon [lightWashingMachine] @Deprecated('Use "lightWashingMachine" instead.') @@ -94891,7 +94891,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/washing-machine?style=thin /// clean, clothes, laundromat, laundry, washing machine - static const IconData thinWashingMachine = IconDataThin(0xf898); + static const IconData thinWashingMachine = IconData(0xf898, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias washer for icon [thinWashingMachine] @Deprecated('Use "thinWashingMachine" instead.') @@ -94901,156 +94901,156 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/watch?style=solid /// alert, clock, time, watch, wristwatch - static const IconData solidWatch = IconDataSolid(0xf2e1); + static const IconData solidWatch = IconData(0xf2e1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watch icon /// /// https://fontawesome.com/icons/watch?style=regular /// alert, clock, time, watch, wristwatch - static const IconData watch = IconDataRegular(0xf2e1); + static const IconData watch = IconData(0xf2e1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watch icon /// /// https://fontawesome.com/icons/watch?style=light /// alert, clock, time, watch, wristwatch - static const IconData lightWatch = IconDataLight(0xf2e1); + static const IconData lightWatch = IconData(0xf2e1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watch icon /// /// https://fontawesome.com/icons/watch?style=thin /// alert, clock, time, watch, wristwatch - static const IconData thinWatch = IconDataThin(0xf2e1); + static const IconData thinWatch = IconData(0xf2e1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Watch Apple icon /// /// https://fontawesome.com/icons/watch-apple?style=solid /// apps, digital, fitness, smartwatch - static const IconData solidWatchApple = IconDataSolid(0xe2cb); + static const IconData solidWatchApple = IconData(0xe2cb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watch Apple icon /// /// https://fontawesome.com/icons/watch-apple?style=regular /// apps, digital, fitness, smartwatch - static const IconData watchApple = IconDataRegular(0xe2cb); + static const IconData watchApple = IconData(0xe2cb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watch Apple icon /// /// https://fontawesome.com/icons/watch-apple?style=light /// apps, digital, fitness, smartwatch - static const IconData lightWatchApple = IconDataLight(0xe2cb); + static const IconData lightWatchApple = IconData(0xe2cb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watch Apple icon /// /// https://fontawesome.com/icons/watch-apple?style=thin /// apps, digital, fitness, smartwatch - static const IconData thinWatchApple = IconDataThin(0xe2cb); + static const IconData thinWatchApple = IconData(0xe2cb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Watch Calculator icon /// /// https://fontawesome.com/icons/watch-calculator?style=solid /// casio, digital, math, time - static const IconData solidWatchCalculator = IconDataSolid(0xf8f0); + static const IconData solidWatchCalculator = IconData(0xf8f0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watch Calculator icon /// /// https://fontawesome.com/icons/watch-calculator?style=regular /// casio, digital, math, time - static const IconData watchCalculator = IconDataRegular(0xf8f0); + static const IconData watchCalculator = IconData(0xf8f0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watch Calculator icon /// /// https://fontawesome.com/icons/watch-calculator?style=light /// casio, digital, math, time - static const IconData lightWatchCalculator = IconDataLight(0xf8f0); + static const IconData lightWatchCalculator = IconData(0xf8f0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watch Calculator icon /// /// https://fontawesome.com/icons/watch-calculator?style=thin /// casio, digital, math, time - static const IconData thinWatchCalculator = IconDataThin(0xf8f0); + static const IconData thinWatchCalculator = IconData(0xf8f0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Watch Fitness icon /// /// https://fontawesome.com/icons/watch-fitness?style=solid /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData solidWatchFitness = IconDataSolid(0xf63e); + static const IconData solidWatchFitness = IconData(0xf63e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watch Fitness icon /// /// https://fontawesome.com/icons/watch-fitness?style=regular /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData watchFitness = IconDataRegular(0xf63e); + static const IconData watchFitness = IconData(0xf63e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watch Fitness icon /// /// https://fontawesome.com/icons/watch-fitness?style=light /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData lightWatchFitness = IconDataLight(0xf63e); + static const IconData lightWatchFitness = IconData(0xf63e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watch Fitness icon /// /// https://fontawesome.com/icons/watch-fitness?style=thin /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData thinWatchFitness = IconDataThin(0xf63e); + static const IconData thinWatchFitness = IconData(0xf63e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Watch Smart icon /// /// https://fontawesome.com/icons/watch-smart?style=solid /// apps, fitness, time - static const IconData solidWatchSmart = IconDataSolid(0xe2cc); + static const IconData solidWatchSmart = IconData(0xe2cc, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watch Smart icon /// /// https://fontawesome.com/icons/watch-smart?style=regular /// apps, fitness, time - static const IconData watchSmart = IconDataRegular(0xe2cc); + static const IconData watchSmart = IconData(0xe2cc, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watch Smart icon /// /// https://fontawesome.com/icons/watch-smart?style=light /// apps, fitness, time - static const IconData lightWatchSmart = IconDataLight(0xe2cc); + static const IconData lightWatchSmart = IconData(0xe2cc, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watch Smart icon /// /// https://fontawesome.com/icons/watch-smart?style=thin /// apps, fitness, time - static const IconData thinWatchSmart = IconDataThin(0xe2cc); + static const IconData thinWatchSmart = IconData(0xe2cc, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Watchman Monitoring icon /// /// https://fontawesome.com/icons/watchman-monitoring?style=brands - static const IconData watchmanMonitoring = IconDataBrands(0xe087); + static const IconData watchmanMonitoring = IconData(0xe087, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Water icon /// /// https://fontawesome.com/icons/water?style=solid /// lake, liquid, ocean, sea, swim, wet - static const IconData solidWater = IconDataSolid(0xf773); + static const IconData solidWater = IconData(0xf773, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Water icon /// /// https://fontawesome.com/icons/water?style=regular /// lake, liquid, ocean, sea, swim, wet - static const IconData water = IconDataRegular(0xf773); + static const IconData water = IconData(0xf773, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Water icon /// /// https://fontawesome.com/icons/water?style=light /// lake, liquid, ocean, sea, swim, wet - static const IconData lightWater = IconDataLight(0xf773); + static const IconData lightWater = IconData(0xf773, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Water icon /// /// https://fontawesome.com/icons/water?style=thin /// lake, liquid, ocean, sea, swim, wet - static const IconData thinWater = IconDataThin(0xf773); + static const IconData thinWater = IconData(0xf773, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Water Arrow Down icon /// /// https://fontawesome.com/icons/water-arrow-down?style=solid /// flood, insert, lake, liquid, ocean, recede, sea, swim, wet - static const IconData solidWaterArrowDown = IconDataSolid(0xf774); + static const IconData solidWaterArrowDown = IconData(0xf774, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias water-lower for icon [solidWaterArrowDown] @Deprecated('Use "solidWaterArrowDown" instead.') @@ -95060,7 +95060,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-down?style=regular /// flood, insert, lake, liquid, ocean, recede, sea, swim, wet - static const IconData waterArrowDown = IconDataRegular(0xf774); + static const IconData waterArrowDown = IconData(0xf774, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias water-lower for icon [waterArrowDown] @Deprecated('Use "waterArrowDown" instead.') @@ -95070,7 +95070,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-down?style=light /// flood, insert, lake, liquid, ocean, recede, sea, swim, wet - static const IconData lightWaterArrowDown = IconDataLight(0xf774); + static const IconData lightWaterArrowDown = IconData(0xf774, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias water-lower for icon [lightWaterArrowDown] @Deprecated('Use "lightWaterArrowDown" instead.') @@ -95080,7 +95080,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-down?style=thin /// flood, insert, lake, liquid, ocean, recede, sea, swim, wet - static const IconData thinWaterArrowDown = IconDataThin(0xf774); + static const IconData thinWaterArrowDown = IconData(0xf774, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias water-lower for icon [thinWaterArrowDown] @Deprecated('Use "thinWaterArrowDown" instead.') @@ -95090,7 +95090,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-up?style=solid /// flood, lake, liquid, ocean, sea, swim, upgrade, wet - static const IconData solidWaterArrowUp = IconDataSolid(0xf775); + static const IconData solidWaterArrowUp = IconData(0xf775, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias water-rise for icon [solidWaterArrowUp] @Deprecated('Use "solidWaterArrowUp" instead.') @@ -95100,7 +95100,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-up?style=regular /// flood, lake, liquid, ocean, sea, swim, upgrade, wet - static const IconData waterArrowUp = IconDataRegular(0xf775); + static const IconData waterArrowUp = IconData(0xf775, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias water-rise for icon [waterArrowUp] @Deprecated('Use "waterArrowUp" instead.') @@ -95110,7 +95110,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-up?style=light /// flood, lake, liquid, ocean, sea, swim, upgrade, wet - static const IconData lightWaterArrowUp = IconDataLight(0xf775); + static const IconData lightWaterArrowUp = IconData(0xf775, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias water-rise for icon [lightWaterArrowUp] @Deprecated('Use "lightWaterArrowUp" instead.') @@ -95120,7 +95120,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-arrow-up?style=thin /// flood, lake, liquid, ocean, sea, swim, upgrade, wet - static const IconData thinWaterArrowUp = IconDataThin(0xf775); + static const IconData thinWaterArrowUp = IconData(0xf775, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias water-rise for icon [thinWaterArrowUp] @Deprecated('Use "thinWaterArrowUp" instead.') @@ -95130,7 +95130,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-ladder?style=solid /// ladder, recreation, swim, water - static const IconData solidWaterLadder = IconDataSolid(0xf5c5); + static const IconData solidWaterLadder = IconData(0xf5c5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias ladder-water for icon [solidWaterLadder] @Deprecated('Use "solidWaterLadder" instead.') @@ -95144,7 +95144,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-ladder?style=regular /// ladder, recreation, swim, water - static const IconData waterLadder = IconDataRegular(0xf5c5); + static const IconData waterLadder = IconData(0xf5c5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias ladder-water for icon [waterLadder] @Deprecated('Use "waterLadder" instead.') @@ -95158,7 +95158,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-ladder?style=light /// ladder, recreation, swim, water - static const IconData lightWaterLadder = IconDataLight(0xf5c5); + static const IconData lightWaterLadder = IconData(0xf5c5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias ladder-water for icon [lightWaterLadder] @Deprecated('Use "lightWaterLadder" instead.') @@ -95172,7 +95172,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/water-ladder?style=thin /// ladder, recreation, swim, water - static const IconData thinWaterLadder = IconDataThin(0xf5c5); + static const IconData thinWaterLadder = IconData(0xf5c5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias ladder-water for icon [thinWaterLadder] @Deprecated('Use "thinWaterLadder" instead.') @@ -95186,55 +95186,55 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/watermelon-slice?style=solid /// fruit, seed, watermelon, wedge - static const IconData solidWatermelonSlice = IconDataSolid(0xe337); + static const IconData solidWatermelonSlice = IconData(0xe337, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Watermelon Slice icon /// /// https://fontawesome.com/icons/watermelon-slice?style=regular /// fruit, seed, watermelon, wedge - static const IconData watermelonSlice = IconDataRegular(0xe337); + static const IconData watermelonSlice = IconData(0xe337, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Watermelon Slice icon /// /// https://fontawesome.com/icons/watermelon-slice?style=light /// fruit, seed, watermelon, wedge - static const IconData lightWatermelonSlice = IconDataLight(0xe337); + static const IconData lightWatermelonSlice = IconData(0xe337, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Watermelon Slice icon /// /// https://fontawesome.com/icons/watermelon-slice?style=thin /// fruit, seed, watermelon, wedge - static const IconData thinWatermelonSlice = IconDataThin(0xe337); + static const IconData thinWatermelonSlice = IconData(0xe337, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wave icon /// /// https://fontawesome.com/icons/wave?style=solid /// beach, flotsam, jetsam, surf, tsunami, wave, barrel, break, bro, shore, water - static const IconData solidWave = IconDataSolid(0xe65b); + static const IconData solidWave = IconData(0xe65b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wave icon /// /// https://fontawesome.com/icons/wave?style=regular /// beach, flotsam, jetsam, surf, tsunami, wave, barrel, break, bro, shore, water - static const IconData wave = IconDataRegular(0xe65b); + static const IconData wave = IconData(0xe65b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wave icon /// /// https://fontawesome.com/icons/wave?style=light /// beach, flotsam, jetsam, surf, tsunami, wave, barrel, break, bro, shore, water - static const IconData lightWave = IconDataLight(0xe65b); + static const IconData lightWave = IconData(0xe65b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wave icon /// /// https://fontawesome.com/icons/wave?style=thin /// beach, flotsam, jetsam, surf, tsunami, wave, barrel, break, bro, shore, water - static const IconData thinWave = IconDataThin(0xe65b); + static const IconData thinWave = IconData(0xe65b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wave Pulse icon /// /// https://fontawesome.com/icons/wave-pulse?style=solid /// EKG, activity, electrocardiogram, health, life, vital - static const IconData solidWavePulse = IconDataSolid(0xf5f8); + static const IconData solidWavePulse = IconData(0xf5f8, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias heart-rate for icon [solidWavePulse] @Deprecated('Use "solidWavePulse" instead.') @@ -95244,7 +95244,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wave-pulse?style=regular /// EKG, activity, electrocardiogram, health, life, vital - static const IconData wavePulse = IconDataRegular(0xf5f8); + static const IconData wavePulse = IconData(0xf5f8, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias heart-rate for icon [wavePulse] @Deprecated('Use "wavePulse" instead.') @@ -95254,7 +95254,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wave-pulse?style=light /// EKG, activity, electrocardiogram, health, life, vital - static const IconData lightWavePulse = IconDataLight(0xf5f8); + static const IconData lightWavePulse = IconData(0xf5f8, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias heart-rate for icon [lightWavePulse] @Deprecated('Use "lightWavePulse" instead.') @@ -95264,7 +95264,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wave-pulse?style=thin /// EKG, activity, electrocardiogram, health, life, vital - static const IconData thinWavePulse = IconDataThin(0xf5f8); + static const IconData thinWavePulse = IconData(0xf5f8, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias heart-rate for icon [thinWavePulse] @Deprecated('Use "thinWavePulse" instead.') @@ -95274,103 +95274,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wave-sine?style=solid /// Sine Wave, frequency, pulse, signal - static const IconData solidWaveSine = IconDataSolid(0xf899); + static const IconData solidWaveSine = IconData(0xf899, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wave Sine icon /// /// https://fontawesome.com/icons/wave-sine?style=regular /// Sine Wave, frequency, pulse, signal - static const IconData waveSine = IconDataRegular(0xf899); + static const IconData waveSine = IconData(0xf899, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wave Sine icon /// /// https://fontawesome.com/icons/wave-sine?style=light /// Sine Wave, frequency, pulse, signal - static const IconData lightWaveSine = IconDataLight(0xf899); + static const IconData lightWaveSine = IconData(0xf899, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wave Sine icon /// /// https://fontawesome.com/icons/wave-sine?style=thin /// Sine Wave, frequency, pulse, signal - static const IconData thinWaveSine = IconDataThin(0xf899); + static const IconData thinWaveSine = IconData(0xf899, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wave Square icon /// /// https://fontawesome.com/icons/wave-square?style=solid /// frequency, pulse, signal - static const IconData solidWaveSquare = IconDataSolid(0xf83e); + static const IconData solidWaveSquare = IconData(0xf83e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wave Square icon /// /// https://fontawesome.com/icons/wave-square?style=regular /// frequency, pulse, signal - static const IconData waveSquare = IconDataRegular(0xf83e); + static const IconData waveSquare = IconData(0xf83e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wave Square icon /// /// https://fontawesome.com/icons/wave-square?style=light /// frequency, pulse, signal - static const IconData lightWaveSquare = IconDataLight(0xf83e); + static const IconData lightWaveSquare = IconData(0xf83e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wave Square icon /// /// https://fontawesome.com/icons/wave-square?style=thin /// frequency, pulse, signal - static const IconData thinWaveSquare = IconDataThin(0xf83e); + static const IconData thinWaveSquare = IconData(0xf83e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wave Triangle icon /// /// https://fontawesome.com/icons/wave-triangle?style=solid /// frequency, pulse, signal - static const IconData solidWaveTriangle = IconDataSolid(0xf89a); + static const IconData solidWaveTriangle = IconData(0xf89a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wave Triangle icon /// /// https://fontawesome.com/icons/wave-triangle?style=regular /// frequency, pulse, signal - static const IconData waveTriangle = IconDataRegular(0xf89a); + static const IconData waveTriangle = IconData(0xf89a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wave Triangle icon /// /// https://fontawesome.com/icons/wave-triangle?style=light /// frequency, pulse, signal - static const IconData lightWaveTriangle = IconDataLight(0xf89a); + static const IconData lightWaveTriangle = IconData(0xf89a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wave Triangle icon /// /// https://fontawesome.com/icons/wave-triangle?style=thin /// frequency, pulse, signal - static const IconData thinWaveTriangle = IconDataThin(0xf89a); + static const IconData thinWaveTriangle = IconData(0xf89a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Waveform icon /// /// https://fontawesome.com/icons/waveform?style=solid /// amplitude, sound, soundwave - static const IconData solidWaveform = IconDataSolid(0xf8f1); + static const IconData solidWaveform = IconData(0xf8f1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Waveform icon /// /// https://fontawesome.com/icons/waveform?style=regular /// amplitude, sound, soundwave - static const IconData waveform = IconDataRegular(0xf8f1); + static const IconData waveform = IconData(0xf8f1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Waveform icon /// /// https://fontawesome.com/icons/waveform?style=light /// amplitude, sound, soundwave - static const IconData lightWaveform = IconDataLight(0xf8f1); + static const IconData lightWaveform = IconData(0xf8f1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Waveform icon /// /// https://fontawesome.com/icons/waveform?style=thin /// amplitude, sound, soundwave - static const IconData thinWaveform = IconDataThin(0xf8f1); + static const IconData thinWaveform = IconData(0xf8f1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Waveform Lines icon /// /// https://fontawesome.com/icons/waveform-lines?style=solid /// amplitude, sound, soundwave - static const IconData solidWaveformLines = IconDataSolid(0xf8f2); + static const IconData solidWaveformLines = IconData(0xf8f2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias waveform-path for icon [solidWaveformLines] @Deprecated('Use "solidWaveformLines" instead.') @@ -95380,7 +95380,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/waveform-lines?style=regular /// amplitude, sound, soundwave - static const IconData waveformLines = IconDataRegular(0xf8f2); + static const IconData waveformLines = IconData(0xf8f2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias waveform-path for icon [waveformLines] @Deprecated('Use "waveformLines" instead.') @@ -95390,7 +95390,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/waveform-lines?style=light /// amplitude, sound, soundwave - static const IconData lightWaveformLines = IconDataLight(0xf8f2); + static const IconData lightWaveformLines = IconData(0xf8f2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias waveform-path for icon [lightWaveformLines] @Deprecated('Use "lightWaveformLines" instead.') @@ -95400,7 +95400,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/waveform-lines?style=thin /// amplitude, sound, soundwave - static const IconData thinWaveformLines = IconDataThin(0xf8f2); + static const IconData thinWaveformLines = IconData(0xf8f2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias waveform-path for icon [thinWaveformLines] @Deprecated('Use "thinWaveformLines" instead.') @@ -95410,99 +95410,99 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/waves-sine?style=solid /// frequency, pulse, signal, Sine Wave, compare, similar - static const IconData solidWavesSine = IconDataSolid(0xe65d); + static const IconData solidWavesSine = IconData(0xe65d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Waves Sine icon /// /// https://fontawesome.com/icons/waves-sine?style=regular /// frequency, pulse, signal, Sine Wave, compare, similar - static const IconData wavesSine = IconDataRegular(0xe65d); + static const IconData wavesSine = IconData(0xe65d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Waves Sine icon /// /// https://fontawesome.com/icons/waves-sine?style=light /// frequency, pulse, signal, Sine Wave, compare, similar - static const IconData lightWavesSine = IconDataLight(0xe65d); + static const IconData lightWavesSine = IconData(0xe65d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Waves Sine icon /// /// https://fontawesome.com/icons/waves-sine?style=thin /// frequency, pulse, signal, Sine Wave, compare, similar - static const IconData thinWavesSine = IconDataThin(0xe65d); + static const IconData thinWavesSine = IconData(0xe65d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Waze icon /// /// https://fontawesome.com/icons/waze?style=brands - static const IconData waze = IconDataBrands(0xf83f); + static const IconData waze = IconData(0xf83f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Webflow icon /// /// https://fontawesome.com/icons/webflow?style=brands - static const IconData webflow = IconDataBrands(0xe65c); + static const IconData webflow = IconData(0xe65c, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Webhook icon /// /// https://fontawesome.com/icons/webhook?style=solid /// api, automate, callback, code, communication, http, infastructure, json, message - static const IconData solidWebhook = IconDataSolid(0xe5d5); + static const IconData solidWebhook = IconData(0xe5d5, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Webhook icon /// /// https://fontawesome.com/icons/webhook?style=regular /// api, automate, callback, code, communication, http, infastructure, json, message - static const IconData webhook = IconDataRegular(0xe5d5); + static const IconData webhook = IconData(0xe5d5, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Webhook icon /// /// https://fontawesome.com/icons/webhook?style=light /// api, automate, callback, code, communication, http, infastructure, json, message - static const IconData lightWebhook = IconDataLight(0xe5d5); + static const IconData lightWebhook = IconData(0xe5d5, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Webhook icon /// /// https://fontawesome.com/icons/webhook?style=thin /// api, automate, callback, code, communication, http, infastructure, json, message - static const IconData thinWebhook = IconDataThin(0xe5d5); + static const IconData thinWebhook = IconData(0xe5d5, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Weebly icon /// /// https://fontawesome.com/icons/weebly?style=brands - static const IconData weebly = IconDataBrands(0xf5cc); + static const IconData weebly = IconData(0xf5cc, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Weibo icon /// /// https://fontawesome.com/icons/weibo?style=brands - static const IconData weibo = IconDataBrands(0xf18a); + static const IconData weibo = IconData(0xf18a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Weight Hanging icon /// /// https://fontawesome.com/icons/weight-hanging?style=solid /// anvil, heavy, measurement - static const IconData solidWeightHanging = IconDataSolid(0xf5cd); + static const IconData solidWeightHanging = IconData(0xf5cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Weight Hanging icon /// /// https://fontawesome.com/icons/weight-hanging?style=regular /// anvil, heavy, measurement - static const IconData weightHanging = IconDataRegular(0xf5cd); + static const IconData weightHanging = IconData(0xf5cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Weight Hanging icon /// /// https://fontawesome.com/icons/weight-hanging?style=light /// anvil, heavy, measurement - static const IconData lightWeightHanging = IconDataLight(0xf5cd); + static const IconData lightWeightHanging = IconData(0xf5cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Weight Hanging icon /// /// https://fontawesome.com/icons/weight-hanging?style=thin /// anvil, heavy, measurement - static const IconData thinWeightHanging = IconDataThin(0xf5cd); + static const IconData thinWeightHanging = IconData(0xf5cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Weight Scale icon /// /// https://fontawesome.com/icons/weight-scale?style=solid /// health, measurement, scale, weight - static const IconData solidWeightScale = IconDataSolid(0xf496); + static const IconData solidWeightScale = IconData(0xf496, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias weight for icon [solidWeightScale] @Deprecated('Use "solidWeightScale" instead.') @@ -95512,7 +95512,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/weight-scale?style=regular /// health, measurement, scale, weight - static const IconData weightScale = IconDataRegular(0xf496); + static const IconData weightScale = IconData(0xf496, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias weight for icon [weightScale] @Deprecated('Use "weightScale" instead.') @@ -95522,7 +95522,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/weight-scale?style=light /// health, measurement, scale, weight - static const IconData lightWeightScale = IconDataLight(0xf496); + static const IconData lightWeightScale = IconData(0xf496, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias weight for icon [lightWeightScale] @Deprecated('Use "lightWeightScale" instead.') @@ -95532,7 +95532,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/weight-scale?style=thin /// health, measurement, scale, weight - static const IconData thinWeightScale = IconDataThin(0xf496); + static const IconData thinWeightScale = IconData(0xf496, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias weight for icon [thinWeightScale] @Deprecated('Use "thinWeightScale" instead.') @@ -95541,66 +95541,66 @@ class FontAwesomeIcons { /// Brands Weixin (WeChat) icon /// /// https://fontawesome.com/icons/weixin?style=brands - static const IconData weixin = IconDataBrands(0xf1d7); + static const IconData weixin = IconData(0xf1d7, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Whale icon /// /// https://fontawesome.com/icons/whale?style=solid /// fauna, mammal, swimming, whal, whale - static const IconData solidWhale = IconDataSolid(0xf72c); + static const IconData solidWhale = IconData(0xf72c, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Whale icon /// /// https://fontawesome.com/icons/whale?style=regular /// fauna, mammal, swimming, whal, whale - static const IconData whale = IconDataRegular(0xf72c); + static const IconData whale = IconData(0xf72c, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Whale icon /// /// https://fontawesome.com/icons/whale?style=light /// fauna, mammal, swimming, whal, whale - static const IconData lightWhale = IconDataLight(0xf72c); + static const IconData lightWhale = IconData(0xf72c, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Whale icon /// /// https://fontawesome.com/icons/whale?style=thin /// fauna, mammal, swimming, whal, whale - static const IconData thinWhale = IconDataThin(0xf72c); + static const IconData thinWhale = IconData(0xf72c, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands What's App icon /// /// https://fontawesome.com/icons/whatsapp?style=brands - static const IconData whatsapp = IconDataBrands(0xf232); + static const IconData whatsapp = IconData(0xf232, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Wheat icon /// /// https://fontawesome.com/icons/wheat?style=solid /// agriculture, autumn, fall, farming, grain, seasonal - static const IconData solidWheat = IconDataSolid(0xf72d); + static const IconData solidWheat = IconData(0xf72d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wheat icon /// /// https://fontawesome.com/icons/wheat?style=regular /// agriculture, autumn, fall, farming, grain, seasonal - static const IconData wheat = IconDataRegular(0xf72d); + static const IconData wheat = IconData(0xf72d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wheat icon /// /// https://fontawesome.com/icons/wheat?style=light /// agriculture, autumn, fall, farming, grain, seasonal - static const IconData lightWheat = IconDataLight(0xf72d); + static const IconData lightWheat = IconData(0xf72d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wheat icon /// /// https://fontawesome.com/icons/wheat?style=thin /// agriculture, autumn, fall, farming, grain, seasonal - static const IconData thinWheat = IconDataThin(0xf72d); + static const IconData thinWheat = IconData(0xf72d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wheat Awn icon /// /// https://fontawesome.com/icons/wheat-awn?style=solid /// agriculture, autumn, fall, farming, grain - static const IconData solidWheatAwn = IconDataSolid(0xe2cd); + static const IconData solidWheatAwn = IconData(0xe2cd, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wheat-alt for icon [solidWheatAwn] @Deprecated('Use "solidWheatAwn" instead.') @@ -95610,7 +95610,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheat-awn?style=regular /// agriculture, autumn, fall, farming, grain - static const IconData wheatAwn = IconDataRegular(0xe2cd); + static const IconData wheatAwn = IconData(0xe2cd, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wheat-alt for icon [wheatAwn] @Deprecated('Use "wheatAwn" instead.') @@ -95620,7 +95620,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheat-awn?style=light /// agriculture, autumn, fall, farming, grain - static const IconData lightWheatAwn = IconDataLight(0xe2cd); + static const IconData lightWheatAwn = IconData(0xe2cd, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wheat-alt for icon [lightWheatAwn] @Deprecated('Use "lightWheatAwn" instead.') @@ -95630,7 +95630,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheat-awn?style=thin /// agriculture, autumn, fall, farming, grain - static const IconData thinWheatAwn = IconDataThin(0xe2cd); + static const IconData thinWheatAwn = IconData(0xe2cd, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wheat-alt for icon [thinWheatAwn] @Deprecated('Use "thinWheatAwn" instead.') @@ -95640,103 +95640,103 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheat-awn-circle-exclamation?style=solid /// affected, failed, famine, food, gluten, hunger, starve, straw - static const IconData solidWheatAwnCircleExclamation = IconDataSolid(0xe598); + static const IconData solidWheatAwnCircleExclamation = IconData(0xe598, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wheat Awn Circle Exclamation icon /// /// https://fontawesome.com/icons/wheat-awn-circle-exclamation?style=regular /// affected, failed, famine, food, gluten, hunger, starve, straw - static const IconData wheatAwnCircleExclamation = IconDataRegular(0xe598); + static const IconData wheatAwnCircleExclamation = IconData(0xe598, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wheat Awn Circle Exclamation icon /// /// https://fontawesome.com/icons/wheat-awn-circle-exclamation?style=light /// affected, failed, famine, food, gluten, hunger, starve, straw - static const IconData lightWheatAwnCircleExclamation = IconDataLight(0xe598); + static const IconData lightWheatAwnCircleExclamation = IconData(0xe598, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wheat Awn Circle Exclamation icon /// /// https://fontawesome.com/icons/wheat-awn-circle-exclamation?style=thin /// affected, failed, famine, food, gluten, hunger, starve, straw - static const IconData thinWheatAwnCircleExclamation = IconDataThin(0xe598); + static const IconData thinWheatAwnCircleExclamation = IconData(0xe598, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wheat Awn Slash icon /// /// https://fontawesome.com/icons/wheat-awn-slash?style=solid /// disabled, gluten, gluten free, wheat - static const IconData solidWheatAwnSlash = IconDataSolid(0xe338); + static const IconData solidWheatAwnSlash = IconData(0xe338, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wheat Awn Slash icon /// /// https://fontawesome.com/icons/wheat-awn-slash?style=regular /// disabled, gluten, gluten free, wheat - static const IconData wheatAwnSlash = IconDataRegular(0xe338); + static const IconData wheatAwnSlash = IconData(0xe338, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wheat Awn Slash icon /// /// https://fontawesome.com/icons/wheat-awn-slash?style=light /// disabled, gluten, gluten free, wheat - static const IconData lightWheatAwnSlash = IconDataLight(0xe338); + static const IconData lightWheatAwnSlash = IconData(0xe338, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wheat Awn Slash icon /// /// https://fontawesome.com/icons/wheat-awn-slash?style=thin /// disabled, gluten, gluten free, wheat - static const IconData thinWheatAwnSlash = IconDataThin(0xe338); + static const IconData thinWheatAwnSlash = IconData(0xe338, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wheat Slash icon /// /// https://fontawesome.com/icons/wheat-slash?style=solid /// disabled, gluten, gluten free, wheat - static const IconData solidWheatSlash = IconDataSolid(0xe339); + static const IconData solidWheatSlash = IconData(0xe339, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wheat Slash icon /// /// https://fontawesome.com/icons/wheat-slash?style=regular /// disabled, gluten, gluten free, wheat - static const IconData wheatSlash = IconDataRegular(0xe339); + static const IconData wheatSlash = IconData(0xe339, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wheat Slash icon /// /// https://fontawesome.com/icons/wheat-slash?style=light /// disabled, gluten, gluten free, wheat - static const IconData lightWheatSlash = IconDataLight(0xe339); + static const IconData lightWheatSlash = IconData(0xe339, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wheat Slash icon /// /// https://fontawesome.com/icons/wheat-slash?style=thin /// disabled, gluten, gluten free, wheat - static const IconData thinWheatSlash = IconDataThin(0xe339); + static const IconData thinWheatSlash = IconData(0xe339, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wheelchair icon /// /// https://fontawesome.com/icons/wheelchair?style=solid /// disabled, uer, users-people - static const IconData solidWheelchair = IconDataSolid(0xf193); + static const IconData solidWheelchair = IconData(0xf193, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wheelchair icon /// /// https://fontawesome.com/icons/wheelchair?style=regular /// disabled, uer, users-people - static const IconData wheelchair = IconDataRegular(0xf193); + static const IconData wheelchair = IconData(0xf193, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wheelchair icon /// /// https://fontawesome.com/icons/wheelchair?style=light /// disabled, uer, users-people - static const IconData lightWheelchair = IconDataLight(0xf193); + static const IconData lightWheelchair = IconData(0xf193, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wheelchair icon /// /// https://fontawesome.com/icons/wheelchair?style=thin /// disabled, uer, users-people - static const IconData thinWheelchair = IconDataThin(0xf193); + static const IconData thinWheelchair = IconData(0xf193, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wheelchair Move icon /// /// https://fontawesome.com/icons/wheelchair-move?style=solid /// access, disabled, handicap, impairment, physical, uer, wheelchair symbol - static const IconData solidWheelchairMove = IconDataSolid(0xe2ce); + static const IconData solidWheelchairMove = IconData(0xe2ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wheelchair-alt for icon [solidWheelchairMove] @Deprecated('Use "solidWheelchairMove" instead.') @@ -95746,7 +95746,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheelchair-move?style=regular /// access, disabled, handicap, impairment, physical, uer, wheelchair symbol - static const IconData wheelchairMove = IconDataRegular(0xe2ce); + static const IconData wheelchairMove = IconData(0xe2ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wheelchair-alt for icon [wheelchairMove] @Deprecated('Use "wheelchairMove" instead.') @@ -95756,7 +95756,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheelchair-move?style=light /// access, disabled, handicap, impairment, physical, uer, wheelchair symbol - static const IconData lightWheelchairMove = IconDataLight(0xe2ce); + static const IconData lightWheelchairMove = IconData(0xe2ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wheelchair-alt for icon [lightWheelchairMove] @Deprecated('Use "lightWheelchairMove" instead.') @@ -95766,7 +95766,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wheelchair-move?style=thin /// access, disabled, handicap, impairment, physical, uer, wheelchair symbol - static const IconData thinWheelchairMove = IconDataThin(0xe2ce); + static const IconData thinWheelchairMove = IconData(0xe2ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wheelchair-alt for icon [thinWheelchairMove] @Deprecated('Use "thinWheelchairMove" instead.') @@ -95776,7 +95776,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass?style=solid /// alcohol, bar, beverage, bourbon, drink, glass, liquor, neat, rye, scotch, shot, tumbler, tumbler glass, whisky - static const IconData solidWhiskeyGlass = IconDataSolid(0xf7a0); + static const IconData solidWhiskeyGlass = IconData(0xf7a0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey for icon [solidWhiskeyGlass] @Deprecated('Use "solidWhiskeyGlass" instead.') @@ -95786,7 +95786,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass?style=regular /// alcohol, bar, beverage, bourbon, drink, glass, liquor, neat, rye, scotch, shot, tumbler, tumbler glass, whisky - static const IconData whiskeyGlass = IconDataRegular(0xf7a0); + static const IconData whiskeyGlass = IconData(0xf7a0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey for icon [whiskeyGlass] @Deprecated('Use "whiskeyGlass" instead.') @@ -95796,7 +95796,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass?style=light /// alcohol, bar, beverage, bourbon, drink, glass, liquor, neat, rye, scotch, shot, tumbler, tumbler glass, whisky - static const IconData lightWhiskeyGlass = IconDataLight(0xf7a0); + static const IconData lightWhiskeyGlass = IconData(0xf7a0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey for icon [lightWhiskeyGlass] @Deprecated('Use "lightWhiskeyGlass" instead.') @@ -95806,7 +95806,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass?style=thin /// alcohol, bar, beverage, bourbon, drink, glass, liquor, neat, rye, scotch, shot, tumbler, tumbler glass, whisky - static const IconData thinWhiskeyGlass = IconDataThin(0xf7a0); + static const IconData thinWhiskeyGlass = IconData(0xf7a0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey for icon [thinWhiskeyGlass] @Deprecated('Use "thinWhiskeyGlass" instead.') @@ -95816,7 +95816,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass-ice?style=solid /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData solidWhiskeyGlassIce = IconDataSolid(0xf7a1); + static const IconData solidWhiskeyGlassIce = IconData(0xf7a1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey-rocks for icon [solidWhiskeyGlassIce] @Deprecated('Use "solidWhiskeyGlassIce" instead.') @@ -95826,7 +95826,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass-ice?style=regular /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData whiskeyGlassIce = IconDataRegular(0xf7a1); + static const IconData whiskeyGlassIce = IconData(0xf7a1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey-rocks for icon [whiskeyGlassIce] @Deprecated('Use "whiskeyGlassIce" instead.') @@ -95836,7 +95836,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass-ice?style=light /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData lightWhiskeyGlassIce = IconDataLight(0xf7a1); + static const IconData lightWhiskeyGlassIce = IconData(0xf7a1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey-rocks for icon [lightWhiskeyGlassIce] @Deprecated('Use "lightWhiskeyGlassIce" instead.') @@ -95846,7 +95846,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whiskey-glass-ice?style=thin /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData thinWhiskeyGlassIce = IconDataThin(0xf7a1); + static const IconData thinWhiskeyGlassIce = IconData(0xf7a1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias glass-whiskey-rocks for icon [thinWhiskeyGlassIce] @Deprecated('Use "thinWhiskeyGlassIce" instead.') @@ -95856,36 +95856,36 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/whistle?style=solid /// alert, single, sound, toot - static const IconData solidWhistle = IconDataSolid(0xf460); + static const IconData solidWhistle = IconData(0xf460, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Whistle icon /// /// https://fontawesome.com/icons/whistle?style=regular /// alert, single, sound, toot - static const IconData whistle = IconDataRegular(0xf460); + static const IconData whistle = IconData(0xf460, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Whistle icon /// /// https://fontawesome.com/icons/whistle?style=light /// alert, single, sound, toot - static const IconData lightWhistle = IconDataLight(0xf460); + static const IconData lightWhistle = IconData(0xf460, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Whistle icon /// /// https://fontawesome.com/icons/whistle?style=thin /// alert, single, sound, toot - static const IconData thinWhistle = IconDataThin(0xf460); + static const IconData thinWhistle = IconData(0xf460, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands WHMCS icon /// /// https://fontawesome.com/icons/whmcs?style=brands - static const IconData whmcs = IconDataBrands(0xf40d); + static const IconData whmcs = IconData(0xf40d, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Wifi icon /// /// https://fontawesome.com/icons/wifi?style=solid /// connection, hotspot, internet, network, wireless, www - static const IconData solidWifi = IconDataSolid(0xf1eb); + static const IconData solidWifi = IconData(0xf1eb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wifi-3 for icon [solidWifi] @Deprecated('Use "solidWifi" instead.') @@ -95899,7 +95899,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi?style=regular /// connection, hotspot, internet, network, wireless, www - static const IconData wifi = IconDataRegular(0xf1eb); + static const IconData wifi = IconData(0xf1eb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wifi-3 for icon [wifi] @Deprecated('Use "wifi" instead.') @@ -95913,7 +95913,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi?style=light /// connection, hotspot, internet, network, wireless, www - static const IconData lightWifi = IconDataLight(0xf1eb); + static const IconData lightWifi = IconData(0xf1eb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wifi-3 for icon [lightWifi] @Deprecated('Use "lightWifi" instead.') @@ -95927,7 +95927,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi?style=thin /// connection, hotspot, internet, network, wireless, www - static const IconData thinWifi = IconDataThin(0xf1eb); + static const IconData thinWifi = IconData(0xf1eb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wifi-3 for icon [thinWifi] @Deprecated('Use "thinWifi" instead.') @@ -95941,31 +95941,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-exclamation?style=solid /// attention, connection, fail, failed, internet, wireless, www - static const IconData solidWifiExclamation = IconDataSolid(0xe2cf); + static const IconData solidWifiExclamation = IconData(0xe2cf, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wifi Exclamation icon /// /// https://fontawesome.com/icons/wifi-exclamation?style=regular /// attention, connection, fail, failed, internet, wireless, www - static const IconData wifiExclamation = IconDataRegular(0xe2cf); + static const IconData wifiExclamation = IconData(0xe2cf, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wifi Exclamation icon /// /// https://fontawesome.com/icons/wifi-exclamation?style=light /// attention, connection, fail, failed, internet, wireless, www - static const IconData lightWifiExclamation = IconDataLight(0xe2cf); + static const IconData lightWifiExclamation = IconData(0xe2cf, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wifi Exclamation icon /// /// https://fontawesome.com/icons/wifi-exclamation?style=thin /// attention, connection, fail, failed, internet, wireless, www - static const IconData thinWifiExclamation = IconDataThin(0xe2cf); + static const IconData thinWifiExclamation = IconData(0xe2cf, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wifi Fair icon /// /// https://fontawesome.com/icons/wifi-fair?style=solid /// average, connection, hotspot, internet, network, wireless, www - static const IconData solidWifiFair = IconDataSolid(0xf6ab); + static const IconData solidWifiFair = IconData(0xf6ab, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wifi-2 for icon [solidWifiFair] @Deprecated('Use "solidWifiFair" instead.') @@ -95975,7 +95975,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-fair?style=regular /// average, connection, hotspot, internet, network, wireless, www - static const IconData wifiFair = IconDataRegular(0xf6ab); + static const IconData wifiFair = IconData(0xf6ab, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wifi-2 for icon [wifiFair] @Deprecated('Use "wifiFair" instead.') @@ -95985,7 +95985,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-fair?style=light /// average, connection, hotspot, internet, network, wireless, www - static const IconData lightWifiFair = IconDataLight(0xf6ab); + static const IconData lightWifiFair = IconData(0xf6ab, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wifi-2 for icon [lightWifiFair] @Deprecated('Use "lightWifiFair" instead.') @@ -95995,7 +95995,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-fair?style=thin /// average, connection, hotspot, internet, network, wireless, www - static const IconData thinWifiFair = IconDataThin(0xf6ab); + static const IconData thinWifiFair = IconData(0xf6ab, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wifi-2 for icon [thinWifiFair] @Deprecated('Use "thinWifiFair" instead.') @@ -96005,31 +96005,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-slash?style=solid /// ban, broken, connection, deny, disabled, disconnect, hotspot, internet, network, unavailable, wireless, www - static const IconData solidWifiSlash = IconDataSolid(0xf6ac); + static const IconData solidWifiSlash = IconData(0xf6ac, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wifi Slash icon /// /// https://fontawesome.com/icons/wifi-slash?style=regular /// ban, broken, connection, deny, disabled, disconnect, hotspot, internet, network, unavailable, wireless, www - static const IconData wifiSlash = IconDataRegular(0xf6ac); + static const IconData wifiSlash = IconData(0xf6ac, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wifi Slash icon /// /// https://fontawesome.com/icons/wifi-slash?style=light /// ban, broken, connection, deny, disabled, disconnect, hotspot, internet, network, unavailable, wireless, www - static const IconData lightWifiSlash = IconDataLight(0xf6ac); + static const IconData lightWifiSlash = IconData(0xf6ac, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wifi Slash icon /// /// https://fontawesome.com/icons/wifi-slash?style=thin /// ban, broken, connection, deny, disabled, disconnect, hotspot, internet, network, unavailable, wireless, www - static const IconData thinWifiSlash = IconDataThin(0xf6ac); + static const IconData thinWifiSlash = IconData(0xf6ac, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wifi Weak icon /// /// https://fontawesome.com/icons/wifi-weak?style=solid /// connection, hotspot, internet, network, weak, wireless, www - static const IconData solidWifiWeak = IconDataSolid(0xf6aa); + static const IconData solidWifiWeak = IconData(0xf6aa, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wifi-1 for icon [solidWifiWeak] @Deprecated('Use "solidWifiWeak" instead.') @@ -96039,7 +96039,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-weak?style=regular /// connection, hotspot, internet, network, weak, wireless, www - static const IconData wifiWeak = IconDataRegular(0xf6aa); + static const IconData wifiWeak = IconData(0xf6aa, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wifi-1 for icon [wifiWeak] @Deprecated('Use "wifiWeak" instead.') @@ -96049,7 +96049,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-weak?style=light /// connection, hotspot, internet, network, weak, wireless, www - static const IconData lightWifiWeak = IconDataLight(0xf6aa); + static const IconData lightWifiWeak = IconData(0xf6aa, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wifi-1 for icon [lightWifiWeak] @Deprecated('Use "lightWifiWeak" instead.') @@ -96059,7 +96059,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wifi-weak?style=thin /// connection, hotspot, internet, network, weak, wireless, www - static const IconData thinWifiWeak = IconDataThin(0xf6aa); + static const IconData thinWifiWeak = IconData(0xf6aa, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wifi-1 for icon [thinWifiWeak] @Deprecated('Use "thinWifiWeak" instead.') @@ -96068,61 +96068,61 @@ class FontAwesomeIcons { /// Brands Wikipedia W icon /// /// https://fontawesome.com/icons/wikipedia-w?style=brands - static const IconData wikipediaW = IconDataBrands(0xf266); + static const IconData wikipediaW = IconData(0xf266, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Wind icon /// /// https://fontawesome.com/icons/wind?style=solid /// air, blow, breeze, fall, seasonal, weather - static const IconData solidWind = IconDataSolid(0xf72e); + static const IconData solidWind = IconData(0xf72e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wind icon /// /// https://fontawesome.com/icons/wind?style=regular /// air, blow, breeze, fall, seasonal, weather - static const IconData wind = IconDataRegular(0xf72e); + static const IconData wind = IconData(0xf72e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wind icon /// /// https://fontawesome.com/icons/wind?style=light /// air, blow, breeze, fall, seasonal, weather - static const IconData lightWind = IconDataLight(0xf72e); + static const IconData lightWind = IconData(0xf72e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wind icon /// /// https://fontawesome.com/icons/wind?style=thin /// air, blow, breeze, fall, seasonal, weather - static const IconData thinWind = IconDataThin(0xf72e); + static const IconData thinWind = IconData(0xf72e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wind Turbine icon /// /// https://fontawesome.com/icons/wind-turbine?style=solid /// electricity, energy, generator, renewable, wind power, windmill - static const IconData solidWindTurbine = IconDataSolid(0xf89b); + static const IconData solidWindTurbine = IconData(0xf89b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wind Turbine icon /// /// https://fontawesome.com/icons/wind-turbine?style=regular /// electricity, energy, generator, renewable, wind power, windmill - static const IconData windTurbine = IconDataRegular(0xf89b); + static const IconData windTurbine = IconData(0xf89b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wind Turbine icon /// /// https://fontawesome.com/icons/wind-turbine?style=light /// electricity, energy, generator, renewable, wind power, windmill - static const IconData lightWindTurbine = IconDataLight(0xf89b); + static const IconData lightWindTurbine = IconData(0xf89b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wind Turbine icon /// /// https://fontawesome.com/icons/wind-turbine?style=thin /// electricity, energy, generator, renewable, wind power, windmill - static const IconData thinWindTurbine = IconDataThin(0xf89b); + static const IconData thinWindTurbine = IconData(0xf89b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wind Warning icon /// /// https://fontawesome.com/icons/wind-warning?style=solid /// air, alert, blow, breeze, failed, fall, hurricane, seasonal, tornado, weather - static const IconData solidWindWarning = IconDataSolid(0xf776); + static const IconData solidWindWarning = IconData(0xf776, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wind-circle-exclamation for icon [solidWindWarning] @Deprecated('Use "solidWindWarning" instead.') @@ -96132,7 +96132,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wind-warning?style=regular /// air, alert, blow, breeze, failed, fall, hurricane, seasonal, tornado, weather - static const IconData windWarning = IconDataRegular(0xf776); + static const IconData windWarning = IconData(0xf776, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wind-circle-exclamation for icon [windWarning] @Deprecated('Use "windWarning" instead.') @@ -96142,7 +96142,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wind-warning?style=light /// air, alert, blow, breeze, failed, fall, hurricane, seasonal, tornado, weather - static const IconData lightWindWarning = IconDataLight(0xf776); + static const IconData lightWindWarning = IconData(0xf776, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wind-circle-exclamation for icon [lightWindWarning] @Deprecated('Use "lightWindWarning" instead.') @@ -96152,7 +96152,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wind-warning?style=thin /// air, alert, blow, breeze, failed, fall, hurricane, seasonal, tornado, weather - static const IconData thinWindWarning = IconDataThin(0xf776); + static const IconData thinWindWarning = IconData(0xf776, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wind-circle-exclamation for icon [thinWindWarning] @Deprecated('Use "thinWindWarning" instead.') @@ -96162,31 +96162,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/window?style=solid /// browser, computer, development - static const IconData solidWindow = IconDataSolid(0xf40e); + static const IconData solidWindow = IconData(0xf40e, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window icon /// /// https://fontawesome.com/icons/window?style=regular /// browser, computer, development - static const IconData window = IconDataRegular(0xf40e); + static const IconData window = IconData(0xf40e, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window icon /// /// https://fontawesome.com/icons/window?style=light /// browser, computer, development - static const IconData lightWindow = IconDataLight(0xf40e); + static const IconData lightWindow = IconData(0xf40e, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window icon /// /// https://fontawesome.com/icons/window?style=thin /// browser, computer, development - static const IconData thinWindow = IconDataThin(0xf40e); + static const IconData thinWindow = IconData(0xf40e, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Window Flip icon /// /// https://fontawesome.com/icons/window-flip?style=solid /// browser, computer, development - static const IconData solidWindowFlip = IconDataSolid(0xf40f); + static const IconData solidWindowFlip = IconData(0xf40f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias window-alt for icon [solidWindowFlip] @Deprecated('Use "solidWindowFlip" instead.') @@ -96196,7 +96196,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/window-flip?style=regular /// browser, computer, development - static const IconData windowFlip = IconDataRegular(0xf40f); + static const IconData windowFlip = IconData(0xf40f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias window-alt for icon [windowFlip] @Deprecated('Use "windowFlip" instead.') @@ -96206,7 +96206,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/window-flip?style=light /// browser, computer, development - static const IconData lightWindowFlip = IconDataLight(0xf40f); + static const IconData lightWindowFlip = IconData(0xf40f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias window-alt for icon [lightWindowFlip] @Deprecated('Use "lightWindowFlip" instead.') @@ -96216,7 +96216,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/window-flip?style=thin /// browser, computer, development - static const IconData thinWindowFlip = IconDataThin(0xf40f); + static const IconData thinWindowFlip = IconData(0xf40f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias window-alt for icon [thinWindowFlip] @Deprecated('Use "thinWindowFlip" instead.') @@ -96226,205 +96226,205 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/window-frame?style=solid /// door, frame, fresh air, glass, opening, pane, transparent, view, window - static const IconData solidWindowFrame = IconDataSolid(0xe04f); + static const IconData solidWindowFrame = IconData(0xe04f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window Frame icon /// /// https://fontawesome.com/icons/window-frame?style=regular /// door, frame, fresh air, glass, opening, pane, transparent, view, window - static const IconData windowFrame = IconDataRegular(0xe04f); + static const IconData windowFrame = IconData(0xe04f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window Frame icon /// /// https://fontawesome.com/icons/window-frame?style=light /// door, frame, fresh air, glass, opening, pane, transparent, view, window - static const IconData lightWindowFrame = IconDataLight(0xe04f); + static const IconData lightWindowFrame = IconData(0xe04f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window Frame icon /// /// https://fontawesome.com/icons/window-frame?style=thin /// door, frame, fresh air, glass, opening, pane, transparent, view, window - static const IconData thinWindowFrame = IconDataThin(0xe04f); + static const IconData thinWindowFrame = IconData(0xe04f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Window Frame Open icon /// /// https://fontawesome.com/icons/window-frame-open?style=solid /// door, glass, pane, view, window - static const IconData solidWindowFrameOpen = IconDataSolid(0xe050); + static const IconData solidWindowFrameOpen = IconData(0xe050, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window Frame Open icon /// /// https://fontawesome.com/icons/window-frame-open?style=regular /// door, glass, pane, view, window - static const IconData windowFrameOpen = IconDataRegular(0xe050); + static const IconData windowFrameOpen = IconData(0xe050, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window Frame Open icon /// /// https://fontawesome.com/icons/window-frame-open?style=light /// door, glass, pane, view, window - static const IconData lightWindowFrameOpen = IconDataLight(0xe050); + static const IconData lightWindowFrameOpen = IconData(0xe050, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window Frame Open icon /// /// https://fontawesome.com/icons/window-frame-open?style=thin /// door, glass, pane, view, window - static const IconData thinWindowFrameOpen = IconDataThin(0xe050); + static const IconData thinWindowFrameOpen = IconData(0xe050, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Window Maximize icon /// /// https://fontawesome.com/icons/window-maximize?style=solid /// Maximize, browser, computer, development, expand - static const IconData solidWindowMaximize = IconDataSolid(0xf2d0); + static const IconData solidWindowMaximize = IconData(0xf2d0, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window Maximize icon /// /// https://fontawesome.com/icons/window-maximize?style=regular /// Maximize, browser, computer, development, expand - static const IconData windowMaximize = IconDataRegular(0xf2d0); + static const IconData windowMaximize = IconData(0xf2d0, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window Maximize icon /// /// https://fontawesome.com/icons/window-maximize?style=light /// Maximize, browser, computer, development, expand - static const IconData lightWindowMaximize = IconDataLight(0xf2d0); + static const IconData lightWindowMaximize = IconData(0xf2d0, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window Maximize icon /// /// https://fontawesome.com/icons/window-maximize?style=thin /// Maximize, browser, computer, development, expand - static const IconData thinWindowMaximize = IconDataThin(0xf2d0); + static const IconData thinWindowMaximize = IconData(0xf2d0, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Window Minimize icon /// /// https://fontawesome.com/icons/window-minimize?style=solid /// Minimize, browser, collapse, computer, development - static const IconData solidWindowMinimize = IconDataSolid(0xf2d1); + static const IconData solidWindowMinimize = IconData(0xf2d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window Minimize icon /// /// https://fontawesome.com/icons/window-minimize?style=regular /// Minimize, browser, collapse, computer, development - static const IconData windowMinimize = IconDataRegular(0xf2d1); + static const IconData windowMinimize = IconData(0xf2d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window Minimize icon /// /// https://fontawesome.com/icons/window-minimize?style=light /// Minimize, browser, collapse, computer, development - static const IconData lightWindowMinimize = IconDataLight(0xf2d1); + static const IconData lightWindowMinimize = IconData(0xf2d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window Minimize icon /// /// https://fontawesome.com/icons/window-minimize?style=thin /// Minimize, browser, collapse, computer, development - static const IconData thinWindowMinimize = IconDataThin(0xf2d1); + static const IconData thinWindowMinimize = IconData(0xf2d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Window Restore icon /// /// https://fontawesome.com/icons/window-restore?style=solid /// browser, computer, development - static const IconData solidWindowRestore = IconDataSolid(0xf2d2); + static const IconData solidWindowRestore = IconData(0xf2d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Window Restore icon /// /// https://fontawesome.com/icons/window-restore?style=regular /// browser, computer, development - static const IconData windowRestore = IconDataRegular(0xf2d2); + static const IconData windowRestore = IconData(0xf2d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Window Restore icon /// /// https://fontawesome.com/icons/window-restore?style=light /// browser, computer, development - static const IconData lightWindowRestore = IconDataLight(0xf2d2); + static const IconData lightWindowRestore = IconData(0xf2d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Window Restore icon /// /// https://fontawesome.com/icons/window-restore?style=thin /// browser, computer, development - static const IconData thinWindowRestore = IconDataThin(0xf2d2); + static const IconData thinWindowRestore = IconData(0xf2d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Windows icon /// /// https://fontawesome.com/icons/windows?style=brands /// microsoft, operating system, os - static const IconData windows = IconDataBrands(0xf17a); + static const IconData windows = IconData(0xf17a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Windsock icon /// /// https://fontawesome.com/icons/windsock?style=solid /// air, blow, breeze, fall, seasonal, weather - static const IconData solidWindsock = IconDataSolid(0xf777); + static const IconData solidWindsock = IconData(0xf777, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Windsock icon /// /// https://fontawesome.com/icons/windsock?style=regular /// air, blow, breeze, fall, seasonal, weather - static const IconData windsock = IconDataRegular(0xf777); + static const IconData windsock = IconData(0xf777, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Windsock icon /// /// https://fontawesome.com/icons/windsock?style=light /// air, blow, breeze, fall, seasonal, weather - static const IconData lightWindsock = IconDataLight(0xf777); + static const IconData lightWindsock = IconData(0xf777, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Windsock icon /// /// https://fontawesome.com/icons/windsock?style=thin /// air, blow, breeze, fall, seasonal, weather - static const IconData thinWindsock = IconDataThin(0xf777); + static const IconData thinWindsock = IconData(0xf777, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wine Bottle icon /// /// https://fontawesome.com/icons/wine-bottle?style=solid /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData solidWineBottle = IconDataSolid(0xf72f); + static const IconData solidWineBottle = IconData(0xf72f, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wine Bottle icon /// /// https://fontawesome.com/icons/wine-bottle?style=regular /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData wineBottle = IconDataRegular(0xf72f); + static const IconData wineBottle = IconData(0xf72f, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wine Bottle icon /// /// https://fontawesome.com/icons/wine-bottle?style=light /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData lightWineBottle = IconDataLight(0xf72f); + static const IconData lightWineBottle = IconData(0xf72f, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wine Bottle icon /// /// https://fontawesome.com/icons/wine-bottle?style=thin /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData thinWineBottle = IconDataThin(0xf72f); + static const IconData thinWineBottle = IconData(0xf72f, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wine Glass icon /// /// https://fontawesome.com/icons/wine-glass?style=solid /// alcohol, bar, beverage, cabernet, drink, glass, grapes, merlot, sauvignon, wine, wine glass - static const IconData solidWineGlass = IconDataSolid(0xf4e3); + static const IconData solidWineGlass = IconData(0xf4e3, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wine Glass icon /// /// https://fontawesome.com/icons/wine-glass?style=regular /// alcohol, bar, beverage, cabernet, drink, glass, grapes, merlot, sauvignon, wine, wine glass - static const IconData wineGlass = IconDataRegular(0xf4e3); + static const IconData wineGlass = IconData(0xf4e3, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wine Glass icon /// /// https://fontawesome.com/icons/wine-glass?style=light /// alcohol, bar, beverage, cabernet, drink, glass, grapes, merlot, sauvignon, wine, wine glass - static const IconData lightWineGlass = IconDataLight(0xf4e3); + static const IconData lightWineGlass = IconData(0xf4e3, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wine Glass icon /// /// https://fontawesome.com/icons/wine-glass?style=thin /// alcohol, bar, beverage, cabernet, drink, glass, grapes, merlot, sauvignon, wine, wine glass - static const IconData thinWineGlass = IconDataThin(0xf4e3); + static const IconData thinWineGlass = IconData(0xf4e3, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wine Glass Crack icon /// /// https://fontawesome.com/icons/wine-glass-crack?style=solid /// break, broken, delicate, glass - static const IconData solidWineGlassCrack = IconDataSolid(0xf4bb); + static const IconData solidWineGlassCrack = IconData(0xf4bb, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias fragile for icon [solidWineGlassCrack] @Deprecated('Use "solidWineGlassCrack" instead.') @@ -96434,7 +96434,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-crack?style=regular /// break, broken, delicate, glass - static const IconData wineGlassCrack = IconDataRegular(0xf4bb); + static const IconData wineGlassCrack = IconData(0xf4bb, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias fragile for icon [wineGlassCrack] @Deprecated('Use "wineGlassCrack" instead.') @@ -96444,7 +96444,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-crack?style=light /// break, broken, delicate, glass - static const IconData lightWineGlassCrack = IconDataLight(0xf4bb); + static const IconData lightWineGlassCrack = IconData(0xf4bb, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias fragile for icon [lightWineGlassCrack] @Deprecated('Use "lightWineGlassCrack" instead.') @@ -96454,7 +96454,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-crack?style=thin /// break, broken, delicate, glass - static const IconData thinWineGlassCrack = IconDataThin(0xf4bb); + static const IconData thinWineGlassCrack = IconData(0xf4bb, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias fragile for icon [thinWineGlassCrack] @Deprecated('Use "thinWineGlassCrack" instead.') @@ -96464,7 +96464,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-empty?style=solid /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData solidWineGlassEmpty = IconDataSolid(0xf5ce); + static const IconData solidWineGlassEmpty = IconData(0xf5ce, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias wine-glass-alt for icon [solidWineGlassEmpty] @Deprecated('Use "solidWineGlassEmpty" instead.') @@ -96474,7 +96474,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-empty?style=regular /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData wineGlassEmpty = IconDataRegular(0xf5ce); + static const IconData wineGlassEmpty = IconData(0xf5ce, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias wine-glass-alt for icon [wineGlassEmpty] @Deprecated('Use "wineGlassEmpty" instead.') @@ -96484,7 +96484,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-empty?style=light /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData lightWineGlassEmpty = IconDataLight(0xf5ce); + static const IconData lightWineGlassEmpty = IconData(0xf5ce, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias wine-glass-alt for icon [lightWineGlassEmpty] @Deprecated('Use "lightWineGlassEmpty" instead.') @@ -96494,7 +96494,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wine-glass-empty?style=thin /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData thinWineGlassEmpty = IconDataThin(0xf5ce); + static const IconData thinWineGlassEmpty = IconData(0xf5ce, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias wine-glass-alt for icon [thinWineGlassEmpty] @Deprecated('Use "thinWineGlassEmpty" instead.') @@ -96503,7 +96503,7 @@ class FontAwesomeIcons { /// Brands wirsindhandwerk icon /// /// https://fontawesome.com/icons/wirsindhandwerk?style=brands - static const IconData wirsindhandwerk = IconDataBrands(0xe2d0); + static const IconData wirsindhandwerk = IconData(0xe2d0, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias wsh for icon [wirsindhandwerk] @Deprecated('Use "wirsindhandwerk" instead.') @@ -96512,29 +96512,29 @@ class FontAwesomeIcons { /// Brands Wix icon /// /// https://fontawesome.com/icons/wix?style=brands - static const IconData wix = IconDataBrands(0xf5cf); + static const IconData wix = IconData(0xf5cf, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Wizards of the Coast icon /// /// https://fontawesome.com/icons/wizards-of-the-coast?style=brands /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, tabletop - static const IconData wizardsOfTheCoast = IconDataBrands(0xf730); + static const IconData wizardsOfTheCoast = IconData(0xf730, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Wodu icon /// /// https://fontawesome.com/icons/wodu?style=brands - static const IconData wodu = IconDataBrands(0xe088); + static const IconData wodu = IconData(0xe088, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Wolf Pack Battalion icon /// /// https://fontawesome.com/icons/wolf-pack-battalion?style=brands - static const IconData wolfPackBattalion = IconDataBrands(0xf514); + static const IconData wolfPackBattalion = IconData(0xf514, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Won Sign icon /// /// https://fontawesome.com/icons/won-sign?style=solid /// Won Sign, currency - static const IconData solidWonSign = IconDataSolid(0xf159); + static const IconData solidWonSign = IconData(0xf159, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias krw for icon [solidWonSign] @Deprecated('Use "solidWonSign" instead.') @@ -96548,7 +96548,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/won-sign?style=regular /// Won Sign, currency - static const IconData wonSign = IconDataRegular(0xf159); + static const IconData wonSign = IconData(0xf159, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias krw for icon [wonSign] @Deprecated('Use "wonSign" instead.') @@ -96562,7 +96562,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/won-sign?style=light /// Won Sign, currency - static const IconData lightWonSign = IconDataLight(0xf159); + static const IconData lightWonSign = IconData(0xf159, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias krw for icon [lightWonSign] @Deprecated('Use "lightWonSign" instead.') @@ -96576,7 +96576,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/won-sign?style=thin /// Won Sign, currency - static const IconData thinWonSign = IconDataThin(0xf159); + static const IconData thinWonSign = IconData(0xf159, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias krw for icon [thinWonSign] @Deprecated('Use "thinWonSign" instead.') @@ -96589,57 +96589,57 @@ class FontAwesomeIcons { /// Brands WordPress Logo icon /// /// https://fontawesome.com/icons/wordpress?style=brands - static const IconData wordpress = IconDataBrands(0xf19a); + static const IconData wordpress = IconData(0xf19a, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Wordpress Simple icon /// /// https://fontawesome.com/icons/wordpress-simple?style=brands - static const IconData wordpressSimple = IconDataBrands(0xf411); + static const IconData wordpressSimple = IconData(0xf411, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Worm icon /// /// https://fontawesome.com/icons/worm?style=solid /// dirt, garden, worm, wriggle - static const IconData solidWorm = IconDataSolid(0xe599); + static const IconData solidWorm = IconData(0xe599, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Worm icon /// /// https://fontawesome.com/icons/worm?style=regular /// dirt, garden, worm, wriggle - static const IconData worm = IconDataRegular(0xe599); + static const IconData worm = IconData(0xe599, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Worm icon /// /// https://fontawesome.com/icons/worm?style=light /// dirt, garden, worm, wriggle - static const IconData lightWorm = IconDataLight(0xe599); + static const IconData lightWorm = IconData(0xe599, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Worm icon /// /// https://fontawesome.com/icons/worm?style=thin /// dirt, garden, worm, wriggle - static const IconData thinWorm = IconDataThin(0xe599); + static const IconData thinWorm = IconData(0xe599, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands WPBeginner icon /// /// https://fontawesome.com/icons/wpbeginner?style=brands - static const IconData wpbeginner = IconDataBrands(0xf297); + static const IconData wpbeginner = IconData(0xf297, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands WPExplorer icon /// /// https://fontawesome.com/icons/wpexplorer?style=brands - static const IconData wpexplorer = IconDataBrands(0xf2de); + static const IconData wpexplorer = IconData(0xf2de, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands WPForms icon /// /// https://fontawesome.com/icons/wpforms?style=brands - static const IconData wpforms = IconDataBrands(0xf298); + static const IconData wpforms = IconData(0xf298, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands wpressr icon /// /// https://fontawesome.com/icons/wpressr?style=brands /// rendact - static const IconData wpressr = IconDataBrands(0xf3e4); + static const IconData wpressr = IconData(0xf3e4, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Alias rendact for icon [wpressr] @Deprecated('Use "wpressr" instead.') @@ -96649,167 +96649,167 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/wreath?style=solid /// christmas, decoration, door, holiday, welcome, xmas - static const IconData solidWreath = IconDataSolid(0xf7e2); + static const IconData solidWreath = IconData(0xf7e2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wreath icon /// /// https://fontawesome.com/icons/wreath?style=regular /// christmas, decoration, door, holiday, welcome, xmas - static const IconData wreath = IconDataRegular(0xf7e2); + static const IconData wreath = IconData(0xf7e2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wreath icon /// /// https://fontawesome.com/icons/wreath?style=light /// christmas, decoration, door, holiday, welcome, xmas - static const IconData lightWreath = IconDataLight(0xf7e2); + static const IconData lightWreath = IconData(0xf7e2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wreath icon /// /// https://fontawesome.com/icons/wreath?style=thin /// christmas, decoration, door, holiday, welcome, xmas - static const IconData thinWreath = IconDataThin(0xf7e2); + static const IconData thinWreath = IconData(0xf7e2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wreath Laurel icon /// /// https://fontawesome.com/icons/wreath-laurel?style=solid /// award, branch, chaplet, evergreen, garland, greece, greek, hat, leaf, mythology, ribbon, rome, triumph, victory - static const IconData solidWreathLaurel = IconDataSolid(0xe5d2); + static const IconData solidWreathLaurel = IconData(0xe5d2, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wreath Laurel icon /// /// https://fontawesome.com/icons/wreath-laurel?style=regular /// award, branch, chaplet, evergreen, garland, greece, greek, hat, leaf, mythology, ribbon, rome, triumph, victory - static const IconData wreathLaurel = IconDataRegular(0xe5d2); + static const IconData wreathLaurel = IconData(0xe5d2, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wreath Laurel icon /// /// https://fontawesome.com/icons/wreath-laurel?style=light /// award, branch, chaplet, evergreen, garland, greece, greek, hat, leaf, mythology, ribbon, rome, triumph, victory - static const IconData lightWreathLaurel = IconDataLight(0xe5d2); + static const IconData lightWreathLaurel = IconData(0xe5d2, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wreath Laurel icon /// /// https://fontawesome.com/icons/wreath-laurel?style=thin /// award, branch, chaplet, evergreen, garland, greece, greek, hat, leaf, mythology, ribbon, rome, triumph, victory - static const IconData thinWreathLaurel = IconDataThin(0xe5d2); + static const IconData thinWreathLaurel = IconData(0xe5d2, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wrench icon /// /// https://fontawesome.com/icons/wrench?style=solid /// configuration, construction, equipment, fix, mechanic, modify, plumbing, settings, spanner, tool, update, wrench - static const IconData solidWrench = IconDataSolid(0xf0ad); + static const IconData solidWrench = IconData(0xf0ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wrench icon /// /// https://fontawesome.com/icons/wrench?style=regular /// configuration, construction, equipment, fix, mechanic, modify, plumbing, settings, spanner, tool, update, wrench - static const IconData wrench = IconDataRegular(0xf0ad); + static const IconData wrench = IconData(0xf0ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wrench icon /// /// https://fontawesome.com/icons/wrench?style=light /// configuration, construction, equipment, fix, mechanic, modify, plumbing, settings, spanner, tool, update, wrench - static const IconData lightWrench = IconDataLight(0xf0ad); + static const IconData lightWrench = IconData(0xf0ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wrench icon /// /// https://fontawesome.com/icons/wrench?style=thin /// configuration, construction, equipment, fix, mechanic, modify, plumbing, settings, spanner, tool, update, wrench - static const IconData thinWrench = IconDataThin(0xf0ad); + static const IconData thinWrench = IconData(0xf0ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Wrench Simple icon /// /// https://fontawesome.com/icons/wrench-simple?style=solid /// configuration, equipment, maintenance, modify, settings, tool - static const IconData solidWrenchSimple = IconDataSolid(0xe2d1); + static const IconData solidWrenchSimple = IconData(0xe2d1, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Wrench Simple icon /// /// https://fontawesome.com/icons/wrench-simple?style=regular /// configuration, equipment, maintenance, modify, settings, tool - static const IconData wrenchSimple = IconDataRegular(0xe2d1); + static const IconData wrenchSimple = IconData(0xe2d1, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Wrench Simple icon /// /// https://fontawesome.com/icons/wrench-simple?style=light /// configuration, equipment, maintenance, modify, settings, tool - static const IconData lightWrenchSimple = IconDataLight(0xe2d1); + static const IconData lightWrenchSimple = IconData(0xe2d1, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Wrench Simple icon /// /// https://fontawesome.com/icons/wrench-simple?style=thin /// configuration, equipment, maintenance, modify, settings, tool - static const IconData thinWrenchSimple = IconDataThin(0xe2d1); + static const IconData thinWrenchSimple = IconData(0xe2d1, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid X icon /// /// https://fontawesome.com/icons/x?style=solid /// Latin Capital Letter X, Latin Small Letter X, letter, uncheck - static const IconData solidX = IconDataSolid(0x58); + static const IconData solidX = IconData(0x58, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular X icon /// /// https://fontawesome.com/icons/x?style=regular /// Latin Capital Letter X, Latin Small Letter X, letter, uncheck - static const IconData x = IconDataRegular(0x58); + static const IconData x = IconData(0x58, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light X icon /// /// https://fontawesome.com/icons/x?style=light /// Latin Capital Letter X, Latin Small Letter X, letter, uncheck - static const IconData lightX = IconDataLight(0x58); + static const IconData lightX = IconData(0x58, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin X icon /// /// https://fontawesome.com/icons/x?style=thin /// Latin Capital Letter X, Latin Small Letter X, letter, uncheck - static const IconData thinX = IconDataThin(0x58); + static const IconData thinX = IconData(0x58, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid X Ray icon /// /// https://fontawesome.com/icons/x-ray?style=solid /// health, medical, radiological images, radiology, skeleton - static const IconData solidXRay = IconDataSolid(0xf497); + static const IconData solidXRay = IconData(0xf497, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular X Ray icon /// /// https://fontawesome.com/icons/x-ray?style=regular /// health, medical, radiological images, radiology, skeleton - static const IconData xRay = IconDataRegular(0xf497); + static const IconData xRay = IconData(0xf497, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light X Ray icon /// /// https://fontawesome.com/icons/x-ray?style=light /// health, medical, radiological images, radiology, skeleton - static const IconData lightXRay = IconDataLight(0xf497); + static const IconData lightXRay = IconData(0xf497, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin X Ray icon /// /// https://fontawesome.com/icons/x-ray?style=thin /// health, medical, radiological images, radiology, skeleton - static const IconData thinXRay = IconDataThin(0xf497); + static const IconData thinXRay = IconData(0xf497, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands X Twitter icon /// /// https://fontawesome.com/icons/x-twitter?style=brands /// elon, twitter, x - static const IconData xTwitter = IconDataBrands(0xe61b); + static const IconData xTwitter = IconData(0xe61b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Xbox icon /// /// https://fontawesome.com/icons/xbox?style=brands - static const IconData xbox = IconDataBrands(0xf412); + static const IconData xbox = IconData(0xf412, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Xing icon /// /// https://fontawesome.com/icons/xing?style=brands - static const IconData xing = IconDataBrands(0xf168); + static const IconData xing = IconData(0xf168, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Xmark icon /// /// https://fontawesome.com/icons/xmark?style=solid /// Cancellation X, Multiplication Sign, Multiplication X, cancel, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData solidXmark = IconDataSolid(0xf00d); + static const IconData solidXmark = IconData(0xf00d, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias close for icon [solidXmark] @Deprecated('Use "solidXmark" instead.') @@ -96831,7 +96831,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark?style=regular /// Cancellation X, Multiplication Sign, Multiplication X, cancel, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData xmark = IconDataRegular(0xf00d); + static const IconData xmark = IconData(0xf00d, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias close for icon [xmark] @Deprecated('Use "xmark" instead.') @@ -96853,7 +96853,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark?style=light /// Cancellation X, Multiplication Sign, Multiplication X, cancel, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData lightXmark = IconDataLight(0xf00d); + static const IconData lightXmark = IconData(0xf00d, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias close for icon [lightXmark] @Deprecated('Use "lightXmark" instead.') @@ -96875,7 +96875,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark?style=thin /// Cancellation X, Multiplication Sign, Multiplication X, cancel, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData thinXmark = IconDataThin(0xf00d); + static const IconData thinXmark = IconData(0xf00d, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias close for icon [thinXmark] @Deprecated('Use "thinXmark" instead.') @@ -96897,31 +96897,31 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark-large?style=solid /// cancel, cancellation X, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiplication Sign, multiplication X, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData solidXmarkLarge = IconDataSolid(0xe59b); + static const IconData solidXmarkLarge = IconData(0xe59b, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Xmark Large icon /// /// https://fontawesome.com/icons/xmark-large?style=regular /// cancel, cancellation X, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiplication Sign, multiplication X, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData xmarkLarge = IconDataRegular(0xe59b); + static const IconData xmarkLarge = IconData(0xe59b, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Xmark Large icon /// /// https://fontawesome.com/icons/xmark-large?style=light /// cancel, cancellation X, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiplication Sign, multiplication X, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData lightXmarkLarge = IconDataLight(0xe59b); + static const IconData lightXmarkLarge = IconData(0xe59b, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Xmark Large icon /// /// https://fontawesome.com/icons/xmark-large?style=thin /// cancel, cancellation X, close, cross, cross mark, error, exit, incorrect, mark, multiplication, multiplication Sign, multiplication X, multiply, notice, notification, notify, problem, sign, uncheck, wrong, x, × - static const IconData thinXmarkLarge = IconDataThin(0xe59b); + static const IconData thinXmarkLarge = IconData(0xe59b, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Xmark To Slot icon /// /// https://fontawesome.com/icons/xmark-to-slot?style=solid /// cast, election, negative, no, politics, reject, uncheck, voting - static const IconData solidXmarkToSlot = IconDataSolid(0xf771); + static const IconData solidXmarkToSlot = IconData(0xf771, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias times-to-slot for icon [solidXmarkToSlot] @Deprecated('Use "solidXmarkToSlot" instead.') @@ -96935,7 +96935,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark-to-slot?style=regular /// cast, election, negative, no, politics, reject, uncheck, voting - static const IconData xmarkToSlot = IconDataRegular(0xf771); + static const IconData xmarkToSlot = IconData(0xf771, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias times-to-slot for icon [xmarkToSlot] @Deprecated('Use "xmarkToSlot" instead.') @@ -96949,7 +96949,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark-to-slot?style=light /// cast, election, negative, no, politics, reject, uncheck, voting - static const IconData lightXmarkToSlot = IconDataLight(0xf771); + static const IconData lightXmarkToSlot = IconData(0xf771, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias times-to-slot for icon [lightXmarkToSlot] @Deprecated('Use "lightXmarkToSlot" instead.') @@ -96963,7 +96963,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmark-to-slot?style=thin /// cast, election, negative, no, politics, reject, uncheck, voting - static const IconData thinXmarkToSlot = IconDataThin(0xf771); + static const IconData thinXmarkToSlot = IconData(0xf771, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias times-to-slot for icon [thinXmarkToSlot] @Deprecated('Use "thinXmarkToSlot" instead.') @@ -96977,90 +96977,90 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/xmarks-lines?style=solid /// barricade, barrier, fence, poison, roadblock - static const IconData solidXmarksLines = IconDataSolid(0xe59a); + static const IconData solidXmarksLines = IconData(0xe59a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Xmarks Lines icon /// /// https://fontawesome.com/icons/xmarks-lines?style=regular /// barricade, barrier, fence, poison, roadblock - static const IconData xmarksLines = IconDataRegular(0xe59a); + static const IconData xmarksLines = IconData(0xe59a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Xmarks Lines icon /// /// https://fontawesome.com/icons/xmarks-lines?style=light /// barricade, barrier, fence, poison, roadblock - static const IconData lightXmarksLines = IconDataLight(0xe59a); + static const IconData lightXmarksLines = IconData(0xe59a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Xmarks Lines icon /// /// https://fontawesome.com/icons/xmarks-lines?style=thin /// barricade, barrier, fence, poison, roadblock - static const IconData thinXmarksLines = IconDataThin(0xe59a); + static const IconData thinXmarksLines = IconData(0xe59a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Solid Y icon /// /// https://fontawesome.com/icons/y?style=solid /// Latin Capital Letter Y, Latin Small Letter Y, letter, yay, yes - static const IconData solidY = IconDataSolid(0x59); + static const IconData solidY = IconData(0x59, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Y icon /// /// https://fontawesome.com/icons/y?style=regular /// Latin Capital Letter Y, Latin Small Letter Y, letter, yay, yes - static const IconData y = IconDataRegular(0x59); + static const IconData y = IconData(0x59, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Y icon /// /// https://fontawesome.com/icons/y?style=light /// Latin Capital Letter Y, Latin Small Letter Y, letter, yay, yes - static const IconData lightY = IconDataLight(0x59); + static const IconData lightY = IconData(0x59, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Y icon /// /// https://fontawesome.com/icons/y?style=thin /// Latin Capital Letter Y, Latin Small Letter Y, letter, yay, yes - static const IconData thinY = IconDataThin(0x59); + static const IconData thinY = IconData(0x59, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Y Combinator icon /// /// https://fontawesome.com/icons/y-combinator?style=brands - static const IconData yCombinator = IconDataBrands(0xf23b); + static const IconData yCombinator = IconData(0xf23b, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yahoo Logo icon /// /// https://fontawesome.com/icons/yahoo?style=brands - static const IconData yahoo = IconDataBrands(0xf19e); + static const IconData yahoo = IconData(0xf19e, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yammer icon /// /// https://fontawesome.com/icons/yammer?style=brands - static const IconData yammer = IconDataBrands(0xf840); + static const IconData yammer = IconData(0xf840, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yandex icon /// /// https://fontawesome.com/icons/yandex?style=brands - static const IconData yandex = IconDataBrands(0xf413); + static const IconData yandex = IconData(0xf413, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yandex International icon /// /// https://fontawesome.com/icons/yandex-international?style=brands - static const IconData yandexInternational = IconDataBrands(0xf414); + static const IconData yandexInternational = IconData(0xf414, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yarn icon /// /// https://fontawesome.com/icons/yarn?style=brands - static const IconData yarn = IconDataBrands(0xf7e3); + static const IconData yarn = IconData(0xf7e3, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands Yelp icon /// /// https://fontawesome.com/icons/yelp?style=brands - static const IconData yelp = IconDataBrands(0xf1e9); + static const IconData yelp = IconData(0xf1e9, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Yen Sign icon /// /// https://fontawesome.com/icons/yen-sign?style=solid /// Yen Sign, currency - static const IconData solidYenSign = IconDataSolid(0xf157); + static const IconData solidYenSign = IconData(0xf157, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Alias cny for icon [solidYenSign] @Deprecated('Use "solidYenSign" instead.') @@ -97082,7 +97082,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/yen-sign?style=regular /// Yen Sign, currency - static const IconData yenSign = IconDataRegular(0xf157); + static const IconData yenSign = IconData(0xf157, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Alias cny for icon [yenSign] @Deprecated('Use "yenSign" instead.') @@ -97104,7 +97104,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/yen-sign?style=light /// Yen Sign, currency - static const IconData lightYenSign = IconDataLight(0xf157); + static const IconData lightYenSign = IconData(0xf157, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Alias cny for icon [lightYenSign] @Deprecated('Use "lightYenSign" instead.') @@ -97126,7 +97126,7 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/yen-sign?style=thin /// Yen Sign, currency - static const IconData thinYenSign = IconDataThin(0xf157); + static const IconData thinYenSign = IconData(0xf157, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Alias cny for icon [thinYenSign] @Deprecated('Use "thinYenSign" instead.') @@ -97148,63 +97148,63 @@ class FontAwesomeIcons { /// /// https://fontawesome.com/icons/yin-yang?style=solid /// daoism, opposites, religion, tao, taoism, taoist, yang, yin, yin yang - static const IconData solidYinYang = IconDataSolid(0xf6ad); + static const IconData solidYinYang = IconData(0xf6ad, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Yin Yang icon /// /// https://fontawesome.com/icons/yin-yang?style=regular /// daoism, opposites, religion, tao, taoism, taoist, yang, yin, yin yang - static const IconData yinYang = IconDataRegular(0xf6ad); + static const IconData yinYang = IconData(0xf6ad, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Yin Yang icon /// /// https://fontawesome.com/icons/yin-yang?style=light /// daoism, opposites, religion, tao, taoism, taoist, yang, yin, yin yang - static const IconData lightYinYang = IconDataLight(0xf6ad); + static const IconData lightYinYang = IconData(0xf6ad, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Yin Yang icon /// /// https://fontawesome.com/icons/yin-yang?style=thin /// daoism, opposites, religion, tao, taoism, taoist, yang, yin, yin yang - static const IconData thinYinYang = IconDataThin(0xf6ad); + static const IconData thinYinYang = IconData(0xf6ad, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Yoast icon /// /// https://fontawesome.com/icons/yoast?style=brands - static const IconData yoast = IconDataBrands(0xf2b1); + static const IconData yoast = IconData(0xf2b1, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Brands YouTube icon /// /// https://fontawesome.com/icons/youtube?style=brands /// film, video, youtube-play, youtube-square - static const IconData youtube = IconDataBrands(0xf167); + static const IconData youtube = IconData(0xf167, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); /// Solid Z icon /// /// https://fontawesome.com/icons/z?style=solid /// Latin Capital Letter Z, Latin Small Letter Z, letter - static const IconData solidZ = IconDataSolid(0x5a); + static const IconData solidZ = IconData(0x5a, fontFamily: 'FontAwesomeSolid', fontPackage: 'font_awesome_flutter'); /// Regular Z icon /// /// https://fontawesome.com/icons/z?style=regular /// Latin Capital Letter Z, Latin Small Letter Z, letter - static const IconData z = IconDataRegular(0x5a); + static const IconData z = IconData(0x5a, fontFamily: 'FontAwesomeRegular', fontPackage: 'font_awesome_flutter'); /// Light Z icon /// /// https://fontawesome.com/icons/z?style=light /// Latin Capital Letter Z, Latin Small Letter Z, letter - static const IconData lightZ = IconDataLight(0x5a); + static const IconData lightZ = IconData(0x5a, fontFamily: 'FontAwesomeLight', fontPackage: 'font_awesome_flutter'); /// Thin Z icon /// /// https://fontawesome.com/icons/z?style=thin /// Latin Capital Letter Z, Latin Small Letter Z, letter - static const IconData thinZ = IconDataThin(0x5a); + static const IconData thinZ = IconData(0x5a, fontFamily: 'FontAwesomeThin', fontPackage: 'font_awesome_flutter'); /// Brands Zhihu icon /// /// https://fontawesome.com/icons/zhihu?style=brands - static const IconData zhihu = IconDataBrands(0xf63f); + static const IconData zhihu = IconData(0xf63f, fontFamily: 'FontAwesomeBrands', fontPackage: 'font_awesome_flutter'); } diff --git a/flutter/deps/font_awesome_flutter/lib/src/icon_data.dart b/flutter/deps/font_awesome_flutter/lib/src/icon_data.dart index b3db429..58cd740 100644 --- a/flutter/deps/font_awesome_flutter/lib/src/icon_data.dart +++ b/flutter/deps/font_awesome_flutter/lib/src/icon_data.dart @@ -1,85 +1,12 @@ library font_awesome_flutter; -import 'package:flutter/widgets.dart'; - -/// [IconData] for a font awesome brand icon from a code point -/// -/// Code points can be obtained from fontawesome.com -class IconDataBrands extends IconData { - const IconDataBrands(int codePoint) - : super( - codePoint, - fontFamily: 'FontAwesomeBrands', - fontPackage: 'font_awesome_flutter', - ); -} - -/// [IconData] for a font awesome solid icon from a code point -/// -/// Code points can be obtained from fontawesome.com -class IconDataSolid extends IconData { - const IconDataSolid(int codePoint) - : super( - codePoint, - fontFamily: 'FontAwesomeSolid', - fontPackage: 'font_awesome_flutter', - ); -} - -/// [IconData] for a font awesome regular icon from a code point -/// -/// Code points can be obtained from fontawesome.com -class IconDataRegular extends IconData { - const IconDataRegular(int codePoint) - : super( - codePoint, - fontFamily: 'FontAwesomeRegular', - fontPackage: 'font_awesome_flutter', - ); -} - -/// [IconData] for a font awesome light icon from a code point. Only works if -/// light icons (font awesome pro) have been installed. -/// -/// Code points can be obtained from fontawesome.com -class IconDataLight extends IconData { - const IconDataLight(int codePoint) - : super( - codePoint, - fontFamily: 'FontAwesomeLight', - fontPackage: 'font_awesome_flutter', - ); -} - -/// [IconData] for a font awesome duotone icon from a code point. Only works if -/// duotone icons (font awesome pro) have been installed. -/// -/// Code points can be obtained from fontawesome.com. Each duotone icon consists -/// of a primary [codePoint] and a [secondary]. -class IconDataDuotone extends IconData { - /// Secondary glyph of the duotone icon - /// - /// Due to tree-shaking restraints [secondary] cannot be the codepoint itself, - /// but has to be an [IconData] object. - final IconData? secondary; - - const IconDataDuotone(int codePoint, {this.secondary}) - : super( - codePoint, - fontFamily: 'FontAwesomeDuotone', - fontPackage: 'font_awesome_flutter', - ); -} - -/// [IconData] for a font awesome thin icon from a code point. Only works if -/// thin icons (font awesome pro, v6+) have been installed. -/// -/// Code points can be obtained from fontawesome.com -class IconDataThin extends IconData { - const IconDataThin(int codePoint) - : super( - codePoint, - fontFamily: 'FontAwesomeThin', - fontPackage: 'font_awesome_flutter', - ); -} +// NOTE: +// This file previously declared IconDataBrands / IconDataSolid / IconDataRegular +// / IconDataLight / IconDataThin / IconDataDuotone as subclasses of [IconData]. +// Newer Flutter SDKs mark [IconData] as a `final class`, which can no longer be +// extended outside its own library, so those subclasses no longer compile. +// +// The generated icon constants in `font_awesome_flutter.dart` now construct +// plain `const IconData(..., fontFamily: '', fontPackage: +// 'font_awesome_flutter')` directly, so these helper subclasses are no longer +// needed. Using const [IconData] literals also keeps icon tree-shaking working. diff --git a/flutter/lib/components/layout/nav_layout.dart b/flutter/lib/components/layout/nav_layout.dart index 7c3c2ba..fe2ae10 100644 --- a/flutter/lib/components/layout/nav_layout.dart +++ b/flutter/lib/components/layout/nav_layout.dart @@ -98,7 +98,7 @@ class _SCNNavLayoutState extends State { selectedIndex: _selectedIndex, onTabSelected: _onItemTapped, color: Theme.of(context).disabledColor, - selectedColor: Theme.of(context).primaryColorDark, + selectedColor: Theme.of(context).colorScheme.primary, notchedShape: const AutomaticNotchedShape( RoundedRectangleBorder( borderRadius: BorderRadius.only( diff --git a/flutter/lib/components/layout/scaffold.dart b/flutter/lib/components/layout/scaffold.dart index ddf9910..f2acb12 100644 --- a/flutter/lib/components/layout/scaffold.dart +++ b/flutter/lib/components/layout/scaffold.dart @@ -31,7 +31,7 @@ class SCNScaffold extends StatelessWidget { showShare: showShare, onShare: onShare ?? () {}, ), - body: child, + body: SafeArea(child: child), floatingActionButton: floatingActionButton, ); } diff --git a/flutter/lib/pages/channel_list/channel_list_item.dart b/flutter/lib/pages/channel_list/channel_list_item.dart index 080da6f..73c5cca 100644 --- a/flutter/lib/pages/channel_list/channel_list_item.dart +++ b/flutter/lib/pages/channel_list/channel_list_item.dart @@ -69,65 +69,74 @@ class _ChannelListItemState extends State { margin: EdgeInsets.fromLTRB(0, 4, 0, 4), shape: BeveledRectangleBorder(borderRadius: BorderRadius.circular(0)), color: Theme.of(context).cardTheme.color, - child: InkWell( - onTap: () { - if (widget.mode == ChannelListItemMode.Messages) { - Navi.push(context, () => ChannelMessageViewPage(channel: widget.channel)); - } else { - Navi.push(context, () => ChannelViewPage(channelID: widget.channel.channelID, preloadedData: (widget.channel, widget.subscription), needsReload: widget.onChannelListReloadTrigger)); - } - }, - child: Padding( - padding: const EdgeInsets.all(8), - child: Row( - children: [ - _buildIcon(context), - SizedBox(width: 8), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.stretch, - children: [ - Row( - children: [ - Expanded( - child: Text( - widget.channel.displayName, - style: const TextStyle(fontWeight: FontWeight.bold), - ), - ), - Text( - (widget.channel.timestampLastSent == null) ? '' : dateFormat.format(DateTime.parse(widget.channel.timestampLastSent!).toLocal()), - style: const TextStyle(fontSize: 14), - ), - ], - ), - SizedBox(height: 4), - Row( - crossAxisAlignment: CrossAxisAlignment.end, - children: [ - Expanded(child: (widget.mode == ChannelListItemMode.Messages) ? Text(_preformatTitle(lastMessage), style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160))) : _buildSubscriptionStateText(context)), - (widget.mode == ChannelListItemMode.Messages) ? Text(widget.channel.messagesSent.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)) : Text("", style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), - ], - ), - ], - ), - ), - SizedBox(width: 4), - GestureDetector( + child: IntrinsicHeight( + child: Row( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Expanded( + child: InkWell( onTap: () { if (widget.mode == ChannelListItemMode.Messages) { - Navi.push(context, () => ChannelViewPage(channelID: widget.channel.channelID, preloadedData: (widget.channel, widget.subscription), needsReload: widget.onChannelListReloadTrigger)); - } else { Navi.push(context, () => ChannelMessageViewPage(channel: widget.channel)); + } else { + Navi.push(context, () => ChannelViewPage(channelID: widget.channel.channelID, preloadedData: (widget.channel, widget.subscription), needsReload: widget.onChannelListReloadTrigger)); } }, child: Padding( padding: const EdgeInsets.all(8), - child: (widget.mode == ChannelListItemMode.Messages) ? Icon(FontAwesomeIcons.solidSquareInfo, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24) : Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24), + child: Row( + children: [ + _buildIcon(context), + SizedBox(width: 8), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Row( + children: [ + Expanded( + child: Text( + widget.channel.displayName, + style: const TextStyle(fontWeight: FontWeight.bold), + ), + ), + Text( + (widget.channel.timestampLastSent == null) ? '' : dateFormat.format(DateTime.parse(widget.channel.timestampLastSent!).toLocal()), + style: const TextStyle(fontSize: 14), + ), + ], + ), + SizedBox(height: 4), + Row( + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Expanded(child: (widget.mode == ChannelListItemMode.Messages) ? Text(_preformatTitle(lastMessage), style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160))) : _buildSubscriptionStateText(context)), + (widget.mode == ChannelListItemMode.Messages) ? Text(widget.channel.messagesSent.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)) : Text("", style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), + ], + ), + ], + ), + ), + ], + ), ), ), - ], - ), + ), + GestureDetector( + behavior: HitTestBehavior.opaque, + onTap: () { + if (widget.mode == ChannelListItemMode.Messages) { + Navi.push(context, () => ChannelViewPage(channelID: widget.channel.channelID, preloadedData: (widget.channel, widget.subscription), needsReload: widget.onChannelListReloadTrigger)); + } else { + Navi.push(context, () => ChannelMessageViewPage(channel: widget.channel)); + } + }, + child: Padding( + padding: const EdgeInsets.only(left: 12, right: 16), + child: Center(widthFactor: 1.0, child: (widget.mode == ChannelListItemMode.Messages) ? Icon(FontAwesomeIcons.solidSquareInfo, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24) : Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24)), + ), + ), + ], ), ), ); diff --git a/flutter/lib/pages/keytoken_list/keytoken_list_item.dart b/flutter/lib/pages/keytoken_list/keytoken_list_item.dart index edd7d23..a6cbd6f 100644 --- a/flutter/lib/pages/keytoken_list/keytoken_list_item.dart +++ b/flutter/lib/pages/keytoken_list/keytoken_list_item.dart @@ -31,62 +31,71 @@ class KeyTokenListItem extends StatelessWidget { margin: EdgeInsets.fromLTRB(0, 4, 0, 4), shape: BeveledRectangleBorder(borderRadius: BorderRadius.circular(0)), color: Theme.of(context).cardTheme.color, - child: InkWell( - onTap: () { - Navi.push(context, () => KeyTokenViewPage(keytokenID: item.keytokenID, preloadedData: item, needsReload: needsReload)); - }, - child: Padding( - padding: const EdgeInsets.all(8), - child: Row( - children: [ - Icon(FontAwesomeIcons.solidGearCode, color: Theme.of(context).colorScheme.outline, size: 32), - SizedBox(width: 16), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.stretch, - children: [ - Row( - children: [ - Expanded( - child: Text( - item.name, - style: const TextStyle(fontWeight: FontWeight.bold), - ), - ), - Text( - (item.timestampLastUsed == null) ? '' : dateFormat.format(DateTime.parse(item.timestampLastUsed!).toLocal()), - style: const TextStyle(fontSize: 14), - ), - ], - ), - SizedBox(height: 4), - Row( - crossAxisAlignment: CrossAxisAlignment.end, - children: [ - Expanded( - child: Text( - "Permissions: " + _formatPermissions(item.permissions, item.allChannels, item.channels), - style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160)), - ), - ), - Text(item.messagesSent.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), - ], - ), - ], - ), - ), - SizedBox(width: 4), - GestureDetector( + child: IntrinsicHeight( + child: Row( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Expanded( + child: InkWell( onTap: () { - Navi.push(context, () => FilteredMessageViewPage(title: item.name, alertText: 'All message sent with the key \'${item.name}\'', filter: MessageFilter(usedKeys: [item.keytokenID]))); + Navi.push(context, () => KeyTokenViewPage(keytokenID: item.keytokenID, preloadedData: item, needsReload: needsReload)); }, child: Padding( padding: const EdgeInsets.all(8), - child: Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24), + child: Row( + children: [ + Icon(FontAwesomeIcons.solidGearCode, color: Theme.of(context).colorScheme.outline, size: 32), + SizedBox(width: 16), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Row( + children: [ + Expanded( + child: Text( + item.name, + style: const TextStyle(fontWeight: FontWeight.bold), + ), + ), + Text( + (item.timestampLastUsed == null) ? '' : dateFormat.format(DateTime.parse(item.timestampLastUsed!).toLocal()), + style: const TextStyle(fontSize: 14), + ), + ], + ), + SizedBox(height: 4), + Row( + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Expanded( + child: Text( + "Permissions: " + _formatPermissions(item.permissions, item.allChannels, item.channels), + style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160)), + ), + ), + Text(item.messagesSent.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), + ], + ), + ], + ), + ), + ], + ), ), ), - ], - ), + ), + GestureDetector( + behavior: HitTestBehavior.opaque, + onTap: () { + Navi.push(context, () => FilteredMessageViewPage(title: item.name, alertText: 'All message sent with the key \'${item.name}\'', filter: MessageFilter(usedKeys: [item.keytokenID]))); + }, + child: Padding( + padding: const EdgeInsets.only(left: 12, right: 16), + child: Center(widthFactor: 1.0, child: Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24)), + ), + ), + ], ), ), ); diff --git a/flutter/lib/pages/sender_list/sender_list_item.dart b/flutter/lib/pages/sender_list/sender_list_item.dart index 1519eaf..22cbc95 100644 --- a/flutter/lib/pages/sender_list/sender_list_item.dart +++ b/flutter/lib/pages/sender_list/sender_list_item.dart @@ -28,58 +28,67 @@ class SenderListItem extends StatelessWidget { margin: EdgeInsets.fromLTRB(0, 4, 0, 4), shape: BeveledRectangleBorder(borderRadius: BorderRadius.circular(0)), color: Theme.of(context).cardTheme.color, - child: InkWell( - onTap: () { - Navi.push(context, () => FilteredMessageViewPage(title: item.name, alertText: 'All message sent from \'${item.name}\'', filter: MessageFilter(senderNames: [item.name]))); - }, - child: Padding( - padding: const EdgeInsets.all(8), - child: Row( - children: [ - Icon(FontAwesomeIcons.solidSignature, color: Theme.of(context).colorScheme.outline, size: 32), - SizedBox(width: 16), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.stretch, - children: [ - Row( - children: [ - Expanded( - child: Text( - item.name, - style: const TextStyle(fontWeight: FontWeight.bold), - ), - ), - ], - ), - SizedBox(height: 4), - Row( - crossAxisAlignment: CrossAxisAlignment.end, - children: [ - Expanded( - child: Text( - dateFormat.format(DateTime.parse(item.lastTimestamp).toLocal()), - style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160)), - ), - ), - Text(item.count.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), - ], - ), - ], - ), - ), - SizedBox(width: 4), - GestureDetector( + child: IntrinsicHeight( + child: Row( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Expanded( + child: InkWell( onTap: () { Navi.push(context, () => FilteredMessageViewPage(title: item.name, alertText: 'All message sent from \'${item.name}\'', filter: MessageFilter(senderNames: [item.name]))); }, child: Padding( padding: const EdgeInsets.all(8), - child: Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24), + child: Row( + children: [ + Icon(FontAwesomeIcons.solidSignature, color: Theme.of(context).colorScheme.outline, size: 32), + SizedBox(width: 16), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Row( + children: [ + Expanded( + child: Text( + item.name, + style: const TextStyle(fontWeight: FontWeight.bold), + ), + ), + ], + ), + SizedBox(height: 4), + Row( + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Expanded( + child: Text( + dateFormat.format(DateTime.parse(item.lastTimestamp).toLocal()), + style: TextStyle(color: Theme.of(context).textTheme.bodyLarge?.color?.withAlpha(160)), + ), + ), + Text(item.count.toString(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold)), + ], + ), + ], + ), + ), + ], + ), ), ), - ], - ), + ), + GestureDetector( + behavior: HitTestBehavior.opaque, + onTap: () { + Navi.push(context, () => FilteredMessageViewPage(title: item.name, alertText: 'All message sent from \'${item.name}\'', filter: MessageFilter(senderNames: [item.name]))); + }, + child: Padding( + padding: const EdgeInsets.only(left: 12, right: 16), + child: Center(widthFactor: 1.0, child: Icon(FontAwesomeIcons.solidEnvelopes, color: Theme.of(context).colorScheme.onPrimaryContainer.withAlpha(128), size: 24)), + ), + ), + ], ), ), ); diff --git a/flutter/pubspec.yaml b/flutter/pubspec.yaml index 7e56e45..bffccec 100644 --- a/flutter/pubspec.yaml +++ b/flutter/pubspec.yaml @@ -2,7 +2,7 @@ name: simplecloudnotifier description: "Receive push messages" publish_to: 'none' -version: 2.2.2+544 +version: 2.2.2+552 environment: sdk: '>=3.9.0 <4.0.0'