diff --git a/.blackbox/blackbox-files.txt b/.blackbox/blackbox-files.txt index aa5764b2..dad57f33 100644 --- a/.blackbox/blackbox-files.txt +++ b/.blackbox/blackbox-files.txt @@ -4,9 +4,3 @@ android/key.properties ios/ExportOptions.plist ios/GoogleService-Info.plist macos/GoogleService-Info.plist -vendor/font_awesome_flutter/icons.json -vendor/font_awesome_flutter/lib/fonts/fa-brands-400.ttf -vendor/font_awesome_flutter/lib/fonts/fa-duotone-900.ttf -vendor/font_awesome_flutter/lib/fonts/fa-light-300.ttf -vendor/font_awesome_flutter/lib/fonts/fa-regular-400.ttf -vendor/font_awesome_flutter/lib/fonts/fa-solid-900.ttf diff --git a/.gitignore b/.gitignore index 1ad2a05c..1e0203f5 100644 --- a/.gitignore +++ b/.gitignore @@ -55,10 +55,4 @@ coverage/ /ios/ExportOptions.plist /ios/GoogleService-Info.plist /macos/GoogleService-Info.plist -/vendor/font_awesome_flutter/lib/fonts/fa-brands-400.ttf -/vendor/font_awesome_flutter/lib/fonts/fa-duotone-900.ttf -/vendor/font_awesome_flutter/lib/fonts/fa-light-300.ttf -/vendor/font_awesome_flutter/lib/fonts/fa-regular-400.ttf -/vendor/font_awesome_flutter/lib/fonts/fa-solid-900.ttf /vendor/font_awesome_flutter/lib/fonts/fa-thin-100.ttf -/vendor/font_awesome_flutter/icons.json diff --git a/derry.yaml b/derry.yaml index 82ceed77..7664dcee 100644 --- a/derry.yaml +++ b/derry.yaml @@ -1,41 +1,108 @@ blackbox: - admins: blackbox_list_admins - decrypt: blackbox_postdeploy - files: blackbox_list_files - shred: blackbox_shred_all_files - update: blackbox_update_all_files + admins: + (description): Blackbox - List Admins + (execution): once + (scripts): + - blackbox_list_admins + decrypt: + (description): Blackbox - Decrypt Encrypted Files + (execution): once + (scripts): + - blackbox_postdeploy + files: + (description): Blackbox - List Encrypted Files + (execution): once + (scripts): + - blackbox_list_files + shred: + (description): Blackbox - Safely Delete Decrypted Files + (execution): once + (scripts): + - blackbox_shred_all_files + update: + (description): Blackbox - Decrypt & Re-Encrypt Tracked Files + (execution): once + (scripts): + - blackbox_update_all_files build: android: - apk: ./scripts/build/apk.sh - aab: ./scripts/build/aab.sh + apk: + (description): Build (Android) - Build Split APKs + (execution): once + (scripts): + - ./scripts/build/apk.sh + aab: + (description): Build (Android) - Build Appbundle + (execution): once + (scripts): + - ./scripts/build/aab.sh ios: - ipa: ./scripts/build/ipa.sh + ipa: + (description): Build (iOS) - Build IPA + (execution): once + (scripts): + - ./scripts/build/ipa.sh archive: - - flutter clean - - flutter build ios + (description): Build (iOS) - Build Xcode Archive + (execution): once + (scripts): + - flutter clean + - flutter build ios macos: archive: - - flutter clean - - flutter build macos + (description): Build (iOS) - Build Xcode Archive + (execution): once + (scripts): + - flutter clean + - flutter build macos cocoapods: clearcache: - - rm -rf ~/Library/Caches/CocoaPods - - rm -rf ~/Library/Developer/Xcode/DerivedData/* + (description): Cocoapods - Delete Cache & Derived Data + (execution): multiple + (scripts): + - rm -rf ~/Library/Caches/CocoaPods + - rm -rf ~/Library/Developer/Xcode/DerivedData/* nuke: ios: - - cd ./ios && rm -rf Pods/ - - cd ./ios && pod deintegrate - - cd ./ios && pod setup - - cd ./ios && pod install + (description): Cocoapods - Reintegrate & Reinstall iOS Pods + (execution): once + (scripts): + - cd ./ios && rm -rf Pods/ + - cd ./ios && pod deintegrate + - cd ./ios && pod setup + - cd ./ios && pod install macos: - - cd ./macos && rm -rf Pods/ - - cd ./macos && pod deintegrate - - cd ./macos && pod setup - - cd ./macos && pod install + (description): Cocoapods - Reintegrate & Reinstall macOS Pods + (execution): once + (scripts): + - cd ./macos && rm -rf Pods/ + - cd ./macos && pod deintegrate + - cd ./macos && pod setup + - cd ./macos && pod install coverage: - create: flutter test --coverage - upload: bash <(curl -s https://codecov.io/bash) + create: + (description): Coverage - Create Coverage Report + (execution): once + (scripts): + - flutter test --coverage + upload: + (description): Coverage - Upload to Codecov + (execution): once + (scripts): + - bash <(curl -s https://codecov.io/bash) generate: - assets: spider build - runner: flutter packages pub run build_runner build --delete-conflicting-outputs - localization: dart ./scripts/generate/localization.dart + assets: + (description): Generator - Asset Tree + (execution): once + (scripts): + - spider build + runner: + (description): Generator - Build Runner + (execution): once + (scripts): + - flutter packages pub run build_runner build --delete-conflicting-outputs + localization: + (description): Generator - Localizations + (execution): once + (scripts): + - dart ./scripts/generate/localization.dart diff --git a/lib/core/router/router.dart b/lib/core/router/router.dart index 6cfcd73c..3f8af249 100644 --- a/lib/core/router/router.dart +++ b/lib/core/router/router.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fluro/fluro.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules.dart'; diff --git a/lib/core/state/state.dart b/lib/core/state/state.dart index 2b51f188..31998d47 100644 --- a/lib/core/state/state.dart +++ b/lib/core/state/state.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules.dart'; +import 'package:provider/provider.dart'; class LunaState { LunaState._(); diff --git a/lib/core/system/filesystem.dart b/lib/core/system/filesystem.dart index 99582112..020c5884 100644 --- a/lib/core/system/filesystem.dart +++ b/lib/core/system/filesystem.dart @@ -4,8 +4,8 @@ import 'package:file_selector_platform_interface/file_selector_platform_interfac import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:lunasea/core.dart'; -import 'package:share_plus/share_plus.dart'; import 'package:path_provider/path_provider.dart'; +import 'package:share_plus/share_plus.dart'; class LunaFileSystem { /// Export a given byte array to the filesystem. diff --git a/lib/core/ui/bottom_bar/navigation_bar.dart b/lib/core/ui/bottom_bar/navigation_bar.dart index cd8b4158..d615a948 100644 --- a/lib/core/ui/bottom_bar/navigation_bar.dart +++ b/lib/core/ui/bottom_bar/navigation_bar.dart @@ -1,5 +1,5 @@ -import 'package:google_nav_bar/google_nav_bar.dart'; import 'package:flutter/material.dart'; +import 'package:google_nav_bar/google_nav_bar.dart'; import 'package:lunasea/core.dart'; class LunaBottomNavigationBar extends StatefulWidget { diff --git a/lib/core/ui/list_view/flutter_reorderable_list_view.dart b/lib/core/ui/list_view/flutter_reorderable_list_view.dart index a7ea87e3..2b6c01c6 100644 --- a/lib/core/ui/list_view/flutter_reorderable_list_view.dart +++ b/lib/core/ui/list_view/flutter_reorderable_list_view.dart @@ -10,8 +10,8 @@ import 'dart:ui' show lerpDouble; import 'package:flutter/gestures.dart'; -import 'package:flutter/rendering.dart'; import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; /// A list whose items the user can interactively reorder by dragging. /// diff --git a/lib/modules/dashboard/routes/calendar/widgets/calendar.dart b/lib/modules/dashboard/routes/calendar/widgets/calendar.dart index 6b480495..677db3d8 100644 --- a/lib/modules/dashboard/routes/calendar/widgets/calendar.dart +++ b/lib/modules/dashboard/routes/calendar/widgets/calendar.dart @@ -3,8 +3,8 @@ import 'package:flutter/services.dart'; import 'package:intl/intl.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/dashboard.dart'; -import 'package:table_calendar/table_calendar.dart'; import 'package:simple_gesture_detector/simple_gesture_detector.dart'; +import 'package:table_calendar/table_calendar.dart'; class DashboardCalendarWidget extends StatefulWidget { final Map events; diff --git a/lib/modules/lidarr/core/api/data/album.dart b/lib/modules/lidarr/core/api/data/album.dart index c92a9453..9fec92a5 100644 --- a/lib/modules/lidarr/core/api/data/album.dart +++ b/lib/modules/lidarr/core/api/data/album.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/core.dart'; import 'package:intl/intl.dart'; +import 'package:lunasea/core.dart'; class LidarrAlbumData { final Map api = Database.currentProfileObject.getLidarr(); diff --git a/lib/modules/lidarr/widgets/search_result_tile.dart b/lib/modules/lidarr/widgets/search_result_tile.dart index 2aa2447d..2295054f 100644 --- a/lib/modules/lidarr/widgets/search_result_tile.dart +++ b/lib/modules/lidarr/widgets/search_result_tile.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/lidarr.dart'; import 'package:lunasea/modules/dashboard.dart'; +import 'package:lunasea/modules/lidarr.dart'; class LidarrReleasesTile extends StatefulWidget { final LidarrReleaseData release; diff --git a/lib/modules/nzbget/routes/history.dart b/lib/modules/nzbget/routes/history.dart index 44c32379..166b9155 100644 --- a/lib/modules/nzbget/routes/history.dart +++ b/lib/modules/nzbget/routes/history.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/nzbget.dart'; +import 'package:tuple/tuple.dart'; class NZBGetHistory extends StatefulWidget { static const ROUTE_NAME = '/nzbget/history'; diff --git a/lib/modules/nzbget/widgets/app_bar_stats.dart b/lib/modules/nzbget/widgets/app_bar_stats.dart index f794849f..e979045f 100644 --- a/lib/modules/nzbget/widgets/app_bar_stats.dart +++ b/lib/modules/nzbget/widgets/app_bar_stats.dart @@ -1,8 +1,8 @@ import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/nzbget.dart'; +import 'package:tuple/tuple.dart'; class NZBGetAppBarStats extends StatelessWidget { @override diff --git a/lib/modules/nzbget/widgets/queue_fab.dart b/lib/modules/nzbget/widgets/queue_fab.dart index c47fa890..3663f88f 100644 --- a/lib/modules/nzbget/widgets/queue_fab.dart +++ b/lib/modules/nzbget/widgets/queue_fab.dart @@ -2,8 +2,8 @@ import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/nzbget.dart'; +import 'package:tuple/tuple.dart'; class NZBGetQueueFAB extends StatefulWidget { final ScrollController scrollController; diff --git a/lib/modules/nzbget/widgets/queue_tile.dart b/lib/modules/nzbget/widgets/queue_tile.dart index b8e962d2..54d04bf9 100644 --- a/lib/modules/nzbget/widgets/queue_tile.dart +++ b/lib/modules/nzbget/widgets/queue_tile.dart @@ -1,8 +1,8 @@ import 'dart:math'; import 'package:flutter/material.dart'; -import 'package:percent_indicator/linear_percent_indicator.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/nzbget.dart'; +import 'package:percent_indicator/linear_percent_indicator.dart'; class NZBGetQueueTile extends StatefulWidget { final int index; diff --git a/lib/modules/radarr/routes/queue/route.dart b/lib/modules/radarr/routes/queue/route.dart index 4f3c44fc..4b36d4bb 100644 --- a/lib/modules/radarr/routes/queue/route.dart +++ b/lib/modules/radarr/routes/queue/route.dart @@ -1,7 +1,7 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; -import 'package:lunasea/modules/radarr.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/radarr.dart'; class RadarrQueueRouter extends RadarrPageRouter { RadarrQueueRouter() : super('/radarr/queue'); diff --git a/lib/modules/sabnzbd/routes/history.dart b/lib/modules/sabnzbd/routes/history.dart index 1a7e61ae..202e4e2c 100644 --- a/lib/modules/sabnzbd/routes/history.dart +++ b/lib/modules/sabnzbd/routes/history.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/sabnzbd.dart'; +import 'package:tuple/tuple.dart'; class SABnzbdHistory extends StatefulWidget { static const ROUTE_NAME = '/sabnzbd/history'; diff --git a/lib/modules/sabnzbd/widgets/app_bar_stats.dart b/lib/modules/sabnzbd/widgets/app_bar_stats.dart index 8696df91..5dd1dab7 100644 --- a/lib/modules/sabnzbd/widgets/app_bar_stats.dart +++ b/lib/modules/sabnzbd/widgets/app_bar_stats.dart @@ -1,8 +1,8 @@ import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/sabnzbd.dart'; +import 'package:tuple/tuple.dart'; class SABnzbdAppBarStats extends StatelessWidget { @override diff --git a/lib/modules/sabnzbd/widgets/queue_fab.dart b/lib/modules/sabnzbd/widgets/queue_fab.dart index ef7677d9..86d16319 100644 --- a/lib/modules/sabnzbd/widgets/queue_fab.dart +++ b/lib/modules/sabnzbd/widgets/queue_fab.dart @@ -2,8 +2,8 @@ import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:lunasea/core.dart'; -import 'package:tuple/tuple.dart'; import 'package:lunasea/modules/sabnzbd.dart'; +import 'package:tuple/tuple.dart'; class SABnzbdQueueFAB extends StatefulWidget { final ScrollController scrollController; diff --git a/lib/modules/sabnzbd/widgets/queue_tile.dart b/lib/modules/sabnzbd/widgets/queue_tile.dart index 7b5bfde8..bf427f8b 100644 --- a/lib/modules/sabnzbd/widgets/queue_tile.dart +++ b/lib/modules/sabnzbd/widgets/queue_tile.dart @@ -1,8 +1,8 @@ import 'dart:math'; import 'package:flutter/material.dart'; -import 'package:percent_indicator/linear_percent_indicator.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/sabnzbd.dart'; +import 'package:percent_indicator/linear_percent_indicator.dart'; class SABnzbdQueueTile extends StatefulWidget { final int index; diff --git a/lib/modules/search/core/models/result.dart b/lib/modules/search/core/models/result.dart index 66c19eeb..11514612 100644 --- a/lib/modules/search/core/models/result.dart +++ b/lib/modules/search/core/models/result.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/core.dart'; import 'package:intl/intl.dart'; +import 'package:lunasea/core.dart'; class NewznabResultData { String title; diff --git a/lib/modules/settings/routes/configuration_sonarr/pages/connection_details.dart b/lib/modules/settings/routes/configuration_sonarr/pages/connection_details.dart index 6f5d443e..9284b885 100644 --- a/lib/modules/settings/routes/configuration_sonarr/pages/connection_details.dart +++ b/lib/modules/settings/routes/configuration_sonarr/pages/connection_details.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/sonarr.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/sonarr.dart'; class SettingsConfigurationSonarrConnectionDetailsRouter extends SettingsPageRouter { diff --git a/lib/modules/settings/routes/configuration_sonarr/pages/default_pages.dart b/lib/modules/settings/routes/configuration_sonarr/pages/default_pages.dart index e9abe8e6..8793a93b 100644 --- a/lib/modules/settings/routes/configuration_sonarr/pages/default_pages.dart +++ b/lib/modules/settings/routes/configuration_sonarr/pages/default_pages.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/sonarr.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/sonarr.dart'; class SettingsConfigurationSonarrDefaultPagesRouter extends SettingsPageRouter { SettingsConfigurationSonarrDefaultPagesRouter() diff --git a/lib/modules/settings/routes/configuration_sonarr/pages/default_sorting.dart b/lib/modules/settings/routes/configuration_sonarr/pages/default_sorting.dart index c28673d7..ad88f46b 100644 --- a/lib/modules/settings/routes/configuration_sonarr/pages/default_sorting.dart +++ b/lib/modules/settings/routes/configuration_sonarr/pages/default_sorting.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/sonarr.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/sonarr.dart'; class SettingsConfigurationSonarrDefaultSortingRouter extends SettingsPageRouter { diff --git a/lib/modules/settings/routes/configuration_tautulli/pages/connection_details.dart b/lib/modules/settings/routes/configuration_tautulli/pages/connection_details.dart index 4fd9be78..8280c5ee 100644 --- a/lib/modules/settings/routes/configuration_tautulli/pages/connection_details.dart +++ b/lib/modules/settings/routes/configuration_tautulli/pages/connection_details.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/tautulli.dart'; class SettingsConfigurationTautulliConnectionDetailsRouter extends SettingsPageRouter { diff --git a/lib/modules/settings/routes/configuration_tautulli/pages/default_pages.dart b/lib/modules/settings/routes/configuration_tautulli/pages/default_pages.dart index dda26d7c..72e7096d 100644 --- a/lib/modules/settings/routes/configuration_tautulli/pages/default_pages.dart +++ b/lib/modules/settings/routes/configuration_tautulli/pages/default_pages.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/tautulli.dart'; class SettingsConfigurationTautulliDefaultPagesRouter extends SettingsPageRouter { diff --git a/lib/modules/settings/routes/configuration_tautulli/route.dart b/lib/modules/settings/routes/configuration_tautulli/route.dart index 4a66ea8d..278efb38 100644 --- a/lib/modules/settings/routes/configuration_tautulli/route.dart +++ b/lib/modules/settings/routes/configuration_tautulli/route.dart @@ -1,8 +1,8 @@ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/modules/settings.dart'; +import 'package:lunasea/modules/tautulli.dart'; class SettingsConfigurationTautulliRouter extends SettingsPageRouter { SettingsConfigurationTautulliRouter() diff --git a/lib/modules/sonarr/routes/queue/widgets/queue_tile.dart b/lib/modules/sonarr/routes/queue/widgets/queue_tile.dart index 2dc13fb5..4e7ebed2 100644 --- a/lib/modules/sonarr/routes/queue/widgets/queue_tile.dart +++ b/lib/modules/sonarr/routes/queue/widgets/queue_tile.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:expandable/expandable.dart'; +import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/sonarr.dart'; diff --git a/lib/modules/tautulli/core/extensions/tautulli_activity.dart b/lib/modules/tautulli/core/extensions/tautulli_activity.dart index 3b7b750b..d5ade855 100644 --- a/lib/modules/tautulli/core/extensions/tautulli_activity.dart +++ b/lib/modules/tautulli/core/extensions/tautulli_activity.dart @@ -1,5 +1,5 @@ -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; extension TautulliActivityExtension on TautulliActivity { String get lunaSessionsHeader { diff --git a/lib/modules/tautulli/core/extensions/tautulli_history_record.dart b/lib/modules/tautulli/core/extensions/tautulli_history_record.dart index ed8c8eb2..4d9e9b8c 100644 --- a/lib/modules/tautulli/core/extensions/tautulli_history_record.dart +++ b/lib/modules/tautulli/core/extensions/tautulli_history_record.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; extension TautulliHistoryRecordExtension on TautulliHistoryRecord { String get lsFullTitle => [ diff --git a/lib/modules/tautulli/core/graphs/bar_graph.dart b/lib/modules/tautulli/core/graphs/bar_graph.dart index d34e237c..742c2880 100644 --- a/lib/modules/tautulli/core/graphs/bar_graph.dart +++ b/lib/modules/tautulli/core/graphs/bar_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/core/graphs/graph.dart b/lib/modules/tautulli/core/graphs/graph.dart index 815a8f61..95b6a368 100644 --- a/lib/modules/tautulli/core/graphs/graph.dart +++ b/lib/modules/tautulli/core/graphs/graph.dart @@ -1,6 +1,6 @@ import 'dart:math'; -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/core/graphs/line_graph.dart b/lib/modules/tautulli/core/graphs/line_graph.dart index 94d5bac4..5d591ccc 100644 --- a/lib/modules/tautulli/core/graphs/line_graph.dart +++ b/lib/modules/tautulli/core/graphs/line_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/activity/widgets/activity_tile.dart b/lib/modules/tautulli/routes/activity/widgets/activity_tile.dart index b123660f..bbf1018b 100644 --- a/lib/modules/tautulli/routes/activity/widgets/activity_tile.dart +++ b/lib/modules/tautulli/routes/activity/widgets/activity_tile.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; -import 'package:percent_indicator/linear_percent_indicator.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; +import 'package:percent_indicator/linear_percent_indicator.dart'; class TautulliActivityTile extends StatelessWidget { final TautulliSession session; diff --git a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/daily_play_count_graph.dart b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/daily_play_count_graph.dart index 6b2b59fa..adfb63a7 100644 --- a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/daily_play_count_graph.dart +++ b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/daily_play_count_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_day_of_week_graph.dart b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_day_of_week_graph.dart index 3938c30e..69d028da 100644 --- a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_day_of_week_graph.dart +++ b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_day_of_week_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_platforms_graph.dart b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_platforms_graph.dart index dd2f9a13..5815f71e 100644 --- a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_platforms_graph.dart +++ b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_platforms_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_users_graph.dart b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_users_graph.dart index 074aaaf3..0df1357e 100644 --- a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_users_graph.dart +++ b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/play_count_by_top_users_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/plays_by_month_graph.dart b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/plays_by_month_graph.dart index f88e2571..70e0d90c 100644 --- a/lib/modules/tautulli/routes/graphs_play_by_period/widgets/plays_by_month_graph.dart +++ b/lib/modules/tautulli/routes/graphs_play_by_period/widgets/plays_by_month_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_stream_information/widgets/daily_stream_type_breakdown_graph.dart b/lib/modules/tautulli/routes/graphs_stream_information/widgets/daily_stream_type_breakdown_graph.dart index 2ead85a1..1c42c68d 100644 --- a/lib/modules/tautulli/routes/graphs_stream_information/widgets/daily_stream_type_breakdown_graph.dart +++ b/lib/modules/tautulli/routes/graphs_stream_information/widgets/daily_stream_type_breakdown_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_platform_stream_type_graph.dart b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_platform_stream_type_graph.dart index 5c0f7bcf..1347a0ce 100644 --- a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_platform_stream_type_graph.dart +++ b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_platform_stream_type_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_source_resolution_graph.dart b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_source_resolution_graph.dart index 2f07cbe7..6c141589 100644 --- a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_source_resolution_graph.dart +++ b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_source_resolution_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_stream_resolution_graph.dart b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_stream_resolution_graph.dart index 58e6a146..bb1890bb 100644 --- a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_stream_resolution_graph.dart +++ b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_stream_resolution_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_user_stream_type_graph.dart b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_user_stream_type_graph.dart index 313971e0..50e02454 100644 --- a/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_user_stream_type_graph.dart +++ b/lib/modules/tautulli/routes/graphs_stream_information/widgets/play_count_by_user_stream_type_graph.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/material.dart'; import 'package:lunasea/core.dart'; import 'package:lunasea/modules/tautulli.dart'; diff --git a/lib/modules/tautulli/routes/ipaddress_details/state.dart b/lib/modules/tautulli/routes/ipaddress_details/state.dart index f0cabbfc..b34b5434 100644 --- a/lib/modules/tautulli/routes/ipaddress_details/state.dart +++ b/lib/modules/tautulli/routes/ipaddress_details/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliIPAddressDetailsState extends ChangeNotifier { final String ipAddress; diff --git a/lib/modules/tautulli/routes/logs_logins/state.dart b/lib/modules/tautulli/routes/logs_logins/state.dart index dbb85d55..2f3112a1 100644 --- a/lib/modules/tautulli/routes/logs_logins/state.dart +++ b/lib/modules/tautulli/routes/logs_logins/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsLoginsState extends ChangeNotifier { TautulliLogsLoginsState(BuildContext context) { diff --git a/lib/modules/tautulli/routes/logs_newsletters/state.dart b/lib/modules/tautulli/routes/logs_newsletters/state.dart index 7d8ed016..fa39c3d6 100644 --- a/lib/modules/tautulli/routes/logs_newsletters/state.dart +++ b/lib/modules/tautulli/routes/logs_newsletters/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsNewslettersState extends ChangeNotifier { TautulliLogsNewslettersState(BuildContext context) { diff --git a/lib/modules/tautulli/routes/logs_notifications/state.dart b/lib/modules/tautulli/routes/logs_notifications/state.dart index d1a6e6fd..def70000 100644 --- a/lib/modules/tautulli/routes/logs_notifications/state.dart +++ b/lib/modules/tautulli/routes/logs_notifications/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsNotificationsState extends ChangeNotifier { TautulliLogsNotificationsState(BuildContext context) { diff --git a/lib/modules/tautulli/routes/logs_plex_media_scanner/state.dart b/lib/modules/tautulli/routes/logs_plex_media_scanner/state.dart index 7c77447f..65ea3b05 100644 --- a/lib/modules/tautulli/routes/logs_plex_media_scanner/state.dart +++ b/lib/modules/tautulli/routes/logs_plex_media_scanner/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsPlexMediaScannerState extends ChangeNotifier { TautulliLogsPlexMediaScannerState(BuildContext context) { diff --git a/lib/modules/tautulli/routes/logs_plex_media_server/state.dart b/lib/modules/tautulli/routes/logs_plex_media_server/state.dart index 8146c825..3b365a6e 100644 --- a/lib/modules/tautulli/routes/logs_plex_media_server/state.dart +++ b/lib/modules/tautulli/routes/logs_plex_media_server/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsPlexMediaServerState extends ChangeNotifier { TautulliLogsPlexMediaServerState(BuildContext context) { diff --git a/lib/modules/tautulli/routes/logs_tautulli/state.dart b/lib/modules/tautulli/routes/logs_tautulli/state.dart index 66de0883..dd852358 100644 --- a/lib/modules/tautulli/routes/logs_tautulli/state.dart +++ b/lib/modules/tautulli/routes/logs_tautulli/state.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:lunasea/modules/tautulli.dart'; import 'package:lunasea/core.dart'; +import 'package:lunasea/modules/tautulli.dart'; class TautulliLogsTautulliState extends ChangeNotifier { TautulliLogsTautulliState(BuildContext context) { diff --git a/pubspec.lock b/pubspec.lock index 0a0e9b01..bac7b250 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,14 +7,14 @@ packages: name: _fe_analyzer_shared url: "https://pub.dartlang.org" source: hosted - version: "21.0.0" + version: "22.0.0" analyzer: dependency: transitive description: name: analyzer url: "https://pub.dartlang.org" source: hosted - version: "1.5.0" + version: "1.7.0" archive: dependency: transitive description: @@ -23,33 +23,33 @@ packages: source: hosted version: "3.1.2" args: - dependency: transitive + dependency: "direct overridden" description: name: args url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.1" asn1lib: dependency: transitive description: name: asn1lib url: "https://pub.dartlang.org" source: hosted - version: "1.0.0" + version: "1.0.2" async: dependency: transitive description: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.6.0" + version: "2.7.0" badges: dependency: "direct main" description: name: badges url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "2.0.1" boolean_selector: dependency: transitive description: @@ -63,7 +63,7 @@ packages: name: build url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" build_config: dependency: transitive description: @@ -84,7 +84,7 @@ packages: name: build_resolvers url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.3" build_runner: dependency: "direct dev" description: @@ -105,14 +105,14 @@ packages: name: built_collection url: "https://pub.dartlang.org" source: hosted - version: "5.0.0" + version: "5.1.0" built_value: dependency: transitive description: name: built_value url: "https://pub.dartlang.org" source: hosted - version: "8.0.5" + version: "8.1.0" characters: dependency: transitive description: @@ -126,7 +126,7 @@ packages: name: charcode url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.3.1" checked_yaml: dependency: transitive description: @@ -140,7 +140,7 @@ packages: name: cli_util url: "https://pub.dartlang.org" source: hosted - version: "0.3.0" + version: "0.3.1" clock: dependency: transitive description: @@ -189,14 +189,14 @@ packages: name: convert url: "https://pub.dartlang.org" source: hosted - version: "3.0.0" + version: "3.0.1" coverage: dependency: "direct dev" description: name: coverage url: "https://pub.dartlang.org" source: hosted - version: "1.0.2" + version: "1.0.3" cross_file: dependency: transitive description: @@ -245,7 +245,7 @@ packages: name: effective_dart url: "https://pub.dartlang.org" source: hosted - version: "1.3.1" + version: "1.3.2" encrypt: dependency: "direct main" description: @@ -259,7 +259,7 @@ packages: name: equatable url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.3" expandable: dependency: "direct main" description: @@ -273,21 +273,21 @@ packages: name: ffi url: "https://pub.dartlang.org" source: hosted - version: "1.0.0" + version: "1.1.2" file: dependency: transitive description: name: file url: "https://pub.dartlang.org" source: hosted - version: "6.1.0" + version: "6.1.2" file_picker: dependency: "direct main" description: name: file_picker url: "https://pub.dartlang.org" source: hosted - version: "3.0.1" + version: "3.0.3" file_selector_macos: dependency: "direct main" description: @@ -315,119 +315,119 @@ packages: name: firebase_analytics url: "https://pub.dartlang.org" source: hosted - version: "8.0.3" + version: "8.1.2" firebase_analytics_platform_interface: dependency: transitive description: name: firebase_analytics_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.1" firebase_analytics_web: dependency: transitive description: name: firebase_analytics_web url: "https://pub.dartlang.org" source: hosted - version: "0.3.0" + version: "0.3.0+1" firebase_auth: dependency: "direct main" description: name: firebase_auth url: "https://pub.dartlang.org" source: hosted - version: "1.1.3" + version: "2.0.0" firebase_auth_platform_interface: dependency: transitive description: name: firebase_auth_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "4.2.1" + version: "5.0.0" firebase_auth_web: dependency: transitive description: name: firebase_auth_web url: "https://pub.dartlang.org" source: hosted - version: "1.1.1" + version: "2.0.0" firebase_core: dependency: "direct main" description: name: firebase_core url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.3.0" firebase_core_platform_interface: dependency: transitive description: name: firebase_core_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "4.0.0" + version: "4.0.1" firebase_core_web: dependency: transitive description: name: firebase_core_web url: "https://pub.dartlang.org" source: hosted - version: "1.0.2" + version: "1.1.0" firebase_crashlytics: dependency: "direct main" description: name: firebase_crashlytics url: "https://pub.dartlang.org" source: hosted - version: "2.0.2" + version: "2.0.7" firebase_crashlytics_platform_interface: dependency: transitive description: name: firebase_crashlytics_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "3.0.2" + version: "3.0.6" firebase_messaging: dependency: "direct main" description: name: firebase_messaging url: "https://pub.dartlang.org" source: hosted - version: "9.1.3" + version: "10.0.3" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.1.3" + version: "3.0.2" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web url: "https://pub.dartlang.org" source: hosted - version: "1.0.6" + version: "2.0.2" firebase_storage: dependency: "direct main" description: name: firebase_storage url: "https://pub.dartlang.org" source: hosted - version: "8.0.5" + version: "9.0.0" firebase_storage_platform_interface: dependency: transitive description: name: firebase_storage_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.3" + version: "3.0.0" firebase_storage_web: dependency: transitive description: name: firebase_storage_web url: "https://pub.dartlang.org" source: hosted - version: "1.0.5" + version: "2.0.0" fixnum: dependency: transitive description: @@ -441,7 +441,7 @@ packages: name: fl_chart url: "https://pub.dartlang.org" source: hosted - version: "0.36.0" + version: "0.36.2" flash: dependency: "direct main" description: @@ -479,14 +479,14 @@ packages: name: flutter_native_splash url: "https://pub.dartlang.org" source: hosted - version: "1.1.8+4" + version: "1.2.0" flutter_plugin_android_lifecycle: dependency: transitive description: name: flutter_plugin_android_lifecycle url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" flutter_spinkit: dependency: "direct main" description: @@ -540,7 +540,7 @@ packages: name: hive_flutter url: "https://pub.dartlang.org" source: hosted - version: "1.0.0" + version: "1.1.0" hive_generator: dependency: "direct dev" description: @@ -554,7 +554,7 @@ packages: name: http url: "https://pub.dartlang.org" source: hosted - version: "0.13.2" + version: "0.13.3" http_multi_server: dependency: transitive description: @@ -589,7 +589,7 @@ packages: name: infinite_scroll_pagination url: "https://pub.dartlang.org" source: hosted - version: "3.0.1" + version: "3.0.1+1" intl: dependency: "direct main" description: @@ -638,7 +638,7 @@ packages: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.3.0" + version: "1.4.0" mime: dependency: transitive description: @@ -673,7 +673,7 @@ packages: name: node_preamble url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.1" overseerr: dependency: "direct main" description: @@ -694,14 +694,14 @@ packages: name: package_info_plus url: "https://pub.dartlang.org" source: hosted - version: "1.0.1" + version: "1.0.3" package_info_plus_linux: dependency: transitive description: name: package_info_plus_linux url: "https://pub.dartlang.org" source: hosted - version: "1.0.1" + version: "1.0.2" package_info_plus_macos: dependency: transitive description: @@ -722,14 +722,14 @@ packages: name: package_info_plus_web url: "https://pub.dartlang.org" source: hosted - version: "1.0.1" + version: "1.0.2" package_info_plus_windows: dependency: transitive description: name: package_info_plus_windows url: "https://pub.dartlang.org" source: hosted - version: "1.0.1" + version: "1.0.2" path: dependency: transitive description: @@ -743,7 +743,7 @@ packages: name: path_provider url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" path_provider_linux: dependency: transitive description: @@ -778,7 +778,7 @@ packages: name: pedantic url: "https://pub.dartlang.org" source: hosted - version: "1.11.0" + version: "1.11.1" percent_indicator: dependency: "direct main" description: @@ -792,7 +792,7 @@ packages: name: petitparser url: "https://pub.dartlang.org" source: hosted - version: "4.1.0" + version: "4.2.0" platform: dependency: transitive description: @@ -813,7 +813,7 @@ packages: name: pointycastle url: "https://pub.dartlang.org" source: hosted - version: "3.0.1" + version: "3.1.3" pool: dependency: transitive description: @@ -855,7 +855,7 @@ packages: name: quick_actions url: "https://pub.dartlang.org" source: hosted - version: "0.6.0+1" + version: "0.6.0+2" quick_actions_platform_interface: dependency: transitive description: @@ -883,21 +883,21 @@ packages: name: share_plus url: "https://pub.dartlang.org" source: hosted - version: "2.0.3" + version: "2.1.4" share_plus_linux: dependency: transitive description: name: share_plus_linux url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.3" share_plus_macos: dependency: transitive description: name: share_plus_macos url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" share_plus_platform_interface: dependency: transitive description: @@ -911,21 +911,21 @@ packages: name: share_plus_web url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.4" share_plus_windows: dependency: transitive description: name: share_plus_windows url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.3" shared_preferences: dependency: transitive description: name: shared_preferences url: "https://pub.dartlang.org" source: hosted - version: "2.0.5" + version: "2.0.6" shared_preferences_linux: dependency: transitive description: @@ -967,7 +967,7 @@ packages: name: shelf url: "https://pub.dartlang.org" source: hosted - version: "1.1.1" + version: "1.1.4" shelf_packages_handler: dependency: transitive description: @@ -1007,7 +1007,7 @@ packages: name: sliver_tools url: "https://pub.dartlang.org" source: hosted - version: "0.2.2" + version: "0.2.5" sonarr: dependency: "direct main" description: @@ -1021,7 +1021,7 @@ packages: name: source_gen url: "https://pub.dartlang.org" source: hosted - version: "1.0.0" + version: "1.0.2" source_helper: dependency: transitive description: @@ -1098,7 +1098,7 @@ packages: name: table_calendar url: "https://pub.dartlang.org" source: hosted - version: "3.0.0" + version: "3.0.1" tautulli: dependency: "direct main" description: @@ -1119,21 +1119,21 @@ packages: name: test url: "https://pub.dartlang.org" source: hosted - version: "1.17.3" + version: "1.17.9" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.4.0" + version: "0.4.1" test_core: dependency: transitive description: name: test_core url: "https://pub.dartlang.org" source: hosted - version: "0.3.23" + version: "0.3.29" timing: dependency: transitive description: @@ -1168,7 +1168,7 @@ packages: name: url_launcher url: "https://pub.dartlang.org" source: hosted - version: "6.0.3" + version: "6.0.8" url_launcher_linux: dependency: transitive description: @@ -1189,14 +1189,14 @@ packages: name: url_launcher_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.2" + version: "2.0.3" url_launcher_web: dependency: transitive description: name: url_launcher_web url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.0.1" url_launcher_windows: dependency: transitive description: @@ -1224,7 +1224,7 @@ packages: name: vm_service url: "https://pub.dartlang.org" source: hosted - version: "6.2.0" + version: "7.1.0" wake_on_lan: dependency: "direct main" description: @@ -1245,7 +1245,7 @@ packages: name: web_socket_channel url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.0" webkit_inspection_protocol: dependency: transitive description: @@ -1259,7 +1259,7 @@ packages: name: win32 url: "https://pub.dartlang.org" source: hosted - version: "2.0.5" + version: "2.2.4" window_size: dependency: "direct main" description: @@ -1282,7 +1282,7 @@ packages: name: xml url: "https://pub.dartlang.org" source: hosted - version: "5.1.0" + version: "5.1.2" yaml: dependency: transitive description: @@ -1291,5 +1291,5 @@ packages: source: hosted version: "3.1.0" sdks: - dart: ">=2.12.0 <3.0.0" + dart: ">=2.13.0 <3.0.0" flutter: ">=2.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 433cc42a..e135522f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -8,69 +8,70 @@ environment: dependencies: flutter: sdk: flutter - badges: ^1.2.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - cloud_firestore: ^1.0.7 # ANDROID IOS MACOS WEB - convert: ^3.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - dio: ^4.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - easy_localization: ^3.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - effective_dart: ^1.3.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - encrypt: ^5.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - expandable: ^5.0.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - file_picker: ^3.0.1 # ANDROID IOS WEB - file_selector_macos: ^0.0.4 # MACOS - file_selector_platform_interface: ^2.0.2 # ANDROID IOS LINUX MACOS WEB WINDOWS - firebase_analytics: ^8.0.3 # ANDROID IOS WEB - firebase_auth: ^1.1.3 # ANDROID IOS MACOS WEB - firebase_core: ^1.1.0 # ANDROID IOS MACOS WEB - firebase_crashlytics: ^2.0.2 # ANDROID IOS MACOS - firebase_messaging: ^9.1.3 # ANDROID IOS MACOS WEB - firebase_storage: ^8.0.5 # ANDROID IOS MACOS WEB - flash: 1.5.2 # ANDROID IOS LINUX MACOS WEB WINDOWS - fluro: ^2.0.3 # ANDROID IOS LINUX MACOS WEB WINDOWS - flutter_spinkit: ^5.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - fl_chart: ^0.36.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - # font_awesome_flutter: # ANDROID IOS LINUX MACOS WEB WINDOWS - # path: vendor/font_awesome_flutter - google_nav_bar: ^5.0.5 # ANDROID IOS LINUX MACOS WEB WINDOWS - hive: ^2.0.4 # ANDROID IOS LINUX MACOS WEB WINDOWS - hive_flutter: ^1.0.0 # ANDROID IOS LINUX MACOS WINDOWS - in_app_purchase: ^0.5.2 # ANDROID IOS - infinite_scroll_pagination: ^3.0.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - intl: ^0.17.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - modal_bottom_sheet: ^2.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - overseerr: ^0.0.1-pre.5 # ANDROID IOS LINUX MACOS WEB WINDOWS - package_info_plus: ^1.0.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - path_provider: ^2.0.1 # ANDROID IOS LINUX MACOS WINDOWS - percent_indicator: ^3.0.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - provider: ^5.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - quick_actions: ^0.6.0+1 # ANDROID IOS - radarr: ^2.1.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - share_plus: ^2.0.3 # ANDROID IOS LINUX MACOS WEB WINDOWS - sonarr: ^2.0.1 # ANDROID IOS LINUX MACOS WEB WINDOWS - stack_trace: ^1.10.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - supercharged: ^2.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - table_calendar: ^3.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - tautulli: ^2.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - tuple: ^2.0.0 # ANDROID IOS LINUX MACOS WEB WINDOWS - url_launcher: ^6.0.3 # ANDROID IOS LINUX MACOS WEB WINDOWS - uuid: ^3.0.4 # ANDROID IOS LINUX MACOS WEB WINDOWS - wake_on_lan: ^2.0.1+1 # ANDROID IOS LINUX MACOS WINDOWS - window_size: # LINUX MACOS WINDOWS + badges: ^2.0.1 + cloud_firestore: ^1.0.7 + convert: ^3.0.1 + dio: ^4.0.0 + easy_localization: ^3.0.0 + effective_dart: ^1.3.2 + encrypt: ^5.0.0 + expandable: ^5.0.1 + file_picker: ^3.0.3 + file_selector_macos: ^0.0.4 + file_selector_platform_interface: ^2.0.2 + firebase_analytics: ^8.1.2 + firebase_auth: ^2.0.0 + firebase_core: ^1.3.0 + firebase_crashlytics: ^2.0.7 + firebase_messaging: ^10.0.3 + firebase_storage: ^9.0.0 + flash: 1.5.2 + fluro: ^2.0.3 + flutter_spinkit: ^5.0.0 + fl_chart: ^0.36.2 + google_nav_bar: ^5.0.5 + hive: ^2.0.4 + hive_flutter: ^1.1.0 + in_app_purchase: ^0.5.2 + infinite_scroll_pagination: ^3.0.1+1 + intl: ^0.17.0 + modal_bottom_sheet: ^2.0.0 + overseerr: ^0.0.1-pre.5 + package_info_plus: ^1.0.3 + path_provider: ^2.0.1 + percent_indicator: ^3.0.1 + provider: ^5.0.0 + quick_actions: ^0.6.0+2 + radarr: ^2.1.1 + share_plus: ^2.1.4 + sonarr: ^2.0.1 + stack_trace: ^1.10.0 + supercharged: ^2.0.0 + table_calendar: ^3.0.1 + tautulli: ^2.0.0 + tuple: ^2.0.0 + url_launcher: ^6.0.3 + uuid: ^3.0.4 + wake_on_lan: ^2.0.1+1 + window_size: git: url: git://github.com/google/flutter-desktop-embedding.git path: plugins/window_size ref: 57a2cd88486105d3d813583339eb0e23c9bfd6d2 - xml: ^5.1.0 # ANDROID IOS LINUX MACOS WEB WINDOWS + xml: ^5.1.2 dev_dependencies: build_runner: ^1.12.2 - coverage: ^1.0.2 + coverage: ^1.0.3 flutter_launcher_icons: ^0.9.0 - flutter_native_splash: ^1.1.8+4 + flutter_native_splash: ^1.2.0 hive_generator: ^1.1.0 mockito: ^5.0.7 test: ^1.17.3 +dependency_overrides: + args: ^2.1.1 + flutter: uses-material-design: true assets: diff --git a/vendor/font_awesome_flutter/.gitignore b/vendor/font_awesome_flutter/.gitignore deleted file mode 100755 index f8fded0a..00000000 --- a/vendor/font_awesome_flutter/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ -.DS_Store -.atom/ -.idea -.packages -.dart_tool/ -.pub/ -build/ -ios/.generated/ -packages -pubspec.lock -.flutter-plugins -local.properties diff --git a/vendor/font_awesome_flutter/LICENSE b/vendor/font_awesome_flutter/LICENSE deleted file mode 100644 index 95e09cf0..00000000 --- a/vendor/font_awesome_flutter/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -MIT License - -Copyright (c) 2017 Brian Egan -Font Awesome Icons by @fontawesome - https://fontawesome.com -License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/vendor/font_awesome_flutter/icons.json.gpg b/vendor/font_awesome_flutter/icons.json.gpg deleted file mode 100644 index 432cfc46..00000000 Binary files a/vendor/font_awesome_flutter/icons.json.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/font_awesome_flutter.dart b/vendor/font_awesome_flutter/lib/font_awesome_flutter.dart deleted file mode 100644 index 2cebb9a7..00000000 --- a/vendor/font_awesome_flutter/lib/font_awesome_flutter.dart +++ /dev/null @@ -1,52408 +0,0 @@ -library font_awesome_flutter; - -import 'package:flutter/widgets.dart'; -import 'package:font_awesome_flutter/src/icon_data.dart'; -export 'package:font_awesome_flutter/src/fa_icon.dart'; -export 'package:font_awesome_flutter/src/icon_data.dart'; -export 'package:font_awesome_flutter/src/fa_duotone_icon.dart'; -export 'package:font_awesome_flutter/src/fa_duotone_icon.dart'; - -// THIS FILE IS AUTOMATICALLY GENERATED! - -/// Icons based on font awesome 5.15.3 -class FontAwesomeIcons { - /// Brands 500px icon - /// - /// https://fontawesome.com/icons/500px?style=brands - static const IconData fiveHundredPx = const IconDataBrands(0xf26e); - - /// Regular Abacus icon - /// - /// https://fontawesome.com/icons/abacus?style=regular - /// addition, ancient, arithmetic, calculator, counting, hexadecimal, math, subtraction - static const IconData abacus = const IconDataRegular(0xf640); - - /// Solid Abacus icon - /// - /// https://fontawesome.com/icons/abacus?style=solid - /// addition, ancient, arithmetic, calculator, counting, hexadecimal, math, subtraction - static const IconData solidAbacus = const IconDataSolid(0xf640); - - /// Light Abacus icon - /// - /// https://fontawesome.com/icons/light_abacus?style=light - /// addition, ancient, arithmetic, calculator, counting, hexadecimal, math, subtraction - static const IconData lightAbacus = const IconDataLight(0xf640); - - /// Duotone Abacus icon - /// - /// https://fontawesome.com/icons/duotone_abacus?style=duotone - /// addition, ancient, arithmetic, calculator, counting, hexadecimal, math, subtraction - static const IconDataDuotone duotoneAbacus = const IconDataDuotone( - 0xf640, - secondary: const IconDataDuotone(0x10f640), - ); - - /// Brands Accessible Icon icon - /// - /// https://fontawesome.com/icons/accessible-icon?style=brands - /// accessibility, handicap, person, wheelchair, wheelchair-alt - static const IconData accessibleIcon = const IconDataBrands(0xf368); - - /// Brands Accusoft icon - /// - /// https://fontawesome.com/icons/accusoft?style=brands - static const IconData accusoft = const IconDataBrands(0xf369); - - /// Regular Acorn icon - /// - /// https://fontawesome.com/icons/acorn?style=regular - /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData acorn = const IconDataRegular(0xf6ae); - - /// Solid Acorn icon - /// - /// https://fontawesome.com/icons/acorn?style=solid - /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData solidAcorn = const IconDataSolid(0xf6ae); - - /// Light Acorn icon - /// - /// https://fontawesome.com/icons/light_acorn?style=light - /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconData lightAcorn = const IconDataLight(0xf6ae); - - /// Duotone Acorn icon - /// - /// https://fontawesome.com/icons/duotone_acorn?style=duotone - /// fall, nature, nut, oak, seasonal, seed, squirrel, tree - static const IconDataDuotone duotoneAcorn = const IconDataDuotone( - 0xf6ae, - secondary: const IconDataDuotone(0x10f6ae), - ); - - /// Brands Acquisitions Incorporated icon - /// - /// https://fontawesome.com/icons/acquisitions-incorporated?style=brands - /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, tabletop - static const IconData acquisitionsIncorporated = const IconDataBrands(0xf6af); - - /// Regular Ad icon - /// - /// https://fontawesome.com/icons/ad?style=regular - /// advertisement, media, newspaper, promotion, publicity - static const IconData ad = const IconDataRegular(0xf641); - - /// Solid Ad icon - /// - /// https://fontawesome.com/icons/ad?style=solid - /// advertisement, media, newspaper, promotion, publicity - static const IconData solidAd = const IconDataSolid(0xf641); - - /// Light Ad icon - /// - /// https://fontawesome.com/icons/light_ad?style=light - /// advertisement, media, newspaper, promotion, publicity - static const IconData lightAd = const IconDataLight(0xf641); - - /// Duotone Ad icon - /// - /// https://fontawesome.com/icons/duotone_ad?style=duotone - /// advertisement, media, newspaper, promotion, publicity - static const IconDataDuotone duotoneAd = const IconDataDuotone( - 0xf641, - secondary: const IconDataDuotone(0x10f641), - ); - - /// Regular Address Book icon - /// - /// https://fontawesome.com/icons/address-book?style=regular - /// contact, directory, index, little black book, rolodex - static const IconData addressBook = const IconDataRegular(0xf2b9); - - /// Solid Address Book icon - /// - /// https://fontawesome.com/icons/address-book?style=solid - /// contact, directory, index, little black book, rolodex - static const IconData solidAddressBook = const IconDataSolid(0xf2b9); - - /// Light Address Book icon - /// - /// https://fontawesome.com/icons/light_address-book?style=light - /// contact, directory, index, little black book, rolodex - static const IconData lightAddressBook = const IconDataLight(0xf2b9); - - /// Duotone Address Book icon - /// - /// https://fontawesome.com/icons/duotone_address-book?style=duotone - /// contact, directory, index, little black book, rolodex - static const IconDataDuotone duotoneAddressBook = const IconDataDuotone( - 0xf2b9, - secondary: const IconDataDuotone(0x10f2b9), - ); - - /// Regular Address Card icon - /// - /// https://fontawesome.com/icons/address-card?style=regular - /// about, contact, id, identification, postcard, profile - static const IconData addressCard = const IconDataRegular(0xf2bb); - - /// Solid Address Card icon - /// - /// https://fontawesome.com/icons/address-card?style=solid - /// about, contact, id, identification, postcard, profile - static const IconData solidAddressCard = const IconDataSolid(0xf2bb); - - /// Light Address Card icon - /// - /// https://fontawesome.com/icons/light_address-card?style=light - /// about, contact, id, identification, postcard, profile - static const IconData lightAddressCard = const IconDataLight(0xf2bb); - - /// Duotone Address Card icon - /// - /// https://fontawesome.com/icons/duotone_address-card?style=duotone - /// about, contact, id, identification, postcard, profile - static const IconDataDuotone duotoneAddressCard = const IconDataDuotone( - 0xf2bb, - secondary: const IconDataDuotone(0x10f2bb), - ); - - /// Regular adjust icon - /// - /// https://fontawesome.com/icons/adjust?style=regular - /// contrast, dark, light, saturation - static const IconData adjust = const IconDataRegular(0xf042); - - /// Solid adjust icon - /// - /// https://fontawesome.com/icons/adjust?style=solid - /// contrast, dark, light, saturation - static const IconData solidAdjust = const IconDataSolid(0xf042); - - /// Light adjust icon - /// - /// https://fontawesome.com/icons/light_adjust?style=light - /// contrast, dark, light, saturation - static const IconData lightAdjust = const IconDataLight(0xf042); - - /// Duotone adjust icon - /// - /// https://fontawesome.com/icons/duotone_adjust?style=duotone - /// contrast, dark, light, saturation - static const IconDataDuotone duotoneAdjust = const IconDataDuotone( - 0xf042, - secondary: const IconDataDuotone(0x10f042), - ); - - /// Brands App.net icon - /// - /// https://fontawesome.com/icons/adn?style=brands - static const IconData adn = const IconDataBrands(0xf170); - - /// Brands Adversal icon - /// - /// https://fontawesome.com/icons/adversal?style=brands - static const IconData adversal = const IconDataBrands(0xf36a); - - /// Brands affiliatetheme icon - /// - /// https://fontawesome.com/icons/affiliatetheme?style=brands - static const IconData affiliatetheme = const IconDataBrands(0xf36b); - - /// 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 = const IconDataRegular(0xf8f4); - - /// 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 = const IconDataSolid(0xf8f4); - - /// Light Air Conditioner icon - /// - /// https://fontawesome.com/icons/light_air-conditioner?style=light - /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconData lightAirConditioner = const IconDataLight(0xf8f4); - - /// Duotone Air Conditioner icon - /// - /// https://fontawesome.com/icons/duotone_air-conditioner?style=duotone - /// ac, cool, heat, heat pump, hvac, mini-split, temperature, unit - static const IconDataDuotone duotoneAirConditioner = const IconDataDuotone( - 0xf8f4, - secondary: const IconDataDuotone(0x10f8f4), - ); - - /// Regular Air Freshener icon - /// - /// https://fontawesome.com/icons/air-freshener?style=regular - /// car, deodorize, fresh, pine, scent - static const IconData airFreshener = const IconDataRegular(0xf5d0); - - /// Solid Air Freshener icon - /// - /// https://fontawesome.com/icons/air-freshener?style=solid - /// car, deodorize, fresh, pine, scent - static const IconData solidAirFreshener = const IconDataSolid(0xf5d0); - - /// Light Air Freshener icon - /// - /// https://fontawesome.com/icons/light_air-freshener?style=light - /// car, deodorize, fresh, pine, scent - static const IconData lightAirFreshener = const IconDataLight(0xf5d0); - - /// Duotone Air Freshener icon - /// - /// https://fontawesome.com/icons/duotone_air-freshener?style=duotone - /// car, deodorize, fresh, pine, scent - static const IconDataDuotone duotoneAirFreshener = const IconDataDuotone( - 0xf5d0, - secondary: const IconDataDuotone(0x10f5d0), - ); - - /// Brands Airbnb icon - /// - /// https://fontawesome.com/icons/airbnb?style=brands - static const IconData airbnb = const IconDataBrands(0xf834); - - /// Regular Alarm Clock icon - /// - /// https://fontawesome.com/icons/alarm-clock?style=regular - /// date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmClock = const IconDataRegular(0xf34e); - - /// Solid Alarm Clock icon - /// - /// https://fontawesome.com/icons/alarm-clock?style=solid - /// date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmClock = const IconDataSolid(0xf34e); - - /// Light Alarm Clock icon - /// - /// https://fontawesome.com/icons/light_alarm-clock?style=light - /// date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmClock = const IconDataLight(0xf34e); - - /// Duotone Alarm Clock icon - /// - /// https://fontawesome.com/icons/duotone_alarm-clock?style=duotone - /// date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconDataDuotone duotoneAlarmClock = const IconDataDuotone( - 0xf34e, - secondary: const IconDataDuotone(0x10f34e), - ); - - /// Regular Alarm Exclamation icon - /// - /// https://fontawesome.com/icons/alarm-exclamation?style=regular - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData alarmExclamation = const IconDataRegular(0xf843); - - /// Solid Alarm Exclamation icon - /// - /// https://fontawesome.com/icons/alarm-exclamation?style=solid - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData solidAlarmExclamation = const IconDataSolid(0xf843); - - /// Light Alarm Exclamation icon - /// - /// https://fontawesome.com/icons/light_alarm-exclamation?style=light - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmExclamation = const IconDataLight(0xf843); - - /// Duotone Alarm Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_alarm-exclamation?style=duotone - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconDataDuotone duotoneAlarmExclamation = const IconDataDuotone( - 0xf843, - secondary: const IconDataDuotone(0x10f843), - ); - - /// 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 = const IconDataRegular(0xf844); - - /// 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 = const IconDataSolid(0xf844); - - /// Light Alarm Plus icon - /// - /// https://fontawesome.com/icons/light_alarm-plus?style=light - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmPlus = const IconDataLight(0xf844); - - /// Duotone Alarm Plus icon - /// - /// https://fontawesome.com/icons/duotone_alarm-plus?style=duotone - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconDataDuotone duotoneAlarmPlus = const IconDataDuotone( - 0xf844, - secondary: const IconDataDuotone(0x10f844), - ); - - /// 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 = const IconDataRegular(0xf845); - - /// 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 = const IconDataSolid(0xf845); - - /// Light Alarm Snooze icon - /// - /// https://fontawesome.com/icons/light_alarm-snooze?style=light - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconData lightAlarmSnooze = const IconDataLight(0xf845); - - /// Duotone Alarm Snooze icon - /// - /// https://fontawesome.com/icons/duotone_alarm-snooze?style=duotone - /// alert, date, late, reminder, sleep, snooze, timer, timestamp, watch - static const IconDataDuotone duotoneAlarmSnooze = const IconDataDuotone( - 0xf845, - secondary: const IconDataDuotone(0x10f845), - ); - - /// Regular Album icon - /// - /// https://fontawesome.com/icons/album?style=regular - /// library, music, record, song, vinyl - static const IconData album = const IconDataRegular(0xf89f); - - /// Solid Album icon - /// - /// https://fontawesome.com/icons/album?style=solid - /// library, music, record, song, vinyl - static const IconData solidAlbum = const IconDataSolid(0xf89f); - - /// Light Album icon - /// - /// https://fontawesome.com/icons/light_album?style=light - /// library, music, record, song, vinyl - static const IconData lightAlbum = const IconDataLight(0xf89f); - - /// Duotone Album icon - /// - /// https://fontawesome.com/icons/duotone_album?style=duotone - /// library, music, record, song, vinyl - static const IconDataDuotone duotoneAlbum = const IconDataDuotone( - 0xf89f, - secondary: const IconDataDuotone(0x10f89f), - ); - - /// Regular Album Collection icon - /// - /// https://fontawesome.com/icons/album-collection?style=regular - /// catalog, library, music, record, song, vinyl - static const IconData albumCollection = const IconDataRegular(0xf8a0); - - /// Solid Album Collection icon - /// - /// https://fontawesome.com/icons/album-collection?style=solid - /// catalog, library, music, record, song, vinyl - static const IconData solidAlbumCollection = const IconDataSolid(0xf8a0); - - /// Light Album Collection icon - /// - /// https://fontawesome.com/icons/light_album-collection?style=light - /// catalog, library, music, record, song, vinyl - static const IconData lightAlbumCollection = const IconDataLight(0xf8a0); - - /// Duotone Album Collection icon - /// - /// https://fontawesome.com/icons/duotone_album-collection?style=duotone - /// catalog, library, music, record, song, vinyl - static const IconDataDuotone duotoneAlbumCollection = const IconDataDuotone( - 0xf8a0, - secondary: const IconDataDuotone(0x10f8a0), - ); - - /// Brands Algolia icon - /// - /// https://fontawesome.com/icons/algolia?style=brands - static const IconData algolia = const IconDataBrands(0xf36c); - - /// Regular Alicorn icon - /// - /// https://fontawesome.com/icons/alicorn?style=regular - /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData alicorn = const IconDataRegular(0xf6b0); - - /// Solid Alicorn icon - /// - /// https://fontawesome.com/icons/alicorn?style=solid - /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData solidAlicorn = const IconDataSolid(0xf6b0); - - /// Light Alicorn icon - /// - /// https://fontawesome.com/icons/light_alicorn?style=light - /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconData lightAlicorn = const IconDataLight(0xf6b0); - - /// Duotone Alicorn icon - /// - /// https://fontawesome.com/icons/duotone_alicorn?style=duotone - /// animal, fantasy, fauna, horse, mammal, pegasus, unicorn, wing - static const IconDataDuotone duotoneAlicorn = const IconDataDuotone( - 0xf6b0, - secondary: const IconDataDuotone(0x10f6b0), - ); - - /// Regular Alien icon - /// - /// https://fontawesome.com/icons/alien?style=regular - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData alien = const IconDataRegular(0xf8f5); - - /// Solid Alien icon - /// - /// https://fontawesome.com/icons/alien?style=solid - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData solidAlien = const IconDataSolid(0xf8f5); - - /// Light Alien icon - /// - /// https://fontawesome.com/icons/light_alien?style=light - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData lightAlien = const IconDataLight(0xf8f5); - - /// Duotone Alien icon - /// - /// https://fontawesome.com/icons/duotone_alien?style=duotone - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconDataDuotone duotoneAlien = const IconDataDuotone( - 0xf8f5, - secondary: const IconDataDuotone(0x10f8f5), - ); - - /// Regular Alien Monster icon - /// - /// https://fontawesome.com/icons/alien-monster?style=regular - /// ET, extraterrestrial, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData alienMonster = const IconDataRegular(0xf8f6); - - /// Solid Alien Monster icon - /// - /// https://fontawesome.com/icons/alien-monster?style=solid - /// ET, extraterrestrial, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData solidAlienMonster = const IconDataSolid(0xf8f6); - - /// Light Alien Monster icon - /// - /// https://fontawesome.com/icons/light_alien-monster?style=light - /// ET, extraterrestrial, humanoid, monster, space, space invader, strange, ufo, video game - static const IconData lightAlienMonster = const IconDataLight(0xf8f6); - - /// Duotone Alien Monster icon - /// - /// https://fontawesome.com/icons/duotone_alien-monster?style=duotone - /// ET, extraterrestrial, humanoid, monster, space, space invader, strange, ufo, video game - static const IconDataDuotone duotoneAlienMonster = const IconDataDuotone( - 0xf8f6, - secondary: const IconDataDuotone(0x10f8f6), - ); - - /// Regular align-center icon - /// - /// https://fontawesome.com/icons/align-center?style=regular - /// format, middle, paragraph, text - static const IconData alignCenter = const IconDataRegular(0xf037); - - /// Solid align-center icon - /// - /// https://fontawesome.com/icons/align-center?style=solid - /// format, middle, paragraph, text - static const IconData solidAlignCenter = const IconDataSolid(0xf037); - - /// Light align-center icon - /// - /// https://fontawesome.com/icons/light_align-center?style=light - /// format, middle, paragraph, text - static const IconData lightAlignCenter = const IconDataLight(0xf037); - - /// Duotone align-center icon - /// - /// https://fontawesome.com/icons/duotone_align-center?style=duotone - /// format, middle, paragraph, text - static const IconDataDuotone duotoneAlignCenter = const IconDataDuotone( - 0xf037, - secondary: const IconDataDuotone(0x10f037), - ); - - /// Regular align-justify icon - /// - /// https://fontawesome.com/icons/align-justify?style=regular - /// format, paragraph, text - static const IconData alignJustify = const IconDataRegular(0xf039); - - /// Solid align-justify icon - /// - /// https://fontawesome.com/icons/align-justify?style=solid - /// format, paragraph, text - static const IconData solidAlignJustify = const IconDataSolid(0xf039); - - /// Light align-justify icon - /// - /// https://fontawesome.com/icons/light_align-justify?style=light - /// format, paragraph, text - static const IconData lightAlignJustify = const IconDataLight(0xf039); - - /// Duotone align-justify icon - /// - /// https://fontawesome.com/icons/duotone_align-justify?style=duotone - /// format, paragraph, text - static const IconDataDuotone duotoneAlignJustify = const IconDataDuotone( - 0xf039, - secondary: const IconDataDuotone(0x10f039), - ); - - /// Regular align-left icon - /// - /// https://fontawesome.com/icons/align-left?style=regular - /// format, paragraph, text - static const IconData alignLeft = const IconDataRegular(0xf036); - - /// Solid align-left icon - /// - /// https://fontawesome.com/icons/align-left?style=solid - /// format, paragraph, text - static const IconData solidAlignLeft = const IconDataSolid(0xf036); - - /// Light align-left icon - /// - /// https://fontawesome.com/icons/light_align-left?style=light - /// format, paragraph, text - static const IconData lightAlignLeft = const IconDataLight(0xf036); - - /// Duotone align-left icon - /// - /// https://fontawesome.com/icons/duotone_align-left?style=duotone - /// format, paragraph, text - static const IconDataDuotone duotoneAlignLeft = const IconDataDuotone( - 0xf036, - secondary: const IconDataDuotone(0x10f036), - ); - - /// Regular align-right icon - /// - /// https://fontawesome.com/icons/align-right?style=regular - /// format, paragraph, text - static const IconData alignRight = const IconDataRegular(0xf038); - - /// Solid align-right icon - /// - /// https://fontawesome.com/icons/align-right?style=solid - /// format, paragraph, text - static const IconData solidAlignRight = const IconDataSolid(0xf038); - - /// Light align-right icon - /// - /// https://fontawesome.com/icons/light_align-right?style=light - /// format, paragraph, text - static const IconData lightAlignRight = const IconDataLight(0xf038); - - /// Duotone align-right icon - /// - /// https://fontawesome.com/icons/duotone_align-right?style=duotone - /// format, paragraph, text - static const IconDataDuotone duotoneAlignRight = const IconDataDuotone( - 0xf038, - secondary: const IconDataDuotone(0x10f038), - ); - - /// Regular Align Slash icon - /// - /// https://fontawesome.com/icons/align-slash?style=regular - /// cancel, format, paragraph, remove - static const IconData alignSlash = const IconDataRegular(0xf846); - - /// Solid Align Slash icon - /// - /// https://fontawesome.com/icons/align-slash?style=solid - /// cancel, format, paragraph, remove - static const IconData solidAlignSlash = const IconDataSolid(0xf846); - - /// Light Align Slash icon - /// - /// https://fontawesome.com/icons/light_align-slash?style=light - /// cancel, format, paragraph, remove - static const IconData lightAlignSlash = const IconDataLight(0xf846); - - /// Duotone Align Slash icon - /// - /// https://fontawesome.com/icons/duotone_align-slash?style=duotone - /// cancel, format, paragraph, remove - static const IconDataDuotone duotoneAlignSlash = const IconDataDuotone( - 0xf846, - secondary: const IconDataDuotone(0x10f846), - ); - - /// Brands Alipay icon - /// - /// https://fontawesome.com/icons/alipay?style=brands - static const IconData alipay = const IconDataBrands(0xf642); - - /// Regular Allergies icon - /// - /// https://fontawesome.com/icons/allergies?style=regular - /// allergy, freckles, hand, hives, pox, skin, spots - static const IconData allergies = const IconDataRegular(0xf461); - - /// Solid Allergies icon - /// - /// https://fontawesome.com/icons/allergies?style=solid - /// allergy, freckles, hand, hives, pox, skin, spots - static const IconData solidAllergies = const IconDataSolid(0xf461); - - /// Light Allergies icon - /// - /// https://fontawesome.com/icons/light_allergies?style=light - /// allergy, freckles, hand, hives, pox, skin, spots - static const IconData lightAllergies = const IconDataLight(0xf461); - - /// Duotone Allergies icon - /// - /// https://fontawesome.com/icons/duotone_allergies?style=duotone - /// allergy, freckles, hand, hives, pox, skin, spots - static const IconDataDuotone duotoneAllergies = const IconDataDuotone( - 0xf461, - secondary: const IconDataDuotone(0x10f461), - ); - - /// Brands Amazon icon - /// - /// https://fontawesome.com/icons/amazon?style=brands - static const IconData amazon = const IconDataBrands(0xf270); - - /// Brands Amazon Pay icon - /// - /// https://fontawesome.com/icons/amazon-pay?style=brands - static const IconData amazonPay = const IconDataBrands(0xf42c); - - /// Regular ambulance icon - /// - /// https://fontawesome.com/icons/ambulance?style=regular - /// covid-19, emergency, emt, er, help, hospital, support, vehicle - static const IconData ambulance = const IconDataRegular(0xf0f9); - - /// Solid ambulance icon - /// - /// https://fontawesome.com/icons/ambulance?style=solid - /// covid-19, emergency, emt, er, help, hospital, support, vehicle - static const IconData solidAmbulance = const IconDataSolid(0xf0f9); - - /// Light ambulance icon - /// - /// https://fontawesome.com/icons/light_ambulance?style=light - /// covid-19, emergency, emt, er, help, hospital, support, vehicle - static const IconData lightAmbulance = const IconDataLight(0xf0f9); - - /// Duotone ambulance icon - /// - /// https://fontawesome.com/icons/duotone_ambulance?style=duotone - /// covid-19, emergency, emt, er, help, hospital, support, vehicle - static const IconDataDuotone duotoneAmbulance = const IconDataDuotone( - 0xf0f9, - secondary: const IconDataDuotone(0x10f0f9), - ); - - /// Regular American Sign Language Interpreting icon - /// - /// https://fontawesome.com/icons/american-sign-language-interpreting?style=regular - /// asl, deaf, finger, hand, interpret, speak - static const IconData americanSignLanguageInterpreting = - const IconDataRegular(0xf2a3); - - /// Solid American Sign Language Interpreting icon - /// - /// https://fontawesome.com/icons/american-sign-language-interpreting?style=solid - /// asl, deaf, finger, hand, interpret, speak - static const IconData solidAmericanSignLanguageInterpreting = - const IconDataSolid(0xf2a3); - - /// Light American Sign Language Interpreting icon - /// - /// https://fontawesome.com/icons/light_american-sign-language-interpreting?style=light - /// asl, deaf, finger, hand, interpret, speak - static const IconData lightAmericanSignLanguageInterpreting = - const IconDataLight(0xf2a3); - - /// Duotone American Sign Language Interpreting icon - /// - /// https://fontawesome.com/icons/duotone_american-sign-language-interpreting?style=duotone - /// asl, deaf, finger, hand, interpret, speak - static const IconDataDuotone duotoneAmericanSignLanguageInterpreting = - const IconDataDuotone( - 0xf2a3, - secondary: const IconDataDuotone(0x10f2a3), - ); - - /// Brands Amilia icon - /// - /// https://fontawesome.com/icons/amilia?style=brands - static const IconData amilia = const IconDataBrands(0xf36d); - - /// Regular Guitar Amplifier icon - /// - /// https://fontawesome.com/icons/amp-guitar?style=regular - /// audio, guitar, loudspeaker, music, pa, volume - static const IconData ampGuitar = const IconDataRegular(0xf8a1); - - /// Light Guitar Amplifier icon - /// - /// https://fontawesome.com/icons/light_amp-guitar?style=light - /// audio, guitar, loudspeaker, music, pa, volume - static const IconData lightAmpGuitar = const IconDataLight(0xf8a1); - - /// Solid Guitar Amplifier icon - /// - /// https://fontawesome.com/icons/amp-guitar?style=solid - /// audio, guitar, loudspeaker, music, pa, volume - static const IconData solidAmpGuitar = const IconDataSolid(0xf8a1); - - /// Duotone Guitar Amplifier icon - /// - /// https://fontawesome.com/icons/duotone_amp-guitar?style=duotone - /// audio, guitar, loudspeaker, music, pa, volume - static const IconDataDuotone duotoneAmpGuitar = const IconDataDuotone( - 0xf8a1, - secondary: const IconDataDuotone(0x10f8a1), - ); - - /// Regular Analytics icon - /// - /// https://fontawesome.com/icons/analytics?style=regular - /// chart, measure, roi, tracking, trend - static const IconData analytics = const IconDataRegular(0xf643); - - /// Solid Analytics icon - /// - /// https://fontawesome.com/icons/analytics?style=solid - /// chart, measure, roi, tracking, trend - static const IconData solidAnalytics = const IconDataSolid(0xf643); - - /// Light Analytics icon - /// - /// https://fontawesome.com/icons/light_analytics?style=light - /// chart, measure, roi, tracking, trend - static const IconData lightAnalytics = const IconDataLight(0xf643); - - /// Duotone Analytics icon - /// - /// https://fontawesome.com/icons/duotone_analytics?style=duotone - /// chart, measure, roi, tracking, trend - static const IconDataDuotone duotoneAnalytics = const IconDataDuotone( - 0xf643, - secondary: const IconDataDuotone(0x10f643), - ); - - /// Regular Anchor icon - /// - /// https://fontawesome.com/icons/anchor?style=regular - /// berth, boat, dock, embed, link, maritime, moor, secure - static const IconData anchor = const IconDataRegular(0xf13d); - - /// Solid Anchor icon - /// - /// https://fontawesome.com/icons/anchor?style=solid - /// berth, boat, dock, embed, link, maritime, moor, secure - static const IconData solidAnchor = const IconDataSolid(0xf13d); - - /// Light Anchor icon - /// - /// https://fontawesome.com/icons/light_anchor?style=light - /// berth, boat, dock, embed, link, maritime, moor, secure - static const IconData lightAnchor = const IconDataLight(0xf13d); - - /// Duotone Anchor icon - /// - /// https://fontawesome.com/icons/duotone_anchor?style=duotone - /// berth, boat, dock, embed, link, maritime, moor, secure - static const IconDataDuotone duotoneAnchor = const IconDataDuotone( - 0xf13d, - secondary: const IconDataDuotone(0x10f13d), - ); - - /// Brands Android icon - /// - /// https://fontawesome.com/icons/android?style=brands - /// robot - static const IconData android = const IconDataBrands(0xf17b); - - /// Regular Angel icon - /// - /// https://fontawesome.com/icons/angel?style=regular - /// christmas, decoration, halo, holiday, holy, michael landon, wings, xmas - static const IconData angel = const IconDataRegular(0xf779); - - /// Solid Angel icon - /// - /// https://fontawesome.com/icons/angel?style=solid - /// christmas, decoration, halo, holiday, holy, michael landon, wings, xmas - static const IconData solidAngel = const IconDataSolid(0xf779); - - /// Light Angel icon - /// - /// https://fontawesome.com/icons/light_angel?style=light - /// christmas, decoration, halo, holiday, holy, michael landon, wings, xmas - static const IconData lightAngel = const IconDataLight(0xf779); - - /// Duotone Angel icon - /// - /// https://fontawesome.com/icons/duotone_angel?style=duotone - /// christmas, decoration, halo, holiday, holy, michael landon, wings, xmas - static const IconDataDuotone duotoneAngel = const IconDataDuotone( - 0xf779, - secondary: const IconDataDuotone(0x10f779), - ); - - /// Brands AngelList icon - /// - /// https://fontawesome.com/icons/angellist?style=brands - static const IconData angellist = const IconDataBrands(0xf209); - - /// Regular Angle Double Down icon - /// - /// https://fontawesome.com/icons/angle-double-down?style=regular - /// arrows, caret, download, expand - static const IconData angleDoubleDown = const IconDataRegular(0xf103); - - /// Solid Angle Double Down icon - /// - /// https://fontawesome.com/icons/angle-double-down?style=solid - /// arrows, caret, download, expand - static const IconData solidAngleDoubleDown = const IconDataSolid(0xf103); - - /// Light Angle Double Down icon - /// - /// https://fontawesome.com/icons/light_angle-double-down?style=light - /// arrows, caret, download, expand - static const IconData lightAngleDoubleDown = const IconDataLight(0xf103); - - /// Duotone Angle Double Down icon - /// - /// https://fontawesome.com/icons/duotone_angle-double-down?style=duotone - /// arrows, caret, download, expand - static const IconDataDuotone duotoneAngleDoubleDown = const IconDataDuotone( - 0xf103, - secondary: const IconDataDuotone(0x10f103), - ); - - /// Regular Angle Double Left icon - /// - /// https://fontawesome.com/icons/angle-double-left?style=regular - /// arrows, back, caret, laquo, previous, quote - static const IconData angleDoubleLeft = const IconDataRegular(0xf100); - - /// Solid Angle Double Left icon - /// - /// https://fontawesome.com/icons/angle-double-left?style=solid - /// arrows, back, caret, laquo, previous, quote - static const IconData solidAngleDoubleLeft = const IconDataSolid(0xf100); - - /// Light Angle Double Left icon - /// - /// https://fontawesome.com/icons/light_angle-double-left?style=light - /// arrows, back, caret, laquo, previous, quote - static const IconData lightAngleDoubleLeft = const IconDataLight(0xf100); - - /// Duotone Angle Double Left icon - /// - /// https://fontawesome.com/icons/duotone_angle-double-left?style=duotone - /// arrows, back, caret, laquo, previous, quote - static const IconDataDuotone duotoneAngleDoubleLeft = const IconDataDuotone( - 0xf100, - secondary: const IconDataDuotone(0x10f100), - ); - - /// Regular Angle Double Right icon - /// - /// https://fontawesome.com/icons/angle-double-right?style=regular - /// arrows, caret, forward, more, next, quote, raquo - static const IconData angleDoubleRight = const IconDataRegular(0xf101); - - /// Solid Angle Double Right icon - /// - /// https://fontawesome.com/icons/angle-double-right?style=solid - /// arrows, caret, forward, more, next, quote, raquo - static const IconData solidAngleDoubleRight = const IconDataSolid(0xf101); - - /// Light Angle Double Right icon - /// - /// https://fontawesome.com/icons/light_angle-double-right?style=light - /// arrows, caret, forward, more, next, quote, raquo - static const IconData lightAngleDoubleRight = const IconDataLight(0xf101); - - /// Duotone Angle Double Right icon - /// - /// https://fontawesome.com/icons/duotone_angle-double-right?style=duotone - /// arrows, caret, forward, more, next, quote, raquo - static const IconDataDuotone duotoneAngleDoubleRight = const IconDataDuotone( - 0xf101, - secondary: const IconDataDuotone(0x10f101), - ); - - /// Regular Angle Double Up icon - /// - /// https://fontawesome.com/icons/angle-double-up?style=regular - /// arrows, caret, collapse, upload - static const IconData angleDoubleUp = const IconDataRegular(0xf102); - - /// Solid Angle Double Up icon - /// - /// https://fontawesome.com/icons/angle-double-up?style=solid - /// arrows, caret, collapse, upload - static const IconData solidAngleDoubleUp = const IconDataSolid(0xf102); - - /// Light Angle Double Up icon - /// - /// https://fontawesome.com/icons/light_angle-double-up?style=light - /// arrows, caret, collapse, upload - static const IconData lightAngleDoubleUp = const IconDataLight(0xf102); - - /// Duotone Angle Double Up icon - /// - /// https://fontawesome.com/icons/duotone_angle-double-up?style=duotone - /// arrows, caret, collapse, upload - static const IconDataDuotone duotoneAngleDoubleUp = const IconDataDuotone( - 0xf102, - secondary: const IconDataDuotone(0x10f102), - ); - - /// Regular angle-down icon - /// - /// https://fontawesome.com/icons/angle-down?style=regular - /// arrow, caret, download, expand - static const IconData angleDown = const IconDataRegular(0xf107); - - /// Solid angle-down icon - /// - /// https://fontawesome.com/icons/angle-down?style=solid - /// arrow, caret, download, expand - static const IconData solidAngleDown = const IconDataSolid(0xf107); - - /// Light angle-down icon - /// - /// https://fontawesome.com/icons/light_angle-down?style=light - /// arrow, caret, download, expand - static const IconData lightAngleDown = const IconDataLight(0xf107); - - /// Duotone angle-down icon - /// - /// https://fontawesome.com/icons/duotone_angle-down?style=duotone - /// arrow, caret, download, expand - static const IconDataDuotone duotoneAngleDown = const IconDataDuotone( - 0xf107, - secondary: const IconDataDuotone(0x10f107), - ); - - /// Regular angle-left icon - /// - /// https://fontawesome.com/icons/angle-left?style=regular - /// arrow, back, caret, less, previous - static const IconData angleLeft = const IconDataRegular(0xf104); - - /// Solid angle-left icon - /// - /// https://fontawesome.com/icons/angle-left?style=solid - /// arrow, back, caret, less, previous - static const IconData solidAngleLeft = const IconDataSolid(0xf104); - - /// Light angle-left icon - /// - /// https://fontawesome.com/icons/light_angle-left?style=light - /// arrow, back, caret, less, previous - static const IconData lightAngleLeft = const IconDataLight(0xf104); - - /// Duotone angle-left icon - /// - /// https://fontawesome.com/icons/duotone_angle-left?style=duotone - /// arrow, back, caret, less, previous - static const IconDataDuotone duotoneAngleLeft = const IconDataDuotone( - 0xf104, - secondary: const IconDataDuotone(0x10f104), - ); - - /// Regular angle-right icon - /// - /// https://fontawesome.com/icons/angle-right?style=regular - /// arrow, care, forward, more, next - static const IconData angleRight = const IconDataRegular(0xf105); - - /// Solid angle-right icon - /// - /// https://fontawesome.com/icons/angle-right?style=solid - /// arrow, care, forward, more, next - static const IconData solidAngleRight = const IconDataSolid(0xf105); - - /// Light angle-right icon - /// - /// https://fontawesome.com/icons/light_angle-right?style=light - /// arrow, care, forward, more, next - static const IconData lightAngleRight = const IconDataLight(0xf105); - - /// Duotone angle-right icon - /// - /// https://fontawesome.com/icons/duotone_angle-right?style=duotone - /// arrow, care, forward, more, next - static const IconDataDuotone duotoneAngleRight = const IconDataDuotone( - 0xf105, - secondary: const IconDataDuotone(0x10f105), - ); - - /// Regular angle-up icon - /// - /// https://fontawesome.com/icons/angle-up?style=regular - /// arrow, caret, collapse, upload - static const IconData angleUp = const IconDataRegular(0xf106); - - /// Solid angle-up icon - /// - /// https://fontawesome.com/icons/angle-up?style=solid - /// arrow, caret, collapse, upload - static const IconData solidAngleUp = const IconDataSolid(0xf106); - - /// Light angle-up icon - /// - /// https://fontawesome.com/icons/light_angle-up?style=light - /// arrow, caret, collapse, upload - static const IconData lightAngleUp = const IconDataLight(0xf106); - - /// Duotone angle-up icon - /// - /// https://fontawesome.com/icons/duotone_angle-up?style=duotone - /// arrow, caret, collapse, upload - static const IconDataDuotone duotoneAngleUp = const IconDataDuotone( - 0xf106, - secondary: const IconDataDuotone(0x10f106), - ); - - /// Regular Angry Face icon - /// - /// https://fontawesome.com/icons/angry?style=regular - /// disapprove, emoticon, face, mad, upset - static const IconData angry = const IconDataRegular(0xf556); - - /// Solid Angry Face icon - /// - /// https://fontawesome.com/icons/angry?style=solid - /// disapprove, emoticon, face, mad, upset - static const IconData solidAngry = const IconDataSolid(0xf556); - - /// Light Angry Face icon - /// - /// https://fontawesome.com/icons/light_angry?style=light - /// disapprove, emoticon, face, mad, upset - static const IconData lightAngry = const IconDataLight(0xf556); - - /// Duotone Angry Face icon - /// - /// https://fontawesome.com/icons/duotone_angry?style=duotone - /// disapprove, emoticon, face, mad, upset - static const IconDataDuotone duotoneAngry = const IconDataDuotone( - 0xf556, - secondary: const IconDataDuotone(0x10f556), - ); - - /// Brands Angry Creative icon - /// - /// https://fontawesome.com/icons/angrycreative?style=brands - static const IconData angrycreative = const IconDataBrands(0xf36e); - - /// Brands Angular icon - /// - /// https://fontawesome.com/icons/angular?style=brands - static const IconData angular = const IconDataBrands(0xf420); - - /// Regular Ankh icon - /// - /// https://fontawesome.com/icons/ankh?style=regular - /// amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData ankh = const IconDataRegular(0xf644); - - /// Solid Ankh icon - /// - /// https://fontawesome.com/icons/ankh?style=solid - /// amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData solidAnkh = const IconDataSolid(0xf644); - - /// Light Ankh icon - /// - /// https://fontawesome.com/icons/light_ankh?style=light - /// amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconData lightAnkh = const IconDataLight(0xf644); - - /// Duotone Ankh icon - /// - /// https://fontawesome.com/icons/duotone_ankh?style=duotone - /// amulet, copper, coptic christianity, copts, crux ansata, egypt, venus - static const IconDataDuotone duotoneAnkh = const IconDataDuotone( - 0xf644, - secondary: const IconDataDuotone(0x10f644), - ); - - /// Brands App Store icon - /// - /// https://fontawesome.com/icons/app-store?style=brands - static const IconData appStore = const IconDataBrands(0xf36f); - - /// Brands iOS App Store icon - /// - /// https://fontawesome.com/icons/app-store-ios?style=brands - static const IconData appStoreIos = const IconDataBrands(0xf370); - - /// Brands Apper Systems AB icon - /// - /// https://fontawesome.com/icons/apper?style=brands - static const IconData apper = const IconDataBrands(0xf371); - - /// Brands Apple icon - /// - /// https://fontawesome.com/icons/apple?style=brands - /// fruit, ios, mac, operating system, os, osx - static const IconData apple = const IconDataBrands(0xf179); - - /// Regular Fruit Apple icon - /// - /// https://fontawesome.com/icons/apple-alt?style=regular - /// fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData appleAlt = const IconDataRegular(0xf5d1); - - /// Solid Fruit Apple icon - /// - /// https://fontawesome.com/icons/apple-alt?style=solid - /// fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData solidAppleAlt = const IconDataSolid(0xf5d1); - - /// Light Fruit Apple icon - /// - /// https://fontawesome.com/icons/light_apple-alt?style=light - /// fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconData lightAppleAlt = const IconDataLight(0xf5d1); - - /// Duotone Fruit Apple icon - /// - /// https://fontawesome.com/icons/duotone_apple-alt?style=duotone - /// fall, fruit, fuji, macintosh, orchard, seasonal, vegan - static const IconDataDuotone duotoneAppleAlt = const IconDataDuotone( - 0xf5d1, - secondary: const IconDataDuotone(0x10f5d1), - ); - - /// Regular Apple Crate icon - /// - /// https://fontawesome.com/icons/apple-crate?style=regular - /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData appleCrate = const IconDataRegular(0xf6b1); - - /// Solid Apple Crate icon - /// - /// https://fontawesome.com/icons/apple-crate?style=solid - /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData solidAppleCrate = const IconDataSolid(0xf6b1); - - /// Light Apple Crate icon - /// - /// https://fontawesome.com/icons/light_apple-crate?style=light - /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconData lightAppleCrate = const IconDataLight(0xf6b1); - - /// Duotone Apple Crate icon - /// - /// https://fontawesome.com/icons/duotone_apple-crate?style=duotone - /// bushel, container, fall, fruit, fuji, macintosh, orchard, peck, seasonal - static const IconDataDuotone duotoneAppleCrate = const IconDataDuotone( - 0xf6b1, - secondary: const IconDataDuotone(0x10f6b1), - ); - - /// Brands Apple Pay icon - /// - /// https://fontawesome.com/icons/apple-pay?style=brands - static const IconData applePay = const IconDataBrands(0xf415); - - /// Regular Archive icon - /// - /// https://fontawesome.com/icons/archive?style=regular - /// box, package, save, storage - static const IconData archive = const IconDataRegular(0xf187); - - /// Solid Archive icon - /// - /// https://fontawesome.com/icons/archive?style=solid - /// box, package, save, storage - static const IconData solidArchive = const IconDataSolid(0xf187); - - /// Light Archive icon - /// - /// https://fontawesome.com/icons/light_archive?style=light - /// box, package, save, storage - static const IconData lightArchive = const IconDataLight(0xf187); - - /// Duotone Archive icon - /// - /// https://fontawesome.com/icons/duotone_archive?style=duotone - /// box, package, save, storage - static const IconDataDuotone duotoneArchive = const IconDataDuotone( - 0xf187, - secondary: const IconDataDuotone(0x10f187), - ); - - /// Regular Archway icon - /// - /// https://fontawesome.com/icons/archway?style=regular - /// arc, monument, road, street, tunnel - static const IconData archway = const IconDataRegular(0xf557); - - /// Solid Archway icon - /// - /// https://fontawesome.com/icons/archway?style=solid - /// arc, monument, road, street, tunnel - static const IconData solidArchway = const IconDataSolid(0xf557); - - /// Light Archway icon - /// - /// https://fontawesome.com/icons/light_archway?style=light - /// arc, monument, road, street, tunnel - static const IconData lightArchway = const IconDataLight(0xf557); - - /// Duotone Archway icon - /// - /// https://fontawesome.com/icons/duotone_archway?style=duotone - /// arc, monument, road, street, tunnel - static const IconDataDuotone duotoneArchway = const IconDataDuotone( - 0xf557, - secondary: const IconDataDuotone(0x10f557), - ); - - /// Regular Alternate Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-down?style=regular - /// arrow-circle-o-down, download - static const IconData arrowAltCircleDown = const IconDataRegular(0xf358); - - /// Solid Alternate Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-down?style=solid - /// arrow-circle-o-down, download - static const IconData solidArrowAltCircleDown = const IconDataSolid(0xf358); - - /// Light Alternate Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-circle-down?style=light - /// arrow-circle-o-down, download - static const IconData lightArrowAltCircleDown = const IconDataLight(0xf358); - - /// Duotone Alternate Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-circle-down?style=duotone - /// arrow-circle-o-down, download - static const IconDataDuotone duotoneArrowAltCircleDown = - const IconDataDuotone( - 0xf358, - secondary: const IconDataDuotone(0x10f358), - ); - - /// Regular Alternate Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-left?style=regular - /// arrow-circle-o-left, back, previous - static const IconData arrowAltCircleLeft = const IconDataRegular(0xf359); - - /// Solid Alternate Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-left?style=solid - /// arrow-circle-o-left, back, previous - static const IconData solidArrowAltCircleLeft = const IconDataSolid(0xf359); - - /// Light Alternate Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-circle-left?style=light - /// arrow-circle-o-left, back, previous - static const IconData lightArrowAltCircleLeft = const IconDataLight(0xf359); - - /// Duotone Alternate Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-circle-left?style=duotone - /// arrow-circle-o-left, back, previous - static const IconDataDuotone duotoneArrowAltCircleLeft = - const IconDataDuotone( - 0xf359, - secondary: const IconDataDuotone(0x10f359), - ); - - /// Regular Alternate Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-right?style=regular - /// arrow-circle-o-right, forward, next - static const IconData arrowAltCircleRight = const IconDataRegular(0xf35a); - - /// Solid Alternate Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-right?style=solid - /// arrow-circle-o-right, forward, next - static const IconData solidArrowAltCircleRight = const IconDataSolid(0xf35a); - - /// Light Alternate Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-circle-right?style=light - /// arrow-circle-o-right, forward, next - static const IconData lightArrowAltCircleRight = const IconDataLight(0xf35a); - - /// Duotone Alternate Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-circle-right?style=duotone - /// arrow-circle-o-right, forward, next - static const IconDataDuotone duotoneArrowAltCircleRight = - const IconDataDuotone( - 0xf35a, - secondary: const IconDataDuotone(0x10f35a), - ); - - /// Regular Alternate Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-up?style=regular - /// arrow-circle-o-up - static const IconData arrowAltCircleUp = const IconDataRegular(0xf35b); - - /// Solid Alternate Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-circle-up?style=solid - /// arrow-circle-o-up - static const IconData solidArrowAltCircleUp = const IconDataSolid(0xf35b); - - /// Light Alternate Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-circle-up?style=light - /// arrow-circle-o-up - static const IconData lightArrowAltCircleUp = const IconDataLight(0xf35b); - - /// Duotone Alternate Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-circle-up?style=duotone - /// arrow-circle-o-up - static const IconDataDuotone duotoneArrowAltCircleUp = const IconDataDuotone( - 0xf35b, - secondary: const IconDataDuotone(0x10f35b), - ); - - /// Regular Alternate Arrow Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-down?style=regular - /// download - static const IconData arrowAltDown = const IconDataRegular(0xf354); - - /// Solid Alternate Arrow Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-down?style=solid - /// download - static const IconData solidArrowAltDown = const IconDataSolid(0xf354); - - /// Light Alternate Arrow Down icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-down?style=light - /// download - static const IconData lightArrowAltDown = const IconDataLight(0xf354); - - /// Duotone Alternate Arrow Down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-down?style=duotone - /// download - static const IconDataDuotone duotoneArrowAltDown = const IconDataDuotone( - 0xf354, - secondary: const IconDataDuotone(0x10f354), - ); - - /// Regular Alternate Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-bottom?style=regular - /// download - static const IconData arrowAltFromBottom = const IconDataRegular(0xf346); - - /// Solid Alternate Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-bottom?style=solid - /// download - static const IconData solidArrowAltFromBottom = const IconDataSolid(0xf346); - - /// Light Alternate Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-from-bottom?style=light - /// download - static const IconData lightArrowAltFromBottom = const IconDataLight(0xf346); - - /// Duotone Alternate Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-from-bottom?style=duotone - /// download - static const IconDataDuotone duotoneArrowAltFromBottom = - const IconDataDuotone( - 0xf346, - secondary: const IconDataDuotone(0x10f346), - ); - - /// Regular Alternate Arrow from Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-left?style=regular - /// back, previous - static const IconData arrowAltFromLeft = const IconDataRegular(0xf347); - - /// Solid Alternate Arrow from Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-left?style=solid - /// back, previous - static const IconData solidArrowAltFromLeft = const IconDataSolid(0xf347); - - /// Light Alternate Arrow from Left icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-from-left?style=light - /// back, previous - static const IconData lightArrowAltFromLeft = const IconDataLight(0xf347); - - /// Duotone Alternate Arrow from Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-from-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowAltFromLeft = const IconDataDuotone( - 0xf347, - secondary: const IconDataDuotone(0x10f347), - ); - - /// Regular Alternate Arrow from Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-right?style=regular - /// forward, next - static const IconData arrowAltFromRight = const IconDataRegular(0xf348); - - /// Solid Alternate Arrow from Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-right?style=solid - /// forward, next - static const IconData solidArrowAltFromRight = const IconDataSolid(0xf348); - - /// Light Alternate Arrow from Right icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-from-right?style=light - /// forward, next - static const IconData lightArrowAltFromRight = const IconDataLight(0xf348); - - /// Duotone Alternate Arrow from Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-from-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowAltFromRight = const IconDataDuotone( - 0xf348, - secondary: const IconDataDuotone(0x10f348), - ); - - /// Regular Alternate Arrow from Top icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-top?style=regular - /// upload - static const IconData arrowAltFromTop = const IconDataRegular(0xf349); - - /// Solid Alternate Arrow from Top icon - /// - /// https://fontawesome.com/icons/arrow-alt-from-top?style=solid - /// upload - static const IconData solidArrowAltFromTop = const IconDataSolid(0xf349); - - /// Light Alternate Arrow from Top icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-from-top?style=light - /// upload - static const IconData lightArrowAltFromTop = const IconDataLight(0xf349); - - /// Duotone Alternate Arrow from Top icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-from-top?style=duotone - /// upload - static const IconDataDuotone duotoneArrowAltFromTop = const IconDataDuotone( - 0xf349, - secondary: const IconDataDuotone(0x10f349), - ); - - /// Regular Alternate Arrow Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-left?style=regular - /// back, previous - static const IconData arrowAltLeft = const IconDataRegular(0xf355); - - /// Solid Alternate Arrow Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-left?style=solid - /// back, previous - static const IconData solidArrowAltLeft = const IconDataSolid(0xf355); - - /// Light Alternate Arrow Left icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-left?style=light - /// back, previous - static const IconData lightArrowAltLeft = const IconDataLight(0xf355); - - /// Duotone Alternate Arrow Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowAltLeft = const IconDataDuotone( - 0xf355, - secondary: const IconDataDuotone(0x10f355), - ); - - /// Regular Alternate Arrow Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-right?style=regular - /// forward, next - static const IconData arrowAltRight = const IconDataRegular(0xf356); - - /// Solid Alternate Arrow Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-right?style=solid - /// forward, next - static const IconData solidArrowAltRight = const IconDataSolid(0xf356); - - /// Light Alternate Arrow Right icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-right?style=light - /// forward, next - static const IconData lightArrowAltRight = const IconDataLight(0xf356); - - /// Duotone Alternate Arrow Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowAltRight = const IconDataDuotone( - 0xf356, - secondary: const IconDataDuotone(0x10f356), - ); - - /// Regular Alternate Arrow Square Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-down?style=regular - /// download - static const IconData arrowAltSquareDown = const IconDataRegular(0xf350); - - /// Solid Alternate Arrow Square Down icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-down?style=solid - /// download - static const IconData solidArrowAltSquareDown = const IconDataSolid(0xf350); - - /// Light Alternate Arrow Square Down icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-square-down?style=light - /// download - static const IconData lightArrowAltSquareDown = const IconDataLight(0xf350); - - /// Duotone Alternate Arrow Square Down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-square-down?style=duotone - /// download - static const IconDataDuotone duotoneArrowAltSquareDown = - const IconDataDuotone( - 0xf350, - secondary: const IconDataDuotone(0x10f350), - ); - - /// Regular Alternate Arrow Square Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-left?style=regular - /// back, previous - static const IconData arrowAltSquareLeft = const IconDataRegular(0xf351); - - /// Solid Alternate Arrow Square Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-left?style=solid - /// back, previous - static const IconData solidArrowAltSquareLeft = const IconDataSolid(0xf351); - - /// Light Alternate Arrow Square Left icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-square-left?style=light - /// back, previous - static const IconData lightArrowAltSquareLeft = const IconDataLight(0xf351); - - /// Duotone Alternate Arrow Square Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-square-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowAltSquareLeft = - const IconDataDuotone( - 0xf351, - secondary: const IconDataDuotone(0x10f351), - ); - - /// Regular Alternate Arrow Square Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-right?style=regular - /// forward, next - static const IconData arrowAltSquareRight = const IconDataRegular(0xf352); - - /// Solid Alternate Arrow Square Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-right?style=solid - /// forward, next - static const IconData solidArrowAltSquareRight = const IconDataSolid(0xf352); - - /// Light Alternate Arrow Square Right icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-square-right?style=light - /// forward, next - static const IconData lightArrowAltSquareRight = const IconDataLight(0xf352); - - /// Duotone Alternate Arrow Square Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-square-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowAltSquareRight = - const IconDataDuotone( - 0xf352, - secondary: const IconDataDuotone(0x10f352), - ); - - /// Regular Alternate Arrow Square Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-up?style=regular - /// upload - static const IconData arrowAltSquareUp = const IconDataRegular(0xf353); - - /// Solid Alternate Arrow Square Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-square-up?style=solid - /// upload - static const IconData solidArrowAltSquareUp = const IconDataSolid(0xf353); - - /// Light Alternate Arrow Square Up icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-square-up?style=light - /// upload - static const IconData lightArrowAltSquareUp = const IconDataLight(0xf353); - - /// Duotone Alternate Arrow Square Up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-square-up?style=duotone - /// upload - static const IconDataDuotone duotoneArrowAltSquareUp = const IconDataDuotone( - 0xf353, - secondary: const IconDataDuotone(0x10f353), - ); - - /// Regular Alternate Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-bottom?style=regular - /// download - static const IconData arrowAltToBottom = const IconDataRegular(0xf34a); - - /// Solid Alternate Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-bottom?style=solid - /// download - static const IconData solidArrowAltToBottom = const IconDataSolid(0xf34a); - - /// Light Alternate Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-to-bottom?style=light - /// download - static const IconData lightArrowAltToBottom = const IconDataLight(0xf34a); - - /// Duotone Alternate Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-to-bottom?style=duotone - /// download - static const IconDataDuotone duotoneArrowAltToBottom = const IconDataDuotone( - 0xf34a, - secondary: const IconDataDuotone(0x10f34a), - ); - - /// Regular Alternate Arrow to Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-left?style=regular - /// back, previous - static const IconData arrowAltToLeft = const IconDataRegular(0xf34b); - - /// Solid Alternate Arrow to Left icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-left?style=solid - /// back, previous - static const IconData solidArrowAltToLeft = const IconDataSolid(0xf34b); - - /// Light Alternate Arrow to Left icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-to-left?style=light - /// back, previous - static const IconData lightArrowAltToLeft = const IconDataLight(0xf34b); - - /// Duotone Alternate Arrow to Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-to-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowAltToLeft = const IconDataDuotone( - 0xf34b, - secondary: const IconDataDuotone(0x10f34b), - ); - - /// Regular Alternate Arrow to Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-right?style=regular - /// forward, next - static const IconData arrowAltToRight = const IconDataRegular(0xf34c); - - /// Solid Alternate Arrow to Right icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-right?style=solid - /// forward, next - static const IconData solidArrowAltToRight = const IconDataSolid(0xf34c); - - /// Light Alternate Arrow to Right icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-to-right?style=light - /// forward, next - static const IconData lightArrowAltToRight = const IconDataLight(0xf34c); - - /// Duotone Alternate Arrow to Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-to-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowAltToRight = const IconDataDuotone( - 0xf34c, - secondary: const IconDataDuotone(0x10f34c), - ); - - /// Regular Alternate Arrow to Top icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-top?style=regular - /// upload - static const IconData arrowAltToTop = const IconDataRegular(0xf34d); - - /// Solid Alternate Arrow to Top icon - /// - /// https://fontawesome.com/icons/arrow-alt-to-top?style=solid - /// upload - static const IconData solidArrowAltToTop = const IconDataSolid(0xf34d); - - /// Light Alternate Arrow to Top icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-to-top?style=light - /// upload - static const IconData lightArrowAltToTop = const IconDataLight(0xf34d); - - /// Duotone Alternate Arrow to Top icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-to-top?style=duotone - /// upload - static const IconDataDuotone duotoneArrowAltToTop = const IconDataDuotone( - 0xf34d, - secondary: const IconDataDuotone(0x10f34d), - ); - - /// Regular Alternate Arrow Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-up?style=regular - /// upload - static const IconData arrowAltUp = const IconDataRegular(0xf357); - - /// Solid Alternate Arrow Up icon - /// - /// https://fontawesome.com/icons/arrow-alt-up?style=solid - /// upload - static const IconData solidArrowAltUp = const IconDataSolid(0xf357); - - /// Light Alternate Arrow Up icon - /// - /// https://fontawesome.com/icons/light_arrow-alt-up?style=light - /// upload - static const IconData lightArrowAltUp = const IconDataLight(0xf357); - - /// Duotone Alternate Arrow Up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-alt-up?style=duotone - /// upload - static const IconDataDuotone duotoneArrowAltUp = const IconDataDuotone( - 0xf357, - secondary: const IconDataDuotone(0x10f357), - ); - - /// Regular Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/arrow-circle-down?style=regular - /// download - static const IconData arrowCircleDown = const IconDataRegular(0xf0ab); - - /// Solid Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/arrow-circle-down?style=solid - /// download - static const IconData solidArrowCircleDown = const IconDataSolid(0xf0ab); - - /// Light Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/light_arrow-circle-down?style=light - /// download - static const IconData lightArrowCircleDown = const IconDataLight(0xf0ab); - - /// Duotone Arrow Circle Down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-circle-down?style=duotone - /// download - static const IconDataDuotone duotoneArrowCircleDown = const IconDataDuotone( - 0xf0ab, - secondary: const IconDataDuotone(0x10f0ab), - ); - - /// Regular Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/arrow-circle-left?style=regular - /// back, previous - static const IconData arrowCircleLeft = const IconDataRegular(0xf0a8); - - /// Solid Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/arrow-circle-left?style=solid - /// back, previous - static const IconData solidArrowCircleLeft = const IconDataSolid(0xf0a8); - - /// Light Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/light_arrow-circle-left?style=light - /// back, previous - static const IconData lightArrowCircleLeft = const IconDataLight(0xf0a8); - - /// Duotone Arrow Circle Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-circle-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowCircleLeft = const IconDataDuotone( - 0xf0a8, - secondary: const IconDataDuotone(0x10f0a8), - ); - - /// Regular Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/arrow-circle-right?style=regular - /// forward, next - static const IconData arrowCircleRight = const IconDataRegular(0xf0a9); - - /// Solid Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/arrow-circle-right?style=solid - /// forward, next - static const IconData solidArrowCircleRight = const IconDataSolid(0xf0a9); - - /// Light Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/light_arrow-circle-right?style=light - /// forward, next - static const IconData lightArrowCircleRight = const IconDataLight(0xf0a9); - - /// Duotone Arrow Circle Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-circle-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowCircleRight = const IconDataDuotone( - 0xf0a9, - secondary: const IconDataDuotone(0x10f0a9), - ); - - /// Regular Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/arrow-circle-up?style=regular - /// upload - static const IconData arrowCircleUp = const IconDataRegular(0xf0aa); - - /// Solid Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/arrow-circle-up?style=solid - /// upload - static const IconData solidArrowCircleUp = const IconDataSolid(0xf0aa); - - /// Light Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/light_arrow-circle-up?style=light - /// upload - static const IconData lightArrowCircleUp = const IconDataLight(0xf0aa); - - /// Duotone Arrow Circle Up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-circle-up?style=duotone - /// upload - static const IconDataDuotone duotoneArrowCircleUp = const IconDataDuotone( - 0xf0aa, - secondary: const IconDataDuotone(0x10f0aa), - ); - - /// Regular arrow-down icon - /// - /// https://fontawesome.com/icons/arrow-down?style=regular - /// download - static const IconData arrowDown = const IconDataRegular(0xf063); - - /// Solid arrow-down icon - /// - /// https://fontawesome.com/icons/arrow-down?style=solid - /// download - static const IconData solidArrowDown = const IconDataSolid(0xf063); - - /// Light arrow-down icon - /// - /// https://fontawesome.com/icons/light_arrow-down?style=light - /// download - static const IconData lightArrowDown = const IconDataLight(0xf063); - - /// Duotone arrow-down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-down?style=duotone - /// download - static const IconDataDuotone duotoneArrowDown = const IconDataDuotone( - 0xf063, - secondary: const IconDataDuotone(0x10f063), - ); - - /// Regular Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/arrow-from-bottom?style=regular - /// download - static const IconData arrowFromBottom = const IconDataRegular(0xf342); - - /// Solid Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/arrow-from-bottom?style=solid - /// download - static const IconData solidArrowFromBottom = const IconDataSolid(0xf342); - - /// Light Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/light_arrow-from-bottom?style=light - /// download - static const IconData lightArrowFromBottom = const IconDataLight(0xf342); - - /// Duotone Arrow from Bottom icon - /// - /// https://fontawesome.com/icons/duotone_arrow-from-bottom?style=duotone - /// download - static const IconDataDuotone duotoneArrowFromBottom = const IconDataDuotone( - 0xf342, - secondary: const IconDataDuotone(0x10f342), - ); - - /// Regular Arrow from Left icon - /// - /// https://fontawesome.com/icons/arrow-from-left?style=regular - /// back, previous - static const IconData arrowFromLeft = const IconDataRegular(0xf343); - - /// Solid Arrow from Left icon - /// - /// https://fontawesome.com/icons/arrow-from-left?style=solid - /// back, previous - static const IconData solidArrowFromLeft = const IconDataSolid(0xf343); - - /// Light Arrow from Left icon - /// - /// https://fontawesome.com/icons/light_arrow-from-left?style=light - /// back, previous - static const IconData lightArrowFromLeft = const IconDataLight(0xf343); - - /// Duotone Arrow from Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-from-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowFromLeft = const IconDataDuotone( - 0xf343, - secondary: const IconDataDuotone(0x10f343), - ); - - /// Regular Arrow from Right icon - /// - /// https://fontawesome.com/icons/arrow-from-right?style=regular - /// forward, next - static const IconData arrowFromRight = const IconDataRegular(0xf344); - - /// Solid Arrow from Right icon - /// - /// https://fontawesome.com/icons/arrow-from-right?style=solid - /// forward, next - static const IconData solidArrowFromRight = const IconDataSolid(0xf344); - - /// Light Arrow from Right icon - /// - /// https://fontawesome.com/icons/light_arrow-from-right?style=light - /// forward, next - static const IconData lightArrowFromRight = const IconDataLight(0xf344); - - /// Duotone Arrow from Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-from-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowFromRight = const IconDataDuotone( - 0xf344, - secondary: const IconDataDuotone(0x10f344), - ); - - /// Regular Arrow from Top icon - /// - /// https://fontawesome.com/icons/arrow-from-top?style=regular - /// upload - static const IconData arrowFromTop = const IconDataRegular(0xf345); - - /// Solid Arrow from Top icon - /// - /// https://fontawesome.com/icons/arrow-from-top?style=solid - /// upload - static const IconData solidArrowFromTop = const IconDataSolid(0xf345); - - /// Light Arrow from Top icon - /// - /// https://fontawesome.com/icons/light_arrow-from-top?style=light - /// upload - static const IconData lightArrowFromTop = const IconDataLight(0xf345); - - /// Duotone Arrow from Top icon - /// - /// https://fontawesome.com/icons/duotone_arrow-from-top?style=duotone - /// upload - static const IconDataDuotone duotoneArrowFromTop = const IconDataDuotone( - 0xf345, - secondary: const IconDataDuotone(0x10f345), - ); - - /// Regular arrow-left icon - /// - /// https://fontawesome.com/icons/arrow-left?style=regular - /// back, previous - static const IconData arrowLeft = const IconDataRegular(0xf060); - - /// Solid arrow-left icon - /// - /// https://fontawesome.com/icons/arrow-left?style=solid - /// back, previous - static const IconData solidArrowLeft = const IconDataSolid(0xf060); - - /// Light arrow-left icon - /// - /// https://fontawesome.com/icons/light_arrow-left?style=light - /// back, previous - static const IconData lightArrowLeft = const IconDataLight(0xf060); - - /// Duotone arrow-left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowLeft = const IconDataDuotone( - 0xf060, - secondary: const IconDataDuotone(0x10f060), - ); - - /// Regular arrow-right icon - /// - /// https://fontawesome.com/icons/arrow-right?style=regular - /// forward, next - static const IconData arrowRight = const IconDataRegular(0xf061); - - /// Solid arrow-right icon - /// - /// https://fontawesome.com/icons/arrow-right?style=solid - /// forward, next - static const IconData solidArrowRight = const IconDataSolid(0xf061); - - /// Light arrow-right icon - /// - /// https://fontawesome.com/icons/light_arrow-right?style=light - /// forward, next - static const IconData lightArrowRight = const IconDataLight(0xf061); - - /// Duotone arrow-right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowRight = const IconDataDuotone( - 0xf061, - secondary: const IconDataDuotone(0x10f061), - ); - - /// Regular Arrow Square Down icon - /// - /// https://fontawesome.com/icons/arrow-square-down?style=regular - /// download - static const IconData arrowSquareDown = const IconDataRegular(0xf339); - - /// Solid Arrow Square Down icon - /// - /// https://fontawesome.com/icons/arrow-square-down?style=solid - /// download - static const IconData solidArrowSquareDown = const IconDataSolid(0xf339); - - /// Light Arrow Square Down icon - /// - /// https://fontawesome.com/icons/light_arrow-square-down?style=light - /// download - static const IconData lightArrowSquareDown = const IconDataLight(0xf339); - - /// Duotone Arrow Square Down icon - /// - /// https://fontawesome.com/icons/duotone_arrow-square-down?style=duotone - /// download - static const IconDataDuotone duotoneArrowSquareDown = const IconDataDuotone( - 0xf339, - secondary: const IconDataDuotone(0x10f339), - ); - - /// Regular Arrow Square Left icon - /// - /// https://fontawesome.com/icons/arrow-square-left?style=regular - /// back, previous - static const IconData arrowSquareLeft = const IconDataRegular(0xf33a); - - /// Solid Arrow Square Left icon - /// - /// https://fontawesome.com/icons/arrow-square-left?style=solid - /// back, previous - static const IconData solidArrowSquareLeft = const IconDataSolid(0xf33a); - - /// Light Arrow Square Left icon - /// - /// https://fontawesome.com/icons/light_arrow-square-left?style=light - /// back, previous - static const IconData lightArrowSquareLeft = const IconDataLight(0xf33a); - - /// Duotone Arrow Square Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-square-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowSquareLeft = const IconDataDuotone( - 0xf33a, - secondary: const IconDataDuotone(0x10f33a), - ); - - /// Regular Arrow Square Right icon - /// - /// https://fontawesome.com/icons/arrow-square-right?style=regular - /// forward, next - static const IconData arrowSquareRight = const IconDataRegular(0xf33b); - - /// Solid Arrow Square Right icon - /// - /// https://fontawesome.com/icons/arrow-square-right?style=solid - /// forward, next - static const IconData solidArrowSquareRight = const IconDataSolid(0xf33b); - - /// Light Arrow Square Right icon - /// - /// https://fontawesome.com/icons/light_arrow-square-right?style=light - /// forward, next - static const IconData lightArrowSquareRight = const IconDataLight(0xf33b); - - /// Duotone Arrow Square Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-square-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowSquareRight = const IconDataDuotone( - 0xf33b, - secondary: const IconDataDuotone(0x10f33b), - ); - - /// Regular Arrow Square Up icon - /// - /// https://fontawesome.com/icons/arrow-square-up?style=regular - /// upload - static const IconData arrowSquareUp = const IconDataRegular(0xf33c); - - /// Solid Arrow Square Up icon - /// - /// https://fontawesome.com/icons/arrow-square-up?style=solid - /// upload - static const IconData solidArrowSquareUp = const IconDataSolid(0xf33c); - - /// Light Arrow Square Up icon - /// - /// https://fontawesome.com/icons/light_arrow-square-up?style=light - /// upload - static const IconData lightArrowSquareUp = const IconDataLight(0xf33c); - - /// Duotone Arrow Square Up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-square-up?style=duotone - /// upload - static const IconDataDuotone duotoneArrowSquareUp = const IconDataDuotone( - 0xf33c, - secondary: const IconDataDuotone(0x10f33c), - ); - - /// Regular Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/arrow-to-bottom?style=regular - /// download - static const IconData arrowToBottom = const IconDataRegular(0xf33d); - - /// Solid Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/arrow-to-bottom?style=solid - /// download - static const IconData solidArrowToBottom = const IconDataSolid(0xf33d); - - /// Light Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/light_arrow-to-bottom?style=light - /// download - static const IconData lightArrowToBottom = const IconDataLight(0xf33d); - - /// Duotone Arrow to Bottom icon - /// - /// https://fontawesome.com/icons/duotone_arrow-to-bottom?style=duotone - /// download - static const IconDataDuotone duotoneArrowToBottom = const IconDataDuotone( - 0xf33d, - secondary: const IconDataDuotone(0x10f33d), - ); - - /// Regular Arrow to Left icon - /// - /// https://fontawesome.com/icons/arrow-to-left?style=regular - /// back, previous - static const IconData arrowToLeft = const IconDataRegular(0xf33e); - - /// Solid Arrow to Left icon - /// - /// https://fontawesome.com/icons/arrow-to-left?style=solid - /// back, previous - static const IconData solidArrowToLeft = const IconDataSolid(0xf33e); - - /// Light Arrow to Left icon - /// - /// https://fontawesome.com/icons/light_arrow-to-left?style=light - /// back, previous - static const IconData lightArrowToLeft = const IconDataLight(0xf33e); - - /// Duotone Arrow to Left icon - /// - /// https://fontawesome.com/icons/duotone_arrow-to-left?style=duotone - /// back, previous - static const IconDataDuotone duotoneArrowToLeft = const IconDataDuotone( - 0xf33e, - secondary: const IconDataDuotone(0x10f33e), - ); - - /// Regular Arrow to Right icon - /// - /// https://fontawesome.com/icons/arrow-to-right?style=regular - /// forward, next - static const IconData arrowToRight = const IconDataRegular(0xf340); - - /// Solid Arrow to Right icon - /// - /// https://fontawesome.com/icons/arrow-to-right?style=solid - /// forward, next - static const IconData solidArrowToRight = const IconDataSolid(0xf340); - - /// Light Arrow to Right icon - /// - /// https://fontawesome.com/icons/light_arrow-to-right?style=light - /// forward, next - static const IconData lightArrowToRight = const IconDataLight(0xf340); - - /// Duotone Arrow to Right icon - /// - /// https://fontawesome.com/icons/duotone_arrow-to-right?style=duotone - /// forward, next - static const IconDataDuotone duotoneArrowToRight = const IconDataDuotone( - 0xf340, - secondary: const IconDataDuotone(0x10f340), - ); - - /// Regular Arrow to Top icon - /// - /// https://fontawesome.com/icons/arrow-to-top?style=regular - /// upload - static const IconData arrowToTop = const IconDataRegular(0xf341); - - /// Solid Arrow to Top icon - /// - /// https://fontawesome.com/icons/arrow-to-top?style=solid - /// upload - static const IconData solidArrowToTop = const IconDataSolid(0xf341); - - /// Light Arrow to Top icon - /// - /// https://fontawesome.com/icons/light_arrow-to-top?style=light - /// upload - static const IconData lightArrowToTop = const IconDataLight(0xf341); - - /// Duotone Arrow to Top icon - /// - /// https://fontawesome.com/icons/duotone_arrow-to-top?style=duotone - /// upload - static const IconDataDuotone duotoneArrowToTop = const IconDataDuotone( - 0xf341, - secondary: const IconDataDuotone(0x10f341), - ); - - /// Regular arrow-up icon - /// - /// https://fontawesome.com/icons/arrow-up?style=regular - /// forward, upload - static const IconData arrowUp = const IconDataRegular(0xf062); - - /// Solid arrow-up icon - /// - /// https://fontawesome.com/icons/arrow-up?style=solid - /// forward, upload - static const IconData solidArrowUp = const IconDataSolid(0xf062); - - /// Light arrow-up icon - /// - /// https://fontawesome.com/icons/light_arrow-up?style=light - /// forward, upload - static const IconData lightArrowUp = const IconDataLight(0xf062); - - /// Duotone arrow-up icon - /// - /// https://fontawesome.com/icons/duotone_arrow-up?style=duotone - /// forward, upload - static const IconDataDuotone duotoneArrowUp = const IconDataDuotone( - 0xf062, - secondary: const IconDataDuotone(0x10f062), - ); - - /// Regular Arrows icon - /// - /// https://fontawesome.com/icons/arrows?style=regular - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData arrows = const IconDataRegular(0xf047); - - /// Solid Arrows icon - /// - /// https://fontawesome.com/icons/arrows?style=solid - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData solidArrows = const IconDataSolid(0xf047); - - /// Light Arrows icon - /// - /// https://fontawesome.com/icons/light_arrows?style=light - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData lightArrows = const IconDataLight(0xf047); - - /// Duotone Arrows icon - /// - /// https://fontawesome.com/icons/duotone_arrows?style=duotone - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconDataDuotone duotoneArrows = const IconDataDuotone( - 0xf047, - secondary: const IconDataDuotone(0x10f047), - ); - - /// Regular Alternate Arrows icon - /// - /// https://fontawesome.com/icons/arrows-alt?style=regular - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData arrowsAlt = const IconDataRegular(0xf0b2); - - /// Solid Alternate Arrows icon - /// - /// https://fontawesome.com/icons/arrows-alt?style=solid - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData solidArrowsAlt = const IconDataSolid(0xf0b2); - - /// Light Alternate Arrows icon - /// - /// https://fontawesome.com/icons/light_arrows-alt?style=light - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconData lightArrowsAlt = const IconDataLight(0xf0b2); - - /// Duotone Alternate Arrows icon - /// - /// https://fontawesome.com/icons/duotone_arrows-alt?style=duotone - /// arrow, arrows, bigger, enlarge, expand, fullscreen, move, position, reorder, resize - static const IconDataDuotone duotoneArrowsAlt = const IconDataDuotone( - 0xf0b2, - secondary: const IconDataDuotone(0x10f0b2), - ); - - /// Regular Alternate Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/arrows-alt-h?style=regular - /// arrows-h, expand, horizontal, landscape, resize, wide - static const IconData arrowsAltH = const IconDataRegular(0xf337); - - /// Solid Alternate Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/arrows-alt-h?style=solid - /// arrows-h, expand, horizontal, landscape, resize, wide - static const IconData solidArrowsAltH = const IconDataSolid(0xf337); - - /// Light Alternate Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/light_arrows-alt-h?style=light - /// arrows-h, expand, horizontal, landscape, resize, wide - static const IconData lightArrowsAltH = const IconDataLight(0xf337); - - /// Duotone Alternate Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_arrows-alt-h?style=duotone - /// arrows-h, expand, horizontal, landscape, resize, wide - static const IconDataDuotone duotoneArrowsAltH = const IconDataDuotone( - 0xf337, - secondary: const IconDataDuotone(0x10f337), - ); - - /// Regular Alternate Arrows Vertical icon - /// - /// https://fontawesome.com/icons/arrows-alt-v?style=regular - /// arrows-v, expand, portrait, resize, tall, vertical - static const IconData arrowsAltV = const IconDataRegular(0xf338); - - /// Solid Alternate Arrows Vertical icon - /// - /// https://fontawesome.com/icons/arrows-alt-v?style=solid - /// arrows-v, expand, portrait, resize, tall, vertical - static const IconData solidArrowsAltV = const IconDataSolid(0xf338); - - /// Light Alternate Arrows Vertical icon - /// - /// https://fontawesome.com/icons/light_arrows-alt-v?style=light - /// arrows-v, expand, portrait, resize, tall, vertical - static const IconData lightArrowsAltV = const IconDataLight(0xf338); - - /// Duotone Alternate Arrows Vertical icon - /// - /// https://fontawesome.com/icons/duotone_arrows-alt-v?style=duotone - /// arrows-v, expand, portrait, resize, tall, vertical - static const IconDataDuotone duotoneArrowsAltV = const IconDataDuotone( - 0xf338, - secondary: const IconDataDuotone(0x10f338), - ); - - /// Regular Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/arrows-h?style=regular - /// expand, horizontal, landscape, resize, wide - static const IconData arrowsH = const IconDataRegular(0xf07e); - - /// Solid Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/arrows-h?style=solid - /// expand, horizontal, landscape, resize, wide - static const IconData solidArrowsH = const IconDataSolid(0xf07e); - - /// Light Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/light_arrows-h?style=light - /// expand, horizontal, landscape, resize, wide - static const IconData lightArrowsH = const IconDataLight(0xf07e); - - /// Duotone Arrows Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_arrows-h?style=duotone - /// expand, horizontal, landscape, resize, wide - static const IconDataDuotone duotoneArrowsH = const IconDataDuotone( - 0xf07e, - secondary: const IconDataDuotone(0x10f07e), - ); - - /// Regular Arrows Vertical icon - /// - /// https://fontawesome.com/icons/arrows-v?style=regular - /// expand, portrait, resize, tall, vertical - static const IconData arrowsV = const IconDataRegular(0xf07d); - - /// Solid Arrows Vertical icon - /// - /// https://fontawesome.com/icons/arrows-v?style=solid - /// expand, portrait, resize, tall, vertical - static const IconData solidArrowsV = const IconDataSolid(0xf07d); - - /// Light Arrows Vertical icon - /// - /// https://fontawesome.com/icons/light_arrows-v?style=light - /// expand, portrait, resize, tall, vertical - static const IconData lightArrowsV = const IconDataLight(0xf07d); - - /// Duotone Arrows Vertical icon - /// - /// https://fontawesome.com/icons/duotone_arrows-v?style=duotone - /// expand, portrait, resize, tall, vertical - static const IconDataDuotone duotoneArrowsV = const IconDataDuotone( - 0xf07d, - secondary: const IconDataDuotone(0x10f07d), - ); - - /// Brands Artstation icon - /// - /// https://fontawesome.com/icons/artstation?style=brands - static const IconData artstation = const IconDataBrands(0xf77a); - - /// Regular Assistive Listening Systems icon - /// - /// https://fontawesome.com/icons/assistive-listening-systems?style=regular - /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData assistiveListeningSystems = - const IconDataRegular(0xf2a2); - - /// Solid Assistive Listening Systems icon - /// - /// https://fontawesome.com/icons/assistive-listening-systems?style=solid - /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData solidAssistiveListeningSystems = - const IconDataSolid(0xf2a2); - - /// Light Assistive Listening Systems icon - /// - /// https://fontawesome.com/icons/light_assistive-listening-systems?style=light - /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconData lightAssistiveListeningSystems = - const IconDataLight(0xf2a2); - - /// Duotone Assistive Listening Systems icon - /// - /// https://fontawesome.com/icons/duotone_assistive-listening-systems?style=duotone - /// amplify, audio, deaf, ear, headset, hearing, sound - static const IconDataDuotone duotoneAssistiveListeningSystems = - const IconDataDuotone( - 0xf2a2, - secondary: const IconDataDuotone(0x10f2a2), - ); - - /// Regular asterisk icon - /// - /// https://fontawesome.com/icons/asterisk?style=regular - /// annotation, details, reference, star - static const IconData asterisk = const IconDataRegular(0xf069); - - /// Solid asterisk icon - /// - /// https://fontawesome.com/icons/asterisk?style=solid - /// annotation, details, reference, star - static const IconData solidAsterisk = const IconDataSolid(0xf069); - - /// Light asterisk icon - /// - /// https://fontawesome.com/icons/light_asterisk?style=light - /// annotation, details, reference, star - static const IconData lightAsterisk = const IconDataLight(0xf069); - - /// Duotone asterisk icon - /// - /// https://fontawesome.com/icons/duotone_asterisk?style=duotone - /// annotation, details, reference, star - static const IconDataDuotone duotoneAsterisk = const IconDataDuotone( - 0xf069, - secondary: const IconDataDuotone(0x10f069), - ); - - /// Brands Asymmetrik, Ltd. icon - /// - /// https://fontawesome.com/icons/asymmetrik?style=brands - static const IconData asymmetrik = const IconDataBrands(0xf372); - - /// Regular At icon - /// - /// https://fontawesome.com/icons/at?style=regular - /// address, author, e-mail, email, handle - static const IconData at = const IconDataRegular(0xf1fa); - - /// Solid At icon - /// - /// https://fontawesome.com/icons/at?style=solid - /// address, author, e-mail, email, handle - static const IconData solidAt = const IconDataSolid(0xf1fa); - - /// Light At icon - /// - /// https://fontawesome.com/icons/light_at?style=light - /// address, author, e-mail, email, handle - static const IconData lightAt = const IconDataLight(0xf1fa); - - /// Duotone At icon - /// - /// https://fontawesome.com/icons/duotone_at?style=duotone - /// address, author, e-mail, email, handle - static const IconDataDuotone duotoneAt = const IconDataDuotone( - 0xf1fa, - secondary: const IconDataDuotone(0x10f1fa), - ); - - /// Regular Atlas icon - /// - /// https://fontawesome.com/icons/atlas?style=regular - /// book, directions, geography, globe, map, travel, wayfinding - static const IconData atlas = const IconDataRegular(0xf558); - - /// Solid Atlas icon - /// - /// https://fontawesome.com/icons/atlas?style=solid - /// book, directions, geography, globe, map, travel, wayfinding - static const IconData solidAtlas = const IconDataSolid(0xf558); - - /// Light Atlas icon - /// - /// https://fontawesome.com/icons/light_atlas?style=light - /// book, directions, geography, globe, map, travel, wayfinding - static const IconData lightAtlas = const IconDataLight(0xf558); - - /// Duotone Atlas icon - /// - /// https://fontawesome.com/icons/duotone_atlas?style=duotone - /// book, directions, geography, globe, map, travel, wayfinding - static const IconDataDuotone duotoneAtlas = const IconDataDuotone( - 0xf558, - secondary: const IconDataDuotone(0x10f558), - ); - - /// Brands Atlassian icon - /// - /// https://fontawesome.com/icons/atlassian?style=brands - static const IconData atlassian = const IconDataBrands(0xf77b); - - /// Regular Atom icon - /// - /// https://fontawesome.com/icons/atom?style=regular - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science - static const IconData atom = const IconDataRegular(0xf5d2); - - /// Solid Atom icon - /// - /// https://fontawesome.com/icons/atom?style=solid - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science - static const IconData solidAtom = const IconDataSolid(0xf5d2); - - /// Light Atom icon - /// - /// https://fontawesome.com/icons/light_atom?style=light - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science - static const IconData lightAtom = const IconDataLight(0xf5d2); - - /// Duotone Atom icon - /// - /// https://fontawesome.com/icons/duotone_atom?style=duotone - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science - static const IconDataDuotone duotoneAtom = const IconDataDuotone( - 0xf5d2, - secondary: const IconDataDuotone(0x10f5d2), - ); - - /// Regular Atom Alt icon - /// - /// https://fontawesome.com/icons/atom-alt?style=regular - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science, space - static const IconData atomAlt = const IconDataRegular(0xf5d3); - - /// Solid Atom Alt icon - /// - /// https://fontawesome.com/icons/atom-alt?style=solid - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science, space - static const IconData solidAtomAlt = const IconDataSolid(0xf5d3); - - /// Light Atom Alt icon - /// - /// https://fontawesome.com/icons/light_atom-alt?style=light - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science, space - static const IconData lightAtomAlt = const IconDataLight(0xf5d3); - - /// Duotone Atom Alt icon - /// - /// https://fontawesome.com/icons/duotone_atom-alt?style=duotone - /// atheism, chemistry, electron, ion, isotope, neutron, nuclear, proton, science, space - static const IconDataDuotone duotoneAtomAlt = const IconDataDuotone( - 0xf5d3, - secondary: const IconDataDuotone(0x10f5d3), - ); - - /// Brands Audible icon - /// - /// https://fontawesome.com/icons/audible?style=brands - static const IconData audible = const IconDataBrands(0xf373); - - /// Regular Audio Description icon - /// - /// https://fontawesome.com/icons/audio-description?style=regular - /// blind, narration, video, visual - static const IconData audioDescription = const IconDataRegular(0xf29e); - - /// Solid Audio Description icon - /// - /// https://fontawesome.com/icons/audio-description?style=solid - /// blind, narration, video, visual - static const IconData solidAudioDescription = const IconDataSolid(0xf29e); - - /// Light Audio Description icon - /// - /// https://fontawesome.com/icons/light_audio-description?style=light - /// blind, narration, video, visual - static const IconData lightAudioDescription = const IconDataLight(0xf29e); - - /// Duotone Audio Description icon - /// - /// https://fontawesome.com/icons/duotone_audio-description?style=duotone - /// blind, narration, video, visual - static const IconDataDuotone duotoneAudioDescription = const IconDataDuotone( - 0xf29e, - secondary: const IconDataDuotone(0x10f29e), - ); - - /// Brands Autoprefixer icon - /// - /// https://fontawesome.com/icons/autoprefixer?style=brands - static const IconData autoprefixer = const IconDataBrands(0xf41c); - - /// Brands avianex icon - /// - /// https://fontawesome.com/icons/avianex?style=brands - static const IconData avianex = const IconDataBrands(0xf374); - - /// Brands Aviato icon - /// - /// https://fontawesome.com/icons/aviato?style=brands - static const IconData aviato = const IconDataBrands(0xf421); - - /// Regular Award icon - /// - /// https://fontawesome.com/icons/award?style=regular - /// honor, praise, prize, recognition, ribbon, trophy - static const IconData award = const IconDataRegular(0xf559); - - /// Solid Award icon - /// - /// https://fontawesome.com/icons/award?style=solid - /// honor, praise, prize, recognition, ribbon, trophy - static const IconData solidAward = const IconDataSolid(0xf559); - - /// Light Award icon - /// - /// https://fontawesome.com/icons/light_award?style=light - /// honor, praise, prize, recognition, ribbon, trophy - static const IconData lightAward = const IconDataLight(0xf559); - - /// Duotone Award icon - /// - /// https://fontawesome.com/icons/duotone_award?style=duotone - /// honor, praise, prize, recognition, ribbon, trophy - static const IconDataDuotone duotoneAward = const IconDataDuotone( - 0xf559, - secondary: const IconDataDuotone(0x10f559), - ); - - /// Brands Amazon Web Services (AWS) icon - /// - /// https://fontawesome.com/icons/aws?style=brands - static const IconData aws = const IconDataBrands(0xf375); - - /// Regular Axe icon - /// - /// https://fontawesome.com/icons/axe?style=regular - /// blade, cut, fall, lumberjack, outdoors, sharp, swing, tool, weapon - static const IconData axe = const IconDataRegular(0xf6b2); - - /// Solid Axe icon - /// - /// https://fontawesome.com/icons/axe?style=solid - /// blade, cut, fall, lumberjack, outdoors, sharp, swing, tool, weapon - static const IconData solidAxe = const IconDataSolid(0xf6b2); - - /// Light Axe icon - /// - /// https://fontawesome.com/icons/light_axe?style=light - /// blade, cut, fall, lumberjack, outdoors, sharp, swing, tool, weapon - static const IconData lightAxe = const IconDataLight(0xf6b2); - - /// Duotone Axe icon - /// - /// https://fontawesome.com/icons/duotone_axe?style=duotone - /// blade, cut, fall, lumberjack, outdoors, sharp, swing, tool, weapon - static const IconDataDuotone duotoneAxe = const IconDataDuotone( - 0xf6b2, - secondary: const IconDataDuotone(0x10f6b2), - ); - - /// 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 = const IconDataRegular(0xf6b3); - - /// 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 = const IconDataSolid(0xf6b3); - - /// Light Axe Battle icon - /// - /// https://fontawesome.com/icons/light_axe-battle?style=light - /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconData lightAxeBattle = const IconDataLight(0xf6b3); - - /// Duotone Axe Battle icon - /// - /// https://fontawesome.com/icons/duotone_axe-battle?style=duotone - /// Dungeons & Dragons, barbarian, d&d, dnd, fantasy, gimli, lumberjack, melee attack - static const IconDataDuotone duotoneAxeBattle = const IconDataDuotone( - 0xf6b3, - secondary: const IconDataDuotone(0x10f6b3), - ); - - /// Regular Baby icon - /// - /// https://fontawesome.com/icons/baby?style=regular - /// child, diaper, doll, human, infant, kid, offspring, person, sprout - static const IconData baby = const IconDataRegular(0xf77c); - - /// Solid Baby icon - /// - /// https://fontawesome.com/icons/baby?style=solid - /// child, diaper, doll, human, infant, kid, offspring, person, sprout - static const IconData solidBaby = const IconDataSolid(0xf77c); - - /// Light Baby icon - /// - /// https://fontawesome.com/icons/light_baby?style=light - /// child, diaper, doll, human, infant, kid, offspring, person, sprout - static const IconData lightBaby = const IconDataLight(0xf77c); - - /// Duotone Baby icon - /// - /// https://fontawesome.com/icons/duotone_baby?style=duotone - /// child, diaper, doll, human, infant, kid, offspring, person, sprout - static const IconDataDuotone duotoneBaby = const IconDataDuotone( - 0xf77c, - secondary: const IconDataDuotone(0x10f77c), - ); - - /// Regular Baby Carriage icon - /// - /// https://fontawesome.com/icons/baby-carriage?style=regular - /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData babyCarriage = const IconDataRegular(0xf77d); - - /// Solid Baby Carriage icon - /// - /// https://fontawesome.com/icons/baby-carriage?style=solid - /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData solidBabyCarriage = const IconDataSolid(0xf77d); - - /// Light Baby Carriage icon - /// - /// https://fontawesome.com/icons/light_baby-carriage?style=light - /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconData lightBabyCarriage = const IconDataLight(0xf77d); - - /// Duotone Baby Carriage icon - /// - /// https://fontawesome.com/icons/duotone_baby-carriage?style=duotone - /// buggy, carrier, infant, push, stroller, transportation, walk, wheels - static const IconDataDuotone duotoneBabyCarriage = const IconDataDuotone( - 0xf77d, - secondary: const IconDataDuotone(0x10f77d), - ); - - /// Regular Backpack icon - /// - /// https://fontawesome.com/icons/backpack?style=regular - /// bag, book, carry, hiking, school, travel - static const IconData backpack = const IconDataRegular(0xf5d4); - - /// Solid Backpack icon - /// - /// https://fontawesome.com/icons/backpack?style=solid - /// bag, book, carry, hiking, school, travel - static const IconData solidBackpack = const IconDataSolid(0xf5d4); - - /// Light Backpack icon - /// - /// https://fontawesome.com/icons/light_backpack?style=light - /// bag, book, carry, hiking, school, travel - static const IconData lightBackpack = const IconDataLight(0xf5d4); - - /// Duotone Backpack icon - /// - /// https://fontawesome.com/icons/duotone_backpack?style=duotone - /// bag, book, carry, hiking, school, travel - static const IconDataDuotone duotoneBackpack = const IconDataDuotone( - 0xf5d4, - secondary: const IconDataDuotone(0x10f5d4), - ); - - /// Regular Backspace icon - /// - /// https://fontawesome.com/icons/backspace?style=regular - /// command, delete, erase, keyboard, undo - static const IconData backspace = const IconDataRegular(0xf55a); - - /// Solid Backspace icon - /// - /// https://fontawesome.com/icons/backspace?style=solid - /// command, delete, erase, keyboard, undo - static const IconData solidBackspace = const IconDataSolid(0xf55a); - - /// Light Backspace icon - /// - /// https://fontawesome.com/icons/light_backspace?style=light - /// command, delete, erase, keyboard, undo - static const IconData lightBackspace = const IconDataLight(0xf55a); - - /// Duotone Backspace icon - /// - /// https://fontawesome.com/icons/duotone_backspace?style=duotone - /// command, delete, erase, keyboard, undo - static const IconDataDuotone duotoneBackspace = const IconDataDuotone( - 0xf55a, - secondary: const IconDataDuotone(0x10f55a), - ); - - /// Regular backward icon - /// - /// https://fontawesome.com/icons/backward?style=regular - /// previous, rewind - static const IconData backward = const IconDataRegular(0xf04a); - - /// Solid backward icon - /// - /// https://fontawesome.com/icons/backward?style=solid - /// previous, rewind - static const IconData solidBackward = const IconDataSolid(0xf04a); - - /// Light backward icon - /// - /// https://fontawesome.com/icons/light_backward?style=light - /// previous, rewind - static const IconData lightBackward = const IconDataLight(0xf04a); - - /// Duotone backward icon - /// - /// https://fontawesome.com/icons/duotone_backward?style=duotone - /// previous, rewind - static const IconDataDuotone duotoneBackward = const IconDataDuotone( - 0xf04a, - secondary: const IconDataDuotone(0x10f04a), - ); - - /// Regular Bacon icon - /// - /// https://fontawesome.com/icons/bacon?style=regular - /// blt, breakfast, ham, lard, meat, pancetta, pork, rasher - static const IconData bacon = const IconDataRegular(0xf7e5); - - /// Solid Bacon icon - /// - /// https://fontawesome.com/icons/bacon?style=solid - /// blt, breakfast, ham, lard, meat, pancetta, pork, rasher - static const IconData solidBacon = const IconDataSolid(0xf7e5); - - /// Light Bacon icon - /// - /// https://fontawesome.com/icons/light_bacon?style=light - /// blt, breakfast, ham, lard, meat, pancetta, pork, rasher - static const IconData lightBacon = const IconDataLight(0xf7e5); - - /// Duotone Bacon icon - /// - /// https://fontawesome.com/icons/duotone_bacon?style=duotone - /// blt, breakfast, ham, lard, meat, pancetta, pork, rasher - static const IconDataDuotone duotoneBacon = const IconDataDuotone( - 0xf7e5, - secondary: const IconDataDuotone(0x10f7e5), - ); - - /// Regular Bacteria icon - /// - /// https://fontawesome.com/icons/bacteria?style=regular - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData bacteria = const IconDataRegular(0xe059); - - /// Light Bacteria icon - /// - /// https://fontawesome.com/icons/light_bacteria?style=light - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData lightBacteria = const IconDataLight(0xe059); - - /// Solid Bacteria icon - /// - /// https://fontawesome.com/icons/bacteria?style=solid - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData solidBacteria = const IconDataSolid(0xe059); - - /// Duotone Bacteria icon - /// - /// https://fontawesome.com/icons/duotone_bacteria?style=duotone - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconDataDuotone duotoneBacteria = const IconDataDuotone( - 0xe059, - secondary: const IconDataDuotone(0x10e059), - ); - - /// Regular Bacterium icon - /// - /// https://fontawesome.com/icons/bacterium?style=regular - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData bacterium = const IconDataRegular(0xe05a); - - /// Light Bacterium icon - /// - /// https://fontawesome.com/icons/light_bacterium?style=light - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData lightBacterium = const IconDataLight(0xe05a); - - /// Solid Bacterium icon - /// - /// https://fontawesome.com/icons/bacterium?style=solid - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconData solidBacterium = const IconDataSolid(0xe05a); - - /// Duotone Bacterium icon - /// - /// https://fontawesome.com/icons/duotone_bacterium?style=duotone - /// antibiotic, antibody, covid-19, health, organism, sick - static const IconDataDuotone duotoneBacterium = const IconDataDuotone( - 0xe05a, - secondary: const IconDataDuotone(0x10e05a), - ); - - /// Regular Badge icon - /// - /// https://fontawesome.com/icons/badge?style=regular - /// discount, meatball, verified, verify - static const IconData badge = const IconDataRegular(0xf335); - - /// Solid Badge icon - /// - /// https://fontawesome.com/icons/badge?style=solid - /// discount, meatball, verified, verify - static const IconData solidBadge = const IconDataSolid(0xf335); - - /// Light Badge icon - /// - /// https://fontawesome.com/icons/light_badge?style=light - /// discount, meatball, verified, verify - static const IconData lightBadge = const IconDataLight(0xf335); - - /// Duotone Badge icon - /// - /// https://fontawesome.com/icons/duotone_badge?style=duotone - /// discount, meatball, verified, verify - static const IconDataDuotone duotoneBadge = const IconDataDuotone( - 0xf335, - secondary: const IconDataDuotone(0x10f335), - ); - - /// Regular Check Badge icon - /// - /// https://fontawesome.com/icons/badge-check?style=regular - /// accept, achievement, agree, award, confirm, correct, done, ok, security, select, success, verified, verify, winner, yes - static const IconData badgeCheck = const IconDataRegular(0xf336); - - /// Solid Check Badge icon - /// - /// https://fontawesome.com/icons/badge-check?style=solid - /// accept, achievement, agree, award, confirm, correct, done, ok, security, select, success, verified, verify, winner, yes - static const IconData solidBadgeCheck = const IconDataSolid(0xf336); - - /// Light Check Badge icon - /// - /// https://fontawesome.com/icons/light_badge-check?style=light - /// accept, achievement, agree, award, confirm, correct, done, ok, security, select, success, verified, verify, winner, yes - static const IconData lightBadgeCheck = const IconDataLight(0xf336); - - /// Duotone Check Badge icon - /// - /// https://fontawesome.com/icons/duotone_badge-check?style=duotone - /// accept, achievement, agree, award, confirm, correct, done, ok, security, select, success, verified, verify, winner, yes - static const IconDataDuotone duotoneBadgeCheck = const IconDataDuotone( - 0xf336, - secondary: const IconDataDuotone(0x10f336), - ); - - /// Regular Badge Dollar icon - /// - /// https://fontawesome.com/icons/badge-dollar?style=regular - /// deal, discount, money, save, usd - static const IconData badgeDollar = const IconDataRegular(0xf645); - - /// Solid Badge Dollar icon - /// - /// https://fontawesome.com/icons/badge-dollar?style=solid - /// deal, discount, money, save, usd - static const IconData solidBadgeDollar = const IconDataSolid(0xf645); - - /// Light Badge Dollar icon - /// - /// https://fontawesome.com/icons/light_badge-dollar?style=light - /// deal, discount, money, save, usd - static const IconData lightBadgeDollar = const IconDataLight(0xf645); - - /// Duotone Badge Dollar icon - /// - /// https://fontawesome.com/icons/duotone_badge-dollar?style=duotone - /// deal, discount, money, save, usd - static const IconDataDuotone duotoneBadgeDollar = const IconDataDuotone( - 0xf645, - secondary: const IconDataDuotone(0x10f645), - ); - - /// Regular Badge Percent icon - /// - /// https://fontawesome.com/icons/badge-percent?style=regular - /// deal, discount, money, save, usd - static const IconData badgePercent = const IconDataRegular(0xf646); - - /// Solid Badge Percent icon - /// - /// https://fontawesome.com/icons/badge-percent?style=solid - /// deal, discount, money, save, usd - static const IconData solidBadgePercent = const IconDataSolid(0xf646); - - /// Light Badge Percent icon - /// - /// https://fontawesome.com/icons/light_badge-percent?style=light - /// deal, discount, money, save, usd - static const IconData lightBadgePercent = const IconDataLight(0xf646); - - /// Duotone Badge Percent icon - /// - /// https://fontawesome.com/icons/duotone_badge-percent?style=duotone - /// deal, discount, money, save, usd - static const IconDataDuotone duotoneBadgePercent = const IconDataDuotone( - 0xf646, - secondary: const IconDataDuotone(0x10f646), - ); - - /// Regular Sheriff Badge icon - /// - /// https://fontawesome.com/icons/badge-sheriff?style=regular - /// cowboy, justice, law, old west, western - static const IconData badgeSheriff = const IconDataRegular(0xf8a2); - - /// Light Sheriff Badge icon - /// - /// https://fontawesome.com/icons/light_badge-sheriff?style=light - /// cowboy, justice, law, old west, western - static const IconData lightBadgeSheriff = const IconDataLight(0xf8a2); - - /// Solid Sheriff Badge icon - /// - /// https://fontawesome.com/icons/badge-sheriff?style=solid - /// cowboy, justice, law, old west, western - static const IconData solidBadgeSheriff = const IconDataSolid(0xf8a2); - - /// Duotone Sheriff Badge icon - /// - /// https://fontawesome.com/icons/duotone_badge-sheriff?style=duotone - /// cowboy, justice, law, old west, western - static const IconDataDuotone duotoneBadgeSheriff = const IconDataDuotone( - 0xf8a2, - secondary: const IconDataDuotone(0x10f8a2), - ); - - /// Regular Honey Badger icon - /// - /// https://fontawesome.com/icons/badger-honey?style=regular - /// animal, care, dont, ewww, fauna, mammal, nasty - static const IconData badgerHoney = const IconDataRegular(0xf6b4); - - /// Solid Honey Badger icon - /// - /// https://fontawesome.com/icons/badger-honey?style=solid - /// animal, care, dont, ewww, fauna, mammal, nasty - static const IconData solidBadgerHoney = const IconDataSolid(0xf6b4); - - /// Light Honey Badger icon - /// - /// https://fontawesome.com/icons/light_badger-honey?style=light - /// animal, care, dont, ewww, fauna, mammal, nasty - static const IconData lightBadgerHoney = const IconDataLight(0xf6b4); - - /// Duotone Honey Badger icon - /// - /// https://fontawesome.com/icons/duotone_badger-honey?style=duotone - /// animal, care, dont, ewww, fauna, mammal, nasty - static const IconDataDuotone duotoneBadgerHoney = const IconDataDuotone( - 0xf6b4, - secondary: const IconDataDuotone(0x10f6b4), - ); - - /// Regular Shopping Bags icon - /// - /// https://fontawesome.com/icons/bags-shopping?style=regular - /// buy, checkout, order, shopping, store - static const IconData bagsShopping = const IconDataRegular(0xf847); - - /// Solid Shopping Bags icon - /// - /// https://fontawesome.com/icons/bags-shopping?style=solid - /// buy, checkout, order, shopping, store - static const IconData solidBagsShopping = const IconDataSolid(0xf847); - - /// Light Shopping Bags icon - /// - /// https://fontawesome.com/icons/light_bags-shopping?style=light - /// buy, checkout, order, shopping, store - static const IconData lightBagsShopping = const IconDataLight(0xf847); - - /// Duotone Shopping Bags icon - /// - /// https://fontawesome.com/icons/duotone_bags-shopping?style=duotone - /// buy, checkout, order, shopping, store - static const IconDataDuotone duotoneBagsShopping = const IconDataDuotone( - 0xf847, - secondary: const IconDataDuotone(0x10f847), - ); - - /// Regular Bahá'í icon - /// - /// https://fontawesome.com/icons/bahai?style=regular - /// bahai, bahá'í, star - static const IconData bahai = const IconDataRegular(0xf666); - - /// Solid Bahá'í icon - /// - /// https://fontawesome.com/icons/bahai?style=solid - /// bahai, bahá'í, star - static const IconData solidBahai = const IconDataSolid(0xf666); - - /// Light Bahá'í icon - /// - /// https://fontawesome.com/icons/light_bahai?style=light - /// bahai, bahá'í, star - static const IconData lightBahai = const IconDataLight(0xf666); - - /// Duotone Bahá'í icon - /// - /// https://fontawesome.com/icons/duotone_bahai?style=duotone - /// bahai, bahá'í, star - static const IconDataDuotone duotoneBahai = const IconDataDuotone( - 0xf666, - secondary: const IconDataDuotone(0x10f666), - ); - - /// Regular Balance Scale icon - /// - /// https://fontawesome.com/icons/balance-scale?style=regular - /// balanced, justice, legal, measure, weight - static const IconData balanceScale = const IconDataRegular(0xf24e); - - /// Solid Balance Scale icon - /// - /// https://fontawesome.com/icons/balance-scale?style=solid - /// balanced, justice, legal, measure, weight - static const IconData solidBalanceScale = const IconDataSolid(0xf24e); - - /// Light Balance Scale icon - /// - /// https://fontawesome.com/icons/light_balance-scale?style=light - /// balanced, justice, legal, measure, weight - static const IconData lightBalanceScale = const IconDataLight(0xf24e); - - /// Duotone Balance Scale icon - /// - /// https://fontawesome.com/icons/duotone_balance-scale?style=duotone - /// balanced, justice, legal, measure, weight - static const IconDataDuotone duotoneBalanceScale = const IconDataDuotone( - 0xf24e, - secondary: const IconDataDuotone(0x10f24e), - ); - - /// Regular Balance Scale (Left-Weighted) icon - /// - /// https://fontawesome.com/icons/balance-scale-left?style=regular - /// justice, legal, measure, unbalanced, weight - static const IconData balanceScaleLeft = const IconDataRegular(0xf515); - - /// Solid Balance Scale (Left-Weighted) icon - /// - /// https://fontawesome.com/icons/balance-scale-left?style=solid - /// justice, legal, measure, unbalanced, weight - static const IconData solidBalanceScaleLeft = const IconDataSolid(0xf515); - - /// Light Balance Scale (Left-Weighted) icon - /// - /// https://fontawesome.com/icons/light_balance-scale-left?style=light - /// justice, legal, measure, unbalanced, weight - static const IconData lightBalanceScaleLeft = const IconDataLight(0xf515); - - /// Duotone Balance Scale (Left-Weighted) icon - /// - /// https://fontawesome.com/icons/duotone_balance-scale-left?style=duotone - /// justice, legal, measure, unbalanced, weight - static const IconDataDuotone duotoneBalanceScaleLeft = const IconDataDuotone( - 0xf515, - secondary: const IconDataDuotone(0x10f515), - ); - - /// Regular Balance Scale (Right-Weighted) icon - /// - /// https://fontawesome.com/icons/balance-scale-right?style=regular - /// justice, legal, measure, unbalanced, weight - static const IconData balanceScaleRight = const IconDataRegular(0xf516); - - /// Solid Balance Scale (Right-Weighted) icon - /// - /// https://fontawesome.com/icons/balance-scale-right?style=solid - /// justice, legal, measure, unbalanced, weight - static const IconData solidBalanceScaleRight = const IconDataSolid(0xf516); - - /// Light Balance Scale (Right-Weighted) icon - /// - /// https://fontawesome.com/icons/light_balance-scale-right?style=light - /// justice, legal, measure, unbalanced, weight - static const IconData lightBalanceScaleRight = const IconDataLight(0xf516); - - /// Duotone Balance Scale (Right-Weighted) icon - /// - /// https://fontawesome.com/icons/duotone_balance-scale-right?style=duotone - /// justice, legal, measure, unbalanced, weight - static const IconDataDuotone duotoneBalanceScaleRight = const IconDataDuotone( - 0xf516, - secondary: const IconDataDuotone(0x10f516), - ); - - /// Regular Ball Pile icon - /// - /// https://fontawesome.com/icons/ball-pile?style=regular - /// balance, cannon, group, pyramid, snowball - static const IconData ballPile = const IconDataRegular(0xf77e); - - /// Solid Ball Pile icon - /// - /// https://fontawesome.com/icons/ball-pile?style=solid - /// balance, cannon, group, pyramid, snowball - static const IconData solidBallPile = const IconDataSolid(0xf77e); - - /// Light Ball Pile icon - /// - /// https://fontawesome.com/icons/light_ball-pile?style=light - /// balance, cannon, group, pyramid, snowball - static const IconData lightBallPile = const IconDataLight(0xf77e); - - /// Duotone Ball Pile icon - /// - /// https://fontawesome.com/icons/duotone_ball-pile?style=duotone - /// balance, cannon, group, pyramid, snowball - static const IconDataDuotone duotoneBallPile = const IconDataDuotone( - 0xf77e, - secondary: const IconDataDuotone(0x10f77e), - ); - - /// Regular Ballot icon - /// - /// https://fontawesome.com/icons/ballot?style=regular - /// checklist, choice, election, vote, voting - static const IconData ballot = const IconDataRegular(0xf732); - - /// Solid Ballot icon - /// - /// https://fontawesome.com/icons/ballot?style=solid - /// checklist, choice, election, vote, voting - static const IconData solidBallot = const IconDataSolid(0xf732); - - /// Light Ballot icon - /// - /// https://fontawesome.com/icons/light_ballot?style=light - /// checklist, choice, election, vote, voting - static const IconData lightBallot = const IconDataLight(0xf732); - - /// Duotone Ballot icon - /// - /// https://fontawesome.com/icons/duotone_ballot?style=duotone - /// checklist, choice, election, vote, voting - static const IconDataDuotone duotoneBallot = const IconDataDuotone( - 0xf732, - secondary: const IconDataDuotone(0x10f732), - ); - - /// Regular Ballot Check icon - /// - /// https://fontawesome.com/icons/ballot-check?style=regular - /// checklist, choice, completed, done, election, finished, select, success, tick, vote, voting - static const IconData ballotCheck = const IconDataRegular(0xf733); - - /// Solid Ballot Check icon - /// - /// https://fontawesome.com/icons/ballot-check?style=solid - /// checklist, choice, completed, done, election, finished, select, success, tick, vote, voting - static const IconData solidBallotCheck = const IconDataSolid(0xf733); - - /// Light Ballot Check icon - /// - /// https://fontawesome.com/icons/light_ballot-check?style=light - /// checklist, choice, completed, done, election, finished, select, success, tick, vote, voting - static const IconData lightBallotCheck = const IconDataLight(0xf733); - - /// Duotone Ballot Check icon - /// - /// https://fontawesome.com/icons/duotone_ballot-check?style=duotone - /// checklist, choice, completed, done, election, finished, select, success, tick, vote, voting - static const IconDataDuotone duotoneBallotCheck = const IconDataDuotone( - 0xf733, - secondary: const IconDataDuotone(0x10f733), - ); - - /// Regular ban icon - /// - /// https://fontawesome.com/icons/ban?style=regular - /// abort, ban, block, cancel, delete, hide, prohibit, remove, stop, trash - static const IconData ban = const IconDataRegular(0xf05e); - - /// Solid ban icon - /// - /// https://fontawesome.com/icons/ban?style=solid - /// abort, ban, block, cancel, delete, hide, prohibit, remove, stop, trash - static const IconData solidBan = const IconDataSolid(0xf05e); - - /// Light ban icon - /// - /// https://fontawesome.com/icons/light_ban?style=light - /// abort, ban, block, cancel, delete, hide, prohibit, remove, stop, trash - static const IconData lightBan = const IconDataLight(0xf05e); - - /// Duotone ban icon - /// - /// https://fontawesome.com/icons/duotone_ban?style=duotone - /// abort, ban, block, cancel, delete, hide, prohibit, remove, stop, trash - static const IconDataDuotone duotoneBan = const IconDataDuotone( - 0xf05e, - secondary: const IconDataDuotone(0x10f05e), - ); - - /// Regular Band-Aid icon - /// - /// https://fontawesome.com/icons/band-aid?style=regular - /// bandage, boo boo, first aid, ouch - static const IconData bandAid = const IconDataRegular(0xf462); - - /// Solid Band-Aid icon - /// - /// https://fontawesome.com/icons/band-aid?style=solid - /// bandage, boo boo, first aid, ouch - static const IconData solidBandAid = const IconDataSolid(0xf462); - - /// Light Band-Aid icon - /// - /// https://fontawesome.com/icons/light_band-aid?style=light - /// bandage, boo boo, first aid, ouch - static const IconData lightBandAid = const IconDataLight(0xf462); - - /// Duotone Band-Aid icon - /// - /// https://fontawesome.com/icons/duotone_band-aid?style=duotone - /// bandage, boo boo, first aid, ouch - static const IconDataDuotone duotoneBandAid = const IconDataDuotone( - 0xf462, - secondary: const IconDataDuotone(0x10f462), - ); - - /// Brands Bandcamp icon - /// - /// https://fontawesome.com/icons/bandcamp?style=brands - static const IconData bandcamp = const IconDataBrands(0xf2d5); - - /// Regular Banjo icon - /// - /// https://fontawesome.com/icons/banjo?style=regular - /// bluegrass, folk, guitar, instrument, jazz, music - static const IconData banjo = const IconDataRegular(0xf8a3); - - /// Solid Banjo icon - /// - /// https://fontawesome.com/icons/banjo?style=solid - /// bluegrass, folk, guitar, instrument, jazz, music - static const IconData solidBanjo = const IconDataSolid(0xf8a3); - - /// Light Banjo icon - /// - /// https://fontawesome.com/icons/light_banjo?style=light - /// bluegrass, folk, guitar, instrument, jazz, music - static const IconData lightBanjo = const IconDataLight(0xf8a3); - - /// Duotone Banjo icon - /// - /// https://fontawesome.com/icons/duotone_banjo?style=duotone - /// bluegrass, folk, guitar, instrument, jazz, music - static const IconDataDuotone duotoneBanjo = const IconDataDuotone( - 0xf8a3, - secondary: const IconDataDuotone(0x10f8a3), - ); - - /// Regular barcode icon - /// - /// https://fontawesome.com/icons/barcode?style=regular - /// info, laser, price, scan, upc - static const IconData barcode = const IconDataRegular(0xf02a); - - /// Solid barcode icon - /// - /// https://fontawesome.com/icons/barcode?style=solid - /// info, laser, price, scan, upc - static const IconData solidBarcode = const IconDataSolid(0xf02a); - - /// Light barcode icon - /// - /// https://fontawesome.com/icons/light_barcode?style=light - /// info, laser, price, scan, upc - static const IconData lightBarcode = const IconDataLight(0xf02a); - - /// Duotone barcode icon - /// - /// https://fontawesome.com/icons/duotone_barcode?style=duotone - /// info, laser, price, scan, upc - static const IconDataDuotone duotoneBarcode = const IconDataDuotone( - 0xf02a, - secondary: const IconDataDuotone(0x10f02a), - ); - - /// Regular Alternate Barcode icon - /// - /// https://fontawesome.com/icons/barcode-alt?style=regular - /// info, laser, price, scan, upc - static const IconData barcodeAlt = const IconDataRegular(0xf463); - - /// Solid Alternate Barcode icon - /// - /// https://fontawesome.com/icons/barcode-alt?style=solid - /// info, laser, price, scan, upc - static const IconData solidBarcodeAlt = const IconDataSolid(0xf463); - - /// Light Alternate Barcode icon - /// - /// https://fontawesome.com/icons/light_barcode-alt?style=light - /// info, laser, price, scan, upc - static const IconData lightBarcodeAlt = const IconDataLight(0xf463); - - /// Duotone Alternate Barcode icon - /// - /// https://fontawesome.com/icons/duotone_barcode-alt?style=duotone - /// info, laser, price, scan, upc - static const IconDataDuotone duotoneBarcodeAlt = const IconDataDuotone( - 0xf463, - secondary: const IconDataDuotone(0x10f463), - ); - - /// Regular Barcode Read icon - /// - /// https://fontawesome.com/icons/barcode-read?style=regular - /// info, laser, price, scan, upc - static const IconData barcodeRead = const IconDataRegular(0xf464); - - /// Solid Barcode Read icon - /// - /// https://fontawesome.com/icons/barcode-read?style=solid - /// info, laser, price, scan, upc - static const IconData solidBarcodeRead = const IconDataSolid(0xf464); - - /// Light Barcode Read icon - /// - /// https://fontawesome.com/icons/light_barcode-read?style=light - /// info, laser, price, scan, upc - static const IconData lightBarcodeRead = const IconDataLight(0xf464); - - /// Duotone Barcode Read icon - /// - /// https://fontawesome.com/icons/duotone_barcode-read?style=duotone - /// info, laser, price, scan, upc - static const IconDataDuotone duotoneBarcodeRead = const IconDataDuotone( - 0xf464, - secondary: const IconDataDuotone(0x10f464), - ); - - /// Regular Barcode Scan icon - /// - /// https://fontawesome.com/icons/barcode-scan?style=regular - /// info, laser, price, scan, upc - static const IconData barcodeScan = const IconDataRegular(0xf465); - - /// Solid Barcode Scan icon - /// - /// https://fontawesome.com/icons/barcode-scan?style=solid - /// info, laser, price, scan, upc - static const IconData solidBarcodeScan = const IconDataSolid(0xf465); - - /// Light Barcode Scan icon - /// - /// https://fontawesome.com/icons/light_barcode-scan?style=light - /// info, laser, price, scan, upc - static const IconData lightBarcodeScan = const IconDataLight(0xf465); - - /// Duotone Barcode Scan icon - /// - /// https://fontawesome.com/icons/duotone_barcode-scan?style=duotone - /// info, laser, price, scan, upc - static const IconDataDuotone duotoneBarcodeScan = const IconDataDuotone( - 0xf465, - secondary: const IconDataDuotone(0x10f465), - ); - - /// Regular Bars icon - /// - /// https://fontawesome.com/icons/bars?style=regular - /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData bars = const IconDataRegular(0xf0c9); - - /// 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 = const IconDataSolid(0xf0c9); - - /// Light Bars icon - /// - /// https://fontawesome.com/icons/light_bars?style=light - /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconData lightBars = const IconDataLight(0xf0c9); - - /// Duotone Bars icon - /// - /// https://fontawesome.com/icons/duotone_bars?style=duotone - /// checklist, drag, hamburger, list, menu, nav, navigation, ol, reorder, settings, todo, ul - static const IconDataDuotone duotoneBars = const IconDataDuotone( - 0xf0c9, - secondary: const IconDataDuotone(0x10f0c9), - ); - - /// Regular Baseball icon - /// - /// https://fontawesome.com/icons/baseball?style=regular - /// bat, league, mlb, slugger, softball, sport - static const IconData baseball = const IconDataRegular(0xf432); - - /// Solid Baseball icon - /// - /// https://fontawesome.com/icons/baseball?style=solid - /// bat, league, mlb, slugger, softball, sport - static const IconData solidBaseball = const IconDataSolid(0xf432); - - /// Light Baseball icon - /// - /// https://fontawesome.com/icons/light_baseball?style=light - /// bat, league, mlb, slugger, softball, sport - static const IconData lightBaseball = const IconDataLight(0xf432); - - /// Duotone Baseball icon - /// - /// https://fontawesome.com/icons/duotone_baseball?style=duotone - /// bat, league, mlb, slugger, softball, sport - static const IconDataDuotone duotoneBaseball = const IconDataDuotone( - 0xf432, - secondary: const IconDataDuotone(0x10f432), - ); - - /// Regular Baseball Ball icon - /// - /// https://fontawesome.com/icons/baseball-ball?style=regular - /// foul, hardball, league, leather, mlb, softball, sport - static const IconData baseballBall = const IconDataRegular(0xf433); - - /// Solid Baseball Ball icon - /// - /// https://fontawesome.com/icons/baseball-ball?style=solid - /// foul, hardball, league, leather, mlb, softball, sport - static const IconData solidBaseballBall = const IconDataSolid(0xf433); - - /// Light Baseball Ball icon - /// - /// https://fontawesome.com/icons/light_baseball-ball?style=light - /// foul, hardball, league, leather, mlb, softball, sport - static const IconData lightBaseballBall = const IconDataLight(0xf433); - - /// Duotone Baseball Ball icon - /// - /// https://fontawesome.com/icons/duotone_baseball-ball?style=duotone - /// foul, hardball, league, leather, mlb, softball, sport - static const IconDataDuotone duotoneBaseballBall = const IconDataDuotone( - 0xf433, - secondary: const IconDataDuotone(0x10f433), - ); - - /// Regular Basketball Ball icon - /// - /// https://fontawesome.com/icons/basketball-ball?style=regular - /// dribble, dunk, hoop, nba - static const IconData basketballBall = const IconDataRegular(0xf434); - - /// Solid Basketball Ball icon - /// - /// https://fontawesome.com/icons/basketball-ball?style=solid - /// dribble, dunk, hoop, nba - static const IconData solidBasketballBall = const IconDataSolid(0xf434); - - /// Light Basketball Ball icon - /// - /// https://fontawesome.com/icons/light_basketball-ball?style=light - /// dribble, dunk, hoop, nba - static const IconData lightBasketballBall = const IconDataLight(0xf434); - - /// Duotone Basketball Ball icon - /// - /// https://fontawesome.com/icons/duotone_basketball-ball?style=duotone - /// dribble, dunk, hoop, nba - static const IconDataDuotone duotoneBasketballBall = const IconDataDuotone( - 0xf434, - secondary: const IconDataDuotone(0x10f434), - ); - - /// Regular Basketball Hoop icon - /// - /// https://fontawesome.com/icons/basketball-hoop?style=regular - /// backboard, dunk, hoop, nba - static const IconData basketballHoop = const IconDataRegular(0xf435); - - /// Solid Basketball Hoop icon - /// - /// https://fontawesome.com/icons/basketball-hoop?style=solid - /// backboard, dunk, hoop, nba - static const IconData solidBasketballHoop = const IconDataSolid(0xf435); - - /// Light Basketball Hoop icon - /// - /// https://fontawesome.com/icons/light_basketball-hoop?style=light - /// backboard, dunk, hoop, nba - static const IconData lightBasketballHoop = const IconDataLight(0xf435); - - /// Duotone Basketball Hoop icon - /// - /// https://fontawesome.com/icons/duotone_basketball-hoop?style=duotone - /// backboard, dunk, hoop, nba - static const IconDataDuotone duotoneBasketballHoop = const IconDataDuotone( - 0xf435, - secondary: const IconDataDuotone(0x10f435), - ); - - /// Regular Bat icon - /// - /// https://fontawesome.com/icons/bat?style=regular - /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData bat = const IconDataRegular(0xf6b5); - - /// Solid Bat icon - /// - /// https://fontawesome.com/icons/bat?style=solid - /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData solidBat = const IconDataSolid(0xf6b5); - - /// Light Bat icon - /// - /// https://fontawesome.com/icons/light_bat?style=light - /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconData lightBat = const IconDataLight(0xf6b5); - - /// Duotone Bat icon - /// - /// https://fontawesome.com/icons/duotone_bat?style=duotone - /// animal, batman, bruce wayne, flying, gotham, halloween, mammal, vampire, wings - static const IconDataDuotone duotoneBat = const IconDataDuotone( - 0xf6b5, - secondary: const IconDataDuotone(0x10f6b5), - ); - - /// Regular Bath icon - /// - /// https://fontawesome.com/icons/bath?style=regular - /// clean, shower, tub, wash - static const IconData bath = const IconDataRegular(0xf2cd); - - /// Solid Bath icon - /// - /// https://fontawesome.com/icons/bath?style=solid - /// clean, shower, tub, wash - static const IconData solidBath = const IconDataSolid(0xf2cd); - - /// Light Bath icon - /// - /// https://fontawesome.com/icons/light_bath?style=light - /// clean, shower, tub, wash - static const IconData lightBath = const IconDataLight(0xf2cd); - - /// Duotone Bath icon - /// - /// https://fontawesome.com/icons/duotone_bath?style=duotone - /// clean, shower, tub, wash - static const IconDataDuotone duotoneBath = const IconDataDuotone( - 0xf2cd, - secondary: const IconDataDuotone(0x10f2cd), - ); - - /// Regular Battery Bolt icon - /// - /// https://fontawesome.com/icons/battery-bolt?style=regular - /// charge, power, status - static const IconData batteryBolt = const IconDataRegular(0xf376); - - /// Solid Battery Bolt icon - /// - /// https://fontawesome.com/icons/battery-bolt?style=solid - /// charge, power, status - static const IconData solidBatteryBolt = const IconDataSolid(0xf376); - - /// Light Battery Bolt icon - /// - /// https://fontawesome.com/icons/light_battery-bolt?style=light - /// charge, power, status - static const IconData lightBatteryBolt = const IconDataLight(0xf376); - - /// Duotone Battery Bolt icon - /// - /// https://fontawesome.com/icons/duotone_battery-bolt?style=duotone - /// charge, power, status - static const IconDataDuotone duotoneBatteryBolt = const IconDataDuotone( - 0xf376, - secondary: const IconDataDuotone(0x10f376), - ); - - /// Regular Battery Empty icon - /// - /// https://fontawesome.com/icons/battery-empty?style=regular - /// charge, dead, power, status - static const IconData batteryEmpty = const IconDataRegular(0xf244); - - /// Solid Battery Empty icon - /// - /// https://fontawesome.com/icons/battery-empty?style=solid - /// charge, dead, power, status - static const IconData solidBatteryEmpty = const IconDataSolid(0xf244); - - /// Light Battery Empty icon - /// - /// https://fontawesome.com/icons/light_battery-empty?style=light - /// charge, dead, power, status - static const IconData lightBatteryEmpty = const IconDataLight(0xf244); - - /// Duotone Battery Empty icon - /// - /// https://fontawesome.com/icons/duotone_battery-empty?style=duotone - /// charge, dead, power, status - static const IconDataDuotone duotoneBatteryEmpty = const IconDataDuotone( - 0xf244, - secondary: const IconDataDuotone(0x10f244), - ); - - /// Regular Battery Full icon - /// - /// https://fontawesome.com/icons/battery-full?style=regular - /// charge, power, status - static const IconData batteryFull = const IconDataRegular(0xf240); - - /// Solid Battery Full icon - /// - /// https://fontawesome.com/icons/battery-full?style=solid - /// charge, power, status - static const IconData solidBatteryFull = const IconDataSolid(0xf240); - - /// Light Battery Full icon - /// - /// https://fontawesome.com/icons/light_battery-full?style=light - /// charge, power, status - static const IconData lightBatteryFull = const IconDataLight(0xf240); - - /// Duotone Battery Full icon - /// - /// https://fontawesome.com/icons/duotone_battery-full?style=duotone - /// charge, power, status - static const IconDataDuotone duotoneBatteryFull = const IconDataDuotone( - 0xf240, - secondary: const IconDataDuotone(0x10f240), - ); - - /// Regular Battery 1/2 Full icon - /// - /// https://fontawesome.com/icons/battery-half?style=regular - /// charge, power, status - static const IconData batteryHalf = const IconDataRegular(0xf242); - - /// Solid Battery 1/2 Full icon - /// - /// https://fontawesome.com/icons/battery-half?style=solid - /// charge, power, status - static const IconData solidBatteryHalf = const IconDataSolid(0xf242); - - /// Light Battery 1/2 Full icon - /// - /// https://fontawesome.com/icons/light_battery-half?style=light - /// charge, power, status - static const IconData lightBatteryHalf = const IconDataLight(0xf242); - - /// Duotone Battery 1/2 Full icon - /// - /// https://fontawesome.com/icons/duotone_battery-half?style=duotone - /// charge, power, status - static const IconDataDuotone duotoneBatteryHalf = const IconDataDuotone( - 0xf242, - secondary: const IconDataDuotone(0x10f242), - ); - - /// Regular Battery 1/4 Full icon - /// - /// https://fontawesome.com/icons/battery-quarter?style=regular - /// charge, low, power, status - static const IconData batteryQuarter = const IconDataRegular(0xf243); - - /// Solid Battery 1/4 Full icon - /// - /// https://fontawesome.com/icons/battery-quarter?style=solid - /// charge, low, power, status - static const IconData solidBatteryQuarter = const IconDataSolid(0xf243); - - /// Light Battery 1/4 Full icon - /// - /// https://fontawesome.com/icons/light_battery-quarter?style=light - /// charge, low, power, status - static const IconData lightBatteryQuarter = const IconDataLight(0xf243); - - /// Duotone Battery 1/4 Full icon - /// - /// https://fontawesome.com/icons/duotone_battery-quarter?style=duotone - /// charge, low, power, status - static const IconDataDuotone duotoneBatteryQuarter = const IconDataDuotone( - 0xf243, - secondary: const IconDataDuotone(0x10f243), - ); - - /// Regular Battery Slash icon - /// - /// https://fontawesome.com/icons/battery-slash?style=regular - /// charge, dead, power, status - static const IconData batterySlash = const IconDataRegular(0xf377); - - /// Solid Battery Slash icon - /// - /// https://fontawesome.com/icons/battery-slash?style=solid - /// charge, dead, power, status - static const IconData solidBatterySlash = const IconDataSolid(0xf377); - - /// Light Battery Slash icon - /// - /// https://fontawesome.com/icons/light_battery-slash?style=light - /// charge, dead, power, status - static const IconData lightBatterySlash = const IconDataLight(0xf377); - - /// Duotone Battery Slash icon - /// - /// https://fontawesome.com/icons/duotone_battery-slash?style=duotone - /// charge, dead, power, status - static const IconDataDuotone duotoneBatterySlash = const IconDataDuotone( - 0xf377, - secondary: const IconDataDuotone(0x10f377), - ); - - /// Regular Battery 3/4 Full icon - /// - /// https://fontawesome.com/icons/battery-three-quarters?style=regular - /// charge, power, status - static const IconData batteryThreeQuarters = const IconDataRegular(0xf241); - - /// Solid Battery 3/4 Full icon - /// - /// https://fontawesome.com/icons/battery-three-quarters?style=solid - /// charge, power, status - static const IconData solidBatteryThreeQuarters = const IconDataSolid(0xf241); - - /// Light Battery 3/4 Full icon - /// - /// https://fontawesome.com/icons/light_battery-three-quarters?style=light - /// charge, power, status - static const IconData lightBatteryThreeQuarters = const IconDataLight(0xf241); - - /// Duotone Battery 3/4 Full icon - /// - /// https://fontawesome.com/icons/duotone_battery-three-quarters?style=duotone - /// charge, power, status - static const IconDataDuotone duotoneBatteryThreeQuarters = - const IconDataDuotone( - 0xf241, - secondary: const IconDataDuotone(0x10f241), - ); - - /// Brands Battle.net icon - /// - /// https://fontawesome.com/icons/battle-net?style=brands - static const IconData battleNet = const IconDataBrands(0xf835); - - /// Regular Bed icon - /// - /// https://fontawesome.com/icons/bed?style=regular - /// lodging, mattress, rest, sleep, travel - static const IconData bed = const IconDataRegular(0xf236); - - /// Solid Bed icon - /// - /// https://fontawesome.com/icons/bed?style=solid - /// lodging, mattress, rest, sleep, travel - static const IconData solidBed = const IconDataSolid(0xf236); - - /// Light Bed icon - /// - /// https://fontawesome.com/icons/light_bed?style=light - /// lodging, mattress, rest, sleep, travel - static const IconData lightBed = const IconDataLight(0xf236); - - /// Duotone Bed icon - /// - /// https://fontawesome.com/icons/duotone_bed?style=duotone - /// lodging, mattress, rest, sleep, travel - static const IconDataDuotone duotoneBed = const IconDataDuotone( - 0xf236, - secondary: const IconDataDuotone(0x10f236), - ); - - /// Regular Alternate Bed icon - /// - /// https://fontawesome.com/icons/bed-alt?style=regular - /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData bedAlt = const IconDataRegular(0xf8f7); - - /// Solid Alternate Bed icon - /// - /// https://fontawesome.com/icons/bed-alt?style=solid - /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData solidBedAlt = const IconDataSolid(0xf8f7); - - /// Light Alternate Bed icon - /// - /// https://fontawesome.com/icons/light_bed-alt?style=light - /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconData lightBedAlt = const IconDataLight(0xf8f7); - - /// Duotone Alternate Bed icon - /// - /// https://fontawesome.com/icons/duotone_bed-alt?style=duotone - /// double, king, lodging, mattress, pillows, queen, rest, sleep, travel - static const IconDataDuotone duotoneBedAlt = const IconDataDuotone( - 0xf8f7, - secondary: const IconDataDuotone(0x10f8f7), - ); - - /// Regular Bunkbed icon - /// - /// https://fontawesome.com/icons/bed-bunk?style=regular - /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData bedBunk = const IconDataRegular(0xf8f8); - - /// Solid Bunkbed icon - /// - /// https://fontawesome.com/icons/bed-bunk?style=solid - /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData solidBedBunk = const IconDataSolid(0xf8f8); - - /// Light Bunkbed icon - /// - /// https://fontawesome.com/icons/light_bed-bunk?style=light - /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconData lightBedBunk = const IconDataLight(0xf8f8); - - /// Duotone Bunkbed icon - /// - /// https://fontawesome.com/icons/duotone_bed-bunk?style=duotone - /// lodging, mattress, rest, siblings, sleep, sleepover, travel - static const IconDataDuotone duotoneBedBunk = const IconDataDuotone( - 0xf8f8, - secondary: const IconDataDuotone(0x10f8f8), - ); - - /// Regular Bed Empty icon - /// - /// https://fontawesome.com/icons/bed-empty?style=regular - /// lodging, mattress, rest, sleep, travel - static const IconData bedEmpty = const IconDataRegular(0xf8f9); - - /// Solid Bed Empty icon - /// - /// https://fontawesome.com/icons/bed-empty?style=solid - /// lodging, mattress, rest, sleep, travel - static const IconData solidBedEmpty = const IconDataSolid(0xf8f9); - - /// Light Bed Empty icon - /// - /// https://fontawesome.com/icons/light_bed-empty?style=light - /// lodging, mattress, rest, sleep, travel - static const IconData lightBedEmpty = const IconDataLight(0xf8f9); - - /// Duotone Bed Empty icon - /// - /// https://fontawesome.com/icons/duotone_bed-empty?style=duotone - /// lodging, mattress, rest, sleep, travel - static const IconDataDuotone duotoneBedEmpty = const IconDataDuotone( - 0xf8f9, - secondary: const IconDataDuotone(0x10f8f9), - ); - - /// Regular beer icon - /// - /// https://fontawesome.com/icons/beer?style=regular - /// alcohol, ale, bar, beverage, brewery, drink, lager, liquor, mug, stein - static const IconData beer = const IconDataRegular(0xf0fc); - - /// Solid beer icon - /// - /// https://fontawesome.com/icons/beer?style=solid - /// alcohol, ale, bar, beverage, brewery, drink, lager, liquor, mug, stein - static const IconData solidBeer = const IconDataSolid(0xf0fc); - - /// Light beer icon - /// - /// https://fontawesome.com/icons/light_beer?style=light - /// alcohol, ale, bar, beverage, brewery, drink, lager, liquor, mug, stein - static const IconData lightBeer = const IconDataLight(0xf0fc); - - /// Duotone beer icon - /// - /// https://fontawesome.com/icons/duotone_beer?style=duotone - /// alcohol, ale, bar, beverage, brewery, drink, lager, liquor, mug, stein - static const IconDataDuotone duotoneBeer = const IconDataDuotone( - 0xf0fc, - secondary: const IconDataDuotone(0x10f0fc), - ); - - /// Brands Behance icon - /// - /// https://fontawesome.com/icons/behance?style=brands - static const IconData behance = const IconDataBrands(0xf1b4); - - /// Brands Behance Square icon - /// - /// https://fontawesome.com/icons/behance-square?style=brands - static const IconData behanceSquare = const IconDataBrands(0xf1b5); - - /// Regular bell icon - /// - /// https://fontawesome.com/icons/bell?style=regular - /// alarm, alert, chime, notification, reminder - static const IconData bell = const IconDataRegular(0xf0f3); - - /// Solid bell icon - /// - /// https://fontawesome.com/icons/bell?style=solid - /// alarm, alert, chime, notification, reminder - static const IconData solidBell = const IconDataSolid(0xf0f3); - - /// Light bell icon - /// - /// https://fontawesome.com/icons/light_bell?style=light - /// alarm, alert, chime, notification, reminder - static const IconData lightBell = const IconDataLight(0xf0f3); - - /// Duotone bell icon - /// - /// https://fontawesome.com/icons/duotone_bell?style=duotone - /// alarm, alert, chime, notification, reminder - static const IconDataDuotone duotoneBell = const IconDataDuotone( - 0xf0f3, - secondary: const IconDataDuotone(0x10f0f3), - ); - - /// Regular Bell Exclamation icon - /// - /// https://fontawesome.com/icons/bell-exclamation?style=regular - /// alarm, alert, chime, notification, reminder - static const IconData bellExclamation = const IconDataRegular(0xf848); - - /// Solid Bell Exclamation icon - /// - /// https://fontawesome.com/icons/bell-exclamation?style=solid - /// alarm, alert, chime, notification, reminder - static const IconData solidBellExclamation = const IconDataSolid(0xf848); - - /// Light Bell Exclamation icon - /// - /// https://fontawesome.com/icons/light_bell-exclamation?style=light - /// alarm, alert, chime, notification, reminder - static const IconData lightBellExclamation = const IconDataLight(0xf848); - - /// Duotone Bell Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_bell-exclamation?style=duotone - /// alarm, alert, chime, notification, reminder - static const IconDataDuotone duotoneBellExclamation = const IconDataDuotone( - 0xf848, - secondary: const IconDataDuotone(0x10f848), - ); - - /// Regular Bell On icon - /// - /// https://fontawesome.com/icons/bell-on?style=regular - /// alarm, alert, chime, notification, reminder - static const IconData bellOn = const IconDataRegular(0xf8fa); - - /// Solid Bell On icon - /// - /// https://fontawesome.com/icons/bell-on?style=solid - /// alarm, alert, chime, notification, reminder - static const IconData solidBellOn = const IconDataSolid(0xf8fa); - - /// Light Bell On icon - /// - /// https://fontawesome.com/icons/light_bell-on?style=light - /// alarm, alert, chime, notification, reminder - static const IconData lightBellOn = const IconDataLight(0xf8fa); - - /// Duotone Bell On icon - /// - /// https://fontawesome.com/icons/duotone_bell-on?style=duotone - /// alarm, alert, chime, notification, reminder - static const IconDataDuotone duotoneBellOn = const IconDataDuotone( - 0xf8fa, - secondary: const IconDataDuotone(0x10f8fa), - ); - - /// Regular Bell Plus icon - /// - /// https://fontawesome.com/icons/bell-plus?style=regular - /// alarm, alert, chime, notification, reminder - static const IconData bellPlus = const IconDataRegular(0xf849); - - /// Solid Bell Plus icon - /// - /// https://fontawesome.com/icons/bell-plus?style=solid - /// alarm, alert, chime, notification, reminder - static const IconData solidBellPlus = const IconDataSolid(0xf849); - - /// Light Bell Plus icon - /// - /// https://fontawesome.com/icons/light_bell-plus?style=light - /// alarm, alert, chime, notification, reminder - static const IconData lightBellPlus = const IconDataLight(0xf849); - - /// Duotone Bell Plus icon - /// - /// https://fontawesome.com/icons/duotone_bell-plus?style=duotone - /// alarm, alert, chime, notification, reminder - static const IconDataDuotone duotoneBellPlus = const IconDataDuotone( - 0xf849, - secondary: const IconDataDuotone(0x10f849), - ); - - /// Regular Bell School icon - /// - /// https://fontawesome.com/icons/bell-school?style=regular - /// alert, chime, class, notification, reminder - static const IconData bellSchool = const IconDataRegular(0xf5d5); - - /// Solid Bell School icon - /// - /// https://fontawesome.com/icons/bell-school?style=solid - /// alert, chime, class, notification, reminder - static const IconData solidBellSchool = const IconDataSolid(0xf5d5); - - /// Light Bell School icon - /// - /// https://fontawesome.com/icons/light_bell-school?style=light - /// alert, chime, class, notification, reminder - static const IconData lightBellSchool = const IconDataLight(0xf5d5); - - /// Duotone Bell School icon - /// - /// https://fontawesome.com/icons/duotone_bell-school?style=duotone - /// alert, chime, class, notification, reminder - static const IconDataDuotone duotoneBellSchool = const IconDataDuotone( - 0xf5d5, - secondary: const IconDataDuotone(0x10f5d5), - ); - - /// 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 = const IconDataRegular(0xf5d6); - - /// 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 = const IconDataSolid(0xf5d6); - - /// Light Bell School Slash icon - /// - /// https://fontawesome.com/icons/light_bell-school-slash?style=light - /// alert, cancel, class, disabled, notification, off, reminder - static const IconData lightBellSchoolSlash = const IconDataLight(0xf5d6); - - /// Duotone Bell School Slash icon - /// - /// https://fontawesome.com/icons/duotone_bell-school-slash?style=duotone - /// alert, cancel, class, disabled, notification, off, reminder - static const IconDataDuotone duotoneBellSchoolSlash = const IconDataDuotone( - 0xf5d6, - secondary: const IconDataDuotone(0x10f5d6), - ); - - /// Regular Bell Slash icon - /// - /// https://fontawesome.com/icons/bell-slash?style=regular - /// alert, cancel, disabled, notification, off, reminder - static const IconData bellSlash = const IconDataRegular(0xf1f6); - - /// Solid Bell Slash icon - /// - /// https://fontawesome.com/icons/bell-slash?style=solid - /// alert, cancel, disabled, notification, off, reminder - static const IconData solidBellSlash = const IconDataSolid(0xf1f6); - - /// Light Bell Slash icon - /// - /// https://fontawesome.com/icons/light_bell-slash?style=light - /// alert, cancel, disabled, notification, off, reminder - static const IconData lightBellSlash = const IconDataLight(0xf1f6); - - /// Duotone Bell Slash icon - /// - /// https://fontawesome.com/icons/duotone_bell-slash?style=duotone - /// alert, cancel, disabled, notification, off, reminder - static const IconDataDuotone duotoneBellSlash = const IconDataDuotone( - 0xf1f6, - secondary: const IconDataDuotone(0x10f1f6), - ); - - /// Regular Bells icon - /// - /// https://fontawesome.com/icons/bells?style=regular - /// alert, christmas, holiday, notification, reminder, xmas - static const IconData bells = const IconDataRegular(0xf77f); - - /// Solid Bells icon - /// - /// https://fontawesome.com/icons/bells?style=solid - /// alert, christmas, holiday, notification, reminder, xmas - static const IconData solidBells = const IconDataSolid(0xf77f); - - /// Light Bells icon - /// - /// https://fontawesome.com/icons/light_bells?style=light - /// alert, christmas, holiday, notification, reminder, xmas - static const IconData lightBells = const IconDataLight(0xf77f); - - /// Duotone Bells icon - /// - /// https://fontawesome.com/icons/duotone_bells?style=duotone - /// alert, christmas, holiday, notification, reminder, xmas - static const IconDataDuotone duotoneBells = const IconDataDuotone( - 0xf77f, - secondary: const IconDataDuotone(0x10f77f), - ); - - /// Regular Betamax icon - /// - /// https://fontawesome.com/icons/betamax?style=regular - /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData betamax = const IconDataRegular(0xf8a4); - - /// Solid Betamax icon - /// - /// https://fontawesome.com/icons/betamax?style=solid - /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData solidBetamax = const IconDataSolid(0xf8a4); - - /// Light Betamax icon - /// - /// https://fontawesome.com/icons/light_betamax?style=light - /// cassette, rental, retro, tape, vhs, video, vintage - static const IconData lightBetamax = const IconDataLight(0xf8a4); - - /// Duotone Betamax icon - /// - /// https://fontawesome.com/icons/duotone_betamax?style=duotone - /// cassette, rental, retro, tape, vhs, video, vintage - static const IconDataDuotone duotoneBetamax = const IconDataDuotone( - 0xf8a4, - secondary: const IconDataDuotone(0x10f8a4), - ); - - /// Regular Bezier Curve icon - /// - /// https://fontawesome.com/icons/bezier-curve?style=regular - /// curves, illustrator, lines, path, vector - static const IconData bezierCurve = const IconDataRegular(0xf55b); - - /// Solid Bezier Curve icon - /// - /// https://fontawesome.com/icons/bezier-curve?style=solid - /// curves, illustrator, lines, path, vector - static const IconData solidBezierCurve = const IconDataSolid(0xf55b); - - /// Light Bezier Curve icon - /// - /// https://fontawesome.com/icons/light_bezier-curve?style=light - /// curves, illustrator, lines, path, vector - static const IconData lightBezierCurve = const IconDataLight(0xf55b); - - /// Duotone Bezier Curve icon - /// - /// https://fontawesome.com/icons/duotone_bezier-curve?style=duotone - /// curves, illustrator, lines, path, vector - static const IconDataDuotone duotoneBezierCurve = const IconDataDuotone( - 0xf55b, - secondary: const IconDataDuotone(0x10f55b), - ); - - /// Regular Bible icon - /// - /// https://fontawesome.com/icons/bible?style=regular - /// book, catholicism, christianity, god, holy - static const IconData bible = const IconDataRegular(0xf647); - - /// Solid Bible icon - /// - /// https://fontawesome.com/icons/bible?style=solid - /// book, catholicism, christianity, god, holy - static const IconData solidBible = const IconDataSolid(0xf647); - - /// Light Bible icon - /// - /// https://fontawesome.com/icons/light_bible?style=light - /// book, catholicism, christianity, god, holy - static const IconData lightBible = const IconDataLight(0xf647); - - /// Duotone Bible icon - /// - /// https://fontawesome.com/icons/duotone_bible?style=duotone - /// book, catholicism, christianity, god, holy - static const IconDataDuotone duotoneBible = const IconDataDuotone( - 0xf647, - secondary: const IconDataDuotone(0x10f647), - ); - - /// Regular Bicycle icon - /// - /// https://fontawesome.com/icons/bicycle?style=regular - /// bike, gears, pedal, transportation, vehicle - static const IconData bicycle = const IconDataRegular(0xf206); - - /// Solid Bicycle icon - /// - /// https://fontawesome.com/icons/bicycle?style=solid - /// bike, gears, pedal, transportation, vehicle - static const IconData solidBicycle = const IconDataSolid(0xf206); - - /// Light Bicycle icon - /// - /// https://fontawesome.com/icons/light_bicycle?style=light - /// bike, gears, pedal, transportation, vehicle - static const IconData lightBicycle = const IconDataLight(0xf206); - - /// Duotone Bicycle icon - /// - /// https://fontawesome.com/icons/duotone_bicycle?style=duotone - /// bike, gears, pedal, transportation, vehicle - static const IconDataDuotone duotoneBicycle = const IconDataDuotone( - 0xf206, - secondary: const IconDataDuotone(0x10f206), - ); - - /// Regular Biking icon - /// - /// https://fontawesome.com/icons/biking?style=regular - /// bicycle, bike, cycle, cycling, ride, wheel - static const IconData biking = const IconDataRegular(0xf84a); - - /// Solid Biking icon - /// - /// https://fontawesome.com/icons/biking?style=solid - /// bicycle, bike, cycle, cycling, ride, wheel - static const IconData solidBiking = const IconDataSolid(0xf84a); - - /// Light Biking icon - /// - /// https://fontawesome.com/icons/light_biking?style=light - /// bicycle, bike, cycle, cycling, ride, wheel - static const IconData lightBiking = const IconDataLight(0xf84a); - - /// Duotone Biking icon - /// - /// https://fontawesome.com/icons/duotone_biking?style=duotone - /// bicycle, bike, cycle, cycling, ride, wheel - static const IconDataDuotone duotoneBiking = const IconDataDuotone( - 0xf84a, - secondary: const IconDataDuotone(0x10f84a), - ); - - /// Regular Biking Mountain icon - /// - /// https://fontawesome.com/icons/biking-mountain?style=regular - /// bicycle, bike, cycle, cycling, offroad, ride, trail, wheel - static const IconData bikingMountain = const IconDataRegular(0xf84b); - - /// Solid Biking Mountain icon - /// - /// https://fontawesome.com/icons/biking-mountain?style=solid - /// bicycle, bike, cycle, cycling, offroad, ride, trail, wheel - static const IconData solidBikingMountain = const IconDataSolid(0xf84b); - - /// Light Biking Mountain icon - /// - /// https://fontawesome.com/icons/light_biking-mountain?style=light - /// bicycle, bike, cycle, cycling, offroad, ride, trail, wheel - static const IconData lightBikingMountain = const IconDataLight(0xf84b); - - /// Duotone Biking Mountain icon - /// - /// https://fontawesome.com/icons/duotone_biking-mountain?style=duotone - /// bicycle, bike, cycle, cycling, offroad, ride, trail, wheel - static const IconDataDuotone duotoneBikingMountain = const IconDataDuotone( - 0xf84b, - secondary: const IconDataDuotone(0x10f84b), - ); - - /// Brands BIMobject icon - /// - /// https://fontawesome.com/icons/bimobject?style=brands - static const IconData bimobject = const IconDataBrands(0xf378); - - /// Regular Binoculars icon - /// - /// https://fontawesome.com/icons/binoculars?style=regular - /// glasses, magnify, scenic, spyglass, view - static const IconData binoculars = const IconDataRegular(0xf1e5); - - /// Solid Binoculars icon - /// - /// https://fontawesome.com/icons/binoculars?style=solid - /// glasses, magnify, scenic, spyglass, view - static const IconData solidBinoculars = const IconDataSolid(0xf1e5); - - /// Light Binoculars icon - /// - /// https://fontawesome.com/icons/light_binoculars?style=light - /// glasses, magnify, scenic, spyglass, view - static const IconData lightBinoculars = const IconDataLight(0xf1e5); - - /// Duotone Binoculars icon - /// - /// https://fontawesome.com/icons/duotone_binoculars?style=duotone - /// glasses, magnify, scenic, spyglass, view - static const IconDataDuotone duotoneBinoculars = const IconDataDuotone( - 0xf1e5, - secondary: const IconDataDuotone(0x10f1e5), - ); - - /// Regular Biohazard icon - /// - /// https://fontawesome.com/icons/biohazard?style=regular - /// covid-19, danger, dangerous, hazmat, medical, radioactive, toxic, waste, zombie - static const IconData biohazard = const IconDataRegular(0xf780); - - /// Solid Biohazard icon - /// - /// https://fontawesome.com/icons/biohazard?style=solid - /// covid-19, danger, dangerous, hazmat, medical, radioactive, toxic, waste, zombie - static const IconData solidBiohazard = const IconDataSolid(0xf780); - - /// Light Biohazard icon - /// - /// https://fontawesome.com/icons/light_biohazard?style=light - /// covid-19, danger, dangerous, hazmat, medical, radioactive, toxic, waste, zombie - static const IconData lightBiohazard = const IconDataLight(0xf780); - - /// Duotone Biohazard icon - /// - /// https://fontawesome.com/icons/duotone_biohazard?style=duotone - /// covid-19, danger, dangerous, hazmat, medical, radioactive, toxic, waste, zombie - static const IconDataDuotone duotoneBiohazard = const IconDataDuotone( - 0xf780, - secondary: const IconDataDuotone(0x10f780), - ); - - /// Regular Birthday Cake icon - /// - /// https://fontawesome.com/icons/birthday-cake?style=regular - /// anniversary, bakery, candles, celebration, dessert, frosting, holiday, party, pastry - static const IconData birthdayCake = const IconDataRegular(0xf1fd); - - /// Solid Birthday Cake icon - /// - /// https://fontawesome.com/icons/birthday-cake?style=solid - /// anniversary, bakery, candles, celebration, dessert, frosting, holiday, party, pastry - static const IconData solidBirthdayCake = const IconDataSolid(0xf1fd); - - /// Light Birthday Cake icon - /// - /// https://fontawesome.com/icons/light_birthday-cake?style=light - /// anniversary, bakery, candles, celebration, dessert, frosting, holiday, party, pastry - static const IconData lightBirthdayCake = const IconDataLight(0xf1fd); - - /// Duotone Birthday Cake icon - /// - /// https://fontawesome.com/icons/duotone_birthday-cake?style=duotone - /// anniversary, bakery, candles, celebration, dessert, frosting, holiday, party, pastry - static const IconDataDuotone duotoneBirthdayCake = const IconDataDuotone( - 0xf1fd, - secondary: const IconDataDuotone(0x10f1fd), - ); - - /// Brands Bitbucket icon - /// - /// https://fontawesome.com/icons/bitbucket?style=brands - /// atlassian, bitbucket-square, git - static const IconData bitbucket = const IconDataBrands(0xf171); - - /// Brands Bitcoin icon - /// - /// https://fontawesome.com/icons/bitcoin?style=brands - static const IconData bitcoin = const IconDataBrands(0xf379); - - /// Brands Bity icon - /// - /// https://fontawesome.com/icons/bity?style=brands - static const IconData bity = const IconDataBrands(0xf37a); - - /// Brands Font Awesome Black Tie icon - /// - /// https://fontawesome.com/icons/black-tie?style=brands - static const IconData blackTie = const IconDataBrands(0xf27e); - - /// Brands BlackBerry icon - /// - /// https://fontawesome.com/icons/blackberry?style=brands - static const IconData blackberry = const IconDataBrands(0xf37b); - - /// Regular Blanket icon - /// - /// https://fontawesome.com/icons/blanket?style=regular - /// bed, cover, cozy, sleep, warm - static const IconData blanket = const IconDataRegular(0xf498); - - /// Solid Blanket icon - /// - /// https://fontawesome.com/icons/blanket?style=solid - /// bed, cover, cozy, sleep, warm - static const IconData solidBlanket = const IconDataSolid(0xf498); - - /// Light Blanket icon - /// - /// https://fontawesome.com/icons/light_blanket?style=light - /// bed, cover, cozy, sleep, warm - static const IconData lightBlanket = const IconDataLight(0xf498); - - /// Duotone Blanket icon - /// - /// https://fontawesome.com/icons/duotone_blanket?style=duotone - /// bed, cover, cozy, sleep, warm - static const IconDataDuotone duotoneBlanket = const IconDataDuotone( - 0xf498, - secondary: const IconDataDuotone(0x10f498), - ); - - /// Regular Blender icon - /// - /// https://fontawesome.com/icons/blender?style=regular - /// cocktail, milkshake, mixer, puree, smoothie - static const IconData blender = const IconDataRegular(0xf517); - - /// Solid Blender icon - /// - /// https://fontawesome.com/icons/blender?style=solid - /// cocktail, milkshake, mixer, puree, smoothie - static const IconData solidBlender = const IconDataSolid(0xf517); - - /// Light Blender icon - /// - /// https://fontawesome.com/icons/light_blender?style=light - /// cocktail, milkshake, mixer, puree, smoothie - static const IconData lightBlender = const IconDataLight(0xf517); - - /// Duotone Blender icon - /// - /// https://fontawesome.com/icons/duotone_blender?style=duotone - /// cocktail, milkshake, mixer, puree, smoothie - static const IconDataDuotone duotoneBlender = const IconDataDuotone( - 0xf517, - secondary: const IconDataDuotone(0x10f517), - ); - - /// Regular Blender Phone icon - /// - /// https://fontawesome.com/icons/blender-phone?style=regular - /// appliance, cocktail, communication, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData blenderPhone = const IconDataRegular(0xf6b6); - - /// Solid Blender Phone icon - /// - /// https://fontawesome.com/icons/blender-phone?style=solid - /// appliance, cocktail, communication, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData solidBlenderPhone = const IconDataSolid(0xf6b6); - - /// Light Blender Phone icon - /// - /// https://fontawesome.com/icons/light_blender-phone?style=light - /// appliance, cocktail, communication, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconData lightBlenderPhone = const IconDataLight(0xf6b6); - - /// Duotone Blender Phone icon - /// - /// https://fontawesome.com/icons/duotone_blender-phone?style=duotone - /// appliance, cocktail, communication, fantasy, milkshake, mixer, puree, silly, smoothie - static const IconDataDuotone duotoneBlenderPhone = const IconDataDuotone( - 0xf6b6, - secondary: const IconDataDuotone(0x10f6b6), - ); - - /// Regular Blind icon - /// - /// https://fontawesome.com/icons/blind?style=regular - /// cane, disability, person, sight - static const IconData blind = const IconDataRegular(0xf29d); - - /// Solid Blind icon - /// - /// https://fontawesome.com/icons/blind?style=solid - /// cane, disability, person, sight - static const IconData solidBlind = const IconDataSolid(0xf29d); - - /// Light Blind icon - /// - /// https://fontawesome.com/icons/light_blind?style=light - /// cane, disability, person, sight - static const IconData lightBlind = const IconDataLight(0xf29d); - - /// Duotone Blind icon - /// - /// https://fontawesome.com/icons/duotone_blind?style=duotone - /// cane, disability, person, sight - static const IconDataDuotone duotoneBlind = const IconDataDuotone( - 0xf29d, - secondary: const IconDataDuotone(0x10f29d), - ); - - /// Regular Blinds icon - /// - /// https://fontawesome.com/icons/blinds?style=regular - /// privacy, shutter, window - static const IconData blinds = const IconDataRegular(0xf8fb); - - /// Solid Blinds icon - /// - /// https://fontawesome.com/icons/blinds?style=solid - /// privacy, shutter, window - static const IconData solidBlinds = const IconDataSolid(0xf8fb); - - /// Light Blinds icon - /// - /// https://fontawesome.com/icons/light_blinds?style=light - /// privacy, shutter, window - static const IconData lightBlinds = const IconDataLight(0xf8fb); - - /// Duotone Blinds icon - /// - /// https://fontawesome.com/icons/duotone_blinds?style=duotone - /// privacy, shutter, window - static const IconDataDuotone duotoneBlinds = const IconDataDuotone( - 0xf8fb, - secondary: const IconDataDuotone(0x10f8fb), - ); - - /// Regular Blinds Open icon - /// - /// https://fontawesome.com/icons/blinds-open?style=regular - /// privacy, shutter, window - static const IconData blindsOpen = const IconDataRegular(0xf8fc); - - /// Solid Blinds Open icon - /// - /// https://fontawesome.com/icons/blinds-open?style=solid - /// privacy, shutter, window - static const IconData solidBlindsOpen = const IconDataSolid(0xf8fc); - - /// Light Blinds Open icon - /// - /// https://fontawesome.com/icons/light_blinds-open?style=light - /// privacy, shutter, window - static const IconData lightBlindsOpen = const IconDataLight(0xf8fc); - - /// Duotone Blinds Open icon - /// - /// https://fontawesome.com/icons/duotone_blinds-open?style=duotone - /// privacy, shutter, window - static const IconDataDuotone duotoneBlindsOpen = const IconDataDuotone( - 0xf8fc, - secondary: const IconDataDuotone(0x10f8fc), - ); - - /// Regular Blinds Raised icon - /// - /// https://fontawesome.com/icons/blinds-raised?style=regular - /// privacy, shutter, window - static const IconData blindsRaised = const IconDataRegular(0xf8fd); - - /// Solid Blinds Raised icon - /// - /// https://fontawesome.com/icons/blinds-raised?style=solid - /// privacy, shutter, window - static const IconData solidBlindsRaised = const IconDataSolid(0xf8fd); - - /// Light Blinds Raised icon - /// - /// https://fontawesome.com/icons/light_blinds-raised?style=light - /// privacy, shutter, window - static const IconData lightBlindsRaised = const IconDataLight(0xf8fd); - - /// Duotone Blinds Raised icon - /// - /// https://fontawesome.com/icons/duotone_blinds-raised?style=duotone - /// privacy, shutter, window - static const IconDataDuotone duotoneBlindsRaised = const IconDataDuotone( - 0xf8fd, - secondary: const IconDataDuotone(0x10f8fd), - ); - - /// Regular Blog icon - /// - /// https://fontawesome.com/icons/blog?style=regular - /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData blog = const IconDataRegular(0xf781); - - /// Solid Blog icon - /// - /// https://fontawesome.com/icons/blog?style=solid - /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData solidBlog = const IconDataSolid(0xf781); - - /// Light Blog icon - /// - /// https://fontawesome.com/icons/light_blog?style=light - /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconData lightBlog = const IconDataLight(0xf781); - - /// Duotone Blog icon - /// - /// https://fontawesome.com/icons/duotone_blog?style=duotone - /// journal, log, online, personal, post, web 2.0, wordpress, writing - static const IconDataDuotone duotoneBlog = const IconDataDuotone( - 0xf781, - secondary: const IconDataDuotone(0x10f781), - ); - - /// Brands Blogger icon - /// - /// https://fontawesome.com/icons/blogger?style=brands - static const IconData blogger = const IconDataBrands(0xf37c); - - /// Brands Blogger B icon - /// - /// https://fontawesome.com/icons/blogger-b?style=brands - static const IconData bloggerB = const IconDataBrands(0xf37d); - - /// Brands Bluetooth icon - /// - /// https://fontawesome.com/icons/bluetooth?style=brands - static const IconData bluetooth = const IconDataBrands(0xf293); - - /// Brands Bluetooth icon - /// - /// https://fontawesome.com/icons/bluetooth-b?style=brands - static const IconData bluetoothB = const IconDataBrands(0xf294); - - /// Regular bold icon - /// - /// https://fontawesome.com/icons/bold?style=regular - /// emphasis, format, text - static const IconData bold = const IconDataRegular(0xf032); - - /// Solid bold icon - /// - /// https://fontawesome.com/icons/bold?style=solid - /// emphasis, format, text - static const IconData solidBold = const IconDataSolid(0xf032); - - /// Light bold icon - /// - /// https://fontawesome.com/icons/light_bold?style=light - /// emphasis, format, text - static const IconData lightBold = const IconDataLight(0xf032); - - /// Duotone bold icon - /// - /// https://fontawesome.com/icons/duotone_bold?style=duotone - /// emphasis, format, text - static const IconDataDuotone duotoneBold = const IconDataDuotone( - 0xf032, - secondary: const IconDataDuotone(0x10f032), - ); - - /// Regular Lightning Bolt icon - /// - /// https://fontawesome.com/icons/bolt?style=regular - /// electricity, lightning, weather, zap - static const IconData bolt = const IconDataRegular(0xf0e7); - - /// Solid Lightning Bolt icon - /// - /// https://fontawesome.com/icons/bolt?style=solid - /// electricity, lightning, weather, zap - static const IconData solidBolt = const IconDataSolid(0xf0e7); - - /// Light Lightning Bolt icon - /// - /// https://fontawesome.com/icons/light_bolt?style=light - /// electricity, lightning, weather, zap - static const IconData lightBolt = const IconDataLight(0xf0e7); - - /// Duotone Lightning Bolt icon - /// - /// https://fontawesome.com/icons/duotone_bolt?style=duotone - /// electricity, lightning, weather, zap - static const IconDataDuotone duotoneBolt = const IconDataDuotone( - 0xf0e7, - secondary: const IconDataDuotone(0x10f0e7), - ); - - /// Regular Bomb icon - /// - /// https://fontawesome.com/icons/bomb?style=regular - /// error, explode, fuse, grenade, warning - static const IconData bomb = const IconDataRegular(0xf1e2); - - /// Solid Bomb icon - /// - /// https://fontawesome.com/icons/bomb?style=solid - /// error, explode, fuse, grenade, warning - static const IconData solidBomb = const IconDataSolid(0xf1e2); - - /// Light Bomb icon - /// - /// https://fontawesome.com/icons/light_bomb?style=light - /// error, explode, fuse, grenade, warning - static const IconData lightBomb = const IconDataLight(0xf1e2); - - /// Duotone Bomb icon - /// - /// https://fontawesome.com/icons/duotone_bomb?style=duotone - /// error, explode, fuse, grenade, warning - static const IconDataDuotone duotoneBomb = const IconDataDuotone( - 0xf1e2, - secondary: const IconDataDuotone(0x10f1e2), - ); - - /// Regular Bone icon - /// - /// https://fontawesome.com/icons/bone?style=regular - /// calcium, dog, skeletal, skeleton, tibia - static const IconData bone = const IconDataRegular(0xf5d7); - - /// Solid Bone icon - /// - /// https://fontawesome.com/icons/bone?style=solid - /// calcium, dog, skeletal, skeleton, tibia - static const IconData solidBone = const IconDataSolid(0xf5d7); - - /// Light Bone icon - /// - /// https://fontawesome.com/icons/light_bone?style=light - /// calcium, dog, skeletal, skeleton, tibia - static const IconData lightBone = const IconDataLight(0xf5d7); - - /// Duotone Bone icon - /// - /// https://fontawesome.com/icons/duotone_bone?style=duotone - /// calcium, dog, skeletal, skeleton, tibia - static const IconDataDuotone duotoneBone = const IconDataDuotone( - 0xf5d7, - secondary: const IconDataDuotone(0x10f5d7), - ); - - /// Regular Bone Break icon - /// - /// https://fontawesome.com/icons/bone-break?style=regular - /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData boneBreak = const IconDataRegular(0xf5d8); - - /// Solid Bone Break icon - /// - /// https://fontawesome.com/icons/bone-break?style=solid - /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData solidBoneBreak = const IconDataSolid(0xf5d8); - - /// Light Bone Break icon - /// - /// https://fontawesome.com/icons/light_bone-break?style=light - /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconData lightBoneBreak = const IconDataLight(0xf5d8); - - /// Duotone Bone Break icon - /// - /// https://fontawesome.com/icons/duotone_bone-break?style=duotone - /// broken, calcium, dog, fracture, skeletal, skeleton, tibia - static const IconDataDuotone duotoneBoneBreak = const IconDataDuotone( - 0xf5d8, - secondary: const IconDataDuotone(0x10f5d8), - ); - - /// Regular Bong icon - /// - /// https://fontawesome.com/icons/bong?style=regular - /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData bong = const IconDataRegular(0xf55c); - - /// Solid Bong icon - /// - /// https://fontawesome.com/icons/bong?style=solid - /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData solidBong = const IconDataSolid(0xf55c); - - /// Light Bong icon - /// - /// https://fontawesome.com/icons/light_bong?style=light - /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconData lightBong = const IconDataLight(0xf55c); - - /// Duotone Bong icon - /// - /// https://fontawesome.com/icons/duotone_bong?style=duotone - /// aparatus, cannabis, marijuana, pipe, smoke, smoking - static const IconDataDuotone duotoneBong = const IconDataDuotone( - 0xf55c, - secondary: const IconDataDuotone(0x10f55c), - ); - - /// Regular book icon - /// - /// https://fontawesome.com/icons/book?style=regular - /// diary, documentation, journal, library, read - static const IconData book = const IconDataRegular(0xf02d); - - /// Solid book icon - /// - /// https://fontawesome.com/icons/book?style=solid - /// diary, documentation, journal, library, read - static const IconData solidBook = const IconDataSolid(0xf02d); - - /// Light book icon - /// - /// https://fontawesome.com/icons/light_book?style=light - /// diary, documentation, journal, library, read - static const IconData lightBook = const IconDataLight(0xf02d); - - /// Duotone book icon - /// - /// https://fontawesome.com/icons/duotone_book?style=duotone - /// diary, documentation, journal, library, read - static const IconDataDuotone duotoneBook = const IconDataDuotone( - 0xf02d, - secondary: const IconDataDuotone(0x10f02d), - ); - - /// Regular Alternate Book icon - /// - /// https://fontawesome.com/icons/book-alt?style=regular - /// diary, documentation, journal, library, read - static const IconData bookAlt = const IconDataRegular(0xf5d9); - - /// Solid Alternate Book icon - /// - /// https://fontawesome.com/icons/book-alt?style=solid - /// diary, documentation, journal, library, read - static const IconData solidBookAlt = const IconDataSolid(0xf5d9); - - /// Light Alternate Book icon - /// - /// https://fontawesome.com/icons/light_book-alt?style=light - /// diary, documentation, journal, library, read - static const IconData lightBookAlt = const IconDataLight(0xf5d9); - - /// Duotone Alternate Book icon - /// - /// https://fontawesome.com/icons/duotone_book-alt?style=duotone - /// diary, documentation, journal, library, read - static const IconDataDuotone duotoneBookAlt = const IconDataDuotone( - 0xf5d9, - secondary: const IconDataDuotone(0x10f5d9), - ); - - /// Regular Book of the Dead icon - /// - /// https://fontawesome.com/icons/book-dead?style=regular - /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, necronomicon, read, skull, spell - static const IconData bookDead = const IconDataRegular(0xf6b7); - - /// Solid Book of the Dead icon - /// - /// https://fontawesome.com/icons/book-dead?style=solid - /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, necronomicon, read, skull, spell - static const IconData solidBookDead = const IconDataSolid(0xf6b7); - - /// Light Book of the Dead icon - /// - /// https://fontawesome.com/icons/light_book-dead?style=light - /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, necronomicon, read, skull, spell - static const IconData lightBookDead = const IconDataLight(0xf6b7); - - /// Duotone Book of the Dead icon - /// - /// https://fontawesome.com/icons/duotone_book-dead?style=duotone - /// Dungeons & Dragons, crossbones, d&d, dark arts, death, dnd, documentation, evil, fantasy, halloween, holiday, necronomicon, read, skull, spell - static const IconDataDuotone duotoneBookDead = const IconDataDuotone( - 0xf6b7, - secondary: const IconDataDuotone(0x10f6b7), - ); - - /// Regular Book with Heart icon - /// - /// https://fontawesome.com/icons/book-heart?style=regular - /// charity, diary, documentation, donation, health, history, journal, library, read - static const IconData bookHeart = const IconDataRegular(0xf499); - - /// Solid Book with Heart icon - /// - /// https://fontawesome.com/icons/book-heart?style=solid - /// charity, diary, documentation, donation, health, history, journal, library, read - static const IconData solidBookHeart = const IconDataSolid(0xf499); - - /// Light Book with Heart icon - /// - /// https://fontawesome.com/icons/light_book-heart?style=light - /// charity, diary, documentation, donation, health, history, journal, library, read - static const IconData lightBookHeart = const IconDataLight(0xf499); - - /// Duotone Book with Heart icon - /// - /// https://fontawesome.com/icons/duotone_book-heart?style=duotone - /// charity, diary, documentation, donation, health, history, journal, library, read - static const IconDataDuotone duotoneBookHeart = const IconDataDuotone( - 0xf499, - secondary: const IconDataDuotone(0x10f499), - ); - - /// Regular Medical Book icon - /// - /// https://fontawesome.com/icons/book-medical?style=regular - /// diary, documentation, health, history, journal, library, read, record - static const IconData bookMedical = const IconDataRegular(0xf7e6); - - /// Solid Medical Book icon - /// - /// https://fontawesome.com/icons/book-medical?style=solid - /// diary, documentation, health, history, journal, library, read, record - static const IconData solidBookMedical = const IconDataSolid(0xf7e6); - - /// Light Medical Book icon - /// - /// https://fontawesome.com/icons/light_book-medical?style=light - /// diary, documentation, health, history, journal, library, read, record - static const IconData lightBookMedical = const IconDataLight(0xf7e6); - - /// Duotone Medical Book icon - /// - /// https://fontawesome.com/icons/duotone_book-medical?style=duotone - /// diary, documentation, health, history, journal, library, read, record - static const IconDataDuotone duotoneBookMedical = const IconDataDuotone( - 0xf7e6, - secondary: const IconDataDuotone(0x10f7e6), - ); - - /// Regular Book Open icon - /// - /// https://fontawesome.com/icons/book-open?style=regular - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData bookOpen = const IconDataRegular(0xf518); - - /// Solid Book Open icon - /// - /// https://fontawesome.com/icons/book-open?style=solid - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData solidBookOpen = const IconDataSolid(0xf518); - - /// Light Book Open icon - /// - /// https://fontawesome.com/icons/light_book-open?style=light - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData lightBookOpen = const IconDataLight(0xf518); - - /// Duotone Book Open icon - /// - /// https://fontawesome.com/icons/duotone_book-open?style=duotone - /// flyer, library, notebook, open book, pamphlet, reading - static const IconDataDuotone duotoneBookOpen = const IconDataDuotone( - 0xf518, - secondary: const IconDataDuotone(0x10f518), - ); - - /// Regular Book Reader icon - /// - /// https://fontawesome.com/icons/book-reader?style=regular - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData bookReader = const IconDataRegular(0xf5da); - - /// Solid Book Reader icon - /// - /// https://fontawesome.com/icons/book-reader?style=solid - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData solidBookReader = const IconDataSolid(0xf5da); - - /// Light Book Reader icon - /// - /// https://fontawesome.com/icons/light_book-reader?style=light - /// flyer, library, notebook, open book, pamphlet, reading - static const IconData lightBookReader = const IconDataLight(0xf5da); - - /// Duotone Book Reader icon - /// - /// https://fontawesome.com/icons/duotone_book-reader?style=duotone - /// flyer, library, notebook, open book, pamphlet, reading - static const IconDataDuotone duotoneBookReader = const IconDataDuotone( - 0xf5da, - secondary: const IconDataDuotone(0x10f5da), - ); - - /// Regular Book of Spells icon - /// - /// https://fontawesome.com/icons/book-spells?style=regular - /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, mage, magic, read, sorcery, voodoo, witch, wizard - static const IconData bookSpells = const IconDataRegular(0xf6b8); - - /// Solid Book of Spells icon - /// - /// https://fontawesome.com/icons/book-spells?style=solid - /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, mage, magic, read, sorcery, voodoo, witch, wizard - static const IconData solidBookSpells = const IconDataSolid(0xf6b8); - - /// Light Book of Spells icon - /// - /// https://fontawesome.com/icons/light_book-spells?style=light - /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, mage, magic, read, sorcery, voodoo, witch, wizard - static const IconData lightBookSpells = const IconDataLight(0xf6b8); - - /// Duotone Book of Spells icon - /// - /// https://fontawesome.com/icons/duotone_book-spells?style=duotone - /// Dungeons & Dragons, d&d, dark arts, dnd, documentation, evil, fantasy, halloween, holiday, mage, magic, read, sorcery, voodoo, witch, wizard - static const IconDataDuotone duotoneBookSpells = const IconDataDuotone( - 0xf6b8, - secondary: const IconDataDuotone(0x10f6b8), - ); - - /// Regular Book with User icon - /// - /// https://fontawesome.com/icons/book-user?style=regular - /// address, biography, diary, documentation, journal, library, read - static const IconData bookUser = const IconDataRegular(0xf7e7); - - /// Solid Book with User icon - /// - /// https://fontawesome.com/icons/book-user?style=solid - /// address, biography, diary, documentation, journal, library, read - static const IconData solidBookUser = const IconDataSolid(0xf7e7); - - /// Light Book with User icon - /// - /// https://fontawesome.com/icons/light_book-user?style=light - /// address, biography, diary, documentation, journal, library, read - static const IconData lightBookUser = const IconDataLight(0xf7e7); - - /// Duotone Book with User icon - /// - /// https://fontawesome.com/icons/duotone_book-user?style=duotone - /// address, biography, diary, documentation, journal, library, read - static const IconDataDuotone duotoneBookUser = const IconDataDuotone( - 0xf7e7, - secondary: const IconDataDuotone(0x10f7e7), - ); - - /// Regular bookmark icon - /// - /// https://fontawesome.com/icons/bookmark?style=regular - /// favorite, marker, read, remember, save - static const IconData bookmark = const IconDataRegular(0xf02e); - - /// Solid bookmark icon - /// - /// https://fontawesome.com/icons/bookmark?style=solid - /// favorite, marker, read, remember, save - static const IconData solidBookmark = const IconDataSolid(0xf02e); - - /// Light bookmark icon - /// - /// https://fontawesome.com/icons/light_bookmark?style=light - /// favorite, marker, read, remember, save - static const IconData lightBookmark = const IconDataLight(0xf02e); - - /// Duotone bookmark icon - /// - /// https://fontawesome.com/icons/duotone_bookmark?style=duotone - /// favorite, marker, read, remember, save - static const IconDataDuotone duotoneBookmark = const IconDataDuotone( - 0xf02e, - secondary: const IconDataDuotone(0x10f02e), - ); - - /// Regular Books icon - /// - /// https://fontawesome.com/icons/books?style=regular - /// diary, documentation, journal, library, read - static const IconData books = const IconDataRegular(0xf5db); - - /// Solid Books icon - /// - /// https://fontawesome.com/icons/books?style=solid - /// diary, documentation, journal, library, read - static const IconData solidBooks = const IconDataSolid(0xf5db); - - /// Light Books icon - /// - /// https://fontawesome.com/icons/light_books?style=light - /// diary, documentation, journal, library, read - static const IconData lightBooks = const IconDataLight(0xf5db); - - /// Duotone Books icon - /// - /// https://fontawesome.com/icons/duotone_books?style=duotone - /// diary, documentation, journal, library, read - static const IconDataDuotone duotoneBooks = const IconDataDuotone( - 0xf5db, - secondary: const IconDataDuotone(0x10f5db), - ); - - /// Regular Medical Books icon - /// - /// https://fontawesome.com/icons/books-medical?style=regular - /// add, diary, documentation, health, journal, library, read, records - static const IconData booksMedical = const IconDataRegular(0xf7e8); - - /// Solid Medical Books icon - /// - /// https://fontawesome.com/icons/books-medical?style=solid - /// add, diary, documentation, health, journal, library, read, records - static const IconData solidBooksMedical = const IconDataSolid(0xf7e8); - - /// Light Medical Books icon - /// - /// https://fontawesome.com/icons/light_books-medical?style=light - /// add, diary, documentation, health, journal, library, read, records - static const IconData lightBooksMedical = const IconDataLight(0xf7e8); - - /// Duotone Medical Books icon - /// - /// https://fontawesome.com/icons/duotone_books-medical?style=duotone - /// add, diary, documentation, health, journal, library, read, records - static const IconDataDuotone duotoneBooksMedical = const IconDataDuotone( - 0xf7e8, - secondary: const IconDataDuotone(0x10f7e8), - ); - - /// Regular Boombox icon - /// - /// https://fontawesome.com/icons/boombox?style=regular - /// cassette, jambox, john cusack, music, radio, say anything - static const IconData boombox = const IconDataRegular(0xf8a5); - - /// Solid Boombox icon - /// - /// https://fontawesome.com/icons/boombox?style=solid - /// cassette, jambox, john cusack, music, radio, say anything - static const IconData solidBoombox = const IconDataSolid(0xf8a5); - - /// Light Boombox icon - /// - /// https://fontawesome.com/icons/light_boombox?style=light - /// cassette, jambox, john cusack, music, radio, say anything - static const IconData lightBoombox = const IconDataLight(0xf8a5); - - /// Duotone Boombox icon - /// - /// https://fontawesome.com/icons/duotone_boombox?style=duotone - /// cassette, jambox, john cusack, music, radio, say anything - static const IconDataDuotone duotoneBoombox = const IconDataDuotone( - 0xf8a5, - secondary: const IconDataDuotone(0x10f8a5), - ); - - /// Regular Boot icon - /// - /// https://fontawesome.com/icons/boot?style=regular - /// clothing, foot, hiking, shoe, sturdy - static const IconData boot = const IconDataRegular(0xf782); - - /// Solid Boot icon - /// - /// https://fontawesome.com/icons/boot?style=solid - /// clothing, foot, hiking, shoe, sturdy - static const IconData solidBoot = const IconDataSolid(0xf782); - - /// Light Boot icon - /// - /// https://fontawesome.com/icons/light_boot?style=light - /// clothing, foot, hiking, shoe, sturdy - static const IconData lightBoot = const IconDataLight(0xf782); - - /// Duotone Boot icon - /// - /// https://fontawesome.com/icons/duotone_boot?style=duotone - /// clothing, foot, hiking, shoe, sturdy - static const IconDataDuotone duotoneBoot = const IconDataDuotone( - 0xf782, - secondary: const IconDataDuotone(0x10f782), - ); - - /// Regular Booth with Curtain icon - /// - /// https://fontawesome.com/icons/booth-curtain?style=regular - /// changing room, election, vote, voting, voting booth - static const IconData boothCurtain = const IconDataRegular(0xf734); - - /// Solid Booth with Curtain icon - /// - /// https://fontawesome.com/icons/booth-curtain?style=solid - /// changing room, election, vote, voting, voting booth - static const IconData solidBoothCurtain = const IconDataSolid(0xf734); - - /// Light Booth with Curtain icon - /// - /// https://fontawesome.com/icons/light_booth-curtain?style=light - /// changing room, election, vote, voting, voting booth - static const IconData lightBoothCurtain = const IconDataLight(0xf734); - - /// Duotone Booth with Curtain icon - /// - /// https://fontawesome.com/icons/duotone_booth-curtain?style=duotone - /// changing room, election, vote, voting, voting booth - static const IconDataDuotone duotoneBoothCurtain = const IconDataDuotone( - 0xf734, - secondary: const IconDataDuotone(0x10f734), - ); - - /// Brands Bootstrap icon - /// - /// https://fontawesome.com/icons/bootstrap?style=brands - static const IconData bootstrap = const IconDataBrands(0xf836); - - /// Regular Border All icon - /// - /// https://fontawesome.com/icons/border-all?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderAll = const IconDataRegular(0xf84c); - - /// Solid Border All icon - /// - /// https://fontawesome.com/icons/border-all?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderAll = const IconDataSolid(0xf84c); - - /// Light Border All icon - /// - /// https://fontawesome.com/icons/light_border-all?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderAll = const IconDataLight(0xf84c); - - /// Duotone Border All icon - /// - /// https://fontawesome.com/icons/duotone_border-all?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderAll = const IconDataDuotone( - 0xf84c, - secondary: const IconDataDuotone(0x10f84c), - ); - - /// Regular Border Bottom icon - /// - /// https://fontawesome.com/icons/border-bottom?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderBottom = const IconDataRegular(0xf84d); - - /// Solid Border Bottom icon - /// - /// https://fontawesome.com/icons/border-bottom?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderBottom = const IconDataSolid(0xf84d); - - /// Light Border Bottom icon - /// - /// https://fontawesome.com/icons/light_border-bottom?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderBottom = const IconDataLight(0xf84d); - - /// Duotone Border Bottom icon - /// - /// https://fontawesome.com/icons/duotone_border-bottom?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderBottom = const IconDataDuotone( - 0xf84d, - secondary: const IconDataDuotone(0x10f84d), - ); - - /// Regular Border Center - Horizontal icon - /// - /// https://fontawesome.com/icons/border-center-h?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderCenterH = const IconDataRegular(0xf89c); - - /// Solid Border Center - Horizontal icon - /// - /// https://fontawesome.com/icons/border-center-h?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderCenterH = const IconDataSolid(0xf89c); - - /// Light Border Center - Horizontal icon - /// - /// https://fontawesome.com/icons/light_border-center-h?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderCenterH = const IconDataLight(0xf89c); - - /// Duotone Border Center - Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_border-center-h?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderCenterH = const IconDataDuotone( - 0xf89c, - secondary: const IconDataDuotone(0x10f89c), - ); - - /// Regular Border Center - Vertical icon - /// - /// https://fontawesome.com/icons/border-center-v?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderCenterV = const IconDataRegular(0xf89d); - - /// Solid Border Center - Vertical icon - /// - /// https://fontawesome.com/icons/border-center-v?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderCenterV = const IconDataSolid(0xf89d); - - /// Light Border Center - Vertical icon - /// - /// https://fontawesome.com/icons/light_border-center-v?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderCenterV = const IconDataLight(0xf89d); - - /// Duotone Border Center - Vertical icon - /// - /// https://fontawesome.com/icons/duotone_border-center-v?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderCenterV = const IconDataDuotone( - 0xf89d, - secondary: const IconDataDuotone(0x10f89d), - ); - - /// Regular Border Inner icon - /// - /// https://fontawesome.com/icons/border-inner?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderInner = const IconDataRegular(0xf84e); - - /// Solid Border Inner icon - /// - /// https://fontawesome.com/icons/border-inner?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderInner = const IconDataSolid(0xf84e); - - /// Light Border Inner icon - /// - /// https://fontawesome.com/icons/light_border-inner?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderInner = const IconDataLight(0xf84e); - - /// Duotone Border Inner icon - /// - /// https://fontawesome.com/icons/duotone_border-inner?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderInner = const IconDataDuotone( - 0xf84e, - secondary: const IconDataDuotone(0x10f84e), - ); - - /// Regular Border Left icon - /// - /// https://fontawesome.com/icons/border-left?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderLeft = const IconDataRegular(0xf84f); - - /// Solid Border Left icon - /// - /// https://fontawesome.com/icons/border-left?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderLeft = const IconDataSolid(0xf84f); - - /// Light Border Left icon - /// - /// https://fontawesome.com/icons/light_border-left?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderLeft = const IconDataLight(0xf84f); - - /// Duotone Border Left icon - /// - /// https://fontawesome.com/icons/duotone_border-left?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderLeft = const IconDataDuotone( - 0xf84f, - secondary: const IconDataDuotone(0x10f84f), - ); - - /// Regular Border None icon - /// - /// https://fontawesome.com/icons/border-none?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderNone = const IconDataRegular(0xf850); - - /// Solid Border None icon - /// - /// https://fontawesome.com/icons/border-none?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderNone = const IconDataSolid(0xf850); - - /// Light Border None icon - /// - /// https://fontawesome.com/icons/light_border-none?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderNone = const IconDataLight(0xf850); - - /// Duotone Border None icon - /// - /// https://fontawesome.com/icons/duotone_border-none?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderNone = const IconDataDuotone( - 0xf850, - secondary: const IconDataDuotone(0x10f850), - ); - - /// Regular Border Outer icon - /// - /// https://fontawesome.com/icons/border-outer?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderOuter = const IconDataRegular(0xf851); - - /// Solid Border Outer icon - /// - /// https://fontawesome.com/icons/border-outer?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderOuter = const IconDataSolid(0xf851); - - /// Light Border Outer icon - /// - /// https://fontawesome.com/icons/light_border-outer?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderOuter = const IconDataLight(0xf851); - - /// Duotone Border Outer icon - /// - /// https://fontawesome.com/icons/duotone_border-outer?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderOuter = const IconDataDuotone( - 0xf851, - secondary: const IconDataDuotone(0x10f851), - ); - - /// Regular Border Right icon - /// - /// https://fontawesome.com/icons/border-right?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderRight = const IconDataRegular(0xf852); - - /// Solid Border Right icon - /// - /// https://fontawesome.com/icons/border-right?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderRight = const IconDataSolid(0xf852); - - /// Light Border Right icon - /// - /// https://fontawesome.com/icons/light_border-right?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderRight = const IconDataLight(0xf852); - - /// Duotone Border Right icon - /// - /// https://fontawesome.com/icons/duotone_border-right?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderRight = const IconDataDuotone( - 0xf852, - secondary: const IconDataDuotone(0x10f852), - ); - - /// Regular Border Style icon - /// - /// https://fontawesome.com/icons/border-style?style=regular - static const IconData borderStyle = const IconDataRegular(0xf853); - - /// Solid Border Style icon - /// - /// https://fontawesome.com/icons/border-style?style=solid - static const IconData solidBorderStyle = const IconDataSolid(0xf853); - - /// Light Border Style icon - /// - /// https://fontawesome.com/icons/light_border-style?style=light - static const IconData lightBorderStyle = const IconDataLight(0xf853); - - /// Duotone Border Style icon - /// - /// https://fontawesome.com/icons/duotone_border-style?style=duotone - static const IconDataDuotone duotoneBorderStyle = const IconDataDuotone( - 0xf853, - secondary: const IconDataDuotone(0x10f853), - ); - - /// Regular Border Style-alt icon - /// - /// https://fontawesome.com/icons/border-style-alt?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderStyleAlt = const IconDataRegular(0xf854); - - /// Solid Border Style-alt icon - /// - /// https://fontawesome.com/icons/border-style-alt?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderStyleAlt = const IconDataSolid(0xf854); - - /// Light Border Style-alt icon - /// - /// https://fontawesome.com/icons/light_border-style-alt?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderStyleAlt = const IconDataLight(0xf854); - - /// Duotone Border Style-alt icon - /// - /// https://fontawesome.com/icons/duotone_border-style-alt?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderStyleAlt = const IconDataDuotone( - 0xf854, - secondary: const IconDataDuotone(0x10f854), - ); - - /// Regular Border Top icon - /// - /// https://fontawesome.com/icons/border-top?style=regular - /// cell, grid, outline, stroke, table - static const IconData borderTop = const IconDataRegular(0xf855); - - /// Solid Border Top icon - /// - /// https://fontawesome.com/icons/border-top?style=solid - /// cell, grid, outline, stroke, table - static const IconData solidBorderTop = const IconDataSolid(0xf855); - - /// Light Border Top icon - /// - /// https://fontawesome.com/icons/light_border-top?style=light - /// cell, grid, outline, stroke, table - static const IconData lightBorderTop = const IconDataLight(0xf855); - - /// Duotone Border Top icon - /// - /// https://fontawesome.com/icons/duotone_border-top?style=duotone - /// cell, grid, outline, stroke, table - static const IconDataDuotone duotoneBorderTop = const IconDataDuotone( - 0xf855, - secondary: const IconDataDuotone(0x10f855), - ); - - /// Regular Bow Arrow icon - /// - /// https://fontawesome.com/icons/bow-arrow?style=regular - /// Dungeons & Dragons, archery, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon - static const IconData bowArrow = const IconDataRegular(0xf6b9); - - /// Solid Bow Arrow icon - /// - /// https://fontawesome.com/icons/bow-arrow?style=solid - /// Dungeons & Dragons, archery, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon - static const IconData solidBowArrow = const IconDataSolid(0xf6b9); - - /// Light Bow Arrow icon - /// - /// https://fontawesome.com/icons/light_bow-arrow?style=light - /// Dungeons & Dragons, archery, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon - static const IconData lightBowArrow = const IconDataLight(0xf6b9); - - /// Duotone Bow Arrow icon - /// - /// https://fontawesome.com/icons/duotone_bow-arrow?style=duotone - /// Dungeons & Dragons, archery, d&d, dnd, fantasy, legolas, ranged attack, ranger, weapon - static const IconDataDuotone duotoneBowArrow = const IconDataDuotone( - 0xf6b9, - secondary: const IconDataDuotone(0x10f6b9), - ); - - /// Regular Bowling Ball icon - /// - /// https://fontawesome.com/icons/bowling-ball?style=regular - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData bowlingBall = const IconDataRegular(0xf436); - - /// Solid Bowling Ball icon - /// - /// https://fontawesome.com/icons/bowling-ball?style=solid - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData solidBowlingBall = const IconDataSolid(0xf436); - - /// Light Bowling Ball icon - /// - /// https://fontawesome.com/icons/light_bowling-ball?style=light - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData lightBowlingBall = const IconDataLight(0xf436); - - /// Duotone Bowling Ball icon - /// - /// https://fontawesome.com/icons/duotone_bowling-ball?style=duotone - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconDataDuotone duotoneBowlingBall = const IconDataDuotone( - 0xf436, - secondary: const IconDataDuotone(0x10f436), - ); - - /// Regular Bowling Pins icon - /// - /// https://fontawesome.com/icons/bowling-pins?style=regular - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData bowlingPins = const IconDataRegular(0xf437); - - /// Solid Bowling Pins icon - /// - /// https://fontawesome.com/icons/bowling-pins?style=solid - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData solidBowlingPins = const IconDataSolid(0xf437); - - /// Light Bowling Pins icon - /// - /// https://fontawesome.com/icons/light_bowling-pins?style=light - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconData lightBowlingPins = const IconDataLight(0xf437); - - /// Duotone Bowling Pins icon - /// - /// https://fontawesome.com/icons/duotone_bowling-pins?style=duotone - /// alley, candlepin, gutter, lane, strike, tenpin - static const IconDataDuotone duotoneBowlingPins = const IconDataDuotone( - 0xf437, - secondary: const IconDataDuotone(0x10f437), - ); - - /// Regular Box icon - /// - /// https://fontawesome.com/icons/box?style=regular - /// archive, container, package, storage - static const IconData box = const IconDataRegular(0xf466); - - /// Solid Box icon - /// - /// https://fontawesome.com/icons/box?style=solid - /// archive, container, package, storage - static const IconData solidBox = const IconDataSolid(0xf466); - - /// Light Box icon - /// - /// https://fontawesome.com/icons/light_box?style=light - /// archive, container, package, storage - static const IconData lightBox = const IconDataLight(0xf466); - - /// Duotone Box icon - /// - /// https://fontawesome.com/icons/duotone_box?style=duotone - /// archive, container, package, storage - static const IconDataDuotone duotoneBox = const IconDataDuotone( - 0xf466, - secondary: const IconDataDuotone(0x10f466), - ); - - /// Regular Alternate Box icon - /// - /// https://fontawesome.com/icons/box-alt?style=regular - /// archive, container, package, storage - static const IconData boxAlt = const IconDataRegular(0xf49a); - - /// Solid Alternate Box icon - /// - /// https://fontawesome.com/icons/box-alt?style=solid - /// archive, container, package, storage - static const IconData solidBoxAlt = const IconDataSolid(0xf49a); - - /// Light Alternate Box icon - /// - /// https://fontawesome.com/icons/light_box-alt?style=light - /// archive, container, package, storage - static const IconData lightBoxAlt = const IconDataLight(0xf49a); - - /// Duotone Alternate Box icon - /// - /// https://fontawesome.com/icons/duotone_box-alt?style=duotone - /// archive, container, package, storage - static const IconDataDuotone duotoneBoxAlt = const IconDataDuotone( - 0xf49a, - secondary: const IconDataDuotone(0x10f49a), - ); - - /// Regular Box Ballot icon - /// - /// https://fontawesome.com/icons/box-ballot?style=regular - /// election, politics, vote, voting - static const IconData boxBallot = const IconDataRegular(0xf735); - - /// Solid Box Ballot icon - /// - /// https://fontawesome.com/icons/box-ballot?style=solid - /// election, politics, vote, voting - static const IconData solidBoxBallot = const IconDataSolid(0xf735); - - /// Light Box Ballot icon - /// - /// https://fontawesome.com/icons/light_box-ballot?style=light - /// election, politics, vote, voting - static const IconData lightBoxBallot = const IconDataLight(0xf735); - - /// Duotone Box Ballot icon - /// - /// https://fontawesome.com/icons/duotone_box-ballot?style=duotone - /// election, politics, vote, voting - static const IconDataDuotone duotoneBoxBallot = const IconDataDuotone( - 0xf735, - secondary: const IconDataDuotone(0x10f735), - ); - - /// Regular Box Check icon - /// - /// https://fontawesome.com/icons/box-check?style=regular - /// accept, agree, confirm, correct, done, ok, package, select, success, tick, todo, yes - static const IconData boxCheck = const IconDataRegular(0xf467); - - /// Solid Box Check icon - /// - /// https://fontawesome.com/icons/box-check?style=solid - /// accept, agree, confirm, correct, done, ok, package, select, success, tick, todo, yes - static const IconData solidBoxCheck = const IconDataSolid(0xf467); - - /// Light Box Check icon - /// - /// https://fontawesome.com/icons/light_box-check?style=light - /// accept, agree, confirm, correct, done, ok, package, select, success, tick, todo, yes - static const IconData lightBoxCheck = const IconDataLight(0xf467); - - /// Duotone Box Check icon - /// - /// https://fontawesome.com/icons/duotone_box-check?style=duotone - /// accept, agree, confirm, correct, done, ok, package, select, success, tick, todo, yes - static const IconDataDuotone duotoneBoxCheck = const IconDataDuotone( - 0xf467, - secondary: const IconDataDuotone(0x10f467), - ); - - /// Regular Box Fragile icon - /// - /// https://fontawesome.com/icons/box-fragile?style=regular - /// broken, careful, glass, package - static const IconData boxFragile = const IconDataRegular(0xf49b); - - /// Solid Box Fragile icon - /// - /// https://fontawesome.com/icons/box-fragile?style=solid - /// broken, careful, glass, package - static const IconData solidBoxFragile = const IconDataSolid(0xf49b); - - /// Light Box Fragile icon - /// - /// https://fontawesome.com/icons/light_box-fragile?style=light - /// broken, careful, glass, package - static const IconData lightBoxFragile = const IconDataLight(0xf49b); - - /// Duotone Box Fragile icon - /// - /// https://fontawesome.com/icons/duotone_box-fragile?style=duotone - /// broken, careful, glass, package - static const IconDataDuotone duotoneBoxFragile = const IconDataDuotone( - 0xf49b, - secondary: const IconDataDuotone(0x10f49b), - ); - - /// Regular Box Full icon - /// - /// https://fontawesome.com/icons/box-full?style=regular - /// attic, package, packed, storage - static const IconData boxFull = const IconDataRegular(0xf49c); - - /// Solid Box Full icon - /// - /// https://fontawesome.com/icons/box-full?style=solid - /// attic, package, packed, storage - static const IconData solidBoxFull = const IconDataSolid(0xf49c); - - /// Light Box Full icon - /// - /// https://fontawesome.com/icons/light_box-full?style=light - /// attic, package, packed, storage - static const IconData lightBoxFull = const IconDataLight(0xf49c); - - /// Duotone Box Full icon - /// - /// https://fontawesome.com/icons/duotone_box-full?style=duotone - /// attic, package, packed, storage - static const IconDataDuotone duotoneBoxFull = const IconDataDuotone( - 0xf49c, - secondary: const IconDataDuotone(0x10f49c), - ); - - /// Regular Box with Heart icon - /// - /// https://fontawesome.com/icons/box-heart?style=regular - /// care, donation, package, storage - static const IconData boxHeart = const IconDataRegular(0xf49d); - - /// Solid Box with Heart icon - /// - /// https://fontawesome.com/icons/box-heart?style=solid - /// care, donation, package, storage - static const IconData solidBoxHeart = const IconDataSolid(0xf49d); - - /// Light Box with Heart icon - /// - /// https://fontawesome.com/icons/light_box-heart?style=light - /// care, donation, package, storage - static const IconData lightBoxHeart = const IconDataLight(0xf49d); - - /// Duotone Box with Heart icon - /// - /// https://fontawesome.com/icons/duotone_box-heart?style=duotone - /// care, donation, package, storage - static const IconDataDuotone duotoneBoxHeart = const IconDataDuotone( - 0xf49d, - secondary: const IconDataDuotone(0x10f49d), - ); - - /// Regular Box Open icon - /// - /// https://fontawesome.com/icons/box-open?style=regular - /// archive, container, package, storage, unpack - static const IconData boxOpen = const IconDataRegular(0xf49e); - - /// Solid Box Open icon - /// - /// https://fontawesome.com/icons/box-open?style=solid - /// archive, container, package, storage, unpack - static const IconData solidBoxOpen = const IconDataSolid(0xf49e); - - /// Light Box Open icon - /// - /// https://fontawesome.com/icons/light_box-open?style=light - /// archive, container, package, storage, unpack - static const IconData lightBoxOpen = const IconDataLight(0xf49e); - - /// Duotone Box Open icon - /// - /// https://fontawesome.com/icons/duotone_box-open?style=duotone - /// archive, container, package, storage, unpack - static const IconDataDuotone duotoneBoxOpen = const IconDataDuotone( - 0xf49e, - secondary: const IconDataDuotone(0x10f49e), - ); - - /// Regular Tissue Box icon - /// - /// https://fontawesome.com/icons/box-tissue?style=regular - /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData boxTissue = const IconDataRegular(0xe05b); - - /// Light Tissue Box icon - /// - /// https://fontawesome.com/icons/light_box-tissue?style=light - /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData lightBoxTissue = const IconDataLight(0xe05b); - - /// Solid Tissue Box icon - /// - /// https://fontawesome.com/icons/box-tissue?style=solid - /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconData solidBoxTissue = const IconDataSolid(0xe05b); - - /// Duotone Tissue Box icon - /// - /// https://fontawesome.com/icons/duotone_box-tissue?style=duotone - /// cough, covid-19, kleenex, mucus, nose, sneeze, snot - static const IconDataDuotone duotoneBoxTissue = const IconDataDuotone( - 0xe05b, - secondary: const IconDataDuotone(0x10e05b), - ); - - /// Regular Box Up icon - /// - /// https://fontawesome.com/icons/box-up?style=regular - /// archive, container, package, shipping, storage - static const IconData boxUp = const IconDataRegular(0xf49f); - - /// Solid Box Up icon - /// - /// https://fontawesome.com/icons/box-up?style=solid - /// archive, container, package, shipping, storage - static const IconData solidBoxUp = const IconDataSolid(0xf49f); - - /// Light Box Up icon - /// - /// https://fontawesome.com/icons/light_box-up?style=light - /// archive, container, package, shipping, storage - static const IconData lightBoxUp = const IconDataLight(0xf49f); - - /// Duotone Box Up icon - /// - /// https://fontawesome.com/icons/duotone_box-up?style=duotone - /// archive, container, package, shipping, storage - static const IconDataDuotone duotoneBoxUp = const IconDataDuotone( - 0xf49f, - secondary: const IconDataDuotone(0x10f49f), - ); - - /// Regular Box with US Dollar icon - /// - /// https://fontawesome.com/icons/box-usd?style=regular - /// $, dollar-sign, donation, money, usd - static const IconData boxUsd = const IconDataRegular(0xf4a0); - - /// Solid Box with US Dollar icon - /// - /// https://fontawesome.com/icons/box-usd?style=solid - /// $, dollar-sign, donation, money, usd - static const IconData solidBoxUsd = const IconDataSolid(0xf4a0); - - /// Light Box with US Dollar icon - /// - /// https://fontawesome.com/icons/light_box-usd?style=light - /// $, dollar-sign, donation, money, usd - static const IconData lightBoxUsd = const IconDataLight(0xf4a0); - - /// Duotone Box with US Dollar icon - /// - /// https://fontawesome.com/icons/duotone_box-usd?style=duotone - /// $, dollar-sign, donation, money, usd - static const IconDataDuotone duotoneBoxUsd = const IconDataDuotone( - 0xf4a0, - secondary: const IconDataDuotone(0x10f4a0), - ); - - /// Regular Boxes icon - /// - /// https://fontawesome.com/icons/boxes?style=regular - /// archives, inventory, storage, warehouse - static const IconData boxes = const IconDataRegular(0xf468); - - /// Solid Boxes icon - /// - /// https://fontawesome.com/icons/boxes?style=solid - /// archives, inventory, storage, warehouse - static const IconData solidBoxes = const IconDataSolid(0xf468); - - /// Light Boxes icon - /// - /// https://fontawesome.com/icons/light_boxes?style=light - /// archives, inventory, storage, warehouse - static const IconData lightBoxes = const IconDataLight(0xf468); - - /// Duotone Boxes icon - /// - /// https://fontawesome.com/icons/duotone_boxes?style=duotone - /// archives, inventory, storage, warehouse - static const IconDataDuotone duotoneBoxes = const IconDataDuotone( - 0xf468, - secondary: const IconDataDuotone(0x10f468), - ); - - /// Regular Alternate Boxes icon - /// - /// https://fontawesome.com/icons/boxes-alt?style=regular - /// archives, inventory, storage, warehouse - static const IconData boxesAlt = const IconDataRegular(0xf4a1); - - /// Solid Alternate Boxes icon - /// - /// https://fontawesome.com/icons/boxes-alt?style=solid - /// archives, inventory, storage, warehouse - static const IconData solidBoxesAlt = const IconDataSolid(0xf4a1); - - /// Light Alternate Boxes icon - /// - /// https://fontawesome.com/icons/light_boxes-alt?style=light - /// archives, inventory, storage, warehouse - static const IconData lightBoxesAlt = const IconDataLight(0xf4a1); - - /// Duotone Alternate Boxes icon - /// - /// https://fontawesome.com/icons/duotone_boxes-alt?style=duotone - /// archives, inventory, storage, warehouse - static const IconDataDuotone duotoneBoxesAlt = const IconDataDuotone( - 0xf4a1, - secondary: const IconDataDuotone(0x10f4a1), - ); - - /// Regular Boxing Glove icon - /// - /// https://fontawesome.com/icons/boxing-glove?style=regular - /// boxer, fight, heavyweight, spar - static const IconData boxingGlove = const IconDataRegular(0xf438); - - /// Solid Boxing Glove icon - /// - /// https://fontawesome.com/icons/boxing-glove?style=solid - /// boxer, fight, heavyweight, spar - static const IconData solidBoxingGlove = const IconDataSolid(0xf438); - - /// Light Boxing Glove icon - /// - /// https://fontawesome.com/icons/light_boxing-glove?style=light - /// boxer, fight, heavyweight, spar - static const IconData lightBoxingGlove = const IconDataLight(0xf438); - - /// Duotone Boxing Glove icon - /// - /// https://fontawesome.com/icons/duotone_boxing-glove?style=duotone - /// boxer, fight, heavyweight, spar - static const IconDataDuotone duotoneBoxingGlove = const IconDataDuotone( - 0xf438, - secondary: const IconDataDuotone(0x10f438), - ); - - /// Regular Brackets icon - /// - /// https://fontawesome.com/icons/brackets?style=regular - /// code, developer, development, parentheses - static const IconData brackets = const IconDataRegular(0xf7e9); - - /// Solid Brackets icon - /// - /// https://fontawesome.com/icons/brackets?style=solid - /// code, developer, development, parentheses - static const IconData solidBrackets = const IconDataSolid(0xf7e9); - - /// Light Brackets icon - /// - /// https://fontawesome.com/icons/light_brackets?style=light - /// code, developer, development, parentheses - static const IconData lightBrackets = const IconDataLight(0xf7e9); - - /// Duotone Brackets icon - /// - /// https://fontawesome.com/icons/duotone_brackets?style=duotone - /// code, developer, development, parentheses - static const IconDataDuotone duotoneBrackets = const IconDataDuotone( - 0xf7e9, - secondary: const IconDataDuotone(0x10f7e9), - ); - - /// Regular Curly Brackets icon - /// - /// https://fontawesome.com/icons/brackets-curly?style=regular - /// code, developer, development, parentheses - static const IconData bracketsCurly = const IconDataRegular(0xf7ea); - - /// Solid Curly Brackets icon - /// - /// https://fontawesome.com/icons/brackets-curly?style=solid - /// code, developer, development, parentheses - static const IconData solidBracketsCurly = const IconDataSolid(0xf7ea); - - /// Light Curly Brackets icon - /// - /// https://fontawesome.com/icons/light_brackets-curly?style=light - /// code, developer, development, parentheses - static const IconData lightBracketsCurly = const IconDataLight(0xf7ea); - - /// Duotone Curly Brackets icon - /// - /// https://fontawesome.com/icons/duotone_brackets-curly?style=duotone - /// code, developer, development, parentheses - static const IconDataDuotone duotoneBracketsCurly = const IconDataDuotone( - 0xf7ea, - secondary: const IconDataDuotone(0x10f7ea), - ); - - /// Regular Braille icon - /// - /// https://fontawesome.com/icons/braille?style=regular - /// alphabet, blind, dots, raised, vision - static const IconData braille = const IconDataRegular(0xf2a1); - - /// Solid Braille icon - /// - /// https://fontawesome.com/icons/braille?style=solid - /// alphabet, blind, dots, raised, vision - static const IconData solidBraille = const IconDataSolid(0xf2a1); - - /// Light Braille icon - /// - /// https://fontawesome.com/icons/light_braille?style=light - /// alphabet, blind, dots, raised, vision - static const IconData lightBraille = const IconDataLight(0xf2a1); - - /// Duotone Braille icon - /// - /// https://fontawesome.com/icons/duotone_braille?style=duotone - /// alphabet, blind, dots, raised, vision - static const IconDataDuotone duotoneBraille = const IconDataDuotone( - 0xf2a1, - secondary: const IconDataDuotone(0x10f2a1), - ); - - /// Regular Brain icon - /// - /// https://fontawesome.com/icons/brain?style=regular - /// cerebellum, gray matter, intellect, medulla oblongata, mind, noodle, wit - static const IconData brain = const IconDataRegular(0xf5dc); - - /// Solid Brain icon - /// - /// https://fontawesome.com/icons/brain?style=solid - /// cerebellum, gray matter, intellect, medulla oblongata, mind, noodle, wit - static const IconData solidBrain = const IconDataSolid(0xf5dc); - - /// Light Brain icon - /// - /// https://fontawesome.com/icons/light_brain?style=light - /// cerebellum, gray matter, intellect, medulla oblongata, mind, noodle, wit - static const IconData lightBrain = const IconDataLight(0xf5dc); - - /// Duotone Brain icon - /// - /// https://fontawesome.com/icons/duotone_brain?style=duotone - /// cerebellum, gray matter, intellect, medulla oblongata, mind, noodle, wit - static const IconDataDuotone duotoneBrain = const IconDataDuotone( - 0xf5dc, - secondary: const IconDataDuotone(0x10f5dc), - ); - - /// Regular Loaf of Bread icon - /// - /// https://fontawesome.com/icons/bread-loaf?style=regular - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData breadLoaf = const IconDataRegular(0xf7eb); - - /// Solid Loaf of Bread icon - /// - /// https://fontawesome.com/icons/bread-loaf?style=solid - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData solidBreadLoaf = const IconDataSolid(0xf7eb); - - /// Light Loaf of Bread icon - /// - /// https://fontawesome.com/icons/light_bread-loaf?style=light - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData lightBreadLoaf = const IconDataLight(0xf7eb); - - /// Duotone Loaf of Bread icon - /// - /// https://fontawesome.com/icons/duotone_bread-loaf?style=duotone - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconDataDuotone duotoneBreadLoaf = const IconDataDuotone( - 0xf7eb, - secondary: const IconDataDuotone(0x10f7eb), - ); - - /// 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 = const IconDataRegular(0xf7ec); - - /// 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 = const IconDataSolid(0xf7ec); - - /// Light Bread Slice icon - /// - /// https://fontawesome.com/icons/light_bread-slice?style=light - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconData lightBreadSlice = const IconDataLight(0xf7ec); - - /// Duotone Bread Slice icon - /// - /// https://fontawesome.com/icons/duotone_bread-slice?style=duotone - /// bake, bakery, baking, dough, flour, gluten, grain, sandwich, sourdough, toast, wheat, yeast - static const IconDataDuotone duotoneBreadSlice = const IconDataDuotone( - 0xf7ec, - secondary: const IconDataDuotone(0x10f7ec), - ); - - /// Regular Briefcase icon - /// - /// https://fontawesome.com/icons/briefcase?style=regular - /// bag, business, luggage, office, work - static const IconData briefcase = const IconDataRegular(0xf0b1); - - /// Solid Briefcase icon - /// - /// https://fontawesome.com/icons/briefcase?style=solid - /// bag, business, luggage, office, work - static const IconData solidBriefcase = const IconDataSolid(0xf0b1); - - /// Light Briefcase icon - /// - /// https://fontawesome.com/icons/light_briefcase?style=light - /// bag, business, luggage, office, work - static const IconData lightBriefcase = const IconDataLight(0xf0b1); - - /// Duotone Briefcase icon - /// - /// https://fontawesome.com/icons/duotone_briefcase?style=duotone - /// bag, business, luggage, office, work - static const IconDataDuotone duotoneBriefcase = const IconDataDuotone( - 0xf0b1, - secondary: const IconDataDuotone(0x10f0b1), - ); - - /// Regular Medical Briefcase icon - /// - /// https://fontawesome.com/icons/briefcase-medical?style=regular - /// doctor, emt, first aid, health - static const IconData briefcaseMedical = const IconDataRegular(0xf469); - - /// Solid Medical Briefcase icon - /// - /// https://fontawesome.com/icons/briefcase-medical?style=solid - /// doctor, emt, first aid, health - static const IconData solidBriefcaseMedical = const IconDataSolid(0xf469); - - /// Light Medical Briefcase icon - /// - /// https://fontawesome.com/icons/light_briefcase-medical?style=light - /// doctor, emt, first aid, health - static const IconData lightBriefcaseMedical = const IconDataLight(0xf469); - - /// Duotone Medical Briefcase icon - /// - /// https://fontawesome.com/icons/duotone_briefcase-medical?style=duotone - /// doctor, emt, first aid, health - static const IconDataDuotone duotoneBriefcaseMedical = const IconDataDuotone( - 0xf469, - secondary: const IconDataDuotone(0x10f469), - ); - - /// Regular Bring Forward icon - /// - /// https://fontawesome.com/icons/bring-forward?style=regular - /// arrange, front, layer, order, stack - static const IconData bringForward = const IconDataRegular(0xf856); - - /// Solid Bring Forward icon - /// - /// https://fontawesome.com/icons/bring-forward?style=solid - /// arrange, front, layer, order, stack - static const IconData solidBringForward = const IconDataSolid(0xf856); - - /// Light Bring Forward icon - /// - /// https://fontawesome.com/icons/light_bring-forward?style=light - /// arrange, front, layer, order, stack - static const IconData lightBringForward = const IconDataLight(0xf856); - - /// Duotone Bring Forward icon - /// - /// https://fontawesome.com/icons/duotone_bring-forward?style=duotone - /// arrange, front, layer, order, stack - static const IconDataDuotone duotoneBringForward = const IconDataDuotone( - 0xf856, - secondary: const IconDataDuotone(0x10f856), - ); - - /// Regular Bring Front icon - /// - /// https://fontawesome.com/icons/bring-front?style=regular - /// arrange, forward, layer, order, stack - static const IconData bringFront = const IconDataRegular(0xf857); - - /// Solid Bring Front icon - /// - /// https://fontawesome.com/icons/bring-front?style=solid - /// arrange, forward, layer, order, stack - static const IconData solidBringFront = const IconDataSolid(0xf857); - - /// Light Bring Front icon - /// - /// https://fontawesome.com/icons/light_bring-front?style=light - /// arrange, forward, layer, order, stack - static const IconData lightBringFront = const IconDataLight(0xf857); - - /// Duotone Bring Front icon - /// - /// https://fontawesome.com/icons/duotone_bring-front?style=duotone - /// arrange, forward, layer, order, stack - static const IconDataDuotone duotoneBringFront = const IconDataDuotone( - 0xf857, - secondary: const IconDataDuotone(0x10f857), - ); - - /// Regular Broadcast Tower icon - /// - /// https://fontawesome.com/icons/broadcast-tower?style=regular - /// airwaves, antenna, radio, reception, waves - static const IconData broadcastTower = const IconDataRegular(0xf519); - - /// Solid Broadcast Tower icon - /// - /// https://fontawesome.com/icons/broadcast-tower?style=solid - /// airwaves, antenna, radio, reception, waves - static const IconData solidBroadcastTower = const IconDataSolid(0xf519); - - /// Light Broadcast Tower icon - /// - /// https://fontawesome.com/icons/light_broadcast-tower?style=light - /// airwaves, antenna, radio, reception, waves - static const IconData lightBroadcastTower = const IconDataLight(0xf519); - - /// Duotone Broadcast Tower icon - /// - /// https://fontawesome.com/icons/duotone_broadcast-tower?style=duotone - /// airwaves, antenna, radio, reception, waves - static const IconDataDuotone duotoneBroadcastTower = const IconDataDuotone( - 0xf519, - secondary: const IconDataDuotone(0x10f519), - ); - - /// Regular Broom icon - /// - /// https://fontawesome.com/icons/broom?style=regular - /// clean, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, witch - static const IconData broom = const IconDataRegular(0xf51a); - - /// Solid Broom icon - /// - /// https://fontawesome.com/icons/broom?style=solid - /// clean, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, witch - static const IconData solidBroom = const IconDataSolid(0xf51a); - - /// Light Broom icon - /// - /// https://fontawesome.com/icons/light_broom?style=light - /// clean, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, witch - static const IconData lightBroom = const IconDataLight(0xf51a); - - /// Duotone Broom icon - /// - /// https://fontawesome.com/icons/duotone_broom?style=duotone - /// clean, firebolt, fly, halloween, nimbus 2000, quidditch, sweep, witch - static const IconDataDuotone duotoneBroom = const IconDataDuotone( - 0xf51a, - secondary: const IconDataDuotone(0x10f51a), - ); - - /// Regular Browser icon - /// - /// https://fontawesome.com/icons/browser?style=regular - /// app, application, desktop, explorer, internet, web, website - static const IconData browser = const IconDataRegular(0xf37e); - - /// Solid Browser icon - /// - /// https://fontawesome.com/icons/browser?style=solid - /// app, application, desktop, explorer, internet, web, website - static const IconData solidBrowser = const IconDataSolid(0xf37e); - - /// Light Browser icon - /// - /// https://fontawesome.com/icons/light_browser?style=light - /// app, application, desktop, explorer, internet, web, website - static const IconData lightBrowser = const IconDataLight(0xf37e); - - /// Duotone Browser icon - /// - /// https://fontawesome.com/icons/duotone_browser?style=duotone - /// app, application, desktop, explorer, internet, web, website - static const IconDataDuotone duotoneBrowser = const IconDataDuotone( - 0xf37e, - secondary: const IconDataDuotone(0x10f37e), - ); - - /// Regular Brush icon - /// - /// https://fontawesome.com/icons/brush?style=regular - /// art, bristles, color, handle, paint - static const IconData brush = const IconDataRegular(0xf55d); - - /// Solid Brush icon - /// - /// https://fontawesome.com/icons/brush?style=solid - /// art, bristles, color, handle, paint - static const IconData solidBrush = const IconDataSolid(0xf55d); - - /// Light Brush icon - /// - /// https://fontawesome.com/icons/light_brush?style=light - /// art, bristles, color, handle, paint - static const IconData lightBrush = const IconDataLight(0xf55d); - - /// Duotone Brush icon - /// - /// https://fontawesome.com/icons/duotone_brush?style=duotone - /// art, bristles, color, handle, paint - static const IconDataDuotone duotoneBrush = const IconDataDuotone( - 0xf55d, - secondary: const IconDataDuotone(0x10f55d), - ); - - /// Brands BTC icon - /// - /// https://fontawesome.com/icons/btc?style=brands - static const IconData btc = const IconDataBrands(0xf15a); - - /// Brands Buffer icon - /// - /// https://fontawesome.com/icons/buffer?style=brands - static const IconData buffer = const IconDataBrands(0xf837); - - /// Regular Bug icon - /// - /// https://fontawesome.com/icons/bug?style=regular - /// beetle, error, insect, report - static const IconData bug = const IconDataRegular(0xf188); - - /// Solid Bug icon - /// - /// https://fontawesome.com/icons/bug?style=solid - /// beetle, error, insect, report - static const IconData solidBug = const IconDataSolid(0xf188); - - /// Light Bug icon - /// - /// https://fontawesome.com/icons/light_bug?style=light - /// beetle, error, insect, report - static const IconData lightBug = const IconDataLight(0xf188); - - /// Duotone Bug icon - /// - /// https://fontawesome.com/icons/duotone_bug?style=duotone - /// beetle, error, insect, report - static const IconDataDuotone duotoneBug = const IconDataDuotone( - 0xf188, - secondary: const IconDataDuotone(0x10f188), - ); - - /// Regular Building icon - /// - /// https://fontawesome.com/icons/building?style=regular - /// apartment, business, city, company, office, work - static const IconData building = const IconDataRegular(0xf1ad); - - /// Solid Building icon - /// - /// https://fontawesome.com/icons/building?style=solid - /// apartment, business, city, company, office, work - static const IconData solidBuilding = const IconDataSolid(0xf1ad); - - /// Light Building icon - /// - /// https://fontawesome.com/icons/light_building?style=light - /// apartment, business, city, company, office, work - static const IconData lightBuilding = const IconDataLight(0xf1ad); - - /// Duotone Building icon - /// - /// https://fontawesome.com/icons/duotone_building?style=duotone - /// apartment, business, city, company, office, work - static const IconDataDuotone duotoneBuilding = const IconDataDuotone( - 0xf1ad, - secondary: const IconDataDuotone(0x10f1ad), - ); - - /// Regular bullhorn icon - /// - /// https://fontawesome.com/icons/bullhorn?style=regular - /// announcement, broadcast, louder, megaphone, share - static const IconData bullhorn = const IconDataRegular(0xf0a1); - - /// Solid bullhorn icon - /// - /// https://fontawesome.com/icons/bullhorn?style=solid - /// announcement, broadcast, louder, megaphone, share - static const IconData solidBullhorn = const IconDataSolid(0xf0a1); - - /// Light bullhorn icon - /// - /// https://fontawesome.com/icons/light_bullhorn?style=light - /// announcement, broadcast, louder, megaphone, share - static const IconData lightBullhorn = const IconDataLight(0xf0a1); - - /// Duotone bullhorn icon - /// - /// https://fontawesome.com/icons/duotone_bullhorn?style=duotone - /// announcement, broadcast, louder, megaphone, share - static const IconDataDuotone duotoneBullhorn = const IconDataDuotone( - 0xf0a1, - secondary: const IconDataDuotone(0x10f0a1), - ); - - /// Regular Bullseye icon - /// - /// https://fontawesome.com/icons/bullseye?style=regular - /// archery, goal, objective, target - static const IconData bullseye = const IconDataRegular(0xf140); - - /// Solid Bullseye icon - /// - /// https://fontawesome.com/icons/bullseye?style=solid - /// archery, goal, objective, target - static const IconData solidBullseye = const IconDataSolid(0xf140); - - /// Light Bullseye icon - /// - /// https://fontawesome.com/icons/light_bullseye?style=light - /// archery, goal, objective, target - static const IconData lightBullseye = const IconDataLight(0xf140); - - /// Duotone Bullseye icon - /// - /// https://fontawesome.com/icons/duotone_bullseye?style=duotone - /// archery, goal, objective, target - static const IconDataDuotone duotoneBullseye = const IconDataDuotone( - 0xf140, - secondary: const IconDataDuotone(0x10f140), - ); - - /// Regular Bullseye Arrow icon - /// - /// https://fontawesome.com/icons/bullseye-arrow?style=regular - /// archery, arrow, goal, objective, robin hood, target - static const IconData bullseyeArrow = const IconDataRegular(0xf648); - - /// Solid Bullseye Arrow icon - /// - /// https://fontawesome.com/icons/bullseye-arrow?style=solid - /// archery, arrow, goal, objective, robin hood, target - static const IconData solidBullseyeArrow = const IconDataSolid(0xf648); - - /// Light Bullseye Arrow icon - /// - /// https://fontawesome.com/icons/light_bullseye-arrow?style=light - /// archery, arrow, goal, objective, robin hood, target - static const IconData lightBullseyeArrow = const IconDataLight(0xf648); - - /// Duotone Bullseye Arrow icon - /// - /// https://fontawesome.com/icons/duotone_bullseye-arrow?style=duotone - /// archery, arrow, goal, objective, robin hood, target - static const IconDataDuotone duotoneBullseyeArrow = const IconDataDuotone( - 0xf648, - secondary: const IconDataDuotone(0x10f648), - ); - - /// Regular Bullseye Pointer icon - /// - /// https://fontawesome.com/icons/bullseye-pointer?style=regular - /// archery, goal, objective, target - static const IconData bullseyePointer = const IconDataRegular(0xf649); - - /// Solid Bullseye Pointer icon - /// - /// https://fontawesome.com/icons/bullseye-pointer?style=solid - /// archery, goal, objective, target - static const IconData solidBullseyePointer = const IconDataSolid(0xf649); - - /// Light Bullseye Pointer icon - /// - /// https://fontawesome.com/icons/light_bullseye-pointer?style=light - /// archery, goal, objective, target - static const IconData lightBullseyePointer = const IconDataLight(0xf649); - - /// Duotone Bullseye Pointer icon - /// - /// https://fontawesome.com/icons/duotone_bullseye-pointer?style=duotone - /// archery, goal, objective, target - static const IconDataDuotone duotoneBullseyePointer = const IconDataDuotone( - 0xf649, - secondary: const IconDataDuotone(0x10f649), - ); - - /// Regular Burger and 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 = const IconDataRegular(0xf858); - - /// Solid Burger and 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 = const IconDataSolid(0xf858); - - /// Light Burger and Soda icon - /// - /// https://fontawesome.com/icons/light_burger-soda?style=light - /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconData lightBurgerSoda = const IconDataLight(0xf858); - - /// Duotone Burger and Soda icon - /// - /// https://fontawesome.com/icons/duotone_burger-soda?style=duotone - /// bacon, beef, cheeseburger, fast food, grill, ground beef, hamburger, junk food, pop, sandwich, slider - static const IconDataDuotone duotoneBurgerSoda = const IconDataDuotone( - 0xf858, - secondary: const IconDataDuotone(0x10f858), - ); - - /// Regular Burn icon - /// - /// https://fontawesome.com/icons/burn?style=regular - /// caliente, energy, fire, flame, gas, heat, hot - static const IconData burn = const IconDataRegular(0xf46a); - - /// Solid Burn icon - /// - /// https://fontawesome.com/icons/burn?style=solid - /// caliente, energy, fire, flame, gas, heat, hot - static const IconData solidBurn = const IconDataSolid(0xf46a); - - /// Light Burn icon - /// - /// https://fontawesome.com/icons/light_burn?style=light - /// caliente, energy, fire, flame, gas, heat, hot - static const IconData lightBurn = const IconDataLight(0xf46a); - - /// Duotone Burn icon - /// - /// https://fontawesome.com/icons/duotone_burn?style=duotone - /// caliente, energy, fire, flame, gas, heat, hot - static const IconDataDuotone duotoneBurn = const IconDataDuotone( - 0xf46a, - secondary: const IconDataDuotone(0x10f46a), - ); - - /// Brands Büromöbel-Experte GmbH & Co. KG. icon - /// - /// https://fontawesome.com/icons/buromobelexperte?style=brands - static const IconData buromobelexperte = const IconDataBrands(0xf37f); - - /// Regular Burrito icon - /// - /// https://fontawesome.com/icons/burrito?style=regular - /// beans, breakfast, chimichanga, mexican, salsa, taco, tortilla - static const IconData burrito = const IconDataRegular(0xf7ed); - - /// Solid Burrito icon - /// - /// https://fontawesome.com/icons/burrito?style=solid - /// beans, breakfast, chimichanga, mexican, salsa, taco, tortilla - static const IconData solidBurrito = const IconDataSolid(0xf7ed); - - /// Light Burrito icon - /// - /// https://fontawesome.com/icons/light_burrito?style=light - /// beans, breakfast, chimichanga, mexican, salsa, taco, tortilla - static const IconData lightBurrito = const IconDataLight(0xf7ed); - - /// Duotone Burrito icon - /// - /// https://fontawesome.com/icons/duotone_burrito?style=duotone - /// beans, breakfast, chimichanga, mexican, salsa, taco, tortilla - static const IconDataDuotone duotoneBurrito = const IconDataDuotone( - 0xf7ed, - secondary: const IconDataDuotone(0x10f7ed), - ); - - /// Regular Bus icon - /// - /// https://fontawesome.com/icons/bus?style=regular - /// public transportation, transportation, travel, vehicle - static const IconData bus = const IconDataRegular(0xf207); - - /// Solid Bus icon - /// - /// https://fontawesome.com/icons/bus?style=solid - /// public transportation, transportation, travel, vehicle - static const IconData solidBus = const IconDataSolid(0xf207); - - /// Light Bus icon - /// - /// https://fontawesome.com/icons/light_bus?style=light - /// public transportation, transportation, travel, vehicle - static const IconData lightBus = const IconDataLight(0xf207); - - /// Duotone Bus icon - /// - /// https://fontawesome.com/icons/duotone_bus?style=duotone - /// public transportation, transportation, travel, vehicle - static const IconDataDuotone duotoneBus = const IconDataDuotone( - 0xf207, - secondary: const IconDataDuotone(0x10f207), - ); - - /// Regular Bus Alt icon - /// - /// https://fontawesome.com/icons/bus-alt?style=regular - /// mta, public transportation, transportation, travel, vehicle - static const IconData busAlt = const IconDataRegular(0xf55e); - - /// Solid Bus Alt icon - /// - /// https://fontawesome.com/icons/bus-alt?style=solid - /// mta, public transportation, transportation, travel, vehicle - static const IconData solidBusAlt = const IconDataSolid(0xf55e); - - /// Light Bus Alt icon - /// - /// https://fontawesome.com/icons/light_bus-alt?style=light - /// mta, public transportation, transportation, travel, vehicle - static const IconData lightBusAlt = const IconDataLight(0xf55e); - - /// Duotone Bus Alt icon - /// - /// https://fontawesome.com/icons/duotone_bus-alt?style=duotone - /// mta, public transportation, transportation, travel, vehicle - static const IconDataDuotone duotoneBusAlt = const IconDataDuotone( - 0xf55e, - secondary: const IconDataDuotone(0x10f55e), - ); - - /// Regular Bus School icon - /// - /// https://fontawesome.com/icons/bus-school?style=regular - /// education, school, transportation, vehicle - static const IconData busSchool = const IconDataRegular(0xf5dd); - - /// Solid Bus School icon - /// - /// https://fontawesome.com/icons/bus-school?style=solid - /// education, school, transportation, vehicle - static const IconData solidBusSchool = const IconDataSolid(0xf5dd); - - /// Light Bus School icon - /// - /// https://fontawesome.com/icons/light_bus-school?style=light - /// education, school, transportation, vehicle - static const IconData lightBusSchool = const IconDataLight(0xf5dd); - - /// Duotone Bus School icon - /// - /// https://fontawesome.com/icons/duotone_bus-school?style=duotone - /// education, school, transportation, vehicle - static const IconDataDuotone duotoneBusSchool = const IconDataDuotone( - 0xf5dd, - secondary: const IconDataDuotone(0x10f5dd), - ); - - /// Regular Business Time icon - /// - /// https://fontawesome.com/icons/business-time?style=regular - /// alarm, briefcase, business socks, clock, flight of the conchords, reminder, wednesday - static const IconData businessTime = const IconDataRegular(0xf64a); - - /// Solid Business Time icon - /// - /// https://fontawesome.com/icons/business-time?style=solid - /// alarm, briefcase, business socks, clock, flight of the conchords, reminder, wednesday - static const IconData solidBusinessTime = const IconDataSolid(0xf64a); - - /// Light Business Time icon - /// - /// https://fontawesome.com/icons/light_business-time?style=light - /// alarm, briefcase, business socks, clock, flight of the conchords, reminder, wednesday - static const IconData lightBusinessTime = const IconDataLight(0xf64a); - - /// Duotone Business Time icon - /// - /// https://fontawesome.com/icons/duotone_business-time?style=duotone - /// alarm, briefcase, business socks, clock, flight of the conchords, reminder, wednesday - static const IconDataDuotone duotoneBusinessTime = const IconDataDuotone( - 0xf64a, - secondary: const IconDataDuotone(0x10f64a), - ); - - /// Brands Buy n Large icon - /// - /// https://fontawesome.com/icons/buy-n-large?style=brands - static const IconData buyNLarge = const IconDataBrands(0xf8a6); - - /// Brands BuySellAds icon - /// - /// https://fontawesome.com/icons/buysellads?style=brands - static const IconData buysellads = const IconDataBrands(0xf20d); - - /// Regular Filing Cabinet icon - /// - /// https://fontawesome.com/icons/cabinet-filing?style=regular - /// archive, files, records, register, storage - static const IconData cabinetFiling = const IconDataRegular(0xf64b); - - /// Solid Filing Cabinet icon - /// - /// https://fontawesome.com/icons/cabinet-filing?style=solid - /// archive, files, records, register, storage - static const IconData solidCabinetFiling = const IconDataSolid(0xf64b); - - /// Light Filing Cabinet icon - /// - /// https://fontawesome.com/icons/light_cabinet-filing?style=light - /// archive, files, records, register, storage - static const IconData lightCabinetFiling = const IconDataLight(0xf64b); - - /// Duotone Filing Cabinet icon - /// - /// https://fontawesome.com/icons/duotone_cabinet-filing?style=duotone - /// archive, files, records, register, storage - static const IconDataDuotone duotoneCabinetFiling = const IconDataDuotone( - 0xf64b, - secondary: const IconDataDuotone(0x10f64b), - ); - - /// Regular Cactus icon - /// - /// https://fontawesome.com/icons/cactus?style=regular - /// cowboy, desert, flora, old west, plant, succulent, western - static const IconData cactus = const IconDataRegular(0xf8a7); - - /// Light Cactus icon - /// - /// https://fontawesome.com/icons/light_cactus?style=light - /// cowboy, desert, flora, old west, plant, succulent, western - static const IconData lightCactus = const IconDataLight(0xf8a7); - - /// Solid Cactus icon - /// - /// https://fontawesome.com/icons/cactus?style=solid - /// cowboy, desert, flora, old west, plant, succulent, western - static const IconData solidCactus = const IconDataSolid(0xf8a7); - - /// Duotone Cactus icon - /// - /// https://fontawesome.com/icons/duotone_cactus?style=duotone - /// cowboy, desert, flora, old west, plant, succulent, western - static const IconDataDuotone duotoneCactus = const IconDataDuotone( - 0xf8a7, - secondary: const IconDataDuotone(0x10f8a7), - ); - - /// Regular Calculator icon - /// - /// https://fontawesome.com/icons/calculator?style=regular - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData calculator = const IconDataRegular(0xf1ec); - - /// Solid Calculator icon - /// - /// https://fontawesome.com/icons/calculator?style=solid - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData solidCalculator = const IconDataSolid(0xf1ec); - - /// Light Calculator icon - /// - /// https://fontawesome.com/icons/light_calculator?style=light - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData lightCalculator = const IconDataLight(0xf1ec); - - /// Duotone Calculator icon - /// - /// https://fontawesome.com/icons/duotone_calculator?style=duotone - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconDataDuotone duotoneCalculator = const IconDataDuotone( - 0xf1ec, - secondary: const IconDataDuotone(0x10f1ec), - ); - - /// Regular Alternate Calculator icon - /// - /// https://fontawesome.com/icons/calculator-alt?style=regular - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData calculatorAlt = const IconDataRegular(0xf64c); - - /// Solid Alternate Calculator icon - /// - /// https://fontawesome.com/icons/calculator-alt?style=solid - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData solidCalculatorAlt = const IconDataSolid(0xf64c); - - /// Light Alternate Calculator icon - /// - /// https://fontawesome.com/icons/light_calculator-alt?style=light - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconData lightCalculatorAlt = const IconDataLight(0xf64c); - - /// Duotone Alternate Calculator icon - /// - /// https://fontawesome.com/icons/duotone_calculator-alt?style=duotone - /// abacus, addition, arithmetic, counting, math, multiplication, subtraction - static const IconDataDuotone duotoneCalculatorAlt = const IconDataDuotone( - 0xf64c, - secondary: const IconDataDuotone(0x10f64c), - ); - - /// Regular Calendar icon - /// - /// https://fontawesome.com/icons/calendar?style=regular - /// calendar-o, date, event, schedule, time, when - static const IconData calendar = const IconDataRegular(0xf133); - - /// Solid Calendar icon - /// - /// https://fontawesome.com/icons/calendar?style=solid - /// calendar-o, date, event, schedule, time, when - static const IconData solidCalendar = const IconDataSolid(0xf133); - - /// Light Calendar icon - /// - /// https://fontawesome.com/icons/light_calendar?style=light - /// calendar-o, date, event, schedule, time, when - static const IconData lightCalendar = const IconDataLight(0xf133); - - /// Duotone Calendar icon - /// - /// https://fontawesome.com/icons/duotone_calendar?style=duotone - /// calendar-o, date, event, schedule, time, when - static const IconDataDuotone duotoneCalendar = const IconDataDuotone( - 0xf133, - secondary: const IconDataDuotone(0x10f133), - ); - - /// Regular Alternate Calendar icon - /// - /// https://fontawesome.com/icons/calendar-alt?style=regular - /// calendar, date, event, schedule, time, when - static const IconData calendarAlt = const IconDataRegular(0xf073); - - /// Solid Alternate Calendar icon - /// - /// https://fontawesome.com/icons/calendar-alt?style=solid - /// calendar, date, event, schedule, time, when - static const IconData solidCalendarAlt = const IconDataSolid(0xf073); - - /// Light Alternate Calendar icon - /// - /// https://fontawesome.com/icons/light_calendar-alt?style=light - /// calendar, date, event, schedule, time, when - static const IconData lightCalendarAlt = const IconDataLight(0xf073); - - /// Duotone Alternate Calendar icon - /// - /// https://fontawesome.com/icons/duotone_calendar-alt?style=duotone - /// calendar, date, event, schedule, time, when - static const IconDataDuotone duotoneCalendarAlt = const IconDataDuotone( - 0xf073, - secondary: const IconDataDuotone(0x10f073), - ); - - /// Regular Calendar Check icon - /// - /// https://fontawesome.com/icons/calendar-check?style=regular - /// accept, agree, appointment, confirm, correct, date, done, event, ok, schedule, select, success, tick, time, todo, when - static const IconData calendarCheck = const IconDataRegular(0xf274); - - /// Solid Calendar Check icon - /// - /// https://fontawesome.com/icons/calendar-check?style=solid - /// accept, agree, appointment, confirm, correct, date, done, event, ok, schedule, select, success, tick, time, todo, when - static const IconData solidCalendarCheck = const IconDataSolid(0xf274); - - /// Light Calendar Check icon - /// - /// https://fontawesome.com/icons/light_calendar-check?style=light - /// accept, agree, appointment, confirm, correct, date, done, event, ok, schedule, select, success, tick, time, todo, when - static const IconData lightCalendarCheck = const IconDataLight(0xf274); - - /// Duotone Calendar Check icon - /// - /// https://fontawesome.com/icons/duotone_calendar-check?style=duotone - /// accept, agree, appointment, confirm, correct, date, done, event, ok, schedule, select, success, tick, time, todo, when - static const IconDataDuotone duotoneCalendarCheck = const IconDataDuotone( - 0xf274, - secondary: const IconDataDuotone(0x10f274), - ); - - /// Regular Calendar with Day Focus icon - /// - /// https://fontawesome.com/icons/calendar-day?style=regular - /// date, detail, event, focus, schedule, single day, time, today, when - static const IconData calendarDay = const IconDataRegular(0xf783); - - /// Solid Calendar with Day Focus icon - /// - /// https://fontawesome.com/icons/calendar-day?style=solid - /// date, detail, event, focus, schedule, single day, time, today, when - static const IconData solidCalendarDay = const IconDataSolid(0xf783); - - /// Light Calendar with Day Focus icon - /// - /// https://fontawesome.com/icons/light_calendar-day?style=light - /// date, detail, event, focus, schedule, single day, time, today, when - static const IconData lightCalendarDay = const IconDataLight(0xf783); - - /// Duotone Calendar with Day Focus icon - /// - /// https://fontawesome.com/icons/duotone_calendar-day?style=duotone - /// date, detail, event, focus, schedule, single day, time, today, when - static const IconDataDuotone duotoneCalendarDay = const IconDataDuotone( - 0xf783, - secondary: const IconDataDuotone(0x10f783), - ); - - /// Regular Calendar Edit icon - /// - /// https://fontawesome.com/icons/calendar-edit?style=regular - /// date, edit, event, pen, pencil, schedule, time, update, when, write - static const IconData calendarEdit = const IconDataRegular(0xf333); - - /// Solid Calendar Edit icon - /// - /// https://fontawesome.com/icons/calendar-edit?style=solid - /// date, edit, event, pen, pencil, schedule, time, update, when, write - static const IconData solidCalendarEdit = const IconDataSolid(0xf333); - - /// Light Calendar Edit icon - /// - /// https://fontawesome.com/icons/light_calendar-edit?style=light - /// date, edit, event, pen, pencil, schedule, time, update, when, write - static const IconData lightCalendarEdit = const IconDataLight(0xf333); - - /// Duotone Calendar Edit icon - /// - /// https://fontawesome.com/icons/duotone_calendar-edit?style=duotone - /// date, edit, event, pen, pencil, schedule, time, update, when, write - static const IconDataDuotone duotoneCalendarEdit = const IconDataDuotone( - 0xf333, - secondary: const IconDataDuotone(0x10f333), - ); - - /// Regular Calendar Exclamation icon - /// - /// https://fontawesome.com/icons/calendar-exclamation?style=regular - /// calendar, date, event, important, schedule, time, when - static const IconData calendarExclamation = const IconDataRegular(0xf334); - - /// Solid Calendar Exclamation icon - /// - /// https://fontawesome.com/icons/calendar-exclamation?style=solid - /// calendar, date, event, important, schedule, time, when - static const IconData solidCalendarExclamation = const IconDataSolid(0xf334); - - /// Light Calendar Exclamation icon - /// - /// https://fontawesome.com/icons/light_calendar-exclamation?style=light - /// calendar, date, event, important, schedule, time, when - static const IconData lightCalendarExclamation = const IconDataLight(0xf334); - - /// Duotone Calendar Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_calendar-exclamation?style=duotone - /// calendar, date, event, important, schedule, time, when - static const IconDataDuotone duotoneCalendarExclamation = - const IconDataDuotone( - 0xf334, - secondary: const IconDataDuotone(0x10f334), - ); - - /// Regular Calendar Minus icon - /// - /// https://fontawesome.com/icons/calendar-minus?style=regular - /// calendar, date, delete, event, negative, remove, schedule, time, when - static const IconData calendarMinus = const IconDataRegular(0xf272); - - /// Solid Calendar Minus icon - /// - /// https://fontawesome.com/icons/calendar-minus?style=solid - /// calendar, date, delete, event, negative, remove, schedule, time, when - static const IconData solidCalendarMinus = const IconDataSolid(0xf272); - - /// Light Calendar Minus icon - /// - /// https://fontawesome.com/icons/light_calendar-minus?style=light - /// calendar, date, delete, event, negative, remove, schedule, time, when - static const IconData lightCalendarMinus = const IconDataLight(0xf272); - - /// Duotone Calendar Minus icon - /// - /// https://fontawesome.com/icons/duotone_calendar-minus?style=duotone - /// calendar, date, delete, event, negative, remove, schedule, time, when - static const IconDataDuotone duotoneCalendarMinus = const IconDataDuotone( - 0xf272, - secondary: const IconDataDuotone(0x10f272), - ); - - /// Regular Calendar Plus icon - /// - /// https://fontawesome.com/icons/calendar-plus?style=regular - /// add, calendar, create, date, event, new, positive, schedule, time, when - static const IconData calendarPlus = const IconDataRegular(0xf271); - - /// Solid Calendar Plus icon - /// - /// https://fontawesome.com/icons/calendar-plus?style=solid - /// add, calendar, create, date, event, new, positive, schedule, time, when - static const IconData solidCalendarPlus = const IconDataSolid(0xf271); - - /// Light Calendar Plus icon - /// - /// https://fontawesome.com/icons/light_calendar-plus?style=light - /// add, calendar, create, date, event, new, positive, schedule, time, when - static const IconData lightCalendarPlus = const IconDataLight(0xf271); - - /// Duotone Calendar Plus icon - /// - /// https://fontawesome.com/icons/duotone_calendar-plus?style=duotone - /// add, calendar, create, date, event, new, positive, schedule, time, when - static const IconDataDuotone duotoneCalendarPlus = const IconDataDuotone( - 0xf271, - secondary: const IconDataDuotone(0x10f271), - ); - - /// Regular Calendar Star icon - /// - /// https://fontawesome.com/icons/calendar-star?style=regular - /// calendar, date, event, favorite, important, schedule, time, when - static const IconData calendarStar = const IconDataRegular(0xf736); - - /// Solid Calendar Star icon - /// - /// https://fontawesome.com/icons/calendar-star?style=solid - /// calendar, date, event, favorite, important, schedule, time, when - static const IconData solidCalendarStar = const IconDataSolid(0xf736); - - /// Light Calendar Star icon - /// - /// https://fontawesome.com/icons/light_calendar-star?style=light - /// calendar, date, event, favorite, important, schedule, time, when - static const IconData lightCalendarStar = const IconDataLight(0xf736); - - /// Duotone Calendar Star icon - /// - /// https://fontawesome.com/icons/duotone_calendar-star?style=duotone - /// calendar, date, event, favorite, important, schedule, time, when - static const IconDataDuotone duotoneCalendarStar = const IconDataDuotone( - 0xf736, - secondary: const IconDataDuotone(0x10f736), - ); - - /// Regular Calendar Times icon - /// - /// https://fontawesome.com/icons/calendar-times?style=regular - /// archive, calendar, date, delete, event, remove, schedule, time, when, x - static const IconData calendarTimes = const IconDataRegular(0xf273); - - /// Solid Calendar Times icon - /// - /// https://fontawesome.com/icons/calendar-times?style=solid - /// archive, calendar, date, delete, event, remove, schedule, time, when, x - static const IconData solidCalendarTimes = const IconDataSolid(0xf273); - - /// Light Calendar Times icon - /// - /// https://fontawesome.com/icons/light_calendar-times?style=light - /// archive, calendar, date, delete, event, remove, schedule, time, when, x - static const IconData lightCalendarTimes = const IconDataLight(0xf273); - - /// Duotone Calendar Times icon - /// - /// https://fontawesome.com/icons/duotone_calendar-times?style=duotone - /// archive, calendar, date, delete, event, remove, schedule, time, when, x - static const IconDataDuotone duotoneCalendarTimes = const IconDataDuotone( - 0xf273, - secondary: const IconDataDuotone(0x10f273), - ); - - /// Regular Calendar with Week Focus icon - /// - /// https://fontawesome.com/icons/calendar-week?style=regular - /// date, detail, event, focus, schedule, single week, time, today, when - static const IconData calendarWeek = const IconDataRegular(0xf784); - - /// Solid Calendar with Week Focus icon - /// - /// https://fontawesome.com/icons/calendar-week?style=solid - /// date, detail, event, focus, schedule, single week, time, today, when - static const IconData solidCalendarWeek = const IconDataSolid(0xf784); - - /// Light Calendar with Week Focus icon - /// - /// https://fontawesome.com/icons/light_calendar-week?style=light - /// date, detail, event, focus, schedule, single week, time, today, when - static const IconData lightCalendarWeek = const IconDataLight(0xf784); - - /// Duotone Calendar with Week Focus icon - /// - /// https://fontawesome.com/icons/duotone_calendar-week?style=duotone - /// date, detail, event, focus, schedule, single week, time, today, when - static const IconDataDuotone duotoneCalendarWeek = const IconDataDuotone( - 0xf784, - secondary: const IconDataDuotone(0x10f784), - ); - - /// Regular Camcorder icon - /// - /// https://fontawesome.com/icons/camcorder?style=regular - /// cinema, director, film, handheld, movie, retro, theater, video, vintage - static const IconData camcorder = const IconDataRegular(0xf8a8); - - /// Solid Camcorder icon - /// - /// https://fontawesome.com/icons/camcorder?style=solid - /// cinema, director, film, handheld, movie, retro, theater, video, vintage - static const IconData solidCamcorder = const IconDataSolid(0xf8a8); - - /// Light Camcorder icon - /// - /// https://fontawesome.com/icons/light_camcorder?style=light - /// cinema, director, film, handheld, movie, retro, theater, video, vintage - static const IconData lightCamcorder = const IconDataLight(0xf8a8); - - /// Duotone Camcorder icon - /// - /// https://fontawesome.com/icons/duotone_camcorder?style=duotone - /// cinema, director, film, handheld, movie, retro, theater, video, vintage - static const IconDataDuotone duotoneCamcorder = const IconDataDuotone( - 0xf8a8, - secondary: const IconDataDuotone(0x10f8a8), - ); - - /// Regular camera icon - /// - /// https://fontawesome.com/icons/camera?style=regular - /// image, lens, photo, picture, record, shutter, video - static const IconData camera = const IconDataRegular(0xf030); - - /// Solid camera icon - /// - /// https://fontawesome.com/icons/camera?style=solid - /// image, lens, photo, picture, record, shutter, video - static const IconData solidCamera = const IconDataSolid(0xf030); - - /// Light camera icon - /// - /// https://fontawesome.com/icons/light_camera?style=light - /// image, lens, photo, picture, record, shutter, video - static const IconData lightCamera = const IconDataLight(0xf030); - - /// Duotone camera icon - /// - /// https://fontawesome.com/icons/duotone_camera?style=duotone - /// image, lens, photo, picture, record, shutter, video - static const IconDataDuotone duotoneCamera = const IconDataDuotone( - 0xf030, - secondary: const IconDataDuotone(0x10f030), - ); - - /// Regular Alternate Camera icon - /// - /// https://fontawesome.com/icons/camera-alt?style=regular - /// image, lens, photo, picture, record, shutter, video - static const IconData cameraAlt = const IconDataRegular(0xf332); - - /// Solid Alternate Camera icon - /// - /// https://fontawesome.com/icons/camera-alt?style=solid - /// image, lens, photo, picture, record, shutter, video - static const IconData solidCameraAlt = const IconDataSolid(0xf332); - - /// Light Alternate Camera icon - /// - /// https://fontawesome.com/icons/light_camera-alt?style=light - /// image, lens, photo, picture, record, shutter, video - static const IconData lightCameraAlt = const IconDataLight(0xf332); - - /// Duotone Alternate Camera icon - /// - /// https://fontawesome.com/icons/duotone_camera-alt?style=duotone - /// image, lens, photo, picture, record, shutter, video - static const IconDataDuotone duotoneCameraAlt = const IconDataDuotone( - 0xf332, - secondary: const IconDataDuotone(0x10f332), - ); - - /// Regular Camera Home icon - /// - /// https://fontawesome.com/icons/camera-home?style=regular - /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData cameraHome = const IconDataRegular(0xf8fe); - - /// Solid Camera Home icon - /// - /// https://fontawesome.com/icons/camera-home?style=solid - /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData solidCameraHome = const IconDataSolid(0xf8fe); - - /// Light Camera Home icon - /// - /// https://fontawesome.com/icons/light_camera-home?style=light - /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconData lightCameraHome = const IconDataLight(0xf8fe); - - /// Duotone Camera Home icon - /// - /// https://fontawesome.com/icons/duotone_camera-home?style=duotone - /// chat, conference call, facetime, podcast, security, video, videoconferencing, youtube - static const IconDataDuotone duotoneCameraHome = const IconDataDuotone( - 0xf8fe, - secondary: const IconDataDuotone(0x10f8fe), - ); - - /// Regular Movie Camera icon - /// - /// https://fontawesome.com/icons/camera-movie?style=regular - /// cinema, director, film, movie, theater, video - static const IconData cameraMovie = const IconDataRegular(0xf8a9); - - /// Solid Movie Camera icon - /// - /// https://fontawesome.com/icons/camera-movie?style=solid - /// cinema, director, film, movie, theater, video - static const IconData solidCameraMovie = const IconDataSolid(0xf8a9); - - /// Light Movie Camera icon - /// - /// https://fontawesome.com/icons/light_camera-movie?style=light - /// cinema, director, film, movie, theater, video - static const IconData lightCameraMovie = const IconDataLight(0xf8a9); - - /// Duotone Movie Camera icon - /// - /// https://fontawesome.com/icons/duotone_camera-movie?style=duotone - /// cinema, director, film, movie, theater, video - static const IconDataDuotone duotoneCameraMovie = const IconDataDuotone( - 0xf8a9, - secondary: const IconDataDuotone(0x10f8a9), - ); - - /// Regular Polaroid Camera icon - /// - /// https://fontawesome.com/icons/camera-polaroid?style=regular - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData cameraPolaroid = const IconDataRegular(0xf8aa); - - /// Solid Polaroid Camera icon - /// - /// https://fontawesome.com/icons/camera-polaroid?style=solid - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData solidCameraPolaroid = const IconDataSolid(0xf8aa); - - /// Light Polaroid Camera icon - /// - /// https://fontawesome.com/icons/light_camera-polaroid?style=light - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData lightCameraPolaroid = const IconDataLight(0xf8aa); - - /// Duotone Polaroid Camera icon - /// - /// https://fontawesome.com/icons/duotone_camera-polaroid?style=duotone - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconDataDuotone duotoneCameraPolaroid = const IconDataDuotone( - 0xf8aa, - secondary: const IconDataDuotone(0x10f8aa), - ); - - /// Regular Retro Camera icon - /// - /// https://fontawesome.com/icons/camera-retro?style=regular - /// image, lens, photo, picture, record, shutter, video - static const IconData cameraRetro = const IconDataRegular(0xf083); - - /// Solid Retro Camera icon - /// - /// https://fontawesome.com/icons/camera-retro?style=solid - /// image, lens, photo, picture, record, shutter, video - static const IconData solidCameraRetro = const IconDataSolid(0xf083); - - /// Light Retro Camera icon - /// - /// https://fontawesome.com/icons/light_camera-retro?style=light - /// image, lens, photo, picture, record, shutter, video - static const IconData lightCameraRetro = const IconDataLight(0xf083); - - /// Duotone Retro Camera icon - /// - /// https://fontawesome.com/icons/duotone_camera-retro?style=duotone - /// image, lens, photo, picture, record, shutter, video - static const IconDataDuotone duotoneCameraRetro = const IconDataDuotone( - 0xf083, - secondary: const IconDataDuotone(0x10f083), - ); - - /// 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 = const IconDataRegular(0xf6ba); - - /// Solid Campfire icon - /// - /// 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 = const IconDataSolid(0xf6ba); - - /// Light Campfire icon - /// - /// https://fontawesome.com/icons/light_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 = const IconDataLight(0xf6ba); - - /// Duotone Campfire icon - /// - /// https://fontawesome.com/icons/duotone_campfire?style=duotone - /// Dungeons & Dragons, caliente, campaign, camping, d&d, dnd, fall, fire, flame, gathering, heat, hot, meeting, outdoors, seasonal, tent, wilderness - static const IconDataDuotone duotoneCampfire = const IconDataDuotone( - 0xf6ba, - secondary: const IconDataDuotone(0x10f6ba), - ); - - /// Regular Campground icon - /// - /// https://fontawesome.com/icons/campground?style=regular - /// camping, fall, outdoors, teepee, tent, tipi - static const IconData campground = const IconDataRegular(0xf6bb); - - /// Solid Campground icon - /// - /// https://fontawesome.com/icons/campground?style=solid - /// camping, fall, outdoors, teepee, tent, tipi - static const IconData solidCampground = const IconDataSolid(0xf6bb); - - /// Light Campground icon - /// - /// https://fontawesome.com/icons/light_campground?style=light - /// camping, fall, outdoors, teepee, tent, tipi - static const IconData lightCampground = const IconDataLight(0xf6bb); - - /// Duotone Campground icon - /// - /// https://fontawesome.com/icons/duotone_campground?style=duotone - /// camping, fall, outdoors, teepee, tent, tipi - static const IconDataDuotone duotoneCampground = const IconDataDuotone( - 0xf6bb, - secondary: const IconDataDuotone(0x10f6bb), - ); - - /// Brands Canadian Maple Leaf icon - /// - /// https://fontawesome.com/icons/canadian-maple-leaf?style=brands - /// canada, flag, flora, nature, plant - static const IconData canadianMapleLeaf = const IconDataBrands(0xf785); - - /// Regular Candle Holder icon - /// - /// https://fontawesome.com/icons/candle-holder?style=regular - /// fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData candleHolder = const IconDataRegular(0xf6bc); - - /// Solid Candle Holder icon - /// - /// https://fontawesome.com/icons/candle-holder?style=solid - /// fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData solidCandleHolder = const IconDataSolid(0xf6bc); - - /// Light Candle Holder icon - /// - /// https://fontawesome.com/icons/light_candle-holder?style=light - /// fire, flame, halloween, holiday, hot, light, lit, wick - static const IconData lightCandleHolder = const IconDataLight(0xf6bc); - - /// Duotone Candle Holder icon - /// - /// https://fontawesome.com/icons/duotone_candle-holder?style=duotone - /// fire, flame, halloween, holiday, hot, light, lit, wick - static const IconDataDuotone duotoneCandleHolder = const IconDataDuotone( - 0xf6bc, - secondary: const IconDataDuotone(0x10f6bc), - ); - - /// Regular Candy Cane icon - /// - /// https://fontawesome.com/icons/candy-cane?style=regular - /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData candyCane = const IconDataRegular(0xf786); - - /// Solid Candy Cane icon - /// - /// https://fontawesome.com/icons/candy-cane?style=solid - /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData solidCandyCane = const IconDataSolid(0xf786); - - /// Light Candy Cane icon - /// - /// https://fontawesome.com/icons/light_candy-cane?style=light - /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconData lightCandyCane = const IconDataLight(0xf786); - - /// Duotone Candy Cane icon - /// - /// https://fontawesome.com/icons/duotone_candy-cane?style=duotone - /// candy, christmas, holiday, mint, peppermint, striped, xmas - static const IconDataDuotone duotoneCandyCane = const IconDataDuotone( - 0xf786, - secondary: const IconDataDuotone(0x10f786), - ); - - /// Regular Candy Corn icon - /// - /// https://fontawesome.com/icons/candy-corn?style=regular - /// halloween, holiday, sugar, triangles - static const IconData candyCorn = const IconDataRegular(0xf6bd); - - /// Solid Candy Corn icon - /// - /// https://fontawesome.com/icons/candy-corn?style=solid - /// halloween, holiday, sugar, triangles - static const IconData solidCandyCorn = const IconDataSolid(0xf6bd); - - /// Light Candy Corn icon - /// - /// https://fontawesome.com/icons/light_candy-corn?style=light - /// halloween, holiday, sugar, triangles - static const IconData lightCandyCorn = const IconDataLight(0xf6bd); - - /// Duotone Candy Corn icon - /// - /// https://fontawesome.com/icons/duotone_candy-corn?style=duotone - /// halloween, holiday, sugar, triangles - static const IconDataDuotone duotoneCandyCorn = const IconDataDuotone( - 0xf6bd, - secondary: const IconDataDuotone(0x10f6bd), - ); - - /// 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 = const IconDataRegular(0xf55f); - - /// 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 = const IconDataSolid(0xf55f); - - /// Light Cannabis icon - /// - /// https://fontawesome.com/icons/light_cannabis?style=light - /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconData lightCannabis = const IconDataLight(0xf55f); - - /// Duotone Cannabis icon - /// - /// https://fontawesome.com/icons/duotone_cannabis?style=duotone - /// bud, chronic, drugs, endica, endo, ganja, marijuana, mary jane, pot, reefer, sativa, spliff, weed, whacky-tabacky - static const IconDataDuotone duotoneCannabis = const IconDataDuotone( - 0xf55f, - secondary: const IconDataDuotone(0x10f55f), - ); - - /// Regular Capsules icon - /// - /// https://fontawesome.com/icons/capsules?style=regular - /// drugs, medicine, pills, prescription - static const IconData capsules = const IconDataRegular(0xf46b); - - /// Solid Capsules icon - /// - /// https://fontawesome.com/icons/capsules?style=solid - /// drugs, medicine, pills, prescription - static const IconData solidCapsules = const IconDataSolid(0xf46b); - - /// Light Capsules icon - /// - /// https://fontawesome.com/icons/light_capsules?style=light - /// drugs, medicine, pills, prescription - static const IconData lightCapsules = const IconDataLight(0xf46b); - - /// Duotone Capsules icon - /// - /// https://fontawesome.com/icons/duotone_capsules?style=duotone - /// drugs, medicine, pills, prescription - static const IconDataDuotone duotoneCapsules = const IconDataDuotone( - 0xf46b, - secondary: const IconDataDuotone(0x10f46b), - ); - - /// Regular Car icon - /// - /// https://fontawesome.com/icons/car?style=regular - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData car = const IconDataRegular(0xf1b9); - - /// Solid Car icon - /// - /// https://fontawesome.com/icons/car?style=solid - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData solidCar = const IconDataSolid(0xf1b9); - - /// Light Car icon - /// - /// https://fontawesome.com/icons/light_car?style=light - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData lightCar = const IconDataLight(0xf1b9); - - /// Duotone Car icon - /// - /// https://fontawesome.com/icons/duotone_car?style=duotone - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconDataDuotone duotoneCar = const IconDataDuotone( - 0xf1b9, - secondary: const IconDataDuotone(0x10f1b9), - ); - - /// Regular Alternate Car icon - /// - /// https://fontawesome.com/icons/car-alt?style=regular - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData carAlt = const IconDataRegular(0xf5de); - - /// Solid Alternate Car icon - /// - /// https://fontawesome.com/icons/car-alt?style=solid - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData solidCarAlt = const IconDataSolid(0xf5de); - - /// Light Alternate Car icon - /// - /// https://fontawesome.com/icons/light_car-alt?style=light - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData lightCarAlt = const IconDataLight(0xf5de); - - /// Duotone Alternate Car icon - /// - /// https://fontawesome.com/icons/duotone_car-alt?style=duotone - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconDataDuotone duotoneCarAlt = const IconDataDuotone( - 0xf5de, - secondary: const IconDataDuotone(0x10f5de), - ); - - /// Regular Car Battery icon - /// - /// https://fontawesome.com/icons/car-battery?style=regular - /// auto, electric, mechanic, power - static const IconData carBattery = const IconDataRegular(0xf5df); - - /// Solid Car Battery icon - /// - /// https://fontawesome.com/icons/car-battery?style=solid - /// auto, electric, mechanic, power - static const IconData solidCarBattery = const IconDataSolid(0xf5df); - - /// Light Car Battery icon - /// - /// https://fontawesome.com/icons/light_car-battery?style=light - /// auto, electric, mechanic, power - static const IconData lightCarBattery = const IconDataLight(0xf5df); - - /// Duotone Car Battery icon - /// - /// https://fontawesome.com/icons/duotone_car-battery?style=duotone - /// auto, electric, mechanic, power - static const IconDataDuotone duotoneCarBattery = const IconDataDuotone( - 0xf5df, - secondary: const IconDataDuotone(0x10f5df), - ); - - /// Regular Car and Building icon - /// - /// https://fontawesome.com/icons/car-building?style=regular - /// city, office, transportation, travel, work - static const IconData carBuilding = const IconDataRegular(0xf859); - - /// Solid Car and Building icon - /// - /// https://fontawesome.com/icons/car-building?style=solid - /// city, office, transportation, travel, work - static const IconData solidCarBuilding = const IconDataSolid(0xf859); - - /// Light Car and Building icon - /// - /// https://fontawesome.com/icons/light_car-building?style=light - /// city, office, transportation, travel, work - static const IconData lightCarBuilding = const IconDataLight(0xf859); - - /// Duotone Car and Building icon - /// - /// https://fontawesome.com/icons/duotone_car-building?style=duotone - /// city, office, transportation, travel, work - static const IconDataDuotone duotoneCarBuilding = const IconDataDuotone( - 0xf859, - secondary: const IconDataDuotone(0x10f859), - ); - - /// Regular Car Bump icon - /// - /// https://fontawesome.com/icons/car-bump?style=regular - /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData carBump = const IconDataRegular(0xf5e0); - - /// Solid Car Bump icon - /// - /// https://fontawesome.com/icons/car-bump?style=solid - /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData solidCarBump = const IconDataSolid(0xf5e0); - - /// Light Car Bump icon - /// - /// https://fontawesome.com/icons/light_car-bump?style=light - /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconData lightCarBump = const IconDataLight(0xf5e0); - - /// Duotone Car Bump icon - /// - /// https://fontawesome.com/icons/duotone_car-bump?style=duotone - /// auto, automobile, off-road, sedan, transportation, vehicle - static const IconDataDuotone duotoneCarBump = const IconDataDuotone( - 0xf5e0, - secondary: const IconDataDuotone(0x10f5e0), - ); - - /// Regular Car and Bus icon - /// - /// https://fontawesome.com/icons/car-bus?style=regular - /// directions, ground transportation, map, transportation, travel - static const IconData carBus = const IconDataRegular(0xf85a); - - /// Solid Car and Bus icon - /// - /// https://fontawesome.com/icons/car-bus?style=solid - /// directions, ground transportation, map, transportation, travel - static const IconData solidCarBus = const IconDataSolid(0xf85a); - - /// Light Car and Bus icon - /// - /// https://fontawesome.com/icons/light_car-bus?style=light - /// directions, ground transportation, map, transportation, travel - static const IconData lightCarBus = const IconDataLight(0xf85a); - - /// Duotone Car and Bus icon - /// - /// https://fontawesome.com/icons/duotone_car-bus?style=duotone - /// directions, ground transportation, map, transportation, travel - static const IconDataDuotone duotoneCarBus = const IconDataDuotone( - 0xf85a, - secondary: const IconDataDuotone(0x10f85a), - ); - - /// Regular Car Crash icon - /// - /// https://fontawesome.com/icons/car-crash?style=regular - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData carCrash = const IconDataRegular(0xf5e1); - - /// Solid Car Crash icon - /// - /// https://fontawesome.com/icons/car-crash?style=solid - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData solidCarCrash = const IconDataSolid(0xf5e1); - - /// Light Car Crash icon - /// - /// https://fontawesome.com/icons/light_car-crash?style=light - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData lightCarCrash = const IconDataLight(0xf5e1); - - /// Duotone Car Crash icon - /// - /// https://fontawesome.com/icons/duotone_car-crash?style=duotone - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconDataDuotone duotoneCarCrash = const IconDataDuotone( - 0xf5e1, - secondary: const IconDataDuotone(0x10f5e1), - ); - - /// Regular Car Garage icon - /// - /// https://fontawesome.com/icons/car-garage?style=regular - /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData carGarage = const IconDataRegular(0xf5e2); - - /// Solid Car Garage icon - /// - /// https://fontawesome.com/icons/car-garage?style=solid - /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData solidCarGarage = const IconDataSolid(0xf5e2); - - /// Light Car Garage icon - /// - /// https://fontawesome.com/icons/light_car-garage?style=light - /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconData lightCarGarage = const IconDataLight(0xf5e2); - - /// Duotone Car Garage icon - /// - /// https://fontawesome.com/icons/duotone_car-garage?style=duotone - /// auto, automobile, mechanic, sedan, transportation, vehicle - static const IconDataDuotone duotoneCarGarage = const IconDataDuotone( - 0xf5e2, - secondary: const IconDataDuotone(0x10f5e2), - ); - - /// Regular Car Mechanic icon - /// - /// https://fontawesome.com/icons/car-mechanic?style=regular - /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData carMechanic = const IconDataRegular(0xf5e3); - - /// Solid Car Mechanic icon - /// - /// https://fontawesome.com/icons/car-mechanic?style=solid - /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData solidCarMechanic = const IconDataSolid(0xf5e3); - - /// Light Car Mechanic icon - /// - /// https://fontawesome.com/icons/light_car-mechanic?style=light - /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconData lightCarMechanic = const IconDataLight(0xf5e3); - - /// Duotone Car Mechanic icon - /// - /// https://fontawesome.com/icons/duotone_car-mechanic?style=duotone - /// auto, automobile, mechanic, repair, sedan, transportation, vehicle - static const IconDataDuotone duotoneCarMechanic = const IconDataDuotone( - 0xf5e3, - secondary: const IconDataDuotone(0x10f5e3), - ); - - /// Regular Car Side icon - /// - /// https://fontawesome.com/icons/car-side?style=regular - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData carSide = const IconDataRegular(0xf5e4); - - /// Solid Car Side icon - /// - /// https://fontawesome.com/icons/car-side?style=solid - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData solidCarSide = const IconDataSolid(0xf5e4); - - /// Light Car Side icon - /// - /// https://fontawesome.com/icons/light_car-side?style=light - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconData lightCarSide = const IconDataLight(0xf5e4); - - /// Duotone Car Side icon - /// - /// https://fontawesome.com/icons/duotone_car-side?style=duotone - /// auto, automobile, sedan, transportation, travel, vehicle - static const IconDataDuotone duotoneCarSide = const IconDataDuotone( - 0xf5e4, - secondary: const IconDataDuotone(0x10f5e4), - ); - - /// Regular Car Tilt icon - /// - /// https://fontawesome.com/icons/car-tilt?style=regular - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData carTilt = const IconDataRegular(0xf5e5); - - /// Solid Car Tilt icon - /// - /// https://fontawesome.com/icons/car-tilt?style=solid - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData solidCarTilt = const IconDataSolid(0xf5e5); - - /// Light Car Tilt icon - /// - /// https://fontawesome.com/icons/light_car-tilt?style=light - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconData lightCarTilt = const IconDataLight(0xf5e5); - - /// Duotone Car Tilt icon - /// - /// https://fontawesome.com/icons/duotone_car-tilt?style=duotone - /// accident, auto, automobile, insurance, sedan, transportation, vehicle, wreck - static const IconDataDuotone duotoneCarTilt = const IconDataDuotone( - 0xf5e5, - secondary: const IconDataDuotone(0x10f5e5), - ); - - /// Regular Car Wash icon - /// - /// https://fontawesome.com/icons/car-wash?style=regular - /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData carWash = const IconDataRegular(0xf5e6); - - /// Solid Car Wash icon - /// - /// https://fontawesome.com/icons/car-wash?style=solid - /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData solidCarWash = const IconDataSolid(0xf5e6); - - /// Light Car Wash icon - /// - /// https://fontawesome.com/icons/light_car-wash?style=light - /// auto, automobile, clean, sedan, transportation, vehicle - static const IconData lightCarWash = const IconDataLight(0xf5e6); - - /// Duotone Car Wash icon - /// - /// https://fontawesome.com/icons/duotone_car-wash?style=duotone - /// auto, automobile, clean, sedan, transportation, vehicle - static const IconDataDuotone duotoneCarWash = const IconDataDuotone( - 0xf5e6, - secondary: const IconDataDuotone(0x10f5e6), - ); - - /// Regular Caravan icon - /// - /// https://fontawesome.com/icons/caravan?style=regular - /// camper, motor home, rv, trailer, travel - static const IconData caravan = const IconDataRegular(0xf8ff); - - /// Solid Caravan icon - /// - /// https://fontawesome.com/icons/caravan?style=solid - /// camper, motor home, rv, trailer, travel - static const IconData solidCaravan = const IconDataSolid(0xf8ff); - - /// Light Caravan icon - /// - /// https://fontawesome.com/icons/light_caravan?style=light - /// camper, motor home, rv, trailer, travel - static const IconData lightCaravan = const IconDataLight(0xf8ff); - - /// Duotone Caravan icon - /// - /// https://fontawesome.com/icons/duotone_caravan?style=duotone - /// camper, motor home, rv, trailer, travel - static const IconDataDuotone duotoneCaravan = const IconDataDuotone( - 0xf8ff, - secondary: const IconDataDuotone(0x10f8ff), - ); - - /// Regular Caravan Alternate icon - /// - /// https://fontawesome.com/icons/caravan-alt?style=regular - /// camper, motor home, rv, trailer, travel - static const IconData caravanAlt = const IconDataRegular(0xe000); - - /// Solid Caravan Alternate icon - /// - /// https://fontawesome.com/icons/caravan-alt?style=solid - /// camper, motor home, rv, trailer, travel - static const IconData solidCaravanAlt = const IconDataSolid(0xe000); - - /// Light Caravan Alternate icon - /// - /// https://fontawesome.com/icons/light_caravan-alt?style=light - /// camper, motor home, rv, trailer, travel - static const IconData lightCaravanAlt = const IconDataLight(0xe000); - - /// Duotone Caravan Alternate icon - /// - /// https://fontawesome.com/icons/duotone_caravan-alt?style=duotone - /// camper, motor home, rv, trailer, travel - static const IconDataDuotone duotoneCaravanAlt = const IconDataDuotone( - 0xe000, - secondary: const IconDataDuotone(0x10e000), - ); - - /// Regular Caret Circle Down icon - /// - /// https://fontawesome.com/icons/caret-circle-down?style=regular - /// arrow, dropdown, expand, menu, more, triangle - static const IconData caretCircleDown = const IconDataRegular(0xf32d); - - /// Solid Caret Circle Down icon - /// - /// https://fontawesome.com/icons/caret-circle-down?style=solid - /// arrow, dropdown, expand, menu, more, triangle - static const IconData solidCaretCircleDown = const IconDataSolid(0xf32d); - - /// Light Caret Circle Down icon - /// - /// https://fontawesome.com/icons/light_caret-circle-down?style=light - /// arrow, dropdown, expand, menu, more, triangle - static const IconData lightCaretCircleDown = const IconDataLight(0xf32d); - - /// Duotone Caret Circle Down icon - /// - /// https://fontawesome.com/icons/duotone_caret-circle-down?style=duotone - /// arrow, dropdown, expand, menu, more, triangle - static const IconDataDuotone duotoneCaretCircleDown = const IconDataDuotone( - 0xf32d, - secondary: const IconDataDuotone(0x10f32d), - ); - - /// Regular Caret Circle Left icon - /// - /// https://fontawesome.com/icons/caret-circle-left?style=regular - /// arrow, back, previous, triangle - static const IconData caretCircleLeft = const IconDataRegular(0xf32e); - - /// Solid Caret Circle Left icon - /// - /// https://fontawesome.com/icons/caret-circle-left?style=solid - /// arrow, back, previous, triangle - static const IconData solidCaretCircleLeft = const IconDataSolid(0xf32e); - - /// Light Caret Circle Left icon - /// - /// https://fontawesome.com/icons/light_caret-circle-left?style=light - /// arrow, back, previous, triangle - static const IconData lightCaretCircleLeft = const IconDataLight(0xf32e); - - /// Duotone Caret Circle Left icon - /// - /// https://fontawesome.com/icons/duotone_caret-circle-left?style=duotone - /// arrow, back, previous, triangle - static const IconDataDuotone duotoneCaretCircleLeft = const IconDataDuotone( - 0xf32e, - secondary: const IconDataDuotone(0x10f32e), - ); - - /// Regular Caret Circle Right icon - /// - /// https://fontawesome.com/icons/caret-circle-right?style=regular - /// arrow, forward, next, triangle - static const IconData caretCircleRight = const IconDataRegular(0xf330); - - /// Solid Caret Circle Right icon - /// - /// https://fontawesome.com/icons/caret-circle-right?style=solid - /// arrow, forward, next, triangle - static const IconData solidCaretCircleRight = const IconDataSolid(0xf330); - - /// Light Caret Circle Right icon - /// - /// https://fontawesome.com/icons/light_caret-circle-right?style=light - /// arrow, forward, next, triangle - static const IconData lightCaretCircleRight = const IconDataLight(0xf330); - - /// Duotone Caret Circle Right icon - /// - /// https://fontawesome.com/icons/duotone_caret-circle-right?style=duotone - /// arrow, forward, next, triangle - static const IconDataDuotone duotoneCaretCircleRight = const IconDataDuotone( - 0xf330, - secondary: const IconDataDuotone(0x10f330), - ); - - /// Regular Caret Circle Up icon - /// - /// https://fontawesome.com/icons/caret-circle-up?style=regular - /// arrow, collapse, triangle, upload - static const IconData caretCircleUp = const IconDataRegular(0xf331); - - /// Solid Caret Circle Up icon - /// - /// https://fontawesome.com/icons/caret-circle-up?style=solid - /// arrow, collapse, triangle, upload - static const IconData solidCaretCircleUp = const IconDataSolid(0xf331); - - /// Light Caret Circle Up icon - /// - /// https://fontawesome.com/icons/light_caret-circle-up?style=light - /// arrow, collapse, triangle, upload - static const IconData lightCaretCircleUp = const IconDataLight(0xf331); - - /// Duotone Caret Circle Up icon - /// - /// https://fontawesome.com/icons/duotone_caret-circle-up?style=duotone - /// arrow, collapse, triangle, upload - static const IconDataDuotone duotoneCaretCircleUp = const IconDataDuotone( - 0xf331, - secondary: const IconDataDuotone(0x10f331), - ); - - /// Regular Caret Down icon - /// - /// https://fontawesome.com/icons/caret-down?style=regular - /// arrow, dropdown, expand, menu, more, triangle - static const IconData caretDown = const IconDataRegular(0xf0d7); - - /// Solid Caret Down icon - /// - /// https://fontawesome.com/icons/caret-down?style=solid - /// arrow, dropdown, expand, menu, more, triangle - static const IconData solidCaretDown = const IconDataSolid(0xf0d7); - - /// Light Caret Down icon - /// - /// https://fontawesome.com/icons/light_caret-down?style=light - /// arrow, dropdown, expand, menu, more, triangle - static const IconData lightCaretDown = const IconDataLight(0xf0d7); - - /// Duotone Caret Down icon - /// - /// https://fontawesome.com/icons/duotone_caret-down?style=duotone - /// arrow, dropdown, expand, menu, more, triangle - static const IconDataDuotone duotoneCaretDown = const IconDataDuotone( - 0xf0d7, - secondary: const IconDataDuotone(0x10f0d7), - ); - - /// Regular Caret Left icon - /// - /// https://fontawesome.com/icons/caret-left?style=regular - /// arrow, back, previous, triangle - static const IconData caretLeft = const IconDataRegular(0xf0d9); - - /// Solid Caret Left icon - /// - /// https://fontawesome.com/icons/caret-left?style=solid - /// arrow, back, previous, triangle - static const IconData solidCaretLeft = const IconDataSolid(0xf0d9); - - /// Light Caret Left icon - /// - /// https://fontawesome.com/icons/light_caret-left?style=light - /// arrow, back, previous, triangle - static const IconData lightCaretLeft = const IconDataLight(0xf0d9); - - /// Duotone Caret Left icon - /// - /// https://fontawesome.com/icons/duotone_caret-left?style=duotone - /// arrow, back, previous, triangle - static const IconDataDuotone duotoneCaretLeft = const IconDataDuotone( - 0xf0d9, - secondary: const IconDataDuotone(0x10f0d9), - ); - - /// Regular Caret Right icon - /// - /// https://fontawesome.com/icons/caret-right?style=regular - /// arrow, forward, next, triangle - static const IconData caretRight = const IconDataRegular(0xf0da); - - /// Solid Caret Right icon - /// - /// https://fontawesome.com/icons/caret-right?style=solid - /// arrow, forward, next, triangle - static const IconData solidCaretRight = const IconDataSolid(0xf0da); - - /// Light Caret Right icon - /// - /// https://fontawesome.com/icons/light_caret-right?style=light - /// arrow, forward, next, triangle - static const IconData lightCaretRight = const IconDataLight(0xf0da); - - /// Duotone Caret Right icon - /// - /// https://fontawesome.com/icons/duotone_caret-right?style=duotone - /// arrow, forward, next, triangle - static const IconDataDuotone duotoneCaretRight = const IconDataDuotone( - 0xf0da, - secondary: const IconDataDuotone(0x10f0da), - ); - - /// Regular Caret Square Down icon - /// - /// https://fontawesome.com/icons/caret-square-down?style=regular - /// arrow, caret-square-o-down, dropdown, expand, menu, more, triangle - static const IconData caretSquareDown = const IconDataRegular(0xf150); - - /// Solid Caret Square Down icon - /// - /// https://fontawesome.com/icons/caret-square-down?style=solid - /// arrow, caret-square-o-down, dropdown, expand, menu, more, triangle - static const IconData solidCaretSquareDown = const IconDataSolid(0xf150); - - /// Light Caret Square Down icon - /// - /// https://fontawesome.com/icons/light_caret-square-down?style=light - /// arrow, caret-square-o-down, dropdown, expand, menu, more, triangle - static const IconData lightCaretSquareDown = const IconDataLight(0xf150); - - /// Duotone Caret Square Down icon - /// - /// https://fontawesome.com/icons/duotone_caret-square-down?style=duotone - /// arrow, caret-square-o-down, dropdown, expand, menu, more, triangle - static const IconDataDuotone duotoneCaretSquareDown = const IconDataDuotone( - 0xf150, - secondary: const IconDataDuotone(0x10f150), - ); - - /// Regular Caret Square Left icon - /// - /// https://fontawesome.com/icons/caret-square-left?style=regular - /// arrow, back, caret-square-o-left, previous, triangle - static const IconData caretSquareLeft = const IconDataRegular(0xf191); - - /// Solid Caret Square Left icon - /// - /// https://fontawesome.com/icons/caret-square-left?style=solid - /// arrow, back, caret-square-o-left, previous, triangle - static const IconData solidCaretSquareLeft = const IconDataSolid(0xf191); - - /// Light Caret Square Left icon - /// - /// https://fontawesome.com/icons/light_caret-square-left?style=light - /// arrow, back, caret-square-o-left, previous, triangle - static const IconData lightCaretSquareLeft = const IconDataLight(0xf191); - - /// Duotone Caret Square Left icon - /// - /// https://fontawesome.com/icons/duotone_caret-square-left?style=duotone - /// arrow, back, caret-square-o-left, previous, triangle - static const IconDataDuotone duotoneCaretSquareLeft = const IconDataDuotone( - 0xf191, - secondary: const IconDataDuotone(0x10f191), - ); - - /// Regular Caret Square Right icon - /// - /// https://fontawesome.com/icons/caret-square-right?style=regular - /// arrow, caret-square-o-right, forward, next, triangle - static const IconData caretSquareRight = const IconDataRegular(0xf152); - - /// Solid Caret Square Right icon - /// - /// https://fontawesome.com/icons/caret-square-right?style=solid - /// arrow, caret-square-o-right, forward, next, triangle - static const IconData solidCaretSquareRight = const IconDataSolid(0xf152); - - /// Light Caret Square Right icon - /// - /// https://fontawesome.com/icons/light_caret-square-right?style=light - /// arrow, caret-square-o-right, forward, next, triangle - static const IconData lightCaretSquareRight = const IconDataLight(0xf152); - - /// Duotone Caret Square Right icon - /// - /// https://fontawesome.com/icons/duotone_caret-square-right?style=duotone - /// arrow, caret-square-o-right, forward, next, triangle - static const IconDataDuotone duotoneCaretSquareRight = const IconDataDuotone( - 0xf152, - secondary: const IconDataDuotone(0x10f152), - ); - - /// Regular Caret Square Up icon - /// - /// https://fontawesome.com/icons/caret-square-up?style=regular - /// arrow, caret-square-o-up, collapse, triangle, upload - static const IconData caretSquareUp = const IconDataRegular(0xf151); - - /// Solid Caret Square Up icon - /// - /// https://fontawesome.com/icons/caret-square-up?style=solid - /// arrow, caret-square-o-up, collapse, triangle, upload - static const IconData solidCaretSquareUp = const IconDataSolid(0xf151); - - /// Light Caret Square Up icon - /// - /// https://fontawesome.com/icons/light_caret-square-up?style=light - /// arrow, caret-square-o-up, collapse, triangle, upload - static const IconData lightCaretSquareUp = const IconDataLight(0xf151); - - /// Duotone Caret Square Up icon - /// - /// https://fontawesome.com/icons/duotone_caret-square-up?style=duotone - /// arrow, caret-square-o-up, collapse, triangle, upload - static const IconDataDuotone duotoneCaretSquareUp = const IconDataDuotone( - 0xf151, - secondary: const IconDataDuotone(0x10f151), - ); - - /// Regular Caret Up icon - /// - /// https://fontawesome.com/icons/caret-up?style=regular - /// arrow, collapse, triangle - static const IconData caretUp = const IconDataRegular(0xf0d8); - - /// Solid Caret Up icon - /// - /// https://fontawesome.com/icons/caret-up?style=solid - /// arrow, collapse, triangle - static const IconData solidCaretUp = const IconDataSolid(0xf0d8); - - /// Light Caret Up icon - /// - /// https://fontawesome.com/icons/light_caret-up?style=light - /// arrow, collapse, triangle - static const IconData lightCaretUp = const IconDataLight(0xf0d8); - - /// Duotone Caret Up icon - /// - /// https://fontawesome.com/icons/duotone_caret-up?style=duotone - /// arrow, collapse, triangle - static const IconDataDuotone duotoneCaretUp = const IconDataDuotone( - 0xf0d8, - secondary: const IconDataDuotone(0x10f0d8), - ); - - /// Regular Carrot icon - /// - /// https://fontawesome.com/icons/carrot?style=regular - /// bugs bunny, orange, vegan, vegetable - static const IconData carrot = const IconDataRegular(0xf787); - - /// Solid Carrot icon - /// - /// https://fontawesome.com/icons/carrot?style=solid - /// bugs bunny, orange, vegan, vegetable - static const IconData solidCarrot = const IconDataSolid(0xf787); - - /// Light Carrot icon - /// - /// https://fontawesome.com/icons/light_carrot?style=light - /// bugs bunny, orange, vegan, vegetable - static const IconData lightCarrot = const IconDataLight(0xf787); - - /// Duotone Carrot icon - /// - /// https://fontawesome.com/icons/duotone_carrot?style=duotone - /// bugs bunny, orange, vegan, vegetable - static const IconDataDuotone duotoneCarrot = const IconDataDuotone( - 0xf787, - secondary: const IconDataDuotone(0x10f787), - ); - - /// Regular Cars icon - /// - /// https://fontawesome.com/icons/cars?style=regular - /// automobiles, autos, transportation, travel - static const IconData cars = const IconDataRegular(0xf85b); - - /// Solid Cars icon - /// - /// https://fontawesome.com/icons/cars?style=solid - /// automobiles, autos, transportation, travel - static const IconData solidCars = const IconDataSolid(0xf85b); - - /// Light Cars icon - /// - /// https://fontawesome.com/icons/light_cars?style=light - /// automobiles, autos, transportation, travel - static const IconData lightCars = const IconDataLight(0xf85b); - - /// Duotone Cars icon - /// - /// https://fontawesome.com/icons/duotone_cars?style=duotone - /// automobiles, autos, transportation, travel - static const IconDataDuotone duotoneCars = const IconDataDuotone( - 0xf85b, - secondary: const IconDataDuotone(0x10f85b), - ); - - /// Regular Shopping Cart Arrow Down icon - /// - /// https://fontawesome.com/icons/cart-arrow-down?style=regular - /// download, save, shopping - static const IconData cartArrowDown = const IconDataRegular(0xf218); - - /// Solid Shopping Cart Arrow Down icon - /// - /// https://fontawesome.com/icons/cart-arrow-down?style=solid - /// download, save, shopping - static const IconData solidCartArrowDown = const IconDataSolid(0xf218); - - /// Light Shopping Cart Arrow Down icon - /// - /// https://fontawesome.com/icons/light_cart-arrow-down?style=light - /// download, save, shopping - static const IconData lightCartArrowDown = const IconDataLight(0xf218); - - /// Duotone Shopping Cart Arrow Down icon - /// - /// https://fontawesome.com/icons/duotone_cart-arrow-down?style=duotone - /// download, save, shopping - static const IconDataDuotone duotoneCartArrowDown = const IconDataDuotone( - 0xf218, - secondary: const IconDataDuotone(0x10f218), - ); - - /// Regular Add to Shopping Cart icon - /// - /// https://fontawesome.com/icons/cart-plus?style=regular - /// add, create, new, positive, shopping - static const IconData cartPlus = const IconDataRegular(0xf217); - - /// Solid Add to Shopping Cart icon - /// - /// https://fontawesome.com/icons/cart-plus?style=solid - /// add, create, new, positive, shopping - static const IconData solidCartPlus = const IconDataSolid(0xf217); - - /// Light Add to Shopping Cart icon - /// - /// https://fontawesome.com/icons/light_cart-plus?style=light - /// add, create, new, positive, shopping - static const IconData lightCartPlus = const IconDataLight(0xf217); - - /// Duotone Add to Shopping Cart icon - /// - /// https://fontawesome.com/icons/duotone_cart-plus?style=duotone - /// add, create, new, positive, shopping - static const IconDataDuotone duotoneCartPlus = const IconDataDuotone( - 0xf217, - secondary: const IconDataDuotone(0x10f217), - ); - - /// 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 = const IconDataRegular(0xf788); - - /// 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 = const IconDataSolid(0xf788); - - /// Light Cash Register icon - /// - /// https://fontawesome.com/icons/light_cash-register?style=light - /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconData lightCashRegister = const IconDataLight(0xf788); - - /// Duotone Cash Register icon - /// - /// https://fontawesome.com/icons/duotone_cash-register?style=duotone - /// buy, cha-ching, change, checkout, commerce, leaerboard, machine, pay, payment, purchase, store - static const IconDataDuotone duotoneCashRegister = const IconDataDuotone( - 0xf788, - secondary: const IconDataDuotone(0x10f788), - ); - - /// Regular Cassette Tape icon - /// - /// https://fontawesome.com/icons/cassette-tape?style=regular - /// mixtape, music, play, recording, walkman - static const IconData cassetteTape = const IconDataRegular(0xf8ab); - - /// Solid Cassette Tape icon - /// - /// https://fontawesome.com/icons/cassette-tape?style=solid - /// mixtape, music, play, recording, walkman - static const IconData solidCassetteTape = const IconDataSolid(0xf8ab); - - /// Light Cassette Tape icon - /// - /// https://fontawesome.com/icons/light_cassette-tape?style=light - /// mixtape, music, play, recording, walkman - static const IconData lightCassetteTape = const IconDataLight(0xf8ab); - - /// Duotone Cassette Tape icon - /// - /// https://fontawesome.com/icons/duotone_cassette-tape?style=duotone - /// mixtape, music, play, recording, walkman - static const IconDataDuotone duotoneCassetteTape = const IconDataDuotone( - 0xf8ab, - secondary: const IconDataDuotone(0x10f8ab), - ); - - /// Regular Cat icon - /// - /// https://fontawesome.com/icons/cat?style=regular - /// feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData cat = const IconDataRegular(0xf6be); - - /// Solid Cat icon - /// - /// https://fontawesome.com/icons/cat?style=solid - /// feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData solidCat = const IconDataSolid(0xf6be); - - /// Light Cat icon - /// - /// https://fontawesome.com/icons/light_cat?style=light - /// feline, halloween, holiday, kitten, kitty, meow, pet - static const IconData lightCat = const IconDataLight(0xf6be); - - /// Duotone Cat icon - /// - /// https://fontawesome.com/icons/duotone_cat?style=duotone - /// feline, halloween, holiday, kitten, kitty, meow, pet - static const IconDataDuotone duotoneCat = const IconDataDuotone( - 0xf6be, - secondary: const IconDataDuotone(0x10f6be), - ); - - /// Regular Space Cat icon - /// - /// https://fontawesome.com/icons/cat-space?style=regular - /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData catSpace = const IconDataRegular(0xe001); - - /// Solid Space Cat icon - /// - /// https://fontawesome.com/icons/cat-space?style=solid - /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData solidCatSpace = const IconDataSolid(0xe001); - - /// Light Space Cat icon - /// - /// https://fontawesome.com/icons/light_cat-space?style=light - /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconData lightCatSpace = const IconDataLight(0xe001); - - /// Duotone Space Cat icon - /// - /// https://fontawesome.com/icons/duotone_cat-space?style=duotone - /// animal, astronaut, cosmonaut, fauna, meow, space - static const IconDataDuotone duotoneCatSpace = const IconDataDuotone( - 0xe001, - secondary: const IconDataDuotone(0x10e001), - ); - - /// 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 = const IconDataRegular(0xf6bf); - - /// 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 = const IconDataSolid(0xf6bf); - - /// Light Cauldron icon - /// - /// https://fontawesome.com/icons/light_cauldron?style=light - /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconData lightCauldron = const IconDataLight(0xf6bf); - - /// Duotone Cauldron icon - /// - /// https://fontawesome.com/icons/duotone_cauldron?style=duotone - /// boil, bubble, cooking, halloween, holiday, magic, pot, sorcery, toil, trouble, witch, wizard - static const IconDataDuotone duotoneCauldron = const IconDataDuotone( - 0xf6bf, - secondary: const IconDataDuotone(0x10f6bf), - ); - - /// Brands Amazon Pay Credit Card icon - /// - /// https://fontawesome.com/icons/cc-amazon-pay?style=brands - static const IconData ccAmazonPay = const IconDataBrands(0xf42d); - - /// Brands American Express Credit Card icon - /// - /// https://fontawesome.com/icons/cc-amex?style=brands - /// amex - static const IconData ccAmex = const IconDataBrands(0xf1f3); - - /// Brands Apple Pay Credit Card icon - /// - /// https://fontawesome.com/icons/cc-apple-pay?style=brands - static const IconData ccApplePay = const IconDataBrands(0xf416); - - /// Brands Diner's Club Credit Card icon - /// - /// https://fontawesome.com/icons/cc-diners-club?style=brands - static const IconData ccDinersClub = const IconDataBrands(0xf24c); - - /// Brands Discover Credit Card icon - /// - /// https://fontawesome.com/icons/cc-discover?style=brands - static const IconData ccDiscover = const IconDataBrands(0xf1f2); - - /// Brands JCB Credit Card icon - /// - /// https://fontawesome.com/icons/cc-jcb?style=brands - static const IconData ccJcb = const IconDataBrands(0xf24b); - - /// Brands MasterCard Credit Card icon - /// - /// https://fontawesome.com/icons/cc-mastercard?style=brands - static const IconData ccMastercard = const IconDataBrands(0xf1f1); - - /// Brands Paypal Credit Card icon - /// - /// https://fontawesome.com/icons/cc-paypal?style=brands - static const IconData ccPaypal = const IconDataBrands(0xf1f4); - - /// Brands Stripe Credit Card icon - /// - /// https://fontawesome.com/icons/cc-stripe?style=brands - static const IconData ccStripe = const IconDataBrands(0xf1f5); - - /// Brands Visa Credit Card icon - /// - /// https://fontawesome.com/icons/cc-visa?style=brands - static const IconData ccVisa = const IconDataBrands(0xf1f0); - - /// Regular CCTV icon - /// - /// https://fontawesome.com/icons/cctv?style=regular - /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData cctv = const IconDataRegular(0xf8ac); - - /// Solid CCTV icon - /// - /// https://fontawesome.com/icons/cctv?style=solid - /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData solidCctv = const IconDataSolid(0xf8ac); - - /// Light CCTV icon - /// - /// https://fontawesome.com/icons/light_cctv?style=light - /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconData lightCctv = const IconDataLight(0xf8ac); - - /// Duotone CCTV icon - /// - /// https://fontawesome.com/icons/duotone_cctv?style=duotone - /// 1984, Big Brother, George Orwell, camera, security, surveillance, video - static const IconDataDuotone duotoneCctv = const IconDataDuotone( - 0xf8ac, - secondary: const IconDataDuotone(0x10f8ac), - ); - - /// Brands Centercode icon - /// - /// https://fontawesome.com/icons/centercode?style=brands - static const IconData centercode = const IconDataBrands(0xf380); - - /// Brands Centos icon - /// - /// https://fontawesome.com/icons/centos?style=brands - /// linux, operating system, os - static const IconData centos = const IconDataBrands(0xf789); - - /// Regular certificate icon - /// - /// https://fontawesome.com/icons/certificate?style=regular - /// badge, star, verified - static const IconData certificate = const IconDataRegular(0xf0a3); - - /// Solid certificate icon - /// - /// https://fontawesome.com/icons/certificate?style=solid - /// badge, star, verified - static const IconData solidCertificate = const IconDataSolid(0xf0a3); - - /// Light certificate icon - /// - /// https://fontawesome.com/icons/light_certificate?style=light - /// badge, star, verified - static const IconData lightCertificate = const IconDataLight(0xf0a3); - - /// Duotone certificate icon - /// - /// https://fontawesome.com/icons/duotone_certificate?style=duotone - /// badge, star, verified - static const IconDataDuotone duotoneCertificate = const IconDataDuotone( - 0xf0a3, - secondary: const IconDataDuotone(0x10f0a3), - ); - - /// Regular Chair icon - /// - /// https://fontawesome.com/icons/chair?style=regular - /// furniture, seat, sit - static const IconData chair = const IconDataRegular(0xf6c0); - - /// Solid Chair icon - /// - /// https://fontawesome.com/icons/chair?style=solid - /// furniture, seat, sit - static const IconData solidChair = const IconDataSolid(0xf6c0); - - /// Light Chair icon - /// - /// https://fontawesome.com/icons/light_chair?style=light - /// furniture, seat, sit - static const IconData lightChair = const IconDataLight(0xf6c0); - - /// Duotone Chair icon - /// - /// https://fontawesome.com/icons/duotone_chair?style=duotone - /// furniture, seat, sit - static const IconDataDuotone duotoneChair = const IconDataDuotone( - 0xf6c0, - secondary: const IconDataDuotone(0x10f6c0), - ); - - /// Regular Office Chair icon - /// - /// https://fontawesome.com/icons/chair-office?style=regular - /// ergonomic, furniture, seat - static const IconData chairOffice = const IconDataRegular(0xf6c1); - - /// Solid Office Chair icon - /// - /// https://fontawesome.com/icons/chair-office?style=solid - /// ergonomic, furniture, seat - static const IconData solidChairOffice = const IconDataSolid(0xf6c1); - - /// Light Office Chair icon - /// - /// https://fontawesome.com/icons/light_chair-office?style=light - /// ergonomic, furniture, seat - static const IconData lightChairOffice = const IconDataLight(0xf6c1); - - /// Duotone Office Chair icon - /// - /// https://fontawesome.com/icons/duotone_chair-office?style=duotone - /// ergonomic, furniture, seat - static const IconDataDuotone duotoneChairOffice = const IconDataDuotone( - 0xf6c1, - secondary: const IconDataDuotone(0x10f6c1), - ); - - /// Regular Chalkboard icon - /// - /// https://fontawesome.com/icons/chalkboard?style=regular - /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData chalkboard = const IconDataRegular(0xf51b); - - /// Solid Chalkboard icon - /// - /// https://fontawesome.com/icons/chalkboard?style=solid - /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData solidChalkboard = const IconDataSolid(0xf51b); - - /// Light Chalkboard icon - /// - /// https://fontawesome.com/icons/light_chalkboard?style=light - /// blackboard, learning, school, teaching, whiteboard, writing - static const IconData lightChalkboard = const IconDataLight(0xf51b); - - /// Duotone Chalkboard icon - /// - /// https://fontawesome.com/icons/duotone_chalkboard?style=duotone - /// blackboard, learning, school, teaching, whiteboard, writing - static const IconDataDuotone duotoneChalkboard = const IconDataDuotone( - 0xf51b, - secondary: const IconDataDuotone(0x10f51b), - ); - - /// Regular Chalkboard Teacher icon - /// - /// https://fontawesome.com/icons/chalkboard-teacher?style=regular - /// blackboard, instructor, learning, professor, school, whiteboard, writing - static const IconData chalkboardTeacher = const IconDataRegular(0xf51c); - - /// Solid Chalkboard Teacher icon - /// - /// https://fontawesome.com/icons/chalkboard-teacher?style=solid - /// blackboard, instructor, learning, professor, school, whiteboard, writing - static const IconData solidChalkboardTeacher = const IconDataSolid(0xf51c); - - /// Light Chalkboard Teacher icon - /// - /// https://fontawesome.com/icons/light_chalkboard-teacher?style=light - /// blackboard, instructor, learning, professor, school, whiteboard, writing - static const IconData lightChalkboardTeacher = const IconDataLight(0xf51c); - - /// Duotone Chalkboard Teacher icon - /// - /// https://fontawesome.com/icons/duotone_chalkboard-teacher?style=duotone - /// blackboard, instructor, learning, professor, school, whiteboard, writing - static const IconDataDuotone duotoneChalkboardTeacher = const IconDataDuotone( - 0xf51c, - secondary: const IconDataDuotone(0x10f51c), - ); - - /// Regular Charging Station icon - /// - /// https://fontawesome.com/icons/charging-station?style=regular - /// electric, ev, tesla, vehicle - static const IconData chargingStation = const IconDataRegular(0xf5e7); - - /// Solid Charging Station icon - /// - /// https://fontawesome.com/icons/charging-station?style=solid - /// electric, ev, tesla, vehicle - static const IconData solidChargingStation = const IconDataSolid(0xf5e7); - - /// Light Charging Station icon - /// - /// https://fontawesome.com/icons/light_charging-station?style=light - /// electric, ev, tesla, vehicle - static const IconData lightChargingStation = const IconDataLight(0xf5e7); - - /// Duotone Charging Station icon - /// - /// https://fontawesome.com/icons/duotone_charging-station?style=duotone - /// electric, ev, tesla, vehicle - static const IconDataDuotone duotoneChargingStation = const IconDataDuotone( - 0xf5e7, - secondary: const IconDataDuotone(0x10f5e7), - ); - - /// Regular Area Chart icon - /// - /// https://fontawesome.com/icons/chart-area?style=regular - /// analytics, area, chart, graph - static const IconData chartArea = const IconDataRegular(0xf1fe); - - /// Solid Area Chart icon - /// - /// https://fontawesome.com/icons/chart-area?style=solid - /// analytics, area, chart, graph - static const IconData solidChartArea = const IconDataSolid(0xf1fe); - - /// Light Area Chart icon - /// - /// https://fontawesome.com/icons/light_chart-area?style=light - /// analytics, area, chart, graph - static const IconData lightChartArea = const IconDataLight(0xf1fe); - - /// Duotone Area Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-area?style=duotone - /// analytics, area, chart, graph - static const IconDataDuotone duotoneChartArea = const IconDataDuotone( - 0xf1fe, - secondary: const IconDataDuotone(0x10f1fe), - ); - - /// Regular Bar Chart icon - /// - /// https://fontawesome.com/icons/chart-bar?style=regular - /// analytics, bar, chart, graph - static const IconData chartBar = const IconDataRegular(0xf080); - - /// Solid Bar Chart icon - /// - /// https://fontawesome.com/icons/chart-bar?style=solid - /// analytics, bar, chart, graph - static const IconData solidChartBar = const IconDataSolid(0xf080); - - /// Light Bar Chart icon - /// - /// https://fontawesome.com/icons/light_chart-bar?style=light - /// analytics, bar, chart, graph - static const IconData lightChartBar = const IconDataLight(0xf080); - - /// Duotone Bar Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-bar?style=duotone - /// analytics, bar, chart, graph - static const IconDataDuotone duotoneChartBar = const IconDataDuotone( - 0xf080, - secondary: const IconDataDuotone(0x10f080), - ); - - /// Regular Line Chart icon - /// - /// https://fontawesome.com/icons/chart-line?style=regular - /// activity, analytics, chart, dashboard, gain, graph, increase, line - static const IconData chartLine = const IconDataRegular(0xf201); - - /// Solid Line Chart icon - /// - /// https://fontawesome.com/icons/chart-line?style=solid - /// activity, analytics, chart, dashboard, gain, graph, increase, line - static const IconData solidChartLine = const IconDataSolid(0xf201); - - /// Light Line Chart icon - /// - /// https://fontawesome.com/icons/light_chart-line?style=light - /// activity, analytics, chart, dashboard, gain, graph, increase, line - static const IconData lightChartLine = const IconDataLight(0xf201); - - /// Duotone Line Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-line?style=duotone - /// activity, analytics, chart, dashboard, gain, graph, increase, line - static const IconDataDuotone duotoneChartLine = const IconDataDuotone( - 0xf201, - secondary: const IconDataDuotone(0x10f201), - ); - - /// Regular Line Chart in Down Direction icon - /// - /// https://fontawesome.com/icons/chart-line-down?style=regular - /// analytics, chart, dashboard, decline, graph, line, loss - static const IconData chartLineDown = const IconDataRegular(0xf64d); - - /// Solid Line Chart in Down Direction icon - /// - /// https://fontawesome.com/icons/chart-line-down?style=solid - /// analytics, chart, dashboard, decline, graph, line, loss - static const IconData solidChartLineDown = const IconDataSolid(0xf64d); - - /// Light Line Chart in Down Direction icon - /// - /// https://fontawesome.com/icons/light_chart-line-down?style=light - /// analytics, chart, dashboard, decline, graph, line, loss - static const IconData lightChartLineDown = const IconDataLight(0xf64d); - - /// Duotone Line Chart in Down Direction icon - /// - /// https://fontawesome.com/icons/duotone_chart-line-down?style=duotone - /// analytics, chart, dashboard, decline, graph, line, loss - static const IconDataDuotone duotoneChartLineDown = const IconDataDuotone( - 0xf64d, - secondary: const IconDataDuotone(0x10f64d), - ); - - /// Regular Network Chart icon - /// - /// https://fontawesome.com/icons/chart-network?style=regular - /// activity, analytics, association, dashboard, diagram, distribution, map, network - static const IconData chartNetwork = const IconDataRegular(0xf78a); - - /// Solid Network Chart icon - /// - /// https://fontawesome.com/icons/chart-network?style=solid - /// activity, analytics, association, dashboard, diagram, distribution, map, network - static const IconData solidChartNetwork = const IconDataSolid(0xf78a); - - /// Light Network Chart icon - /// - /// https://fontawesome.com/icons/light_chart-network?style=light - /// activity, analytics, association, dashboard, diagram, distribution, map, network - static const IconData lightChartNetwork = const IconDataLight(0xf78a); - - /// Duotone Network Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-network?style=duotone - /// activity, analytics, association, dashboard, diagram, distribution, map, network - static const IconDataDuotone duotoneChartNetwork = const IconDataDuotone( - 0xf78a, - secondary: const IconDataDuotone(0x10f78a), - ); - - /// Regular Pie Chart icon - /// - /// https://fontawesome.com/icons/chart-pie?style=regular - /// analytics, chart, diagram, graph, pie - static const IconData chartPie = const IconDataRegular(0xf200); - - /// Solid Pie Chart icon - /// - /// https://fontawesome.com/icons/chart-pie?style=solid - /// analytics, chart, diagram, graph, pie - static const IconData solidChartPie = const IconDataSolid(0xf200); - - /// Light Pie Chart icon - /// - /// https://fontawesome.com/icons/light_chart-pie?style=light - /// analytics, chart, diagram, graph, pie - static const IconData lightChartPie = const IconDataLight(0xf200); - - /// Duotone Pie Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-pie?style=duotone - /// analytics, chart, diagram, graph, pie - static const IconDataDuotone duotoneChartPie = const IconDataDuotone( - 0xf200, - secondary: const IconDataDuotone(0x10f200), - ); - - /// Regular Alternate Pie Chart icon - /// - /// https://fontawesome.com/icons/chart-pie-alt?style=regular - /// analytics, chart, diagram, graph, pie - static const IconData chartPieAlt = const IconDataRegular(0xf64e); - - /// Solid Alternate Pie Chart icon - /// - /// https://fontawesome.com/icons/chart-pie-alt?style=solid - /// analytics, chart, diagram, graph, pie - static const IconData solidChartPieAlt = const IconDataSolid(0xf64e); - - /// Light Alternate Pie Chart icon - /// - /// https://fontawesome.com/icons/light_chart-pie-alt?style=light - /// analytics, chart, diagram, graph, pie - static const IconData lightChartPieAlt = const IconDataLight(0xf64e); - - /// Duotone Alternate Pie Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-pie-alt?style=duotone - /// analytics, chart, diagram, graph, pie - static const IconDataDuotone duotoneChartPieAlt = const IconDataDuotone( - 0xf64e, - secondary: const IconDataDuotone(0x10f64e), - ); - - /// Regular Scatter Chart icon - /// - /// https://fontawesome.com/icons/chart-scatter?style=regular - /// analytics, chart, diagram, graph, plot - static const IconData chartScatter = const IconDataRegular(0xf7ee); - - /// Solid Scatter Chart icon - /// - /// https://fontawesome.com/icons/chart-scatter?style=solid - /// analytics, chart, diagram, graph, plot - static const IconData solidChartScatter = const IconDataSolid(0xf7ee); - - /// Light Scatter Chart icon - /// - /// https://fontawesome.com/icons/light_chart-scatter?style=light - /// analytics, chart, diagram, graph, plot - static const IconData lightChartScatter = const IconDataLight(0xf7ee); - - /// Duotone Scatter Chart icon - /// - /// https://fontawesome.com/icons/duotone_chart-scatter?style=duotone - /// analytics, chart, diagram, graph, plot - static const IconDataDuotone duotoneChartScatter = const IconDataDuotone( - 0xf7ee, - secondary: const IconDataDuotone(0x10f7ee), - ); - - /// Regular Check icon - /// - /// https://fontawesome.com/icons/check?style=regular - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo, yes - static const IconData check = const IconDataRegular(0xf00c); - - /// Solid Check icon - /// - /// https://fontawesome.com/icons/check?style=solid - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo, yes - static const IconData solidCheck = const IconDataSolid(0xf00c); - - /// Light Check icon - /// - /// https://fontawesome.com/icons/light_check?style=light - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo, yes - static const IconData lightCheck = const IconDataLight(0xf00c); - - /// Duotone Check icon - /// - /// https://fontawesome.com/icons/duotone_check?style=duotone - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo, yes - static const IconDataDuotone duotoneCheck = const IconDataDuotone( - 0xf00c, - secondary: const IconDataDuotone(0x10f00c), - ); - - /// Regular Check Circle icon - /// - /// https://fontawesome.com/icons/check-circle?style=regular - /// accept, agree, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData checkCircle = const IconDataRegular(0xf058); - - /// Solid Check Circle icon - /// - /// https://fontawesome.com/icons/check-circle?style=solid - /// accept, agree, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData solidCheckCircle = const IconDataSolid(0xf058); - - /// Light Check Circle icon - /// - /// https://fontawesome.com/icons/light_check-circle?style=light - /// accept, agree, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData lightCheckCircle = const IconDataLight(0xf058); - - /// Duotone Check Circle icon - /// - /// https://fontawesome.com/icons/duotone_check-circle?style=duotone - /// accept, agree, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconDataDuotone duotoneCheckCircle = const IconDataDuotone( - 0xf058, - secondary: const IconDataDuotone(0x10f058), - ); - - /// Regular Double Check icon - /// - /// https://fontawesome.com/icons/check-double?style=regular - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo - static const IconData checkDouble = const IconDataRegular(0xf560); - - /// Solid Double Check icon - /// - /// https://fontawesome.com/icons/check-double?style=solid - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo - static const IconData solidCheckDouble = const IconDataSolid(0xf560); - - /// Light Double Check icon - /// - /// https://fontawesome.com/icons/light_check-double?style=light - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo - static const IconData lightCheckDouble = const IconDataLight(0xf560); - - /// Duotone Double Check icon - /// - /// https://fontawesome.com/icons/duotone_check-double?style=duotone - /// accept, agree, checkmark, confirm, correct, done, notice, notification, notify, ok, select, success, tick, todo - static const IconDataDuotone duotoneCheckDouble = const IconDataDuotone( - 0xf560, - secondary: const IconDataDuotone(0x10f560), - ); - - /// Regular Check Square icon - /// - /// https://fontawesome.com/icons/check-square?style=regular - /// accept, agree, checkmark, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData checkSquare = const IconDataRegular(0xf14a); - - /// Solid Check Square icon - /// - /// https://fontawesome.com/icons/check-square?style=solid - /// accept, agree, checkmark, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData solidCheckSquare = const IconDataSolid(0xf14a); - - /// Light Check Square icon - /// - /// https://fontawesome.com/icons/light_check-square?style=light - /// accept, agree, checkmark, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconData lightCheckSquare = const IconDataLight(0xf14a); - - /// Duotone Check Square icon - /// - /// https://fontawesome.com/icons/duotone_check-square?style=duotone - /// accept, agree, checkmark, confirm, correct, done, ok, select, success, tick, todo, yes - static const IconDataDuotone duotoneCheckSquare = const IconDataDuotone( - 0xf14a, - secondary: const IconDataDuotone(0x10f14a), - ); - - /// Regular Cheese icon - /// - /// https://fontawesome.com/icons/cheese?style=regular - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData cheese = const IconDataRegular(0xf7ef); - - /// Solid Cheese icon - /// - /// https://fontawesome.com/icons/cheese?style=solid - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData solidCheese = const IconDataSolid(0xf7ef); - - /// Light Cheese icon - /// - /// https://fontawesome.com/icons/light_cheese?style=light - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData lightCheese = const IconDataLight(0xf7ef); - - /// Duotone Cheese icon - /// - /// https://fontawesome.com/icons/duotone_cheese?style=duotone - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconDataDuotone duotoneCheese = const IconDataDuotone( - 0xf7ef, - secondary: const IconDataDuotone(0x10f7ef), - ); - - /// Regular Swiss Cheese icon - /// - /// https://fontawesome.com/icons/cheese-swiss?style=regular - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData cheeseSwiss = const IconDataRegular(0xf7f0); - - /// Solid Swiss Cheese icon - /// - /// https://fontawesome.com/icons/cheese-swiss?style=solid - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData solidCheeseSwiss = const IconDataSolid(0xf7f0); - - /// Light Swiss Cheese icon - /// - /// https://fontawesome.com/icons/light_cheese-swiss?style=light - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconData lightCheeseSwiss = const IconDataLight(0xf7f0); - - /// Duotone Swiss Cheese icon - /// - /// https://fontawesome.com/icons/duotone_cheese-swiss?style=duotone - /// cheddar, curd, gouda, melt, parmesan, sandwich, swiss, wedge - static const IconDataDuotone duotoneCheeseSwiss = const IconDataDuotone( - 0xf7f0, - secondary: const IconDataDuotone(0x10f7f0), - ); - - /// Regular Cheeseburger icon - /// - /// https://fontawesome.com/icons/cheeseburger?style=regular - /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData cheeseburger = const IconDataRegular(0xf7f1); - - /// Solid Cheeseburger icon - /// - /// https://fontawesome.com/icons/cheeseburger?style=solid - /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData solidCheeseburger = const IconDataSolid(0xf7f1); - - /// Light Cheeseburger icon - /// - /// https://fontawesome.com/icons/light_cheeseburger?style=light - /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconData lightCheeseburger = const IconDataLight(0xf7f1); - - /// Duotone Cheeseburger icon - /// - /// https://fontawesome.com/icons/duotone_cheeseburger?style=duotone - /// bacon, beef, burger, burger king, fast food, grill, ground beef, hamburger, mcdonalds, sandwich, slider, wendys, white castle - static const IconDataDuotone duotoneCheeseburger = const IconDataDuotone( - 0xf7f1, - secondary: const IconDataDuotone(0x10f7f1), - ); - - /// Regular Chess icon - /// - /// https://fontawesome.com/icons/chess?style=regular - /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData chess = const IconDataRegular(0xf439); - - /// Solid Chess icon - /// - /// https://fontawesome.com/icons/chess?style=solid - /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData solidChess = const IconDataSolid(0xf439); - - /// Light Chess icon - /// - /// https://fontawesome.com/icons/light_chess?style=light - /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconData lightChess = const IconDataLight(0xf439); - - /// Duotone Chess icon - /// - /// https://fontawesome.com/icons/duotone_chess?style=duotone - /// board, castle, checkmate, game, king, rook, strategy, tournament - static const IconDataDuotone duotoneChess = const IconDataDuotone( - 0xf439, - secondary: const IconDataDuotone(0x10f439), - ); - - /// Regular Chess Bishop icon - /// - /// https://fontawesome.com/icons/chess-bishop?style=regular - /// board, checkmate, game, strategy - static const IconData chessBishop = const IconDataRegular(0xf43a); - - /// Solid Chess Bishop icon - /// - /// https://fontawesome.com/icons/chess-bishop?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessBishop = const IconDataSolid(0xf43a); - - /// Light Chess Bishop icon - /// - /// https://fontawesome.com/icons/light_chess-bishop?style=light - /// board, checkmate, game, strategy - static const IconData lightChessBishop = const IconDataLight(0xf43a); - - /// Duotone Chess Bishop icon - /// - /// https://fontawesome.com/icons/duotone_chess-bishop?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessBishop = const IconDataDuotone( - 0xf43a, - secondary: const IconDataDuotone(0x10f43a), - ); - - /// Regular Alternate Chess Bishop icon - /// - /// https://fontawesome.com/icons/chess-bishop-alt?style=regular - /// board, checkmate, game, strategy - static const IconData chessBishopAlt = const IconDataRegular(0xf43b); - - /// Solid Alternate Chess Bishop icon - /// - /// https://fontawesome.com/icons/chess-bishop-alt?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessBishopAlt = const IconDataSolid(0xf43b); - - /// Light Alternate Chess Bishop icon - /// - /// https://fontawesome.com/icons/light_chess-bishop-alt?style=light - /// board, checkmate, game, strategy - static const IconData lightChessBishopAlt = const IconDataLight(0xf43b); - - /// Duotone Alternate Chess Bishop icon - /// - /// https://fontawesome.com/icons/duotone_chess-bishop-alt?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessBishopAlt = const IconDataDuotone( - 0xf43b, - secondary: const IconDataDuotone(0x10f43b), - ); - - /// Regular Chess Board icon - /// - /// https://fontawesome.com/icons/chess-board?style=regular - /// board, checkmate, game, strategy - static const IconData chessBoard = const IconDataRegular(0xf43c); - - /// Solid Chess Board icon - /// - /// https://fontawesome.com/icons/chess-board?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessBoard = const IconDataSolid(0xf43c); - - /// Light Chess Board icon - /// - /// https://fontawesome.com/icons/light_chess-board?style=light - /// board, checkmate, game, strategy - static const IconData lightChessBoard = const IconDataLight(0xf43c); - - /// Duotone Chess Board icon - /// - /// https://fontawesome.com/icons/duotone_chess-board?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessBoard = const IconDataDuotone( - 0xf43c, - secondary: const IconDataDuotone(0x10f43c), - ); - - /// Regular Chess Clock icon - /// - /// https://fontawesome.com/icons/chess-clock?style=regular - /// board, checkmate, game, strategy, timer, tournament - static const IconData chessClock = const IconDataRegular(0xf43d); - - /// Solid Chess Clock icon - /// - /// https://fontawesome.com/icons/chess-clock?style=solid - /// board, checkmate, game, strategy, timer, tournament - static const IconData solidChessClock = const IconDataSolid(0xf43d); - - /// Light Chess Clock icon - /// - /// https://fontawesome.com/icons/light_chess-clock?style=light - /// board, checkmate, game, strategy, timer, tournament - static const IconData lightChessClock = const IconDataLight(0xf43d); - - /// Duotone Chess Clock icon - /// - /// https://fontawesome.com/icons/duotone_chess-clock?style=duotone - /// board, checkmate, game, strategy, timer, tournament - static const IconDataDuotone duotoneChessClock = const IconDataDuotone( - 0xf43d, - secondary: const IconDataDuotone(0x10f43d), - ); - - /// Regular Alternate Chess Clock icon - /// - /// https://fontawesome.com/icons/chess-clock-alt?style=regular - /// board, checkmate, game, strategy, timer, tournament - static const IconData chessClockAlt = const IconDataRegular(0xf43e); - - /// Solid Alternate Chess Clock icon - /// - /// https://fontawesome.com/icons/chess-clock-alt?style=solid - /// board, checkmate, game, strategy, timer, tournament - static const IconData solidChessClockAlt = const IconDataSolid(0xf43e); - - /// Light Alternate Chess Clock icon - /// - /// https://fontawesome.com/icons/light_chess-clock-alt?style=light - /// board, checkmate, game, strategy, timer, tournament - static const IconData lightChessClockAlt = const IconDataLight(0xf43e); - - /// Duotone Alternate Chess Clock icon - /// - /// https://fontawesome.com/icons/duotone_chess-clock-alt?style=duotone - /// board, checkmate, game, strategy, timer, tournament - static const IconDataDuotone duotoneChessClockAlt = const IconDataDuotone( - 0xf43e, - secondary: const IconDataDuotone(0x10f43e), - ); - - /// Regular Chess King icon - /// - /// https://fontawesome.com/icons/chess-king?style=regular - /// board, checkmate, game, strategy - static const IconData chessKing = const IconDataRegular(0xf43f); - - /// Solid Chess King icon - /// - /// https://fontawesome.com/icons/chess-king?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessKing = const IconDataSolid(0xf43f); - - /// Light Chess King icon - /// - /// https://fontawesome.com/icons/light_chess-king?style=light - /// board, checkmate, game, strategy - static const IconData lightChessKing = const IconDataLight(0xf43f); - - /// Duotone Chess King icon - /// - /// https://fontawesome.com/icons/duotone_chess-king?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessKing = const IconDataDuotone( - 0xf43f, - secondary: const IconDataDuotone(0x10f43f), - ); - - /// Regular Alternate Chess King icon - /// - /// https://fontawesome.com/icons/chess-king-alt?style=regular - /// board, checkmate, game, strategy - static const IconData chessKingAlt = const IconDataRegular(0xf440); - - /// Solid Alternate Chess King icon - /// - /// https://fontawesome.com/icons/chess-king-alt?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessKingAlt = const IconDataSolid(0xf440); - - /// Light Alternate Chess King icon - /// - /// https://fontawesome.com/icons/light_chess-king-alt?style=light - /// board, checkmate, game, strategy - static const IconData lightChessKingAlt = const IconDataLight(0xf440); - - /// Duotone Alternate Chess King icon - /// - /// https://fontawesome.com/icons/duotone_chess-king-alt?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessKingAlt = const IconDataDuotone( - 0xf440, - secondary: const IconDataDuotone(0x10f440), - ); - - /// Regular Chess Knight icon - /// - /// https://fontawesome.com/icons/chess-knight?style=regular - /// board, checkmate, game, horse, strategy - static const IconData chessKnight = const IconDataRegular(0xf441); - - /// Solid Chess Knight icon - /// - /// https://fontawesome.com/icons/chess-knight?style=solid - /// board, checkmate, game, horse, strategy - static const IconData solidChessKnight = const IconDataSolid(0xf441); - - /// Light Chess Knight icon - /// - /// https://fontawesome.com/icons/light_chess-knight?style=light - /// board, checkmate, game, horse, strategy - static const IconData lightChessKnight = const IconDataLight(0xf441); - - /// Duotone Chess Knight icon - /// - /// https://fontawesome.com/icons/duotone_chess-knight?style=duotone - /// board, checkmate, game, horse, strategy - static const IconDataDuotone duotoneChessKnight = const IconDataDuotone( - 0xf441, - secondary: const IconDataDuotone(0x10f441), - ); - - /// Regular Alternate Chess Knight icon - /// - /// https://fontawesome.com/icons/chess-knight-alt?style=regular - /// board, checkmate, game, horse, strategy - static const IconData chessKnightAlt = const IconDataRegular(0xf442); - - /// Solid Alternate Chess Knight icon - /// - /// https://fontawesome.com/icons/chess-knight-alt?style=solid - /// board, checkmate, game, horse, strategy - static const IconData solidChessKnightAlt = const IconDataSolid(0xf442); - - /// Light Alternate Chess Knight icon - /// - /// https://fontawesome.com/icons/light_chess-knight-alt?style=light - /// board, checkmate, game, horse, strategy - static const IconData lightChessKnightAlt = const IconDataLight(0xf442); - - /// Duotone Alternate Chess Knight icon - /// - /// https://fontawesome.com/icons/duotone_chess-knight-alt?style=duotone - /// board, checkmate, game, horse, strategy - static const IconDataDuotone duotoneChessKnightAlt = const IconDataDuotone( - 0xf442, - secondary: const IconDataDuotone(0x10f442), - ); - - /// Regular Chess Pawn icon - /// - /// https://fontawesome.com/icons/chess-pawn?style=regular - /// board, checkmate, game, strategy - static const IconData chessPawn = const IconDataRegular(0xf443); - - /// Solid Chess Pawn icon - /// - /// https://fontawesome.com/icons/chess-pawn?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessPawn = const IconDataSolid(0xf443); - - /// Light Chess Pawn icon - /// - /// https://fontawesome.com/icons/light_chess-pawn?style=light - /// board, checkmate, game, strategy - static const IconData lightChessPawn = const IconDataLight(0xf443); - - /// Duotone Chess Pawn icon - /// - /// https://fontawesome.com/icons/duotone_chess-pawn?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessPawn = const IconDataDuotone( - 0xf443, - secondary: const IconDataDuotone(0x10f443), - ); - - /// Regular Alternate Chess Pawn icon - /// - /// https://fontawesome.com/icons/chess-pawn-alt?style=regular - /// board, checkmate, game, strategy - static const IconData chessPawnAlt = const IconDataRegular(0xf444); - - /// Solid Alternate Chess Pawn icon - /// - /// https://fontawesome.com/icons/chess-pawn-alt?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessPawnAlt = const IconDataSolid(0xf444); - - /// Light Alternate Chess Pawn icon - /// - /// https://fontawesome.com/icons/light_chess-pawn-alt?style=light - /// board, checkmate, game, strategy - static const IconData lightChessPawnAlt = const IconDataLight(0xf444); - - /// Duotone Alternate Chess Pawn icon - /// - /// https://fontawesome.com/icons/duotone_chess-pawn-alt?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessPawnAlt = const IconDataDuotone( - 0xf444, - secondary: const IconDataDuotone(0x10f444), - ); - - /// Regular Chess Queen icon - /// - /// https://fontawesome.com/icons/chess-queen?style=regular - /// board, checkmate, game, strategy - static const IconData chessQueen = const IconDataRegular(0xf445); - - /// Solid Chess Queen icon - /// - /// https://fontawesome.com/icons/chess-queen?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessQueen = const IconDataSolid(0xf445); - - /// Light Chess Queen icon - /// - /// https://fontawesome.com/icons/light_chess-queen?style=light - /// board, checkmate, game, strategy - static const IconData lightChessQueen = const IconDataLight(0xf445); - - /// Duotone Chess Queen icon - /// - /// https://fontawesome.com/icons/duotone_chess-queen?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessQueen = const IconDataDuotone( - 0xf445, - secondary: const IconDataDuotone(0x10f445), - ); - - /// Regular Alternate Chess Queen icon - /// - /// https://fontawesome.com/icons/chess-queen-alt?style=regular - /// board, checkmate, game, strategy - static const IconData chessQueenAlt = const IconDataRegular(0xf446); - - /// Solid Alternate Chess Queen icon - /// - /// https://fontawesome.com/icons/chess-queen-alt?style=solid - /// board, checkmate, game, strategy - static const IconData solidChessQueenAlt = const IconDataSolid(0xf446); - - /// Light Alternate Chess Queen icon - /// - /// https://fontawesome.com/icons/light_chess-queen-alt?style=light - /// board, checkmate, game, strategy - static const IconData lightChessQueenAlt = const IconDataLight(0xf446); - - /// Duotone Alternate Chess Queen icon - /// - /// https://fontawesome.com/icons/duotone_chess-queen-alt?style=duotone - /// board, checkmate, game, strategy - static const IconDataDuotone duotoneChessQueenAlt = const IconDataDuotone( - 0xf446, - secondary: const IconDataDuotone(0x10f446), - ); - - /// Regular Chess Rook icon - /// - /// https://fontawesome.com/icons/chess-rook?style=regular - /// board, castle, checkmate, game, strategy - static const IconData chessRook = const IconDataRegular(0xf447); - - /// Solid Chess Rook icon - /// - /// https://fontawesome.com/icons/chess-rook?style=solid - /// board, castle, checkmate, game, strategy - static const IconData solidChessRook = const IconDataSolid(0xf447); - - /// Light Chess Rook icon - /// - /// https://fontawesome.com/icons/light_chess-rook?style=light - /// board, castle, checkmate, game, strategy - static const IconData lightChessRook = const IconDataLight(0xf447); - - /// Duotone Chess Rook icon - /// - /// https://fontawesome.com/icons/duotone_chess-rook?style=duotone - /// board, castle, checkmate, game, strategy - static const IconDataDuotone duotoneChessRook = const IconDataDuotone( - 0xf447, - secondary: const IconDataDuotone(0x10f447), - ); - - /// Regular Alternate Chess Rook icon - /// - /// https://fontawesome.com/icons/chess-rook-alt?style=regular - /// board, castle, checkmate, game, strategy - static const IconData chessRookAlt = const IconDataRegular(0xf448); - - /// Solid Alternate Chess Rook icon - /// - /// https://fontawesome.com/icons/chess-rook-alt?style=solid - /// board, castle, checkmate, game, strategy - static const IconData solidChessRookAlt = const IconDataSolid(0xf448); - - /// Light Alternate Chess Rook icon - /// - /// https://fontawesome.com/icons/light_chess-rook-alt?style=light - /// board, castle, checkmate, game, strategy - static const IconData lightChessRookAlt = const IconDataLight(0xf448); - - /// Duotone Alternate Chess Rook icon - /// - /// https://fontawesome.com/icons/duotone_chess-rook-alt?style=duotone - /// board, castle, checkmate, game, strategy - static const IconDataDuotone duotoneChessRookAlt = const IconDataDuotone( - 0xf448, - secondary: const IconDataDuotone(0x10f448), - ); - - /// Regular Chevron Circle Down icon - /// - /// https://fontawesome.com/icons/chevron-circle-down?style=regular - /// arrow, download, dropdown, menu, more - static const IconData chevronCircleDown = const IconDataRegular(0xf13a); - - /// Solid Chevron Circle Down icon - /// - /// https://fontawesome.com/icons/chevron-circle-down?style=solid - /// arrow, download, dropdown, menu, more - static const IconData solidChevronCircleDown = const IconDataSolid(0xf13a); - - /// Light Chevron Circle Down icon - /// - /// https://fontawesome.com/icons/light_chevron-circle-down?style=light - /// arrow, download, dropdown, menu, more - static const IconData lightChevronCircleDown = const IconDataLight(0xf13a); - - /// Duotone Chevron Circle Down icon - /// - /// https://fontawesome.com/icons/duotone_chevron-circle-down?style=duotone - /// arrow, download, dropdown, menu, more - static const IconDataDuotone duotoneChevronCircleDown = const IconDataDuotone( - 0xf13a, - secondary: const IconDataDuotone(0x10f13a), - ); - - /// Regular Chevron Circle Left icon - /// - /// https://fontawesome.com/icons/chevron-circle-left?style=regular - /// arrow, back, previous - static const IconData chevronCircleLeft = const IconDataRegular(0xf137); - - /// Solid Chevron Circle Left icon - /// - /// https://fontawesome.com/icons/chevron-circle-left?style=solid - /// arrow, back, previous - static const IconData solidChevronCircleLeft = const IconDataSolid(0xf137); - - /// Light Chevron Circle Left icon - /// - /// https://fontawesome.com/icons/light_chevron-circle-left?style=light - /// arrow, back, previous - static const IconData lightChevronCircleLeft = const IconDataLight(0xf137); - - /// Duotone Chevron Circle Left icon - /// - /// https://fontawesome.com/icons/duotone_chevron-circle-left?style=duotone - /// arrow, back, previous - static const IconDataDuotone duotoneChevronCircleLeft = const IconDataDuotone( - 0xf137, - secondary: const IconDataDuotone(0x10f137), - ); - - /// Regular Chevron Circle Right icon - /// - /// https://fontawesome.com/icons/chevron-circle-right?style=regular - /// arrow, forward, next - static const IconData chevronCircleRight = const IconDataRegular(0xf138); - - /// Solid Chevron Circle Right icon - /// - /// https://fontawesome.com/icons/chevron-circle-right?style=solid - /// arrow, forward, next - static const IconData solidChevronCircleRight = const IconDataSolid(0xf138); - - /// Light Chevron Circle Right icon - /// - /// https://fontawesome.com/icons/light_chevron-circle-right?style=light - /// arrow, forward, next - static const IconData lightChevronCircleRight = const IconDataLight(0xf138); - - /// Duotone Chevron Circle Right icon - /// - /// https://fontawesome.com/icons/duotone_chevron-circle-right?style=duotone - /// arrow, forward, next - static const IconDataDuotone duotoneChevronCircleRight = - const IconDataDuotone( - 0xf138, - secondary: const IconDataDuotone(0x10f138), - ); - - /// Regular Chevron Circle Up icon - /// - /// https://fontawesome.com/icons/chevron-circle-up?style=regular - /// arrow, collapse, upload - static const IconData chevronCircleUp = const IconDataRegular(0xf139); - - /// Solid Chevron Circle Up icon - /// - /// https://fontawesome.com/icons/chevron-circle-up?style=solid - /// arrow, collapse, upload - static const IconData solidChevronCircleUp = const IconDataSolid(0xf139); - - /// Light Chevron Circle Up icon - /// - /// https://fontawesome.com/icons/light_chevron-circle-up?style=light - /// arrow, collapse, upload - static const IconData lightChevronCircleUp = const IconDataLight(0xf139); - - /// Duotone Chevron Circle Up icon - /// - /// https://fontawesome.com/icons/duotone_chevron-circle-up?style=duotone - /// arrow, collapse, upload - static const IconDataDuotone duotoneChevronCircleUp = const IconDataDuotone( - 0xf139, - secondary: const IconDataDuotone(0x10f139), - ); - - /// Regular Chevron Double Down icon - /// - /// https://fontawesome.com/icons/chevron-double-down?style=regular - /// arrow, download, expand - static const IconData chevronDoubleDown = const IconDataRegular(0xf322); - - /// Solid Chevron Double Down icon - /// - /// https://fontawesome.com/icons/chevron-double-down?style=solid - /// arrow, download, expand - static const IconData solidChevronDoubleDown = const IconDataSolid(0xf322); - - /// Light Chevron Double Down icon - /// - /// https://fontawesome.com/icons/light_chevron-double-down?style=light - /// arrow, download, expand - static const IconData lightChevronDoubleDown = const IconDataLight(0xf322); - - /// Duotone Chevron Double Down icon - /// - /// https://fontawesome.com/icons/duotone_chevron-double-down?style=duotone - /// arrow, download, expand - static const IconDataDuotone duotoneChevronDoubleDown = const IconDataDuotone( - 0xf322, - secondary: const IconDataDuotone(0x10f322), - ); - - /// Regular Chevron Double Left icon - /// - /// https://fontawesome.com/icons/chevron-double-left?style=regular - /// arrow, back, bracket, previous - static const IconData chevronDoubleLeft = const IconDataRegular(0xf323); - - /// Solid Chevron Double Left icon - /// - /// https://fontawesome.com/icons/chevron-double-left?style=solid - /// arrow, back, bracket, previous - static const IconData solidChevronDoubleLeft = const IconDataSolid(0xf323); - - /// Light Chevron Double Left icon - /// - /// https://fontawesome.com/icons/light_chevron-double-left?style=light - /// arrow, back, bracket, previous - static const IconData lightChevronDoubleLeft = const IconDataLight(0xf323); - - /// Duotone Chevron Double Left icon - /// - /// https://fontawesome.com/icons/duotone_chevron-double-left?style=duotone - /// arrow, back, bracket, previous - static const IconDataDuotone duotoneChevronDoubleLeft = const IconDataDuotone( - 0xf323, - secondary: const IconDataDuotone(0x10f323), - ); - - /// Regular Chevron Double Right icon - /// - /// https://fontawesome.com/icons/chevron-double-right?style=regular - /// arrow, bracket, forward, next - static const IconData chevronDoubleRight = const IconDataRegular(0xf324); - - /// Solid Chevron Double Right icon - /// - /// https://fontawesome.com/icons/chevron-double-right?style=solid - /// arrow, bracket, forward, next - static const IconData solidChevronDoubleRight = const IconDataSolid(0xf324); - - /// Light Chevron Double Right icon - /// - /// https://fontawesome.com/icons/light_chevron-double-right?style=light - /// arrow, bracket, forward, next - static const IconData lightChevronDoubleRight = const IconDataLight(0xf324); - - /// Duotone Chevron Double Right icon - /// - /// https://fontawesome.com/icons/duotone_chevron-double-right?style=duotone - /// arrow, bracket, forward, next - static const IconDataDuotone duotoneChevronDoubleRight = - const IconDataDuotone( - 0xf324, - secondary: const IconDataDuotone(0x10f324), - ); - - /// Regular Chevron Double Up icon - /// - /// https://fontawesome.com/icons/chevron-double-up?style=regular - /// arrow, collapse, upload - static const IconData chevronDoubleUp = const IconDataRegular(0xf325); - - /// Solid Chevron Double Up icon - /// - /// https://fontawesome.com/icons/chevron-double-up?style=solid - /// arrow, collapse, upload - static const IconData solidChevronDoubleUp = const IconDataSolid(0xf325); - - /// Light Chevron Double Up icon - /// - /// https://fontawesome.com/icons/light_chevron-double-up?style=light - /// arrow, collapse, upload - static const IconData lightChevronDoubleUp = const IconDataLight(0xf325); - - /// Duotone Chevron Double Up icon - /// - /// https://fontawesome.com/icons/duotone_chevron-double-up?style=duotone - /// arrow, collapse, upload - static const IconDataDuotone duotoneChevronDoubleUp = const IconDataDuotone( - 0xf325, - secondary: const IconDataDuotone(0x10f325), - ); - - /// Regular chevron-down icon - /// - /// https://fontawesome.com/icons/chevron-down?style=regular - /// arrow, download, expand - static const IconData chevronDown = const IconDataRegular(0xf078); - - /// Solid chevron-down icon - /// - /// https://fontawesome.com/icons/chevron-down?style=solid - /// arrow, download, expand - static const IconData solidChevronDown = const IconDataSolid(0xf078); - - /// Light chevron-down icon - /// - /// https://fontawesome.com/icons/light_chevron-down?style=light - /// arrow, download, expand - static const IconData lightChevronDown = const IconDataLight(0xf078); - - /// Duotone chevron-down icon - /// - /// https://fontawesome.com/icons/duotone_chevron-down?style=duotone - /// arrow, download, expand - static const IconDataDuotone duotoneChevronDown = const IconDataDuotone( - 0xf078, - secondary: const IconDataDuotone(0x10f078), - ); - - /// Regular chevron-left icon - /// - /// https://fontawesome.com/icons/chevron-left?style=regular - /// arrow, back, bracket, previous - static const IconData chevronLeft = const IconDataRegular(0xf053); - - /// Solid chevron-left icon - /// - /// https://fontawesome.com/icons/chevron-left?style=solid - /// arrow, back, bracket, previous - static const IconData solidChevronLeft = const IconDataSolid(0xf053); - - /// Light chevron-left icon - /// - /// https://fontawesome.com/icons/light_chevron-left?style=light - /// arrow, back, bracket, previous - static const IconData lightChevronLeft = const IconDataLight(0xf053); - - /// Duotone chevron-left icon - /// - /// https://fontawesome.com/icons/duotone_chevron-left?style=duotone - /// arrow, back, bracket, previous - static const IconDataDuotone duotoneChevronLeft = const IconDataDuotone( - 0xf053, - secondary: const IconDataDuotone(0x10f053), - ); - - /// Regular chevron-right icon - /// - /// https://fontawesome.com/icons/chevron-right?style=regular - /// arrow, bracket, forward, next - static const IconData chevronRight = const IconDataRegular(0xf054); - - /// Solid chevron-right icon - /// - /// https://fontawesome.com/icons/chevron-right?style=solid - /// arrow, bracket, forward, next - static const IconData solidChevronRight = const IconDataSolid(0xf054); - - /// Light chevron-right icon - /// - /// https://fontawesome.com/icons/light_chevron-right?style=light - /// arrow, bracket, forward, next - static const IconData lightChevronRight = const IconDataLight(0xf054); - - /// Duotone chevron-right icon - /// - /// https://fontawesome.com/icons/duotone_chevron-right?style=duotone - /// arrow, bracket, forward, next - static const IconDataDuotone duotoneChevronRight = const IconDataDuotone( - 0xf054, - secondary: const IconDataDuotone(0x10f054), - ); - - /// Regular Chevron Square Down icon - /// - /// https://fontawesome.com/icons/chevron-square-down?style=regular - /// arrow, download, dropdown, expand, menu, more - static const IconData chevronSquareDown = const IconDataRegular(0xf329); - - /// Solid Chevron Square Down icon - /// - /// https://fontawesome.com/icons/chevron-square-down?style=solid - /// arrow, download, dropdown, expand, menu, more - static const IconData solidChevronSquareDown = const IconDataSolid(0xf329); - - /// Light Chevron Square Down icon - /// - /// https://fontawesome.com/icons/light_chevron-square-down?style=light - /// arrow, download, dropdown, expand, menu, more - static const IconData lightChevronSquareDown = const IconDataLight(0xf329); - - /// Duotone Chevron Square Down icon - /// - /// https://fontawesome.com/icons/duotone_chevron-square-down?style=duotone - /// arrow, download, dropdown, expand, menu, more - static const IconDataDuotone duotoneChevronSquareDown = const IconDataDuotone( - 0xf329, - secondary: const IconDataDuotone(0x10f329), - ); - - /// Regular Chevron Square Left icon - /// - /// https://fontawesome.com/icons/chevron-square-left?style=regular - /// arrow, back, previous - static const IconData chevronSquareLeft = const IconDataRegular(0xf32a); - - /// Solid Chevron Square Left icon - /// - /// https://fontawesome.com/icons/chevron-square-left?style=solid - /// arrow, back, previous - static const IconData solidChevronSquareLeft = const IconDataSolid(0xf32a); - - /// Light Chevron Square Left icon - /// - /// https://fontawesome.com/icons/light_chevron-square-left?style=light - /// arrow, back, previous - static const IconData lightChevronSquareLeft = const IconDataLight(0xf32a); - - /// Duotone Chevron Square Left icon - /// - /// https://fontawesome.com/icons/duotone_chevron-square-left?style=duotone - /// arrow, back, previous - static const IconDataDuotone duotoneChevronSquareLeft = const IconDataDuotone( - 0xf32a, - secondary: const IconDataDuotone(0x10f32a), - ); - - /// Regular Chevron Square Right icon - /// - /// https://fontawesome.com/icons/chevron-square-right?style=regular - /// arrow, forward, next - static const IconData chevronSquareRight = const IconDataRegular(0xf32b); - - /// Solid Chevron Square Right icon - /// - /// https://fontawesome.com/icons/chevron-square-right?style=solid - /// arrow, forward, next - static const IconData solidChevronSquareRight = const IconDataSolid(0xf32b); - - /// Light Chevron Square Right icon - /// - /// https://fontawesome.com/icons/light_chevron-square-right?style=light - /// arrow, forward, next - static const IconData lightChevronSquareRight = const IconDataLight(0xf32b); - - /// Duotone Chevron Square Right icon - /// - /// https://fontawesome.com/icons/duotone_chevron-square-right?style=duotone - /// arrow, forward, next - static const IconDataDuotone duotoneChevronSquareRight = - const IconDataDuotone( - 0xf32b, - secondary: const IconDataDuotone(0x10f32b), - ); - - /// Regular Chevron Square Up icon - /// - /// https://fontawesome.com/icons/chevron-square-up?style=regular - /// arrow, collapse, upload - static const IconData chevronSquareUp = const IconDataRegular(0xf32c); - - /// Solid Chevron Square Up icon - /// - /// https://fontawesome.com/icons/chevron-square-up?style=solid - /// arrow, collapse, upload - static const IconData solidChevronSquareUp = const IconDataSolid(0xf32c); - - /// Light Chevron Square Up icon - /// - /// https://fontawesome.com/icons/light_chevron-square-up?style=light - /// arrow, collapse, upload - static const IconData lightChevronSquareUp = const IconDataLight(0xf32c); - - /// Duotone Chevron Square Up icon - /// - /// https://fontawesome.com/icons/duotone_chevron-square-up?style=duotone - /// arrow, collapse, upload - static const IconDataDuotone duotoneChevronSquareUp = const IconDataDuotone( - 0xf32c, - secondary: const IconDataDuotone(0x10f32c), - ); - - /// Regular chevron-up icon - /// - /// https://fontawesome.com/icons/chevron-up?style=regular - /// arrow, collapse, upload - static const IconData chevronUp = const IconDataRegular(0xf077); - - /// Solid chevron-up icon - /// - /// https://fontawesome.com/icons/chevron-up?style=solid - /// arrow, collapse, upload - static const IconData solidChevronUp = const IconDataSolid(0xf077); - - /// Light chevron-up icon - /// - /// https://fontawesome.com/icons/light_chevron-up?style=light - /// arrow, collapse, upload - static const IconData lightChevronUp = const IconDataLight(0xf077); - - /// Duotone chevron-up icon - /// - /// https://fontawesome.com/icons/duotone_chevron-up?style=duotone - /// arrow, collapse, upload - static const IconDataDuotone duotoneChevronUp = const IconDataDuotone( - 0xf077, - secondary: const IconDataDuotone(0x10f077), - ); - - /// Regular Child icon - /// - /// https://fontawesome.com/icons/child?style=regular - /// boy, girl, kid, toddler, young - static const IconData child = const IconDataRegular(0xf1ae); - - /// Solid Child icon - /// - /// https://fontawesome.com/icons/child?style=solid - /// boy, girl, kid, toddler, young - static const IconData solidChild = const IconDataSolid(0xf1ae); - - /// Light Child icon - /// - /// https://fontawesome.com/icons/light_child?style=light - /// boy, girl, kid, toddler, young - static const IconData lightChild = const IconDataLight(0xf1ae); - - /// Duotone Child icon - /// - /// https://fontawesome.com/icons/duotone_child?style=duotone - /// boy, girl, kid, toddler, young - static const IconDataDuotone duotoneChild = const IconDataDuotone( - 0xf1ae, - secondary: const IconDataDuotone(0x10f1ae), - ); - - /// Regular Chimney icon - /// - /// https://fontawesome.com/icons/chimney?style=regular - /// brick, exhaust, fireplace, house, roof, vent - static const IconData chimney = const IconDataRegular(0xf78b); - - /// Solid Chimney icon - /// - /// https://fontawesome.com/icons/chimney?style=solid - /// brick, exhaust, fireplace, house, roof, vent - static const IconData solidChimney = const IconDataSolid(0xf78b); - - /// Light Chimney icon - /// - /// https://fontawesome.com/icons/light_chimney?style=light - /// brick, exhaust, fireplace, house, roof, vent - static const IconData lightChimney = const IconDataLight(0xf78b); - - /// Duotone Chimney icon - /// - /// https://fontawesome.com/icons/duotone_chimney?style=duotone - /// brick, exhaust, fireplace, house, roof, vent - static const IconDataDuotone duotoneChimney = const IconDataDuotone( - 0xf78b, - secondary: const IconDataDuotone(0x10f78b), - ); - - /// Brands Chrome icon - /// - /// https://fontawesome.com/icons/chrome?style=brands - /// browser - static const IconData chrome = const IconDataBrands(0xf268); - - /// Brands Chromecast icon - /// - /// https://fontawesome.com/icons/chromecast?style=brands - static const IconData chromecast = const IconDataBrands(0xf838); - - /// Regular Church icon - /// - /// https://fontawesome.com/icons/church?style=regular - /// building, cathedral, chapel, community, religion - static const IconData church = const IconDataRegular(0xf51d); - - /// Solid Church icon - /// - /// https://fontawesome.com/icons/church?style=solid - /// building, cathedral, chapel, community, religion - static const IconData solidChurch = const IconDataSolid(0xf51d); - - /// Light Church icon - /// - /// https://fontawesome.com/icons/light_church?style=light - /// building, cathedral, chapel, community, religion - static const IconData lightChurch = const IconDataLight(0xf51d); - - /// Duotone Church icon - /// - /// https://fontawesome.com/icons/duotone_church?style=duotone - /// building, cathedral, chapel, community, religion - static const IconDataDuotone duotoneChurch = const IconDataDuotone( - 0xf51d, - secondary: const IconDataDuotone(0x10f51d), - ); - - /// Regular Circle icon - /// - /// https://fontawesome.com/icons/circle?style=regular - /// circle-thin, diameter, dot, ellipse, notification, round - static const IconData circle = const IconDataRegular(0xf111); - - /// Solid Circle icon - /// - /// https://fontawesome.com/icons/circle?style=solid - /// circle-thin, diameter, dot, ellipse, notification, round - static const IconData solidCircle = const IconDataSolid(0xf111); - - /// Light Circle icon - /// - /// https://fontawesome.com/icons/light_circle?style=light - /// circle-thin, diameter, dot, ellipse, notification, round - static const IconData lightCircle = const IconDataLight(0xf111); - - /// Duotone Circle icon - /// - /// https://fontawesome.com/icons/duotone_circle?style=duotone - /// circle-thin, diameter, dot, ellipse, notification, round - static const IconDataDuotone duotoneCircle = const IconDataDuotone( - 0xf111, - secondary: const IconDataDuotone(0x10f111), - ); - - /// Regular Circle Notched icon - /// - /// https://fontawesome.com/icons/circle-notch?style=regular - /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData circleNotch = const IconDataRegular(0xf1ce); - - /// Solid Circle Notched icon - /// - /// https://fontawesome.com/icons/circle-notch?style=solid - /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData solidCircleNotch = const IconDataSolid(0xf1ce); - - /// Light Circle Notched icon - /// - /// https://fontawesome.com/icons/light_circle-notch?style=light - /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconData lightCircleNotch = const IconDataLight(0xf1ce); - - /// Duotone Circle Notched icon - /// - /// https://fontawesome.com/icons/duotone_circle-notch?style=duotone - /// circle-o-notch, diameter, dot, ellipse, round, spinner - static const IconDataDuotone duotoneCircleNotch = const IconDataDuotone( - 0xf1ce, - secondary: const IconDataDuotone(0x10f1ce), - ); - - /// Regular City icon - /// - /// https://fontawesome.com/icons/city?style=regular - /// buildings, busy, skyscrapers, urban, windows - static const IconData city = const IconDataRegular(0xf64f); - - /// Solid City icon - /// - /// https://fontawesome.com/icons/city?style=solid - /// buildings, busy, skyscrapers, urban, windows - static const IconData solidCity = const IconDataSolid(0xf64f); - - /// Light City icon - /// - /// https://fontawesome.com/icons/light_city?style=light - /// buildings, busy, skyscrapers, urban, windows - static const IconData lightCity = const IconDataLight(0xf64f); - - /// Duotone City icon - /// - /// https://fontawesome.com/icons/duotone_city?style=duotone - /// buildings, busy, skyscrapers, urban, windows - static const IconDataDuotone duotoneCity = const IconDataDuotone( - 0xf64f, - secondary: const IconDataDuotone(0x10f64f), - ); - - /// Regular Clarinet icon - /// - /// https://fontawesome.com/icons/clarinet?style=regular - /// instrument, jazz, music, woodwind - static const IconData clarinet = const IconDataRegular(0xf8ad); - - /// Solid Clarinet icon - /// - /// https://fontawesome.com/icons/clarinet?style=solid - /// instrument, jazz, music, woodwind - static const IconData solidClarinet = const IconDataSolid(0xf8ad); - - /// Light Clarinet icon - /// - /// https://fontawesome.com/icons/light_clarinet?style=light - /// instrument, jazz, music, woodwind - static const IconData lightClarinet = const IconDataLight(0xf8ad); - - /// Duotone Clarinet icon - /// - /// https://fontawesome.com/icons/duotone_clarinet?style=duotone - /// instrument, jazz, music, woodwind - static const IconDataDuotone duotoneClarinet = const IconDataDuotone( - 0xf8ad, - secondary: const IconDataDuotone(0x10f8ad), - ); - - /// 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 = const IconDataRegular(0xf6c2); - - /// 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 = const IconDataSolid(0xf6c2); - - /// Light Claw Marks icon - /// - /// https://fontawesome.com/icons/light_claw-marks?style=light - /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconData lightClawMarks = const IconDataLight(0xf6c2); - - /// Duotone Claw Marks icon - /// - /// https://fontawesome.com/icons/duotone_claw-marks?style=duotone - /// attack, damage, halloween, rip, scratch, snikt, tear, torn, wolverine - static const IconDataDuotone duotoneClawMarks = const IconDataDuotone( - 0xf6c2, - secondary: const IconDataDuotone(0x10f6c2), - ); - - /// Regular Medical Clinic icon - /// - /// https://fontawesome.com/icons/clinic-medical?style=regular - /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData clinicMedical = const IconDataRegular(0xf7f2); - - /// Solid Medical Clinic icon - /// - /// https://fontawesome.com/icons/clinic-medical?style=solid - /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData solidClinicMedical = const IconDataSolid(0xf7f2); - - /// Light Medical Clinic icon - /// - /// https://fontawesome.com/icons/light_clinic-medical?style=light - /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData lightClinicMedical = const IconDataLight(0xf7f2); - - /// Duotone Medical Clinic icon - /// - /// https://fontawesome.com/icons/duotone_clinic-medical?style=duotone - /// covid-19, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconDataDuotone duotoneClinicMedical = const IconDataDuotone( - 0xf7f2, - secondary: const IconDataDuotone(0x10f7f2), - ); - - /// Regular Clipboard icon - /// - /// https://fontawesome.com/icons/clipboard?style=regular - /// copy, notes, paste, record - static const IconData clipboard = const IconDataRegular(0xf328); - - /// Solid Clipboard icon - /// - /// https://fontawesome.com/icons/clipboard?style=solid - /// copy, notes, paste, record - static const IconData solidClipboard = const IconDataSolid(0xf328); - - /// Light Clipboard icon - /// - /// https://fontawesome.com/icons/light_clipboard?style=light - /// copy, notes, paste, record - static const IconData lightClipboard = const IconDataLight(0xf328); - - /// Duotone Clipboard icon - /// - /// https://fontawesome.com/icons/duotone_clipboard?style=duotone - /// copy, notes, paste, record - static const IconDataDuotone duotoneClipboard = const IconDataDuotone( - 0xf328, - secondary: const IconDataDuotone(0x10f328), - ); - - /// Regular Clipboard with Check icon - /// - /// https://fontawesome.com/icons/clipboard-check?style=regular - /// accept, agree, confirm, done, ok, select, success, tick, todo, yes - static const IconData clipboardCheck = const IconDataRegular(0xf46c); - - /// Solid Clipboard with Check icon - /// - /// https://fontawesome.com/icons/clipboard-check?style=solid - /// accept, agree, confirm, done, ok, select, success, tick, todo, yes - static const IconData solidClipboardCheck = const IconDataSolid(0xf46c); - - /// Light Clipboard with Check icon - /// - /// https://fontawesome.com/icons/light_clipboard-check?style=light - /// accept, agree, confirm, done, ok, select, success, tick, todo, yes - static const IconData lightClipboardCheck = const IconDataLight(0xf46c); - - /// Duotone Clipboard with Check icon - /// - /// https://fontawesome.com/icons/duotone_clipboard-check?style=duotone - /// accept, agree, confirm, done, ok, select, success, tick, todo, yes - static const IconDataDuotone duotoneClipboardCheck = const IconDataDuotone( - 0xf46c, - secondary: const IconDataDuotone(0x10f46c), - ); - - /// Regular Clipboard List icon - /// - /// https://fontawesome.com/icons/clipboard-list?style=regular - /// checklist, completed, done, finished, intinerary, ol, schedule, tick, todo, ul - static const IconData clipboardList = const IconDataRegular(0xf46d); - - /// Solid Clipboard List icon - /// - /// https://fontawesome.com/icons/clipboard-list?style=solid - /// checklist, completed, done, finished, intinerary, ol, schedule, tick, todo, ul - static const IconData solidClipboardList = const IconDataSolid(0xf46d); - - /// Light Clipboard List icon - /// - /// https://fontawesome.com/icons/light_clipboard-list?style=light - /// checklist, completed, done, finished, intinerary, ol, schedule, tick, todo, ul - static const IconData lightClipboardList = const IconDataLight(0xf46d); - - /// Duotone Clipboard List icon - /// - /// https://fontawesome.com/icons/duotone_clipboard-list?style=duotone - /// checklist, completed, done, finished, intinerary, ol, schedule, tick, todo, ul - static const IconDataDuotone duotoneClipboardList = const IconDataDuotone( - 0xf46d, - secondary: const IconDataDuotone(0x10f46d), - ); - - /// Regular Clipboard List with Check icon - /// - /// https://fontawesome.com/icons/clipboard-list-check?style=regular - /// checklist, completed, done, election, finished, intinerary, ol, schedule, tick, todo, ul, vote, voting - static const IconData clipboardListCheck = const IconDataRegular(0xf737); - - /// Solid Clipboard List with Check icon - /// - /// https://fontawesome.com/icons/clipboard-list-check?style=solid - /// checklist, completed, done, election, finished, intinerary, ol, schedule, tick, todo, ul, vote, voting - static const IconData solidClipboardListCheck = const IconDataSolid(0xf737); - - /// Light Clipboard List with Check icon - /// - /// https://fontawesome.com/icons/light_clipboard-list-check?style=light - /// checklist, completed, done, election, finished, intinerary, ol, schedule, tick, todo, ul, vote, voting - static const IconData lightClipboardListCheck = const IconDataLight(0xf737); - - /// Duotone Clipboard List with Check icon - /// - /// https://fontawesome.com/icons/duotone_clipboard-list-check?style=duotone - /// checklist, completed, done, election, finished, intinerary, ol, schedule, tick, todo, ul, vote, voting - static const IconDataDuotone duotoneClipboardListCheck = - const IconDataDuotone( - 0xf737, - secondary: const IconDataDuotone(0x10f737), - ); - - /// Regular Clipboard Prescription icon - /// - /// https://fontawesome.com/icons/clipboard-prescription?style=regular - /// copy, history, medical, notes, paste, record - static const IconData clipboardPrescription = const IconDataRegular(0xf5e8); - - /// Solid Clipboard Prescription icon - /// - /// https://fontawesome.com/icons/clipboard-prescription?style=solid - /// copy, history, medical, notes, paste, record - static const IconData solidClipboardPrescription = - const IconDataSolid(0xf5e8); - - /// Light Clipboard Prescription icon - /// - /// https://fontawesome.com/icons/light_clipboard-prescription?style=light - /// copy, history, medical, notes, paste, record - static const IconData lightClipboardPrescription = - const IconDataLight(0xf5e8); - - /// Duotone Clipboard Prescription icon - /// - /// https://fontawesome.com/icons/duotone_clipboard-prescription?style=duotone - /// copy, history, medical, notes, paste, record - static const IconDataDuotone duotoneClipboardPrescription = - const IconDataDuotone( - 0xf5e8, - secondary: const IconDataDuotone(0x10f5e8), - ); - - /// Regular Clipboard with User icon - /// - /// https://fontawesome.com/icons/clipboard-user?style=regular - /// attendance, record, roster, staff - static const IconData clipboardUser = const IconDataRegular(0xf7f3); - - /// Solid Clipboard with User icon - /// - /// https://fontawesome.com/icons/clipboard-user?style=solid - /// attendance, record, roster, staff - static const IconData solidClipboardUser = const IconDataSolid(0xf7f3); - - /// Light Clipboard with User icon - /// - /// https://fontawesome.com/icons/light_clipboard-user?style=light - /// attendance, record, roster, staff - static const IconData lightClipboardUser = const IconDataLight(0xf7f3); - - /// Duotone Clipboard with User icon - /// - /// https://fontawesome.com/icons/duotone_clipboard-user?style=duotone - /// attendance, record, roster, staff - static const IconDataDuotone duotoneClipboardUser = const IconDataDuotone( - 0xf7f3, - secondary: const IconDataDuotone(0x10f7f3), - ); - - /// Regular Clock icon - /// - /// https://fontawesome.com/icons/clock?style=regular - /// date, late, schedule, time, timer, timestamp, watch - static const IconData clock = const IconDataRegular(0xf017); - - /// Solid Clock icon - /// - /// https://fontawesome.com/icons/clock?style=solid - /// date, late, schedule, time, timer, timestamp, watch - static const IconData solidClock = const IconDataSolid(0xf017); - - /// Light Clock icon - /// - /// https://fontawesome.com/icons/light_clock?style=light - /// date, late, schedule, time, timer, timestamp, watch - static const IconData lightClock = const IconDataLight(0xf017); - - /// Duotone Clock icon - /// - /// https://fontawesome.com/icons/duotone_clock?style=duotone - /// date, late, schedule, time, timer, timestamp, watch - static const IconDataDuotone duotoneClock = const IconDataDuotone( - 0xf017, - secondary: const IconDataDuotone(0x10f017), - ); - - /// Regular Clone icon - /// - /// https://fontawesome.com/icons/clone?style=regular - /// arrange, copy, duplicate, paste - static const IconData clone = const IconDataRegular(0xf24d); - - /// Solid Clone icon - /// - /// https://fontawesome.com/icons/clone?style=solid - /// arrange, copy, duplicate, paste - static const IconData solidClone = const IconDataSolid(0xf24d); - - /// Light Clone icon - /// - /// https://fontawesome.com/icons/light_clone?style=light - /// arrange, copy, duplicate, paste - static const IconData lightClone = const IconDataLight(0xf24d); - - /// Duotone Clone icon - /// - /// https://fontawesome.com/icons/duotone_clone?style=duotone - /// arrange, copy, duplicate, paste - static const IconDataDuotone duotoneClone = const IconDataDuotone( - 0xf24d, - secondary: const IconDataDuotone(0x10f24d), - ); - - /// Regular Closed Captioning icon - /// - /// https://fontawesome.com/icons/closed-captioning?style=regular - /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData closedCaptioning = const IconDataRegular(0xf20a); - - /// Solid Closed Captioning icon - /// - /// https://fontawesome.com/icons/closed-captioning?style=solid - /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData solidClosedCaptioning = const IconDataSolid(0xf20a); - - /// Light Closed Captioning icon - /// - /// https://fontawesome.com/icons/light_closed-captioning?style=light - /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconData lightClosedCaptioning = const IconDataLight(0xf20a); - - /// Duotone Closed Captioning icon - /// - /// https://fontawesome.com/icons/duotone_closed-captioning?style=duotone - /// cc, deaf, hearing, subtitle, subtitling, text, video - static const IconDataDuotone duotoneClosedCaptioning = const IconDataDuotone( - 0xf20a, - secondary: const IconDataDuotone(0x10f20a), - ); - - /// Regular Cloud icon - /// - /// https://fontawesome.com/icons/cloud?style=regular - /// atmosphere, fog, overcast, save, upload, weather - static const IconData cloud = const IconDataRegular(0xf0c2); - - /// Solid Cloud icon - /// - /// https://fontawesome.com/icons/cloud?style=solid - /// atmosphere, fog, overcast, save, upload, weather - static const IconData solidCloud = const IconDataSolid(0xf0c2); - - /// Light Cloud icon - /// - /// https://fontawesome.com/icons/light_cloud?style=light - /// atmosphere, fog, overcast, save, upload, weather - static const IconData lightCloud = const IconDataLight(0xf0c2); - - /// Duotone Cloud icon - /// - /// https://fontawesome.com/icons/duotone_cloud?style=duotone - /// atmosphere, fog, overcast, save, upload, weather - static const IconDataDuotone duotoneCloud = const IconDataDuotone( - 0xf0c2, - secondary: const IconDataDuotone(0x10f0c2), - ); - - /// Regular Cloud Download icon - /// - /// https://fontawesome.com/icons/cloud-download?style=regular - /// download, export, save - static const IconData cloudDownload = const IconDataRegular(0xf0ed); - - /// Solid Cloud Download icon - /// - /// https://fontawesome.com/icons/cloud-download?style=solid - /// download, export, save - static const IconData solidCloudDownload = const IconDataSolid(0xf0ed); - - /// Light Cloud Download icon - /// - /// https://fontawesome.com/icons/light_cloud-download?style=light - /// download, export, save - static const IconData lightCloudDownload = const IconDataLight(0xf0ed); - - /// Duotone Cloud Download icon - /// - /// https://fontawesome.com/icons/duotone_cloud-download?style=duotone - /// download, export, save - static const IconDataDuotone duotoneCloudDownload = const IconDataDuotone( - 0xf0ed, - secondary: const IconDataDuotone(0x10f0ed), - ); - - /// Regular Alternate Cloud Download icon - /// - /// https://fontawesome.com/icons/cloud-download-alt?style=regular - /// download, export, save - static const IconData cloudDownloadAlt = const IconDataRegular(0xf381); - - /// Solid Alternate Cloud Download icon - /// - /// https://fontawesome.com/icons/cloud-download-alt?style=solid - /// download, export, save - static const IconData solidCloudDownloadAlt = const IconDataSolid(0xf381); - - /// Light Alternate Cloud Download icon - /// - /// https://fontawesome.com/icons/light_cloud-download-alt?style=light - /// download, export, save - static const IconData lightCloudDownloadAlt = const IconDataLight(0xf381); - - /// Duotone Alternate Cloud Download icon - /// - /// https://fontawesome.com/icons/duotone_cloud-download-alt?style=duotone - /// download, export, save - static const IconDataDuotone duotoneCloudDownloadAlt = const IconDataDuotone( - 0xf381, - secondary: const IconDataDuotone(0x10f381), - ); - - /// Regular Cloud with Drizzle icon - /// - /// https://fontawesome.com/icons/cloud-drizzle?style=regular - /// precipitation, rain, sprinkle - static const IconData cloudDrizzle = const IconDataRegular(0xf738); - - /// Solid Cloud with Drizzle icon - /// - /// https://fontawesome.com/icons/cloud-drizzle?style=solid - /// precipitation, rain, sprinkle - static const IconData solidCloudDrizzle = const IconDataSolid(0xf738); - - /// Light Cloud with Drizzle icon - /// - /// https://fontawesome.com/icons/light_cloud-drizzle?style=light - /// precipitation, rain, sprinkle - static const IconData lightCloudDrizzle = const IconDataLight(0xf738); - - /// Duotone Cloud with Drizzle icon - /// - /// https://fontawesome.com/icons/duotone_cloud-drizzle?style=duotone - /// precipitation, rain, sprinkle - static const IconDataDuotone duotoneCloudDrizzle = const IconDataDuotone( - 0xf738, - secondary: const IconDataDuotone(0x10f738), - ); - - /// Regular Cloud with Hail icon - /// - /// https://fontawesome.com/icons/cloud-hail?style=regular - /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData cloudHail = const IconDataRegular(0xf739); - - /// Solid Cloud with Hail icon - /// - /// https://fontawesome.com/icons/cloud-hail?style=solid - /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData solidCloudHail = const IconDataSolid(0xf739); - - /// Light Cloud with Hail icon - /// - /// https://fontawesome.com/icons/light_cloud-hail?style=light - /// golf balls, ice, precipitation, sleet, snow, storm - static const IconData lightCloudHail = const IconDataLight(0xf739); - - /// Duotone Cloud with Hail icon - /// - /// https://fontawesome.com/icons/duotone_cloud-hail?style=duotone - /// golf balls, ice, precipitation, sleet, snow, storm - static const IconDataDuotone duotoneCloudHail = const IconDataDuotone( - 0xf739, - secondary: const IconDataDuotone(0x10f739), - ); - - /// Regular Cloud with Mixed Hail icon - /// - /// https://fontawesome.com/icons/cloud-hail-mixed?style=regular - /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData cloudHailMixed = const IconDataRegular(0xf73a); - - /// Solid Cloud with Mixed Hail icon - /// - /// https://fontawesome.com/icons/cloud-hail-mixed?style=solid - /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData solidCloudHailMixed = const IconDataSolid(0xf73a); - - /// Light Cloud with Mixed Hail icon - /// - /// https://fontawesome.com/icons/light_cloud-hail-mixed?style=light - /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconData lightCloudHailMixed = const IconDataLight(0xf73a); - - /// Duotone Cloud with Mixed Hail icon - /// - /// https://fontawesome.com/icons/duotone_cloud-hail-mixed?style=duotone - /// freezing, ice, precipitation, rain, sleet, snow, storm - static const IconDataDuotone duotoneCloudHailMixed = const IconDataDuotone( - 0xf73a, - secondary: const IconDataDuotone(0x10f73a), - ); - - /// Regular Cloud with (a chance of) Meatball icon - /// - /// https://fontawesome.com/icons/cloud-meatball?style=regular - /// FLDSMDFR, food, spaghetti, storm - static const IconData cloudMeatball = const IconDataRegular(0xf73b); - - /// Solid Cloud with (a chance of) Meatball icon - /// - /// https://fontawesome.com/icons/cloud-meatball?style=solid - /// FLDSMDFR, food, spaghetti, storm - static const IconData solidCloudMeatball = const IconDataSolid(0xf73b); - - /// Light Cloud with (a chance of) Meatball icon - /// - /// https://fontawesome.com/icons/light_cloud-meatball?style=light - /// FLDSMDFR, food, spaghetti, storm - static const IconData lightCloudMeatball = const IconDataLight(0xf73b); - - /// Duotone Cloud with (a chance of) Meatball icon - /// - /// https://fontawesome.com/icons/duotone_cloud-meatball?style=duotone - /// FLDSMDFR, food, spaghetti, storm - static const IconDataDuotone duotoneCloudMeatball = const IconDataDuotone( - 0xf73b, - secondary: const IconDataDuotone(0x10f73b), - ); - - /// Regular Cloud with Moon icon - /// - /// https://fontawesome.com/icons/cloud-moon?style=regular - /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData cloudMoon = const IconDataRegular(0xf6c3); - - /// Solid Cloud with Moon icon - /// - /// https://fontawesome.com/icons/cloud-moon?style=solid - /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData solidCloudMoon = const IconDataSolid(0xf6c3); - - /// Light Cloud with Moon icon - /// - /// https://fontawesome.com/icons/light_cloud-moon?style=light - /// crescent, evening, lunar, night, partly cloudy, sky - static const IconData lightCloudMoon = const IconDataLight(0xf6c3); - - /// Duotone Cloud with Moon icon - /// - /// https://fontawesome.com/icons/duotone_cloud-moon?style=duotone - /// crescent, evening, lunar, night, partly cloudy, sky - static const IconDataDuotone duotoneCloudMoon = const IconDataDuotone( - 0xf6c3, - secondary: const IconDataDuotone(0x10f6c3), - ); - - /// Regular Cloud with Moon and 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 = const IconDataRegular(0xf73c); - - /// Solid Cloud with Moon and 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 = const IconDataSolid(0xf73c); - - /// Light Cloud with Moon and Rain icon - /// - /// https://fontawesome.com/icons/light_cloud-moon-rain?style=light - /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconData lightCloudMoonRain = const IconDataLight(0xf73c); - - /// Duotone Cloud with Moon and Rain icon - /// - /// https://fontawesome.com/icons/duotone_cloud-moon-rain?style=duotone - /// crescent, evening, lunar, night, partly cloudy, precipitation, rain, sky, storm - static const IconDataDuotone duotoneCloudMoonRain = const IconDataDuotone( - 0xf73c, - secondary: const IconDataDuotone(0x10f73c), - ); - - /// Regular Cloud Music icon - /// - /// https://fontawesome.com/icons/cloud-music?style=regular - /// download, music, spotify, streaming - static const IconData cloudMusic = const IconDataRegular(0xf8ae); - - /// Solid Cloud Music icon - /// - /// https://fontawesome.com/icons/cloud-music?style=solid - /// download, music, spotify, streaming - static const IconData solidCloudMusic = const IconDataSolid(0xf8ae); - - /// Light Cloud Music icon - /// - /// https://fontawesome.com/icons/light_cloud-music?style=light - /// download, music, spotify, streaming - static const IconData lightCloudMusic = const IconDataLight(0xf8ae); - - /// Duotone Cloud Music icon - /// - /// https://fontawesome.com/icons/duotone_cloud-music?style=duotone - /// download, music, spotify, streaming - static const IconDataDuotone duotoneCloudMusic = const IconDataDuotone( - 0xf8ae, - secondary: const IconDataDuotone(0x10f8ae), - ); - - /// Regular Cloud with Rain icon - /// - /// https://fontawesome.com/icons/cloud-rain?style=regular - /// precipitation, rain, sky, storm - static const IconData cloudRain = const IconDataRegular(0xf73d); - - /// Solid Cloud with Rain icon - /// - /// https://fontawesome.com/icons/cloud-rain?style=solid - /// precipitation, rain, sky, storm - static const IconData solidCloudRain = const IconDataSolid(0xf73d); - - /// Light Cloud with Rain icon - /// - /// https://fontawesome.com/icons/light_cloud-rain?style=light - /// precipitation, rain, sky, storm - static const IconData lightCloudRain = const IconDataLight(0xf73d); - - /// Duotone Cloud with Rain icon - /// - /// https://fontawesome.com/icons/duotone_cloud-rain?style=duotone - /// precipitation, rain, sky, storm - static const IconDataDuotone duotoneCloudRain = const IconDataDuotone( - 0xf73d, - secondary: const IconDataDuotone(0x10f73d), - ); - - /// Regular Cloud with Rainbow icon - /// - /// https://fontawesome.com/icons/cloud-rainbow?style=regular - /// gold, leprechaun, prism, rain, sky - static const IconData cloudRainbow = const IconDataRegular(0xf73e); - - /// Solid Cloud with Rainbow icon - /// - /// https://fontawesome.com/icons/cloud-rainbow?style=solid - /// gold, leprechaun, prism, rain, sky - static const IconData solidCloudRainbow = const IconDataSolid(0xf73e); - - /// Light Cloud with Rainbow icon - /// - /// https://fontawesome.com/icons/light_cloud-rainbow?style=light - /// gold, leprechaun, prism, rain, sky - static const IconData lightCloudRainbow = const IconDataLight(0xf73e); - - /// Duotone Cloud with Rainbow icon - /// - /// https://fontawesome.com/icons/duotone_cloud-rainbow?style=duotone - /// gold, leprechaun, prism, rain, sky - static const IconDataDuotone duotoneCloudRainbow = const IconDataDuotone( - 0xf73e, - secondary: const IconDataDuotone(0x10f73e), - ); - - /// Regular Cloud with Showers icon - /// - /// https://fontawesome.com/icons/cloud-showers?style=regular - /// precipitation, rain, sky, storm - static const IconData cloudShowers = const IconDataRegular(0xf73f); - - /// Solid Cloud with Showers icon - /// - /// https://fontawesome.com/icons/cloud-showers?style=solid - /// precipitation, rain, sky, storm - static const IconData solidCloudShowers = const IconDataSolid(0xf73f); - - /// Light Cloud with Showers icon - /// - /// https://fontawesome.com/icons/light_cloud-showers?style=light - /// precipitation, rain, sky, storm - static const IconData lightCloudShowers = const IconDataLight(0xf73f); - - /// Duotone Cloud with Showers icon - /// - /// https://fontawesome.com/icons/duotone_cloud-showers?style=duotone - /// precipitation, rain, sky, storm - static const IconDataDuotone duotoneCloudShowers = const IconDataDuotone( - 0xf73f, - secondary: const IconDataDuotone(0x10f73f), - ); - - /// Regular Cloud with Heavy Showers icon - /// - /// https://fontawesome.com/icons/cloud-showers-heavy?style=regular - /// precipitation, rain, sky, storm - static const IconData cloudShowersHeavy = const IconDataRegular(0xf740); - - /// Solid Cloud with Heavy Showers icon - /// - /// https://fontawesome.com/icons/cloud-showers-heavy?style=solid - /// precipitation, rain, sky, storm - static const IconData solidCloudShowersHeavy = const IconDataSolid(0xf740); - - /// Light Cloud with Heavy Showers icon - /// - /// https://fontawesome.com/icons/light_cloud-showers-heavy?style=light - /// precipitation, rain, sky, storm - static const IconData lightCloudShowersHeavy = const IconDataLight(0xf740); - - /// Duotone Cloud with Heavy Showers icon - /// - /// https://fontawesome.com/icons/duotone_cloud-showers-heavy?style=duotone - /// precipitation, rain, sky, storm - static const IconDataDuotone duotoneCloudShowersHeavy = const IconDataDuotone( - 0xf740, - secondary: const IconDataDuotone(0x10f740), - ); - - /// Regular Cloud with Sleet icon - /// - /// https://fontawesome.com/icons/cloud-sleet?style=regular - /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData cloudSleet = const IconDataRegular(0xf741); - - /// Solid Cloud with Sleet icon - /// - /// https://fontawesome.com/icons/cloud-sleet?style=solid - /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData solidCloudSleet = const IconDataSolid(0xf741); - - /// Light Cloud with Sleet icon - /// - /// https://fontawesome.com/icons/light_cloud-sleet?style=light - /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconData lightCloudSleet = const IconDataLight(0xf741); - - /// Duotone Cloud with Sleet icon - /// - /// https://fontawesome.com/icons/duotone_cloud-sleet?style=duotone - /// freezing, hail, precipitation, rain, winter, wintry mix - static const IconDataDuotone duotoneCloudSleet = const IconDataDuotone( - 0xf741, - secondary: const IconDataDuotone(0x10f741), - ); - - /// Regular Cloud with Snow icon - /// - /// https://fontawesome.com/icons/cloud-snow?style=regular - /// blizzard, noreaster, precipitation, winter - static const IconData cloudSnow = const IconDataRegular(0xf742); - - /// Solid Cloud with Snow icon - /// - /// https://fontawesome.com/icons/cloud-snow?style=solid - /// blizzard, noreaster, precipitation, winter - static const IconData solidCloudSnow = const IconDataSolid(0xf742); - - /// Light Cloud with Snow icon - /// - /// https://fontawesome.com/icons/light_cloud-snow?style=light - /// blizzard, noreaster, precipitation, winter - static const IconData lightCloudSnow = const IconDataLight(0xf742); - - /// Duotone Cloud with Snow icon - /// - /// https://fontawesome.com/icons/duotone_cloud-snow?style=duotone - /// blizzard, noreaster, precipitation, winter - static const IconDataDuotone duotoneCloudSnow = const IconDataDuotone( - 0xf742, - secondary: const IconDataDuotone(0x10f742), - ); - - /// Regular Cloud with Sun icon - /// - /// https://fontawesome.com/icons/cloud-sun?style=regular - /// clear, day, daytime, fall, outdoors, overcast, partly cloudy - static const IconData cloudSun = const IconDataRegular(0xf6c4); - - /// Solid Cloud with Sun icon - /// - /// https://fontawesome.com/icons/cloud-sun?style=solid - /// clear, day, daytime, fall, outdoors, overcast, partly cloudy - static const IconData solidCloudSun = const IconDataSolid(0xf6c4); - - /// Light Cloud with Sun icon - /// - /// https://fontawesome.com/icons/light_cloud-sun?style=light - /// clear, day, daytime, fall, outdoors, overcast, partly cloudy - static const IconData lightCloudSun = const IconDataLight(0xf6c4); - - /// Duotone Cloud with Sun icon - /// - /// https://fontawesome.com/icons/duotone_cloud-sun?style=duotone - /// clear, day, daytime, fall, outdoors, overcast, partly cloudy - static const IconDataDuotone duotoneCloudSun = const IconDataDuotone( - 0xf6c4, - secondary: const IconDataDuotone(0x10f6c4), - ); - - /// Regular Cloud with Sun and Rain icon - /// - /// https://fontawesome.com/icons/cloud-sun-rain?style=regular - /// day, overcast, precipitation, storm, summer, sunshower - static const IconData cloudSunRain = const IconDataRegular(0xf743); - - /// Solid Cloud with Sun and Rain icon - /// - /// https://fontawesome.com/icons/cloud-sun-rain?style=solid - /// day, overcast, precipitation, storm, summer, sunshower - static const IconData solidCloudSunRain = const IconDataSolid(0xf743); - - /// Light Cloud with Sun and Rain icon - /// - /// https://fontawesome.com/icons/light_cloud-sun-rain?style=light - /// day, overcast, precipitation, storm, summer, sunshower - static const IconData lightCloudSunRain = const IconDataLight(0xf743); - - /// Duotone Cloud with Sun and Rain icon - /// - /// https://fontawesome.com/icons/duotone_cloud-sun-rain?style=duotone - /// day, overcast, precipitation, storm, summer, sunshower - static const IconDataDuotone duotoneCloudSunRain = const IconDataDuotone( - 0xf743, - secondary: const IconDataDuotone(0x10f743), - ); - - /// Regular Cloud Upload icon - /// - /// https://fontawesome.com/icons/cloud-upload?style=regular - /// import, save, upload - static const IconData cloudUpload = const IconDataRegular(0xf0ee); - - /// Solid Cloud Upload icon - /// - /// https://fontawesome.com/icons/cloud-upload?style=solid - /// import, save, upload - static const IconData solidCloudUpload = const IconDataSolid(0xf0ee); - - /// Light Cloud Upload icon - /// - /// https://fontawesome.com/icons/light_cloud-upload?style=light - /// import, save, upload - static const IconData lightCloudUpload = const IconDataLight(0xf0ee); - - /// Duotone Cloud Upload icon - /// - /// https://fontawesome.com/icons/duotone_cloud-upload?style=duotone - /// import, save, upload - static const IconDataDuotone duotoneCloudUpload = const IconDataDuotone( - 0xf0ee, - secondary: const IconDataDuotone(0x10f0ee), - ); - - /// Regular Alternate Cloud Upload icon - /// - /// https://fontawesome.com/icons/cloud-upload-alt?style=regular - /// cloud-upload, import, save, upload - static const IconData cloudUploadAlt = const IconDataRegular(0xf382); - - /// Solid Alternate Cloud Upload icon - /// - /// https://fontawesome.com/icons/cloud-upload-alt?style=solid - /// cloud-upload, import, save, upload - static const IconData solidCloudUploadAlt = const IconDataSolid(0xf382); - - /// Light Alternate Cloud Upload icon - /// - /// https://fontawesome.com/icons/light_cloud-upload-alt?style=light - /// cloud-upload, import, save, upload - static const IconData lightCloudUploadAlt = const IconDataLight(0xf382); - - /// Duotone Alternate Cloud Upload icon - /// - /// https://fontawesome.com/icons/duotone_cloud-upload-alt?style=duotone - /// cloud-upload, import, save, upload - static const IconDataDuotone duotoneCloudUploadAlt = const IconDataDuotone( - 0xf382, - secondary: const IconDataDuotone(0x10f382), - ); - - /// Brands Cloudflare icon - /// - /// https://fontawesome.com/icons/cloudflare?style=brands - static const IconData cloudflare = const IconDataBrands(0xe07d); - - /// Regular Clouds icon - /// - /// https://fontawesome.com/icons/clouds?style=regular - /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData clouds = const IconDataRegular(0xf744); - - /// Solid Clouds icon - /// - /// https://fontawesome.com/icons/clouds?style=solid - /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData solidClouds = const IconDataSolid(0xf744); - - /// Light Clouds icon - /// - /// https://fontawesome.com/icons/light_clouds?style=light - /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconData lightClouds = const IconDataLight(0xf744); - - /// Duotone Clouds icon - /// - /// https://fontawesome.com/icons/duotone_clouds?style=duotone - /// cloudy, fog, haze, overcast, smoke, storm, weather - static const IconDataDuotone duotoneClouds = const IconDataDuotone( - 0xf744, - secondary: const IconDataDuotone(0x10f744), - ); - - /// Regular Clouds with Moon icon - /// - /// https://fontawesome.com/icons/clouds-moon?style=regular - /// cloudy, moonlight, night, overcast, sky - static const IconData cloudsMoon = const IconDataRegular(0xf745); - - /// Solid Clouds with Moon icon - /// - /// https://fontawesome.com/icons/clouds-moon?style=solid - /// cloudy, moonlight, night, overcast, sky - static const IconData solidCloudsMoon = const IconDataSolid(0xf745); - - /// Light Clouds with Moon icon - /// - /// https://fontawesome.com/icons/light_clouds-moon?style=light - /// cloudy, moonlight, night, overcast, sky - static const IconData lightCloudsMoon = const IconDataLight(0xf745); - - /// Duotone Clouds with Moon icon - /// - /// https://fontawesome.com/icons/duotone_clouds-moon?style=duotone - /// cloudy, moonlight, night, overcast, sky - static const IconDataDuotone duotoneCloudsMoon = const IconDataDuotone( - 0xf745, - secondary: const IconDataDuotone(0x10f745), - ); - - /// Regular Clouds with Sun icon - /// - /// https://fontawesome.com/icons/clouds-sun?style=regular - /// cloudy, day, moonlight, overcast, sky, summer - static const IconData cloudsSun = const IconDataRegular(0xf746); - - /// Solid Clouds with Sun icon - /// - /// https://fontawesome.com/icons/clouds-sun?style=solid - /// cloudy, day, moonlight, overcast, sky, summer - static const IconData solidCloudsSun = const IconDataSolid(0xf746); - - /// Light Clouds with Sun icon - /// - /// https://fontawesome.com/icons/light_clouds-sun?style=light - /// cloudy, day, moonlight, overcast, sky, summer - static const IconData lightCloudsSun = const IconDataLight(0xf746); - - /// Duotone Clouds with Sun icon - /// - /// https://fontawesome.com/icons/duotone_clouds-sun?style=duotone - /// cloudy, day, moonlight, overcast, sky, summer - static const IconDataDuotone duotoneCloudsSun = const IconDataDuotone( - 0xf746, - secondary: const IconDataDuotone(0x10f746), - ); - - /// Brands cloudscale.ch icon - /// - /// https://fontawesome.com/icons/cloudscale?style=brands - static const IconData cloudscale = const IconDataBrands(0xf383); - - /// Brands Cloudsmith icon - /// - /// https://fontawesome.com/icons/cloudsmith?style=brands - static const IconData cloudsmith = const IconDataBrands(0xf384); - - /// Brands cloudversify icon - /// - /// https://fontawesome.com/icons/cloudversify?style=brands - static const IconData cloudversify = const IconDataBrands(0xf385); - - /// Regular Club icon - /// - /// https://fontawesome.com/icons/club?style=regular - /// card, game, poker, suit - static const IconData club = const IconDataRegular(0xf327); - - /// Solid Club icon - /// - /// https://fontawesome.com/icons/club?style=solid - /// card, game, poker, suit - static const IconData solidClub = const IconDataSolid(0xf327); - - /// Light Club icon - /// - /// https://fontawesome.com/icons/light_club?style=light - /// card, game, poker, suit - static const IconData lightClub = const IconDataLight(0xf327); - - /// Duotone Club icon - /// - /// https://fontawesome.com/icons/duotone_club?style=duotone - /// card, game, poker, suit - static const IconDataDuotone duotoneClub = const IconDataDuotone( - 0xf327, - secondary: const IconDataDuotone(0x10f327), - ); - - /// Regular Cocktail icon - /// - /// https://fontawesome.com/icons/cocktail?style=regular - /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData cocktail = const IconDataRegular(0xf561); - - /// Solid Cocktail icon - /// - /// https://fontawesome.com/icons/cocktail?style=solid - /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData solidCocktail = const IconDataSolid(0xf561); - - /// Light Cocktail icon - /// - /// https://fontawesome.com/icons/light_cocktail?style=light - /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconData lightCocktail = const IconDataLight(0xf561); - - /// Duotone Cocktail icon - /// - /// https://fontawesome.com/icons/duotone_cocktail?style=duotone - /// alcohol, beverage, drink, gin, glass, margarita, martini, vodka - static const IconDataDuotone duotoneCocktail = const IconDataDuotone( - 0xf561, - secondary: const IconDataDuotone(0x10f561), - ); - - /// Regular Code icon - /// - /// https://fontawesome.com/icons/code?style=regular - /// brackets, code, development, html - static const IconData code = const IconDataRegular(0xf121); - - /// Solid Code icon - /// - /// https://fontawesome.com/icons/code?style=solid - /// brackets, code, development, html - static const IconData solidCode = const IconDataSolid(0xf121); - - /// Light Code icon - /// - /// https://fontawesome.com/icons/light_code?style=light - /// brackets, code, development, html - static const IconData lightCode = const IconDataLight(0xf121); - - /// Duotone Code icon - /// - /// https://fontawesome.com/icons/duotone_code?style=duotone - /// brackets, code, development, html - static const IconDataDuotone duotoneCode = const IconDataDuotone( - 0xf121, - secondary: const IconDataDuotone(0x10f121), - ); - - /// Regular Code Branch icon - /// - /// https://fontawesome.com/icons/code-branch?style=regular - /// branch, code-fork, fork, git, github, rebase, svn, vcs, version - static const IconData codeBranch = const IconDataRegular(0xf126); - - /// Solid Code Branch icon - /// - /// https://fontawesome.com/icons/code-branch?style=solid - /// branch, code-fork, fork, git, github, rebase, svn, vcs, version - static const IconData solidCodeBranch = const IconDataSolid(0xf126); - - /// Light Code Branch icon - /// - /// https://fontawesome.com/icons/light_code-branch?style=light - /// branch, code-fork, fork, git, github, rebase, svn, vcs, version - static const IconData lightCodeBranch = const IconDataLight(0xf126); - - /// Duotone Code Branch icon - /// - /// https://fontawesome.com/icons/duotone_code-branch?style=duotone - /// branch, code-fork, fork, git, github, rebase, svn, vcs, version - static const IconDataDuotone duotoneCodeBranch = const IconDataDuotone( - 0xf126, - secondary: const IconDataDuotone(0x10f126), - ); - - /// Regular Code Commit icon - /// - /// https://fontawesome.com/icons/code-commit?style=regular - /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData codeCommit = const IconDataRegular(0xf386); - - /// Solid Code Commit icon - /// - /// https://fontawesome.com/icons/code-commit?style=solid - /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData solidCodeCommit = const IconDataSolid(0xf386); - - /// Light Code Commit icon - /// - /// https://fontawesome.com/icons/light_code-commit?style=light - /// commit, git, github, hash, rebase, svn, vcs, version - static const IconData lightCodeCommit = const IconDataLight(0xf386); - - /// Duotone Code Commit icon - /// - /// https://fontawesome.com/icons/duotone_code-commit?style=duotone - /// commit, git, github, hash, rebase, svn, vcs, version - static const IconDataDuotone duotoneCodeCommit = const IconDataDuotone( - 0xf386, - secondary: const IconDataDuotone(0x10f386), - ); - - /// Regular Code Merge icon - /// - /// https://fontawesome.com/icons/code-merge?style=regular - /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData codeMerge = const IconDataRegular(0xf387); - - /// Solid Code Merge icon - /// - /// https://fontawesome.com/icons/code-merge?style=solid - /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData solidCodeMerge = const IconDataSolid(0xf387); - - /// Light Code Merge icon - /// - /// https://fontawesome.com/icons/light_code-merge?style=light - /// git, github, merge, pr, rebase, svn, vcs, version - static const IconData lightCodeMerge = const IconDataLight(0xf387); - - /// Duotone Code Merge icon - /// - /// https://fontawesome.com/icons/duotone_code-merge?style=duotone - /// git, github, merge, pr, rebase, svn, vcs, version - static const IconDataDuotone duotoneCodeMerge = const IconDataDuotone( - 0xf387, - secondary: const IconDataDuotone(0x10f387), - ); - - /// Brands Codepen icon - /// - /// https://fontawesome.com/icons/codepen?style=brands - static const IconData codepen = const IconDataBrands(0xf1cb); - - /// Brands Codie Pie icon - /// - /// https://fontawesome.com/icons/codiepie?style=brands - static const IconData codiepie = const IconDataBrands(0xf284); - - /// Regular Coffee icon - /// - /// https://fontawesome.com/icons/coffee?style=regular - /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData coffee = const IconDataRegular(0xf0f4); - - /// Solid Coffee icon - /// - /// https://fontawesome.com/icons/coffee?style=solid - /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData solidCoffee = const IconDataSolid(0xf0f4); - - /// Light Coffee icon - /// - /// https://fontawesome.com/icons/light_coffee?style=light - /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconData lightCoffee = const IconDataLight(0xf0f4); - - /// Duotone Coffee icon - /// - /// https://fontawesome.com/icons/duotone_coffee?style=duotone - /// beverage, breakfast, cafe, drink, fall, morning, mug, seasonal, tea - static const IconDataDuotone duotoneCoffee = const IconDataDuotone( - 0xf0f4, - secondary: const IconDataDuotone(0x10f0f4), - ); - - /// Regular Coffee Pot icon - /// - /// https://fontawesome.com/icons/coffee-pot?style=regular - /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData coffeePot = const IconDataRegular(0xe002); - - /// Solid Coffee Pot icon - /// - /// https://fontawesome.com/icons/coffee-pot?style=solid - /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData solidCoffeePot = const IconDataSolid(0xe002); - - /// Light Coffee Pot icon - /// - /// https://fontawesome.com/icons/light_coffee-pot?style=light - /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconData lightCoffeePot = const IconDataLight(0xe002); - - /// Duotone Coffee Pot icon - /// - /// https://fontawesome.com/icons/duotone_coffee-pot?style=duotone - /// beverage, breakfast, brew, cafe, carafe, drink, morning - static const IconDataDuotone duotoneCoffeePot = const IconDataDuotone( - 0xe002, - secondary: const IconDataDuotone(0x10e002), - ); - - /// Regular To-Go Coffee icon - /// - /// https://fontawesome.com/icons/coffee-togo?style=regular - /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData coffeeTogo = const IconDataRegular(0xf6c5); - - /// Solid To-Go Coffee icon - /// - /// https://fontawesome.com/icons/coffee-togo?style=solid - /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData solidCoffeeTogo = const IconDataSolid(0xf6c5); - - /// Light To-Go Coffee icon - /// - /// https://fontawesome.com/icons/light_coffee-togo?style=light - /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconData lightCoffeeTogo = const IconDataLight(0xf6c5); - - /// Duotone To-Go Coffee icon - /// - /// https://fontawesome.com/icons/duotone_coffee-togo?style=duotone - /// beverage, breakfast, cafe, drink, latte, morning, mug, starbucks, takeout, tea, travel - static const IconDataDuotone duotoneCoffeeTogo = const IconDataDuotone( - 0xf6c5, - secondary: const IconDataDuotone(0x10f6c5), - ); - - /// Regular Coffin icon - /// - /// https://fontawesome.com/icons/coffin?style=regular - /// box, burial, casket, cemetery, death, eulogy, funeral, halloween, vampire - static const IconData coffin = const IconDataRegular(0xf6c6); - - /// Solid Coffin icon - /// - /// https://fontawesome.com/icons/coffin?style=solid - /// box, burial, casket, cemetery, death, eulogy, funeral, halloween, vampire - static const IconData solidCoffin = const IconDataSolid(0xf6c6); - - /// Light Coffin icon - /// - /// https://fontawesome.com/icons/light_coffin?style=light - /// box, burial, casket, cemetery, death, eulogy, funeral, halloween, vampire - static const IconData lightCoffin = const IconDataLight(0xf6c6); - - /// Duotone Coffin icon - /// - /// https://fontawesome.com/icons/duotone_coffin?style=duotone - /// box, burial, casket, cemetery, death, eulogy, funeral, halloween, vampire - static const IconDataDuotone duotoneCoffin = const IconDataDuotone( - 0xf6c6, - secondary: const IconDataDuotone(0x10f6c6), - ); - - /// Regular Coffin with 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 = const IconDataRegular(0xe051); - - /// Solid Coffin with 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 = const IconDataSolid(0xe051); - - /// Light Coffin with Cross icon - /// - /// https://fontawesome.com/icons/light_coffin-cross?style=light - /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconData lightCoffinCross = const IconDataLight(0xe051); - - /// Duotone Coffin with Cross icon - /// - /// https://fontawesome.com/icons/duotone_coffin-cross?style=duotone - /// box, burial, casket, catholicism, cemetery, christianity, death, eulogy, funeral, halloween, vampire - static const IconDataDuotone duotoneCoffinCross = const IconDataDuotone( - 0xe051, - secondary: const IconDataDuotone(0x10e051), - ); - - /// Regular cog icon - /// - /// https://fontawesome.com/icons/cog?style=regular - /// gear, mechanical, settings, sprocket, wheel - static const IconData cog = const IconDataRegular(0xf013); - - /// Solid cog icon - /// - /// https://fontawesome.com/icons/cog?style=solid - /// gear, mechanical, settings, sprocket, wheel - static const IconData solidCog = const IconDataSolid(0xf013); - - /// Light cog icon - /// - /// https://fontawesome.com/icons/light_cog?style=light - /// gear, mechanical, settings, sprocket, wheel - static const IconData lightCog = const IconDataLight(0xf013); - - /// Duotone cog icon - /// - /// https://fontawesome.com/icons/duotone_cog?style=duotone - /// gear, mechanical, settings, sprocket, wheel - static const IconDataDuotone duotoneCog = const IconDataDuotone( - 0xf013, - secondary: const IconDataDuotone(0x10f013), - ); - - /// Regular cogs icon - /// - /// https://fontawesome.com/icons/cogs?style=regular - /// gears, mechanical, settings, sprocket, wheel - static const IconData cogs = const IconDataRegular(0xf085); - - /// Solid cogs icon - /// - /// https://fontawesome.com/icons/cogs?style=solid - /// gears, mechanical, settings, sprocket, wheel - static const IconData solidCogs = const IconDataSolid(0xf085); - - /// Light cogs icon - /// - /// https://fontawesome.com/icons/light_cogs?style=light - /// gears, mechanical, settings, sprocket, wheel - static const IconData lightCogs = const IconDataLight(0xf085); - - /// Duotone cogs icon - /// - /// https://fontawesome.com/icons/duotone_cogs?style=duotone - /// gears, mechanical, settings, sprocket, wheel - static const IconDataDuotone duotoneCogs = const IconDataDuotone( - 0xf085, - secondary: const IconDataDuotone(0x10f085), - ); - - /// Regular Coin icon - /// - /// https://fontawesome.com/icons/coin?style=regular - /// dime, money, nickel, penny, quarter - static const IconData coin = const IconDataRegular(0xf85c); - - /// Solid Coin icon - /// - /// https://fontawesome.com/icons/coin?style=solid - /// dime, money, nickel, penny, quarter - static const IconData solidCoin = const IconDataSolid(0xf85c); - - /// Light Coin icon - /// - /// https://fontawesome.com/icons/light_coin?style=light - /// dime, money, nickel, penny, quarter - static const IconData lightCoin = const IconDataLight(0xf85c); - - /// Duotone Coin icon - /// - /// https://fontawesome.com/icons/duotone_coin?style=duotone - /// dime, money, nickel, penny, quarter - static const IconDataDuotone duotoneCoin = const IconDataDuotone( - 0xf85c, - secondary: const IconDataDuotone(0x10f85c), - ); - - /// Regular Coins icon - /// - /// https://fontawesome.com/icons/coins?style=regular - /// currency, dime, financial, gold, money, penny - static const IconData coins = const IconDataRegular(0xf51e); - - /// Solid Coins icon - /// - /// https://fontawesome.com/icons/coins?style=solid - /// currency, dime, financial, gold, money, penny - static const IconData solidCoins = const IconDataSolid(0xf51e); - - /// Light Coins icon - /// - /// https://fontawesome.com/icons/light_coins?style=light - /// currency, dime, financial, gold, money, penny - static const IconData lightCoins = const IconDataLight(0xf51e); - - /// Duotone Coins icon - /// - /// https://fontawesome.com/icons/duotone_coins?style=duotone - /// currency, dime, financial, gold, money, penny - static const IconDataDuotone duotoneCoins = const IconDataDuotone( - 0xf51e, - secondary: const IconDataDuotone(0x10f51e), - ); - - /// Regular Columns icon - /// - /// https://fontawesome.com/icons/columns?style=regular - /// browser, dashboard, organize, panes, split - static const IconData columns = const IconDataRegular(0xf0db); - - /// Solid Columns icon - /// - /// https://fontawesome.com/icons/columns?style=solid - /// browser, dashboard, organize, panes, split - static const IconData solidColumns = const IconDataSolid(0xf0db); - - /// Light Columns icon - /// - /// https://fontawesome.com/icons/light_columns?style=light - /// browser, dashboard, organize, panes, split - static const IconData lightColumns = const IconDataLight(0xf0db); - - /// Duotone Columns icon - /// - /// https://fontawesome.com/icons/duotone_columns?style=duotone - /// browser, dashboard, organize, panes, split - static const IconDataDuotone duotoneColumns = const IconDataDuotone( - 0xf0db, - secondary: const IconDataDuotone(0x10f0db), - ); - - /// 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 = const IconDataRegular(0xe003); - - /// 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 = const IconDataSolid(0xe003); - - /// Light Comet icon - /// - /// https://fontawesome.com/icons/light_comet?style=light - /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconData lightComet = const IconDataLight(0xe003); - - /// Duotone Comet icon - /// - /// https://fontawesome.com/icons/duotone_comet?style=duotone - /// asteroid, dust, ice, meteor, orbit, rock, shooting star, solar system, space - static const IconDataDuotone duotoneComet = const IconDataDuotone( - 0xe003, - secondary: const IconDataDuotone(0x10e003), - ); - - /// Regular comment icon - /// - /// https://fontawesome.com/icons/comment?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData comment = const IconDataRegular(0xf075); - - /// Solid comment icon - /// - /// https://fontawesome.com/icons/comment?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidComment = const IconDataSolid(0xf075); - - /// Light comment icon - /// - /// https://fontawesome.com/icons/light_comment?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightComment = const IconDataLight(0xf075); - - /// Duotone comment icon - /// - /// https://fontawesome.com/icons/duotone_comment?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneComment = const IconDataDuotone( - 0xf075, - secondary: const IconDataDuotone(0x10f075), - ); - - /// Regular Alternate Comment icon - /// - /// https://fontawesome.com/icons/comment-alt?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData commentAlt = const IconDataRegular(0xf27a); - - /// Solid Alternate Comment icon - /// - /// https://fontawesome.com/icons/comment-alt?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidCommentAlt = const IconDataSolid(0xf27a); - - /// Light Alternate Comment icon - /// - /// https://fontawesome.com/icons/light_comment-alt?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightCommentAlt = const IconDataLight(0xf27a); - - /// Duotone Alternate Comment icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentAlt = const IconDataDuotone( - 0xf27a, - secondary: const IconDataDuotone(0x10f27a), - ); - - /// Regular Alternate Comment Check icon - /// - /// https://fontawesome.com/icons/comment-alt-check?style=regular - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData commentAltCheck = const IconDataRegular(0xf4a2); - - /// Solid Alternate Comment Check icon - /// - /// https://fontawesome.com/icons/comment-alt-check?style=solid - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData solidCommentAltCheck = const IconDataSolid(0xf4a2); - - /// Light Alternate Comment Check icon - /// - /// https://fontawesome.com/icons/light_comment-alt-check?style=light - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData lightCommentAltCheck = const IconDataLight(0xf4a2); - - /// Duotone Alternate Comment Check icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-check?style=duotone - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconDataDuotone duotoneCommentAltCheck = const IconDataDuotone( - 0xf4a2, - secondary: const IconDataDuotone(0x10f4a2), - ); - - /// Regular Comment Alt-dollar icon - /// - /// https://fontawesome.com/icons/comment-alt-dollar?style=regular - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData commentAltDollar = const IconDataRegular(0xf650); - - /// Solid Comment Alt-dollar icon - /// - /// https://fontawesome.com/icons/comment-alt-dollar?style=solid - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData solidCommentAltDollar = const IconDataSolid(0xf650); - - /// Light Comment Alt-dollar icon - /// - /// https://fontawesome.com/icons/light_comment-alt-dollar?style=light - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData lightCommentAltDollar = const IconDataLight(0xf650); - - /// Duotone Comment Alt-dollar icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-dollar?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconDataDuotone duotoneCommentAltDollar = const IconDataDuotone( - 0xf650, - secondary: const IconDataDuotone(0x10f650), - ); - - /// Regular Alternate Comment Dots icon - /// - /// https://fontawesome.com/icons/comment-alt-dots?style=regular - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData commentAltDots = const IconDataRegular(0xf4a3); - - /// Solid Alternate Comment Dots icon - /// - /// https://fontawesome.com/icons/comment-alt-dots?style=solid - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData solidCommentAltDots = const IconDataSolid(0xf4a3); - - /// Light Alternate Comment Dots icon - /// - /// https://fontawesome.com/icons/light_comment-alt-dots?style=light - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData lightCommentAltDots = const IconDataLight(0xf4a3); - - /// Duotone Alternate Comment Dots icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-dots?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconDataDuotone duotoneCommentAltDots = const IconDataDuotone( - 0xf4a3, - secondary: const IconDataDuotone(0x10f4a3), - ); - - /// Regular Alternate Comment Edit icon - /// - /// https://fontawesome.com/icons/comment-alt-edit?style=regular - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData commentAltEdit = const IconDataRegular(0xf4a4); - - /// Solid Alternate Comment Edit icon - /// - /// https://fontawesome.com/icons/comment-alt-edit?style=solid - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData solidCommentAltEdit = const IconDataSolid(0xf4a4); - - /// Light Alternate Comment Edit icon - /// - /// https://fontawesome.com/icons/light_comment-alt-edit?style=light - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData lightCommentAltEdit = const IconDataLight(0xf4a4); - - /// Duotone Alternate Comment Edit icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-edit?style=duotone - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconDataDuotone duotoneCommentAltEdit = const IconDataDuotone( - 0xf4a4, - secondary: const IconDataDuotone(0x10f4a4), - ); - - /// Regular Alternate Comment Exclamation icon - /// - /// https://fontawesome.com/icons/comment-alt-exclamation?style=regular - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData commentAltExclamation = const IconDataRegular(0xf4a5); - - /// Solid Alternate Comment Exclamation icon - /// - /// https://fontawesome.com/icons/comment-alt-exclamation?style=solid - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData solidCommentAltExclamation = - const IconDataSolid(0xf4a5); - - /// Light Alternate Comment Exclamation icon - /// - /// https://fontawesome.com/icons/light_comment-alt-exclamation?style=light - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData lightCommentAltExclamation = - const IconDataLight(0xf4a5); - - /// Duotone Alternate Comment Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-exclamation?style=duotone - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconDataDuotone duotoneCommentAltExclamation = - const IconDataDuotone( - 0xf4a5, - secondary: const IconDataDuotone(0x10f4a5), - ); - - /// Regular Alternate Comment Lines icon - /// - /// https://fontawesome.com/icons/comment-alt-lines?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData commentAltLines = const IconDataRegular(0xf4a6); - - /// Solid Alternate Comment Lines icon - /// - /// https://fontawesome.com/icons/comment-alt-lines?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidCommentAltLines = const IconDataSolid(0xf4a6); - - /// Light Alternate Comment Lines icon - /// - /// https://fontawesome.com/icons/light_comment-alt-lines?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightCommentAltLines = const IconDataLight(0xf4a6); - - /// Duotone Alternate Comment Lines icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-lines?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentAltLines = const IconDataDuotone( - 0xf4a6, - secondary: const IconDataDuotone(0x10f4a6), - ); - - /// Regular Medical Chat icon - /// - /// https://fontawesome.com/icons/comment-alt-medical?style=regular - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData commentAltMedical = const IconDataRegular(0xf7f4); - - /// Solid Medical Chat icon - /// - /// https://fontawesome.com/icons/comment-alt-medical?style=solid - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData solidCommentAltMedical = const IconDataSolid(0xf7f4); - - /// Light Medical Chat icon - /// - /// https://fontawesome.com/icons/light_comment-alt-medical?style=light - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData lightCommentAltMedical = const IconDataLight(0xf7f4); - - /// Duotone Medical Chat icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-medical?style=duotone - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconDataDuotone duotoneCommentAltMedical = const IconDataDuotone( - 0xf7f4, - secondary: const IconDataDuotone(0x10f7f4), - ); - - /// Regular Alternate Comment Minus icon - /// - /// https://fontawesome.com/icons/comment-alt-minus?style=regular - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData commentAltMinus = const IconDataRegular(0xf4a7); - - /// Solid Alternate Comment Minus icon - /// - /// https://fontawesome.com/icons/comment-alt-minus?style=solid - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData solidCommentAltMinus = const IconDataSolid(0xf4a7); - - /// Light Alternate Comment Minus icon - /// - /// https://fontawesome.com/icons/light_comment-alt-minus?style=light - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData lightCommentAltMinus = const IconDataLight(0xf4a7); - - /// Duotone Alternate Comment Minus icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-minus?style=duotone - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconDataDuotone duotoneCommentAltMinus = const IconDataDuotone( - 0xf4a7, - secondary: const IconDataDuotone(0x10f4a7), - ); - - /// Regular Alternate Comment Music icon - /// - /// https://fontawesome.com/icons/comment-alt-music?style=regular - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData commentAltMusic = const IconDataRegular(0xf8af); - - /// Solid Alternate Comment Music icon - /// - /// https://fontawesome.com/icons/comment-alt-music?style=solid - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData solidCommentAltMusic = const IconDataSolid(0xf8af); - - /// Light Alternate Comment Music icon - /// - /// https://fontawesome.com/icons/light_comment-alt-music?style=light - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData lightCommentAltMusic = const IconDataLight(0xf8af); - - /// Duotone Alternate Comment Music icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-music?style=duotone - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconDataDuotone duotoneCommentAltMusic = const IconDataDuotone( - 0xf8af, - secondary: const IconDataDuotone(0x10f8af), - ); - - /// Regular Alternate Comment Plus icon - /// - /// https://fontawesome.com/icons/comment-alt-plus?style=regular - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData commentAltPlus = const IconDataRegular(0xf4a8); - - /// Solid Alternate Comment Plus icon - /// - /// https://fontawesome.com/icons/comment-alt-plus?style=solid - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData solidCommentAltPlus = const IconDataSolid(0xf4a8); - - /// Light Alternate Comment Plus icon - /// - /// https://fontawesome.com/icons/light_comment-alt-plus?style=light - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData lightCommentAltPlus = const IconDataLight(0xf4a8); - - /// Duotone Alternate Comment Plus icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-plus?style=duotone - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconDataDuotone duotoneCommentAltPlus = const IconDataDuotone( - 0xf4a8, - secondary: const IconDataDuotone(0x10f4a8), - ); - - /// Regular Alternate Comment Slash icon - /// - /// https://fontawesome.com/icons/comment-alt-slash?style=regular - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData commentAltSlash = const IconDataRegular(0xf4a9); - - /// Solid Alternate Comment Slash icon - /// - /// https://fontawesome.com/icons/comment-alt-slash?style=solid - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData solidCommentAltSlash = const IconDataSolid(0xf4a9); - - /// Light Alternate Comment Slash icon - /// - /// https://fontawesome.com/icons/light_comment-alt-slash?style=light - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData lightCommentAltSlash = const IconDataLight(0xf4a9); - - /// Duotone Alternate Comment Slash icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-slash?style=duotone - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconDataDuotone duotoneCommentAltSlash = const IconDataDuotone( - 0xf4a9, - secondary: const IconDataDuotone(0x10f4a9), - ); - - /// Regular Alternate Comment Smile icon - /// - /// https://fontawesome.com/icons/comment-alt-smile?style=regular - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData commentAltSmile = const IconDataRegular(0xf4aa); - - /// Solid Alternate Comment Smile icon - /// - /// https://fontawesome.com/icons/comment-alt-smile?style=solid - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData solidCommentAltSmile = const IconDataSolid(0xf4aa); - - /// Light Alternate Comment Smile icon - /// - /// https://fontawesome.com/icons/light_comment-alt-smile?style=light - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData lightCommentAltSmile = const IconDataLight(0xf4aa); - - /// Duotone Alternate Comment Smile icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-smile?style=duotone - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentAltSmile = const IconDataDuotone( - 0xf4aa, - secondary: const IconDataDuotone(0x10f4aa), - ); - - /// Regular Alternate Comment Times icon - /// - /// https://fontawesome.com/icons/comment-alt-times?style=regular - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData commentAltTimes = const IconDataRegular(0xf4ab); - - /// Solid Alternate Comment Times icon - /// - /// https://fontawesome.com/icons/comment-alt-times?style=solid - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData solidCommentAltTimes = const IconDataSolid(0xf4ab); - - /// Light Alternate Comment Times icon - /// - /// https://fontawesome.com/icons/light_comment-alt-times?style=light - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData lightCommentAltTimes = const IconDataLight(0xf4ab); - - /// Duotone Alternate Comment Times icon - /// - /// https://fontawesome.com/icons/duotone_comment-alt-times?style=duotone - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconDataDuotone duotoneCommentAltTimes = const IconDataDuotone( - 0xf4ab, - secondary: const IconDataDuotone(0x10f4ab), - ); - - /// Regular Comment Check icon - /// - /// https://fontawesome.com/icons/comment-check?style=regular - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData commentCheck = const IconDataRegular(0xf4ac); - - /// Solid Comment Check icon - /// - /// https://fontawesome.com/icons/comment-check?style=solid - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData solidCommentCheck = const IconDataSolid(0xf4ac); - - /// Light Comment Check icon - /// - /// https://fontawesome.com/icons/light_comment-check?style=light - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconData lightCommentCheck = const IconDataLight(0xf4ac); - - /// Duotone Comment Check icon - /// - /// https://fontawesome.com/icons/duotone_comment-check?style=duotone - /// accept, agree, bubble, chat, commenting, conversation, feedback, message, note, notification, select, sms, speech, success, synced, texting, tick, todo - static const IconDataDuotone duotoneCommentCheck = const IconDataDuotone( - 0xf4ac, - secondary: const IconDataDuotone(0x10f4ac), - ); - - /// Regular Comment Dollar icon - /// - /// https://fontawesome.com/icons/comment-dollar?style=regular - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData commentDollar = const IconDataRegular(0xf651); - - /// Solid Comment Dollar icon - /// - /// https://fontawesome.com/icons/comment-dollar?style=solid - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData solidCommentDollar = const IconDataSolid(0xf651); - - /// Light Comment Dollar icon - /// - /// https://fontawesome.com/icons/light_comment-dollar?style=light - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData lightCommentDollar = const IconDataLight(0xf651); - - /// Duotone Comment Dollar icon - /// - /// https://fontawesome.com/icons/duotone_comment-dollar?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconDataDuotone duotoneCommentDollar = const IconDataDuotone( - 0xf651, - secondary: const IconDataDuotone(0x10f651), - ); - - /// Regular Comment Dots icon - /// - /// https://fontawesome.com/icons/comment-dots?style=regular - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData commentDots = const IconDataRegular(0xf4ad); - - /// Solid Comment Dots icon - /// - /// https://fontawesome.com/icons/comment-dots?style=solid - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData solidCommentDots = const IconDataSolid(0xf4ad); - - /// Light Comment Dots icon - /// - /// https://fontawesome.com/icons/light_comment-dots?style=light - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconData lightCommentDots = const IconDataLight(0xf4ad); - - /// Duotone Comment Dots icon - /// - /// https://fontawesome.com/icons/duotone_comment-dots?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, more, note, notification, reply, sms, speech, texting - static const IconDataDuotone duotoneCommentDots = const IconDataDuotone( - 0xf4ad, - secondary: const IconDataDuotone(0x10f4ad), - ); - - /// Regular Comment Edit icon - /// - /// https://fontawesome.com/icons/comment-edit?style=regular - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData commentEdit = const IconDataRegular(0xf4ae); - - /// Solid Comment Edit icon - /// - /// https://fontawesome.com/icons/comment-edit?style=solid - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData solidCommentEdit = const IconDataSolid(0xf4ae); - - /// Light Comment Edit icon - /// - /// https://fontawesome.com/icons/light_comment-edit?style=light - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconData lightCommentEdit = const IconDataLight(0xf4ae); - - /// Duotone Comment Edit icon - /// - /// https://fontawesome.com/icons/duotone_comment-edit?style=duotone - /// bubble, chat, commenting, conversation, edit, feedback, message, note, notification, pen, pencil, sms, speech, texting, update, write - static const IconDataDuotone duotoneCommentEdit = const IconDataDuotone( - 0xf4ae, - secondary: const IconDataDuotone(0x10f4ae), - ); - - /// Regular Comment Exclamation icon - /// - /// https://fontawesome.com/icons/comment-exclamation?style=regular - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData commentExclamation = const IconDataRegular(0xf4af); - - /// Solid Comment Exclamation icon - /// - /// https://fontawesome.com/icons/comment-exclamation?style=solid - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData solidCommentExclamation = const IconDataSolid(0xf4af); - - /// Light Comment Exclamation icon - /// - /// https://fontawesome.com/icons/light_comment-exclamation?style=light - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconData lightCommentExclamation = const IconDataLight(0xf4af); - - /// Duotone Comment Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_comment-exclamation?style=duotone - /// alert, bubble, chat, commenting, conversation, exclaim, feedback, important, message, note, notification, sms, speech, surprise, texting - static const IconDataDuotone duotoneCommentExclamation = - const IconDataDuotone( - 0xf4af, - secondary: const IconDataDuotone(0x10f4af), - ); - - /// Regular Comment Lines icon - /// - /// https://fontawesome.com/icons/comment-lines?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData commentLines = const IconDataRegular(0xf4b0); - - /// Solid Comment Lines icon - /// - /// https://fontawesome.com/icons/comment-lines?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidCommentLines = const IconDataSolid(0xf4b0); - - /// Light Comment Lines icon - /// - /// https://fontawesome.com/icons/light_comment-lines?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightCommentLines = const IconDataLight(0xf4b0); - - /// Duotone Comment Lines icon - /// - /// https://fontawesome.com/icons/duotone_comment-lines?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentLines = const IconDataDuotone( - 0xf4b0, - secondary: const IconDataDuotone(0x10f4b0), - ); - - /// Regular Alternate Medical Chat icon - /// - /// https://fontawesome.com/icons/comment-medical?style=regular - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData commentMedical = const IconDataRegular(0xf7f5); - - /// Solid Alternate Medical Chat icon - /// - /// https://fontawesome.com/icons/comment-medical?style=solid - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData solidCommentMedical = const IconDataSolid(0xf7f5); - - /// Light Alternate Medical Chat icon - /// - /// https://fontawesome.com/icons/light_comment-medical?style=light - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconData lightCommentMedical = const IconDataLight(0xf7f5); - - /// Duotone Alternate Medical Chat icon - /// - /// https://fontawesome.com/icons/duotone_comment-medical?style=duotone - /// advice, bubble, chat, commenting, conversation, diagnose, feedback, message, note, notification, prescription, sms, speech, texting - static const IconDataDuotone duotoneCommentMedical = const IconDataDuotone( - 0xf7f5, - secondary: const IconDataDuotone(0x10f7f5), - ); - - /// Regular Comment Minus icon - /// - /// https://fontawesome.com/icons/comment-minus?style=regular - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData commentMinus = const IconDataRegular(0xf4b1); - - /// Solid Comment Minus icon - /// - /// https://fontawesome.com/icons/comment-minus?style=solid - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData solidCommentMinus = const IconDataSolid(0xf4b1); - - /// Light Comment Minus icon - /// - /// https://fontawesome.com/icons/light_comment-minus?style=light - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconData lightCommentMinus = const IconDataLight(0xf4b1); - - /// Duotone Comment Minus icon - /// - /// https://fontawesome.com/icons/duotone_comment-minus?style=duotone - /// bubble, chat, commenting, conversation, delete, feedback, message, negative, note, notification, remove, sms, speech, texting - static const IconDataDuotone duotoneCommentMinus = const IconDataDuotone( - 0xf4b1, - secondary: const IconDataDuotone(0x10f4b1), - ); - - /// Regular Comment Music icon - /// - /// https://fontawesome.com/icons/comment-music?style=regular - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData commentMusic = const IconDataRegular(0xf8b0); - - /// Solid Comment Music icon - /// - /// https://fontawesome.com/icons/comment-music?style=solid - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData solidCommentMusic = const IconDataSolid(0xf8b0); - - /// Light Comment Music icon - /// - /// https://fontawesome.com/icons/light_comment-music?style=light - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconData lightCommentMusic = const IconDataLight(0xf8b0); - - /// Duotone Comment Music icon - /// - /// https://fontawesome.com/icons/duotone_comment-music?style=duotone - /// chat, commenting, conversation, create, message, music, note, notification, sing, sms, song, texting - static const IconDataDuotone duotoneCommentMusic = const IconDataDuotone( - 0xf8b0, - secondary: const IconDataDuotone(0x10f8b0), - ); - - /// Regular Comment Plus icon - /// - /// https://fontawesome.com/icons/comment-plus?style=regular - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData commentPlus = const IconDataRegular(0xf4b2); - - /// Solid Comment Plus icon - /// - /// https://fontawesome.com/icons/comment-plus?style=solid - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData solidCommentPlus = const IconDataSolid(0xf4b2); - - /// Light Comment Plus icon - /// - /// https://fontawesome.com/icons/light_comment-plus?style=light - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconData lightCommentPlus = const IconDataLight(0xf4b2); - - /// Duotone Comment Plus icon - /// - /// https://fontawesome.com/icons/duotone_comment-plus?style=duotone - /// add, bubble, chat, commenting, conversation, create, feedback, message, new, note, notification, positive, sms, speech, texting - static const IconDataDuotone duotoneCommentPlus = const IconDataDuotone( - 0xf4b2, - secondary: const IconDataDuotone(0x10f4b2), - ); - - /// Regular Comment Slash icon - /// - /// https://fontawesome.com/icons/comment-slash?style=regular - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData commentSlash = const IconDataRegular(0xf4b3); - - /// Solid Comment Slash icon - /// - /// https://fontawesome.com/icons/comment-slash?style=solid - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData solidCommentSlash = const IconDataSolid(0xf4b3); - - /// Light Comment Slash icon - /// - /// https://fontawesome.com/icons/light_comment-slash?style=light - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconData lightCommentSlash = const IconDataLight(0xf4b3); - - /// Duotone Comment Slash icon - /// - /// https://fontawesome.com/icons/duotone_comment-slash?style=duotone - /// bubble, cancel, chat, commenting, conversation, feedback, message, mute, note, notification, quiet, sms, speech, texting - static const IconDataDuotone duotoneCommentSlash = const IconDataDuotone( - 0xf4b3, - secondary: const IconDataDuotone(0x10f4b3), - ); - - /// Regular Comment Smile icon - /// - /// https://fontawesome.com/icons/comment-smile?style=regular - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData commentSmile = const IconDataRegular(0xf4b4); - - /// Solid Comment Smile icon - /// - /// https://fontawesome.com/icons/comment-smile?style=solid - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData solidCommentSmile = const IconDataSolid(0xf4b4); - - /// Light Comment Smile icon - /// - /// https://fontawesome.com/icons/light_comment-smile?style=light - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconData lightCommentSmile = const IconDataLight(0xf4b4); - - /// Duotone Comment Smile icon - /// - /// https://fontawesome.com/icons/duotone_comment-smile?style=duotone - /// bubble, chat, commenting, conversation, emoji, feedback, happy, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentSmile = const IconDataDuotone( - 0xf4b4, - secondary: const IconDataDuotone(0x10f4b4), - ); - - /// Regular Comment Times icon - /// - /// https://fontawesome.com/icons/comment-times?style=regular - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData commentTimes = const IconDataRegular(0xf4b5); - - /// Solid Comment Times icon - /// - /// https://fontawesome.com/icons/comment-times?style=solid - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData solidCommentTimes = const IconDataSolid(0xf4b5); - - /// Light Comment Times icon - /// - /// https://fontawesome.com/icons/light_comment-times?style=light - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconData lightCommentTimes = const IconDataLight(0xf4b5); - - /// Duotone Comment Times icon - /// - /// https://fontawesome.com/icons/duotone_comment-times?style=duotone - /// archive, bubble, chat, commenting, conversation, delete, feedback, message, note, notification, remove, sms, speech, texting, x - static const IconDataDuotone duotoneCommentTimes = const IconDataDuotone( - 0xf4b5, - secondary: const IconDataDuotone(0x10f4b5), - ); - - /// Regular comments icon - /// - /// https://fontawesome.com/icons/comments?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData comments = const IconDataRegular(0xf086); - - /// Solid comments icon - /// - /// https://fontawesome.com/icons/comments?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidComments = const IconDataSolid(0xf086); - - /// Light comments icon - /// - /// https://fontawesome.com/icons/light_comments?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightComments = const IconDataLight(0xf086); - - /// Duotone comments icon - /// - /// https://fontawesome.com/icons/duotone_comments?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneComments = const IconDataDuotone( - 0xf086, - secondary: const IconDataDuotone(0x10f086), - ); - - /// Regular Alternate Comments icon - /// - /// https://fontawesome.com/icons/comments-alt?style=regular - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData commentsAlt = const IconDataRegular(0xf4b6); - - /// Solid Alternate Comments icon - /// - /// https://fontawesome.com/icons/comments-alt?style=solid - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData solidCommentsAlt = const IconDataSolid(0xf4b6); - - /// Light Alternate Comments icon - /// - /// https://fontawesome.com/icons/light_comments-alt?style=light - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconData lightCommentsAlt = const IconDataLight(0xf4b6); - - /// Duotone Alternate Comments icon - /// - /// https://fontawesome.com/icons/duotone_comments-alt?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, note, notification, sms, speech, texting - static const IconDataDuotone duotoneCommentsAlt = const IconDataDuotone( - 0xf4b6, - secondary: const IconDataDuotone(0x10f4b6), - ); - - /// Regular Alternate Comments Dollar icon - /// - /// https://fontawesome.com/icons/comments-alt-dollar?style=regular - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData commentsAltDollar = const IconDataRegular(0xf652); - - /// Solid Alternate Comments Dollar icon - /// - /// https://fontawesome.com/icons/comments-alt-dollar?style=solid - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData solidCommentsAltDollar = const IconDataSolid(0xf652); - - /// Light Alternate Comments Dollar icon - /// - /// https://fontawesome.com/icons/light_comments-alt-dollar?style=light - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData lightCommentsAltDollar = const IconDataLight(0xf652); - - /// Duotone Alternate Comments Dollar icon - /// - /// https://fontawesome.com/icons/duotone_comments-alt-dollar?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconDataDuotone duotoneCommentsAltDollar = const IconDataDuotone( - 0xf652, - secondary: const IconDataDuotone(0x10f652), - ); - - /// Regular Comments Dollar icon - /// - /// https://fontawesome.com/icons/comments-dollar?style=regular - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData commentsDollar = const IconDataRegular(0xf653); - - /// Solid Comments Dollar icon - /// - /// https://fontawesome.com/icons/comments-dollar?style=solid - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData solidCommentsDollar = const IconDataSolid(0xf653); - - /// Light Comments Dollar icon - /// - /// https://fontawesome.com/icons/light_comments-dollar?style=light - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconData lightCommentsDollar = const IconDataLight(0xf653); - - /// Duotone Comments Dollar icon - /// - /// https://fontawesome.com/icons/duotone_comments-dollar?style=duotone - /// bubble, chat, commenting, conversation, feedback, message, money, note, notification, pay, sms, speech, spend, texting, transfer - static const IconDataDuotone duotoneCommentsDollar = const IconDataDuotone( - 0xf653, - secondary: const IconDataDuotone(0x10f653), - ); - - /// Regular Compact Disc icon - /// - /// https://fontawesome.com/icons/compact-disc?style=regular - /// album, bluray, cd, disc, dvd, media, movie, music, record, video, vinyl - static const IconData compactDisc = const IconDataRegular(0xf51f); - - /// Solid Compact Disc icon - /// - /// https://fontawesome.com/icons/compact-disc?style=solid - /// album, bluray, cd, disc, dvd, media, movie, music, record, video, vinyl - static const IconData solidCompactDisc = const IconDataSolid(0xf51f); - - /// Light Compact Disc icon - /// - /// https://fontawesome.com/icons/light_compact-disc?style=light - /// album, bluray, cd, disc, dvd, media, movie, music, record, video, vinyl - static const IconData lightCompactDisc = const IconDataLight(0xf51f); - - /// Duotone Compact Disc icon - /// - /// https://fontawesome.com/icons/duotone_compact-disc?style=duotone - /// album, bluray, cd, disc, dvd, media, movie, music, record, video, vinyl - static const IconDataDuotone duotoneCompactDisc = const IconDataDuotone( - 0xf51f, - secondary: const IconDataDuotone(0x10f51f), - ); - - /// Regular Compass icon - /// - /// https://fontawesome.com/icons/compass?style=regular - /// directions, directory, location, menu, navigation, safari, travel - static const IconData compass = const IconDataRegular(0xf14e); - - /// Solid Compass icon - /// - /// https://fontawesome.com/icons/compass?style=solid - /// directions, directory, location, menu, navigation, safari, travel - static const IconData solidCompass = const IconDataSolid(0xf14e); - - /// Light Compass icon - /// - /// https://fontawesome.com/icons/light_compass?style=light - /// directions, directory, location, menu, navigation, safari, travel - static const IconData lightCompass = const IconDataLight(0xf14e); - - /// Duotone Compass icon - /// - /// https://fontawesome.com/icons/duotone_compass?style=duotone - /// directions, directory, location, menu, navigation, safari, travel - static const IconDataDuotone duotoneCompass = const IconDataDuotone( - 0xf14e, - secondary: const IconDataDuotone(0x10f14e), - ); - - /// Regular Compass Slash icon - /// - /// https://fontawesome.com/icons/compass-slash?style=regular - /// directions, directory, location, lost, menu, navigation, safari, travel - static const IconData compassSlash = const IconDataRegular(0xf5e9); - - /// Solid Compass Slash icon - /// - /// https://fontawesome.com/icons/compass-slash?style=solid - /// directions, directory, location, lost, menu, navigation, safari, travel - static const IconData solidCompassSlash = const IconDataSolid(0xf5e9); - - /// Light Compass Slash icon - /// - /// https://fontawesome.com/icons/light_compass-slash?style=light - /// directions, directory, location, lost, menu, navigation, safari, travel - static const IconData lightCompassSlash = const IconDataLight(0xf5e9); - - /// Duotone Compass Slash icon - /// - /// https://fontawesome.com/icons/duotone_compass-slash?style=duotone - /// directions, directory, location, lost, menu, navigation, safari, travel - static const IconDataDuotone duotoneCompassSlash = const IconDataDuotone( - 0xf5e9, - secondary: const IconDataDuotone(0x10f5e9), - ); - - /// Regular Compress icon - /// - /// https://fontawesome.com/icons/compress?style=regular - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compress = const IconDataRegular(0xf066); - - /// Solid Compress icon - /// - /// https://fontawesome.com/icons/compress?style=solid - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompress = const IconDataSolid(0xf066); - - /// Light Compress icon - /// - /// https://fontawesome.com/icons/light_compress?style=light - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompress = const IconDataLight(0xf066); - - /// Duotone Compress icon - /// - /// https://fontawesome.com/icons/duotone_compress?style=duotone - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconDataDuotone duotoneCompress = const IconDataDuotone( - 0xf066, - secondary: const IconDataDuotone(0x10f066), - ); - - /// Regular Alternate Compress icon - /// - /// https://fontawesome.com/icons/compress-alt?style=regular - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compressAlt = const IconDataRegular(0xf422); - - /// Solid Alternate Compress icon - /// - /// https://fontawesome.com/icons/compress-alt?style=solid - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompressAlt = const IconDataSolid(0xf422); - - /// Light Alternate Compress icon - /// - /// https://fontawesome.com/icons/light_compress-alt?style=light - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompressAlt = const IconDataLight(0xf422); - - /// Duotone Alternate Compress icon - /// - /// https://fontawesome.com/icons/duotone_compress-alt?style=duotone - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconDataDuotone duotoneCompressAlt = const IconDataDuotone( - 0xf422, - secondary: const IconDataDuotone(0x10f422), - ); - - /// Regular Alternate Compress Arrows icon - /// - /// https://fontawesome.com/icons/compress-arrows-alt?style=regular - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compressArrowsAlt = const IconDataRegular(0xf78c); - - /// Solid Alternate Compress Arrows icon - /// - /// https://fontawesome.com/icons/compress-arrows-alt?style=solid - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompressArrowsAlt = const IconDataSolid(0xf78c); - - /// Light Alternate Compress Arrows icon - /// - /// https://fontawesome.com/icons/light_compress-arrows-alt?style=light - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompressArrowsAlt = const IconDataLight(0xf78c); - - /// Duotone Alternate Compress Arrows icon - /// - /// https://fontawesome.com/icons/duotone_compress-arrows-alt?style=duotone - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconDataDuotone duotoneCompressArrowsAlt = const IconDataDuotone( - 0xf78c, - secondary: const IconDataDuotone(0x10f78c), - ); - - /// Regular Compress Wide icon - /// - /// https://fontawesome.com/icons/compress-wide?style=regular - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData compressWide = const IconDataRegular(0xf326); - - /// Solid Compress Wide icon - /// - /// https://fontawesome.com/icons/compress-wide?style=solid - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData solidCompressWide = const IconDataSolid(0xf326); - - /// Light Compress Wide icon - /// - /// https://fontawesome.com/icons/light_compress-wide?style=light - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconData lightCompressWide = const IconDataLight(0xf326); - - /// Duotone Compress Wide icon - /// - /// https://fontawesome.com/icons/duotone_compress-wide?style=duotone - /// collapse, fullscreen, minimize, move, resize, shrink, smaller - static const IconDataDuotone duotoneCompressWide = const IconDataDuotone( - 0xf326, - secondary: const IconDataDuotone(0x10f326), - ); - - /// Regular Classic Computer icon - /// - /// https://fontawesome.com/icons/computer-classic?style=regular - /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData computerClassic = const IconDataRegular(0xf8b1); - - /// Solid Classic Computer icon - /// - /// https://fontawesome.com/icons/computer-classic?style=solid - /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData solidComputerClassic = const IconDataSolid(0xf8b1); - - /// Light Classic Computer icon - /// - /// https://fontawesome.com/icons/light_computer-classic?style=light - /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconData lightComputerClassic = const IconDataLight(0xf8b1); - - /// Duotone Classic Computer icon - /// - /// https://fontawesome.com/icons/duotone_computer-classic?style=duotone - /// apple II, hardware, machine, macintosh, programming, retro, vintage - static const IconDataDuotone duotoneComputerClassic = const IconDataDuotone( - 0xf8b1, - secondary: const IconDataDuotone(0x10f8b1), - ); - - /// Regular Computer Speaker icon - /// - /// https://fontawesome.com/icons/computer-speaker?style=regular - /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData computerSpeaker = const IconDataRegular(0xf8b2); - - /// Solid Computer Speaker icon - /// - /// https://fontawesome.com/icons/computer-speaker?style=solid - /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData solidComputerSpeaker = const IconDataSolid(0xf8b2); - - /// Light Computer Speaker icon - /// - /// https://fontawesome.com/icons/light_computer-speaker?style=light - /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconData lightComputerSpeaker = const IconDataLight(0xf8b2); - - /// Duotone Computer Speaker icon - /// - /// https://fontawesome.com/icons/duotone_computer-speaker?style=duotone - /// airplay, bluetooth, devices, music, output, pair, sound, sync - static const IconDataDuotone duotoneComputerSpeaker = const IconDataDuotone( - 0xf8b2, - secondary: const IconDataDuotone(0x10f8b2), - ); - - /// Regular Concierge Bell icon - /// - /// https://fontawesome.com/icons/concierge-bell?style=regular - /// attention, hotel, receptionist, service, support - static const IconData conciergeBell = const IconDataRegular(0xf562); - - /// Solid Concierge Bell icon - /// - /// https://fontawesome.com/icons/concierge-bell?style=solid - /// attention, hotel, receptionist, service, support - static const IconData solidConciergeBell = const IconDataSolid(0xf562); - - /// Light Concierge Bell icon - /// - /// https://fontawesome.com/icons/light_concierge-bell?style=light - /// attention, hotel, receptionist, service, support - static const IconData lightConciergeBell = const IconDataLight(0xf562); - - /// Duotone Concierge Bell icon - /// - /// https://fontawesome.com/icons/duotone_concierge-bell?style=duotone - /// attention, hotel, receptionist, service, support - static const IconDataDuotone duotoneConciergeBell = const IconDataDuotone( - 0xf562, - secondary: const IconDataDuotone(0x10f562), - ); - - /// Brands Confluence icon - /// - /// https://fontawesome.com/icons/confluence?style=brands - /// atlassian - static const IconData confluence = const IconDataBrands(0xf78d); - - /// Brands Connect Develop icon - /// - /// https://fontawesome.com/icons/connectdevelop?style=brands - static const IconData connectdevelop = const IconDataBrands(0xf20e); - - /// Regular Construction icon - /// - /// https://fontawesome.com/icons/construction?style=regular - /// building, digging, project, structure - static const IconData construction = const IconDataRegular(0xf85d); - - /// Solid Construction icon - /// - /// https://fontawesome.com/icons/construction?style=solid - /// building, digging, project, structure - static const IconData solidConstruction = const IconDataSolid(0xf85d); - - /// Light Construction icon - /// - /// https://fontawesome.com/icons/light_construction?style=light - /// building, digging, project, structure - static const IconData lightConstruction = const IconDataLight(0xf85d); - - /// Duotone Construction icon - /// - /// https://fontawesome.com/icons/duotone_construction?style=duotone - /// building, digging, project, structure - static const IconDataDuotone duotoneConstruction = const IconDataDuotone( - 0xf85d, - secondary: const IconDataDuotone(0x10f85d), - ); - - /// Regular Container Storage icon - /// - /// https://fontawesome.com/icons/container-storage?style=regular - /// archive, box, inventory, shipping, warehouse - static const IconData containerStorage = const IconDataRegular(0xf4b7); - - /// Solid Container Storage icon - /// - /// https://fontawesome.com/icons/container-storage?style=solid - /// archive, box, inventory, shipping, warehouse - static const IconData solidContainerStorage = const IconDataSolid(0xf4b7); - - /// Light Container Storage icon - /// - /// https://fontawesome.com/icons/light_container-storage?style=light - /// archive, box, inventory, shipping, warehouse - static const IconData lightContainerStorage = const IconDataLight(0xf4b7); - - /// Duotone Container Storage icon - /// - /// https://fontawesome.com/icons/duotone_container-storage?style=duotone - /// archive, box, inventory, shipping, warehouse - static const IconDataDuotone duotoneContainerStorage = const IconDataDuotone( - 0xf4b7, - secondary: const IconDataDuotone(0x10f4b7), - ); - - /// Brands Contao icon - /// - /// https://fontawesome.com/icons/contao?style=brands - static const IconData contao = const IconDataBrands(0xf26d); - - /// Regular Conveyor Belt icon - /// - /// https://fontawesome.com/icons/conveyor-belt?style=regular - /// carousel, inventory, manufacture, packaging, shipping - static const IconData conveyorBelt = const IconDataRegular(0xf46e); - - /// Solid Conveyor Belt icon - /// - /// https://fontawesome.com/icons/conveyor-belt?style=solid - /// carousel, inventory, manufacture, packaging, shipping - static const IconData solidConveyorBelt = const IconDataSolid(0xf46e); - - /// Light Conveyor Belt icon - /// - /// https://fontawesome.com/icons/light_conveyor-belt?style=light - /// carousel, inventory, manufacture, packaging, shipping - static const IconData lightConveyorBelt = const IconDataLight(0xf46e); - - /// Duotone Conveyor Belt icon - /// - /// https://fontawesome.com/icons/duotone_conveyor-belt?style=duotone - /// carousel, inventory, manufacture, packaging, shipping - static const IconDataDuotone duotoneConveyorBelt = const IconDataDuotone( - 0xf46e, - secondary: const IconDataDuotone(0x10f46e), - ); - - /// Regular Alternate Conveyor Belt icon - /// - /// https://fontawesome.com/icons/conveyor-belt-alt?style=regular - /// carousel, inventory, manufacture, packaging, shipping - static const IconData conveyorBeltAlt = const IconDataRegular(0xf46f); - - /// Solid Alternate Conveyor Belt icon - /// - /// https://fontawesome.com/icons/conveyor-belt-alt?style=solid - /// carousel, inventory, manufacture, packaging, shipping - static const IconData solidConveyorBeltAlt = const IconDataSolid(0xf46f); - - /// Light Alternate Conveyor Belt icon - /// - /// https://fontawesome.com/icons/light_conveyor-belt-alt?style=light - /// carousel, inventory, manufacture, packaging, shipping - static const IconData lightConveyorBeltAlt = const IconDataLight(0xf46f); - - /// Duotone Alternate Conveyor Belt icon - /// - /// https://fontawesome.com/icons/duotone_conveyor-belt-alt?style=duotone - /// carousel, inventory, manufacture, packaging, shipping - static const IconDataDuotone duotoneConveyorBeltAlt = const IconDataDuotone( - 0xf46f, - secondary: const IconDataDuotone(0x10f46f), - ); - - /// Regular Cookie icon - /// - /// https://fontawesome.com/icons/cookie?style=regular - /// baked good, chips, chocolate, eat, snack, sweet, treat - static const IconData cookie = const IconDataRegular(0xf563); - - /// Solid Cookie icon - /// - /// https://fontawesome.com/icons/cookie?style=solid - /// baked good, chips, chocolate, eat, snack, sweet, treat - static const IconData solidCookie = const IconDataSolid(0xf563); - - /// Light Cookie icon - /// - /// https://fontawesome.com/icons/light_cookie?style=light - /// baked good, chips, chocolate, eat, snack, sweet, treat - static const IconData lightCookie = const IconDataLight(0xf563); - - /// Duotone Cookie icon - /// - /// https://fontawesome.com/icons/duotone_cookie?style=duotone - /// baked good, chips, chocolate, eat, snack, sweet, treat - static const IconDataDuotone duotoneCookie = const IconDataDuotone( - 0xf563, - secondary: const IconDataDuotone(0x10f563), - ); - - /// 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 = const IconDataRegular(0xf564); - - /// 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 = const IconDataSolid(0xf564); - - /// Light Cookie Bite icon - /// - /// https://fontawesome.com/icons/light_cookie-bite?style=light - /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconData lightCookieBite = const IconDataLight(0xf564); - - /// Duotone Cookie Bite icon - /// - /// https://fontawesome.com/icons/duotone_cookie-bite?style=duotone - /// baked good, bitten, chips, chocolate, eat, snack, sweet, treat - static const IconDataDuotone duotoneCookieBite = const IconDataDuotone( - 0xf564, - secondary: const IconDataDuotone(0x10f564), - ); - - /// Regular Copy icon - /// - /// https://fontawesome.com/icons/copy?style=regular - /// clone, duplicate, file, files-o, paper, paste - static const IconData copy = const IconDataRegular(0xf0c5); - - /// Solid Copy icon - /// - /// https://fontawesome.com/icons/copy?style=solid - /// clone, duplicate, file, files-o, paper, paste - static const IconData solidCopy = const IconDataSolid(0xf0c5); - - /// Light Copy icon - /// - /// https://fontawesome.com/icons/light_copy?style=light - /// clone, duplicate, file, files-o, paper, paste - static const IconData lightCopy = const IconDataLight(0xf0c5); - - /// Duotone Copy icon - /// - /// https://fontawesome.com/icons/duotone_copy?style=duotone - /// clone, duplicate, file, files-o, paper, paste - static const IconDataDuotone duotoneCopy = const IconDataDuotone( - 0xf0c5, - secondary: const IconDataDuotone(0x10f0c5), - ); - - /// Regular Copyright icon - /// - /// https://fontawesome.com/icons/copyright?style=regular - /// brand, mark, register, trademark - static const IconData copyright = const IconDataRegular(0xf1f9); - - /// Solid Copyright icon - /// - /// https://fontawesome.com/icons/copyright?style=solid - /// brand, mark, register, trademark - static const IconData solidCopyright = const IconDataSolid(0xf1f9); - - /// Light Copyright icon - /// - /// https://fontawesome.com/icons/light_copyright?style=light - /// brand, mark, register, trademark - static const IconData lightCopyright = const IconDataLight(0xf1f9); - - /// Duotone Copyright icon - /// - /// https://fontawesome.com/icons/duotone_copyright?style=duotone - /// brand, mark, register, trademark - static const IconDataDuotone duotoneCopyright = const IconDataDuotone( - 0xf1f9, - secondary: const IconDataDuotone(0x10f1f9), - ); - - /// Regular Corn icon - /// - /// https://fontawesome.com/icons/corn?style=regular - /// cob, ear, fall, grain, kernel, maize, popcorn - static const IconData corn = const IconDataRegular(0xf6c7); - - /// Solid Corn icon - /// - /// https://fontawesome.com/icons/corn?style=solid - /// cob, ear, fall, grain, kernel, maize, popcorn - static const IconData solidCorn = const IconDataSolid(0xf6c7); - - /// Light Corn icon - /// - /// https://fontawesome.com/icons/light_corn?style=light - /// cob, ear, fall, grain, kernel, maize, popcorn - static const IconData lightCorn = const IconDataLight(0xf6c7); - - /// Duotone Corn icon - /// - /// https://fontawesome.com/icons/duotone_corn?style=duotone - /// cob, ear, fall, grain, kernel, maize, popcorn - static const IconDataDuotone duotoneCorn = const IconDataDuotone( - 0xf6c7, - secondary: const IconDataDuotone(0x10f6c7), - ); - - /// Brands Cotton Bureau icon - /// - /// https://fontawesome.com/icons/cotton-bureau?style=brands - /// clothing, t-shirts, tshirts - static const IconData cottonBureau = const IconDataBrands(0xf89e); - - /// Regular Couch icon - /// - /// https://fontawesome.com/icons/couch?style=regular - /// chair, cushion, furniture, relax, sofa - static const IconData couch = const IconDataRegular(0xf4b8); - - /// Solid Couch icon - /// - /// https://fontawesome.com/icons/couch?style=solid - /// chair, cushion, furniture, relax, sofa - static const IconData solidCouch = const IconDataSolid(0xf4b8); - - /// Light Couch icon - /// - /// https://fontawesome.com/icons/light_couch?style=light - /// chair, cushion, furniture, relax, sofa - static const IconData lightCouch = const IconDataLight(0xf4b8); - - /// Duotone Couch icon - /// - /// https://fontawesome.com/icons/duotone_couch?style=duotone - /// chair, cushion, furniture, relax, sofa - static const IconDataDuotone duotoneCouch = const IconDataDuotone( - 0xf4b8, - secondary: const IconDataDuotone(0x10f4b8), - ); - - /// Regular Cow icon - /// - /// https://fontawesome.com/icons/cow?style=regular - /// agriculture, animal, beef, bovine, farm, fauna, mammal, milk, moo - static const IconData cow = const IconDataRegular(0xf6c8); - - /// Solid Cow icon - /// - /// https://fontawesome.com/icons/cow?style=solid - /// agriculture, animal, beef, bovine, farm, fauna, mammal, milk, moo - static const IconData solidCow = const IconDataSolid(0xf6c8); - - /// Light Cow icon - /// - /// https://fontawesome.com/icons/light_cow?style=light - /// agriculture, animal, beef, bovine, farm, fauna, mammal, milk, moo - static const IconData lightCow = const IconDataLight(0xf6c8); - - /// Duotone Cow icon - /// - /// https://fontawesome.com/icons/duotone_cow?style=duotone - /// agriculture, animal, beef, bovine, farm, fauna, mammal, milk, moo - static const IconDataDuotone duotoneCow = const IconDataDuotone( - 0xf6c8, - secondary: const IconDataDuotone(0x10f6c8), - ); - - /// Regular Cowbell icon - /// - /// https://fontawesome.com/icons/cowbell?style=regular - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData cowbell = const IconDataRegular(0xf8b3); - - /// Solid Cowbell icon - /// - /// https://fontawesome.com/icons/cowbell?style=solid - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData solidCowbell = const IconDataSolid(0xf8b3); - - /// Light Cowbell icon - /// - /// https://fontawesome.com/icons/light_cowbell?style=light - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData lightCowbell = const IconDataLight(0xf8b3); - - /// Duotone Cowbell icon - /// - /// https://fontawesome.com/icons/duotone_cowbell?style=duotone - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconDataDuotone duotoneCowbell = const IconDataDuotone( - 0xf8b3, - secondary: const IconDataDuotone(0x10f8b3), - ); - - /// Regular Cowbell More icon - /// - /// https://fontawesome.com/icons/cowbell-more?style=regular - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData cowbellMore = const IconDataRegular(0xf8b4); - - /// Solid Cowbell More icon - /// - /// https://fontawesome.com/icons/cowbell-more?style=solid - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData solidCowbellMore = const IconDataSolid(0xf8b4); - - /// Light Cowbell More icon - /// - /// https://fontawesome.com/icons/light_cowbell-more?style=light - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconData lightCowbellMore = const IconDataLight(0xf8b4); - - /// Duotone Cowbell More icon - /// - /// https://fontawesome.com/icons/duotone_cowbell-more?style=duotone - /// Blue Öyster Cult, Christopher Walken, SNL, The Bruce Dickinson, Will Ferrell, music - static const IconDataDuotone duotoneCowbellMore = const IconDataDuotone( - 0xf8b4, - secondary: const IconDataDuotone(0x10f8b4), - ); - - /// Brands cPanel icon - /// - /// https://fontawesome.com/icons/cpanel?style=brands - static const IconData cpanel = const IconDataBrands(0xf388); - - /// Brands Creative Commons icon - /// - /// https://fontawesome.com/icons/creative-commons?style=brands - static const IconData creativeCommons = const IconDataBrands(0xf25e); - - /// Brands Creative Commons Attribution icon - /// - /// https://fontawesome.com/icons/creative-commons-by?style=brands - static const IconData creativeCommonsBy = const IconDataBrands(0xf4e7); - - /// Brands Creative Commons Noncommercial icon - /// - /// https://fontawesome.com/icons/creative-commons-nc?style=brands - static const IconData creativeCommonsNc = const IconDataBrands(0xf4e8); - - /// Brands Creative Commons Noncommercial (Euro Sign) icon - /// - /// https://fontawesome.com/icons/creative-commons-nc-eu?style=brands - static const IconData creativeCommonsNcEu = const IconDataBrands(0xf4e9); - - /// Brands Creative Commons Noncommercial (Yen Sign) icon - /// - /// https://fontawesome.com/icons/creative-commons-nc-jp?style=brands - static const IconData creativeCommonsNcJp = const IconDataBrands(0xf4ea); - - /// Brands Creative Commons No Derivative Works icon - /// - /// https://fontawesome.com/icons/creative-commons-nd?style=brands - static const IconData creativeCommonsNd = const IconDataBrands(0xf4eb); - - /// Brands Creative Commons Public Domain icon - /// - /// https://fontawesome.com/icons/creative-commons-pd?style=brands - static const IconData creativeCommonsPd = const IconDataBrands(0xf4ec); - - /// Brands Alternate Creative Commons Public Domain icon - /// - /// https://fontawesome.com/icons/creative-commons-pd-alt?style=brands - static const IconData creativeCommonsPdAlt = const IconDataBrands(0xf4ed); - - /// Brands Creative Commons Remix icon - /// - /// https://fontawesome.com/icons/creative-commons-remix?style=brands - static const IconData creativeCommonsRemix = const IconDataBrands(0xf4ee); - - /// Brands Creative Commons Share Alike icon - /// - /// https://fontawesome.com/icons/creative-commons-sa?style=brands - static const IconData creativeCommonsSa = const IconDataBrands(0xf4ef); - - /// Brands Creative Commons Sampling icon - /// - /// https://fontawesome.com/icons/creative-commons-sampling?style=brands - static const IconData creativeCommonsSampling = const IconDataBrands(0xf4f0); - - /// Brands Creative Commons Sampling + icon - /// - /// https://fontawesome.com/icons/creative-commons-sampling-plus?style=brands - static const IconData creativeCommonsSamplingPlus = - const IconDataBrands(0xf4f1); - - /// Brands Creative Commons Share icon - /// - /// https://fontawesome.com/icons/creative-commons-share?style=brands - static const IconData creativeCommonsShare = const IconDataBrands(0xf4f2); - - /// Brands Creative Commons CC0 icon - /// - /// https://fontawesome.com/icons/creative-commons-zero?style=brands - static const IconData creativeCommonsZero = const IconDataBrands(0xf4f3); - - /// Regular Credit Card icon - /// - /// https://fontawesome.com/icons/credit-card?style=regular - /// buy, checkout, credit-card-alt, debit, money, payment, purchase - static const IconData creditCard = const IconDataRegular(0xf09d); - - /// Solid Credit Card icon - /// - /// https://fontawesome.com/icons/credit-card?style=solid - /// buy, checkout, credit-card-alt, debit, money, payment, purchase - static const IconData solidCreditCard = const IconDataSolid(0xf09d); - - /// Light Credit Card icon - /// - /// https://fontawesome.com/icons/light_credit-card?style=light - /// buy, checkout, credit-card-alt, debit, money, payment, purchase - static const IconData lightCreditCard = const IconDataLight(0xf09d); - - /// Duotone Credit Card icon - /// - /// https://fontawesome.com/icons/duotone_credit-card?style=duotone - /// buy, checkout, credit-card-alt, debit, money, payment, purchase - static const IconDataDuotone duotoneCreditCard = const IconDataDuotone( - 0xf09d, - secondary: const IconDataDuotone(0x10f09d), - ); - - /// Regular Credit Card Blank icon - /// - /// https://fontawesome.com/icons/credit-card-blank?style=regular - /// buy, checkout, debit, money, payment, purchase - static const IconData creditCardBlank = const IconDataRegular(0xf389); - - /// Solid Credit Card Blank icon - /// - /// https://fontawesome.com/icons/credit-card-blank?style=solid - /// buy, checkout, debit, money, payment, purchase - static const IconData solidCreditCardBlank = const IconDataSolid(0xf389); - - /// Light Credit Card Blank icon - /// - /// https://fontawesome.com/icons/light_credit-card-blank?style=light - /// buy, checkout, debit, money, payment, purchase - static const IconData lightCreditCardBlank = const IconDataLight(0xf389); - - /// Duotone Credit Card Blank icon - /// - /// https://fontawesome.com/icons/duotone_credit-card-blank?style=duotone - /// buy, checkout, debit, money, payment, purchase - static const IconDataDuotone duotoneCreditCardBlank = const IconDataDuotone( - 0xf389, - secondary: const IconDataDuotone(0x10f389), - ); - - /// 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 = const IconDataRegular(0xf38a); - - /// 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 = const IconDataSolid(0xf38a); - - /// Light Credit Card Front icon - /// - /// https://fontawesome.com/icons/light_credit-card-front?style=light - /// buy, checkout, chip, debit, money, payment, purchase - static const IconData lightCreditCardFront = const IconDataLight(0xf38a); - - /// Duotone Credit Card Front icon - /// - /// https://fontawesome.com/icons/duotone_credit-card-front?style=duotone - /// buy, checkout, chip, debit, money, payment, purchase - static const IconDataDuotone duotoneCreditCardFront = const IconDataDuotone( - 0xf38a, - secondary: const IconDataDuotone(0x10f38a), - ); - - /// Regular Cricket icon - /// - /// https://fontawesome.com/icons/cricket?style=regular - /// ball, bat, bowling, wicket - static const IconData cricket = const IconDataRegular(0xf449); - - /// Solid Cricket icon - /// - /// https://fontawesome.com/icons/cricket?style=solid - /// ball, bat, bowling, wicket - static const IconData solidCricket = const IconDataSolid(0xf449); - - /// Light Cricket icon - /// - /// https://fontawesome.com/icons/light_cricket?style=light - /// ball, bat, bowling, wicket - static const IconData lightCricket = const IconDataLight(0xf449); - - /// Duotone Cricket icon - /// - /// https://fontawesome.com/icons/duotone_cricket?style=duotone - /// ball, bat, bowling, wicket - static const IconDataDuotone duotoneCricket = const IconDataDuotone( - 0xf449, - secondary: const IconDataDuotone(0x10f449), - ); - - /// Brands Critical Role icon - /// - /// https://fontawesome.com/icons/critical-role?style=brands - /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, tabletop - static const IconData criticalRole = const IconDataBrands(0xf6c9); - - /// Regular Croissant icon - /// - /// https://fontawesome.com/icons/croissant?style=regular - /// bakery, breakfast, brioche, butter, crescent, dough, gluten, pastry, roll - static const IconData croissant = const IconDataRegular(0xf7f6); - - /// Solid Croissant icon - /// - /// https://fontawesome.com/icons/croissant?style=solid - /// bakery, breakfast, brioche, butter, crescent, dough, gluten, pastry, roll - static const IconData solidCroissant = const IconDataSolid(0xf7f6); - - /// Light Croissant icon - /// - /// https://fontawesome.com/icons/light_croissant?style=light - /// bakery, breakfast, brioche, butter, crescent, dough, gluten, pastry, roll - static const IconData lightCroissant = const IconDataLight(0xf7f6); - - /// Duotone Croissant icon - /// - /// https://fontawesome.com/icons/duotone_croissant?style=duotone - /// bakery, breakfast, brioche, butter, crescent, dough, gluten, pastry, roll - static const IconDataDuotone duotoneCroissant = const IconDataDuotone( - 0xf7f6, - secondary: const IconDataDuotone(0x10f7f6), - ); - - /// Regular crop icon - /// - /// https://fontawesome.com/icons/crop?style=regular - /// design, frame, mask, resize, shrink - static const IconData crop = const IconDataRegular(0xf125); - - /// Solid crop icon - /// - /// https://fontawesome.com/icons/crop?style=solid - /// design, frame, mask, resize, shrink - static const IconData solidCrop = const IconDataSolid(0xf125); - - /// Light crop icon - /// - /// https://fontawesome.com/icons/light_crop?style=light - /// design, frame, mask, resize, shrink - static const IconData lightCrop = const IconDataLight(0xf125); - - /// Duotone crop icon - /// - /// https://fontawesome.com/icons/duotone_crop?style=duotone - /// design, frame, mask, resize, shrink - static const IconDataDuotone duotoneCrop = const IconDataDuotone( - 0xf125, - secondary: const IconDataDuotone(0x10f125), - ); - - /// Regular Alternate Crop icon - /// - /// https://fontawesome.com/icons/crop-alt?style=regular - /// design, frame, mask, resize, shrink - static const IconData cropAlt = const IconDataRegular(0xf565); - - /// Solid Alternate Crop icon - /// - /// https://fontawesome.com/icons/crop-alt?style=solid - /// design, frame, mask, resize, shrink - static const IconData solidCropAlt = const IconDataSolid(0xf565); - - /// Light Alternate Crop icon - /// - /// https://fontawesome.com/icons/light_crop-alt?style=light - /// design, frame, mask, resize, shrink - static const IconData lightCropAlt = const IconDataLight(0xf565); - - /// Duotone Alternate Crop icon - /// - /// https://fontawesome.com/icons/duotone_crop-alt?style=duotone - /// design, frame, mask, resize, shrink - static const IconDataDuotone duotoneCropAlt = const IconDataDuotone( - 0xf565, - secondary: const IconDataDuotone(0x10f565), - ); - - /// Regular Cross icon - /// - /// https://fontawesome.com/icons/cross?style=regular - /// catholicism, christianity, church, jesus - static const IconData cross = const IconDataRegular(0xf654); - - /// Solid Cross icon - /// - /// https://fontawesome.com/icons/cross?style=solid - /// catholicism, christianity, church, jesus - static const IconData solidCross = const IconDataSolid(0xf654); - - /// Light Cross icon - /// - /// https://fontawesome.com/icons/light_cross?style=light - /// catholicism, christianity, church, jesus - static const IconData lightCross = const IconDataLight(0xf654); - - /// Duotone Cross icon - /// - /// https://fontawesome.com/icons/duotone_cross?style=duotone - /// catholicism, christianity, church, jesus - static const IconDataDuotone duotoneCross = const IconDataDuotone( - 0xf654, - secondary: const IconDataDuotone(0x10f654), - ); - - /// Regular Crosshairs icon - /// - /// https://fontawesome.com/icons/crosshairs?style=regular - /// aim, bullseye, gpd, picker, position - static const IconData crosshairs = const IconDataRegular(0xf05b); - - /// Solid Crosshairs icon - /// - /// https://fontawesome.com/icons/crosshairs?style=solid - /// aim, bullseye, gpd, picker, position - static const IconData solidCrosshairs = const IconDataSolid(0xf05b); - - /// Light Crosshairs icon - /// - /// https://fontawesome.com/icons/light_crosshairs?style=light - /// aim, bullseye, gpd, picker, position - static const IconData lightCrosshairs = const IconDataLight(0xf05b); - - /// Duotone Crosshairs icon - /// - /// https://fontawesome.com/icons/duotone_crosshairs?style=duotone - /// aim, bullseye, gpd, picker, position - static const IconDataDuotone duotoneCrosshairs = const IconDataDuotone( - 0xf05b, - secondary: const IconDataDuotone(0x10f05b), - ); - - /// Regular Crow icon - /// - /// https://fontawesome.com/icons/crow?style=regular - /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData crow = const IconDataRegular(0xf520); - - /// Solid Crow icon - /// - /// https://fontawesome.com/icons/crow?style=solid - /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData solidCrow = const IconDataSolid(0xf520); - - /// Light Crow icon - /// - /// https://fontawesome.com/icons/light_crow?style=light - /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconData lightCrow = const IconDataLight(0xf520); - - /// Duotone Crow icon - /// - /// https://fontawesome.com/icons/duotone_crow?style=duotone - /// bird, bullfrog, fauna, halloween, holiday, toad - static const IconDataDuotone duotoneCrow = const IconDataDuotone( - 0xf520, - secondary: const IconDataDuotone(0x10f520), - ); - - /// Regular Crown icon - /// - /// https://fontawesome.com/icons/crown?style=regular - /// award, favorite, king, queen, royal, tiara - static const IconData crown = const IconDataRegular(0xf521); - - /// Solid Crown icon - /// - /// https://fontawesome.com/icons/crown?style=solid - /// award, favorite, king, queen, royal, tiara - static const IconData solidCrown = const IconDataSolid(0xf521); - - /// Light Crown icon - /// - /// https://fontawesome.com/icons/light_crown?style=light - /// award, favorite, king, queen, royal, tiara - static const IconData lightCrown = const IconDataLight(0xf521); - - /// Duotone Crown icon - /// - /// https://fontawesome.com/icons/duotone_crown?style=duotone - /// award, favorite, king, queen, royal, tiara - static const IconDataDuotone duotoneCrown = const IconDataDuotone( - 0xf521, - secondary: const IconDataDuotone(0x10f521), - ); - - /// Regular Crutch icon - /// - /// https://fontawesome.com/icons/crutch?style=regular - /// cane, injury, mobility, wheelchair - static const IconData crutch = const IconDataRegular(0xf7f7); - - /// Solid Crutch icon - /// - /// https://fontawesome.com/icons/crutch?style=solid - /// cane, injury, mobility, wheelchair - static const IconData solidCrutch = const IconDataSolid(0xf7f7); - - /// Light Crutch icon - /// - /// https://fontawesome.com/icons/light_crutch?style=light - /// cane, injury, mobility, wheelchair - static const IconData lightCrutch = const IconDataLight(0xf7f7); - - /// Duotone Crutch icon - /// - /// https://fontawesome.com/icons/duotone_crutch?style=duotone - /// cane, injury, mobility, wheelchair - static const IconDataDuotone duotoneCrutch = const IconDataDuotone( - 0xf7f7, - secondary: const IconDataDuotone(0x10f7f7), - ); - - /// Regular Crutches icon - /// - /// https://fontawesome.com/icons/crutches?style=regular - /// cane, injury, mobility, wheelchair - static const IconData crutches = const IconDataRegular(0xf7f8); - - /// Solid Crutches icon - /// - /// https://fontawesome.com/icons/crutches?style=solid - /// cane, injury, mobility, wheelchair - static const IconData solidCrutches = const IconDataSolid(0xf7f8); - - /// Light Crutches icon - /// - /// https://fontawesome.com/icons/light_crutches?style=light - /// cane, injury, mobility, wheelchair - static const IconData lightCrutches = const IconDataLight(0xf7f8); - - /// Duotone Crutches icon - /// - /// https://fontawesome.com/icons/duotone_crutches?style=duotone - /// cane, injury, mobility, wheelchair - static const IconDataDuotone duotoneCrutches = const IconDataDuotone( - 0xf7f8, - secondary: const IconDataDuotone(0x10f7f8), - ); - - /// Brands CSS 3 Logo icon - /// - /// https://fontawesome.com/icons/css3?style=brands - /// code - static const IconData css3 = const IconDataBrands(0xf13c); - - /// Brands Alternate CSS3 Logo icon - /// - /// https://fontawesome.com/icons/css3-alt?style=brands - static const IconData css3Alt = const IconDataBrands(0xf38b); - - /// Regular Cube icon - /// - /// https://fontawesome.com/icons/cube?style=regular - /// 3d, block, dice, package, square, tesseract - static const IconData cube = const IconDataRegular(0xf1b2); - - /// Solid Cube icon - /// - /// https://fontawesome.com/icons/cube?style=solid - /// 3d, block, dice, package, square, tesseract - static const IconData solidCube = const IconDataSolid(0xf1b2); - - /// Light Cube icon - /// - /// https://fontawesome.com/icons/light_cube?style=light - /// 3d, block, dice, package, square, tesseract - static const IconData lightCube = const IconDataLight(0xf1b2); - - /// Duotone Cube icon - /// - /// https://fontawesome.com/icons/duotone_cube?style=duotone - /// 3d, block, dice, package, square, tesseract - static const IconDataDuotone duotoneCube = const IconDataDuotone( - 0xf1b2, - secondary: const IconDataDuotone(0x10f1b2), - ); - - /// Regular Cubes icon - /// - /// https://fontawesome.com/icons/cubes?style=regular - /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData cubes = const IconDataRegular(0xf1b3); - - /// Solid Cubes icon - /// - /// https://fontawesome.com/icons/cubes?style=solid - /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData solidCubes = const IconDataSolid(0xf1b3); - - /// Light Cubes icon - /// - /// https://fontawesome.com/icons/light_cubes?style=light - /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconData lightCubes = const IconDataLight(0xf1b3); - - /// Duotone Cubes icon - /// - /// https://fontawesome.com/icons/duotone_cubes?style=duotone - /// 3d, block, dice, package, pyramid, square, stack, tesseract - static const IconDataDuotone duotoneCubes = const IconDataDuotone( - 0xf1b3, - secondary: const IconDataDuotone(0x10f1b3), - ); - - /// Regular Curling icon - /// - /// https://fontawesome.com/icons/curling?style=regular - /// ice, olympics, sport, stone - static const IconData curling = const IconDataRegular(0xf44a); - - /// Solid Curling icon - /// - /// https://fontawesome.com/icons/curling?style=solid - /// ice, olympics, sport, stone - static const IconData solidCurling = const IconDataSolid(0xf44a); - - /// Light Curling icon - /// - /// https://fontawesome.com/icons/light_curling?style=light - /// ice, olympics, sport, stone - static const IconData lightCurling = const IconDataLight(0xf44a); - - /// Duotone Curling icon - /// - /// https://fontawesome.com/icons/duotone_curling?style=duotone - /// ice, olympics, sport, stone - static const IconDataDuotone duotoneCurling = const IconDataDuotone( - 0xf44a, - secondary: const IconDataDuotone(0x10f44a), - ); - - /// Regular Cut icon - /// - /// https://fontawesome.com/icons/cut?style=regular - /// clip, scissors, snip - static const IconData cut = const IconDataRegular(0xf0c4); - - /// Solid Cut icon - /// - /// https://fontawesome.com/icons/cut?style=solid - /// clip, scissors, snip - static const IconData solidCut = const IconDataSolid(0xf0c4); - - /// Light Cut icon - /// - /// https://fontawesome.com/icons/light_cut?style=light - /// clip, scissors, snip - static const IconData lightCut = const IconDataLight(0xf0c4); - - /// Duotone Cut icon - /// - /// https://fontawesome.com/icons/duotone_cut?style=duotone - /// clip, scissors, snip - static const IconDataDuotone duotoneCut = const IconDataDuotone( - 0xf0c4, - secondary: const IconDataDuotone(0x10f0c4), - ); - - /// Brands Cuttlefish icon - /// - /// https://fontawesome.com/icons/cuttlefish?style=brands - static const IconData cuttlefish = const IconDataBrands(0xf38c); - - /// Brands Dungeons & Dragons icon - /// - /// https://fontawesome.com/icons/d-and-d?style=brands - static const IconData dAndD = const IconDataBrands(0xf38d); - - /// 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 = const IconDataBrands(0xf6ca); - - /// 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 = const IconDataRegular(0xf6cb); - - /// 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 = const IconDataSolid(0xf6cb); - - /// Light Dagger icon - /// - /// https://fontawesome.com/icons/light_dagger?style=light - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconData lightDagger = const IconDataLight(0xf6cb); - - /// Duotone Dagger icon - /// - /// https://fontawesome.com/icons/duotone_dagger?style=duotone - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, melee attack, rogue, sting, weapon - static const IconDataDuotone duotoneDagger = const IconDataDuotone( - 0xf6cb, - secondary: const IconDataDuotone(0x10f6cb), - ); - - /// Brands dailymotion icon - /// - /// https://fontawesome.com/icons/dailymotion?style=brands - static const IconData dailymotion = const IconDataBrands(0xe052); - - /// Brands DashCube icon - /// - /// https://fontawesome.com/icons/dashcube?style=brands - static const IconData dashcube = const IconDataBrands(0xf210); - - /// Regular Database icon - /// - /// https://fontawesome.com/icons/database?style=regular - /// computer, development, directory, memory, storage - static const IconData database = const IconDataRegular(0xf1c0); - - /// Solid Database icon - /// - /// https://fontawesome.com/icons/database?style=solid - /// computer, development, directory, memory, storage - static const IconData solidDatabase = const IconDataSolid(0xf1c0); - - /// Light Database icon - /// - /// https://fontawesome.com/icons/light_database?style=light - /// computer, development, directory, memory, storage - static const IconData lightDatabase = const IconDataLight(0xf1c0); - - /// Duotone Database icon - /// - /// https://fontawesome.com/icons/duotone_database?style=duotone - /// computer, development, directory, memory, storage - static const IconDataDuotone duotoneDatabase = const IconDataDuotone( - 0xf1c0, - secondary: const IconDataDuotone(0x10f1c0), - ); - - /// Regular Deaf icon - /// - /// https://fontawesome.com/icons/deaf?style=regular - /// ear, hearing, sign language - static const IconData deaf = const IconDataRegular(0xf2a4); - - /// Solid Deaf icon - /// - /// https://fontawesome.com/icons/deaf?style=solid - /// ear, hearing, sign language - static const IconData solidDeaf = const IconDataSolid(0xf2a4); - - /// Light Deaf icon - /// - /// https://fontawesome.com/icons/light_deaf?style=light - /// ear, hearing, sign language - static const IconData lightDeaf = const IconDataLight(0xf2a4); - - /// Duotone Deaf icon - /// - /// https://fontawesome.com/icons/duotone_deaf?style=duotone - /// ear, hearing, sign language - static const IconDataDuotone duotoneDeaf = const IconDataDuotone( - 0xf2a4, - secondary: const IconDataDuotone(0x10f2a4), - ); - - /// Regular Debug icon - /// - /// https://fontawesome.com/icons/debug?style=regular - /// error, fix, optimize, warning - static const IconData debug = const IconDataRegular(0xf7f9); - - /// Solid Debug icon - /// - /// https://fontawesome.com/icons/debug?style=solid - /// error, fix, optimize, warning - static const IconData solidDebug = const IconDataSolid(0xf7f9); - - /// Light Debug icon - /// - /// https://fontawesome.com/icons/light_debug?style=light - /// error, fix, optimize, warning - static const IconData lightDebug = const IconDataLight(0xf7f9); - - /// Duotone Debug icon - /// - /// https://fontawesome.com/icons/duotone_debug?style=duotone - /// error, fix, optimize, warning - static const IconDataDuotone duotoneDebug = const IconDataDuotone( - 0xf7f9, - secondary: const IconDataDuotone(0x10f7f9), - ); - - /// Regular Deer icon - /// - /// https://fontawesome.com/icons/deer?style=regular - /// animal, antlers, blitzen, comet, cupid, dancer, dasher, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData deer = const IconDataRegular(0xf78e); - - /// Solid Deer icon - /// - /// https://fontawesome.com/icons/deer?style=solid - /// animal, antlers, blitzen, comet, cupid, dancer, dasher, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData solidDeer = const IconDataSolid(0xf78e); - - /// Light Deer icon - /// - /// https://fontawesome.com/icons/light_deer?style=light - /// animal, antlers, blitzen, comet, cupid, dancer, dasher, donner, fauna, mammal, prancer, reindeer, vixen - static const IconData lightDeer = const IconDataLight(0xf78e); - - /// Duotone Deer icon - /// - /// https://fontawesome.com/icons/duotone_deer?style=duotone - /// animal, antlers, blitzen, comet, cupid, dancer, dasher, donner, fauna, mammal, prancer, reindeer, vixen - static const IconDataDuotone duotoneDeer = const IconDataDuotone( - 0xf78e, - secondary: const IconDataDuotone(0x10f78e), - ); - - /// Regular Deer Rudolph icon - /// - /// https://fontawesome.com/icons/deer-rudolph?style=regular - /// animal, antlers, fauna, mammal, reindeer - static const IconData deerRudolph = const IconDataRegular(0xf78f); - - /// Solid Deer Rudolph icon - /// - /// https://fontawesome.com/icons/deer-rudolph?style=solid - /// animal, antlers, fauna, mammal, reindeer - static const IconData solidDeerRudolph = const IconDataSolid(0xf78f); - - /// Light Deer Rudolph icon - /// - /// https://fontawesome.com/icons/light_deer-rudolph?style=light - /// animal, antlers, fauna, mammal, reindeer - static const IconData lightDeerRudolph = const IconDataLight(0xf78f); - - /// Duotone Deer Rudolph icon - /// - /// https://fontawesome.com/icons/duotone_deer-rudolph?style=duotone - /// animal, antlers, fauna, mammal, reindeer - static const IconDataDuotone duotoneDeerRudolph = const IconDataDuotone( - 0xf78f, - secondary: const IconDataDuotone(0x10f78f), - ); - - /// Brands Deezer icon - /// - /// https://fontawesome.com/icons/deezer?style=brands - static const IconData deezer = const IconDataBrands(0xe077); - - /// Brands Delicious icon - /// - /// https://fontawesome.com/icons/delicious?style=brands - static const IconData delicious = const IconDataBrands(0xf1a5); - - /// 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 = const IconDataRegular(0xf747); - - /// 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 = const IconDataSolid(0xf747); - - /// Light Democrat icon - /// - /// https://fontawesome.com/icons/light_democrat?style=light - /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconData lightDemocrat = const IconDataLight(0xf747); - - /// Duotone Democrat icon - /// - /// https://fontawesome.com/icons/duotone_democrat?style=duotone - /// american, democratic party, donkey, election, left, left-wing, liberal, politics, usa - static const IconDataDuotone duotoneDemocrat = const IconDataDuotone( - 0xf747, - secondary: const IconDataDuotone(0x10f747), - ); - - /// Brands deploy.dog icon - /// - /// https://fontawesome.com/icons/deploydog?style=brands - static const IconData deploydog = const IconDataBrands(0xf38e); - - /// Brands Deskpro icon - /// - /// https://fontawesome.com/icons/deskpro?style=brands - static const IconData deskpro = const IconDataBrands(0xf38f); - - /// Regular Desktop icon - /// - /// https://fontawesome.com/icons/desktop?style=regular - /// computer, cpu, demo, desktop, device, imac, machine, monitor, pc, screen - static const IconData desktop = const IconDataRegular(0xf108); - - /// Solid Desktop icon - /// - /// https://fontawesome.com/icons/desktop?style=solid - /// computer, cpu, demo, desktop, device, imac, machine, monitor, pc, screen - static const IconData solidDesktop = const IconDataSolid(0xf108); - - /// Light Desktop icon - /// - /// https://fontawesome.com/icons/light_desktop?style=light - /// computer, cpu, demo, desktop, device, imac, machine, monitor, pc, screen - static const IconData lightDesktop = const IconDataLight(0xf108); - - /// Duotone Desktop icon - /// - /// https://fontawesome.com/icons/duotone_desktop?style=duotone - /// computer, cpu, demo, desktop, device, imac, machine, monitor, pc, screen - static const IconDataDuotone duotoneDesktop = const IconDataDuotone( - 0xf108, - secondary: const IconDataDuotone(0x10f108), - ); - - /// Regular Alternate Desktop icon - /// - /// https://fontawesome.com/icons/desktop-alt?style=regular - /// apple, computer, cpu, demo, desktop, device, imac, machine, monitor, screen - static const IconData desktopAlt = const IconDataRegular(0xf390); - - /// Solid Alternate Desktop icon - /// - /// https://fontawesome.com/icons/desktop-alt?style=solid - /// apple, computer, cpu, demo, desktop, device, imac, machine, monitor, screen - static const IconData solidDesktopAlt = const IconDataSolid(0xf390); - - /// Light Alternate Desktop icon - /// - /// https://fontawesome.com/icons/light_desktop-alt?style=light - /// apple, computer, cpu, demo, desktop, device, imac, machine, monitor, screen - static const IconData lightDesktopAlt = const IconDataLight(0xf390); - - /// Duotone Alternate Desktop icon - /// - /// https://fontawesome.com/icons/duotone_desktop-alt?style=duotone - /// apple, computer, cpu, demo, desktop, device, imac, machine, monitor, screen - static const IconDataDuotone duotoneDesktopAlt = const IconDataDuotone( - 0xf390, - secondary: const IconDataDuotone(0x10f390), - ); - - /// Brands DEV icon - /// - /// https://fontawesome.com/icons/dev?style=brands - static const IconData dev = const IconDataBrands(0xf6cc); - - /// Brands deviantART icon - /// - /// https://fontawesome.com/icons/deviantart?style=brands - static const IconData deviantart = const IconDataBrands(0xf1bd); - - /// Regular Dewpoint icon - /// - /// https://fontawesome.com/icons/dewpoint?style=regular - /// air, fog, humidity, temperature, water - static const IconData dewpoint = const IconDataRegular(0xf748); - - /// Solid Dewpoint icon - /// - /// https://fontawesome.com/icons/dewpoint?style=solid - /// air, fog, humidity, temperature, water - static const IconData solidDewpoint = const IconDataSolid(0xf748); - - /// Light Dewpoint icon - /// - /// https://fontawesome.com/icons/light_dewpoint?style=light - /// air, fog, humidity, temperature, water - static const IconData lightDewpoint = const IconDataLight(0xf748); - - /// Duotone Dewpoint icon - /// - /// https://fontawesome.com/icons/duotone_dewpoint?style=duotone - /// air, fog, humidity, temperature, water - static const IconDataDuotone duotoneDewpoint = const IconDataDuotone( - 0xf748, - secondary: const IconDataDuotone(0x10f748), - ); - - /// Regular Dharmachakra icon - /// - /// https://fontawesome.com/icons/dharmachakra?style=regular - /// buddhism, buddhist, wheel of dharma - static const IconData dharmachakra = const IconDataRegular(0xf655); - - /// Solid Dharmachakra icon - /// - /// https://fontawesome.com/icons/dharmachakra?style=solid - /// buddhism, buddhist, wheel of dharma - static const IconData solidDharmachakra = const IconDataSolid(0xf655); - - /// Light Dharmachakra icon - /// - /// https://fontawesome.com/icons/light_dharmachakra?style=light - /// buddhism, buddhist, wheel of dharma - static const IconData lightDharmachakra = const IconDataLight(0xf655); - - /// Duotone Dharmachakra icon - /// - /// https://fontawesome.com/icons/duotone_dharmachakra?style=duotone - /// buddhism, buddhist, wheel of dharma - static const IconDataDuotone duotoneDharmachakra = const IconDataDuotone( - 0xf655, - secondary: const IconDataDuotone(0x10f655), - ); - - /// Brands DHL icon - /// - /// https://fontawesome.com/icons/dhl?style=brands - /// Dalsey, Hillblom and Lynn, german, package, shipping - static const IconData dhl = const IconDataBrands(0xf790); - - /// Regular Diagnoses icon - /// - /// https://fontawesome.com/icons/diagnoses?style=regular - /// analyze, detect, diagnosis, examine, medicine - static const IconData diagnoses = const IconDataRegular(0xf470); - - /// Solid Diagnoses icon - /// - /// https://fontawesome.com/icons/diagnoses?style=solid - /// analyze, detect, diagnosis, examine, medicine - static const IconData solidDiagnoses = const IconDataSolid(0xf470); - - /// Light Diagnoses icon - /// - /// https://fontawesome.com/icons/light_diagnoses?style=light - /// analyze, detect, diagnosis, examine, medicine - static const IconData lightDiagnoses = const IconDataLight(0xf470); - - /// Duotone Diagnoses icon - /// - /// https://fontawesome.com/icons/duotone_diagnoses?style=duotone - /// analyze, detect, diagnosis, examine, medicine - static const IconDataDuotone duotoneDiagnoses = const IconDataDuotone( - 0xf470, - secondary: const IconDataDuotone(0x10f470), - ); - - /// Regular Diamond icon - /// - /// https://fontawesome.com/icons/diamond?style=regular - /// cards, gem, gemstone, poker, suit - static const IconData diamond = const IconDataRegular(0xf219); - - /// Solid Diamond icon - /// - /// https://fontawesome.com/icons/diamond?style=solid - /// cards, gem, gemstone, poker, suit - static const IconData solidDiamond = const IconDataSolid(0xf219); - - /// Light Diamond icon - /// - /// https://fontawesome.com/icons/light_diamond?style=light - /// cards, gem, gemstone, poker, suit - static const IconData lightDiamond = const IconDataLight(0xf219); - - /// Duotone Diamond icon - /// - /// https://fontawesome.com/icons/duotone_diamond?style=duotone - /// cards, gem, gemstone, poker, suit - static const IconDataDuotone duotoneDiamond = const IconDataDuotone( - 0xf219, - secondary: const IconDataDuotone(0x10f219), - ); - - /// Brands Diaspora icon - /// - /// https://fontawesome.com/icons/diaspora?style=brands - static const IconData diaspora = const IconDataBrands(0xf791); - - /// Regular Dice icon - /// - /// https://fontawesome.com/icons/dice?style=regular - /// chance, gambling, game, roll - static const IconData dice = const IconDataRegular(0xf522); - - /// Solid Dice icon - /// - /// https://fontawesome.com/icons/dice?style=solid - /// chance, gambling, game, roll - static const IconData solidDice = const IconDataSolid(0xf522); - - /// Light Dice icon - /// - /// https://fontawesome.com/icons/light_dice?style=light - /// chance, gambling, game, roll - static const IconData lightDice = const IconDataLight(0xf522); - - /// Duotone Dice icon - /// - /// https://fontawesome.com/icons/duotone_dice?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDice = const IconDataDuotone( - 0xf522, - secondary: const IconDataDuotone(0x10f522), - ); - - /// 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 = const IconDataRegular(0xf6cd); - - /// 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 = const IconDataSolid(0xf6cd); - - /// Light Dice D10 icon - /// - /// https://fontawesome.com/icons/light_dice-d10?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD10 = const IconDataLight(0xf6cd); - - /// Duotone Dice D10 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d10?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD10 = const IconDataDuotone( - 0xf6cd, - secondary: const IconDataDuotone(0x10f6cd), - ); - - /// 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 = const IconDataRegular(0xf6ce); - - /// 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 = const IconDataSolid(0xf6ce); - - /// Light Dice D12 icon - /// - /// https://fontawesome.com/icons/light_dice-d12?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD12 = const IconDataLight(0xf6ce); - - /// Duotone Dice D12 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d12?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD12 = const IconDataDuotone( - 0xf6ce, - secondary: const IconDataDuotone(0x10f6ce), - ); - - /// 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 = const IconDataRegular(0xf6cf); - - /// 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 = const IconDataSolid(0xf6cf); - - /// Light Dice D20 icon - /// - /// https://fontawesome.com/icons/light_dice-d20?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD20 = const IconDataLight(0xf6cf); - - /// Duotone Dice D20 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d20?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD20 = const IconDataDuotone( - 0xf6cf, - secondary: const IconDataDuotone(0x10f6cf), - ); - - /// 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 = const IconDataRegular(0xf6d0); - - /// 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 = const IconDataSolid(0xf6d0); - - /// Light Dice D4 icon - /// - /// https://fontawesome.com/icons/light_dice-d4?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD4 = const IconDataLight(0xf6d0); - - /// Duotone Dice D4 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d4?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD4 = const IconDataDuotone( - 0xf6d0, - secondary: const IconDataDuotone(0x10f6d0), - ); - - /// 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 = const IconDataRegular(0xf6d1); - - /// 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 = const IconDataSolid(0xf6d1); - - /// Light Dice D6 icon - /// - /// https://fontawesome.com/icons/light_dice-d6?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD6 = const IconDataLight(0xf6d1); - - /// Duotone Dice D6 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d6?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD6 = const IconDataDuotone( - 0xf6d1, - secondary: const IconDataDuotone(0x10f6d1), - ); - - /// 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 = const IconDataRegular(0xf6d2); - - /// 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 = const IconDataSolid(0xf6d2); - - /// Light Dice D8 icon - /// - /// https://fontawesome.com/icons/light_dice-d8?style=light - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconData lightDiceD8 = const IconDataLight(0xf6d2); - - /// Duotone Dice D8 icon - /// - /// https://fontawesome.com/icons/duotone_dice-d8?style=duotone - /// Dungeons & Dragons, chance, d&d, dnd, fantasy, gambling, game, roll - static const IconDataDuotone duotoneDiceD8 = const IconDataDuotone( - 0xf6d2, - secondary: const IconDataDuotone(0x10f6d2), - ); - - /// Regular Dice Five icon - /// - /// https://fontawesome.com/icons/dice-five?style=regular - /// chance, gambling, game, roll - static const IconData diceFive = const IconDataRegular(0xf523); - - /// Solid Dice Five icon - /// - /// https://fontawesome.com/icons/dice-five?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceFive = const IconDataSolid(0xf523); - - /// Light Dice Five icon - /// - /// https://fontawesome.com/icons/light_dice-five?style=light - /// chance, gambling, game, roll - static const IconData lightDiceFive = const IconDataLight(0xf523); - - /// Duotone Dice Five icon - /// - /// https://fontawesome.com/icons/duotone_dice-five?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceFive = const IconDataDuotone( - 0xf523, - secondary: const IconDataDuotone(0x10f523), - ); - - /// Regular Dice Four icon - /// - /// https://fontawesome.com/icons/dice-four?style=regular - /// chance, gambling, game, roll - static const IconData diceFour = const IconDataRegular(0xf524); - - /// Solid Dice Four icon - /// - /// https://fontawesome.com/icons/dice-four?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceFour = const IconDataSolid(0xf524); - - /// Light Dice Four icon - /// - /// https://fontawesome.com/icons/light_dice-four?style=light - /// chance, gambling, game, roll - static const IconData lightDiceFour = const IconDataLight(0xf524); - - /// Duotone Dice Four icon - /// - /// https://fontawesome.com/icons/duotone_dice-four?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceFour = const IconDataDuotone( - 0xf524, - secondary: const IconDataDuotone(0x10f524), - ); - - /// Regular Dice One icon - /// - /// https://fontawesome.com/icons/dice-one?style=regular - /// chance, gambling, game, roll - static const IconData diceOne = const IconDataRegular(0xf525); - - /// Solid Dice One icon - /// - /// https://fontawesome.com/icons/dice-one?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceOne = const IconDataSolid(0xf525); - - /// Light Dice One icon - /// - /// https://fontawesome.com/icons/light_dice-one?style=light - /// chance, gambling, game, roll - static const IconData lightDiceOne = const IconDataLight(0xf525); - - /// Duotone Dice One icon - /// - /// https://fontawesome.com/icons/duotone_dice-one?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceOne = const IconDataDuotone( - 0xf525, - secondary: const IconDataDuotone(0x10f525), - ); - - /// Regular Dice Six icon - /// - /// https://fontawesome.com/icons/dice-six?style=regular - /// chance, gambling, game, roll - static const IconData diceSix = const IconDataRegular(0xf526); - - /// Solid Dice Six icon - /// - /// https://fontawesome.com/icons/dice-six?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceSix = const IconDataSolid(0xf526); - - /// Light Dice Six icon - /// - /// https://fontawesome.com/icons/light_dice-six?style=light - /// chance, gambling, game, roll - static const IconData lightDiceSix = const IconDataLight(0xf526); - - /// Duotone Dice Six icon - /// - /// https://fontawesome.com/icons/duotone_dice-six?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceSix = const IconDataDuotone( - 0xf526, - secondary: const IconDataDuotone(0x10f526), - ); - - /// Regular Dice Three icon - /// - /// https://fontawesome.com/icons/dice-three?style=regular - /// chance, gambling, game, roll - static const IconData diceThree = const IconDataRegular(0xf527); - - /// Solid Dice Three icon - /// - /// https://fontawesome.com/icons/dice-three?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceThree = const IconDataSolid(0xf527); - - /// Light Dice Three icon - /// - /// https://fontawesome.com/icons/light_dice-three?style=light - /// chance, gambling, game, roll - static const IconData lightDiceThree = const IconDataLight(0xf527); - - /// Duotone Dice Three icon - /// - /// https://fontawesome.com/icons/duotone_dice-three?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceThree = const IconDataDuotone( - 0xf527, - secondary: const IconDataDuotone(0x10f527), - ); - - /// Regular Dice Two icon - /// - /// https://fontawesome.com/icons/dice-two?style=regular - /// chance, gambling, game, roll - static const IconData diceTwo = const IconDataRegular(0xf528); - - /// Solid Dice Two icon - /// - /// https://fontawesome.com/icons/dice-two?style=solid - /// chance, gambling, game, roll - static const IconData solidDiceTwo = const IconDataSolid(0xf528); - - /// Light Dice Two icon - /// - /// https://fontawesome.com/icons/light_dice-two?style=light - /// chance, gambling, game, roll - static const IconData lightDiceTwo = const IconDataLight(0xf528); - - /// Duotone Dice Two icon - /// - /// https://fontawesome.com/icons/duotone_dice-two?style=duotone - /// chance, gambling, game, roll - static const IconDataDuotone duotoneDiceTwo = const IconDataDuotone( - 0xf528, - secondary: const IconDataDuotone(0x10f528), - ); - - /// Brands Digg Logo icon - /// - /// https://fontawesome.com/icons/digg?style=brands - static const IconData digg = const IconDataBrands(0xf1a6); - - /// Regular Digging icon - /// - /// https://fontawesome.com/icons/digging?style=regular - /// building, construction, labor, shovel - static const IconData digging = const IconDataRegular(0xf85e); - - /// Solid Digging icon - /// - /// https://fontawesome.com/icons/digging?style=solid - /// building, construction, labor, shovel - static const IconData solidDigging = const IconDataSolid(0xf85e); - - /// Light Digging icon - /// - /// https://fontawesome.com/icons/light_digging?style=light - /// building, construction, labor, shovel - static const IconData lightDigging = const IconDataLight(0xf85e); - - /// Duotone Digging icon - /// - /// https://fontawesome.com/icons/duotone_digging?style=duotone - /// building, construction, labor, shovel - static const IconDataDuotone duotoneDigging = const IconDataDuotone( - 0xf85e, - secondary: const IconDataDuotone(0x10f85e), - ); - - /// Brands Digital Ocean icon - /// - /// https://fontawesome.com/icons/digital-ocean?style=brands - static const IconData digitalOcean = const IconDataBrands(0xf391); - - /// Regular Digital Tachograph icon - /// - /// https://fontawesome.com/icons/digital-tachograph?style=regular - /// data, distance, speed, tachometer - static const IconData digitalTachograph = const IconDataRegular(0xf566); - - /// Solid Digital Tachograph icon - /// - /// https://fontawesome.com/icons/digital-tachograph?style=solid - /// data, distance, speed, tachometer - static const IconData solidDigitalTachograph = const IconDataSolid(0xf566); - - /// Light Digital Tachograph icon - /// - /// https://fontawesome.com/icons/light_digital-tachograph?style=light - /// data, distance, speed, tachometer - static const IconData lightDigitalTachograph = const IconDataLight(0xf566); - - /// Duotone Digital Tachograph icon - /// - /// https://fontawesome.com/icons/duotone_digital-tachograph?style=duotone - /// data, distance, speed, tachometer - static const IconDataDuotone duotoneDigitalTachograph = const IconDataDuotone( - 0xf566, - secondary: const IconDataDuotone(0x10f566), - ); - - /// Regular Diploma icon - /// - /// https://fontawesome.com/icons/diploma?style=regular - /// award, certificate, college, education, graduate, graduation, university - static const IconData diploma = const IconDataRegular(0xf5ea); - - /// Solid Diploma icon - /// - /// https://fontawesome.com/icons/diploma?style=solid - /// award, certificate, college, education, graduate, graduation, university - static const IconData solidDiploma = const IconDataSolid(0xf5ea); - - /// Light Diploma icon - /// - /// https://fontawesome.com/icons/light_diploma?style=light - /// award, certificate, college, education, graduate, graduation, university - static const IconData lightDiploma = const IconDataLight(0xf5ea); - - /// Duotone Diploma icon - /// - /// https://fontawesome.com/icons/duotone_diploma?style=duotone - /// award, certificate, college, education, graduate, graduation, university - static const IconDataDuotone duotoneDiploma = const IconDataDuotone( - 0xf5ea, - secondary: const IconDataDuotone(0x10f5ea), - ); - - /// Regular Directions icon - /// - /// https://fontawesome.com/icons/directions?style=regular - /// map, navigation, sign, turn - static const IconData directions = const IconDataRegular(0xf5eb); - - /// Solid Directions icon - /// - /// https://fontawesome.com/icons/directions?style=solid - /// map, navigation, sign, turn - static const IconData solidDirections = const IconDataSolid(0xf5eb); - - /// Light Directions icon - /// - /// https://fontawesome.com/icons/light_directions?style=light - /// map, navigation, sign, turn - static const IconData lightDirections = const IconDataLight(0xf5eb); - - /// Duotone Directions icon - /// - /// https://fontawesome.com/icons/duotone_directions?style=duotone - /// map, navigation, sign, turn - static const IconDataDuotone duotoneDirections = const IconDataDuotone( - 0xf5eb, - secondary: const IconDataDuotone(0x10f5eb), - ); - - /// 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 = const IconDataRegular(0xf8b5); - - /// Solid Disc Drive icon - /// - /// 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 = const IconDataSolid(0xf8b5); - - /// Light Disc Drive icon - /// - /// https://fontawesome.com/icons/light_disc-drive?style=light - /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconData lightDiscDrive = const IconDataLight(0xf8b5); - - /// Duotone Disc Drive icon - /// - /// https://fontawesome.com/icons/duotone_disc-drive?style=duotone - /// blu-ray, cd, cd-rom, computer, dvd, load, music, optical drive, peripheral, tray, video - static const IconDataDuotone duotoneDiscDrive = const IconDataDuotone( - 0xf8b5, - secondary: const IconDataDuotone(0x10f8b5), - ); - - /// Brands Discord icon - /// - /// https://fontawesome.com/icons/discord?style=brands - static const IconData discord = const IconDataBrands(0xf392); - - /// Brands Discourse icon - /// - /// https://fontawesome.com/icons/discourse?style=brands - static const IconData discourse = const IconDataBrands(0xf393); - - /// Regular Disease icon - /// - /// https://fontawesome.com/icons/disease?style=regular - /// bacteria, cancer, covid-19, illness, infection, sickness, virus - static const IconData disease = const IconDataRegular(0xf7fa); - - /// Solid Disease icon - /// - /// https://fontawesome.com/icons/disease?style=solid - /// bacteria, cancer, covid-19, illness, infection, sickness, virus - static const IconData solidDisease = const IconDataSolid(0xf7fa); - - /// Light Disease icon - /// - /// https://fontawesome.com/icons/light_disease?style=light - /// bacteria, cancer, covid-19, illness, infection, sickness, virus - static const IconData lightDisease = const IconDataLight(0xf7fa); - - /// Duotone Disease icon - /// - /// https://fontawesome.com/icons/duotone_disease?style=duotone - /// bacteria, cancer, covid-19, illness, infection, sickness, virus - static const IconDataDuotone duotoneDisease = const IconDataDuotone( - 0xf7fa, - secondary: const IconDataDuotone(0x10f7fa), - ); - - /// Regular Divide icon - /// - /// https://fontawesome.com/icons/divide?style=regular - /// arithmetic, calculus, division, math - static const IconData divide = const IconDataRegular(0xf529); - - /// Solid Divide icon - /// - /// https://fontawesome.com/icons/divide?style=solid - /// arithmetic, calculus, division, math - static const IconData solidDivide = const IconDataSolid(0xf529); - - /// Light Divide icon - /// - /// https://fontawesome.com/icons/light_divide?style=light - /// arithmetic, calculus, division, math - static const IconData lightDivide = const IconDataLight(0xf529); - - /// Duotone Divide icon - /// - /// https://fontawesome.com/icons/duotone_divide?style=duotone - /// arithmetic, calculus, division, math - static const IconDataDuotone duotoneDivide = const IconDataDuotone( - 0xf529, - secondary: const IconDataDuotone(0x10f529), - ); - - /// Regular Dizzy Face icon - /// - /// https://fontawesome.com/icons/dizzy?style=regular - /// dazed, dead, disapprove, emoticon, face - static const IconData dizzy = const IconDataRegular(0xf567); - - /// Solid Dizzy Face icon - /// - /// https://fontawesome.com/icons/dizzy?style=solid - /// dazed, dead, disapprove, emoticon, face - static const IconData solidDizzy = const IconDataSolid(0xf567); - - /// Light Dizzy Face icon - /// - /// https://fontawesome.com/icons/light_dizzy?style=light - /// dazed, dead, disapprove, emoticon, face - static const IconData lightDizzy = const IconDataLight(0xf567); - - /// Duotone Dizzy Face icon - /// - /// https://fontawesome.com/icons/duotone_dizzy?style=duotone - /// dazed, dead, disapprove, emoticon, face - static const IconDataDuotone duotoneDizzy = const IconDataDuotone( - 0xf567, - secondary: const IconDataDuotone(0x10f567), - ); - - /// Regular DNA icon - /// - /// https://fontawesome.com/icons/dna?style=regular - /// double helix, genetic, helix, molecule, protein - static const IconData dna = const IconDataRegular(0xf471); - - /// Solid DNA icon - /// - /// https://fontawesome.com/icons/dna?style=solid - /// double helix, genetic, helix, molecule, protein - static const IconData solidDna = const IconDataSolid(0xf471); - - /// Light DNA icon - /// - /// https://fontawesome.com/icons/light_dna?style=light - /// double helix, genetic, helix, molecule, protein - static const IconData lightDna = const IconDataLight(0xf471); - - /// Duotone DNA icon - /// - /// https://fontawesome.com/icons/duotone_dna?style=duotone - /// double helix, genetic, helix, molecule, protein - static const IconDataDuotone duotoneDna = const IconDataDuotone( - 0xf471, - secondary: const IconDataDuotone(0x10f471), - ); - - /// Regular Do Not-enter icon - /// - /// https://fontawesome.com/icons/do-not-enter?style=regular - /// closed, traffic, warning - static const IconData doNotEnter = const IconDataRegular(0xf5ec); - - /// Solid Do Not-enter icon - /// - /// https://fontawesome.com/icons/do-not-enter?style=solid - /// closed, traffic, warning - static const IconData solidDoNotEnter = const IconDataSolid(0xf5ec); - - /// Light Do Not-enter icon - /// - /// https://fontawesome.com/icons/light_do-not-enter?style=light - /// closed, traffic, warning - static const IconData lightDoNotEnter = const IconDataLight(0xf5ec); - - /// Duotone Do Not-enter icon - /// - /// https://fontawesome.com/icons/duotone_do-not-enter?style=duotone - /// closed, traffic, warning - static const IconDataDuotone duotoneDoNotEnter = const IconDataDuotone( - 0xf5ec, - secondary: const IconDataDuotone(0x10f5ec), - ); - - /// Brands DocHub icon - /// - /// https://fontawesome.com/icons/dochub?style=brands - static const IconData dochub = const IconDataBrands(0xf394); - - /// Brands Docker icon - /// - /// https://fontawesome.com/icons/docker?style=brands - static const IconData docker = const IconDataBrands(0xf395); - - /// Regular Dog icon - /// - /// https://fontawesome.com/icons/dog?style=regular - /// animal, canine, fauna, mammal, pet, pooch, puppy, woof - static const IconData dog = const IconDataRegular(0xf6d3); - - /// Solid Dog icon - /// - /// https://fontawesome.com/icons/dog?style=solid - /// animal, canine, fauna, mammal, pet, pooch, puppy, woof - static const IconData solidDog = const IconDataSolid(0xf6d3); - - /// Light Dog icon - /// - /// https://fontawesome.com/icons/light_dog?style=light - /// animal, canine, fauna, mammal, pet, pooch, puppy, woof - static const IconData lightDog = const IconDataLight(0xf6d3); - - /// Duotone Dog icon - /// - /// https://fontawesome.com/icons/duotone_dog?style=duotone - /// animal, canine, fauna, mammal, pet, pooch, puppy, woof - static const IconDataDuotone duotoneDog = const IconDataDuotone( - 0xf6d3, - secondary: const IconDataDuotone(0x10f6d3), - ); - - /// Regular Leashed Dog icon - /// - /// https://fontawesome.com/icons/dog-leashed?style=regular - /// animal, canine, fauna, mammal, pet, pooch, puppy, walk, woof - static const IconData dogLeashed = const IconDataRegular(0xf6d4); - - /// Solid Leashed Dog icon - /// - /// https://fontawesome.com/icons/dog-leashed?style=solid - /// animal, canine, fauna, mammal, pet, pooch, puppy, walk, woof - static const IconData solidDogLeashed = const IconDataSolid(0xf6d4); - - /// Light Leashed Dog icon - /// - /// https://fontawesome.com/icons/light_dog-leashed?style=light - /// animal, canine, fauna, mammal, pet, pooch, puppy, walk, woof - static const IconData lightDogLeashed = const IconDataLight(0xf6d4); - - /// Duotone Leashed Dog icon - /// - /// https://fontawesome.com/icons/duotone_dog-leashed?style=duotone - /// animal, canine, fauna, mammal, pet, pooch, puppy, walk, woof - static const IconDataDuotone duotoneDogLeashed = const IconDataDuotone( - 0xf6d4, - secondary: const IconDataDuotone(0x10f6d4), - ); - - /// Regular Dollar Sign icon - /// - /// https://fontawesome.com/icons/dollar-sign?style=regular - /// $, cost, dollar-sign, money, price, usd - static const IconData dollarSign = const IconDataRegular(0xf155); - - /// Solid Dollar Sign icon - /// - /// https://fontawesome.com/icons/dollar-sign?style=solid - /// $, cost, dollar-sign, money, price, usd - static const IconData solidDollarSign = const IconDataSolid(0xf155); - - /// Light Dollar Sign icon - /// - /// https://fontawesome.com/icons/light_dollar-sign?style=light - /// $, cost, dollar-sign, money, price, usd - static const IconData lightDollarSign = const IconDataLight(0xf155); - - /// Duotone Dollar Sign icon - /// - /// https://fontawesome.com/icons/duotone_dollar-sign?style=duotone - /// $, cost, dollar-sign, money, price, usd - static const IconDataDuotone duotoneDollarSign = const IconDataDuotone( - 0xf155, - secondary: const IconDataDuotone(0x10f155), - ); - - /// Regular Dolly icon - /// - /// https://fontawesome.com/icons/dolly?style=regular - /// carry, shipping, transport - static const IconData dolly = const IconDataRegular(0xf472); - - /// Solid Dolly icon - /// - /// https://fontawesome.com/icons/dolly?style=solid - /// carry, shipping, transport - static const IconData solidDolly = const IconDataSolid(0xf472); - - /// Light Dolly icon - /// - /// https://fontawesome.com/icons/light_dolly?style=light - /// carry, shipping, transport - static const IconData lightDolly = const IconDataLight(0xf472); - - /// Duotone Dolly icon - /// - /// https://fontawesome.com/icons/duotone_dolly?style=duotone - /// carry, shipping, transport - static const IconDataDuotone duotoneDolly = const IconDataDuotone( - 0xf472, - secondary: const IconDataDuotone(0x10f472), - ); - - /// Regular Dolly Empty icon - /// - /// https://fontawesome.com/icons/dolly-empty?style=regular - /// carry, inventory, shipping, transport - static const IconData dollyEmpty = const IconDataRegular(0xf473); - - /// Solid Dolly Empty icon - /// - /// https://fontawesome.com/icons/dolly-empty?style=solid - /// carry, inventory, shipping, transport - static const IconData solidDollyEmpty = const IconDataSolid(0xf473); - - /// Light Dolly Empty icon - /// - /// https://fontawesome.com/icons/light_dolly-empty?style=light - /// carry, inventory, shipping, transport - static const IconData lightDollyEmpty = const IconDataLight(0xf473); - - /// Duotone Dolly Empty icon - /// - /// https://fontawesome.com/icons/duotone_dolly-empty?style=duotone - /// carry, inventory, shipping, transport - static const IconDataDuotone duotoneDollyEmpty = const IconDataDuotone( - 0xf473, - secondary: const IconDataDuotone(0x10f473), - ); - - /// Regular Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/dolly-flatbed?style=regular - /// carry, inventory, shipping, transport - static const IconData dollyFlatbed = const IconDataRegular(0xf474); - - /// Solid Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/dolly-flatbed?style=solid - /// carry, inventory, shipping, transport - static const IconData solidDollyFlatbed = const IconDataSolid(0xf474); - - /// Light Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/light_dolly-flatbed?style=light - /// carry, inventory, shipping, transport - static const IconData lightDollyFlatbed = const IconDataLight(0xf474); - - /// Duotone Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/duotone_dolly-flatbed?style=duotone - /// carry, inventory, shipping, transport - static const IconDataDuotone duotoneDollyFlatbed = const IconDataDuotone( - 0xf474, - secondary: const IconDataDuotone(0x10f474), - ); - - /// Regular Alternate Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/dolly-flatbed-alt?style=regular - /// carry, inventory, shipping, transport - static const IconData dollyFlatbedAlt = const IconDataRegular(0xf475); - - /// Solid Alternate Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/dolly-flatbed-alt?style=solid - /// carry, inventory, shipping, transport - static const IconData solidDollyFlatbedAlt = const IconDataSolid(0xf475); - - /// Light Alternate Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/light_dolly-flatbed-alt?style=light - /// carry, inventory, shipping, transport - static const IconData lightDollyFlatbedAlt = const IconDataLight(0xf475); - - /// Duotone Alternate Dolly Flatbed icon - /// - /// https://fontawesome.com/icons/duotone_dolly-flatbed-alt?style=duotone - /// carry, inventory, shipping, transport - static const IconDataDuotone duotoneDollyFlatbedAlt = const IconDataDuotone( - 0xf475, - secondary: const IconDataDuotone(0x10f475), - ); - - /// Regular Dolly Flatbed-empty icon - /// - /// https://fontawesome.com/icons/dolly-flatbed-empty?style=regular - /// carry, inventory, shipping, transport - static const IconData dollyFlatbedEmpty = const IconDataRegular(0xf476); - - /// Solid Dolly Flatbed-empty icon - /// - /// https://fontawesome.com/icons/dolly-flatbed-empty?style=solid - /// carry, inventory, shipping, transport - static const IconData solidDollyFlatbedEmpty = const IconDataSolid(0xf476); - - /// Light Dolly Flatbed-empty icon - /// - /// https://fontawesome.com/icons/light_dolly-flatbed-empty?style=light - /// carry, inventory, shipping, transport - static const IconData lightDollyFlatbedEmpty = const IconDataLight(0xf476); - - /// Duotone Dolly Flatbed-empty icon - /// - /// https://fontawesome.com/icons/duotone_dolly-flatbed-empty?style=duotone - /// carry, inventory, shipping, transport - static const IconDataDuotone duotoneDollyFlatbedEmpty = const IconDataDuotone( - 0xf476, - secondary: const IconDataDuotone(0x10f476), - ); - - /// Regular Donate icon - /// - /// https://fontawesome.com/icons/donate?style=regular - /// contribute, generosity, gift, give - static const IconData donate = const IconDataRegular(0xf4b9); - - /// Solid Donate icon - /// - /// https://fontawesome.com/icons/donate?style=solid - /// contribute, generosity, gift, give - static const IconData solidDonate = const IconDataSolid(0xf4b9); - - /// Light Donate icon - /// - /// https://fontawesome.com/icons/light_donate?style=light - /// contribute, generosity, gift, give - static const IconData lightDonate = const IconDataLight(0xf4b9); - - /// Duotone Donate icon - /// - /// https://fontawesome.com/icons/duotone_donate?style=duotone - /// contribute, generosity, gift, give - static const IconDataDuotone duotoneDonate = const IconDataDuotone( - 0xf4b9, - secondary: const IconDataDuotone(0x10f4b9), - ); - - /// Regular Door Closed icon - /// - /// https://fontawesome.com/icons/door-closed?style=regular - /// enter, exit, locked - static const IconData doorClosed = const IconDataRegular(0xf52a); - - /// Solid Door Closed icon - /// - /// https://fontawesome.com/icons/door-closed?style=solid - /// enter, exit, locked - static const IconData solidDoorClosed = const IconDataSolid(0xf52a); - - /// Light Door Closed icon - /// - /// https://fontawesome.com/icons/light_door-closed?style=light - /// enter, exit, locked - static const IconData lightDoorClosed = const IconDataLight(0xf52a); - - /// Duotone Door Closed icon - /// - /// https://fontawesome.com/icons/duotone_door-closed?style=duotone - /// enter, exit, locked - static const IconDataDuotone duotoneDoorClosed = const IconDataDuotone( - 0xf52a, - secondary: const IconDataDuotone(0x10f52a), - ); - - /// Regular Door Open icon - /// - /// https://fontawesome.com/icons/door-open?style=regular - /// enter, exit, welcome - static const IconData doorOpen = const IconDataRegular(0xf52b); - - /// Solid Door Open icon - /// - /// https://fontawesome.com/icons/door-open?style=solid - /// enter, exit, welcome - static const IconData solidDoorOpen = const IconDataSolid(0xf52b); - - /// Light Door Open icon - /// - /// https://fontawesome.com/icons/light_door-open?style=light - /// enter, exit, welcome - static const IconData lightDoorOpen = const IconDataLight(0xf52b); - - /// Duotone Door Open icon - /// - /// https://fontawesome.com/icons/duotone_door-open?style=duotone - /// enter, exit, welcome - static const IconDataDuotone duotoneDoorOpen = const IconDataDuotone( - 0xf52b, - secondary: const IconDataDuotone(0x10f52b), - ); - - /// Regular Dot Circle icon - /// - /// https://fontawesome.com/icons/dot-circle?style=regular - /// bullseye, notification, target - static const IconData dotCircle = const IconDataRegular(0xf192); - - /// Solid Dot Circle icon - /// - /// https://fontawesome.com/icons/dot-circle?style=solid - /// bullseye, notification, target - static const IconData solidDotCircle = const IconDataSolid(0xf192); - - /// Light Dot Circle icon - /// - /// https://fontawesome.com/icons/light_dot-circle?style=light - /// bullseye, notification, target - static const IconData lightDotCircle = const IconDataLight(0xf192); - - /// Duotone Dot Circle icon - /// - /// https://fontawesome.com/icons/duotone_dot-circle?style=duotone - /// bullseye, notification, target - static const IconDataDuotone duotoneDotCircle = const IconDataDuotone( - 0xf192, - secondary: const IconDataDuotone(0x10f192), - ); - - /// Regular Dove icon - /// - /// https://fontawesome.com/icons/dove?style=regular - /// bird, fauna, flying, peace, war - static const IconData dove = const IconDataRegular(0xf4ba); - - /// Solid Dove icon - /// - /// https://fontawesome.com/icons/dove?style=solid - /// bird, fauna, flying, peace, war - static const IconData solidDove = const IconDataSolid(0xf4ba); - - /// Light Dove icon - /// - /// https://fontawesome.com/icons/light_dove?style=light - /// bird, fauna, flying, peace, war - static const IconData lightDove = const IconDataLight(0xf4ba); - - /// Duotone Dove icon - /// - /// https://fontawesome.com/icons/duotone_dove?style=duotone - /// bird, fauna, flying, peace, war - static const IconDataDuotone duotoneDove = const IconDataDuotone( - 0xf4ba, - secondary: const IconDataDuotone(0x10f4ba), - ); - - /// Regular Download icon - /// - /// https://fontawesome.com/icons/download?style=regular - /// export, hard drive, save, transfer - static const IconData download = const IconDataRegular(0xf019); - - /// Solid Download icon - /// - /// https://fontawesome.com/icons/download?style=solid - /// export, hard drive, save, transfer - static const IconData solidDownload = const IconDataSolid(0xf019); - - /// Light Download icon - /// - /// https://fontawesome.com/icons/light_download?style=light - /// export, hard drive, save, transfer - static const IconData lightDownload = const IconDataLight(0xf019); - - /// Duotone Download icon - /// - /// https://fontawesome.com/icons/duotone_download?style=duotone - /// export, hard drive, save, transfer - static const IconDataDuotone duotoneDownload = const IconDataDuotone( - 0xf019, - secondary: const IconDataDuotone(0x10f019), - ); - - /// Brands Draft2digital icon - /// - /// https://fontawesome.com/icons/draft2digital?style=brands - static const IconData draft2digital = const IconDataBrands(0xf396); - - /// Regular Drafting Compass icon - /// - /// https://fontawesome.com/icons/drafting-compass?style=regular - /// design, map, mechanical drawing, plot, plotting - static const IconData draftingCompass = const IconDataRegular(0xf568); - - /// Solid Drafting Compass icon - /// - /// https://fontawesome.com/icons/drafting-compass?style=solid - /// design, map, mechanical drawing, plot, plotting - static const IconData solidDraftingCompass = const IconDataSolid(0xf568); - - /// Light Drafting Compass icon - /// - /// https://fontawesome.com/icons/light_drafting-compass?style=light - /// design, map, mechanical drawing, plot, plotting - static const IconData lightDraftingCompass = const IconDataLight(0xf568); - - /// Duotone Drafting Compass icon - /// - /// https://fontawesome.com/icons/duotone_drafting-compass?style=duotone - /// design, map, mechanical drawing, plot, plotting - static const IconDataDuotone duotoneDraftingCompass = const IconDataDuotone( - 0xf568, - secondary: const IconDataDuotone(0x10f568), - ); - - /// Regular Dragon icon - /// - /// https://fontawesome.com/icons/dragon?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, fire, lizard, serpent - static const IconData dragon = const IconDataRegular(0xf6d5); - - /// Solid Dragon icon - /// - /// https://fontawesome.com/icons/dragon?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, fire, lizard, serpent - static const IconData solidDragon = const IconDataSolid(0xf6d5); - - /// Light Dragon icon - /// - /// https://fontawesome.com/icons/light_dragon?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, fire, lizard, serpent - static const IconData lightDragon = const IconDataLight(0xf6d5); - - /// Duotone Dragon icon - /// - /// https://fontawesome.com/icons/duotone_dragon?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, fire, lizard, serpent - static const IconDataDuotone duotoneDragon = const IconDataDuotone( - 0xf6d5, - secondary: const IconDataDuotone(0x10f6d5), - ); - - /// Regular Draw Circle icon - /// - /// https://fontawesome.com/icons/draw-circle?style=regular - /// anchors, lines, object, render, shape - static const IconData drawCircle = const IconDataRegular(0xf5ed); - - /// Solid Draw Circle icon - /// - /// https://fontawesome.com/icons/draw-circle?style=solid - /// anchors, lines, object, render, shape - static const IconData solidDrawCircle = const IconDataSolid(0xf5ed); - - /// Light Draw Circle icon - /// - /// https://fontawesome.com/icons/light_draw-circle?style=light - /// anchors, lines, object, render, shape - static const IconData lightDrawCircle = const IconDataLight(0xf5ed); - - /// Duotone Draw Circle icon - /// - /// https://fontawesome.com/icons/duotone_draw-circle?style=duotone - /// anchors, lines, object, render, shape - static const IconDataDuotone duotoneDrawCircle = const IconDataDuotone( - 0xf5ed, - secondary: const IconDataDuotone(0x10f5ed), - ); - - /// Regular Draw Polygon icon - /// - /// https://fontawesome.com/icons/draw-polygon?style=regular - /// anchors, lines, object, render, shape - static const IconData drawPolygon = const IconDataRegular(0xf5ee); - - /// Solid Draw Polygon icon - /// - /// https://fontawesome.com/icons/draw-polygon?style=solid - /// anchors, lines, object, render, shape - static const IconData solidDrawPolygon = const IconDataSolid(0xf5ee); - - /// Light Draw Polygon icon - /// - /// https://fontawesome.com/icons/light_draw-polygon?style=light - /// anchors, lines, object, render, shape - static const IconData lightDrawPolygon = const IconDataLight(0xf5ee); - - /// Duotone Draw Polygon icon - /// - /// https://fontawesome.com/icons/duotone_draw-polygon?style=duotone - /// anchors, lines, object, render, shape - static const IconDataDuotone duotoneDrawPolygon = const IconDataDuotone( - 0xf5ee, - secondary: const IconDataDuotone(0x10f5ee), - ); - - /// Regular Draw Square icon - /// - /// https://fontawesome.com/icons/draw-square?style=regular - /// anchors, lines, object, render, shape - static const IconData drawSquare = const IconDataRegular(0xf5ef); - - /// Solid Draw Square icon - /// - /// https://fontawesome.com/icons/draw-square?style=solid - /// anchors, lines, object, render, shape - static const IconData solidDrawSquare = const IconDataSolid(0xf5ef); - - /// Light Draw Square icon - /// - /// https://fontawesome.com/icons/light_draw-square?style=light - /// anchors, lines, object, render, shape - static const IconData lightDrawSquare = const IconDataLight(0xf5ef); - - /// Duotone Draw Square icon - /// - /// https://fontawesome.com/icons/duotone_draw-square?style=duotone - /// anchors, lines, object, render, shape - static const IconDataDuotone duotoneDrawSquare = const IconDataDuotone( - 0xf5ef, - secondary: const IconDataDuotone(0x10f5ef), - ); - - /// Regular Dreidel icon - /// - /// https://fontawesome.com/icons/dreidel?style=regular - /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData dreidel = const IconDataRegular(0xf792); - - /// Solid Dreidel icon - /// - /// https://fontawesome.com/icons/dreidel?style=solid - /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData solidDreidel = const IconDataSolid(0xf792); - - /// Light Dreidel icon - /// - /// https://fontawesome.com/icons/light_dreidel?style=light - /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconData lightDreidel = const IconDataLight(0xf792); - - /// Duotone Dreidel icon - /// - /// https://fontawesome.com/icons/duotone_dreidel?style=duotone - /// clay, hanukkah, holiday, jewish, judaism, toy - static const IconDataDuotone duotoneDreidel = const IconDataDuotone( - 0xf792, - secondary: const IconDataDuotone(0x10f792), - ); - - /// Brands Dribbble icon - /// - /// https://fontawesome.com/icons/dribbble?style=brands - static const IconData dribbble = const IconDataBrands(0xf17d); - - /// Brands Dribbble Square icon - /// - /// https://fontawesome.com/icons/dribbble-square?style=brands - static const IconData dribbbleSquare = const IconDataBrands(0xf397); - - /// Regular Drone icon - /// - /// https://fontawesome.com/icons/drone?style=regular - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData drone = const IconDataRegular(0xf85f); - - /// Solid Drone icon - /// - /// https://fontawesome.com/icons/drone?style=solid - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData solidDrone = const IconDataSolid(0xf85f); - - /// Light Drone icon - /// - /// https://fontawesome.com/icons/light_drone?style=light - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData lightDrone = const IconDataLight(0xf85f); - - /// Duotone Drone icon - /// - /// https://fontawesome.com/icons/duotone_drone?style=duotone - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconDataDuotone duotoneDrone = const IconDataDuotone( - 0xf85f, - secondary: const IconDataDuotone(0x10f85f), - ); - - /// Regular Alternate Drone icon - /// - /// https://fontawesome.com/icons/drone-alt?style=regular - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData droneAlt = const IconDataRegular(0xf860); - - /// Solid Alternate Drone icon - /// - /// https://fontawesome.com/icons/drone-alt?style=solid - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData solidDroneAlt = const IconDataSolid(0xf860); - - /// Light Alternate Drone icon - /// - /// https://fontawesome.com/icons/light_drone-alt?style=light - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconData lightDroneAlt = const IconDataLight(0xf860); - - /// Duotone Alternate Drone icon - /// - /// https://fontawesome.com/icons/duotone_drone-alt?style=duotone - /// aerial, big brother, surveillance, uav, unmanned, vehicle - static const IconDataDuotone duotoneDroneAlt = const IconDataDuotone( - 0xf860, - secondary: const IconDataDuotone(0x10f860), - ); - - /// Brands Dropbox icon - /// - /// https://fontawesome.com/icons/dropbox?style=brands - static const IconData dropbox = const IconDataBrands(0xf16b); - - /// Regular Drum icon - /// - /// https://fontawesome.com/icons/drum?style=regular - /// instrument, music, percussion, snare, sound - static const IconData drum = const IconDataRegular(0xf569); - - /// Solid Drum icon - /// - /// https://fontawesome.com/icons/drum?style=solid - /// instrument, music, percussion, snare, sound - static const IconData solidDrum = const IconDataSolid(0xf569); - - /// Light Drum icon - /// - /// https://fontawesome.com/icons/light_drum?style=light - /// instrument, music, percussion, snare, sound - static const IconData lightDrum = const IconDataLight(0xf569); - - /// Duotone Drum icon - /// - /// https://fontawesome.com/icons/duotone_drum?style=duotone - /// instrument, music, percussion, snare, sound - static const IconDataDuotone duotoneDrum = const IconDataDuotone( - 0xf569, - secondary: const IconDataDuotone(0x10f569), - ); - - /// 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 = const IconDataRegular(0xf56a); - - /// 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 = const IconDataSolid(0xf56a); - - /// Light Drum Steelpan icon - /// - /// https://fontawesome.com/icons/light_drum-steelpan?style=light - /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconData lightDrumSteelpan = const IconDataLight(0xf56a); - - /// Duotone Drum Steelpan icon - /// - /// https://fontawesome.com/icons/duotone_drum-steelpan?style=duotone - /// calypso, instrument, music, percussion, reggae, snare, sound, steel, tropical - static const IconDataDuotone duotoneDrumSteelpan = const IconDataDuotone( - 0xf56a, - secondary: const IconDataDuotone(0x10f56a), - ); - - /// Regular Drumstick icon - /// - /// https://fontawesome.com/icons/drumstick?style=regular - /// bone, chicken, leg, meat, poultry, turkey - static const IconData drumstick = const IconDataRegular(0xf6d6); - - /// Solid Drumstick icon - /// - /// https://fontawesome.com/icons/drumstick?style=solid - /// bone, chicken, leg, meat, poultry, turkey - static const IconData solidDrumstick = const IconDataSolid(0xf6d6); - - /// Light Drumstick icon - /// - /// https://fontawesome.com/icons/light_drumstick?style=light - /// bone, chicken, leg, meat, poultry, turkey - static const IconData lightDrumstick = const IconDataLight(0xf6d6); - - /// Duotone Drumstick icon - /// - /// https://fontawesome.com/icons/duotone_drumstick?style=duotone - /// bone, chicken, leg, meat, poultry, turkey - static const IconDataDuotone duotoneDrumstick = const IconDataDuotone( - 0xf6d6, - secondary: const IconDataDuotone(0x10f6d6), - ); - - /// Regular Drumstick with Bite Taken Out icon - /// - /// https://fontawesome.com/icons/drumstick-bite?style=regular - /// bone, chicken, leg, meat, poultry, turkey - static const IconData drumstickBite = const IconDataRegular(0xf6d7); - - /// Solid Drumstick with Bite Taken Out icon - /// - /// https://fontawesome.com/icons/drumstick-bite?style=solid - /// bone, chicken, leg, meat, poultry, turkey - static const IconData solidDrumstickBite = const IconDataSolid(0xf6d7); - - /// Light Drumstick with Bite Taken Out icon - /// - /// https://fontawesome.com/icons/light_drumstick-bite?style=light - /// bone, chicken, leg, meat, poultry, turkey - static const IconData lightDrumstickBite = const IconDataLight(0xf6d7); - - /// Duotone Drumstick with Bite Taken Out icon - /// - /// https://fontawesome.com/icons/duotone_drumstick-bite?style=duotone - /// bone, chicken, leg, meat, poultry, turkey - static const IconDataDuotone duotoneDrumstickBite = const IconDataDuotone( - 0xf6d7, - secondary: const IconDataDuotone(0x10f6d7), - ); - - /// Brands Drupal Logo icon - /// - /// https://fontawesome.com/icons/drupal?style=brands - static const IconData drupal = const IconDataBrands(0xf1a9); - - /// Regular Dryer icon - /// - /// https://fontawesome.com/icons/dryer?style=regular - /// clean, clothes, laundromat, laundry, washing machine - static const IconData dryer = const IconDataRegular(0xf861); - - /// Solid Dryer icon - /// - /// https://fontawesome.com/icons/dryer?style=solid - /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidDryer = const IconDataSolid(0xf861); - - /// Light Dryer icon - /// - /// https://fontawesome.com/icons/light_dryer?style=light - /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightDryer = const IconDataLight(0xf861); - - /// Duotone Dryer icon - /// - /// https://fontawesome.com/icons/duotone_dryer?style=duotone - /// clean, clothes, laundromat, laundry, washing machine - static const IconDataDuotone duotoneDryer = const IconDataDuotone( - 0xf861, - secondary: const IconDataDuotone(0x10f861), - ); - - /// Regular Alternate Dryer icon - /// - /// https://fontawesome.com/icons/dryer-alt?style=regular - /// clean, clothes, laundromat, laundry, washing machine - static const IconData dryerAlt = const IconDataRegular(0xf862); - - /// Solid Alternate Dryer icon - /// - /// https://fontawesome.com/icons/dryer-alt?style=solid - /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidDryerAlt = const IconDataSolid(0xf862); - - /// Light Alternate Dryer icon - /// - /// https://fontawesome.com/icons/light_dryer-alt?style=light - /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightDryerAlt = const IconDataLight(0xf862); - - /// Duotone Alternate Dryer icon - /// - /// https://fontawesome.com/icons/duotone_dryer-alt?style=duotone - /// clean, clothes, laundromat, laundry, washing machine - static const IconDataDuotone duotoneDryerAlt = const IconDataDuotone( - 0xf862, - secondary: const IconDataDuotone(0x10f862), - ); - - /// Regular Duck icon - /// - /// https://fontawesome.com/icons/duck?style=regular - /// bath, bird, fauna, quack, rubber - static const IconData duck = const IconDataRegular(0xf6d8); - - /// Solid Duck icon - /// - /// https://fontawesome.com/icons/duck?style=solid - /// bath, bird, fauna, quack, rubber - static const IconData solidDuck = const IconDataSolid(0xf6d8); - - /// Light Duck icon - /// - /// https://fontawesome.com/icons/light_duck?style=light - /// bath, bird, fauna, quack, rubber - static const IconData lightDuck = const IconDataLight(0xf6d8); - - /// Duotone Duck icon - /// - /// https://fontawesome.com/icons/duotone_duck?style=duotone - /// bath, bird, fauna, quack, rubber - static const IconDataDuotone duotoneDuck = const IconDataDuotone( - 0xf6d8, - secondary: const IconDataDuotone(0x10f6d8), - ); - - /// Regular Dumbbell icon - /// - /// https://fontawesome.com/icons/dumbbell?style=regular - /// exercise, gym, strength, weight, weight-lifting - static const IconData dumbbell = const IconDataRegular(0xf44b); - - /// Solid Dumbbell icon - /// - /// https://fontawesome.com/icons/dumbbell?style=solid - /// exercise, gym, strength, weight, weight-lifting - static const IconData solidDumbbell = const IconDataSolid(0xf44b); - - /// Light Dumbbell icon - /// - /// https://fontawesome.com/icons/light_dumbbell?style=light - /// exercise, gym, strength, weight, weight-lifting - static const IconData lightDumbbell = const IconDataLight(0xf44b); - - /// Duotone Dumbbell icon - /// - /// https://fontawesome.com/icons/duotone_dumbbell?style=duotone - /// exercise, gym, strength, weight, weight-lifting - static const IconDataDuotone duotoneDumbbell = const IconDataDuotone( - 0xf44b, - secondary: const IconDataDuotone(0x10f44b), - ); - - /// Regular Dumpster icon - /// - /// https://fontawesome.com/icons/dumpster?style=regular - /// alley, bin, commercial, trash, waste - static const IconData dumpster = const IconDataRegular(0xf793); - - /// Solid Dumpster icon - /// - /// https://fontawesome.com/icons/dumpster?style=solid - /// alley, bin, commercial, trash, waste - static const IconData solidDumpster = const IconDataSolid(0xf793); - - /// Light Dumpster icon - /// - /// https://fontawesome.com/icons/light_dumpster?style=light - /// alley, bin, commercial, trash, waste - static const IconData lightDumpster = const IconDataLight(0xf793); - - /// Duotone Dumpster icon - /// - /// https://fontawesome.com/icons/duotone_dumpster?style=duotone - /// alley, bin, commercial, trash, waste - static const IconDataDuotone duotoneDumpster = const IconDataDuotone( - 0xf793, - secondary: const IconDataDuotone(0x10f793), - ); - - /// 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 = const IconDataRegular(0xf794); - - /// 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 = const IconDataSolid(0xf794); - - /// Light Dumpster Fire icon - /// - /// https://fontawesome.com/icons/light_dumpster-fire?style=light - /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconData lightDumpsterFire = const IconDataLight(0xf794); - - /// Duotone Dumpster Fire icon - /// - /// https://fontawesome.com/icons/duotone_dumpster-fire?style=duotone - /// alley, bin, commercial, danger, dangerous, euphemism, flame, heat, hot, trash, waste - static const IconDataDuotone duotoneDumpsterFire = const IconDataDuotone( - 0xf794, - secondary: const IconDataDuotone(0x10f794), - ); - - /// Regular Dungeon icon - /// - /// https://fontawesome.com/icons/dungeon?style=regular - /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData dungeon = const IconDataRegular(0xf6d9); - - /// Solid Dungeon icon - /// - /// https://fontawesome.com/icons/dungeon?style=solid - /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData solidDungeon = const IconDataSolid(0xf6d9); - - /// Light Dungeon icon - /// - /// https://fontawesome.com/icons/light_dungeon?style=light - /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconData lightDungeon = const IconDataLight(0xf6d9); - - /// Duotone Dungeon icon - /// - /// https://fontawesome.com/icons/duotone_dungeon?style=duotone - /// Dungeons & Dragons, building, d&d, dnd, door, entrance, fantasy, gate - static const IconDataDuotone duotoneDungeon = const IconDataDuotone( - 0xf6d9, - secondary: const IconDataDuotone(0x10f6d9), - ); - - /// Brands Dyalog icon - /// - /// https://fontawesome.com/icons/dyalog?style=brands - static const IconData dyalog = const IconDataBrands(0xf399); - - /// Regular Ear icon - /// - /// https://fontawesome.com/icons/ear?style=regular - /// head, hearing, listen, lobe - static const IconData ear = const IconDataRegular(0xf5f0); - - /// Solid Ear icon - /// - /// https://fontawesome.com/icons/ear?style=solid - /// head, hearing, listen, lobe - static const IconData solidEar = const IconDataSolid(0xf5f0); - - /// Light Ear icon - /// - /// https://fontawesome.com/icons/light_ear?style=light - /// head, hearing, listen, lobe - static const IconData lightEar = const IconDataLight(0xf5f0); - - /// Duotone Ear icon - /// - /// https://fontawesome.com/icons/duotone_ear?style=duotone - /// head, hearing, listen, lobe - static const IconDataDuotone duotoneEar = const IconDataDuotone( - 0xf5f0, - secondary: const IconDataDuotone(0x10f5f0), - ); - - /// Regular Ear Muffs icon - /// - /// https://fontawesome.com/icons/ear-muffs?style=regular - /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData earMuffs = const IconDataRegular(0xf795); - - /// Solid Ear Muffs icon - /// - /// https://fontawesome.com/icons/ear-muffs?style=solid - /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData solidEarMuffs = const IconDataSolid(0xf795); - - /// Light Ear Muffs icon - /// - /// https://fontawesome.com/icons/light_ear-muffs?style=light - /// accessory, clothing, cold, head, puffy, soft, winter - static const IconData lightEarMuffs = const IconDataLight(0xf795); - - /// Duotone Ear Muffs icon - /// - /// https://fontawesome.com/icons/duotone_ear-muffs?style=duotone - /// accessory, clothing, cold, head, puffy, soft, winter - static const IconDataDuotone duotoneEarMuffs = const IconDataDuotone( - 0xf795, - secondary: const IconDataDuotone(0x10f795), - ); - - /// Brands Earlybirds icon - /// - /// https://fontawesome.com/icons/earlybirds?style=brands - static const IconData earlybirds = const IconDataBrands(0xf39a); - - /// Brands eBay icon - /// - /// https://fontawesome.com/icons/ebay?style=brands - static const IconData ebay = const IconDataBrands(0xf4f4); - - /// Regular Eclipse icon - /// - /// https://fontawesome.com/icons/eclipse?style=regular - /// lunar, moon, shadow, solar, sun - static const IconData eclipse = const IconDataRegular(0xf749); - - /// Solid Eclipse icon - /// - /// https://fontawesome.com/icons/eclipse?style=solid - /// lunar, moon, shadow, solar, sun - static const IconData solidEclipse = const IconDataSolid(0xf749); - - /// Light Eclipse icon - /// - /// https://fontawesome.com/icons/light_eclipse?style=light - /// lunar, moon, shadow, solar, sun - static const IconData lightEclipse = const IconDataLight(0xf749); - - /// Duotone Eclipse icon - /// - /// https://fontawesome.com/icons/duotone_eclipse?style=duotone - /// lunar, moon, shadow, solar, sun - static const IconDataDuotone duotoneEclipse = const IconDataDuotone( - 0xf749, - secondary: const IconDataDuotone(0x10f749), - ); - - /// Regular Alternate Eclipse icon - /// - /// https://fontawesome.com/icons/eclipse-alt?style=regular - /// lunar, moon, shadow, solar, sun - static const IconData eclipseAlt = const IconDataRegular(0xf74a); - - /// Solid Alternate Eclipse icon - /// - /// https://fontawesome.com/icons/eclipse-alt?style=solid - /// lunar, moon, shadow, solar, sun - static const IconData solidEclipseAlt = const IconDataSolid(0xf74a); - - /// Light Alternate Eclipse icon - /// - /// https://fontawesome.com/icons/light_eclipse-alt?style=light - /// lunar, moon, shadow, solar, sun - static const IconData lightEclipseAlt = const IconDataLight(0xf74a); - - /// Duotone Alternate Eclipse icon - /// - /// https://fontawesome.com/icons/duotone_eclipse-alt?style=duotone - /// lunar, moon, shadow, solar, sun - static const IconDataDuotone duotoneEclipseAlt = const IconDataDuotone( - 0xf74a, - secondary: const IconDataDuotone(0x10f74a), - ); - - /// Brands Edge Browser icon - /// - /// https://fontawesome.com/icons/edge?style=brands - /// browser, ie - static const IconData edge = const IconDataBrands(0xf282); - - /// Brands Edge Legacy Browser icon - /// - /// https://fontawesome.com/icons/edge-legacy?style=brands - static const IconData edgeLegacy = const IconDataBrands(0xe078); - - /// Regular Edit icon - /// - /// https://fontawesome.com/icons/edit?style=regular - /// edit, pen, pencil, update, write - static const IconData edit = const IconDataRegular(0xf044); - - /// Solid Edit icon - /// - /// https://fontawesome.com/icons/edit?style=solid - /// edit, pen, pencil, update, write - static const IconData solidEdit = const IconDataSolid(0xf044); - - /// Light Edit icon - /// - /// https://fontawesome.com/icons/light_edit?style=light - /// edit, pen, pencil, update, write - static const IconData lightEdit = const IconDataLight(0xf044); - - /// Duotone Edit icon - /// - /// https://fontawesome.com/icons/duotone_edit?style=duotone - /// edit, pen, pencil, update, write - static const IconDataDuotone duotoneEdit = const IconDataDuotone( - 0xf044, - secondary: const IconDataDuotone(0x10f044), - ); - - /// Regular Egg icon - /// - /// https://fontawesome.com/icons/egg?style=regular - /// breakfast, chicken, easter, shell, yolk - static const IconData egg = const IconDataRegular(0xf7fb); - - /// Solid Egg icon - /// - /// https://fontawesome.com/icons/egg?style=solid - /// breakfast, chicken, easter, shell, yolk - static const IconData solidEgg = const IconDataSolid(0xf7fb); - - /// Light Egg icon - /// - /// https://fontawesome.com/icons/light_egg?style=light - /// breakfast, chicken, easter, shell, yolk - static const IconData lightEgg = const IconDataLight(0xf7fb); - - /// Duotone Egg icon - /// - /// https://fontawesome.com/icons/duotone_egg?style=duotone - /// breakfast, chicken, easter, shell, yolk - static const IconDataDuotone duotoneEgg = const IconDataDuotone( - 0xf7fb, - secondary: const IconDataDuotone(0x10f7fb), - ); - - /// Regular Fried Egg icon - /// - /// https://fontawesome.com/icons/egg-fried?style=regular - /// breakfast, chicken, yolk - static const IconData eggFried = const IconDataRegular(0xf7fc); - - /// Solid Fried Egg icon - /// - /// https://fontawesome.com/icons/egg-fried?style=solid - /// breakfast, chicken, yolk - static const IconData solidEggFried = const IconDataSolid(0xf7fc); - - /// Light Fried Egg icon - /// - /// https://fontawesome.com/icons/light_egg-fried?style=light - /// breakfast, chicken, yolk - static const IconData lightEggFried = const IconDataLight(0xf7fc); - - /// Duotone Fried Egg icon - /// - /// https://fontawesome.com/icons/duotone_egg-fried?style=duotone - /// breakfast, chicken, yolk - static const IconDataDuotone duotoneEggFried = const IconDataDuotone( - 0xf7fc, - secondary: const IconDataDuotone(0x10f7fc), - ); - - /// Regular eject icon - /// - /// https://fontawesome.com/icons/eject?style=regular - /// abort, cancel, cd, discharge - static const IconData eject = const IconDataRegular(0xf052); - - /// Solid eject icon - /// - /// https://fontawesome.com/icons/eject?style=solid - /// abort, cancel, cd, discharge - static const IconData solidEject = const IconDataSolid(0xf052); - - /// Light eject icon - /// - /// https://fontawesome.com/icons/light_eject?style=light - /// abort, cancel, cd, discharge - static const IconData lightEject = const IconDataLight(0xf052); - - /// Duotone eject icon - /// - /// https://fontawesome.com/icons/duotone_eject?style=duotone - /// abort, cancel, cd, discharge - static const IconDataDuotone duotoneEject = const IconDataDuotone( - 0xf052, - secondary: const IconDataDuotone(0x10f052), - ); - - /// Brands Elementor icon - /// - /// https://fontawesome.com/icons/elementor?style=brands - static const IconData elementor = const IconDataBrands(0xf430); - - /// Regular Elephant icon - /// - /// https://fontawesome.com/icons/elephant?style=regular - /// animal, dumbo, fauna, mammal, pachyderm, trunk - static const IconData elephant = const IconDataRegular(0xf6da); - - /// Solid Elephant icon - /// - /// https://fontawesome.com/icons/elephant?style=solid - /// animal, dumbo, fauna, mammal, pachyderm, trunk - static const IconData solidElephant = const IconDataSolid(0xf6da); - - /// Light Elephant icon - /// - /// https://fontawesome.com/icons/light_elephant?style=light - /// animal, dumbo, fauna, mammal, pachyderm, trunk - static const IconData lightElephant = const IconDataLight(0xf6da); - - /// Duotone Elephant icon - /// - /// https://fontawesome.com/icons/duotone_elephant?style=duotone - /// animal, dumbo, fauna, mammal, pachyderm, trunk - static const IconDataDuotone duotoneElephant = const IconDataDuotone( - 0xf6da, - secondary: const IconDataDuotone(0x10f6da), - ); - - /// Regular Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-h?style=regular - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData ellipsisH = const IconDataRegular(0xf141); - - /// Solid Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-h?style=solid - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData solidEllipsisH = const IconDataSolid(0xf141); - - /// Light Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/light_ellipsis-h?style=light - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData lightEllipsisH = const IconDataLight(0xf141); - - /// Duotone Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/duotone_ellipsis-h?style=duotone - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconDataDuotone duotoneEllipsisH = const IconDataDuotone( - 0xf141, - secondary: const IconDataDuotone(0x10f141), - ); - - /// Regular Alternate Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-h-alt?style=regular - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData ellipsisHAlt = const IconDataRegular(0xf39b); - - /// Solid Alternate Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-h-alt?style=solid - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData solidEllipsisHAlt = const IconDataSolid(0xf39b); - - /// Light Alternate Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/light_ellipsis-h-alt?style=light - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData lightEllipsisHAlt = const IconDataLight(0xf39b); - - /// Duotone Alternate Horizontal Ellipsis icon - /// - /// https://fontawesome.com/icons/duotone_ellipsis-h-alt?style=duotone - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconDataDuotone duotoneEllipsisHAlt = const IconDataDuotone( - 0xf39b, - secondary: const IconDataDuotone(0x10f39b), - ); - - /// Regular Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-v?style=regular - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData ellipsisV = const IconDataRegular(0xf142); - - /// Solid Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-v?style=solid - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData solidEllipsisV = const IconDataSolid(0xf142); - - /// Light Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/light_ellipsis-v?style=light - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData lightEllipsisV = const IconDataLight(0xf142); - - /// Duotone Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/duotone_ellipsis-v?style=duotone - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconDataDuotone duotoneEllipsisV = const IconDataDuotone( - 0xf142, - secondary: const IconDataDuotone(0x10f142), - ); - - /// Regular Alternate Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-v-alt?style=regular - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData ellipsisVAlt = const IconDataRegular(0xf39c); - - /// Solid Alternate Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/ellipsis-v-alt?style=solid - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData solidEllipsisVAlt = const IconDataSolid(0xf39c); - - /// Light Alternate Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/light_ellipsis-v-alt?style=light - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconData lightEllipsisVAlt = const IconDataLight(0xf39c); - - /// Duotone Alternate Vertical Ellipsis icon - /// - /// https://fontawesome.com/icons/duotone_ellipsis-v-alt?style=duotone - /// dots, drag, kebab, list, menu, nav, navigation, ol, reorder, settings, ul - static const IconDataDuotone duotoneEllipsisVAlt = const IconDataDuotone( - 0xf39c, - secondary: const IconDataDuotone(0x10f39c), - ); - - /// Brands Ello icon - /// - /// https://fontawesome.com/icons/ello?style=brands - static const IconData ello = const IconDataBrands(0xf5f1); - - /// Brands Ember icon - /// - /// https://fontawesome.com/icons/ember?style=brands - static const IconData ember = const IconDataBrands(0xf423); - - /// Brands Galactic Empire icon - /// - /// https://fontawesome.com/icons/empire?style=brands - static const IconData empire = const IconDataBrands(0xf1d1); - - /// Regular Empty Set icon - /// - /// https://fontawesome.com/icons/empty-set?style=regular - /// math, theory - static const IconData emptySet = const IconDataRegular(0xf656); - - /// Solid Empty Set icon - /// - /// https://fontawesome.com/icons/empty-set?style=solid - /// math, theory - static const IconData solidEmptySet = const IconDataSolid(0xf656); - - /// Light Empty Set icon - /// - /// https://fontawesome.com/icons/light_empty-set?style=light - /// math, theory - static const IconData lightEmptySet = const IconDataLight(0xf656); - - /// Duotone Empty Set icon - /// - /// https://fontawesome.com/icons/duotone_empty-set?style=duotone - /// math, theory - static const IconDataDuotone duotoneEmptySet = const IconDataDuotone( - 0xf656, - secondary: const IconDataDuotone(0x10f656), - ); - - /// Regular Engine Warning icon - /// - /// https://fontawesome.com/icons/engine-warning?style=regular - /// alert, automobile, car, mechanic, warning - static const IconData engineWarning = const IconDataRegular(0xf5f2); - - /// Solid Engine Warning icon - /// - /// https://fontawesome.com/icons/engine-warning?style=solid - /// alert, automobile, car, mechanic, warning - static const IconData solidEngineWarning = const IconDataSolid(0xf5f2); - - /// Light Engine Warning icon - /// - /// https://fontawesome.com/icons/light_engine-warning?style=light - /// alert, automobile, car, mechanic, warning - static const IconData lightEngineWarning = const IconDataLight(0xf5f2); - - /// Duotone Engine Warning icon - /// - /// https://fontawesome.com/icons/duotone_engine-warning?style=duotone - /// alert, automobile, car, mechanic, warning - static const IconDataDuotone duotoneEngineWarning = const IconDataDuotone( - 0xf5f2, - secondary: const IconDataDuotone(0x10f5f2), - ); - - /// Regular Envelope icon - /// - /// https://fontawesome.com/icons/envelope?style=regular - /// e-mail, email, letter, mail, message, notification, support - static const IconData envelope = const IconDataRegular(0xf0e0); - - /// Solid Envelope icon - /// - /// https://fontawesome.com/icons/envelope?style=solid - /// e-mail, email, letter, mail, message, notification, support - static const IconData solidEnvelope = const IconDataSolid(0xf0e0); - - /// Light Envelope icon - /// - /// https://fontawesome.com/icons/light_envelope?style=light - /// e-mail, email, letter, mail, message, notification, support - static const IconData lightEnvelope = const IconDataLight(0xf0e0); - - /// Duotone Envelope icon - /// - /// https://fontawesome.com/icons/duotone_envelope?style=duotone - /// e-mail, email, letter, mail, message, notification, support - static const IconDataDuotone duotoneEnvelope = const IconDataDuotone( - 0xf0e0, - secondary: const IconDataDuotone(0x10f0e0), - ); - - /// Regular Envelope Open icon - /// - /// https://fontawesome.com/icons/envelope-open?style=regular - /// e-mail, email, letter, mail, message, notification, support - static const IconData envelopeOpen = const IconDataRegular(0xf2b6); - - /// Solid Envelope Open icon - /// - /// https://fontawesome.com/icons/envelope-open?style=solid - /// e-mail, email, letter, mail, message, notification, support - static const IconData solidEnvelopeOpen = const IconDataSolid(0xf2b6); - - /// Light Envelope Open icon - /// - /// https://fontawesome.com/icons/light_envelope-open?style=light - /// e-mail, email, letter, mail, message, notification, support - static const IconData lightEnvelopeOpen = const IconDataLight(0xf2b6); - - /// Duotone Envelope Open icon - /// - /// https://fontawesome.com/icons/duotone_envelope-open?style=duotone - /// e-mail, email, letter, mail, message, notification, support - static const IconDataDuotone duotoneEnvelopeOpen = const IconDataDuotone( - 0xf2b6, - secondary: const IconDataDuotone(0x10f2b6), - ); - - /// Regular Envelope Open-dollar icon - /// - /// https://fontawesome.com/icons/envelope-open-dollar?style=regular - /// e-mail, email, letter, mail, message, money, notification, pay, transfer - static const IconData envelopeOpenDollar = const IconDataRegular(0xf657); - - /// Solid Envelope Open-dollar icon - /// - /// https://fontawesome.com/icons/envelope-open-dollar?style=solid - /// e-mail, email, letter, mail, message, money, notification, pay, transfer - static const IconData solidEnvelopeOpenDollar = const IconDataSolid(0xf657); - - /// Light Envelope Open-dollar icon - /// - /// https://fontawesome.com/icons/light_envelope-open-dollar?style=light - /// e-mail, email, letter, mail, message, money, notification, pay, transfer - static const IconData lightEnvelopeOpenDollar = const IconDataLight(0xf657); - - /// Duotone Envelope Open-dollar icon - /// - /// https://fontawesome.com/icons/duotone_envelope-open-dollar?style=duotone - /// e-mail, email, letter, mail, message, money, notification, pay, transfer - static const IconDataDuotone duotoneEnvelopeOpenDollar = - const IconDataDuotone( - 0xf657, - secondary: const IconDataDuotone(0x10f657), - ); - - /// Regular Envelope Open-text icon - /// - /// https://fontawesome.com/icons/envelope-open-text?style=regular - /// e-mail, email, letter, mail, message, notification, support - static const IconData envelopeOpenText = const IconDataRegular(0xf658); - - /// Solid Envelope Open-text icon - /// - /// https://fontawesome.com/icons/envelope-open-text?style=solid - /// e-mail, email, letter, mail, message, notification, support - static const IconData solidEnvelopeOpenText = const IconDataSolid(0xf658); - - /// Light Envelope Open-text icon - /// - /// https://fontawesome.com/icons/light_envelope-open-text?style=light - /// e-mail, email, letter, mail, message, notification, support - static const IconData lightEnvelopeOpenText = const IconDataLight(0xf658); - - /// Duotone Envelope Open-text icon - /// - /// https://fontawesome.com/icons/duotone_envelope-open-text?style=duotone - /// e-mail, email, letter, mail, message, notification, support - static const IconDataDuotone duotoneEnvelopeOpenText = const IconDataDuotone( - 0xf658, - secondary: const IconDataDuotone(0x10f658), - ); - - /// Regular Envelope Square icon - /// - /// https://fontawesome.com/icons/envelope-square?style=regular - /// e-mail, email, letter, mail, message, notification, support - static const IconData envelopeSquare = const IconDataRegular(0xf199); - - /// Solid Envelope Square icon - /// - /// https://fontawesome.com/icons/envelope-square?style=solid - /// e-mail, email, letter, mail, message, notification, support - static const IconData solidEnvelopeSquare = const IconDataSolid(0xf199); - - /// Light Envelope Square icon - /// - /// https://fontawesome.com/icons/light_envelope-square?style=light - /// e-mail, email, letter, mail, message, notification, support - static const IconData lightEnvelopeSquare = const IconDataLight(0xf199); - - /// Duotone Envelope Square icon - /// - /// https://fontawesome.com/icons/duotone_envelope-square?style=duotone - /// e-mail, email, letter, mail, message, notification, support - static const IconDataDuotone duotoneEnvelopeSquare = const IconDataDuotone( - 0xf199, - secondary: const IconDataDuotone(0x10f199), - ); - - /// Brands Envira Gallery icon - /// - /// https://fontawesome.com/icons/envira?style=brands - /// leaf - static const IconData envira = const IconDataBrands(0xf299); - - /// Regular Equals icon - /// - /// https://fontawesome.com/icons/equals?style=regular - /// arithmetic, even, match, math - static const IconData equals = const IconDataRegular(0xf52c); - - /// Solid Equals icon - /// - /// https://fontawesome.com/icons/equals?style=solid - /// arithmetic, even, match, math - static const IconData solidEquals = const IconDataSolid(0xf52c); - - /// Light Equals icon - /// - /// https://fontawesome.com/icons/light_equals?style=light - /// arithmetic, even, match, math - static const IconData lightEquals = const IconDataLight(0xf52c); - - /// Duotone Equals icon - /// - /// https://fontawesome.com/icons/duotone_equals?style=duotone - /// arithmetic, even, match, math - static const IconDataDuotone duotoneEquals = const IconDataDuotone( - 0xf52c, - secondary: const IconDataDuotone(0x10f52c), - ); - - /// Regular eraser icon - /// - /// https://fontawesome.com/icons/eraser?style=regular - /// art, delete, remove, rubber - static const IconData eraser = const IconDataRegular(0xf12d); - - /// Solid eraser icon - /// - /// https://fontawesome.com/icons/eraser?style=solid - /// art, delete, remove, rubber - static const IconData solidEraser = const IconDataSolid(0xf12d); - - /// Light eraser icon - /// - /// https://fontawesome.com/icons/light_eraser?style=light - /// art, delete, remove, rubber - static const IconData lightEraser = const IconDataLight(0xf12d); - - /// Duotone eraser icon - /// - /// https://fontawesome.com/icons/duotone_eraser?style=duotone - /// art, delete, remove, rubber - static const IconDataDuotone duotoneEraser = const IconDataDuotone( - 0xf12d, - secondary: const IconDataDuotone(0x10f12d), - ); - - /// Brands Erlang icon - /// - /// https://fontawesome.com/icons/erlang?style=brands - static const IconData erlang = const IconDataBrands(0xf39d); - - /// Brands Ethereum icon - /// - /// https://fontawesome.com/icons/ethereum?style=brands - static const IconData ethereum = const IconDataBrands(0xf42e); - - /// Regular Ethernet icon - /// - /// https://fontawesome.com/icons/ethernet?style=regular - /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData ethernet = const IconDataRegular(0xf796); - - /// Solid Ethernet icon - /// - /// https://fontawesome.com/icons/ethernet?style=solid - /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData solidEthernet = const IconDataSolid(0xf796); - - /// Light Ethernet icon - /// - /// https://fontawesome.com/icons/light_ethernet?style=light - /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconData lightEthernet = const IconDataLight(0xf796); - - /// Duotone Ethernet icon - /// - /// https://fontawesome.com/icons/duotone_ethernet?style=duotone - /// cable, cat 5, cat 6, connection, hardware, internet, network, wired - static const IconDataDuotone duotoneEthernet = const IconDataDuotone( - 0xf796, - secondary: const IconDataDuotone(0x10f796), - ); - - /// Brands Etsy icon - /// - /// https://fontawesome.com/icons/etsy?style=brands - static const IconData etsy = const IconDataBrands(0xf2d7); - - /// Regular Euro Sign icon - /// - /// https://fontawesome.com/icons/euro-sign?style=regular - /// currency, dollar, exchange, money - static const IconData euroSign = const IconDataRegular(0xf153); - - /// Solid Euro Sign icon - /// - /// https://fontawesome.com/icons/euro-sign?style=solid - /// currency, dollar, exchange, money - static const IconData solidEuroSign = const IconDataSolid(0xf153); - - /// Light Euro Sign icon - /// - /// https://fontawesome.com/icons/light_euro-sign?style=light - /// currency, dollar, exchange, money - static const IconData lightEuroSign = const IconDataLight(0xf153); - - /// Duotone Euro Sign icon - /// - /// https://fontawesome.com/icons/duotone_euro-sign?style=duotone - /// currency, dollar, exchange, money - static const IconDataDuotone duotoneEuroSign = const IconDataDuotone( - 0xf153, - secondary: const IconDataDuotone(0x10f153), - ); - - /// Brands Evernote icon - /// - /// https://fontawesome.com/icons/evernote?style=brands - static const IconData evernote = const IconDataBrands(0xf839); - - /// Regular Exchange icon - /// - /// https://fontawesome.com/icons/exchange?style=regular - /// arrow, arrows, reciprocate, return, swap, transfer - static const IconData exchange = const IconDataRegular(0xf0ec); - - /// Solid Exchange icon - /// - /// https://fontawesome.com/icons/exchange?style=solid - /// arrow, arrows, reciprocate, return, swap, transfer - static const IconData solidExchange = const IconDataSolid(0xf0ec); - - /// Light Exchange icon - /// - /// https://fontawesome.com/icons/light_exchange?style=light - /// arrow, arrows, reciprocate, return, swap, transfer - static const IconData lightExchange = const IconDataLight(0xf0ec); - - /// Duotone Exchange icon - /// - /// https://fontawesome.com/icons/duotone_exchange?style=duotone - /// arrow, arrows, reciprocate, return, swap, transfer - static const IconDataDuotone duotoneExchange = const IconDataDuotone( - 0xf0ec, - secondary: const IconDataDuotone(0x10f0ec), - ); - - /// Regular Alternate Exchange icon - /// - /// https://fontawesome.com/icons/exchange-alt?style=regular - /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData exchangeAlt = const IconDataRegular(0xf362); - - /// Solid Alternate Exchange icon - /// - /// https://fontawesome.com/icons/exchange-alt?style=solid - /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData solidExchangeAlt = const IconDataSolid(0xf362); - - /// Light Alternate Exchange icon - /// - /// https://fontawesome.com/icons/light_exchange-alt?style=light - /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconData lightExchangeAlt = const IconDataLight(0xf362); - - /// Duotone Alternate Exchange icon - /// - /// https://fontawesome.com/icons/duotone_exchange-alt?style=duotone - /// arrow, arrows, exchange, reciprocate, return, swap, transfer - static const IconDataDuotone duotoneExchangeAlt = const IconDataDuotone( - 0xf362, - secondary: const IconDataDuotone(0x10f362), - ); - - /// Regular exclamation icon - /// - /// https://fontawesome.com/icons/exclamation?style=regular - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData exclamation = const IconDataRegular(0xf12a); - - /// Solid exclamation icon - /// - /// https://fontawesome.com/icons/exclamation?style=solid - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData solidExclamation = const IconDataSolid(0xf12a); - - /// Light exclamation icon - /// - /// https://fontawesome.com/icons/light_exclamation?style=light - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData lightExclamation = const IconDataLight(0xf12a); - - /// Duotone exclamation icon - /// - /// https://fontawesome.com/icons/duotone_exclamation?style=duotone - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconDataDuotone duotoneExclamation = const IconDataDuotone( - 0xf12a, - secondary: const IconDataDuotone(0x10f12a), - ); - - /// Regular Exclamation Circle icon - /// - /// https://fontawesome.com/icons/exclamation-circle?style=regular - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData exclamationCircle = const IconDataRegular(0xf06a); - - /// Solid Exclamation Circle icon - /// - /// https://fontawesome.com/icons/exclamation-circle?style=solid - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData solidExclamationCircle = const IconDataSolid(0xf06a); - - /// Light Exclamation Circle icon - /// - /// https://fontawesome.com/icons/light_exclamation-circle?style=light - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData lightExclamationCircle = const IconDataLight(0xf06a); - - /// Duotone Exclamation Circle icon - /// - /// https://fontawesome.com/icons/duotone_exclamation-circle?style=duotone - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconDataDuotone duotoneExclamationCircle = const IconDataDuotone( - 0xf06a, - secondary: const IconDataDuotone(0x10f06a), - ); - - /// Regular Exclamation Square icon - /// - /// https://fontawesome.com/icons/exclamation-square?style=regular - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData exclamationSquare = const IconDataRegular(0xf321); - - /// Solid Exclamation Square icon - /// - /// https://fontawesome.com/icons/exclamation-square?style=solid - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData solidExclamationSquare = const IconDataSolid(0xf321); - - /// Light Exclamation Square icon - /// - /// https://fontawesome.com/icons/light_exclamation-square?style=light - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData lightExclamationSquare = const IconDataLight(0xf321); - - /// Duotone Exclamation Square icon - /// - /// https://fontawesome.com/icons/duotone_exclamation-square?style=duotone - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconDataDuotone duotoneExclamationSquare = const IconDataDuotone( - 0xf321, - secondary: const IconDataDuotone(0x10f321), - ); - - /// Regular Exclamation Triangle icon - /// - /// https://fontawesome.com/icons/exclamation-triangle?style=regular - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData exclamationTriangle = const IconDataRegular(0xf071); - - /// Solid Exclamation Triangle icon - /// - /// https://fontawesome.com/icons/exclamation-triangle?style=solid - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData solidExclamationTriangle = const IconDataSolid(0xf071); - - /// Light Exclamation Triangle icon - /// - /// https://fontawesome.com/icons/light_exclamation-triangle?style=light - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconData lightExclamationTriangle = const IconDataLight(0xf071); - - /// Duotone Exclamation Triangle icon - /// - /// https://fontawesome.com/icons/duotone_exclamation-triangle?style=duotone - /// alert, danger, error, important, notice, notification, notify, problem, warning - static const IconDataDuotone duotoneExclamationTriangle = - const IconDataDuotone( - 0xf071, - secondary: const IconDataDuotone(0x10f071), - ); - - /// Regular Expand icon - /// - /// https://fontawesome.com/icons/expand?style=regular - /// bigger, enlarge, fullscreen, resize - static const IconData expand = const IconDataRegular(0xf065); - - /// Solid Expand icon - /// - /// https://fontawesome.com/icons/expand?style=solid - /// bigger, enlarge, fullscreen, resize - static const IconData solidExpand = const IconDataSolid(0xf065); - - /// Light Expand icon - /// - /// https://fontawesome.com/icons/light_expand?style=light - /// bigger, enlarge, fullscreen, resize - static const IconData lightExpand = const IconDataLight(0xf065); - - /// Duotone Expand icon - /// - /// https://fontawesome.com/icons/duotone_expand?style=duotone - /// bigger, enlarge, fullscreen, resize - static const IconDataDuotone duotoneExpand = const IconDataDuotone( - 0xf065, - secondary: const IconDataDuotone(0x10f065), - ); - - /// Regular Alternate Expand icon - /// - /// https://fontawesome.com/icons/expand-alt?style=regular - /// arrows, bigger, enlarge, fullscreen, resize - static const IconData expandAlt = const IconDataRegular(0xf424); - - /// Solid Alternate Expand icon - /// - /// https://fontawesome.com/icons/expand-alt?style=solid - /// arrows, bigger, enlarge, fullscreen, resize - static const IconData solidExpandAlt = const IconDataSolid(0xf424); - - /// Light Alternate Expand icon - /// - /// https://fontawesome.com/icons/light_expand-alt?style=light - /// arrows, bigger, enlarge, fullscreen, resize - static const IconData lightExpandAlt = const IconDataLight(0xf424); - - /// Duotone Alternate Expand icon - /// - /// https://fontawesome.com/icons/duotone_expand-alt?style=duotone - /// arrows, bigger, enlarge, fullscreen, resize - static const IconDataDuotone duotoneExpandAlt = const IconDataDuotone( - 0xf424, - secondary: const IconDataDuotone(0x10f424), - ); - - /// Regular Expand Arrows icon - /// - /// https://fontawesome.com/icons/expand-arrows?style=regular - /// bigger, enlarge, fullscreen, move, resize - static const IconData expandArrows = const IconDataRegular(0xf31d); - - /// Solid Expand Arrows icon - /// - /// https://fontawesome.com/icons/expand-arrows?style=solid - /// bigger, enlarge, fullscreen, move, resize - static const IconData solidExpandArrows = const IconDataSolid(0xf31d); - - /// Light Expand Arrows icon - /// - /// https://fontawesome.com/icons/light_expand-arrows?style=light - /// bigger, enlarge, fullscreen, move, resize - static const IconData lightExpandArrows = const IconDataLight(0xf31d); - - /// Duotone Expand Arrows icon - /// - /// https://fontawesome.com/icons/duotone_expand-arrows?style=duotone - /// bigger, enlarge, fullscreen, move, resize - static const IconDataDuotone duotoneExpandArrows = const IconDataDuotone( - 0xf31d, - secondary: const IconDataDuotone(0x10f31d), - ); - - /// Regular Alternate Expand Arrows icon - /// - /// https://fontawesome.com/icons/expand-arrows-alt?style=regular - /// bigger, enlarge, fullscreen, move, resize - static const IconData expandArrowsAlt = const IconDataRegular(0xf31e); - - /// Solid Alternate Expand Arrows icon - /// - /// https://fontawesome.com/icons/expand-arrows-alt?style=solid - /// bigger, enlarge, fullscreen, move, resize - static const IconData solidExpandArrowsAlt = const IconDataSolid(0xf31e); - - /// Light Alternate Expand Arrows icon - /// - /// https://fontawesome.com/icons/light_expand-arrows-alt?style=light - /// bigger, enlarge, fullscreen, move, resize - static const IconData lightExpandArrowsAlt = const IconDataLight(0xf31e); - - /// Duotone Alternate Expand Arrows icon - /// - /// https://fontawesome.com/icons/duotone_expand-arrows-alt?style=duotone - /// bigger, enlarge, fullscreen, move, resize - static const IconDataDuotone duotoneExpandArrowsAlt = const IconDataDuotone( - 0xf31e, - secondary: const IconDataDuotone(0x10f31e), - ); - - /// Regular Expand Wide icon - /// - /// https://fontawesome.com/icons/expand-wide?style=regular - /// bigger, enlarge, fullscreen, resize - static const IconData expandWide = const IconDataRegular(0xf320); - - /// Solid Expand Wide icon - /// - /// https://fontawesome.com/icons/expand-wide?style=solid - /// bigger, enlarge, fullscreen, resize - static const IconData solidExpandWide = const IconDataSolid(0xf320); - - /// Light Expand Wide icon - /// - /// https://fontawesome.com/icons/light_expand-wide?style=light - /// bigger, enlarge, fullscreen, resize - static const IconData lightExpandWide = const IconDataLight(0xf320); - - /// Duotone Expand Wide icon - /// - /// https://fontawesome.com/icons/duotone_expand-wide?style=duotone - /// bigger, enlarge, fullscreen, resize - static const IconDataDuotone duotoneExpandWide = const IconDataDuotone( - 0xf320, - secondary: const IconDataDuotone(0x10f320), - ); - - /// Brands ExpeditedSSL icon - /// - /// https://fontawesome.com/icons/expeditedssl?style=brands - static const IconData expeditedssl = const IconDataBrands(0xf23e); - - /// Regular External Link icon - /// - /// https://fontawesome.com/icons/external-link?style=regular - /// new, open, send, share - static const IconData externalLink = const IconDataRegular(0xf08e); - - /// Solid External Link icon - /// - /// https://fontawesome.com/icons/external-link?style=solid - /// new, open, send, share - static const IconData solidExternalLink = const IconDataSolid(0xf08e); - - /// Light External Link icon - /// - /// https://fontawesome.com/icons/light_external-link?style=light - /// new, open, send, share - static const IconData lightExternalLink = const IconDataLight(0xf08e); - - /// Duotone External Link icon - /// - /// https://fontawesome.com/icons/duotone_external-link?style=duotone - /// new, open, send, share - static const IconDataDuotone duotoneExternalLink = const IconDataDuotone( - 0xf08e, - secondary: const IconDataDuotone(0x10f08e), - ); - - /// Regular Alternate External Link icon - /// - /// https://fontawesome.com/icons/external-link-alt?style=regular - /// external-link, new, open, share - static const IconData externalLinkAlt = const IconDataRegular(0xf35d); - - /// Solid Alternate External Link icon - /// - /// https://fontawesome.com/icons/external-link-alt?style=solid - /// external-link, new, open, share - static const IconData solidExternalLinkAlt = const IconDataSolid(0xf35d); - - /// Light Alternate External Link icon - /// - /// https://fontawesome.com/icons/light_external-link-alt?style=light - /// external-link, new, open, share - static const IconData lightExternalLinkAlt = const IconDataLight(0xf35d); - - /// Duotone Alternate External Link icon - /// - /// https://fontawesome.com/icons/duotone_external-link-alt?style=duotone - /// external-link, new, open, share - static const IconDataDuotone duotoneExternalLinkAlt = const IconDataDuotone( - 0xf35d, - secondary: const IconDataDuotone(0x10f35d), - ); - - /// Regular External Link Square icon - /// - /// https://fontawesome.com/icons/external-link-square?style=regular - /// new, open, send, share - static const IconData externalLinkSquare = const IconDataRegular(0xf14c); - - /// Solid External Link Square icon - /// - /// https://fontawesome.com/icons/external-link-square?style=solid - /// new, open, send, share - static const IconData solidExternalLinkSquare = const IconDataSolid(0xf14c); - - /// Light External Link Square icon - /// - /// https://fontawesome.com/icons/light_external-link-square?style=light - /// new, open, send, share - static const IconData lightExternalLinkSquare = const IconDataLight(0xf14c); - - /// Duotone External Link Square icon - /// - /// https://fontawesome.com/icons/duotone_external-link-square?style=duotone - /// new, open, send, share - static const IconDataDuotone duotoneExternalLinkSquare = - const IconDataDuotone( - 0xf14c, - secondary: const IconDataDuotone(0x10f14c), - ); - - /// Regular Alternate External Link Square icon - /// - /// https://fontawesome.com/icons/external-link-square-alt?style=regular - /// external-link-square, new, open, share - static const IconData externalLinkSquareAlt = const IconDataRegular(0xf360); - - /// Solid Alternate External Link Square icon - /// - /// https://fontawesome.com/icons/external-link-square-alt?style=solid - /// external-link-square, new, open, share - static const IconData solidExternalLinkSquareAlt = - const IconDataSolid(0xf360); - - /// Light Alternate External Link Square icon - /// - /// https://fontawesome.com/icons/light_external-link-square-alt?style=light - /// external-link-square, new, open, share - static const IconData lightExternalLinkSquareAlt = - const IconDataLight(0xf360); - - /// Duotone Alternate External Link Square icon - /// - /// https://fontawesome.com/icons/duotone_external-link-square-alt?style=duotone - /// external-link-square, new, open, share - static const IconDataDuotone duotoneExternalLinkSquareAlt = - const IconDataDuotone( - 0xf360, - secondary: const IconDataDuotone(0x10f360), - ); - - /// Regular Eye icon - /// - /// https://fontawesome.com/icons/eye?style=regular - /// look, optic, see, seen, show, sight, views, visible - static const IconData eye = const IconDataRegular(0xf06e); - - /// Solid Eye icon - /// - /// https://fontawesome.com/icons/eye?style=solid - /// look, optic, see, seen, show, sight, views, visible - static const IconData solidEye = const IconDataSolid(0xf06e); - - /// Light Eye icon - /// - /// https://fontawesome.com/icons/light_eye?style=light - /// look, optic, see, seen, show, sight, views, visible - static const IconData lightEye = const IconDataLight(0xf06e); - - /// Duotone Eye icon - /// - /// https://fontawesome.com/icons/duotone_eye?style=duotone - /// look, optic, see, seen, show, sight, views, visible - static const IconDataDuotone duotoneEye = const IconDataDuotone( - 0xf06e, - secondary: const IconDataDuotone(0x10f06e), - ); - - /// Regular Eye Dropper icon - /// - /// https://fontawesome.com/icons/eye-dropper?style=regular - /// beaker, clone, color, copy, eyedropper, pipette - static const IconData eyeDropper = const IconDataRegular(0xf1fb); - - /// Solid Eye Dropper icon - /// - /// https://fontawesome.com/icons/eye-dropper?style=solid - /// beaker, clone, color, copy, eyedropper, pipette - static const IconData solidEyeDropper = const IconDataSolid(0xf1fb); - - /// Light Eye Dropper icon - /// - /// https://fontawesome.com/icons/light_eye-dropper?style=light - /// beaker, clone, color, copy, eyedropper, pipette - static const IconData lightEyeDropper = const IconDataLight(0xf1fb); - - /// Duotone Eye Dropper icon - /// - /// https://fontawesome.com/icons/duotone_eye-dropper?style=duotone - /// beaker, clone, color, copy, eyedropper, pipette - static const IconDataDuotone duotoneEyeDropper = const IconDataDuotone( - 0xf1fb, - secondary: const IconDataDuotone(0x10f1fb), - ); - - /// Regular Evil Eye icon - /// - /// https://fontawesome.com/icons/eye-evil?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData eyeEvil = const IconDataRegular(0xf6db); - - /// Solid Evil Eye icon - /// - /// https://fontawesome.com/icons/eye-evil?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData solidEyeEvil = const IconDataSolid(0xf6db); - - /// Light Evil Eye icon - /// - /// https://fontawesome.com/icons/light_eye-evil?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconData lightEyeEvil = const IconDataLight(0xf6db); - - /// Duotone Evil Eye icon - /// - /// https://fontawesome.com/icons/duotone_eye-evil?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, sauron, see, seen, show, sight - static const IconDataDuotone duotoneEyeEvil = const IconDataDuotone( - 0xf6db, - secondary: const IconDataDuotone(0x10f6db), - ); - - /// Regular Eye Slash icon - /// - /// https://fontawesome.com/icons/eye-slash?style=regular - /// blind, hide, show, toggle, unseen, views, visible, visiblity - static const IconData eyeSlash = const IconDataRegular(0xf070); - - /// Solid Eye Slash icon - /// - /// https://fontawesome.com/icons/eye-slash?style=solid - /// blind, hide, show, toggle, unseen, views, visible, visiblity - static const IconData solidEyeSlash = const IconDataSolid(0xf070); - - /// Light Eye Slash icon - /// - /// https://fontawesome.com/icons/light_eye-slash?style=light - /// blind, hide, show, toggle, unseen, views, visible, visiblity - static const IconData lightEyeSlash = const IconDataLight(0xf070); - - /// Duotone Eye Slash icon - /// - /// https://fontawesome.com/icons/duotone_eye-slash?style=duotone - /// blind, hide, show, toggle, unseen, views, visible, visiblity - static const IconDataDuotone duotoneEyeSlash = const IconDataDuotone( - 0xf070, - secondary: const IconDataDuotone(0x10f070), - ); - - /// Brands Facebook icon - /// - /// https://fontawesome.com/icons/facebook?style=brands - /// facebook-official, social network - static const IconData facebook = const IconDataBrands(0xf09a); - - /// Brands Facebook F icon - /// - /// https://fontawesome.com/icons/facebook-f?style=brands - /// facebook - static const IconData facebookF = const IconDataBrands(0xf39e); - - /// Brands Facebook Messenger icon - /// - /// https://fontawesome.com/icons/facebook-messenger?style=brands - static const IconData facebookMessenger = const IconDataBrands(0xf39f); - - /// Brands Facebook Square icon - /// - /// https://fontawesome.com/icons/facebook-square?style=brands - /// social network - static const IconData facebookSquare = const IconDataBrands(0xf082); - - /// Regular Fan icon - /// - /// https://fontawesome.com/icons/fan?style=regular - /// ac, air conditioning, blade, blower, cool, hot - static const IconData fan = const IconDataRegular(0xf863); - - /// Solid Fan icon - /// - /// https://fontawesome.com/icons/fan?style=solid - /// ac, air conditioning, blade, blower, cool, hot - static const IconData solidFan = const IconDataSolid(0xf863); - - /// Light Fan icon - /// - /// https://fontawesome.com/icons/light_fan?style=light - /// ac, air conditioning, blade, blower, cool, hot - static const IconData lightFan = const IconDataLight(0xf863); - - /// Duotone Fan icon - /// - /// https://fontawesome.com/icons/duotone_fan?style=duotone - /// ac, air conditioning, blade, blower, cool, hot - static const IconDataDuotone duotoneFan = const IconDataDuotone( - 0xf863, - secondary: const IconDataDuotone(0x10f863), - ); - - /// Regular Fan Table icon - /// - /// https://fontawesome.com/icons/fan-table?style=regular - /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData fanTable = const IconDataRegular(0xe004); - - /// Solid Fan Table icon - /// - /// https://fontawesome.com/icons/fan-table?style=solid - /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData solidFanTable = const IconDataSolid(0xe004); - - /// Light Fan Table icon - /// - /// https://fontawesome.com/icons/light_fan-table?style=light - /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconData lightFanTable = const IconDataLight(0xe004); - - /// Duotone Fan Table icon - /// - /// https://fontawesome.com/icons/duotone_fan-table?style=duotone - /// ac, air conditioning, blade, blower, cool, hot, oscillate - static const IconDataDuotone duotoneFanTable = const IconDataDuotone( - 0xe004, - secondary: const IconDataDuotone(0x10e004), - ); - - /// 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 = const IconDataBrands(0xf6dc); - - /// Regular Farm icon - /// - /// https://fontawesome.com/icons/farm?style=regular - /// agriculture, barn, dairy, farming, ranch, silo - static const IconData farm = const IconDataRegular(0xf864); - - /// Solid Farm icon - /// - /// https://fontawesome.com/icons/farm?style=solid - /// agriculture, barn, dairy, farming, ranch, silo - static const IconData solidFarm = const IconDataSolid(0xf864); - - /// Light Farm icon - /// - /// https://fontawesome.com/icons/light_farm?style=light - /// agriculture, barn, dairy, farming, ranch, silo - static const IconData lightFarm = const IconDataLight(0xf864); - - /// Duotone Farm icon - /// - /// https://fontawesome.com/icons/duotone_farm?style=duotone - /// agriculture, barn, dairy, farming, ranch, silo - static const IconDataDuotone duotoneFarm = const IconDataDuotone( - 0xf864, - secondary: const IconDataDuotone(0x10f864), - ); - - /// Regular fast-backward icon - /// - /// https://fontawesome.com/icons/fast-backward?style=regular - /// beginning, first, previous, rewind, start - static const IconData fastBackward = const IconDataRegular(0xf049); - - /// Solid fast-backward icon - /// - /// https://fontawesome.com/icons/fast-backward?style=solid - /// beginning, first, previous, rewind, start - static const IconData solidFastBackward = const IconDataSolid(0xf049); - - /// Light fast-backward icon - /// - /// https://fontawesome.com/icons/light_fast-backward?style=light - /// beginning, first, previous, rewind, start - static const IconData lightFastBackward = const IconDataLight(0xf049); - - /// Duotone fast-backward icon - /// - /// https://fontawesome.com/icons/duotone_fast-backward?style=duotone - /// beginning, first, previous, rewind, start - static const IconDataDuotone duotoneFastBackward = const IconDataDuotone( - 0xf049, - secondary: const IconDataDuotone(0x10f049), - ); - - /// Regular fast-forward icon - /// - /// https://fontawesome.com/icons/fast-forward?style=regular - /// end, last, next - static const IconData fastForward = const IconDataRegular(0xf050); - - /// Solid fast-forward icon - /// - /// https://fontawesome.com/icons/fast-forward?style=solid - /// end, last, next - static const IconData solidFastForward = const IconDataSolid(0xf050); - - /// Light fast-forward icon - /// - /// https://fontawesome.com/icons/light_fast-forward?style=light - /// end, last, next - static const IconData lightFastForward = const IconDataLight(0xf050); - - /// Duotone fast-forward icon - /// - /// https://fontawesome.com/icons/duotone_fast-forward?style=duotone - /// end, last, next - static const IconDataDuotone duotoneFastForward = const IconDataDuotone( - 0xf050, - secondary: const IconDataDuotone(0x10f050), - ); - - /// Regular Faucet icon - /// - /// https://fontawesome.com/icons/faucet?style=regular - /// covid-19, drip, house, hygiene, kitchen, sink, water - static const IconData faucet = const IconDataRegular(0xe005); - - /// Solid Faucet icon - /// - /// https://fontawesome.com/icons/faucet?style=solid - /// covid-19, drip, house, hygiene, kitchen, sink, water - static const IconData solidFaucet = const IconDataSolid(0xe005); - - /// Light Faucet icon - /// - /// https://fontawesome.com/icons/light_faucet?style=light - /// covid-19, drip, house, hygiene, kitchen, sink, water - static const IconData lightFaucet = const IconDataLight(0xe005); - - /// Duotone Faucet icon - /// - /// https://fontawesome.com/icons/duotone_faucet?style=duotone - /// covid-19, drip, house, hygiene, kitchen, sink, water - static const IconDataDuotone duotoneFaucet = const IconDataDuotone( - 0xe005, - secondary: const IconDataDuotone(0x10e005), - ); - - /// Regular Faucet Drip icon - /// - /// https://fontawesome.com/icons/faucet-drip?style=regular - /// drip, house, kitchen, sink, water - static const IconData faucetDrip = const IconDataRegular(0xe006); - - /// Solid Faucet Drip icon - /// - /// https://fontawesome.com/icons/faucet-drip?style=solid - /// drip, house, kitchen, sink, water - static const IconData solidFaucetDrip = const IconDataSolid(0xe006); - - /// Light Faucet Drip icon - /// - /// https://fontawesome.com/icons/light_faucet-drip?style=light - /// drip, house, kitchen, sink, water - static const IconData lightFaucetDrip = const IconDataLight(0xe006); - - /// Duotone Faucet Drip icon - /// - /// https://fontawesome.com/icons/duotone_faucet-drip?style=duotone - /// drip, house, kitchen, sink, water - static const IconDataDuotone duotoneFaucetDrip = const IconDataDuotone( - 0xe006, - secondary: const IconDataDuotone(0x10e006), - ); - - /// Regular Fax icon - /// - /// https://fontawesome.com/icons/fax?style=regular - /// business, communicate, copy, facsimile, send - static const IconData fax = const IconDataRegular(0xf1ac); - - /// Solid Fax icon - /// - /// https://fontawesome.com/icons/fax?style=solid - /// business, communicate, copy, facsimile, send - static const IconData solidFax = const IconDataSolid(0xf1ac); - - /// Light Fax icon - /// - /// https://fontawesome.com/icons/light_fax?style=light - /// business, communicate, copy, facsimile, send - static const IconData lightFax = const IconDataLight(0xf1ac); - - /// Duotone Fax icon - /// - /// https://fontawesome.com/icons/duotone_fax?style=duotone - /// business, communicate, copy, facsimile, send - static const IconDataDuotone duotoneFax = const IconDataDuotone( - 0xf1ac, - secondary: const IconDataDuotone(0x10f1ac), - ); - - /// Regular Feather icon - /// - /// https://fontawesome.com/icons/feather?style=regular - /// bird, light, plucked, quill, write - static const IconData feather = const IconDataRegular(0xf52d); - - /// Solid Feather icon - /// - /// https://fontawesome.com/icons/feather?style=solid - /// bird, light, plucked, quill, write - static const IconData solidFeather = const IconDataSolid(0xf52d); - - /// Light Feather icon - /// - /// https://fontawesome.com/icons/light_feather?style=light - /// bird, light, plucked, quill, write - static const IconData lightFeather = const IconDataLight(0xf52d); - - /// Duotone Feather icon - /// - /// https://fontawesome.com/icons/duotone_feather?style=duotone - /// bird, light, plucked, quill, write - static const IconDataDuotone duotoneFeather = const IconDataDuotone( - 0xf52d, - secondary: const IconDataDuotone(0x10f52d), - ); - - /// Regular Alternate Feather icon - /// - /// https://fontawesome.com/icons/feather-alt?style=regular - /// bird, light, plucked, quill, write - static const IconData featherAlt = const IconDataRegular(0xf56b); - - /// Solid Alternate Feather icon - /// - /// https://fontawesome.com/icons/feather-alt?style=solid - /// bird, light, plucked, quill, write - static const IconData solidFeatherAlt = const IconDataSolid(0xf56b); - - /// Light Alternate Feather icon - /// - /// https://fontawesome.com/icons/light_feather-alt?style=light - /// bird, light, plucked, quill, write - static const IconData lightFeatherAlt = const IconDataLight(0xf56b); - - /// Duotone Alternate Feather icon - /// - /// https://fontawesome.com/icons/duotone_feather-alt?style=duotone - /// bird, light, plucked, quill, write - static const IconDataDuotone duotoneFeatherAlt = const IconDataDuotone( - 0xf56b, - secondary: const IconDataDuotone(0x10f56b), - ); - - /// Brands FedEx icon - /// - /// https://fontawesome.com/icons/fedex?style=brands - /// Federal Express, package, shipping - static const IconData fedex = const IconDataBrands(0xf797); - - /// Brands Fedora icon - /// - /// https://fontawesome.com/icons/fedora?style=brands - /// linux, operating system, os - static const IconData fedora = const IconDataBrands(0xf798); - - /// Regular Female icon - /// - /// https://fontawesome.com/icons/female?style=regular - /// human, person, profile, user, woman - static const IconData female = const IconDataRegular(0xf182); - - /// Solid Female icon - /// - /// https://fontawesome.com/icons/female?style=solid - /// human, person, profile, user, woman - static const IconData solidFemale = const IconDataSolid(0xf182); - - /// Light Female icon - /// - /// https://fontawesome.com/icons/light_female?style=light - /// human, person, profile, user, woman - static const IconData lightFemale = const IconDataLight(0xf182); - - /// Duotone Female icon - /// - /// https://fontawesome.com/icons/duotone_female?style=duotone - /// human, person, profile, user, woman - static const IconDataDuotone duotoneFemale = const IconDataDuotone( - 0xf182, - secondary: const IconDataDuotone(0x10f182), - ); - - /// Regular Field Hockey icon - /// - /// https://fontawesome.com/icons/field-hockey?style=regular - /// ball, sport, stick - static const IconData fieldHockey = const IconDataRegular(0xf44c); - - /// Solid Field Hockey icon - /// - /// https://fontawesome.com/icons/field-hockey?style=solid - /// ball, sport, stick - static const IconData solidFieldHockey = const IconDataSolid(0xf44c); - - /// Light Field Hockey icon - /// - /// https://fontawesome.com/icons/light_field-hockey?style=light - /// ball, sport, stick - static const IconData lightFieldHockey = const IconDataLight(0xf44c); - - /// Duotone Field Hockey icon - /// - /// https://fontawesome.com/icons/duotone_field-hockey?style=duotone - /// ball, sport, stick - static const IconDataDuotone duotoneFieldHockey = const IconDataDuotone( - 0xf44c, - secondary: const IconDataDuotone(0x10f44c), - ); - - /// Regular fighter-jet icon - /// - /// https://fontawesome.com/icons/fighter-jet?style=regular - /// airplane, fast, fly, goose, maverick, plane, quick, top gun, transportation, travel - static const IconData fighterJet = const IconDataRegular(0xf0fb); - - /// Solid fighter-jet icon - /// - /// https://fontawesome.com/icons/fighter-jet?style=solid - /// airplane, fast, fly, goose, maverick, plane, quick, top gun, transportation, travel - static const IconData solidFighterJet = const IconDataSolid(0xf0fb); - - /// Light fighter-jet icon - /// - /// https://fontawesome.com/icons/light_fighter-jet?style=light - /// airplane, fast, fly, goose, maverick, plane, quick, top gun, transportation, travel - static const IconData lightFighterJet = const IconDataLight(0xf0fb); - - /// Duotone fighter-jet icon - /// - /// https://fontawesome.com/icons/duotone_fighter-jet?style=duotone - /// airplane, fast, fly, goose, maverick, plane, quick, top gun, transportation, travel - static const IconDataDuotone duotoneFighterJet = const IconDataDuotone( - 0xf0fb, - secondary: const IconDataDuotone(0x10f0fb), - ); - - /// Brands Figma icon - /// - /// https://fontawesome.com/icons/figma?style=brands - /// app, design, interface - static const IconData figma = const IconDataBrands(0xf799); - - /// Regular File icon - /// - /// https://fontawesome.com/icons/file?style=regular - /// document, new, page, pdf, resume - static const IconData file = const IconDataRegular(0xf15b); - - /// Solid File icon - /// - /// https://fontawesome.com/icons/file?style=solid - /// document, new, page, pdf, resume - static const IconData solidFile = const IconDataSolid(0xf15b); - - /// Light File icon - /// - /// https://fontawesome.com/icons/light_file?style=light - /// document, new, page, pdf, resume - static const IconData lightFile = const IconDataLight(0xf15b); - - /// Duotone File icon - /// - /// https://fontawesome.com/icons/duotone_file?style=duotone - /// document, new, page, pdf, resume - static const IconDataDuotone duotoneFile = const IconDataDuotone( - 0xf15b, - secondary: const IconDataDuotone(0x10f15b), - ); - - /// Regular Alternate File icon - /// - /// https://fontawesome.com/icons/file-alt?style=regular - /// document, file-text, invoice, new, page, pdf - static const IconData fileAlt = const IconDataRegular(0xf15c); - - /// Solid Alternate File icon - /// - /// https://fontawesome.com/icons/file-alt?style=solid - /// document, file-text, invoice, new, page, pdf - static const IconData solidFileAlt = const IconDataSolid(0xf15c); - - /// Light Alternate File icon - /// - /// https://fontawesome.com/icons/light_file-alt?style=light - /// document, file-text, invoice, new, page, pdf - static const IconData lightFileAlt = const IconDataLight(0xf15c); - - /// Duotone Alternate File icon - /// - /// https://fontawesome.com/icons/duotone_file-alt?style=duotone - /// document, file-text, invoice, new, page, pdf - static const IconDataDuotone duotoneFileAlt = const IconDataDuotone( - 0xf15c, - secondary: const IconDataDuotone(0x10f15c), - ); - - /// Regular Archive File icon - /// - /// https://fontawesome.com/icons/file-archive?style=regular - /// .zip, bundle, compress, compression, download, zip - static const IconData fileArchive = const IconDataRegular(0xf1c6); - - /// Solid Archive File icon - /// - /// https://fontawesome.com/icons/file-archive?style=solid - /// .zip, bundle, compress, compression, download, zip - static const IconData solidFileArchive = const IconDataSolid(0xf1c6); - - /// Light Archive File icon - /// - /// https://fontawesome.com/icons/light_file-archive?style=light - /// .zip, bundle, compress, compression, download, zip - static const IconData lightFileArchive = const IconDataLight(0xf1c6); - - /// Duotone Archive File icon - /// - /// https://fontawesome.com/icons/duotone_file-archive?style=duotone - /// .zip, bundle, compress, compression, download, zip - static const IconDataDuotone duotoneFileArchive = const IconDataDuotone( - 0xf1c6, - secondary: const IconDataDuotone(0x10f1c6), - ); - - /// Regular Audio File icon - /// - /// https://fontawesome.com/icons/file-audio?style=regular - /// document, mp3, music, page, play, sound - static const IconData fileAudio = const IconDataRegular(0xf1c7); - - /// Solid Audio File icon - /// - /// https://fontawesome.com/icons/file-audio?style=solid - /// document, mp3, music, page, play, sound - static const IconData solidFileAudio = const IconDataSolid(0xf1c7); - - /// Light Audio File icon - /// - /// https://fontawesome.com/icons/light_file-audio?style=light - /// document, mp3, music, page, play, sound - static const IconData lightFileAudio = const IconDataLight(0xf1c7); - - /// Duotone Audio File icon - /// - /// https://fontawesome.com/icons/duotone_file-audio?style=duotone - /// document, mp3, music, page, play, sound - static const IconDataDuotone duotoneFileAudio = const IconDataDuotone( - 0xf1c7, - secondary: const IconDataDuotone(0x10f1c7), - ); - - /// Regular File Certificate icon - /// - /// https://fontawesome.com/icons/file-certificate?style=regular - /// award, diploma, document, license - static const IconData fileCertificate = const IconDataRegular(0xf5f3); - - /// Solid File Certificate icon - /// - /// https://fontawesome.com/icons/file-certificate?style=solid - /// award, diploma, document, license - static const IconData solidFileCertificate = const IconDataSolid(0xf5f3); - - /// Light File Certificate icon - /// - /// https://fontawesome.com/icons/light_file-certificate?style=light - /// award, diploma, document, license - static const IconData lightFileCertificate = const IconDataLight(0xf5f3); - - /// Duotone File Certificate icon - /// - /// https://fontawesome.com/icons/duotone_file-certificate?style=duotone - /// award, diploma, document, license - static const IconDataDuotone duotoneFileCertificate = const IconDataDuotone( - 0xf5f3, - secondary: const IconDataDuotone(0x10f5f3), - ); - - /// Regular Chart Line File icon - /// - /// https://fontawesome.com/icons/file-chart-line?style=regular - /// analytics, data, document, projection, report - static const IconData fileChartLine = const IconDataRegular(0xf659); - - /// Solid Chart Line File icon - /// - /// https://fontawesome.com/icons/file-chart-line?style=solid - /// analytics, data, document, projection, report - static const IconData solidFileChartLine = const IconDataSolid(0xf659); - - /// Light Chart Line File icon - /// - /// https://fontawesome.com/icons/light_file-chart-line?style=light - /// analytics, data, document, projection, report - static const IconData lightFileChartLine = const IconDataLight(0xf659); - - /// Duotone Chart Line File icon - /// - /// https://fontawesome.com/icons/duotone_file-chart-line?style=duotone - /// analytics, data, document, projection, report - static const IconDataDuotone duotoneFileChartLine = const IconDataDuotone( - 0xf659, - secondary: const IconDataDuotone(0x10f659), - ); - - /// Regular Pie Chart File icon - /// - /// https://fontawesome.com/icons/file-chart-pie?style=regular - /// analytics, data, document, projection, report - static const IconData fileChartPie = const IconDataRegular(0xf65a); - - /// Solid Pie Chart File icon - /// - /// https://fontawesome.com/icons/file-chart-pie?style=solid - /// analytics, data, document, projection, report - static const IconData solidFileChartPie = const IconDataSolid(0xf65a); - - /// Light Pie Chart File icon - /// - /// https://fontawesome.com/icons/light_file-chart-pie?style=light - /// analytics, data, document, projection, report - static const IconData lightFileChartPie = const IconDataLight(0xf65a); - - /// Duotone Pie Chart File icon - /// - /// https://fontawesome.com/icons/duotone_file-chart-pie?style=duotone - /// analytics, data, document, projection, report - static const IconDataDuotone duotoneFileChartPie = const IconDataDuotone( - 0xf65a, - secondary: const IconDataDuotone(0x10f65a), - ); - - /// Regular Check File icon - /// - /// https://fontawesome.com/icons/file-check?style=regular - /// accept, agree, confirm, document, done, ok, select, success, synced, tick, todo - static const IconData fileCheck = const IconDataRegular(0xf316); - - /// Solid Check File icon - /// - /// https://fontawesome.com/icons/file-check?style=solid - /// accept, agree, confirm, document, done, ok, select, success, synced, tick, todo - static const IconData solidFileCheck = const IconDataSolid(0xf316); - - /// Light Check File icon - /// - /// https://fontawesome.com/icons/light_file-check?style=light - /// accept, agree, confirm, document, done, ok, select, success, synced, tick, todo - static const IconData lightFileCheck = const IconDataLight(0xf316); - - /// Duotone Check File icon - /// - /// https://fontawesome.com/icons/duotone_file-check?style=duotone - /// accept, agree, confirm, document, done, ok, select, success, synced, tick, todo - static const IconDataDuotone duotoneFileCheck = const IconDataDuotone( - 0xf316, - secondary: const IconDataDuotone(0x10f316), - ); - - /// Regular Code File icon - /// - /// https://fontawesome.com/icons/file-code?style=regular - /// css, development, document, html - static const IconData fileCode = const IconDataRegular(0xf1c9); - - /// Solid Code File icon - /// - /// https://fontawesome.com/icons/file-code?style=solid - /// css, development, document, html - static const IconData solidFileCode = const IconDataSolid(0xf1c9); - - /// Light Code File icon - /// - /// https://fontawesome.com/icons/light_file-code?style=light - /// css, development, document, html - static const IconData lightFileCode = const IconDataLight(0xf1c9); - - /// Duotone Code File icon - /// - /// https://fontawesome.com/icons/duotone_file-code?style=duotone - /// css, development, document, html - static const IconDataDuotone duotoneFileCode = const IconDataDuotone( - 0xf1c9, - secondary: const IconDataDuotone(0x10f1c9), - ); - - /// Regular File Contract icon - /// - /// https://fontawesome.com/icons/file-contract?style=regular - /// agreement, binding, document, legal, signature - static const IconData fileContract = const IconDataRegular(0xf56c); - - /// Solid File Contract icon - /// - /// https://fontawesome.com/icons/file-contract?style=solid - /// agreement, binding, document, legal, signature - static const IconData solidFileContract = const IconDataSolid(0xf56c); - - /// Light File Contract icon - /// - /// https://fontawesome.com/icons/light_file-contract?style=light - /// agreement, binding, document, legal, signature - static const IconData lightFileContract = const IconDataLight(0xf56c); - - /// Duotone File Contract icon - /// - /// https://fontawesome.com/icons/duotone_file-contract?style=duotone - /// agreement, binding, document, legal, signature - static const IconDataDuotone duotoneFileContract = const IconDataDuotone( - 0xf56c, - secondary: const IconDataDuotone(0x10f56c), - ); - - /// Regular File CSV icon - /// - /// https://fontawesome.com/icons/file-csv?style=regular - /// document, excel, numbers, spreadsheets, table - static const IconData fileCsv = const IconDataRegular(0xf6dd); - - /// Solid File CSV icon - /// - /// https://fontawesome.com/icons/file-csv?style=solid - /// document, excel, numbers, spreadsheets, table - static const IconData solidFileCsv = const IconDataSolid(0xf6dd); - - /// Light File CSV icon - /// - /// https://fontawesome.com/icons/light_file-csv?style=light - /// document, excel, numbers, spreadsheets, table - static const IconData lightFileCsv = const IconDataLight(0xf6dd); - - /// Duotone File CSV icon - /// - /// https://fontawesome.com/icons/duotone_file-csv?style=duotone - /// document, excel, numbers, spreadsheets, table - static const IconDataDuotone duotoneFileCsv = const IconDataDuotone( - 0xf6dd, - secondary: const IconDataDuotone(0x10f6dd), - ); - - /// Regular File Download icon - /// - /// https://fontawesome.com/icons/file-download?style=regular - /// document, export, save - static const IconData fileDownload = const IconDataRegular(0xf56d); - - /// Solid File Download icon - /// - /// https://fontawesome.com/icons/file-download?style=solid - /// document, export, save - static const IconData solidFileDownload = const IconDataSolid(0xf56d); - - /// Light File Download icon - /// - /// https://fontawesome.com/icons/light_file-download?style=light - /// document, export, save - static const IconData lightFileDownload = const IconDataLight(0xf56d); - - /// Duotone File Download icon - /// - /// https://fontawesome.com/icons/duotone_file-download?style=duotone - /// document, export, save - static const IconDataDuotone duotoneFileDownload = const IconDataDuotone( - 0xf56d, - secondary: const IconDataDuotone(0x10f56d), - ); - - /// Regular Edit File icon - /// - /// https://fontawesome.com/icons/file-edit?style=regular - /// edit, pen, pencil, update, write - static const IconData fileEdit = const IconDataRegular(0xf31c); - - /// Solid Edit File icon - /// - /// https://fontawesome.com/icons/file-edit?style=solid - /// edit, pen, pencil, update, write - static const IconData solidFileEdit = const IconDataSolid(0xf31c); - - /// Light Edit File icon - /// - /// https://fontawesome.com/icons/light_file-edit?style=light - /// edit, pen, pencil, update, write - static const IconData lightFileEdit = const IconDataLight(0xf31c); - - /// Duotone Edit File icon - /// - /// https://fontawesome.com/icons/duotone_file-edit?style=duotone - /// edit, pen, pencil, update, write - static const IconDataDuotone duotoneFileEdit = const IconDataDuotone( - 0xf31c, - secondary: const IconDataDuotone(0x10f31c), - ); - - /// Regular Excel File icon - /// - /// https://fontawesome.com/icons/file-excel?style=regular - /// csv, document, numbers, spreadsheets, table - static const IconData fileExcel = const IconDataRegular(0xf1c3); - - /// Solid Excel File icon - /// - /// https://fontawesome.com/icons/file-excel?style=solid - /// csv, document, numbers, spreadsheets, table - static const IconData solidFileExcel = const IconDataSolid(0xf1c3); - - /// Light Excel File icon - /// - /// https://fontawesome.com/icons/light_file-excel?style=light - /// csv, document, numbers, spreadsheets, table - static const IconData lightFileExcel = const IconDataLight(0xf1c3); - - /// Duotone Excel File icon - /// - /// https://fontawesome.com/icons/duotone_file-excel?style=duotone - /// csv, document, numbers, spreadsheets, table - static const IconDataDuotone duotoneFileExcel = const IconDataDuotone( - 0xf1c3, - secondary: const IconDataDuotone(0x10f1c3), - ); - - /// Regular Exclamation File icon - /// - /// https://fontawesome.com/icons/file-exclamation?style=regular - /// alert, document, important, page - static const IconData fileExclamation = const IconDataRegular(0xf31a); - - /// Solid Exclamation File icon - /// - /// https://fontawesome.com/icons/file-exclamation?style=solid - /// alert, document, important, page - static const IconData solidFileExclamation = const IconDataSolid(0xf31a); - - /// Light Exclamation File icon - /// - /// https://fontawesome.com/icons/light_file-exclamation?style=light - /// alert, document, important, page - static const IconData lightFileExclamation = const IconDataLight(0xf31a); - - /// Duotone Exclamation File icon - /// - /// https://fontawesome.com/icons/duotone_file-exclamation?style=duotone - /// alert, document, important, page - static const IconDataDuotone duotoneFileExclamation = const IconDataDuotone( - 0xf31a, - secondary: const IconDataDuotone(0x10f31a), - ); - - /// Regular File Export icon - /// - /// https://fontawesome.com/icons/file-export?style=regular - /// download, save - static const IconData fileExport = const IconDataRegular(0xf56e); - - /// Solid File Export icon - /// - /// https://fontawesome.com/icons/file-export?style=solid - /// download, save - static const IconData solidFileExport = const IconDataSolid(0xf56e); - - /// Light File Export icon - /// - /// https://fontawesome.com/icons/light_file-export?style=light - /// download, save - static const IconData lightFileExport = const IconDataLight(0xf56e); - - /// Duotone File Export icon - /// - /// https://fontawesome.com/icons/duotone_file-export?style=duotone - /// download, save - static const IconDataDuotone duotoneFileExport = const IconDataDuotone( - 0xf56e, - secondary: const IconDataDuotone(0x10f56e), - ); - - /// Regular Image File icon - /// - /// https://fontawesome.com/icons/file-image?style=regular - /// document, image, jpg, photo, png - static const IconData fileImage = const IconDataRegular(0xf1c5); - - /// Solid Image File icon - /// - /// https://fontawesome.com/icons/file-image?style=solid - /// document, image, jpg, photo, png - static const IconData solidFileImage = const IconDataSolid(0xf1c5); - - /// Light Image File icon - /// - /// https://fontawesome.com/icons/light_file-image?style=light - /// document, image, jpg, photo, png - static const IconData lightFileImage = const IconDataLight(0xf1c5); - - /// Duotone Image File icon - /// - /// https://fontawesome.com/icons/duotone_file-image?style=duotone - /// document, image, jpg, photo, png - static const IconDataDuotone duotoneFileImage = const IconDataDuotone( - 0xf1c5, - secondary: const IconDataDuotone(0x10f1c5), - ); - - /// Regular File Import icon - /// - /// https://fontawesome.com/icons/file-import?style=regular - /// copy, document, send, upload - static const IconData fileImport = const IconDataRegular(0xf56f); - - /// Solid File Import icon - /// - /// https://fontawesome.com/icons/file-import?style=solid - /// copy, document, send, upload - static const IconData solidFileImport = const IconDataSolid(0xf56f); - - /// Light File Import icon - /// - /// https://fontawesome.com/icons/light_file-import?style=light - /// copy, document, send, upload - static const IconData lightFileImport = const IconDataLight(0xf56f); - - /// Duotone File Import icon - /// - /// https://fontawesome.com/icons/duotone_file-import?style=duotone - /// copy, document, send, upload - static const IconDataDuotone duotoneFileImport = const IconDataDuotone( - 0xf56f, - secondary: const IconDataDuotone(0x10f56f), - ); - - /// Regular File Invoice icon - /// - /// https://fontawesome.com/icons/file-invoice?style=regular - /// account, bill, charge, document, payment, receipt - static const IconData fileInvoice = const IconDataRegular(0xf570); - - /// Solid File Invoice icon - /// - /// https://fontawesome.com/icons/file-invoice?style=solid - /// account, bill, charge, document, payment, receipt - static const IconData solidFileInvoice = const IconDataSolid(0xf570); - - /// Light File Invoice icon - /// - /// https://fontawesome.com/icons/light_file-invoice?style=light - /// account, bill, charge, document, payment, receipt - static const IconData lightFileInvoice = const IconDataLight(0xf570); - - /// Duotone File Invoice icon - /// - /// https://fontawesome.com/icons/duotone_file-invoice?style=duotone - /// account, bill, charge, document, payment, receipt - static const IconDataDuotone duotoneFileInvoice = const IconDataDuotone( - 0xf570, - secondary: const IconDataDuotone(0x10f570), - ); - - /// Regular File Invoice with US Dollar icon - /// - /// https://fontawesome.com/icons/file-invoice-dollar?style=regular - /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, usd - static const IconData fileInvoiceDollar = const IconDataRegular(0xf571); - - /// Solid File Invoice with US Dollar icon - /// - /// https://fontawesome.com/icons/file-invoice-dollar?style=solid - /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, usd - static const IconData solidFileInvoiceDollar = const IconDataSolid(0xf571); - - /// Light File Invoice with US Dollar icon - /// - /// https://fontawesome.com/icons/light_file-invoice-dollar?style=light - /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, usd - static const IconData lightFileInvoiceDollar = const IconDataLight(0xf571); - - /// Duotone File Invoice with US Dollar icon - /// - /// https://fontawesome.com/icons/duotone_file-invoice-dollar?style=duotone - /// $, account, bill, charge, document, dollar-sign, money, payment, receipt, usd - static const IconDataDuotone duotoneFileInvoiceDollar = const IconDataDuotone( - 0xf571, - secondary: const IconDataDuotone(0x10f571), - ); - - /// Regular Medical File icon - /// - /// https://fontawesome.com/icons/file-medical?style=regular - /// document, health, history, prescription, record - static const IconData fileMedical = const IconDataRegular(0xf477); - - /// Solid Medical File icon - /// - /// https://fontawesome.com/icons/file-medical?style=solid - /// document, health, history, prescription, record - static const IconData solidFileMedical = const IconDataSolid(0xf477); - - /// Light Medical File icon - /// - /// https://fontawesome.com/icons/light_file-medical?style=light - /// document, health, history, prescription, record - static const IconData lightFileMedical = const IconDataLight(0xf477); - - /// Duotone Medical File icon - /// - /// https://fontawesome.com/icons/duotone_file-medical?style=duotone - /// document, health, history, prescription, record - static const IconDataDuotone duotoneFileMedical = const IconDataDuotone( - 0xf477, - secondary: const IconDataDuotone(0x10f477), - ); - - /// Regular Alternate Medical File icon - /// - /// https://fontawesome.com/icons/file-medical-alt?style=regular - /// document, health, history, prescription, record - static const IconData fileMedicalAlt = const IconDataRegular(0xf478); - - /// Solid Alternate Medical File icon - /// - /// https://fontawesome.com/icons/file-medical-alt?style=solid - /// document, health, history, prescription, record - static const IconData solidFileMedicalAlt = const IconDataSolid(0xf478); - - /// Light Alternate Medical File icon - /// - /// https://fontawesome.com/icons/light_file-medical-alt?style=light - /// document, health, history, prescription, record - static const IconData lightFileMedicalAlt = const IconDataLight(0xf478); - - /// Duotone Alternate Medical File icon - /// - /// https://fontawesome.com/icons/duotone_file-medical-alt?style=duotone - /// document, health, history, prescription, record - static const IconDataDuotone duotoneFileMedicalAlt = const IconDataDuotone( - 0xf478, - secondary: const IconDataDuotone(0x10f478), - ); - - /// Regular Minus File icon - /// - /// https://fontawesome.com/icons/file-minus?style=regular - /// delete, document, negative, remove - static const IconData fileMinus = const IconDataRegular(0xf318); - - /// Solid Minus File icon - /// - /// https://fontawesome.com/icons/file-minus?style=solid - /// delete, document, negative, remove - static const IconData solidFileMinus = const IconDataSolid(0xf318); - - /// Light Minus File icon - /// - /// https://fontawesome.com/icons/light_file-minus?style=light - /// delete, document, negative, remove - static const IconData lightFileMinus = const IconDataLight(0xf318); - - /// Duotone Minus File icon - /// - /// https://fontawesome.com/icons/duotone_file-minus?style=duotone - /// delete, document, negative, remove - static const IconDataDuotone duotoneFileMinus = const IconDataDuotone( - 0xf318, - secondary: const IconDataDuotone(0x10f318), - ); - - /// 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 = const IconDataRegular(0xf8b6); - - /// 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 = const IconDataSolid(0xf8b6); - - /// Light File Music icon - /// - /// https://fontawesome.com/icons/light_file-music?style=light - /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconData lightFileMusic = const IconDataLight(0xf8b6); - - /// Duotone File Music icon - /// - /// https://fontawesome.com/icons/duotone_file-music?style=duotone - /// aac, aif, audio, midi, mp3, ogg, sheet music, wav, wma - static const IconDataDuotone duotoneFileMusic = const IconDataDuotone( - 0xf8b6, - secondary: const IconDataDuotone(0x10f8b6), - ); - - /// Regular PDF File icon - /// - /// https://fontawesome.com/icons/file-pdf?style=regular - /// acrobat, document, preview, save - static const IconData filePdf = const IconDataRegular(0xf1c1); - - /// Solid PDF File icon - /// - /// https://fontawesome.com/icons/file-pdf?style=solid - /// acrobat, document, preview, save - static const IconData solidFilePdf = const IconDataSolid(0xf1c1); - - /// Light PDF File icon - /// - /// https://fontawesome.com/icons/light_file-pdf?style=light - /// acrobat, document, preview, save - static const IconData lightFilePdf = const IconDataLight(0xf1c1); - - /// Duotone PDF File icon - /// - /// https://fontawesome.com/icons/duotone_file-pdf?style=duotone - /// acrobat, document, preview, save - static const IconDataDuotone duotoneFilePdf = const IconDataDuotone( - 0xf1c1, - secondary: const IconDataDuotone(0x10f1c1), - ); - - /// Regular Plus File icon - /// - /// https://fontawesome.com/icons/file-plus?style=regular - /// add, create, document, medical, new, positive - static const IconData filePlus = const IconDataRegular(0xf319); - - /// Solid Plus File icon - /// - /// https://fontawesome.com/icons/file-plus?style=solid - /// add, create, document, medical, new, positive - static const IconData solidFilePlus = const IconDataSolid(0xf319); - - /// Light Plus File icon - /// - /// https://fontawesome.com/icons/light_file-plus?style=light - /// add, create, document, medical, new, positive - static const IconData lightFilePlus = const IconDataLight(0xf319); - - /// Duotone Plus File icon - /// - /// https://fontawesome.com/icons/duotone_file-plus?style=duotone - /// add, create, document, medical, new, positive - static const IconDataDuotone duotoneFilePlus = const IconDataDuotone( - 0xf319, - secondary: const IconDataDuotone(0x10f319), - ); - - /// Regular Powerpoint File icon - /// - /// https://fontawesome.com/icons/file-powerpoint?style=regular - /// display, document, keynote, presentation - static const IconData filePowerpoint = const IconDataRegular(0xf1c4); - - /// Solid Powerpoint File icon - /// - /// https://fontawesome.com/icons/file-powerpoint?style=solid - /// display, document, keynote, presentation - static const IconData solidFilePowerpoint = const IconDataSolid(0xf1c4); - - /// Light Powerpoint File icon - /// - /// https://fontawesome.com/icons/light_file-powerpoint?style=light - /// display, document, keynote, presentation - static const IconData lightFilePowerpoint = const IconDataLight(0xf1c4); - - /// Duotone Powerpoint File icon - /// - /// https://fontawesome.com/icons/duotone_file-powerpoint?style=duotone - /// display, document, keynote, presentation - static const IconDataDuotone duotoneFilePowerpoint = const IconDataDuotone( - 0xf1c4, - secondary: const IconDataDuotone(0x10f1c4), - ); - - /// Regular File Prescription icon - /// - /// https://fontawesome.com/icons/file-prescription?style=regular - /// document, drugs, medical, medicine, rx - static const IconData filePrescription = const IconDataRegular(0xf572); - - /// Solid File Prescription icon - /// - /// https://fontawesome.com/icons/file-prescription?style=solid - /// document, drugs, medical, medicine, rx - static const IconData solidFilePrescription = const IconDataSolid(0xf572); - - /// Light File Prescription icon - /// - /// https://fontawesome.com/icons/light_file-prescription?style=light - /// document, drugs, medical, medicine, rx - static const IconData lightFilePrescription = const IconDataLight(0xf572); - - /// Duotone File Prescription icon - /// - /// https://fontawesome.com/icons/duotone_file-prescription?style=duotone - /// document, drugs, medical, medicine, rx - static const IconDataDuotone duotoneFilePrescription = const IconDataDuotone( - 0xf572, - secondary: const IconDataDuotone(0x10f572), - ); - - /// Regular File Search icon - /// - /// https://fontawesome.com/icons/file-search?style=regular - /// document, find, look, scan - static const IconData fileSearch = const IconDataRegular(0xf865); - - /// Solid File Search icon - /// - /// https://fontawesome.com/icons/file-search?style=solid - /// document, find, look, scan - static const IconData solidFileSearch = const IconDataSolid(0xf865); - - /// Light File Search icon - /// - /// https://fontawesome.com/icons/light_file-search?style=light - /// document, find, look, scan - static const IconData lightFileSearch = const IconDataLight(0xf865); - - /// Duotone File Search icon - /// - /// https://fontawesome.com/icons/duotone_file-search?style=duotone - /// document, find, look, scan - static const IconDataDuotone duotoneFileSearch = const IconDataDuotone( - 0xf865, - secondary: const IconDataDuotone(0x10f865), - ); - - /// Regular File Signature icon - /// - /// https://fontawesome.com/icons/file-signature?style=regular - /// John Hancock, contract, document, name - static const IconData fileSignature = const IconDataRegular(0xf573); - - /// Solid File Signature icon - /// - /// https://fontawesome.com/icons/file-signature?style=solid - /// John Hancock, contract, document, name - static const IconData solidFileSignature = const IconDataSolid(0xf573); - - /// Light File Signature icon - /// - /// https://fontawesome.com/icons/light_file-signature?style=light - /// John Hancock, contract, document, name - static const IconData lightFileSignature = const IconDataLight(0xf573); - - /// Duotone File Signature icon - /// - /// https://fontawesome.com/icons/duotone_file-signature?style=duotone - /// John Hancock, contract, document, name - static const IconDataDuotone duotoneFileSignature = const IconDataDuotone( - 0xf573, - secondary: const IconDataDuotone(0x10f573), - ); - - /// Regular Spreadsheet File icon - /// - /// https://fontawesome.com/icons/file-spreadsheet?style=regular - /// csv, document, excel, numbers, sheets, xls - static const IconData fileSpreadsheet = const IconDataRegular(0xf65b); - - /// Solid Spreadsheet File icon - /// - /// https://fontawesome.com/icons/file-spreadsheet?style=solid - /// csv, document, excel, numbers, sheets, xls - static const IconData solidFileSpreadsheet = const IconDataSolid(0xf65b); - - /// Light Spreadsheet File icon - /// - /// https://fontawesome.com/icons/light_file-spreadsheet?style=light - /// csv, document, excel, numbers, sheets, xls - static const IconData lightFileSpreadsheet = const IconDataLight(0xf65b); - - /// Duotone Spreadsheet File icon - /// - /// https://fontawesome.com/icons/duotone_file-spreadsheet?style=duotone - /// csv, document, excel, numbers, sheets, xls - static const IconDataDuotone duotoneFileSpreadsheet = const IconDataDuotone( - 0xf65b, - secondary: const IconDataDuotone(0x10f65b), - ); - - /// Regular Times File icon - /// - /// https://fontawesome.com/icons/file-times?style=regular - /// archive, delete, document, remove, x - static const IconData fileTimes = const IconDataRegular(0xf317); - - /// Solid Times File icon - /// - /// https://fontawesome.com/icons/file-times?style=solid - /// archive, delete, document, remove, x - static const IconData solidFileTimes = const IconDataSolid(0xf317); - - /// Light Times File icon - /// - /// https://fontawesome.com/icons/light_file-times?style=light - /// archive, delete, document, remove, x - static const IconData lightFileTimes = const IconDataLight(0xf317); - - /// Duotone Times File icon - /// - /// https://fontawesome.com/icons/duotone_file-times?style=duotone - /// archive, delete, document, remove, x - static const IconDataDuotone duotoneFileTimes = const IconDataDuotone( - 0xf317, - secondary: const IconDataDuotone(0x10f317), - ); - - /// Regular File Upload icon - /// - /// https://fontawesome.com/icons/file-upload?style=regular - /// document, import, page, save - static const IconData fileUpload = const IconDataRegular(0xf574); - - /// Solid File Upload icon - /// - /// https://fontawesome.com/icons/file-upload?style=solid - /// document, import, page, save - static const IconData solidFileUpload = const IconDataSolid(0xf574); - - /// Light File Upload icon - /// - /// https://fontawesome.com/icons/light_file-upload?style=light - /// document, import, page, save - static const IconData lightFileUpload = const IconDataLight(0xf574); - - /// Duotone File Upload icon - /// - /// https://fontawesome.com/icons/duotone_file-upload?style=duotone - /// document, import, page, save - static const IconDataDuotone duotoneFileUpload = const IconDataDuotone( - 0xf574, - secondary: const IconDataDuotone(0x10f574), - ); - - /// Regular User File icon - /// - /// https://fontawesome.com/icons/file-user?style=regular - /// account, document, page, personnel, profile, resume - static const IconData fileUser = const IconDataRegular(0xf65c); - - /// Solid User File icon - /// - /// https://fontawesome.com/icons/file-user?style=solid - /// account, document, page, personnel, profile, resume - static const IconData solidFileUser = const IconDataSolid(0xf65c); - - /// Light User File icon - /// - /// https://fontawesome.com/icons/light_file-user?style=light - /// account, document, page, personnel, profile, resume - static const IconData lightFileUser = const IconDataLight(0xf65c); - - /// Duotone User File icon - /// - /// https://fontawesome.com/icons/duotone_file-user?style=duotone - /// account, document, page, personnel, profile, resume - static const IconDataDuotone duotoneFileUser = const IconDataDuotone( - 0xf65c, - secondary: const IconDataDuotone(0x10f65c), - ); - - /// Regular Video File icon - /// - /// https://fontawesome.com/icons/file-video?style=regular - /// document, m4v, movie, mp4, play - static const IconData fileVideo = const IconDataRegular(0xf1c8); - - /// Solid Video File icon - /// - /// https://fontawesome.com/icons/file-video?style=solid - /// document, m4v, movie, mp4, play - static const IconData solidFileVideo = const IconDataSolid(0xf1c8); - - /// Light Video File icon - /// - /// https://fontawesome.com/icons/light_file-video?style=light - /// document, m4v, movie, mp4, play - static const IconData lightFileVideo = const IconDataLight(0xf1c8); - - /// Duotone Video File icon - /// - /// https://fontawesome.com/icons/duotone_file-video?style=duotone - /// document, m4v, movie, mp4, play - static const IconDataDuotone duotoneFileVideo = const IconDataDuotone( - 0xf1c8, - secondary: const IconDataDuotone(0x10f1c8), - ); - - /// Regular Word File icon - /// - /// https://fontawesome.com/icons/file-word?style=regular - /// document, edit, page, text, writing - static const IconData fileWord = const IconDataRegular(0xf1c2); - - /// Solid Word File icon - /// - /// https://fontawesome.com/icons/file-word?style=solid - /// document, edit, page, text, writing - static const IconData solidFileWord = const IconDataSolid(0xf1c2); - - /// Light Word File icon - /// - /// https://fontawesome.com/icons/light_file-word?style=light - /// document, edit, page, text, writing - static const IconData lightFileWord = const IconDataLight(0xf1c2); - - /// Duotone Word File icon - /// - /// https://fontawesome.com/icons/duotone_file-word?style=duotone - /// document, edit, page, text, writing - static const IconDataDuotone duotoneFileWord = const IconDataDuotone( - 0xf1c2, - secondary: const IconDataDuotone(0x10f1c2), - ); - - /// Regular Medical Files icon - /// - /// https://fontawesome.com/icons/files-medical?style=regular - /// document, health, history, prescription, record - static const IconData filesMedical = const IconDataRegular(0xf7fd); - - /// Solid Medical Files icon - /// - /// https://fontawesome.com/icons/files-medical?style=solid - /// document, health, history, prescription, record - static const IconData solidFilesMedical = const IconDataSolid(0xf7fd); - - /// Light Medical Files icon - /// - /// https://fontawesome.com/icons/light_files-medical?style=light - /// document, health, history, prescription, record - static const IconData lightFilesMedical = const IconDataLight(0xf7fd); - - /// Duotone Medical Files icon - /// - /// https://fontawesome.com/icons/duotone_files-medical?style=duotone - /// document, health, history, prescription, record - static const IconDataDuotone duotoneFilesMedical = const IconDataDuotone( - 0xf7fd, - secondary: const IconDataDuotone(0x10f7fd), - ); - - /// Regular Fill icon - /// - /// https://fontawesome.com/icons/fill?style=regular - /// bucket, color, paint, paint bucket - static const IconData fill = const IconDataRegular(0xf575); - - /// Solid Fill icon - /// - /// https://fontawesome.com/icons/fill?style=solid - /// bucket, color, paint, paint bucket - static const IconData solidFill = const IconDataSolid(0xf575); - - /// Light Fill icon - /// - /// https://fontawesome.com/icons/light_fill?style=light - /// bucket, color, paint, paint bucket - static const IconData lightFill = const IconDataLight(0xf575); - - /// Duotone Fill icon - /// - /// https://fontawesome.com/icons/duotone_fill?style=duotone - /// bucket, color, paint, paint bucket - static const IconDataDuotone duotoneFill = const IconDataDuotone( - 0xf575, - secondary: const IconDataDuotone(0x10f575), - ); - - /// Regular Fill Drip icon - /// - /// https://fontawesome.com/icons/fill-drip?style=regular - /// bucket, color, drop, paint, paint bucket, spill - static const IconData fillDrip = const IconDataRegular(0xf576); - - /// Solid Fill Drip icon - /// - /// https://fontawesome.com/icons/fill-drip?style=solid - /// bucket, color, drop, paint, paint bucket, spill - static const IconData solidFillDrip = const IconDataSolid(0xf576); - - /// Light Fill Drip icon - /// - /// https://fontawesome.com/icons/light_fill-drip?style=light - /// bucket, color, drop, paint, paint bucket, spill - static const IconData lightFillDrip = const IconDataLight(0xf576); - - /// Duotone Fill Drip icon - /// - /// https://fontawesome.com/icons/duotone_fill-drip?style=duotone - /// bucket, color, drop, paint, paint bucket, spill - static const IconDataDuotone duotoneFillDrip = const IconDataDuotone( - 0xf576, - secondary: const IconDataDuotone(0x10f576), - ); - - /// Regular Film icon - /// - /// https://fontawesome.com/icons/film?style=regular - /// cinema, movie, strip, video - static const IconData film = const IconDataRegular(0xf008); - - /// Solid Film icon - /// - /// https://fontawesome.com/icons/film?style=solid - /// cinema, movie, strip, video - static const IconData solidFilm = const IconDataSolid(0xf008); - - /// Light Film icon - /// - /// https://fontawesome.com/icons/light_film?style=light - /// cinema, movie, strip, video - static const IconData lightFilm = const IconDataLight(0xf008); - - /// Duotone Film icon - /// - /// https://fontawesome.com/icons/duotone_film?style=duotone - /// cinema, movie, strip, video - static const IconDataDuotone duotoneFilm = const IconDataDuotone( - 0xf008, - secondary: const IconDataDuotone(0x10f008), - ); - - /// Regular Alternate Film icon - /// - /// https://fontawesome.com/icons/film-alt?style=regular - /// cinema, movie, strip, video - static const IconData filmAlt = const IconDataRegular(0xf3a0); - - /// Solid Alternate Film icon - /// - /// https://fontawesome.com/icons/film-alt?style=solid - /// cinema, movie, strip, video - static const IconData solidFilmAlt = const IconDataSolid(0xf3a0); - - /// Light Alternate Film icon - /// - /// https://fontawesome.com/icons/light_film-alt?style=light - /// cinema, movie, strip, video - static const IconData lightFilmAlt = const IconDataLight(0xf3a0); - - /// Duotone Alternate Film icon - /// - /// https://fontawesome.com/icons/duotone_film-alt?style=duotone - /// cinema, movie, strip, video - static const IconDataDuotone duotoneFilmAlt = const IconDataDuotone( - 0xf3a0, - secondary: const IconDataDuotone(0x10f3a0), - ); - - /// Regular Film Canister icon - /// - /// https://fontawesome.com/icons/film-canister?style=regular - /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData filmCanister = const IconDataRegular(0xf8b7); - - /// 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 = const IconDataSolid(0xf8b7); - - /// Light Film Canister icon - /// - /// https://fontawesome.com/icons/light_film-canister?style=light - /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconData lightFilmCanister = const IconDataLight(0xf8b7); - - /// Duotone Film Canister icon - /// - /// https://fontawesome.com/icons/duotone_film-canister?style=duotone - /// 110, 35mm, darkroom, develop, image, photo, photography, retro, vintage - static const IconDataDuotone duotoneFilmCanister = const IconDataDuotone( - 0xf8b7, - secondary: const IconDataDuotone(0x10f8b7), - ); - - /// Regular Filter icon - /// - /// https://fontawesome.com/icons/filter?style=regular - /// funnel, options, separate, sort - static const IconData filter = const IconDataRegular(0xf0b0); - - /// Solid Filter icon - /// - /// https://fontawesome.com/icons/filter?style=solid - /// funnel, options, separate, sort - static const IconData solidFilter = const IconDataSolid(0xf0b0); - - /// Light Filter icon - /// - /// https://fontawesome.com/icons/light_filter?style=light - /// funnel, options, separate, sort - static const IconData lightFilter = const IconDataLight(0xf0b0); - - /// Duotone Filter icon - /// - /// https://fontawesome.com/icons/duotone_filter?style=duotone - /// funnel, options, separate, sort - static const IconDataDuotone duotoneFilter = const IconDataDuotone( - 0xf0b0, - secondary: const IconDataDuotone(0x10f0b0), - ); - - /// Regular Fingerprint icon - /// - /// https://fontawesome.com/icons/fingerprint?style=regular - /// human, id, identification, lock, smudge, touch, unique, unlock - static const IconData fingerprint = const IconDataRegular(0xf577); - - /// Solid Fingerprint icon - /// - /// https://fontawesome.com/icons/fingerprint?style=solid - /// human, id, identification, lock, smudge, touch, unique, unlock - static const IconData solidFingerprint = const IconDataSolid(0xf577); - - /// Light Fingerprint icon - /// - /// https://fontawesome.com/icons/light_fingerprint?style=light - /// human, id, identification, lock, smudge, touch, unique, unlock - static const IconData lightFingerprint = const IconDataLight(0xf577); - - /// Duotone Fingerprint icon - /// - /// https://fontawesome.com/icons/duotone_fingerprint?style=duotone - /// human, id, identification, lock, smudge, touch, unique, unlock - static const IconDataDuotone duotoneFingerprint = const IconDataDuotone( - 0xf577, - secondary: const IconDataDuotone(0x10f577), - ); - - /// Regular fire icon - /// - /// https://fontawesome.com/icons/fire?style=regular - /// burn, caliente, flame, heat, hot, popular - static const IconData fire = const IconDataRegular(0xf06d); - - /// Solid fire icon - /// - /// https://fontawesome.com/icons/fire?style=solid - /// burn, caliente, flame, heat, hot, popular - static const IconData solidFire = const IconDataSolid(0xf06d); - - /// Light fire icon - /// - /// https://fontawesome.com/icons/light_fire?style=light - /// burn, caliente, flame, heat, hot, popular - static const IconData lightFire = const IconDataLight(0xf06d); - - /// Duotone fire icon - /// - /// https://fontawesome.com/icons/duotone_fire?style=duotone - /// burn, caliente, flame, heat, hot, popular - static const IconDataDuotone duotoneFire = const IconDataDuotone( - 0xf06d, - secondary: const IconDataDuotone(0x10f06d), - ); - - /// Regular Alternate Fire icon - /// - /// https://fontawesome.com/icons/fire-alt?style=regular - /// burn, caliente, flame, heat, hot, popular - static const IconData fireAlt = const IconDataRegular(0xf7e4); - - /// Solid Alternate Fire icon - /// - /// https://fontawesome.com/icons/fire-alt?style=solid - /// burn, caliente, flame, heat, hot, popular - static const IconData solidFireAlt = const IconDataSolid(0xf7e4); - - /// Light Alternate Fire icon - /// - /// https://fontawesome.com/icons/light_fire-alt?style=light - /// burn, caliente, flame, heat, hot, popular - static const IconData lightFireAlt = const IconDataLight(0xf7e4); - - /// Duotone Alternate Fire icon - /// - /// https://fontawesome.com/icons/duotone_fire-alt?style=duotone - /// burn, caliente, flame, heat, hot, popular - static const IconDataDuotone duotoneFireAlt = const IconDataDuotone( - 0xf7e4, - secondary: const IconDataDuotone(0x10f7e4), - ); - - /// Regular fire-extinguisher icon - /// - /// https://fontawesome.com/icons/fire-extinguisher?style=regular - /// burn, caliente, fire fighter, flame, heat, hot, rescue - static const IconData fireExtinguisher = const IconDataRegular(0xf134); - - /// Solid fire-extinguisher icon - /// - /// https://fontawesome.com/icons/fire-extinguisher?style=solid - /// burn, caliente, fire fighter, flame, heat, hot, rescue - static const IconData solidFireExtinguisher = const IconDataSolid(0xf134); - - /// Light fire-extinguisher icon - /// - /// https://fontawesome.com/icons/light_fire-extinguisher?style=light - /// burn, caliente, fire fighter, flame, heat, hot, rescue - static const IconData lightFireExtinguisher = const IconDataLight(0xf134); - - /// Duotone fire-extinguisher icon - /// - /// https://fontawesome.com/icons/duotone_fire-extinguisher?style=duotone - /// burn, caliente, fire fighter, flame, heat, hot, rescue - static const IconDataDuotone duotoneFireExtinguisher = const IconDataDuotone( - 0xf134, - secondary: const IconDataDuotone(0x10f134), - ); - - /// Regular Fire and Smoke icon - /// - /// https://fontawesome.com/icons/fire-smoke?style=regular - /// burn, caliente, flame, fog, heat, hot - static const IconData fireSmoke = const IconDataRegular(0xf74b); - - /// Solid Fire and Smoke icon - /// - /// https://fontawesome.com/icons/fire-smoke?style=solid - /// burn, caliente, flame, fog, heat, hot - static const IconData solidFireSmoke = const IconDataSolid(0xf74b); - - /// Light Fire and Smoke icon - /// - /// https://fontawesome.com/icons/light_fire-smoke?style=light - /// burn, caliente, flame, fog, heat, hot - static const IconData lightFireSmoke = const IconDataLight(0xf74b); - - /// Duotone Fire and Smoke icon - /// - /// https://fontawesome.com/icons/duotone_fire-smoke?style=duotone - /// burn, caliente, flame, fog, heat, hot - static const IconDataDuotone duotoneFireSmoke = const IconDataDuotone( - 0xf74b, - secondary: const IconDataDuotone(0x10f74b), - ); - - /// Brands Firefox icon - /// - /// https://fontawesome.com/icons/firefox?style=brands - /// browser - static const IconData firefox = const IconDataBrands(0xf269); - - /// Brands Firefox Browser icon - /// - /// https://fontawesome.com/icons/firefox-browser?style=brands - /// browser - static const IconData firefoxBrowser = const IconDataBrands(0xe007); - - /// Regular Fireplace icon - /// - /// https://fontawesome.com/icons/fireplace?style=regular - /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData fireplace = const IconDataRegular(0xf79a); - - /// Solid Fireplace icon - /// - /// https://fontawesome.com/icons/fireplace?style=solid - /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData solidFireplace = const IconDataSolid(0xf79a); - - /// Light Fireplace icon - /// - /// https://fontawesome.com/icons/light_fireplace?style=light - /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconData lightFireplace = const IconDataLight(0xf79a); - - /// Duotone Fireplace icon - /// - /// https://fontawesome.com/icons/duotone_fireplace?style=duotone - /// caliente, flame, hearth, heat, holiday, mantle, toasty, warmth - static const IconDataDuotone duotoneFireplace = const IconDataDuotone( - 0xf79a, - secondary: const IconDataDuotone(0x10f79a), - ); - - /// Regular First Aid icon - /// - /// https://fontawesome.com/icons/first-aid?style=regular - /// emergency, emt, health, medical, rescue - static const IconData firstAid = const IconDataRegular(0xf479); - - /// Solid First Aid icon - /// - /// https://fontawesome.com/icons/first-aid?style=solid - /// emergency, emt, health, medical, rescue - static const IconData solidFirstAid = const IconDataSolid(0xf479); - - /// Light First Aid icon - /// - /// https://fontawesome.com/icons/light_first-aid?style=light - /// emergency, emt, health, medical, rescue - static const IconData lightFirstAid = const IconDataLight(0xf479); - - /// Duotone First Aid icon - /// - /// https://fontawesome.com/icons/duotone_first-aid?style=duotone - /// emergency, emt, health, medical, rescue - static const IconDataDuotone duotoneFirstAid = const IconDataDuotone( - 0xf479, - secondary: const IconDataDuotone(0x10f479), - ); - - /// Brands First Order icon - /// - /// https://fontawesome.com/icons/first-order?style=brands - static const IconData firstOrder = const IconDataBrands(0xf2b0); - - /// Brands Alternate First Order icon - /// - /// https://fontawesome.com/icons/first-order-alt?style=brands - static const IconData firstOrderAlt = const IconDataBrands(0xf50a); - - /// Brands firstdraft icon - /// - /// https://fontawesome.com/icons/firstdraft?style=brands - static const IconData firstdraft = const IconDataBrands(0xf3a1); - - /// Regular Fish icon - /// - /// https://fontawesome.com/icons/fish?style=regular - /// fauna, gold, seafood, swimming - static const IconData fish = const IconDataRegular(0xf578); - - /// Solid Fish icon - /// - /// https://fontawesome.com/icons/fish?style=solid - /// fauna, gold, seafood, swimming - static const IconData solidFish = const IconDataSolid(0xf578); - - /// Light Fish icon - /// - /// https://fontawesome.com/icons/light_fish?style=light - /// fauna, gold, seafood, swimming - static const IconData lightFish = const IconDataLight(0xf578); - - /// Duotone Fish icon - /// - /// https://fontawesome.com/icons/duotone_fish?style=duotone - /// fauna, gold, seafood, swimming - static const IconDataDuotone duotoneFish = const IconDataDuotone( - 0xf578, - secondary: const IconDataDuotone(0x10f578), - ); - - /// Regular Cooked Fish icon - /// - /// https://fontawesome.com/icons/fish-cooked?style=regular - /// grilled, health, salmon, seafood, tuna - static const IconData fishCooked = const IconDataRegular(0xf7fe); - - /// Solid Cooked Fish icon - /// - /// https://fontawesome.com/icons/fish-cooked?style=solid - /// grilled, health, salmon, seafood, tuna - static const IconData solidFishCooked = const IconDataSolid(0xf7fe); - - /// Light Cooked Fish icon - /// - /// https://fontawesome.com/icons/light_fish-cooked?style=light - /// grilled, health, salmon, seafood, tuna - static const IconData lightFishCooked = const IconDataLight(0xf7fe); - - /// Duotone Cooked Fish icon - /// - /// https://fontawesome.com/icons/duotone_fish-cooked?style=duotone - /// grilled, health, salmon, seafood, tuna - static const IconDataDuotone duotoneFishCooked = const IconDataDuotone( - 0xf7fe, - secondary: const IconDataDuotone(0x10f7fe), - ); - - /// Regular Raised Fist icon - /// - /// https://fontawesome.com/icons/fist-raised?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, hand, ki, monk, resist, strength, unarmed combat - static const IconData fistRaised = const IconDataRegular(0xf6de); - - /// Solid Raised Fist icon - /// - /// https://fontawesome.com/icons/fist-raised?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, hand, ki, monk, resist, strength, unarmed combat - static const IconData solidFistRaised = const IconDataSolid(0xf6de); - - /// Light Raised Fist icon - /// - /// https://fontawesome.com/icons/light_fist-raised?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, hand, ki, monk, resist, strength, unarmed combat - static const IconData lightFistRaised = const IconDataLight(0xf6de); - - /// Duotone Raised Fist icon - /// - /// https://fontawesome.com/icons/duotone_fist-raised?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, hand, ki, monk, resist, strength, unarmed combat - static const IconDataDuotone duotoneFistRaised = const IconDataDuotone( - 0xf6de, - secondary: const IconDataDuotone(0x10f6de), - ); - - /// Regular flag icon - /// - /// https://fontawesome.com/icons/flag?style=regular - /// country, notice, notification, notify, pole, report, symbol - static const IconData flag = const IconDataRegular(0xf024); - - /// Solid flag icon - /// - /// https://fontawesome.com/icons/flag?style=solid - /// country, notice, notification, notify, pole, report, symbol - static const IconData solidFlag = const IconDataSolid(0xf024); - - /// Light flag icon - /// - /// https://fontawesome.com/icons/light_flag?style=light - /// country, notice, notification, notify, pole, report, symbol - static const IconData lightFlag = const IconDataLight(0xf024); - - /// Duotone flag icon - /// - /// https://fontawesome.com/icons/duotone_flag?style=duotone - /// country, notice, notification, notify, pole, report, symbol - static const IconDataDuotone duotoneFlag = const IconDataDuotone( - 0xf024, - secondary: const IconDataDuotone(0x10f024), - ); - - /// Regular Alternate Flag icon - /// - /// https://fontawesome.com/icons/flag-alt?style=regular - /// country, notice, notification, notify, pole, report, symbol - static const IconData flagAlt = const IconDataRegular(0xf74c); - - /// Solid Alternate Flag icon - /// - /// https://fontawesome.com/icons/flag-alt?style=solid - /// country, notice, notification, notify, pole, report, symbol - static const IconData solidFlagAlt = const IconDataSolid(0xf74c); - - /// Light Alternate Flag icon - /// - /// https://fontawesome.com/icons/light_flag-alt?style=light - /// country, notice, notification, notify, pole, report, symbol - static const IconData lightFlagAlt = const IconDataLight(0xf74c); - - /// Duotone Alternate Flag icon - /// - /// https://fontawesome.com/icons/duotone_flag-alt?style=duotone - /// country, notice, notification, notify, pole, report, symbol - static const IconDataDuotone duotoneFlagAlt = const IconDataDuotone( - 0xf74c, - secondary: const IconDataDuotone(0x10f74c), - ); - - /// Regular flag-checkered icon - /// - /// https://fontawesome.com/icons/flag-checkered?style=regular - /// notice, notification, notify, pole, racing, report, symbol - static const IconData flagCheckered = const IconDataRegular(0xf11e); - - /// Solid flag-checkered icon - /// - /// https://fontawesome.com/icons/flag-checkered?style=solid - /// notice, notification, notify, pole, racing, report, symbol - static const IconData solidFlagCheckered = const IconDataSolid(0xf11e); - - /// Light flag-checkered icon - /// - /// https://fontawesome.com/icons/light_flag-checkered?style=light - /// notice, notification, notify, pole, racing, report, symbol - static const IconData lightFlagCheckered = const IconDataLight(0xf11e); - - /// Duotone flag-checkered icon - /// - /// https://fontawesome.com/icons/duotone_flag-checkered?style=duotone - /// notice, notification, notify, pole, racing, report, symbol - static const IconDataDuotone duotoneFlagCheckered = const IconDataDuotone( - 0xf11e, - secondary: const IconDataDuotone(0x10f11e), - ); - - /// Regular United States of America Flag icon - /// - /// https://fontawesome.com/icons/flag-usa?style=regular - /// betsy ross, country, old glory, stars, stripes, symbol - static const IconData flagUsa = const IconDataRegular(0xf74d); - - /// Solid United States of America Flag icon - /// - /// https://fontawesome.com/icons/flag-usa?style=solid - /// betsy ross, country, old glory, stars, stripes, symbol - static const IconData solidFlagUsa = const IconDataSolid(0xf74d); - - /// Light United States of America Flag icon - /// - /// https://fontawesome.com/icons/light_flag-usa?style=light - /// betsy ross, country, old glory, stars, stripes, symbol - static const IconData lightFlagUsa = const IconDataLight(0xf74d); - - /// Duotone United States of America Flag icon - /// - /// https://fontawesome.com/icons/duotone_flag-usa?style=duotone - /// betsy ross, country, old glory, stars, stripes, symbol - static const IconDataDuotone duotoneFlagUsa = const IconDataDuotone( - 0xf74d, - secondary: const IconDataDuotone(0x10f74d), - ); - - /// Regular Flame icon - /// - /// https://fontawesome.com/icons/flame?style=regular - /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData flame = const IconDataRegular(0xf6df); - - /// Solid Flame icon - /// - /// https://fontawesome.com/icons/flame?style=solid - /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData solidFlame = const IconDataSolid(0xf6df); - - /// Light Flame icon - /// - /// https://fontawesome.com/icons/light_flame?style=light - /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconData lightFlame = const IconDataLight(0xf6df); - - /// Duotone Flame icon - /// - /// https://fontawesome.com/icons/duotone_flame?style=duotone - /// Dungeons & Dragons, caliente, d&d, dnd, fantasy, heat, hot - static const IconDataDuotone duotoneFlame = const IconDataDuotone( - 0xf6df, - secondary: const IconDataDuotone(0x10f6df), - ); - - /// Regular Flashlight icon - /// - /// https://fontawesome.com/icons/flashlight?style=regular - /// camping, hide and seek, lamp, light, torch - static const IconData flashlight = const IconDataRegular(0xf8b8); - - /// Solid Flashlight icon - /// - /// https://fontawesome.com/icons/flashlight?style=solid - /// camping, hide and seek, lamp, light, torch - static const IconData solidFlashlight = const IconDataSolid(0xf8b8); - - /// Light Flashlight icon - /// - /// https://fontawesome.com/icons/light_flashlight?style=light - /// camping, hide and seek, lamp, light, torch - static const IconData lightFlashlight = const IconDataLight(0xf8b8); - - /// Duotone Flashlight icon - /// - /// https://fontawesome.com/icons/duotone_flashlight?style=duotone - /// camping, hide and seek, lamp, light, torch - static const IconDataDuotone duotoneFlashlight = const IconDataDuotone( - 0xf8b8, - secondary: const IconDataDuotone(0x10f8b8), - ); - - /// Regular Flask icon - /// - /// https://fontawesome.com/icons/flask?style=regular - /// beaker, experimental, labs, science - static const IconData flask = const IconDataRegular(0xf0c3); - - /// Solid Flask icon - /// - /// https://fontawesome.com/icons/flask?style=solid - /// beaker, experimental, labs, science - static const IconData solidFlask = const IconDataSolid(0xf0c3); - - /// Light Flask icon - /// - /// https://fontawesome.com/icons/light_flask?style=light - /// beaker, experimental, labs, science - static const IconData lightFlask = const IconDataLight(0xf0c3); - - /// Duotone Flask icon - /// - /// https://fontawesome.com/icons/duotone_flask?style=duotone - /// beaker, experimental, labs, science - static const IconDataDuotone duotoneFlask = const IconDataDuotone( - 0xf0c3, - secondary: const IconDataDuotone(0x10f0c3), - ); - - /// Regular Flask Poison icon - /// - /// https://fontawesome.com/icons/flask-poison?style=regular - /// beverage, container, drink, halloween, health, holiday, power - static const IconData flaskPoison = const IconDataRegular(0xf6e0); - - /// Solid Flask Poison icon - /// - /// https://fontawesome.com/icons/flask-poison?style=solid - /// beverage, container, drink, halloween, health, holiday, power - static const IconData solidFlaskPoison = const IconDataSolid(0xf6e0); - - /// Light Flask Poison icon - /// - /// https://fontawesome.com/icons/light_flask-poison?style=light - /// beverage, container, drink, halloween, health, holiday, power - static const IconData lightFlaskPoison = const IconDataLight(0xf6e0); - - /// Duotone Flask Poison icon - /// - /// https://fontawesome.com/icons/duotone_flask-poison?style=duotone - /// beverage, container, drink, halloween, health, holiday, power - static const IconDataDuotone duotoneFlaskPoison = const IconDataDuotone( - 0xf6e0, - secondary: const IconDataDuotone(0x10f6e0), - ); - - /// Regular Flask Potion icon - /// - /// https://fontawesome.com/icons/flask-potion?style=regular - /// Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, magic, mana, science - static const IconData flaskPotion = const IconDataRegular(0xf6e1); - - /// Solid Flask Potion icon - /// - /// https://fontawesome.com/icons/flask-potion?style=solid - /// Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, magic, mana, science - static const IconData solidFlaskPotion = const IconDataSolid(0xf6e1); - - /// Light Flask Potion icon - /// - /// https://fontawesome.com/icons/light_flask-potion?style=light - /// Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, magic, mana, science - static const IconData lightFlaskPotion = const IconDataLight(0xf6e1); - - /// Duotone Flask Potion icon - /// - /// https://fontawesome.com/icons/duotone_flask-potion?style=duotone - /// Dungeons & Dragons, alert, beaker, beverage, container, d&d, danger, dangerous, deadly, death, dnd, drink, fantasy, halloween, heal, health, holiday, magic, mana, science - static const IconDataDuotone duotoneFlaskPotion = const IconDataDuotone( - 0xf6e1, - secondary: const IconDataDuotone(0x10f6e1), - ); - - /// Brands Flickr icon - /// - /// https://fontawesome.com/icons/flickr?style=brands - static const IconData flickr = const IconDataBrands(0xf16e); - - /// Brands Flipboard icon - /// - /// https://fontawesome.com/icons/flipboard?style=brands - static const IconData flipboard = const IconDataBrands(0xf44d); - - /// Regular Flower icon - /// - /// https://fontawesome.com/icons/flower?style=regular - /// daffodil, nature, spring, summer - static const IconData flower = const IconDataRegular(0xf7ff); - - /// Solid Flower icon - /// - /// https://fontawesome.com/icons/flower?style=solid - /// daffodil, nature, spring, summer - static const IconData solidFlower = const IconDataSolid(0xf7ff); - - /// Light Flower icon - /// - /// https://fontawesome.com/icons/light_flower?style=light - /// daffodil, nature, spring, summer - static const IconData lightFlower = const IconDataLight(0xf7ff); - - /// Duotone Flower icon - /// - /// https://fontawesome.com/icons/duotone_flower?style=duotone - /// daffodil, nature, spring, summer - static const IconDataDuotone duotoneFlower = const IconDataDuotone( - 0xf7ff, - secondary: const IconDataDuotone(0x10f7ff), - ); - - /// Regular Flower Daffodil icon - /// - /// https://fontawesome.com/icons/flower-daffodil?style=regular - /// nature, spring, summer - static const IconData flowerDaffodil = const IconDataRegular(0xf800); - - /// Solid Flower Daffodil icon - /// - /// https://fontawesome.com/icons/flower-daffodil?style=solid - /// nature, spring, summer - static const IconData solidFlowerDaffodil = const IconDataSolid(0xf800); - - /// Light Flower Daffodil icon - /// - /// https://fontawesome.com/icons/light_flower-daffodil?style=light - /// nature, spring, summer - static const IconData lightFlowerDaffodil = const IconDataLight(0xf800); - - /// Duotone Flower Daffodil icon - /// - /// https://fontawesome.com/icons/duotone_flower-daffodil?style=duotone - /// nature, spring, summer - static const IconDataDuotone duotoneFlowerDaffodil = const IconDataDuotone( - 0xf800, - secondary: const IconDataDuotone(0x10f800), - ); - - /// Regular Flower Tulip icon - /// - /// https://fontawesome.com/icons/flower-tulip?style=regular - /// nature, spring, summer - static const IconData flowerTulip = const IconDataRegular(0xf801); - - /// Solid Flower Tulip icon - /// - /// https://fontawesome.com/icons/flower-tulip?style=solid - /// nature, spring, summer - static const IconData solidFlowerTulip = const IconDataSolid(0xf801); - - /// Light Flower Tulip icon - /// - /// https://fontawesome.com/icons/light_flower-tulip?style=light - /// nature, spring, summer - static const IconData lightFlowerTulip = const IconDataLight(0xf801); - - /// Duotone Flower Tulip icon - /// - /// https://fontawesome.com/icons/duotone_flower-tulip?style=duotone - /// nature, spring, summer - static const IconDataDuotone duotoneFlowerTulip = const IconDataDuotone( - 0xf801, - secondary: const IconDataDuotone(0x10f801), - ); - - /// Regular Flushed Face icon - /// - /// https://fontawesome.com/icons/flushed?style=regular - /// embarrassed, emoticon, face - static const IconData flushed = const IconDataRegular(0xf579); - - /// Solid Flushed Face icon - /// - /// https://fontawesome.com/icons/flushed?style=solid - /// embarrassed, emoticon, face - static const IconData solidFlushed = const IconDataSolid(0xf579); - - /// Light Flushed Face icon - /// - /// https://fontawesome.com/icons/light_flushed?style=light - /// embarrassed, emoticon, face - static const IconData lightFlushed = const IconDataLight(0xf579); - - /// Duotone Flushed Face icon - /// - /// https://fontawesome.com/icons/duotone_flushed?style=duotone - /// embarrassed, emoticon, face - static const IconDataDuotone duotoneFlushed = const IconDataDuotone( - 0xf579, - secondary: const IconDataDuotone(0x10f579), - ); - - /// Regular Flute icon - /// - /// https://fontawesome.com/icons/flute?style=regular - /// aerophone, instrument, music, pied piper, woodwind - static const IconData flute = const IconDataRegular(0xf8b9); - - /// Solid Flute icon - /// - /// https://fontawesome.com/icons/flute?style=solid - /// aerophone, instrument, music, pied piper, woodwind - static const IconData solidFlute = const IconDataSolid(0xf8b9); - - /// Light Flute icon - /// - /// https://fontawesome.com/icons/light_flute?style=light - /// aerophone, instrument, music, pied piper, woodwind - static const IconData lightFlute = const IconDataLight(0xf8b9); - - /// Duotone Flute icon - /// - /// https://fontawesome.com/icons/duotone_flute?style=duotone - /// aerophone, instrument, music, pied piper, woodwind - static const IconDataDuotone duotoneFlute = const IconDataDuotone( - 0xf8b9, - secondary: const IconDataDuotone(0x10f8b9), - ); - - /// 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 travel - static const IconData fluxCapacitor = const IconDataRegular(0xf8ba); - - /// 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 travel - static const IconData solidFluxCapacitor = const IconDataSolid(0xf8ba); - - /// Light Flux Capacitor icon - /// - /// https://fontawesome.com/icons/light_flux-capacitor?style=light - /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time travel - static const IconData lightFluxCapacitor = const IconDataLight(0xf8ba); - - /// Duotone Flux Capacitor icon - /// - /// https://fontawesome.com/icons/duotone_flux-capacitor?style=duotone - /// 1.21 gigawatts, 88 mph, Emmett Brown, Marty McFly, Y, back to the future, delorean, dmc, time travel - static const IconDataDuotone duotoneFluxCapacitor = const IconDataDuotone( - 0xf8ba, - secondary: const IconDataDuotone(0x10f8ba), - ); - - /// Brands Fly icon - /// - /// https://fontawesome.com/icons/fly?style=brands - static const IconData fly = const IconDataBrands(0xf417); - - /// Regular Fog icon - /// - /// https://fontawesome.com/icons/fog?style=regular - /// haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData fog = const IconDataRegular(0xf74e); - - /// Solid Fog icon - /// - /// https://fontawesome.com/icons/fog?style=solid - /// haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData solidFog = const IconDataSolid(0xf74e); - - /// Light Fog icon - /// - /// https://fontawesome.com/icons/light_fog?style=light - /// haze, karl, mist, opaque, san francisco, visibility, weather - static const IconData lightFog = const IconDataLight(0xf74e); - - /// Duotone Fog icon - /// - /// https://fontawesome.com/icons/duotone_fog?style=duotone - /// haze, karl, mist, opaque, san francisco, visibility, weather - static const IconDataDuotone duotoneFog = const IconDataDuotone( - 0xf74e, - secondary: const IconDataDuotone(0x10f74e), - ); - - /// Regular Folder icon - /// - /// https://fontawesome.com/icons/folder?style=regular - /// archive, directory, document, file - static const IconData folder = const IconDataRegular(0xf07b); - - /// Solid Folder icon - /// - /// https://fontawesome.com/icons/folder?style=solid - /// archive, directory, document, file - static const IconData solidFolder = const IconDataSolid(0xf07b); - - /// Light Folder icon - /// - /// https://fontawesome.com/icons/light_folder?style=light - /// archive, directory, document, file - static const IconData lightFolder = const IconDataLight(0xf07b); - - /// Duotone Folder icon - /// - /// https://fontawesome.com/icons/duotone_folder?style=duotone - /// archive, directory, document, file - static const IconDataDuotone duotoneFolder = const IconDataDuotone( - 0xf07b, - secondary: const IconDataDuotone(0x10f07b), - ); - - /// Regular Folder Download icon - /// - /// https://fontawesome.com/icons/folder-download?style=regular - /// archive, directory, document, download, file, save - static const IconData folderDownload = const IconDataRegular(0xe053); - - /// Light Folder Download icon - /// - /// https://fontawesome.com/icons/light_folder-download?style=light - /// archive, directory, document, download, file, save - static const IconData lightFolderDownload = const IconDataLight(0xe053); - - /// Solid Folder Download icon - /// - /// https://fontawesome.com/icons/folder-download?style=solid - /// archive, directory, document, download, file, save - static const IconData solidFolderDownload = const IconDataSolid(0xe053); - - /// Duotone Folder Download icon - /// - /// https://fontawesome.com/icons/duotone_folder-download?style=duotone - /// archive, directory, document, download, file, save - static const IconDataDuotone duotoneFolderDownload = const IconDataDuotone( - 0xe053, - secondary: const IconDataDuotone(0x10e053), - ); - - /// Regular Folder Minus icon - /// - /// https://fontawesome.com/icons/folder-minus?style=regular - /// archive, delete, directory, document, file, negative, remove - static const IconData folderMinus = const IconDataRegular(0xf65d); - - /// Solid Folder Minus icon - /// - /// https://fontawesome.com/icons/folder-minus?style=solid - /// archive, delete, directory, document, file, negative, remove - static const IconData solidFolderMinus = const IconDataSolid(0xf65d); - - /// Light Folder Minus icon - /// - /// https://fontawesome.com/icons/light_folder-minus?style=light - /// archive, delete, directory, document, file, negative, remove - static const IconData lightFolderMinus = const IconDataLight(0xf65d); - - /// Duotone Folder Minus icon - /// - /// https://fontawesome.com/icons/duotone_folder-minus?style=duotone - /// archive, delete, directory, document, file, negative, remove - static const IconDataDuotone duotoneFolderMinus = const IconDataDuotone( - 0xf65d, - secondary: const IconDataDuotone(0x10f65d), - ); - - /// Regular Folder Open icon - /// - /// https://fontawesome.com/icons/folder-open?style=regular - /// archive, directory, document, empty, file, new - static const IconData folderOpen = const IconDataRegular(0xf07c); - - /// Solid Folder Open icon - /// - /// https://fontawesome.com/icons/folder-open?style=solid - /// archive, directory, document, empty, file, new - static const IconData solidFolderOpen = const IconDataSolid(0xf07c); - - /// Light Folder Open icon - /// - /// https://fontawesome.com/icons/light_folder-open?style=light - /// archive, directory, document, empty, file, new - static const IconData lightFolderOpen = const IconDataLight(0xf07c); - - /// Duotone Folder Open icon - /// - /// https://fontawesome.com/icons/duotone_folder-open?style=duotone - /// archive, directory, document, empty, file, new - static const IconDataDuotone duotoneFolderOpen = const IconDataDuotone( - 0xf07c, - secondary: const IconDataDuotone(0x10f07c), - ); - - /// Regular Folder Plus icon - /// - /// https://fontawesome.com/icons/folder-plus?style=regular - /// add, archive, create, directory, document, file, new, positive - static const IconData folderPlus = const IconDataRegular(0xf65e); - - /// Solid Folder Plus icon - /// - /// https://fontawesome.com/icons/folder-plus?style=solid - /// add, archive, create, directory, document, file, new, positive - static const IconData solidFolderPlus = const IconDataSolid(0xf65e); - - /// Light Folder Plus icon - /// - /// https://fontawesome.com/icons/light_folder-plus?style=light - /// add, archive, create, directory, document, file, new, positive - static const IconData lightFolderPlus = const IconDataLight(0xf65e); - - /// Duotone Folder Plus icon - /// - /// https://fontawesome.com/icons/duotone_folder-plus?style=duotone - /// add, archive, create, directory, document, file, new, positive - static const IconDataDuotone duotoneFolderPlus = const IconDataDuotone( - 0xf65e, - secondary: const IconDataDuotone(0x10f65e), - ); - - /// Regular Folder Times icon - /// - /// https://fontawesome.com/icons/folder-times?style=regular - /// archive, delete, directory, document, file, remove, x - static const IconData folderTimes = const IconDataRegular(0xf65f); - - /// Solid Folder Times icon - /// - /// https://fontawesome.com/icons/folder-times?style=solid - /// archive, delete, directory, document, file, remove, x - static const IconData solidFolderTimes = const IconDataSolid(0xf65f); - - /// Light Folder Times icon - /// - /// https://fontawesome.com/icons/light_folder-times?style=light - /// archive, delete, directory, document, file, remove, x - static const IconData lightFolderTimes = const IconDataLight(0xf65f); - - /// Duotone Folder Times icon - /// - /// https://fontawesome.com/icons/duotone_folder-times?style=duotone - /// archive, delete, directory, document, file, remove, x - static const IconDataDuotone duotoneFolderTimes = const IconDataDuotone( - 0xf65f, - secondary: const IconDataDuotone(0x10f65f), - ); - - /// Regular Folder Tree icon - /// - /// https://fontawesome.com/icons/folder-tree?style=regular - /// archive, directory, document, file, search, structure - static const IconData folderTree = const IconDataRegular(0xf802); - - /// Solid Folder Tree icon - /// - /// https://fontawesome.com/icons/folder-tree?style=solid - /// archive, directory, document, file, search, structure - static const IconData solidFolderTree = const IconDataSolid(0xf802); - - /// Light Folder Tree icon - /// - /// https://fontawesome.com/icons/light_folder-tree?style=light - /// archive, directory, document, file, search, structure - static const IconData lightFolderTree = const IconDataLight(0xf802); - - /// Duotone Folder Tree icon - /// - /// https://fontawesome.com/icons/duotone_folder-tree?style=duotone - /// archive, directory, document, file, search, structure - static const IconDataDuotone duotoneFolderTree = const IconDataDuotone( - 0xf802, - secondary: const IconDataDuotone(0x10f802), - ); - - /// Regular Folder Upload icon - /// - /// https://fontawesome.com/icons/folder-upload?style=regular - /// archive, directory, document, file, save, upload - static const IconData folderUpload = const IconDataRegular(0xe054); - - /// Light Folder Upload icon - /// - /// https://fontawesome.com/icons/light_folder-upload?style=light - /// archive, directory, document, file, save, upload - static const IconData lightFolderUpload = const IconDataLight(0xe054); - - /// Solid Folder Upload icon - /// - /// https://fontawesome.com/icons/folder-upload?style=solid - /// archive, directory, document, file, save, upload - static const IconData solidFolderUpload = const IconDataSolid(0xe054); - - /// Duotone Folder Upload icon - /// - /// https://fontawesome.com/icons/duotone_folder-upload?style=duotone - /// archive, directory, document, file, save, upload - static const IconDataDuotone duotoneFolderUpload = const IconDataDuotone( - 0xe054, - secondary: const IconDataDuotone(0x10e054), - ); - - /// Regular Folders icon - /// - /// https://fontawesome.com/icons/folders?style=regular - /// archive, copy, directory, document, duplicate, file - static const IconData folders = const IconDataRegular(0xf660); - - /// Solid Folders icon - /// - /// https://fontawesome.com/icons/folders?style=solid - /// archive, copy, directory, document, duplicate, file - static const IconData solidFolders = const IconDataSolid(0xf660); - - /// Light Folders icon - /// - /// https://fontawesome.com/icons/light_folders?style=light - /// archive, copy, directory, document, duplicate, file - static const IconData lightFolders = const IconDataLight(0xf660); - - /// Duotone Folders icon - /// - /// https://fontawesome.com/icons/duotone_folders?style=duotone - /// archive, copy, directory, document, duplicate, file - static const IconDataDuotone duotoneFolders = const IconDataDuotone( - 0xf660, - secondary: const IconDataDuotone(0x10f660), - ); - - /// Regular font icon - /// - /// https://fontawesome.com/icons/font?style=regular - /// alphabet, glyph, text, type, typeface - static const IconData font = const IconDataRegular(0xf031); - - /// Solid font icon - /// - /// https://fontawesome.com/icons/font?style=solid - /// alphabet, glyph, text, type, typeface - static const IconData solidFont = const IconDataSolid(0xf031); - - /// Light font icon - /// - /// https://fontawesome.com/icons/light_font?style=light - /// alphabet, glyph, text, type, typeface - static const IconData lightFont = const IconDataLight(0xf031); - - /// Duotone font icon - /// - /// https://fontawesome.com/icons/duotone_font?style=duotone - /// alphabet, glyph, text, type, typeface - static const IconDataDuotone duotoneFont = const IconDataDuotone( - 0xf031, - secondary: const IconDataDuotone(0x10f031), - ); - - /// Brands Font Awesome icon - /// - /// https://fontawesome.com/icons/font-awesome?style=brands - /// meanpath - static const IconData fontAwesome = const IconDataBrands(0xf2b4); - - /// Brands Alternate Font Awesome icon - /// - /// https://fontawesome.com/icons/font-awesome-alt?style=brands - static const IconData fontAwesomeAlt = const IconDataBrands(0xf35c); - - /// Brands Font Awesome Flag icon - /// - /// https://fontawesome.com/icons/font-awesome-flag?style=brands - static const IconData fontAwesomeFlag = const IconDataBrands(0xf425); - - /// Regular Font Case icon - /// - /// https://fontawesome.com/icons/font-case?style=regular - /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData fontCase = const IconDataRegular(0xf866); - - /// Solid Font Case icon - /// - /// https://fontawesome.com/icons/font-case?style=solid - /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData solidFontCase = const IconDataSolid(0xf866); - - /// Light Font Case icon - /// - /// https://fontawesome.com/icons/light_font-case?style=light - /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconData lightFontCase = const IconDataLight(0xf866); - - /// Duotone Font Case icon - /// - /// https://fontawesome.com/icons/duotone_font-case?style=duotone - /// alphabet, glyph, lowercase, text, type, typeface, uppercase - static const IconDataDuotone duotoneFontCase = const IconDataDuotone( - 0xf866, - secondary: const IconDataDuotone(0x10f866), - ); - - /// Brands Fonticons icon - /// - /// https://fontawesome.com/icons/fonticons?style=brands - static const IconData fonticons = const IconDataBrands(0xf280); - - /// Brands Fonticons Fi icon - /// - /// https://fontawesome.com/icons/fonticons-fi?style=brands - static const IconData fonticonsFi = const IconDataBrands(0xf3a2); - - /// Regular Football Ball icon - /// - /// https://fontawesome.com/icons/football-ball?style=regular - /// ball, fall, nfl, pigskin, seasonal - static const IconData footballBall = const IconDataRegular(0xf44e); - - /// Solid Football Ball icon - /// - /// https://fontawesome.com/icons/football-ball?style=solid - /// ball, fall, nfl, pigskin, seasonal - static const IconData solidFootballBall = const IconDataSolid(0xf44e); - - /// Light Football Ball icon - /// - /// https://fontawesome.com/icons/light_football-ball?style=light - /// ball, fall, nfl, pigskin, seasonal - static const IconData lightFootballBall = const IconDataLight(0xf44e); - - /// Duotone Football Ball icon - /// - /// https://fontawesome.com/icons/duotone_football-ball?style=duotone - /// ball, fall, nfl, pigskin, seasonal - static const IconDataDuotone duotoneFootballBall = const IconDataDuotone( - 0xf44e, - secondary: const IconDataDuotone(0x10f44e), - ); - - /// Regular Football Helmet icon - /// - /// https://fontawesome.com/icons/football-helmet?style=regular - /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData footballHelmet = const IconDataRegular(0xf44f); - - /// Solid Football Helmet icon - /// - /// https://fontawesome.com/icons/football-helmet?style=solid - /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData solidFootballHelmet = const IconDataSolid(0xf44f); - - /// Light Football Helmet icon - /// - /// https://fontawesome.com/icons/light_football-helmet?style=light - /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconData lightFootballHelmet = const IconDataLight(0xf44f); - - /// Duotone Football Helmet icon - /// - /// https://fontawesome.com/icons/duotone_football-helmet?style=duotone - /// ball, concussion, fall, nfl, pigskin, protection, seasonal - static const IconDataDuotone duotoneFootballHelmet = const IconDataDuotone( - 0xf44f, - secondary: const IconDataDuotone(0x10f44f), - ); - - /// Regular Forklift icon - /// - /// https://fontawesome.com/icons/forklift?style=regular - /// archive, inventory, lorry, pallet, shipping, tractor, warehouse - static const IconData forklift = const IconDataRegular(0xf47a); - - /// Solid Forklift icon - /// - /// https://fontawesome.com/icons/forklift?style=solid - /// archive, inventory, lorry, pallet, shipping, tractor, warehouse - static const IconData solidForklift = const IconDataSolid(0xf47a); - - /// Light Forklift icon - /// - /// https://fontawesome.com/icons/light_forklift?style=light - /// archive, inventory, lorry, pallet, shipping, tractor, warehouse - static const IconData lightForklift = const IconDataLight(0xf47a); - - /// Duotone Forklift icon - /// - /// https://fontawesome.com/icons/duotone_forklift?style=duotone - /// archive, inventory, lorry, pallet, shipping, tractor, warehouse - static const IconDataDuotone duotoneForklift = const IconDataDuotone( - 0xf47a, - secondary: const IconDataDuotone(0x10f47a), - ); - - /// Brands Fort Awesome icon - /// - /// https://fontawesome.com/icons/fort-awesome?style=brands - /// castle - static const IconData fortAwesome = const IconDataBrands(0xf286); - - /// Brands Alternate Fort Awesome icon - /// - /// https://fontawesome.com/icons/fort-awesome-alt?style=brands - /// castle - static const IconData fortAwesomeAlt = const IconDataBrands(0xf3a3); - - /// Brands Forumbee icon - /// - /// https://fontawesome.com/icons/forumbee?style=brands - static const IconData forumbee = const IconDataBrands(0xf211); - - /// Regular forward icon - /// - /// https://fontawesome.com/icons/forward?style=regular - /// forward, next, skip - static const IconData forward = const IconDataRegular(0xf04e); - - /// Solid forward icon - /// - /// https://fontawesome.com/icons/forward?style=solid - /// forward, next, skip - static const IconData solidForward = const IconDataSolid(0xf04e); - - /// Light forward icon - /// - /// https://fontawesome.com/icons/light_forward?style=light - /// forward, next, skip - static const IconData lightForward = const IconDataLight(0xf04e); - - /// Duotone forward icon - /// - /// https://fontawesome.com/icons/duotone_forward?style=duotone - /// forward, next, skip - static const IconDataDuotone duotoneForward = const IconDataDuotone( - 0xf04e, - secondary: const IconDataDuotone(0x10f04e), - ); - - /// Brands Foursquare icon - /// - /// https://fontawesome.com/icons/foursquare?style=brands - static const IconData foursquare = const IconDataBrands(0xf180); - - /// Regular Fragile icon - /// - /// https://fontawesome.com/icons/fragile?style=regular - /// break, broken, delicate, glass - static const IconData fragile = const IconDataRegular(0xf4bb); - - /// Solid Fragile icon - /// - /// https://fontawesome.com/icons/fragile?style=solid - /// break, broken, delicate, glass - static const IconData solidFragile = const IconDataSolid(0xf4bb); - - /// Light Fragile icon - /// - /// https://fontawesome.com/icons/light_fragile?style=light - /// break, broken, delicate, glass - static const IconData lightFragile = const IconDataLight(0xf4bb); - - /// Duotone Fragile icon - /// - /// https://fontawesome.com/icons/duotone_fragile?style=duotone - /// break, broken, delicate, glass - static const IconDataDuotone duotoneFragile = const IconDataDuotone( - 0xf4bb, - secondary: const IconDataDuotone(0x10f4bb), - ); - - /// Brands freeCodeCamp icon - /// - /// https://fontawesome.com/icons/free-code-camp?style=brands - static const IconData freeCodeCamp = const IconDataBrands(0xf2c5); - - /// Brands FreeBSD icon - /// - /// https://fontawesome.com/icons/freebsd?style=brands - static const IconData freebsd = const IconDataBrands(0xf3a4); - - /// Regular French Fries icon - /// - /// https://fontawesome.com/icons/french-fries?style=regular - /// chips, fast food, fried, ketchup, potato, poutine - static const IconData frenchFries = const IconDataRegular(0xf803); - - /// Solid French Fries icon - /// - /// https://fontawesome.com/icons/french-fries?style=solid - /// chips, fast food, fried, ketchup, potato, poutine - static const IconData solidFrenchFries = const IconDataSolid(0xf803); - - /// Light French Fries icon - /// - /// https://fontawesome.com/icons/light_french-fries?style=light - /// chips, fast food, fried, ketchup, potato, poutine - static const IconData lightFrenchFries = const IconDataLight(0xf803); - - /// Duotone French Fries icon - /// - /// https://fontawesome.com/icons/duotone_french-fries?style=duotone - /// chips, fast food, fried, ketchup, potato, poutine - static const IconDataDuotone duotoneFrenchFries = const IconDataDuotone( - 0xf803, - secondary: const IconDataDuotone(0x10f803), - ); - - /// Regular Frog icon - /// - /// https://fontawesome.com/icons/frog?style=regular - /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData frog = const IconDataRegular(0xf52e); - - /// Solid Frog icon - /// - /// https://fontawesome.com/icons/frog?style=solid - /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData solidFrog = const IconDataSolid(0xf52e); - - /// Light Frog icon - /// - /// https://fontawesome.com/icons/light_frog?style=light - /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconData lightFrog = const IconDataLight(0xf52e); - - /// Duotone Frog icon - /// - /// https://fontawesome.com/icons/duotone_frog?style=duotone - /// amphibian, bullfrog, fauna, hop, kermit, kiss, prince, ribbit, toad, wart - static const IconDataDuotone duotoneFrog = const IconDataDuotone( - 0xf52e, - secondary: const IconDataDuotone(0x10f52e), - ); - - /// Regular Frosty Head icon - /// - /// https://fontawesome.com/icons/frosty-head?style=regular - /// carrot, hat, snowman, winter - static const IconData frostyHead = const IconDataRegular(0xf79b); - - /// Solid Frosty Head icon - /// - /// https://fontawesome.com/icons/frosty-head?style=solid - /// carrot, hat, snowman, winter - static const IconData solidFrostyHead = const IconDataSolid(0xf79b); - - /// Light Frosty Head icon - /// - /// https://fontawesome.com/icons/light_frosty-head?style=light - /// carrot, hat, snowman, winter - static const IconData lightFrostyHead = const IconDataLight(0xf79b); - - /// Duotone Frosty Head icon - /// - /// https://fontawesome.com/icons/duotone_frosty-head?style=duotone - /// carrot, hat, snowman, winter - static const IconDataDuotone duotoneFrostyHead = const IconDataDuotone( - 0xf79b, - secondary: const IconDataDuotone(0x10f79b), - ); - - /// Regular Frowning Face icon - /// - /// https://fontawesome.com/icons/frown?style=regular - /// disapprove, emoticon, face, rating, sad - static const IconData frown = const IconDataRegular(0xf119); - - /// Solid Frowning Face icon - /// - /// https://fontawesome.com/icons/frown?style=solid - /// disapprove, emoticon, face, rating, sad - static const IconData solidFrown = const IconDataSolid(0xf119); - - /// Light Frowning Face icon - /// - /// https://fontawesome.com/icons/light_frown?style=light - /// disapprove, emoticon, face, rating, sad - static const IconData lightFrown = const IconDataLight(0xf119); - - /// Duotone Frowning Face icon - /// - /// https://fontawesome.com/icons/duotone_frown?style=duotone - /// disapprove, emoticon, face, rating, sad - static const IconDataDuotone duotoneFrown = const IconDataDuotone( - 0xf119, - secondary: const IconDataDuotone(0x10f119), - ); - - /// Regular Frowning Face With Open Mouth icon - /// - /// https://fontawesome.com/icons/frown-open?style=regular - /// disapprove, emoticon, face, rating, sad - static const IconData frownOpen = const IconDataRegular(0xf57a); - - /// Solid Frowning Face With Open Mouth icon - /// - /// https://fontawesome.com/icons/frown-open?style=solid - /// disapprove, emoticon, face, rating, sad - static const IconData solidFrownOpen = const IconDataSolid(0xf57a); - - /// Light Frowning Face With Open Mouth icon - /// - /// https://fontawesome.com/icons/light_frown-open?style=light - /// disapprove, emoticon, face, rating, sad - static const IconData lightFrownOpen = const IconDataLight(0xf57a); - - /// Duotone Frowning Face With Open Mouth icon - /// - /// https://fontawesome.com/icons/duotone_frown-open?style=duotone - /// disapprove, emoticon, face, rating, sad - static const IconDataDuotone duotoneFrownOpen = const IconDataDuotone( - 0xf57a, - secondary: const IconDataDuotone(0x10f57a), - ); - - /// Brands Fulcrum icon - /// - /// https://fontawesome.com/icons/fulcrum?style=brands - static const IconData fulcrum = const IconDataBrands(0xf50b); - - /// Regular Function icon - /// - /// https://fontawesome.com/icons/function?style=regular - /// math, mathematics - static const IconData function = const IconDataRegular(0xf661); - - /// Solid Function icon - /// - /// https://fontawesome.com/icons/function?style=solid - /// math, mathematics - static const IconData solidFunction = const IconDataSolid(0xf661); - - /// Light Function icon - /// - /// https://fontawesome.com/icons/light_function?style=light - /// math, mathematics - static const IconData lightFunction = const IconDataLight(0xf661); - - /// Duotone Function icon - /// - /// https://fontawesome.com/icons/duotone_function?style=duotone - /// math, mathematics - static const IconDataDuotone duotoneFunction = const IconDataDuotone( - 0xf661, - secondary: const IconDataDuotone(0x10f661), - ); - - /// Regular Funnel Dollar icon - /// - /// https://fontawesome.com/icons/funnel-dollar?style=regular - /// filter, money, options, separate, sort - static const IconData funnelDollar = const IconDataRegular(0xf662); - - /// Solid Funnel Dollar icon - /// - /// https://fontawesome.com/icons/funnel-dollar?style=solid - /// filter, money, options, separate, sort - static const IconData solidFunnelDollar = const IconDataSolid(0xf662); - - /// Light Funnel Dollar icon - /// - /// https://fontawesome.com/icons/light_funnel-dollar?style=light - /// filter, money, options, separate, sort - static const IconData lightFunnelDollar = const IconDataLight(0xf662); - - /// Duotone Funnel Dollar icon - /// - /// https://fontawesome.com/icons/duotone_funnel-dollar?style=duotone - /// filter, money, options, separate, sort - static const IconDataDuotone duotoneFunnelDollar = const IconDataDuotone( - 0xf662, - secondary: const IconDataDuotone(0x10f662), - ); - - /// Regular Futbol icon - /// - /// https://fontawesome.com/icons/futbol?style=regular - /// ball, football, mls, soccer - static const IconData futbol = const IconDataRegular(0xf1e3); - - /// Solid Futbol icon - /// - /// https://fontawesome.com/icons/futbol?style=solid - /// ball, football, mls, soccer - static const IconData solidFutbol = const IconDataSolid(0xf1e3); - - /// Light Futbol icon - /// - /// https://fontawesome.com/icons/light_futbol?style=light - /// ball, football, mls, soccer - static const IconData lightFutbol = const IconDataLight(0xf1e3); - - /// Duotone Futbol icon - /// - /// https://fontawesome.com/icons/duotone_futbol?style=duotone - /// ball, football, mls, soccer - static const IconDataDuotone duotoneFutbol = const IconDataDuotone( - 0xf1e3, - secondary: const IconDataDuotone(0x10f1e3), - ); - - /// Brands Galactic Republic icon - /// - /// https://fontawesome.com/icons/galactic-republic?style=brands - /// politics, star wars - static const IconData galacticRepublic = const IconDataBrands(0xf50c); - - /// Brands Galactic Senate icon - /// - /// https://fontawesome.com/icons/galactic-senate?style=brands - /// star wars - static const IconData galacticSenate = const IconDataBrands(0xf50d); - - /// Regular Galaxy icon - /// - /// https://fontawesome.com/icons/galaxy?style=regular - /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData galaxy = const IconDataRegular(0xe008); - - /// Solid Galaxy icon - /// - /// https://fontawesome.com/icons/galaxy?style=solid - /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData solidGalaxy = const IconDataSolid(0xe008); - - /// Light Galaxy icon - /// - /// https://fontawesome.com/icons/light_galaxy?style=light - /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconData lightGalaxy = const IconDataLight(0xe008); - - /// Duotone Galaxy icon - /// - /// https://fontawesome.com/icons/duotone_galaxy?style=duotone - /// black hole, cosmic, nebula, solar system, space, spiral, universe - static const IconDataDuotone duotoneGalaxy = const IconDataDuotone( - 0xe008, - secondary: const IconDataDuotone(0x10e008), - ); - - /// Regular Game Board icon - /// - /// https://fontawesome.com/icons/game-board?style=regular - /// checkers, chess, gaming, grid, tabletop - static const IconData gameBoard = const IconDataRegular(0xf867); - - /// Solid Game Board icon - /// - /// https://fontawesome.com/icons/game-board?style=solid - /// checkers, chess, gaming, grid, tabletop - static const IconData solidGameBoard = const IconDataSolid(0xf867); - - /// Light Game Board icon - /// - /// https://fontawesome.com/icons/light_game-board?style=light - /// checkers, chess, gaming, grid, tabletop - static const IconData lightGameBoard = const IconDataLight(0xf867); - - /// Duotone Game Board icon - /// - /// https://fontawesome.com/icons/duotone_game-board?style=duotone - /// checkers, chess, gaming, grid, tabletop - static const IconDataDuotone duotoneGameBoard = const IconDataDuotone( - 0xf867, - secondary: const IconDataDuotone(0x10f867), - ); - - /// Regular Alternate Game Board icon - /// - /// https://fontawesome.com/icons/game-board-alt?style=regular - /// checkers, chess, gaming, grid, tabletop - static const IconData gameBoardAlt = const IconDataRegular(0xf868); - - /// Solid Alternate Game Board icon - /// - /// https://fontawesome.com/icons/game-board-alt?style=solid - /// checkers, chess, gaming, grid, tabletop - static const IconData solidGameBoardAlt = const IconDataSolid(0xf868); - - /// Light Alternate Game Board icon - /// - /// https://fontawesome.com/icons/light_game-board-alt?style=light - /// checkers, chess, gaming, grid, tabletop - static const IconData lightGameBoardAlt = const IconDataLight(0xf868); - - /// Duotone Alternate Game Board icon - /// - /// https://fontawesome.com/icons/duotone_game-board-alt?style=duotone - /// checkers, chess, gaming, grid, tabletop - static const IconDataDuotone duotoneGameBoardAlt = const IconDataDuotone( - 0xf868, - secondary: const IconDataDuotone(0x10f868), - ); - - /// Regular Handheld Game Console icon - /// - /// https://fontawesome.com/icons/game-console-handheld?style=regular - /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData gameConsoleHandheld = const IconDataRegular(0xf8bb); - - /// Solid Handheld Game Console icon - /// - /// https://fontawesome.com/icons/game-console-handheld?style=solid - /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData solidGameConsoleHandheld = const IconDataSolid(0xf8bb); - - /// Light Handheld Game Console icon - /// - /// https://fontawesome.com/icons/light_game-console-handheld?style=light - /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconData lightGameConsoleHandheld = const IconDataLight(0xf8bb); - - /// Duotone Handheld Game Console icon - /// - /// https://fontawesome.com/icons/duotone_game-console-handheld?style=duotone - /// cartridge, gameboy, nintendo, retro, video games, vintage - static const IconDataDuotone duotoneGameConsoleHandheld = - const IconDataDuotone( - 0xf8bb, - secondary: const IconDataDuotone(0x10f8bb), - ); - - /// Regular Gamepad icon - /// - /// https://fontawesome.com/icons/gamepad?style=regular - /// arcade, controller, d-pad, joystick, video, video game - static const IconData gamepad = const IconDataRegular(0xf11b); - - /// Solid Gamepad icon - /// - /// https://fontawesome.com/icons/gamepad?style=solid - /// arcade, controller, d-pad, joystick, video, video game - static const IconData solidGamepad = const IconDataSolid(0xf11b); - - /// Light Gamepad icon - /// - /// https://fontawesome.com/icons/light_gamepad?style=light - /// arcade, controller, d-pad, joystick, video, video game - static const IconData lightGamepad = const IconDataLight(0xf11b); - - /// Duotone Gamepad icon - /// - /// https://fontawesome.com/icons/duotone_gamepad?style=duotone - /// arcade, controller, d-pad, joystick, video, video game - static const IconDataDuotone duotoneGamepad = const IconDataDuotone( - 0xf11b, - secondary: const IconDataDuotone(0x10f11b), - ); - - /// Regular Alternate Gamepad icon - /// - /// https://fontawesome.com/icons/gamepad-alt?style=regular - /// arcade, controller, d-pad, joystick, video, video game - static const IconData gamepadAlt = const IconDataRegular(0xf8bc); - - /// Solid Alternate Gamepad icon - /// - /// https://fontawesome.com/icons/gamepad-alt?style=solid - /// arcade, controller, d-pad, joystick, video, video game - static const IconData solidGamepadAlt = const IconDataSolid(0xf8bc); - - /// Light Alternate Gamepad icon - /// - /// https://fontawesome.com/icons/light_gamepad-alt?style=light - /// arcade, controller, d-pad, joystick, video, video game - static const IconData lightGamepadAlt = const IconDataLight(0xf8bc); - - /// Duotone Alternate Gamepad icon - /// - /// https://fontawesome.com/icons/duotone_gamepad-alt?style=duotone - /// arcade, controller, d-pad, joystick, video, video game - static const IconDataDuotone duotoneGamepadAlt = const IconDataDuotone( - 0xf8bc, - secondary: const IconDataDuotone(0x10f8bc), - ); - - /// Regular Garage icon - /// - /// https://fontawesome.com/icons/garage?style=regular - /// auto, car, door, storage, structure, warehouse - static const IconData garage = const IconDataRegular(0xe009); - - /// Solid Garage icon - /// - /// https://fontawesome.com/icons/garage?style=solid - /// auto, car, door, storage, structure, warehouse - static const IconData solidGarage = const IconDataSolid(0xe009); - - /// Light Garage icon - /// - /// https://fontawesome.com/icons/light_garage?style=light - /// auto, car, door, storage, structure, warehouse - static const IconData lightGarage = const IconDataLight(0xe009); - - /// Duotone Garage icon - /// - /// https://fontawesome.com/icons/duotone_garage?style=duotone - /// auto, car, door, storage, structure, warehouse - static const IconDataDuotone duotoneGarage = const IconDataDuotone( - 0xe009, - secondary: const IconDataDuotone(0x10e009), - ); - - /// Regular Garage Car icon - /// - /// https://fontawesome.com/icons/garage-car?style=regular - /// auto, car, door, storage, structure, warehouse - static const IconData garageCar = const IconDataRegular(0xe00a); - - /// Solid Garage Car icon - /// - /// https://fontawesome.com/icons/garage-car?style=solid - /// auto, car, door, storage, structure, warehouse - static const IconData solidGarageCar = const IconDataSolid(0xe00a); - - /// Light Garage Car icon - /// - /// https://fontawesome.com/icons/light_garage-car?style=light - /// auto, car, door, storage, structure, warehouse - static const IconData lightGarageCar = const IconDataLight(0xe00a); - - /// Duotone Garage Car icon - /// - /// https://fontawesome.com/icons/duotone_garage-car?style=duotone - /// auto, car, door, storage, structure, warehouse - static const IconDataDuotone duotoneGarageCar = const IconDataDuotone( - 0xe00a, - secondary: const IconDataDuotone(0x10e00a), - ); - - /// Regular Garage Open icon - /// - /// https://fontawesome.com/icons/garage-open?style=regular - /// auto, car, door, storage, structure, warehouse - static const IconData garageOpen = const IconDataRegular(0xe00b); - - /// Solid Garage Open icon - /// - /// https://fontawesome.com/icons/garage-open?style=solid - /// auto, car, door, storage, structure, warehouse - static const IconData solidGarageOpen = const IconDataSolid(0xe00b); - - /// Light Garage Open icon - /// - /// https://fontawesome.com/icons/light_garage-open?style=light - /// auto, car, door, storage, structure, warehouse - static const IconData lightGarageOpen = const IconDataLight(0xe00b); - - /// Duotone Garage Open icon - /// - /// https://fontawesome.com/icons/duotone_garage-open?style=duotone - /// auto, car, door, storage, structure, warehouse - static const IconDataDuotone duotoneGarageOpen = const IconDataDuotone( - 0xe00b, - secondary: const IconDataDuotone(0x10e00b), - ); - - /// Regular Gas Pump icon - /// - /// https://fontawesome.com/icons/gas-pump?style=regular - /// car, fuel, gasoline, petrol - static const IconData gasPump = const IconDataRegular(0xf52f); - - /// Solid Gas Pump icon - /// - /// https://fontawesome.com/icons/gas-pump?style=solid - /// car, fuel, gasoline, petrol - static const IconData solidGasPump = const IconDataSolid(0xf52f); - - /// Light Gas Pump icon - /// - /// https://fontawesome.com/icons/light_gas-pump?style=light - /// car, fuel, gasoline, petrol - static const IconData lightGasPump = const IconDataLight(0xf52f); - - /// Duotone Gas Pump icon - /// - /// https://fontawesome.com/icons/duotone_gas-pump?style=duotone - /// car, fuel, gasoline, petrol - static const IconDataDuotone duotoneGasPump = const IconDataDuotone( - 0xf52f, - secondary: const IconDataDuotone(0x10f52f), - ); - - /// Regular Gas Pump Slash icon - /// - /// https://fontawesome.com/icons/gas-pump-slash?style=regular - /// car, empty, fuel, gasoline, petrol - static const IconData gasPumpSlash = const IconDataRegular(0xf5f4); - - /// Solid Gas Pump Slash icon - /// - /// https://fontawesome.com/icons/gas-pump-slash?style=solid - /// car, empty, fuel, gasoline, petrol - static const IconData solidGasPumpSlash = const IconDataSolid(0xf5f4); - - /// Light Gas Pump Slash icon - /// - /// https://fontawesome.com/icons/light_gas-pump-slash?style=light - /// car, empty, fuel, gasoline, petrol - static const IconData lightGasPumpSlash = const IconDataLight(0xf5f4); - - /// Duotone Gas Pump Slash icon - /// - /// https://fontawesome.com/icons/duotone_gas-pump-slash?style=duotone - /// car, empty, fuel, gasoline, petrol - static const IconDataDuotone duotoneGasPumpSlash = const IconDataDuotone( - 0xf5f4, - secondary: const IconDataDuotone(0x10f5f4), - ); - - /// Regular Gavel icon - /// - /// https://fontawesome.com/icons/gavel?style=regular - /// hammer, judge, law, lawyer, opinion - static const IconData gavel = const IconDataRegular(0xf0e3); - - /// Solid Gavel icon - /// - /// https://fontawesome.com/icons/gavel?style=solid - /// hammer, judge, law, lawyer, opinion - static const IconData solidGavel = const IconDataSolid(0xf0e3); - - /// Light Gavel icon - /// - /// https://fontawesome.com/icons/light_gavel?style=light - /// hammer, judge, law, lawyer, opinion - static const IconData lightGavel = const IconDataLight(0xf0e3); - - /// Duotone Gavel icon - /// - /// https://fontawesome.com/icons/duotone_gavel?style=duotone - /// hammer, judge, law, lawyer, opinion - static const IconDataDuotone duotoneGavel = const IconDataDuotone( - 0xf0e3, - secondary: const IconDataDuotone(0x10f0e3), - ); - - /// Regular Gem icon - /// - /// https://fontawesome.com/icons/gem?style=regular - /// diamond, jewelry, sapphire, stone, treasure - static const IconData gem = const IconDataRegular(0xf3a5); - - /// Solid Gem icon - /// - /// https://fontawesome.com/icons/gem?style=solid - /// diamond, jewelry, sapphire, stone, treasure - static const IconData solidGem = const IconDataSolid(0xf3a5); - - /// Light Gem icon - /// - /// https://fontawesome.com/icons/light_gem?style=light - /// diamond, jewelry, sapphire, stone, treasure - static const IconData lightGem = const IconDataLight(0xf3a5); - - /// Duotone Gem icon - /// - /// https://fontawesome.com/icons/duotone_gem?style=duotone - /// diamond, jewelry, sapphire, stone, treasure - static const IconDataDuotone duotoneGem = const IconDataDuotone( - 0xf3a5, - secondary: const IconDataDuotone(0x10f3a5), - ); - - /// Regular Genderless icon - /// - /// https://fontawesome.com/icons/genderless?style=regular - /// androgynous, asexual, sexless - static const IconData genderless = const IconDataRegular(0xf22d); - - /// Solid Genderless icon - /// - /// https://fontawesome.com/icons/genderless?style=solid - /// androgynous, asexual, sexless - static const IconData solidGenderless = const IconDataSolid(0xf22d); - - /// Light Genderless icon - /// - /// https://fontawesome.com/icons/light_genderless?style=light - /// androgynous, asexual, sexless - static const IconData lightGenderless = const IconDataLight(0xf22d); - - /// Duotone Genderless icon - /// - /// https://fontawesome.com/icons/duotone_genderless?style=duotone - /// androgynous, asexual, sexless - static const IconDataDuotone duotoneGenderless = const IconDataDuotone( - 0xf22d, - secondary: const IconDataDuotone(0x10f22d), - ); - - /// Brands Get Pocket icon - /// - /// https://fontawesome.com/icons/get-pocket?style=brands - static const IconData getPocket = const IconDataBrands(0xf265); - - /// Brands GG Currency icon - /// - /// https://fontawesome.com/icons/gg?style=brands - static const IconData gg = const IconDataBrands(0xf260); - - /// Brands GG Currency Circle icon - /// - /// https://fontawesome.com/icons/gg-circle?style=brands - static const IconData ggCircle = const IconDataBrands(0xf261); - - /// Regular Ghost icon - /// - /// https://fontawesome.com/icons/ghost?style=regular - /// apparition, blinky, clyde, floating, halloween, holiday, inky, pinky, spirit - static const IconData ghost = const IconDataRegular(0xf6e2); - - /// Solid Ghost icon - /// - /// https://fontawesome.com/icons/ghost?style=solid - /// apparition, blinky, clyde, floating, halloween, holiday, inky, pinky, spirit - static const IconData solidGhost = const IconDataSolid(0xf6e2); - - /// Light Ghost icon - /// - /// https://fontawesome.com/icons/light_ghost?style=light - /// apparition, blinky, clyde, floating, halloween, holiday, inky, pinky, spirit - static const IconData lightGhost = const IconDataLight(0xf6e2); - - /// Duotone Ghost icon - /// - /// https://fontawesome.com/icons/duotone_ghost?style=duotone - /// apparition, blinky, clyde, floating, halloween, holiday, inky, pinky, spirit - static const IconDataDuotone duotoneGhost = const IconDataDuotone( - 0xf6e2, - secondary: const IconDataDuotone(0x10f6e2), - ); - - /// Regular gift icon - /// - /// https://fontawesome.com/icons/gift?style=regular - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData gift = const IconDataRegular(0xf06b); - - /// Solid gift icon - /// - /// https://fontawesome.com/icons/gift?style=solid - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData solidGift = const IconDataSolid(0xf06b); - - /// Light gift icon - /// - /// https://fontawesome.com/icons/light_gift?style=light - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData lightGift = const IconDataLight(0xf06b); - - /// Duotone gift icon - /// - /// https://fontawesome.com/icons/duotone_gift?style=duotone - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconDataDuotone duotoneGift = const IconDataDuotone( - 0xf06b, - secondary: const IconDataDuotone(0x10f06b), - ); - - /// Regular Gift Card icon - /// - /// https://fontawesome.com/icons/gift-card?style=regular - /// christmas, generosity, giving, holiday, money, party, present, wrapped, xmas - static const IconData giftCard = const IconDataRegular(0xf663); - - /// Solid Gift Card icon - /// - /// https://fontawesome.com/icons/gift-card?style=solid - /// christmas, generosity, giving, holiday, money, party, present, wrapped, xmas - static const IconData solidGiftCard = const IconDataSolid(0xf663); - - /// Light Gift Card icon - /// - /// https://fontawesome.com/icons/light_gift-card?style=light - /// christmas, generosity, giving, holiday, money, party, present, wrapped, xmas - static const IconData lightGiftCard = const IconDataLight(0xf663); - - /// Duotone Gift Card icon - /// - /// https://fontawesome.com/icons/duotone_gift-card?style=duotone - /// christmas, generosity, giving, holiday, money, party, present, wrapped, xmas - static const IconDataDuotone duotoneGiftCard = const IconDataDuotone( - 0xf663, - secondary: const IconDataDuotone(0x10f663), - ); - - /// Regular Gifts icon - /// - /// https://fontawesome.com/icons/gifts?style=regular - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData gifts = const IconDataRegular(0xf79c); - - /// Solid Gifts icon - /// - /// https://fontawesome.com/icons/gifts?style=solid - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData solidGifts = const IconDataSolid(0xf79c); - - /// Light Gifts icon - /// - /// https://fontawesome.com/icons/light_gifts?style=light - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconData lightGifts = const IconDataLight(0xf79c); - - /// Duotone Gifts icon - /// - /// https://fontawesome.com/icons/duotone_gifts?style=duotone - /// christmas, generosity, giving, holiday, party, present, wrapped, xmas - static const IconDataDuotone duotoneGifts = const IconDataDuotone( - 0xf79c, - secondary: const IconDataDuotone(0x10f79c), - ); - - /// Regular Gingerbread Man icon - /// - /// https://fontawesome.com/icons/gingerbread-man?style=regular - /// cookie, decoration, frosting, holiday - static const IconData gingerbreadMan = const IconDataRegular(0xf79d); - - /// Solid Gingerbread Man icon - /// - /// https://fontawesome.com/icons/gingerbread-man?style=solid - /// cookie, decoration, frosting, holiday - static const IconData solidGingerbreadMan = const IconDataSolid(0xf79d); - - /// Light Gingerbread Man icon - /// - /// https://fontawesome.com/icons/light_gingerbread-man?style=light - /// cookie, decoration, frosting, holiday - static const IconData lightGingerbreadMan = const IconDataLight(0xf79d); - - /// Duotone Gingerbread Man icon - /// - /// https://fontawesome.com/icons/duotone_gingerbread-man?style=duotone - /// cookie, decoration, frosting, holiday - static const IconDataDuotone duotoneGingerbreadMan = const IconDataDuotone( - 0xf79d, - secondary: const IconDataDuotone(0x10f79d), - ); - - /// Brands Git icon - /// - /// https://fontawesome.com/icons/git?style=brands - static const IconData git = const IconDataBrands(0xf1d3); - - /// Brands Git Alt icon - /// - /// https://fontawesome.com/icons/git-alt?style=brands - static const IconData gitAlt = const IconDataBrands(0xf841); - - /// Brands Git Square icon - /// - /// https://fontawesome.com/icons/git-square?style=brands - static const IconData gitSquare = const IconDataBrands(0xf1d2); - - /// Brands GitHub icon - /// - /// https://fontawesome.com/icons/github?style=brands - /// octocat - static const IconData github = const IconDataBrands(0xf09b); - - /// Brands Alternate GitHub icon - /// - /// https://fontawesome.com/icons/github-alt?style=brands - /// octocat - static const IconData githubAlt = const IconDataBrands(0xf113); - - /// Brands GitHub Square icon - /// - /// https://fontawesome.com/icons/github-square?style=brands - /// octocat - static const IconData githubSquare = const IconDataBrands(0xf092); - - /// Brands GitKraken icon - /// - /// https://fontawesome.com/icons/gitkraken?style=brands - static const IconData gitkraken = const IconDataBrands(0xf3a6); - - /// Brands GitLab icon - /// - /// https://fontawesome.com/icons/gitlab?style=brands - /// Axosoft - static const IconData gitlab = const IconDataBrands(0xf296); - - /// Brands Gitter icon - /// - /// https://fontawesome.com/icons/gitter?style=brands - static const IconData gitter = const IconDataBrands(0xf426); - - /// Regular Glass icon - /// - /// https://fontawesome.com/icons/glass?style=regular - /// alcohol, beverage, drink, glass, water - static const IconData glass = const IconDataRegular(0xf804); - - /// Solid Glass icon - /// - /// https://fontawesome.com/icons/glass?style=solid - /// alcohol, beverage, drink, glass, water - static const IconData solidGlass = const IconDataSolid(0xf804); - - /// Light Glass icon - /// - /// https://fontawesome.com/icons/light_glass?style=light - /// alcohol, beverage, drink, glass, water - static const IconData lightGlass = const IconDataLight(0xf804); - - /// Duotone Glass icon - /// - /// https://fontawesome.com/icons/duotone_glass?style=duotone - /// alcohol, beverage, drink, glass, water - static const IconDataDuotone duotoneGlass = const IconDataDuotone( - 0xf804, - secondary: const IconDataDuotone(0x10f804), - ); - - /// Regular Glass Champagne icon - /// - /// https://fontawesome.com/icons/glass-champagne?style=regular - /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData glassChampagne = const IconDataRegular(0xf79e); - - /// Solid Glass Champagne icon - /// - /// https://fontawesome.com/icons/glass-champagne?style=solid - /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData solidGlassChampagne = const IconDataSolid(0xf79e); - - /// Light Glass Champagne icon - /// - /// https://fontawesome.com/icons/light_glass-champagne?style=light - /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconData lightGlassChampagne = const IconDataLight(0xf79e); - - /// Duotone Glass Champagne icon - /// - /// https://fontawesome.com/icons/duotone_glass-champagne?style=duotone - /// alcohol, bar, beverage, celebration, champagne, drink, holiday, party - static const IconDataDuotone duotoneGlassChampagne = const IconDataDuotone( - 0xf79e, - secondary: const IconDataDuotone(0x10f79e), - ); - - /// Regular Glass Cheers icon - /// - /// https://fontawesome.com/icons/glass-cheers?style=regular - /// alcohol, bar, beverage, celebration, champagne, clink, drink, holiday, new year's eve, party, toast - static const IconData glassCheers = const IconDataRegular(0xf79f); - - /// Solid Glass Cheers icon - /// - /// https://fontawesome.com/icons/glass-cheers?style=solid - /// alcohol, bar, beverage, celebration, champagne, clink, drink, holiday, new year's eve, party, toast - static const IconData solidGlassCheers = const IconDataSolid(0xf79f); - - /// Light Glass Cheers icon - /// - /// https://fontawesome.com/icons/light_glass-cheers?style=light - /// alcohol, bar, beverage, celebration, champagne, clink, drink, holiday, new year's eve, party, toast - static const IconData lightGlassCheers = const IconDataLight(0xf79f); - - /// Duotone Glass Cheers icon - /// - /// https://fontawesome.com/icons/duotone_glass-cheers?style=duotone - /// alcohol, bar, beverage, celebration, champagne, clink, drink, holiday, new year's eve, party, toast - static const IconDataDuotone duotoneGlassCheers = const IconDataDuotone( - 0xf79f, - secondary: const IconDataDuotone(0x10f79f), - ); - - /// Regular Glass Citrus icon - /// - /// https://fontawesome.com/icons/glass-citrus?style=regular - /// cocktail, drink, lemonade, refreshing, water - static const IconData glassCitrus = const IconDataRegular(0xf869); - - /// Solid Glass Citrus icon - /// - /// https://fontawesome.com/icons/glass-citrus?style=solid - /// cocktail, drink, lemonade, refreshing, water - static const IconData solidGlassCitrus = const IconDataSolid(0xf869); - - /// Light Glass Citrus icon - /// - /// https://fontawesome.com/icons/light_glass-citrus?style=light - /// cocktail, drink, lemonade, refreshing, water - static const IconData lightGlassCitrus = const IconDataLight(0xf869); - - /// Duotone Glass Citrus icon - /// - /// https://fontawesome.com/icons/duotone_glass-citrus?style=duotone - /// cocktail, drink, lemonade, refreshing, water - static const IconDataDuotone duotoneGlassCitrus = const IconDataDuotone( - 0xf869, - secondary: const IconDataDuotone(0x10f869), - ); - - /// Regular Martini Glass icon - /// - /// https://fontawesome.com/icons/glass-martini?style=regular - /// alcohol, bar, beverage, drink, liquor - static const IconData glassMartini = const IconDataRegular(0xf000); - - /// Solid Martini Glass icon - /// - /// https://fontawesome.com/icons/glass-martini?style=solid - /// alcohol, bar, beverage, drink, liquor - static const IconData solidGlassMartini = const IconDataSolid(0xf000); - - /// Light Martini Glass icon - /// - /// https://fontawesome.com/icons/light_glass-martini?style=light - /// alcohol, bar, beverage, drink, liquor - static const IconData lightGlassMartini = const IconDataLight(0xf000); - - /// Duotone Martini Glass icon - /// - /// https://fontawesome.com/icons/duotone_glass-martini?style=duotone - /// alcohol, bar, beverage, drink, liquor - static const IconDataDuotone duotoneGlassMartini = const IconDataDuotone( - 0xf000, - secondary: const IconDataDuotone(0x10f000), - ); - - /// Regular Alternate Glass Martini icon - /// - /// https://fontawesome.com/icons/glass-martini-alt?style=regular - /// alcohol, bar, beverage, drink, liquor - static const IconData glassMartiniAlt = const IconDataRegular(0xf57b); - - /// Solid Alternate Glass Martini icon - /// - /// https://fontawesome.com/icons/glass-martini-alt?style=solid - /// alcohol, bar, beverage, drink, liquor - static const IconData solidGlassMartiniAlt = const IconDataSolid(0xf57b); - - /// Light Alternate Glass Martini icon - /// - /// https://fontawesome.com/icons/light_glass-martini-alt?style=light - /// alcohol, bar, beverage, drink, liquor - static const IconData lightGlassMartiniAlt = const IconDataLight(0xf57b); - - /// Duotone Alternate Glass Martini icon - /// - /// https://fontawesome.com/icons/duotone_glass-martini-alt?style=duotone - /// alcohol, bar, beverage, drink, liquor - static const IconDataDuotone duotoneGlassMartiniAlt = const IconDataDuotone( - 0xf57b, - secondary: const IconDataDuotone(0x10f57b), - ); - - /// Regular Glass Whiskey icon - /// - /// https://fontawesome.com/icons/glass-whiskey?style=regular - /// alcohol, bar, beverage, bourbon, drink, liquor, neat, rye, scotch, whisky - static const IconData glassWhiskey = const IconDataRegular(0xf7a0); - - /// Solid Glass Whiskey icon - /// - /// https://fontawesome.com/icons/glass-whiskey?style=solid - /// alcohol, bar, beverage, bourbon, drink, liquor, neat, rye, scotch, whisky - static const IconData solidGlassWhiskey = const IconDataSolid(0xf7a0); - - /// Light Glass Whiskey icon - /// - /// https://fontawesome.com/icons/light_glass-whiskey?style=light - /// alcohol, bar, beverage, bourbon, drink, liquor, neat, rye, scotch, whisky - static const IconData lightGlassWhiskey = const IconDataLight(0xf7a0); - - /// Duotone Glass Whiskey icon - /// - /// https://fontawesome.com/icons/duotone_glass-whiskey?style=duotone - /// alcohol, bar, beverage, bourbon, drink, liquor, neat, rye, scotch, whisky - static const IconDataDuotone duotoneGlassWhiskey = const IconDataDuotone( - 0xf7a0, - secondary: const IconDataDuotone(0x10f7a0), - ); - - /// Regular Glass Whiskey-rocks icon - /// - /// https://fontawesome.com/icons/glass-whiskey-rocks?style=regular - /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData glassWhiskeyRocks = const IconDataRegular(0xf7a1); - - /// Solid Glass Whiskey-rocks icon - /// - /// https://fontawesome.com/icons/glass-whiskey-rocks?style=solid - /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData solidGlassWhiskeyRocks = const IconDataSolid(0xf7a1); - - /// Light Glass Whiskey-rocks icon - /// - /// https://fontawesome.com/icons/light_glass-whiskey-rocks?style=light - /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconData lightGlassWhiskeyRocks = const IconDataLight(0xf7a1); - - /// Duotone Glass Whiskey-rocks icon - /// - /// https://fontawesome.com/icons/duotone_glass-whiskey-rocks?style=duotone - /// alcohol, bar, beverage, bourbon, drink, ice, liquor, rye, scotch, whisky - static const IconDataDuotone duotoneGlassWhiskeyRocks = const IconDataDuotone( - 0xf7a1, - secondary: const IconDataDuotone(0x10f7a1), - ); - - /// Regular Glasses icon - /// - /// https://fontawesome.com/icons/glasses?style=regular - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData glasses = const IconDataRegular(0xf530); - - /// Solid Glasses icon - /// - /// https://fontawesome.com/icons/glasses?style=solid - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData solidGlasses = const IconDataSolid(0xf530); - - /// Light Glasses icon - /// - /// https://fontawesome.com/icons/light_glasses?style=light - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData lightGlasses = const IconDataLight(0xf530); - - /// Duotone Glasses icon - /// - /// https://fontawesome.com/icons/duotone_glasses?style=duotone - /// hipster, nerd, reading, sight, spectacles, vision - static const IconDataDuotone duotoneGlasses = const IconDataDuotone( - 0xf530, - secondary: const IconDataDuotone(0x10f530), - ); - - /// Regular Alternate Glasses icon - /// - /// https://fontawesome.com/icons/glasses-alt?style=regular - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData glassesAlt = const IconDataRegular(0xf5f5); - - /// Solid Alternate Glasses icon - /// - /// https://fontawesome.com/icons/glasses-alt?style=solid - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData solidGlassesAlt = const IconDataSolid(0xf5f5); - - /// Light Alternate Glasses icon - /// - /// https://fontawesome.com/icons/light_glasses-alt?style=light - /// hipster, nerd, reading, sight, spectacles, vision - static const IconData lightGlassesAlt = const IconDataLight(0xf5f5); - - /// Duotone Alternate Glasses icon - /// - /// https://fontawesome.com/icons/duotone_glasses-alt?style=duotone - /// hipster, nerd, reading, sight, spectacles, vision - static const IconDataDuotone duotoneGlassesAlt = const IconDataDuotone( - 0xf5f5, - secondary: const IconDataDuotone(0x10f5f5), - ); - - /// Brands Glide icon - /// - /// https://fontawesome.com/icons/glide?style=brands - static const IconData glide = const IconDataBrands(0xf2a5); - - /// Brands Glide G icon - /// - /// https://fontawesome.com/icons/glide-g?style=brands - static const IconData glideG = const IconDataBrands(0xf2a6); - - /// Regular Globe icon - /// - /// https://fontawesome.com/icons/globe?style=regular - /// all, coordinates, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData globe = const IconDataRegular(0xf0ac); - - /// Solid Globe icon - /// - /// https://fontawesome.com/icons/globe?style=solid - /// all, coordinates, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidGlobe = const IconDataSolid(0xf0ac); - - /// Light Globe icon - /// - /// https://fontawesome.com/icons/light_globe?style=light - /// all, coordinates, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightGlobe = const IconDataLight(0xf0ac); - - /// Duotone Globe icon - /// - /// https://fontawesome.com/icons/duotone_globe?style=duotone - /// all, coordinates, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconDataDuotone duotoneGlobe = const IconDataDuotone( - 0xf0ac, - secondary: const IconDataDuotone(0x10f0ac), - ); - - /// Regular Globe with Africa shown icon - /// - /// https://fontawesome.com/icons/globe-africa?style=regular - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData globeAfrica = const IconDataRegular(0xf57c); - - /// Solid Globe with Africa shown icon - /// - /// https://fontawesome.com/icons/globe-africa?style=solid - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidGlobeAfrica = const IconDataSolid(0xf57c); - - /// Light Globe with Africa shown icon - /// - /// https://fontawesome.com/icons/light_globe-africa?style=light - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightGlobeAfrica = const IconDataLight(0xf57c); - - /// Duotone Globe with Africa shown icon - /// - /// https://fontawesome.com/icons/duotone_globe-africa?style=duotone - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconDataDuotone duotoneGlobeAfrica = const IconDataDuotone( - 0xf57c, - secondary: const IconDataDuotone(0x10f57c), - ); - - /// Regular Globe with Americas shown icon - /// - /// https://fontawesome.com/icons/globe-americas?style=regular - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData globeAmericas = const IconDataRegular(0xf57d); - - /// Solid Globe with Americas shown icon - /// - /// https://fontawesome.com/icons/globe-americas?style=solid - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidGlobeAmericas = const IconDataSolid(0xf57d); - - /// Light Globe with Americas shown icon - /// - /// https://fontawesome.com/icons/light_globe-americas?style=light - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightGlobeAmericas = const IconDataLight(0xf57d); - - /// Duotone Globe with Americas shown icon - /// - /// https://fontawesome.com/icons/duotone_globe-americas?style=duotone - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconDataDuotone duotoneGlobeAmericas = const IconDataDuotone( - 0xf57d, - secondary: const IconDataDuotone(0x10f57d), - ); - - /// Regular Globe with Asia shown icon - /// - /// https://fontawesome.com/icons/globe-asia?style=regular - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData globeAsia = const IconDataRegular(0xf57e); - - /// Solid Globe with Asia shown icon - /// - /// https://fontawesome.com/icons/globe-asia?style=solid - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidGlobeAsia = const IconDataSolid(0xf57e); - - /// Light Globe with Asia shown icon - /// - /// https://fontawesome.com/icons/light_globe-asia?style=light - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightGlobeAsia = const IconDataLight(0xf57e); - - /// Duotone Globe with Asia shown icon - /// - /// https://fontawesome.com/icons/duotone_globe-asia?style=duotone - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconDataDuotone duotoneGlobeAsia = const IconDataDuotone( - 0xf57e, - secondary: const IconDataDuotone(0x10f57e), - ); - - /// Regular Globe with Europe shown icon - /// - /// https://fontawesome.com/icons/globe-europe?style=regular - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData globeEurope = const IconDataRegular(0xf7a2); - - /// Solid Globe with Europe shown icon - /// - /// https://fontawesome.com/icons/globe-europe?style=solid - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData solidGlobeEurope = const IconDataSolid(0xf7a2); - - /// Light Globe with Europe shown icon - /// - /// https://fontawesome.com/icons/light_globe-europe?style=light - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconData lightGlobeEurope = const IconDataLight(0xf7a2); - - /// Duotone Globe with Europe shown icon - /// - /// https://fontawesome.com/icons/duotone_globe-europe?style=duotone - /// all, country, earth, global, gps, language, localize, location, map, online, place, planet, translate, travel, world - static const IconDataDuotone duotoneGlobeEurope = const IconDataDuotone( - 0xf7a2, - secondary: const IconDataDuotone(0x10f7a2), - ); - - /// Regular Globe Snow icon - /// - /// https://fontawesome.com/icons/globe-snow?style=regular - /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData globeSnow = const IconDataRegular(0xf7a3); - - /// Solid Globe Snow icon - /// - /// https://fontawesome.com/icons/globe-snow?style=solid - /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData solidGlobeSnow = const IconDataSolid(0xf7a3); - - /// Light Globe Snow icon - /// - /// https://fontawesome.com/icons/light_globe-snow?style=light - /// diorama, scene, seasonal, shake, souvenir, winter - static const IconData lightGlobeSnow = const IconDataLight(0xf7a3); - - /// Duotone Globe Snow icon - /// - /// https://fontawesome.com/icons/duotone_globe-snow?style=duotone - /// diorama, scene, seasonal, shake, souvenir, winter - static const IconDataDuotone duotoneGlobeSnow = const IconDataDuotone( - 0xf7a3, - secondary: const IconDataDuotone(0x10f7a3), - ); - - /// Regular Globe Stand icon - /// - /// https://fontawesome.com/icons/globe-stand?style=regular - /// earth, geography, global, localize, location, map, travel, world - static const IconData globeStand = const IconDataRegular(0xf5f6); - - /// Solid Globe Stand icon - /// - /// https://fontawesome.com/icons/globe-stand?style=solid - /// earth, geography, global, localize, location, map, travel, world - static const IconData solidGlobeStand = const IconDataSolid(0xf5f6); - - /// Light Globe Stand icon - /// - /// https://fontawesome.com/icons/light_globe-stand?style=light - /// earth, geography, global, localize, location, map, travel, world - static const IconData lightGlobeStand = const IconDataLight(0xf5f6); - - /// Duotone Globe Stand icon - /// - /// https://fontawesome.com/icons/duotone_globe-stand?style=duotone - /// earth, geography, global, localize, location, map, travel, world - static const IconDataDuotone duotoneGlobeStand = const IconDataDuotone( - 0xf5f6, - secondary: const IconDataDuotone(0x10f5f6), - ); - - /// Brands Gofore icon - /// - /// https://fontawesome.com/icons/gofore?style=brands - static const IconData gofore = const IconDataBrands(0xf3a7); - - /// Regular Golf Ball icon - /// - /// https://fontawesome.com/icons/golf-ball?style=regular - /// caddy, eagle, putt, tee - static const IconData golfBall = const IconDataRegular(0xf450); - - /// Solid Golf Ball icon - /// - /// https://fontawesome.com/icons/golf-ball?style=solid - /// caddy, eagle, putt, tee - static const IconData solidGolfBall = const IconDataSolid(0xf450); - - /// Light Golf Ball icon - /// - /// https://fontawesome.com/icons/light_golf-ball?style=light - /// caddy, eagle, putt, tee - static const IconData lightGolfBall = const IconDataLight(0xf450); - - /// Duotone Golf Ball icon - /// - /// https://fontawesome.com/icons/duotone_golf-ball?style=duotone - /// caddy, eagle, putt, tee - static const IconDataDuotone duotoneGolfBall = const IconDataDuotone( - 0xf450, - secondary: const IconDataDuotone(0x10f450), - ); - - /// Regular Golf Club icon - /// - /// https://fontawesome.com/icons/golf-club?style=regular - /// caddy, eagle, putt, tee - static const IconData golfClub = const IconDataRegular(0xf451); - - /// Solid Golf Club icon - /// - /// https://fontawesome.com/icons/golf-club?style=solid - /// caddy, eagle, putt, tee - static const IconData solidGolfClub = const IconDataSolid(0xf451); - - /// Light Golf Club icon - /// - /// https://fontawesome.com/icons/light_golf-club?style=light - /// caddy, eagle, putt, tee - static const IconData lightGolfClub = const IconDataLight(0xf451); - - /// Duotone Golf Club icon - /// - /// https://fontawesome.com/icons/duotone_golf-club?style=duotone - /// caddy, eagle, putt, tee - static const IconDataDuotone duotoneGolfClub = const IconDataDuotone( - 0xf451, - secondary: const IconDataDuotone(0x10f451), - ); - - /// Brands Goodreads icon - /// - /// https://fontawesome.com/icons/goodreads?style=brands - static const IconData goodreads = const IconDataBrands(0xf3a8); - - /// Brands Goodreads G icon - /// - /// https://fontawesome.com/icons/goodreads-g?style=brands - static const IconData goodreadsG = const IconDataBrands(0xf3a9); - - /// Brands Google Logo icon - /// - /// https://fontawesome.com/icons/google?style=brands - static const IconData google = const IconDataBrands(0xf1a0); - - /// Brands Google Drive icon - /// - /// https://fontawesome.com/icons/google-drive?style=brands - static const IconData googleDrive = const IconDataBrands(0xf3aa); - - /// Brands Google Pay icon - /// - /// https://fontawesome.com/icons/google-pay?style=brands - static const IconData googlePay = const IconDataBrands(0xe079); - - /// Brands Google Play icon - /// - /// https://fontawesome.com/icons/google-play?style=brands - static const IconData googlePlay = const IconDataBrands(0xf3ab); - - /// Brands Google Plus icon - /// - /// https://fontawesome.com/icons/google-plus?style=brands - /// google-plus-circle, google-plus-official - static const IconData googlePlus = const IconDataBrands(0xf2b3); - - /// Brands Google Plus G icon - /// - /// https://fontawesome.com/icons/google-plus-g?style=brands - /// google-plus, social network - static const IconData googlePlusG = const IconDataBrands(0xf0d5); - - /// Brands Google Plus Square icon - /// - /// https://fontawesome.com/icons/google-plus-square?style=brands - /// social network - static const IconData googlePlusSquare = const IconDataBrands(0xf0d4); - - /// Brands Google Wallet icon - /// - /// https://fontawesome.com/icons/google-wallet?style=brands - static const IconData googleWallet = const IconDataBrands(0xf1ee); - - /// Regular Gopuram icon - /// - /// https://fontawesome.com/icons/gopuram?style=regular - /// building, entrance, hinduism, temple, tower - static const IconData gopuram = const IconDataRegular(0xf664); - - /// Solid Gopuram icon - /// - /// https://fontawesome.com/icons/gopuram?style=solid - /// building, entrance, hinduism, temple, tower - static const IconData solidGopuram = const IconDataSolid(0xf664); - - /// Light Gopuram icon - /// - /// https://fontawesome.com/icons/light_gopuram?style=light - /// building, entrance, hinduism, temple, tower - static const IconData lightGopuram = const IconDataLight(0xf664); - - /// Duotone Gopuram icon - /// - /// https://fontawesome.com/icons/duotone_gopuram?style=duotone - /// building, entrance, hinduism, temple, tower - static const IconDataDuotone duotoneGopuram = const IconDataDuotone( - 0xf664, - secondary: const IconDataDuotone(0x10f664), - ); - - /// Regular Graduation Cap icon - /// - /// https://fontawesome.com/icons/graduation-cap?style=regular - /// ceremony, college, graduate, learning, school, student - static const IconData graduationCap = const IconDataRegular(0xf19d); - - /// Solid Graduation Cap icon - /// - /// https://fontawesome.com/icons/graduation-cap?style=solid - /// ceremony, college, graduate, learning, school, student - static const IconData solidGraduationCap = const IconDataSolid(0xf19d); - - /// Light Graduation Cap icon - /// - /// https://fontawesome.com/icons/light_graduation-cap?style=light - /// ceremony, college, graduate, learning, school, student - static const IconData lightGraduationCap = const IconDataLight(0xf19d); - - /// Duotone Graduation Cap icon - /// - /// https://fontawesome.com/icons/duotone_graduation-cap?style=duotone - /// ceremony, college, graduate, learning, school, student - static const IconDataDuotone duotoneGraduationCap = const IconDataDuotone( - 0xf19d, - secondary: const IconDataDuotone(0x10f19d), - ); - - /// Regular Gramophone icon - /// - /// https://fontawesome.com/icons/gramophone?style=regular - /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData gramophone = const IconDataRegular(0xf8bd); - - /// Solid Gramophone icon - /// - /// https://fontawesome.com/icons/gramophone?style=solid - /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData solidGramophone = const IconDataSolid(0xf8bd); - - /// Light Gramophone icon - /// - /// https://fontawesome.com/icons/light_gramophone?style=light - /// award, grammy, music, phonograph, record, turntable, victrola - static const IconData lightGramophone = const IconDataLight(0xf8bd); - - /// Duotone Gramophone icon - /// - /// https://fontawesome.com/icons/duotone_gramophone?style=duotone - /// award, grammy, music, phonograph, record, turntable, victrola - static const IconDataDuotone duotoneGramophone = const IconDataDuotone( - 0xf8bd, - secondary: const IconDataDuotone(0x10f8bd), - ); - - /// Brands Gratipay (Gittip) icon - /// - /// https://fontawesome.com/icons/gratipay?style=brands - /// favorite, heart, like, love - static const IconData gratipay = const IconDataBrands(0xf184); - - /// Brands Grav icon - /// - /// https://fontawesome.com/icons/grav?style=brands - static const IconData grav = const IconDataBrands(0xf2d6); - - /// Regular Greater Than icon - /// - /// https://fontawesome.com/icons/greater-than?style=regular - /// arithmetic, compare, math - static const IconData greaterThan = const IconDataRegular(0xf531); - - /// Solid Greater Than icon - /// - /// https://fontawesome.com/icons/greater-than?style=solid - /// arithmetic, compare, math - static const IconData solidGreaterThan = const IconDataSolid(0xf531); - - /// Light Greater Than icon - /// - /// https://fontawesome.com/icons/light_greater-than?style=light - /// arithmetic, compare, math - static const IconData lightGreaterThan = const IconDataLight(0xf531); - - /// Duotone Greater Than icon - /// - /// https://fontawesome.com/icons/duotone_greater-than?style=duotone - /// arithmetic, compare, math - static const IconDataDuotone duotoneGreaterThan = const IconDataDuotone( - 0xf531, - secondary: const IconDataDuotone(0x10f531), - ); - - /// Regular Greater Than Equal To icon - /// - /// https://fontawesome.com/icons/greater-than-equal?style=regular - /// arithmetic, compare, math - static const IconData greaterThanEqual = const IconDataRegular(0xf532); - - /// Solid Greater Than Equal To icon - /// - /// https://fontawesome.com/icons/greater-than-equal?style=solid - /// arithmetic, compare, math - static const IconData solidGreaterThanEqual = const IconDataSolid(0xf532); - - /// Light Greater Than Equal To icon - /// - /// https://fontawesome.com/icons/light_greater-than-equal?style=light - /// arithmetic, compare, math - static const IconData lightGreaterThanEqual = const IconDataLight(0xf532); - - /// Duotone Greater Than Equal To icon - /// - /// https://fontawesome.com/icons/duotone_greater-than-equal?style=duotone - /// arithmetic, compare, math - static const IconDataDuotone duotoneGreaterThanEqual = const IconDataDuotone( - 0xf532, - secondary: const IconDataDuotone(0x10f532), - ); - - /// Regular Grimacing Face icon - /// - /// https://fontawesome.com/icons/grimace?style=regular - /// cringe, emoticon, face, teeth - static const IconData grimace = const IconDataRegular(0xf57f); - - /// Solid Grimacing Face icon - /// - /// https://fontawesome.com/icons/grimace?style=solid - /// cringe, emoticon, face, teeth - static const IconData solidGrimace = const IconDataSolid(0xf57f); - - /// Light Grimacing Face icon - /// - /// https://fontawesome.com/icons/light_grimace?style=light - /// cringe, emoticon, face, teeth - static const IconData lightGrimace = const IconDataLight(0xf57f); - - /// Duotone Grimacing Face icon - /// - /// https://fontawesome.com/icons/duotone_grimace?style=duotone - /// cringe, emoticon, face, teeth - static const IconDataDuotone duotoneGrimace = const IconDataDuotone( - 0xf57f, - secondary: const IconDataDuotone(0x10f57f), - ); - - /// Regular Grinning Face icon - /// - /// https://fontawesome.com/icons/grin?style=regular - /// emoticon, face, laugh, smile - static const IconData grin = const IconDataRegular(0xf580); - - /// Solid Grinning Face icon - /// - /// https://fontawesome.com/icons/grin?style=solid - /// emoticon, face, laugh, smile - static const IconData solidGrin = const IconDataSolid(0xf580); - - /// Light Grinning Face icon - /// - /// https://fontawesome.com/icons/light_grin?style=light - /// emoticon, face, laugh, smile - static const IconData lightGrin = const IconDataLight(0xf580); - - /// Duotone Grinning Face icon - /// - /// https://fontawesome.com/icons/duotone_grin?style=duotone - /// emoticon, face, laugh, smile - static const IconDataDuotone duotoneGrin = const IconDataDuotone( - 0xf580, - secondary: const IconDataDuotone(0x10f580), - ); - - /// Regular Alternate Grinning Face icon - /// - /// https://fontawesome.com/icons/grin-alt?style=regular - /// emoticon, face, laugh, smile - static const IconData grinAlt = const IconDataRegular(0xf581); - - /// Solid Alternate Grinning Face icon - /// - /// https://fontawesome.com/icons/grin-alt?style=solid - /// emoticon, face, laugh, smile - static const IconData solidGrinAlt = const IconDataSolid(0xf581); - - /// Light Alternate Grinning Face icon - /// - /// https://fontawesome.com/icons/light_grin-alt?style=light - /// emoticon, face, laugh, smile - static const IconData lightGrinAlt = const IconDataLight(0xf581); - - /// Duotone Alternate Grinning Face icon - /// - /// https://fontawesome.com/icons/duotone_grin-alt?style=duotone - /// emoticon, face, laugh, smile - static const IconDataDuotone duotoneGrinAlt = const IconDataDuotone( - 0xf581, - secondary: const IconDataDuotone(0x10f581), - ); - - /// Regular Grinning Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/grin-beam?style=regular - /// emoticon, face, laugh, smile - static const IconData grinBeam = const IconDataRegular(0xf582); - - /// Solid Grinning Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/grin-beam?style=solid - /// emoticon, face, laugh, smile - static const IconData solidGrinBeam = const IconDataSolid(0xf582); - - /// Light Grinning Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/light_grin-beam?style=light - /// emoticon, face, laugh, smile - static const IconData lightGrinBeam = const IconDataLight(0xf582); - - /// Duotone Grinning Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/duotone_grin-beam?style=duotone - /// emoticon, face, laugh, smile - static const IconDataDuotone duotoneGrinBeam = const IconDataDuotone( - 0xf582, - secondary: const IconDataDuotone(0x10f582), - ); - - /// Regular Grinning Face With Sweat icon - /// - /// https://fontawesome.com/icons/grin-beam-sweat?style=regular - /// embarass, emoticon, face, smile - static const IconData grinBeamSweat = const IconDataRegular(0xf583); - - /// Solid Grinning Face With Sweat icon - /// - /// https://fontawesome.com/icons/grin-beam-sweat?style=solid - /// embarass, emoticon, face, smile - static const IconData solidGrinBeamSweat = const IconDataSolid(0xf583); - - /// Light Grinning Face With Sweat icon - /// - /// https://fontawesome.com/icons/light_grin-beam-sweat?style=light - /// embarass, emoticon, face, smile - static const IconData lightGrinBeamSweat = const IconDataLight(0xf583); - - /// Duotone Grinning Face With Sweat icon - /// - /// https://fontawesome.com/icons/duotone_grin-beam-sweat?style=duotone - /// embarass, emoticon, face, smile - static const IconDataDuotone duotoneGrinBeamSweat = const IconDataDuotone( - 0xf583, - secondary: const IconDataDuotone(0x10f583), - ); - - /// Regular Smiling Face With Heart-Eyes icon - /// - /// https://fontawesome.com/icons/grin-hearts?style=regular - /// emoticon, face, love, smile - static const IconData grinHearts = const IconDataRegular(0xf584); - - /// Solid Smiling Face With Heart-Eyes icon - /// - /// https://fontawesome.com/icons/grin-hearts?style=solid - /// emoticon, face, love, smile - static const IconData solidGrinHearts = const IconDataSolid(0xf584); - - /// Light Smiling Face With Heart-Eyes icon - /// - /// https://fontawesome.com/icons/light_grin-hearts?style=light - /// emoticon, face, love, smile - static const IconData lightGrinHearts = const IconDataLight(0xf584); - - /// Duotone Smiling Face With Heart-Eyes icon - /// - /// https://fontawesome.com/icons/duotone_grin-hearts?style=duotone - /// emoticon, face, love, smile - static const IconDataDuotone duotoneGrinHearts = const IconDataDuotone( - 0xf584, - secondary: const IconDataDuotone(0x10f584), - ); - - /// Regular Grinning Squinting Face icon - /// - /// https://fontawesome.com/icons/grin-squint?style=regular - /// emoticon, face, laugh, smile - static const IconData grinSquint = const IconDataRegular(0xf585); - - /// Solid Grinning Squinting Face icon - /// - /// https://fontawesome.com/icons/grin-squint?style=solid - /// emoticon, face, laugh, smile - static const IconData solidGrinSquint = const IconDataSolid(0xf585); - - /// Light Grinning Squinting Face icon - /// - /// https://fontawesome.com/icons/light_grin-squint?style=light - /// emoticon, face, laugh, smile - static const IconData lightGrinSquint = const IconDataLight(0xf585); - - /// Duotone Grinning Squinting Face icon - /// - /// https://fontawesome.com/icons/duotone_grin-squint?style=duotone - /// emoticon, face, laugh, smile - static const IconDataDuotone duotoneGrinSquint = const IconDataDuotone( - 0xf585, - secondary: const IconDataDuotone(0x10f585), - ); - - /// Regular Rolling on the Floor Laughing icon - /// - /// https://fontawesome.com/icons/grin-squint-tears?style=regular - /// emoticon, face, happy, smile - static const IconData grinSquintTears = const IconDataRegular(0xf586); - - /// Solid Rolling on the Floor Laughing icon - /// - /// https://fontawesome.com/icons/grin-squint-tears?style=solid - /// emoticon, face, happy, smile - static const IconData solidGrinSquintTears = const IconDataSolid(0xf586); - - /// Light Rolling on the Floor Laughing icon - /// - /// https://fontawesome.com/icons/light_grin-squint-tears?style=light - /// emoticon, face, happy, smile - static const IconData lightGrinSquintTears = const IconDataLight(0xf586); - - /// Duotone Rolling on the Floor Laughing icon - /// - /// https://fontawesome.com/icons/duotone_grin-squint-tears?style=duotone - /// emoticon, face, happy, smile - static const IconDataDuotone duotoneGrinSquintTears = const IconDataDuotone( - 0xf586, - secondary: const IconDataDuotone(0x10f586), - ); - - /// Regular Star-Struck icon - /// - /// https://fontawesome.com/icons/grin-stars?style=regular - /// emoticon, face, star-struck - static const IconData grinStars = const IconDataRegular(0xf587); - - /// Solid Star-Struck icon - /// - /// https://fontawesome.com/icons/grin-stars?style=solid - /// emoticon, face, star-struck - static const IconData solidGrinStars = const IconDataSolid(0xf587); - - /// Light Star-Struck icon - /// - /// https://fontawesome.com/icons/light_grin-stars?style=light - /// emoticon, face, star-struck - static const IconData lightGrinStars = const IconDataLight(0xf587); - - /// Duotone Star-Struck icon - /// - /// https://fontawesome.com/icons/duotone_grin-stars?style=duotone - /// emoticon, face, star-struck - static const IconDataDuotone duotoneGrinStars = const IconDataDuotone( - 0xf587, - secondary: const IconDataDuotone(0x10f587), - ); - - /// Regular Face With Tears of Joy icon - /// - /// https://fontawesome.com/icons/grin-tears?style=regular - /// LOL, emoticon, face - static const IconData grinTears = const IconDataRegular(0xf588); - - /// Solid Face With Tears of Joy icon - /// - /// https://fontawesome.com/icons/grin-tears?style=solid - /// LOL, emoticon, face - static const IconData solidGrinTears = const IconDataSolid(0xf588); - - /// Light Face With Tears of Joy icon - /// - /// https://fontawesome.com/icons/light_grin-tears?style=light - /// LOL, emoticon, face - static const IconData lightGrinTears = const IconDataLight(0xf588); - - /// Duotone Face With Tears of Joy icon - /// - /// https://fontawesome.com/icons/duotone_grin-tears?style=duotone - /// LOL, emoticon, face - static const IconDataDuotone duotoneGrinTears = const IconDataDuotone( - 0xf588, - secondary: const IconDataDuotone(0x10f588), - ); - - /// Regular Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue?style=regular - /// LOL, emoticon, face - static const IconData grinTongue = const IconDataRegular(0xf589); - - /// Solid Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue?style=solid - /// LOL, emoticon, face - static const IconData solidGrinTongue = const IconDataSolid(0xf589); - - /// Light Face With Tongue icon - /// - /// https://fontawesome.com/icons/light_grin-tongue?style=light - /// LOL, emoticon, face - static const IconData lightGrinTongue = const IconDataLight(0xf589); - - /// Duotone Face With Tongue icon - /// - /// https://fontawesome.com/icons/duotone_grin-tongue?style=duotone - /// LOL, emoticon, face - static const IconDataDuotone duotoneGrinTongue = const IconDataDuotone( - 0xf589, - secondary: const IconDataDuotone(0x10f589), - ); - - /// Regular Squinting Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue-squint?style=regular - /// LOL, emoticon, face - static const IconData grinTongueSquint = const IconDataRegular(0xf58a); - - /// Solid Squinting Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue-squint?style=solid - /// LOL, emoticon, face - static const IconData solidGrinTongueSquint = const IconDataSolid(0xf58a); - - /// Light Squinting Face With Tongue icon - /// - /// https://fontawesome.com/icons/light_grin-tongue-squint?style=light - /// LOL, emoticon, face - static const IconData lightGrinTongueSquint = const IconDataLight(0xf58a); - - /// Duotone Squinting Face With Tongue icon - /// - /// https://fontawesome.com/icons/duotone_grin-tongue-squint?style=duotone - /// LOL, emoticon, face - static const IconDataDuotone duotoneGrinTongueSquint = const IconDataDuotone( - 0xf58a, - secondary: const IconDataDuotone(0x10f58a), - ); - - /// Regular Winking Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue-wink?style=regular - /// LOL, emoticon, face - static const IconData grinTongueWink = const IconDataRegular(0xf58b); - - /// Solid Winking Face With Tongue icon - /// - /// https://fontawesome.com/icons/grin-tongue-wink?style=solid - /// LOL, emoticon, face - static const IconData solidGrinTongueWink = const IconDataSolid(0xf58b); - - /// Light Winking Face With Tongue icon - /// - /// https://fontawesome.com/icons/light_grin-tongue-wink?style=light - /// LOL, emoticon, face - static const IconData lightGrinTongueWink = const IconDataLight(0xf58b); - - /// Duotone Winking Face With Tongue icon - /// - /// https://fontawesome.com/icons/duotone_grin-tongue-wink?style=duotone - /// LOL, emoticon, face - static const IconDataDuotone duotoneGrinTongueWink = const IconDataDuotone( - 0xf58b, - secondary: const IconDataDuotone(0x10f58b), - ); - - /// Regular Grinning Winking Face icon - /// - /// https://fontawesome.com/icons/grin-wink?style=regular - /// emoticon, face, flirt, laugh, smile - static const IconData grinWink = const IconDataRegular(0xf58c); - - /// Solid Grinning Winking Face icon - /// - /// https://fontawesome.com/icons/grin-wink?style=solid - /// emoticon, face, flirt, laugh, smile - static const IconData solidGrinWink = const IconDataSolid(0xf58c); - - /// Light Grinning Winking Face icon - /// - /// https://fontawesome.com/icons/light_grin-wink?style=light - /// emoticon, face, flirt, laugh, smile - static const IconData lightGrinWink = const IconDataLight(0xf58c); - - /// Duotone Grinning Winking Face icon - /// - /// https://fontawesome.com/icons/duotone_grin-wink?style=duotone - /// emoticon, face, flirt, laugh, smile - static const IconDataDuotone duotoneGrinWink = const IconDataDuotone( - 0xf58c, - secondary: const IconDataDuotone(0x10f58c), - ); - - /// Regular Grip Horizontal icon - /// - /// https://fontawesome.com/icons/grip-horizontal?style=regular - /// affordance, drag, drop, grab, handle - static const IconData gripHorizontal = const IconDataRegular(0xf58d); - - /// Solid Grip Horizontal icon - /// - /// https://fontawesome.com/icons/grip-horizontal?style=solid - /// affordance, drag, drop, grab, handle - static const IconData solidGripHorizontal = const IconDataSolid(0xf58d); - - /// Light Grip Horizontal icon - /// - /// https://fontawesome.com/icons/light_grip-horizontal?style=light - /// affordance, drag, drop, grab, handle - static const IconData lightGripHorizontal = const IconDataLight(0xf58d); - - /// Duotone Grip Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_grip-horizontal?style=duotone - /// affordance, drag, drop, grab, handle - static const IconDataDuotone duotoneGripHorizontal = const IconDataDuotone( - 0xf58d, - secondary: const IconDataDuotone(0x10f58d), - ); - - /// Regular Grip Lines icon - /// - /// https://fontawesome.com/icons/grip-lines?style=regular - /// affordance, drag, drop, grab, handle - static const IconData gripLines = const IconDataRegular(0xf7a4); - - /// Solid Grip Lines icon - /// - /// https://fontawesome.com/icons/grip-lines?style=solid - /// affordance, drag, drop, grab, handle - static const IconData solidGripLines = const IconDataSolid(0xf7a4); - - /// Light Grip Lines icon - /// - /// https://fontawesome.com/icons/light_grip-lines?style=light - /// affordance, drag, drop, grab, handle - static const IconData lightGripLines = const IconDataLight(0xf7a4); - - /// Duotone Grip Lines icon - /// - /// https://fontawesome.com/icons/duotone_grip-lines?style=duotone - /// affordance, drag, drop, grab, handle - static const IconDataDuotone duotoneGripLines = const IconDataDuotone( - 0xf7a4, - secondary: const IconDataDuotone(0x10f7a4), - ); - - /// Regular Grip Lines Vertical icon - /// - /// https://fontawesome.com/icons/grip-lines-vertical?style=regular - /// affordance, drag, drop, grab, handle - static const IconData gripLinesVertical = const IconDataRegular(0xf7a5); - - /// Solid Grip Lines Vertical icon - /// - /// https://fontawesome.com/icons/grip-lines-vertical?style=solid - /// affordance, drag, drop, grab, handle - static const IconData solidGripLinesVertical = const IconDataSolid(0xf7a5); - - /// Light Grip Lines Vertical icon - /// - /// https://fontawesome.com/icons/light_grip-lines-vertical?style=light - /// affordance, drag, drop, grab, handle - static const IconData lightGripLinesVertical = const IconDataLight(0xf7a5); - - /// Duotone Grip Lines Vertical icon - /// - /// https://fontawesome.com/icons/duotone_grip-lines-vertical?style=duotone - /// affordance, drag, drop, grab, handle - static const IconDataDuotone duotoneGripLinesVertical = const IconDataDuotone( - 0xf7a5, - secondary: const IconDataDuotone(0x10f7a5), - ); - - /// Regular Grip Vertical icon - /// - /// https://fontawesome.com/icons/grip-vertical?style=regular - /// affordance, drag, drop, grab, handle - static const IconData gripVertical = const IconDataRegular(0xf58e); - - /// Solid Grip Vertical icon - /// - /// https://fontawesome.com/icons/grip-vertical?style=solid - /// affordance, drag, drop, grab, handle - static const IconData solidGripVertical = const IconDataSolid(0xf58e); - - /// Light Grip Vertical icon - /// - /// https://fontawesome.com/icons/light_grip-vertical?style=light - /// affordance, drag, drop, grab, handle - static const IconData lightGripVertical = const IconDataLight(0xf58e); - - /// Duotone Grip Vertical icon - /// - /// https://fontawesome.com/icons/duotone_grip-vertical?style=duotone - /// affordance, drag, drop, grab, handle - static const IconDataDuotone duotoneGripVertical = const IconDataDuotone( - 0xf58e, - secondary: const IconDataDuotone(0x10f58e), - ); - - /// Brands Gripfire, Inc. icon - /// - /// https://fontawesome.com/icons/gripfire?style=brands - static const IconData gripfire = const IconDataBrands(0xf3ac); - - /// Brands Grunt icon - /// - /// https://fontawesome.com/icons/grunt?style=brands - static const IconData grunt = const IconDataBrands(0xf3ad); - - /// Brands Guilded icon - /// - /// https://fontawesome.com/icons/guilded?style=brands - static const IconData guilded = const IconDataBrands(0xe07e); - - /// Regular Guitar icon - /// - /// https://fontawesome.com/icons/guitar?style=regular - /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData guitar = const IconDataRegular(0xf7a6); - - /// Solid Guitar icon - /// - /// https://fontawesome.com/icons/guitar?style=solid - /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData solidGuitar = const IconDataSolid(0xf7a6); - - /// Light Guitar icon - /// - /// https://fontawesome.com/icons/light_guitar?style=light - /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitar = const IconDataLight(0xf7a6); - - /// Duotone Guitar icon - /// - /// https://fontawesome.com/icons/duotone_guitar?style=duotone - /// acoustic, instrument, music, rock, rock and roll, song, strings - static const IconDataDuotone duotoneGuitar = const IconDataDuotone( - 0xf7a6, - secondary: const IconDataDuotone(0x10f7a6), - ); - - /// Regular Guitar Electric icon - /// - /// https://fontawesome.com/icons/guitar-electric?style=regular - /// axe, instrument, music, rock, rock and roll, song, strings - static const IconData guitarElectric = const IconDataRegular(0xf8be); - - /// Solid Guitar Electric icon - /// - /// https://fontawesome.com/icons/guitar-electric?style=solid - /// axe, instrument, music, rock, rock and roll, song, strings - static const IconData solidGuitarElectric = const IconDataSolid(0xf8be); - - /// Light Guitar Electric icon - /// - /// https://fontawesome.com/icons/light_guitar-electric?style=light - /// axe, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitarElectric = const IconDataLight(0xf8be); - - /// Duotone Guitar Electric icon - /// - /// https://fontawesome.com/icons/duotone_guitar-electric?style=duotone - /// axe, instrument, music, rock, rock and roll, song, strings - static const IconDataDuotone duotoneGuitarElectric = const IconDataDuotone( - 0xf8be, - secondary: const IconDataDuotone(0x10f8be), - ); - - /// 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 = const IconDataRegular(0xf8bf); - - /// 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 = const IconDataSolid(0xf8bf); - - /// Light Guitars icon - /// - /// https://fontawesome.com/icons/light_guitars?style=light - /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconData lightGuitars = const IconDataLight(0xf8bf); - - /// Duotone Guitars icon - /// - /// https://fontawesome.com/icons/duotone_guitars?style=duotone - /// acoustic, axes, electric, instrument, music, rock, rock and roll, song, strings - static const IconDataDuotone duotoneGuitars = const IconDataDuotone( - 0xf8bf, - secondary: const IconDataDuotone(0x10f8bf), - ); - - /// Brands Gulp icon - /// - /// https://fontawesome.com/icons/gulp?style=brands - static const IconData gulp = const IconDataBrands(0xf3ae); - - /// Regular H Square icon - /// - /// https://fontawesome.com/icons/h-square?style=regular - /// directions, emergency, hospital, hotel, map - static const IconData hSquare = const IconDataRegular(0xf0fd); - - /// Solid H Square icon - /// - /// https://fontawesome.com/icons/h-square?style=solid - /// directions, emergency, hospital, hotel, map - static const IconData solidHSquare = const IconDataSolid(0xf0fd); - - /// Light H Square icon - /// - /// https://fontawesome.com/icons/light_h-square?style=light - /// directions, emergency, hospital, hotel, map - static const IconData lightHSquare = const IconDataLight(0xf0fd); - - /// Duotone H Square icon - /// - /// https://fontawesome.com/icons/duotone_h-square?style=duotone - /// directions, emergency, hospital, hotel, map - static const IconDataDuotone duotoneHSquare = const IconDataDuotone( - 0xf0fd, - secondary: const IconDataDuotone(0x10f0fd), - ); - - /// Regular H1 Heading icon - /// - /// https://fontawesome.com/icons/h1?style=regular - /// format, header, text, title - static const IconData h1 = const IconDataRegular(0xf313); - - /// Solid H1 Heading icon - /// - /// https://fontawesome.com/icons/h1?style=solid - /// format, header, text, title - static const IconData solidH1 = const IconDataSolid(0xf313); - - /// Light H1 Heading icon - /// - /// https://fontawesome.com/icons/light_h1?style=light - /// format, header, text, title - static const IconData lightH1 = const IconDataLight(0xf313); - - /// Duotone H1 Heading icon - /// - /// https://fontawesome.com/icons/duotone_h1?style=duotone - /// format, header, text, title - static const IconDataDuotone duotoneH1 = const IconDataDuotone( - 0xf313, - secondary: const IconDataDuotone(0x10f313), - ); - - /// Regular H2 Heading icon - /// - /// https://fontawesome.com/icons/h2?style=regular - /// format, header, text, title - static const IconData h2 = const IconDataRegular(0xf314); - - /// Solid H2 Heading icon - /// - /// https://fontawesome.com/icons/h2?style=solid - /// format, header, text, title - static const IconData solidH2 = const IconDataSolid(0xf314); - - /// Light H2 Heading icon - /// - /// https://fontawesome.com/icons/light_h2?style=light - /// format, header, text, title - static const IconData lightH2 = const IconDataLight(0xf314); - - /// Duotone H2 Heading icon - /// - /// https://fontawesome.com/icons/duotone_h2?style=duotone - /// format, header, text, title - static const IconDataDuotone duotoneH2 = const IconDataDuotone( - 0xf314, - secondary: const IconDataDuotone(0x10f314), - ); - - /// Regular H3 Heading icon - /// - /// https://fontawesome.com/icons/h3?style=regular - /// format, header, text, title - static const IconData h3 = const IconDataRegular(0xf315); - - /// Solid H3 Heading icon - /// - /// https://fontawesome.com/icons/h3?style=solid - /// format, header, text, title - static const IconData solidH3 = const IconDataSolid(0xf315); - - /// Light H3 Heading icon - /// - /// https://fontawesome.com/icons/light_h3?style=light - /// format, header, text, title - static const IconData lightH3 = const IconDataLight(0xf315); - - /// Duotone H3 Heading icon - /// - /// https://fontawesome.com/icons/duotone_h3?style=duotone - /// format, header, text, title - static const IconDataDuotone duotoneH3 = const IconDataDuotone( - 0xf315, - secondary: const IconDataDuotone(0x10f315), - ); - - /// Regular H4 icon - /// - /// https://fontawesome.com/icons/h4?style=regular - /// format, header, text, title - static const IconData h4 = const IconDataRegular(0xf86a); - - /// Solid H4 icon - /// - /// https://fontawesome.com/icons/h4?style=solid - /// format, header, text, title - static const IconData solidH4 = const IconDataSolid(0xf86a); - - /// Light H4 icon - /// - /// https://fontawesome.com/icons/light_h4?style=light - /// format, header, text, title - static const IconData lightH4 = const IconDataLight(0xf86a); - - /// Duotone H4 icon - /// - /// https://fontawesome.com/icons/duotone_h4?style=duotone - /// format, header, text, title - static const IconDataDuotone duotoneH4 = const IconDataDuotone( - 0xf86a, - secondary: const IconDataDuotone(0x10f86a), - ); - - /// Brands Hacker News icon - /// - /// https://fontawesome.com/icons/hacker-news?style=brands - static const IconData hackerNews = const IconDataBrands(0xf1d4); - - /// Brands Hacker News Square icon - /// - /// https://fontawesome.com/icons/hacker-news-square?style=brands - static const IconData hackerNewsSquare = const IconDataBrands(0xf3af); - - /// Brands Hackerrank icon - /// - /// https://fontawesome.com/icons/hackerrank?style=brands - static const IconData hackerrank = const IconDataBrands(0xf5f7); - - /// Regular Hamburger icon - /// - /// https://fontawesome.com/icons/hamburger?style=regular - /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData hamburger = const IconDataRegular(0xf805); - - /// Solid Hamburger icon - /// - /// https://fontawesome.com/icons/hamburger?style=solid - /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData solidHamburger = const IconDataSolid(0xf805); - - /// Light Hamburger icon - /// - /// https://fontawesome.com/icons/light_hamburger?style=light - /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconData lightHamburger = const IconDataLight(0xf805); - - /// Duotone Hamburger icon - /// - /// https://fontawesome.com/icons/duotone_hamburger?style=duotone - /// bacon, beef, burger, burger king, cheeseburger, fast food, grill, ground beef, mcdonalds, sandwich - static const IconDataDuotone duotoneHamburger = const IconDataDuotone( - 0xf805, - secondary: const IconDataDuotone(0x10f805), - ); - - /// Regular Hammer icon - /// - /// https://fontawesome.com/icons/hammer?style=regular - /// admin, fix, repair, settings, tool - static const IconData hammer = const IconDataRegular(0xf6e3); - - /// Solid Hammer icon - /// - /// https://fontawesome.com/icons/hammer?style=solid - /// admin, fix, repair, settings, tool - static const IconData solidHammer = const IconDataSolid(0xf6e3); - - /// Light Hammer icon - /// - /// https://fontawesome.com/icons/light_hammer?style=light - /// admin, fix, repair, settings, tool - static const IconData lightHammer = const IconDataLight(0xf6e3); - - /// Duotone Hammer icon - /// - /// https://fontawesome.com/icons/duotone_hammer?style=duotone - /// admin, fix, repair, settings, tool - static const IconDataDuotone duotoneHammer = const IconDataDuotone( - 0xf6e3, - secondary: const IconDataDuotone(0x10f6e3), - ); - - /// 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 = const IconDataRegular(0xf6e4); - - /// 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 = const IconDataSolid(0xf6e4); - - /// Light Hammer War icon - /// - /// https://fontawesome.com/icons/light_hammer-war?style=light - /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconData lightHammerWar = const IconDataLight(0xf6e4); - - /// Duotone Hammer War icon - /// - /// https://fontawesome.com/icons/duotone_hammer-war?style=duotone - /// Dungeons & Dragons, cleric, d&d, dnd, dwarf, fantasy, melee attack, weapon - static const IconDataDuotone duotoneHammerWar = const IconDataDuotone( - 0xf6e4, - secondary: const IconDataDuotone(0x10f6e4), - ); - - /// Regular Hamsa icon - /// - /// https://fontawesome.com/icons/hamsa?style=regular - /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData hamsa = const IconDataRegular(0xf665); - - /// Solid Hamsa icon - /// - /// https://fontawesome.com/icons/hamsa?style=solid - /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData solidHamsa = const IconDataSolid(0xf665); - - /// Light Hamsa icon - /// - /// https://fontawesome.com/icons/light_hamsa?style=light - /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconData lightHamsa = const IconDataLight(0xf665); - - /// Duotone Hamsa icon - /// - /// https://fontawesome.com/icons/duotone_hamsa?style=duotone - /// amulet, christianity, islam, jewish, judaism, muslim, protection - static const IconDataDuotone duotoneHamsa = const IconDataDuotone( - 0xf665, - secondary: const IconDataDuotone(0x10f665), - ); - - /// Regular Hand with Heart icon - /// - /// https://fontawesome.com/icons/hand-heart?style=regular - /// care, charity, donate, help - static const IconData handHeart = const IconDataRegular(0xf4bc); - - /// Solid Hand with Heart icon - /// - /// https://fontawesome.com/icons/hand-heart?style=solid - /// care, charity, donate, help - static const IconData solidHandHeart = const IconDataSolid(0xf4bc); - - /// Light Hand with Heart icon - /// - /// https://fontawesome.com/icons/light_hand-heart?style=light - /// care, charity, donate, help - static const IconData lightHandHeart = const IconDataLight(0xf4bc); - - /// Duotone Hand with Heart icon - /// - /// https://fontawesome.com/icons/duotone_hand-heart?style=duotone - /// care, charity, donate, help - static const IconDataDuotone duotoneHandHeart = const IconDataDuotone( - 0xf4bc, - secondary: const IconDataDuotone(0x10f4bc), - ); - - /// Regular Hand Holding icon - /// - /// https://fontawesome.com/icons/hand-holding?style=regular - /// carry, lift - static const IconData handHolding = const IconDataRegular(0xf4bd); - - /// Solid Hand Holding icon - /// - /// https://fontawesome.com/icons/hand-holding?style=solid - /// carry, lift - static const IconData solidHandHolding = const IconDataSolid(0xf4bd); - - /// Light Hand Holding icon - /// - /// https://fontawesome.com/icons/light_hand-holding?style=light - /// carry, lift - static const IconData lightHandHolding = const IconDataLight(0xf4bd); - - /// Duotone Hand Holding icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding?style=duotone - /// carry, lift - static const IconDataDuotone duotoneHandHolding = const IconDataDuotone( - 0xf4bd, - secondary: const IconDataDuotone(0x10f4bd), - ); - - /// Regular Hand Holding Box icon - /// - /// https://fontawesome.com/icons/hand-holding-box?style=regular - /// carry, gift, handling, lift, package - static const IconData handHoldingBox = const IconDataRegular(0xf47b); - - /// Solid Hand Holding Box icon - /// - /// https://fontawesome.com/icons/hand-holding-box?style=solid - /// carry, gift, handling, lift, package - static const IconData solidHandHoldingBox = const IconDataSolid(0xf47b); - - /// Light Hand Holding Box icon - /// - /// https://fontawesome.com/icons/light_hand-holding-box?style=light - /// carry, gift, handling, lift, package - static const IconData lightHandHoldingBox = const IconDataLight(0xf47b); - - /// Duotone Hand Holding Box icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-box?style=duotone - /// carry, gift, handling, lift, package - static const IconDataDuotone duotoneHandHoldingBox = const IconDataDuotone( - 0xf47b, - secondary: const IconDataDuotone(0x10f47b), - ); - - /// Regular Hand Holding Heart icon - /// - /// https://fontawesome.com/icons/hand-holding-heart?style=regular - /// carry, charity, gift, lift, package - static const IconData handHoldingHeart = const IconDataRegular(0xf4be); - - /// Solid Hand Holding Heart icon - /// - /// https://fontawesome.com/icons/hand-holding-heart?style=solid - /// carry, charity, gift, lift, package - static const IconData solidHandHoldingHeart = const IconDataSolid(0xf4be); - - /// Light Hand Holding Heart icon - /// - /// https://fontawesome.com/icons/light_hand-holding-heart?style=light - /// carry, charity, gift, lift, package - static const IconData lightHandHoldingHeart = const IconDataLight(0xf4be); - - /// Duotone Hand Holding Heart icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-heart?style=duotone - /// carry, charity, gift, lift, package - static const IconDataDuotone duotoneHandHoldingHeart = const IconDataDuotone( - 0xf4be, - secondary: const IconDataDuotone(0x10f4be), - ); - - /// 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 = const IconDataRegular(0xf6e5); - - /// 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 = const IconDataSolid(0xf6e5); - - /// Light Hand Holding-magic icon - /// - /// https://fontawesome.com/icons/light_hand-holding-magic?style=light - /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconData lightHandHoldingMagic = const IconDataLight(0xf6e5); - - /// Duotone Hand Holding-magic icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-magic?style=duotone - /// Dungeons & Dragons, carry, cast, d&d, dnd, fantasy, lift, mage, spell, witch, wizard - static const IconDataDuotone duotoneHandHoldingMagic = const IconDataDuotone( - 0xf6e5, - secondary: const IconDataDuotone(0x10f6e5), - ); - - /// Regular Hand Holding Medical Cross icon - /// - /// https://fontawesome.com/icons/hand-holding-medical?style=regular - /// care, covid-19, donate, help - static const IconData handHoldingMedical = const IconDataRegular(0xe05c); - - /// Light Hand Holding Medical Cross icon - /// - /// https://fontawesome.com/icons/light_hand-holding-medical?style=light - /// care, covid-19, donate, help - static const IconData lightHandHoldingMedical = const IconDataLight(0xe05c); - - /// Solid Hand Holding Medical Cross icon - /// - /// https://fontawesome.com/icons/hand-holding-medical?style=solid - /// care, covid-19, donate, help - static const IconData solidHandHoldingMedical = const IconDataSolid(0xe05c); - - /// Duotone Hand Holding Medical Cross icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-medical?style=duotone - /// care, covid-19, donate, help - static const IconDataDuotone duotoneHandHoldingMedical = - const IconDataDuotone( - 0xe05c, - secondary: const IconDataDuotone(0x10e05c), - ); - - /// Regular Hand Holding Seedling icon - /// - /// https://fontawesome.com/icons/hand-holding-seedling?style=regular - /// carry, grow, lift, plant - static const IconData handHoldingSeedling = const IconDataRegular(0xf4bf); - - /// Solid Hand Holding Seedling icon - /// - /// https://fontawesome.com/icons/hand-holding-seedling?style=solid - /// carry, grow, lift, plant - static const IconData solidHandHoldingSeedling = const IconDataSolid(0xf4bf); - - /// Light Hand Holding Seedling icon - /// - /// https://fontawesome.com/icons/light_hand-holding-seedling?style=light - /// carry, grow, lift, plant - static const IconData lightHandHoldingSeedling = const IconDataLight(0xf4bf); - - /// Duotone Hand Holding Seedling icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-seedling?style=duotone - /// carry, grow, lift, plant - static const IconDataDuotone duotoneHandHoldingSeedling = - const IconDataDuotone( - 0xf4bf, - secondary: const IconDataDuotone(0x10f4bf), - ); - - /// Regular Hand Holding US Dollar icon - /// - /// https://fontawesome.com/icons/hand-holding-usd?style=regular - /// $, carry, dollar sign, donation, giving, lift, money, price - static const IconData handHoldingUsd = const IconDataRegular(0xf4c0); - - /// Solid Hand Holding US Dollar icon - /// - /// https://fontawesome.com/icons/hand-holding-usd?style=solid - /// $, carry, dollar sign, donation, giving, lift, money, price - static const IconData solidHandHoldingUsd = const IconDataSolid(0xf4c0); - - /// Light Hand Holding US Dollar icon - /// - /// https://fontawesome.com/icons/light_hand-holding-usd?style=light - /// $, carry, dollar sign, donation, giving, lift, money, price - static const IconData lightHandHoldingUsd = const IconDataLight(0xf4c0); - - /// Duotone Hand Holding US Dollar icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-usd?style=duotone - /// $, carry, dollar sign, donation, giving, lift, money, price - static const IconDataDuotone duotoneHandHoldingUsd = const IconDataDuotone( - 0xf4c0, - secondary: const IconDataDuotone(0x10f4c0), - ); - - /// Regular Hand Holding Water icon - /// - /// https://fontawesome.com/icons/hand-holding-water?style=regular - /// carry, covid-19, drought, grow, lift - static const IconData handHoldingWater = const IconDataRegular(0xf4c1); - - /// Solid Hand Holding Water icon - /// - /// https://fontawesome.com/icons/hand-holding-water?style=solid - /// carry, covid-19, drought, grow, lift - static const IconData solidHandHoldingWater = const IconDataSolid(0xf4c1); - - /// Light Hand Holding Water icon - /// - /// https://fontawesome.com/icons/light_hand-holding-water?style=light - /// carry, covid-19, drought, grow, lift - static const IconData lightHandHoldingWater = const IconDataLight(0xf4c1); - - /// Duotone Hand Holding Water icon - /// - /// https://fontawesome.com/icons/duotone_hand-holding-water?style=duotone - /// carry, covid-19, drought, grow, lift - static const IconDataDuotone duotoneHandHoldingWater = const IconDataDuotone( - 0xf4c1, - secondary: const IconDataDuotone(0x10f4c1), - ); - - /// Regular Lizard (Hand) icon - /// - /// https://fontawesome.com/icons/hand-lizard?style=regular - /// game, roshambo - static const IconData handLizard = const IconDataRegular(0xf258); - - /// Solid Lizard (Hand) icon - /// - /// https://fontawesome.com/icons/hand-lizard?style=solid - /// game, roshambo - static const IconData solidHandLizard = const IconDataSolid(0xf258); - - /// Light Lizard (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-lizard?style=light - /// game, roshambo - static const IconData lightHandLizard = const IconDataLight(0xf258); - - /// Duotone Lizard (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-lizard?style=duotone - /// game, roshambo - static const IconDataDuotone duotoneHandLizard = const IconDataDuotone( - 0xf258, - secondary: const IconDataDuotone(0x10f258), - ); - - /// Regular Hand with Middle Finger Raised icon - /// - /// https://fontawesome.com/icons/hand-middle-finger?style=regular - /// flip the bird, gesture, hate, rude - static const IconData handMiddleFinger = const IconDataRegular(0xf806); - - /// Solid Hand with Middle Finger Raised icon - /// - /// https://fontawesome.com/icons/hand-middle-finger?style=solid - /// flip the bird, gesture, hate, rude - static const IconData solidHandMiddleFinger = const IconDataSolid(0xf806); - - /// Light Hand with Middle Finger Raised icon - /// - /// https://fontawesome.com/icons/light_hand-middle-finger?style=light - /// flip the bird, gesture, hate, rude - static const IconData lightHandMiddleFinger = const IconDataLight(0xf806); - - /// Duotone Hand with Middle Finger Raised icon - /// - /// https://fontawesome.com/icons/duotone_hand-middle-finger?style=duotone - /// flip the bird, gesture, hate, rude - static const IconDataDuotone duotoneHandMiddleFinger = const IconDataDuotone( - 0xf806, - secondary: const IconDataDuotone(0x10f806), - ); - - /// Regular Paper (Hand) icon - /// - /// https://fontawesome.com/icons/hand-paper?style=regular - /// game, halt, roshambo, stop - static const IconData handPaper = const IconDataRegular(0xf256); - - /// Solid Paper (Hand) icon - /// - /// https://fontawesome.com/icons/hand-paper?style=solid - /// game, halt, roshambo, stop - static const IconData solidHandPaper = const IconDataSolid(0xf256); - - /// Light Paper (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-paper?style=light - /// game, halt, roshambo, stop - static const IconData lightHandPaper = const IconDataLight(0xf256); - - /// Duotone Paper (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-paper?style=duotone - /// game, halt, roshambo, stop - static const IconDataDuotone duotoneHandPaper = const IconDataDuotone( - 0xf256, - secondary: const IconDataDuotone(0x10f256), - ); - - /// Regular Peace (Hand) icon - /// - /// https://fontawesome.com/icons/hand-peace?style=regular - /// rest, truce - static const IconData handPeace = const IconDataRegular(0xf25b); - - /// Solid Peace (Hand) icon - /// - /// https://fontawesome.com/icons/hand-peace?style=solid - /// rest, truce - static const IconData solidHandPeace = const IconDataSolid(0xf25b); - - /// Light Peace (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-peace?style=light - /// rest, truce - static const IconData lightHandPeace = const IconDataLight(0xf25b); - - /// Duotone Peace (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-peace?style=duotone - /// rest, truce - static const IconDataDuotone duotoneHandPeace = const IconDataDuotone( - 0xf25b, - secondary: const IconDataDuotone(0x10f25b), - ); - - /// Regular Hand Pointing Down icon - /// - /// https://fontawesome.com/icons/hand-point-down?style=regular - /// finger, hand-o-down, point - static const IconData handPointDown = const IconDataRegular(0xf0a7); - - /// Solid Hand Pointing Down icon - /// - /// https://fontawesome.com/icons/hand-point-down?style=solid - /// finger, hand-o-down, point - static const IconData solidHandPointDown = const IconDataSolid(0xf0a7); - - /// Light Hand Pointing Down icon - /// - /// https://fontawesome.com/icons/light_hand-point-down?style=light - /// finger, hand-o-down, point - static const IconData lightHandPointDown = const IconDataLight(0xf0a7); - - /// Duotone Hand Pointing Down icon - /// - /// https://fontawesome.com/icons/duotone_hand-point-down?style=duotone - /// finger, hand-o-down, point - static const IconDataDuotone duotoneHandPointDown = const IconDataDuotone( - 0xf0a7, - secondary: const IconDataDuotone(0x10f0a7), - ); - - /// Regular Hand Pointing Left icon - /// - /// https://fontawesome.com/icons/hand-point-left?style=regular - /// back, finger, hand-o-left, left, point, previous - static const IconData handPointLeft = const IconDataRegular(0xf0a5); - - /// Solid Hand Pointing Left icon - /// - /// https://fontawesome.com/icons/hand-point-left?style=solid - /// back, finger, hand-o-left, left, point, previous - static const IconData solidHandPointLeft = const IconDataSolid(0xf0a5); - - /// Light Hand Pointing Left icon - /// - /// https://fontawesome.com/icons/light_hand-point-left?style=light - /// back, finger, hand-o-left, left, point, previous - static const IconData lightHandPointLeft = const IconDataLight(0xf0a5); - - /// Duotone Hand Pointing Left icon - /// - /// https://fontawesome.com/icons/duotone_hand-point-left?style=duotone - /// back, finger, hand-o-left, left, point, previous - static const IconDataDuotone duotoneHandPointLeft = const IconDataDuotone( - 0xf0a5, - secondary: const IconDataDuotone(0x10f0a5), - ); - - /// Regular Hand Pointing Right icon - /// - /// https://fontawesome.com/icons/hand-point-right?style=regular - /// finger, forward, hand-o-right, next, point, right - static const IconData handPointRight = const IconDataRegular(0xf0a4); - - /// Solid Hand Pointing Right icon - /// - /// https://fontawesome.com/icons/hand-point-right?style=solid - /// finger, forward, hand-o-right, next, point, right - static const IconData solidHandPointRight = const IconDataSolid(0xf0a4); - - /// Light Hand Pointing Right icon - /// - /// https://fontawesome.com/icons/light_hand-point-right?style=light - /// finger, forward, hand-o-right, next, point, right - static const IconData lightHandPointRight = const IconDataLight(0xf0a4); - - /// Duotone Hand Pointing Right icon - /// - /// https://fontawesome.com/icons/duotone_hand-point-right?style=duotone - /// finger, forward, hand-o-right, next, point, right - static const IconDataDuotone duotoneHandPointRight = const IconDataDuotone( - 0xf0a4, - secondary: const IconDataDuotone(0x10f0a4), - ); - - /// Regular Hand Pointing Up icon - /// - /// https://fontawesome.com/icons/hand-point-up?style=regular - /// finger, hand-o-up, point - static const IconData handPointUp = const IconDataRegular(0xf0a6); - - /// Solid Hand Pointing Up icon - /// - /// https://fontawesome.com/icons/hand-point-up?style=solid - /// finger, hand-o-up, point - static const IconData solidHandPointUp = const IconDataSolid(0xf0a6); - - /// Light Hand Pointing Up icon - /// - /// https://fontawesome.com/icons/light_hand-point-up?style=light - /// finger, hand-o-up, point - static const IconData lightHandPointUp = const IconDataLight(0xf0a6); - - /// Duotone Hand Pointing Up icon - /// - /// https://fontawesome.com/icons/duotone_hand-point-up?style=duotone - /// finger, hand-o-up, point - static const IconDataDuotone duotoneHandPointUp = const IconDataDuotone( - 0xf0a6, - secondary: const IconDataDuotone(0x10f0a6), - ); - - /// Regular Pointer (Hand) icon - /// - /// https://fontawesome.com/icons/hand-pointer?style=regular - /// arrow, cursor, select - static const IconData handPointer = const IconDataRegular(0xf25a); - - /// Solid Pointer (Hand) icon - /// - /// https://fontawesome.com/icons/hand-pointer?style=solid - /// arrow, cursor, select - static const IconData solidHandPointer = const IconDataSolid(0xf25a); - - /// Light Pointer (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-pointer?style=light - /// arrow, cursor, select - static const IconData lightHandPointer = const IconDataLight(0xf25a); - - /// Duotone Pointer (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-pointer?style=duotone - /// arrow, cursor, select - static const IconDataDuotone duotoneHandPointer = const IconDataDuotone( - 0xf25a, - secondary: const IconDataDuotone(0x10f25a), - ); - - /// Regular Hand Receiving icon - /// - /// https://fontawesome.com/icons/hand-receiving?style=regular - /// carry, gift, handling, package, shipping - static const IconData handReceiving = const IconDataRegular(0xf47c); - - /// Solid Hand Receiving icon - /// - /// https://fontawesome.com/icons/hand-receiving?style=solid - /// carry, gift, handling, package, shipping - static const IconData solidHandReceiving = const IconDataSolid(0xf47c); - - /// Light Hand Receiving icon - /// - /// https://fontawesome.com/icons/light_hand-receiving?style=light - /// carry, gift, handling, package, shipping - static const IconData lightHandReceiving = const IconDataLight(0xf47c); - - /// Duotone Hand Receiving icon - /// - /// https://fontawesome.com/icons/duotone_hand-receiving?style=duotone - /// carry, gift, handling, package, shipping - static const IconDataDuotone duotoneHandReceiving = const IconDataDuotone( - 0xf47c, - secondary: const IconDataDuotone(0x10f47c), - ); - - /// Regular Rock (Hand) icon - /// - /// https://fontawesome.com/icons/hand-rock?style=regular - /// fist, game, roshambo - static const IconData handRock = const IconDataRegular(0xf255); - - /// Solid Rock (Hand) icon - /// - /// https://fontawesome.com/icons/hand-rock?style=solid - /// fist, game, roshambo - static const IconData solidHandRock = const IconDataSolid(0xf255); - - /// Light Rock (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-rock?style=light - /// fist, game, roshambo - static const IconData lightHandRock = const IconDataLight(0xf255); - - /// Duotone Rock (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-rock?style=duotone - /// fist, game, roshambo - static const IconDataDuotone duotoneHandRock = const IconDataDuotone( - 0xf255, - secondary: const IconDataDuotone(0x10f255), - ); - - /// Regular Scissors (Hand) icon - /// - /// https://fontawesome.com/icons/hand-scissors?style=regular - /// cut, game, roshambo - static const IconData handScissors = const IconDataRegular(0xf257); - - /// Solid Scissors (Hand) icon - /// - /// https://fontawesome.com/icons/hand-scissors?style=solid - /// cut, game, roshambo - static const IconData solidHandScissors = const IconDataSolid(0xf257); - - /// Light Scissors (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-scissors?style=light - /// cut, game, roshambo - static const IconData lightHandScissors = const IconDataLight(0xf257); - - /// Duotone Scissors (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-scissors?style=duotone - /// cut, game, roshambo - static const IconDataDuotone duotoneHandScissors = const IconDataDuotone( - 0xf257, - secondary: const IconDataDuotone(0x10f257), - ); - - /// Regular Hand Sparkles icon - /// - /// https://fontawesome.com/icons/hand-sparkles?style=regular - /// clean, covid-19, hygiene, magic, soap, wash - static const IconData handSparkles = const IconDataRegular(0xe05d); - - /// Light Hand Sparkles icon - /// - /// https://fontawesome.com/icons/light_hand-sparkles?style=light - /// clean, covid-19, hygiene, magic, soap, wash - static const IconData lightHandSparkles = const IconDataLight(0xe05d); - - /// Solid Hand Sparkles icon - /// - /// https://fontawesome.com/icons/hand-sparkles?style=solid - /// clean, covid-19, hygiene, magic, soap, wash - static const IconData solidHandSparkles = const IconDataSolid(0xe05d); - - /// Duotone Hand Sparkles icon - /// - /// https://fontawesome.com/icons/duotone_hand-sparkles?style=duotone - /// clean, covid-19, hygiene, magic, soap, wash - static const IconDataDuotone duotoneHandSparkles = const IconDataDuotone( - 0xe05d, - secondary: const IconDataDuotone(0x10e05d), - ); - - /// Regular Spock (Hand) icon - /// - /// https://fontawesome.com/icons/hand-spock?style=regular - /// live long, prosper, salute, star trek, vulcan - static const IconData handSpock = const IconDataRegular(0xf259); - - /// Solid Spock (Hand) icon - /// - /// https://fontawesome.com/icons/hand-spock?style=solid - /// live long, prosper, salute, star trek, vulcan - static const IconData solidHandSpock = const IconDataSolid(0xf259); - - /// Light Spock (Hand) icon - /// - /// https://fontawesome.com/icons/light_hand-spock?style=light - /// live long, prosper, salute, star trek, vulcan - static const IconData lightHandSpock = const IconDataLight(0xf259); - - /// Duotone Spock (Hand) icon - /// - /// https://fontawesome.com/icons/duotone_hand-spock?style=duotone - /// live long, prosper, salute, star trek, vulcan - static const IconDataDuotone duotoneHandSpock = const IconDataDuotone( - 0xf259, - secondary: const IconDataDuotone(0x10f259), - ); - - /// Regular Hands icon - /// - /// https://fontawesome.com/icons/hands?style=regular - /// carry, hold, lift - static const IconData hands = const IconDataRegular(0xf4c2); - - /// Solid Hands icon - /// - /// https://fontawesome.com/icons/hands?style=solid - /// carry, hold, lift - static const IconData solidHands = const IconDataSolid(0xf4c2); - - /// Light Hands icon - /// - /// https://fontawesome.com/icons/light_hands?style=light - /// carry, hold, lift - static const IconData lightHands = const IconDataLight(0xf4c2); - - /// Duotone Hands icon - /// - /// https://fontawesome.com/icons/duotone_hands?style=duotone - /// carry, hold, lift - static const IconDataDuotone duotoneHands = const IconDataDuotone( - 0xf4c2, - secondary: const IconDataDuotone(0x10f4c2), - ); - - /// Regular Hands Heart icon - /// - /// https://fontawesome.com/icons/hands-heart?style=regular - /// carry, gift, help, hold, lift - static const IconData handsHeart = const IconDataRegular(0xf4c3); - - /// Solid Hands Heart icon - /// - /// https://fontawesome.com/icons/hands-heart?style=solid - /// carry, gift, help, hold, lift - static const IconData solidHandsHeart = const IconDataSolid(0xf4c3); - - /// Light Hands Heart icon - /// - /// https://fontawesome.com/icons/light_hands-heart?style=light - /// carry, gift, help, hold, lift - static const IconData lightHandsHeart = const IconDataLight(0xf4c3); - - /// Duotone Hands Heart icon - /// - /// https://fontawesome.com/icons/duotone_hands-heart?style=duotone - /// carry, gift, help, hold, lift - static const IconDataDuotone duotoneHandsHeart = const IconDataDuotone( - 0xf4c3, - secondary: const IconDataDuotone(0x10f4c3), - ); - - /// Regular Helping Hands icon - /// - /// https://fontawesome.com/icons/hands-helping?style=regular - /// aid, assistance, handshake, partnership, volunteering - static const IconData handsHelping = const IconDataRegular(0xf4c4); - - /// Solid Helping Hands icon - /// - /// https://fontawesome.com/icons/hands-helping?style=solid - /// aid, assistance, handshake, partnership, volunteering - static const IconData solidHandsHelping = const IconDataSolid(0xf4c4); - - /// Light Helping Hands icon - /// - /// https://fontawesome.com/icons/light_hands-helping?style=light - /// aid, assistance, handshake, partnership, volunteering - static const IconData lightHandsHelping = const IconDataLight(0xf4c4); - - /// Duotone Helping Hands icon - /// - /// https://fontawesome.com/icons/duotone_hands-helping?style=duotone - /// aid, assistance, handshake, partnership, volunteering - static const IconDataDuotone duotoneHandsHelping = const IconDataDuotone( - 0xf4c4, - secondary: const IconDataDuotone(0x10f4c4), - ); - - /// Regular Hands with US Dollar icon - /// - /// https://fontawesome.com/icons/hands-usd?style=regular - /// $, carry, dollar sign, donation, giving, hold, money, price, usd - static const IconData handsUsd = const IconDataRegular(0xf4c5); - - /// Solid Hands with US Dollar icon - /// - /// https://fontawesome.com/icons/hands-usd?style=solid - /// $, carry, dollar sign, donation, giving, hold, money, price, usd - static const IconData solidHandsUsd = const IconDataSolid(0xf4c5); - - /// Light Hands with US Dollar icon - /// - /// https://fontawesome.com/icons/light_hands-usd?style=light - /// $, carry, dollar sign, donation, giving, hold, money, price, usd - static const IconData lightHandsUsd = const IconDataLight(0xf4c5); - - /// Duotone Hands with US Dollar icon - /// - /// https://fontawesome.com/icons/duotone_hands-usd?style=duotone - /// $, carry, dollar sign, donation, giving, hold, money, price, usd - static const IconDataDuotone duotoneHandsUsd = const IconDataDuotone( - 0xf4c5, - secondary: const IconDataDuotone(0x10f4c5), - ); - - /// Regular Hands Wash icon - /// - /// https://fontawesome.com/icons/hands-wash?style=regular - /// covid-19, hygiene, soap, wash - static const IconData handsWash = const IconDataRegular(0xe05e); - - /// Light Hands Wash icon - /// - /// https://fontawesome.com/icons/light_hands-wash?style=light - /// covid-19, hygiene, soap, wash - static const IconData lightHandsWash = const IconDataLight(0xe05e); - - /// Solid Hands Wash icon - /// - /// https://fontawesome.com/icons/hands-wash?style=solid - /// covid-19, hygiene, soap, wash - static const IconData solidHandsWash = const IconDataSolid(0xe05e); - - /// Duotone Hands Wash icon - /// - /// https://fontawesome.com/icons/duotone_hands-wash?style=duotone - /// covid-19, hygiene, soap, wash - static const IconDataDuotone duotoneHandsWash = const IconDataDuotone( - 0xe05e, - secondary: const IconDataDuotone(0x10e05e), - ); - - /// Regular Handshake icon - /// - /// https://fontawesome.com/icons/handshake?style=regular - /// agreement, greeting, meeting, partnership - static const IconData handshake = const IconDataRegular(0xf2b5); - - /// Solid Handshake icon - /// - /// https://fontawesome.com/icons/handshake?style=solid - /// agreement, greeting, meeting, partnership - static const IconData solidHandshake = const IconDataSolid(0xf2b5); - - /// Light Handshake icon - /// - /// https://fontawesome.com/icons/light_handshake?style=light - /// agreement, greeting, meeting, partnership - static const IconData lightHandshake = const IconDataLight(0xf2b5); - - /// Duotone Handshake icon - /// - /// https://fontawesome.com/icons/duotone_handshake?style=duotone - /// agreement, greeting, meeting, partnership - static const IconDataDuotone duotoneHandshake = const IconDataDuotone( - 0xf2b5, - secondary: const IconDataDuotone(0x10f2b5), - ); - - /// Regular Alternate Handshake icon - /// - /// https://fontawesome.com/icons/handshake-alt?style=regular - /// agreement, greeting, meeting, partnership - static const IconData handshakeAlt = const IconDataRegular(0xf4c6); - - /// Solid Alternate Handshake icon - /// - /// https://fontawesome.com/icons/handshake-alt?style=solid - /// agreement, greeting, meeting, partnership - static const IconData solidHandshakeAlt = const IconDataSolid(0xf4c6); - - /// Light Alternate Handshake icon - /// - /// https://fontawesome.com/icons/light_handshake-alt?style=light - /// agreement, greeting, meeting, partnership - static const IconData lightHandshakeAlt = const IconDataLight(0xf4c6); - - /// Duotone Alternate Handshake icon - /// - /// https://fontawesome.com/icons/duotone_handshake-alt?style=duotone - /// agreement, greeting, meeting, partnership - static const IconDataDuotone duotoneHandshakeAlt = const IconDataDuotone( - 0xf4c6, - secondary: const IconDataDuotone(0x10f4c6), - ); - - /// Regular Handshake Alternate Slash icon - /// - /// https://fontawesome.com/icons/handshake-alt-slash?style=regular - /// broken, covid-19, social distance - static const IconData handshakeAltSlash = const IconDataRegular(0xe05f); - - /// Light Handshake Alternate Slash icon - /// - /// https://fontawesome.com/icons/light_handshake-alt-slash?style=light - /// broken, covid-19, social distance - static const IconData lightHandshakeAltSlash = const IconDataLight(0xe05f); - - /// Solid Handshake Alternate Slash icon - /// - /// https://fontawesome.com/icons/handshake-alt-slash?style=solid - /// broken, covid-19, social distance - static const IconData solidHandshakeAltSlash = const IconDataSolid(0xe05f); - - /// Duotone Handshake Alternate Slash icon - /// - /// https://fontawesome.com/icons/duotone_handshake-alt-slash?style=duotone - /// broken, covid-19, social distance - static const IconDataDuotone duotoneHandshakeAltSlash = const IconDataDuotone( - 0xe05f, - secondary: const IconDataDuotone(0x10e05f), - ); - - /// Regular Handshake Slash icon - /// - /// https://fontawesome.com/icons/handshake-slash?style=regular - /// broken, covid-19, social distance - static const IconData handshakeSlash = const IconDataRegular(0xe060); - - /// Light Handshake Slash icon - /// - /// https://fontawesome.com/icons/light_handshake-slash?style=light - /// broken, covid-19, social distance - static const IconData lightHandshakeSlash = const IconDataLight(0xe060); - - /// Solid Handshake Slash icon - /// - /// https://fontawesome.com/icons/handshake-slash?style=solid - /// broken, covid-19, social distance - static const IconData solidHandshakeSlash = const IconDataSolid(0xe060); - - /// Duotone Handshake Slash icon - /// - /// https://fontawesome.com/icons/duotone_handshake-slash?style=duotone - /// broken, covid-19, social distance - static const IconDataDuotone duotoneHandshakeSlash = const IconDataDuotone( - 0xe060, - secondary: const IconDataDuotone(0x10e060), - ); - - /// Regular Hanukiah icon - /// - /// https://fontawesome.com/icons/hanukiah?style=regular - /// candle, hanukkah, jewish, judaism, light - static const IconData hanukiah = const IconDataRegular(0xf6e6); - - /// Solid Hanukiah icon - /// - /// https://fontawesome.com/icons/hanukiah?style=solid - /// candle, hanukkah, jewish, judaism, light - static const IconData solidHanukiah = const IconDataSolid(0xf6e6); - - /// Light Hanukiah icon - /// - /// https://fontawesome.com/icons/light_hanukiah?style=light - /// candle, hanukkah, jewish, judaism, light - static const IconData lightHanukiah = const IconDataLight(0xf6e6); - - /// Duotone Hanukiah icon - /// - /// https://fontawesome.com/icons/duotone_hanukiah?style=duotone - /// candle, hanukkah, jewish, judaism, light - static const IconDataDuotone duotoneHanukiah = const IconDataDuotone( - 0xf6e6, - secondary: const IconDataDuotone(0x10f6e6), - ); - - /// Regular Hard Hat icon - /// - /// https://fontawesome.com/icons/hard-hat?style=regular - /// construction, hardhat, helmet, safety - static const IconData hardHat = const IconDataRegular(0xf807); - - /// Solid Hard Hat icon - /// - /// https://fontawesome.com/icons/hard-hat?style=solid - /// construction, hardhat, helmet, safety - static const IconData solidHardHat = const IconDataSolid(0xf807); - - /// Light Hard Hat icon - /// - /// https://fontawesome.com/icons/light_hard-hat?style=light - /// construction, hardhat, helmet, safety - static const IconData lightHardHat = const IconDataLight(0xf807); - - /// Duotone Hard Hat icon - /// - /// https://fontawesome.com/icons/duotone_hard-hat?style=duotone - /// construction, hardhat, helmet, safety - static const IconDataDuotone duotoneHardHat = const IconDataDuotone( - 0xf807, - secondary: const IconDataDuotone(0x10f807), - ); - - /// Regular Hashtag icon - /// - /// https://fontawesome.com/icons/hashtag?style=regular - /// Twitter, instagram, pound, social media, tag - static const IconData hashtag = const IconDataRegular(0xf292); - - /// Solid Hashtag icon - /// - /// https://fontawesome.com/icons/hashtag?style=solid - /// Twitter, instagram, pound, social media, tag - static const IconData solidHashtag = const IconDataSolid(0xf292); - - /// Light Hashtag icon - /// - /// https://fontawesome.com/icons/light_hashtag?style=light - /// Twitter, instagram, pound, social media, tag - static const IconData lightHashtag = const IconDataLight(0xf292); - - /// Duotone Hashtag icon - /// - /// https://fontawesome.com/icons/duotone_hashtag?style=duotone - /// Twitter, instagram, pound, social media, tag - static const IconDataDuotone duotoneHashtag = const IconDataDuotone( - 0xf292, - secondary: const IconDataDuotone(0x10f292), - ); - - /// Regular Chef Hat icon - /// - /// https://fontawesome.com/icons/hat-chef?style=regular - /// cook, cuisine, culinary, dining, kitchen - static const IconData hatChef = const IconDataRegular(0xf86b); - - /// Solid Chef Hat icon - /// - /// https://fontawesome.com/icons/hat-chef?style=solid - /// cook, cuisine, culinary, dining, kitchen - static const IconData solidHatChef = const IconDataSolid(0xf86b); - - /// Light Chef Hat icon - /// - /// https://fontawesome.com/icons/light_hat-chef?style=light - /// cook, cuisine, culinary, dining, kitchen - static const IconData lightHatChef = const IconDataLight(0xf86b); - - /// Duotone Chef Hat icon - /// - /// https://fontawesome.com/icons/duotone_hat-chef?style=duotone - /// cook, cuisine, culinary, dining, kitchen - static const IconDataDuotone duotoneHatChef = const IconDataDuotone( - 0xf86b, - secondary: const IconDataDuotone(0x10f86b), - ); - - /// Regular Cowboy Hat 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 = const IconDataRegular(0xf8c0); - - /// Light Cowboy Hat icon - /// - /// https://fontawesome.com/icons/light_hat-cowboy?style=light - /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData lightHatCowboy = const IconDataLight(0xf8c0); - - /// Solid Cowboy Hat 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 = const IconDataSolid(0xf8c0); - - /// Duotone Cowboy Hat icon - /// - /// https://fontawesome.com/icons/duotone_hat-cowboy?style=duotone - /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconDataDuotone duotoneHatCowboy = const IconDataDuotone( - 0xf8c0, - secondary: const IconDataDuotone(0x10f8c0), - ); - - /// Regular Cowboy Hat 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 = const IconDataRegular(0xf8c1); - - /// Light Cowboy Hat Side icon - /// - /// https://fontawesome.com/icons/light_hat-cowboy-side?style=light - /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconData lightHatCowboySide = const IconDataLight(0xf8c1); - - /// Solid Cowboy Hat 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 = const IconDataSolid(0xf8c1); - - /// Duotone Cowboy Hat Side icon - /// - /// https://fontawesome.com/icons/duotone_hat-cowboy-side?style=duotone - /// buckaroo, horse, jackeroo, john b., old west, pardner, ranch, rancher, rodeo, western, wrangler - static const IconDataDuotone duotoneHatCowboySide = const IconDataDuotone( - 0xf8c1, - secondary: const IconDataDuotone(0x10f8c1), - ); - - /// Regular Santa's Hat icon - /// - /// https://fontawesome.com/icons/hat-santa?style=regular - /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData hatSanta = const IconDataRegular(0xf7a7); - - /// Solid Santa's Hat icon - /// - /// https://fontawesome.com/icons/hat-santa?style=solid - /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData solidHatSanta = const IconDataSolid(0xf7a7); - - /// Light Santa's Hat icon - /// - /// https://fontawesome.com/icons/light_hat-santa?style=light - /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconData lightHatSanta = const IconDataLight(0xf7a7); - - /// Duotone Santa's Hat icon - /// - /// https://fontawesome.com/icons/duotone_hat-santa?style=duotone - /// accessory, christmas, claus, clothing, head, holiday, santa, xmas - static const IconDataDuotone duotoneHatSanta = const IconDataDuotone( - 0xf7a7, - secondary: const IconDataDuotone(0x10f7a7), - ); - - /// Regular Hat Winter icon - /// - /// https://fontawesome.com/icons/hat-winter?style=regular - /// accessory, clothing, cold, head, knitted, seasonal - static const IconData hatWinter = const IconDataRegular(0xf7a8); - - /// Solid Hat Winter icon - /// - /// https://fontawesome.com/icons/hat-winter?style=solid - /// accessory, clothing, cold, head, knitted, seasonal - static const IconData solidHatWinter = const IconDataSolid(0xf7a8); - - /// Light Hat Winter icon - /// - /// https://fontawesome.com/icons/light_hat-winter?style=light - /// accessory, clothing, cold, head, knitted, seasonal - static const IconData lightHatWinter = const IconDataLight(0xf7a8); - - /// Duotone Hat Winter icon - /// - /// https://fontawesome.com/icons/duotone_hat-winter?style=duotone - /// accessory, clothing, cold, head, knitted, seasonal - static const IconDataDuotone duotoneHatWinter = const IconDataDuotone( - 0xf7a8, - secondary: const IconDataDuotone(0x10f7a8), - ); - - /// Regular Witch's Hat icon - /// - /// https://fontawesome.com/icons/hat-witch?style=regular - /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData hatWitch = const IconDataRegular(0xf6e7); - - /// Solid Witch's Hat icon - /// - /// https://fontawesome.com/icons/hat-witch?style=solid - /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData solidHatWitch = const IconDataSolid(0xf6e7); - - /// Light Witch's Hat icon - /// - /// https://fontawesome.com/icons/light_hat-witch?style=light - /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconData lightHatWitch = const IconDataLight(0xf6e7); - - /// Duotone Witch's Hat icon - /// - /// https://fontawesome.com/icons/duotone_hat-witch?style=duotone - /// accessory, clothing, halloween, head, holiday, mage, magic, sorceror - static const IconDataDuotone duotoneHatWitch = const IconDataDuotone( - 0xf6e7, - secondary: const IconDataDuotone(0x10f6e7), - ); - - /// Regular Wizard's Hat 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 = const IconDataRegular(0xf6e8); - - /// Solid Wizard's Hat 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 = const IconDataSolid(0xf6e8); - - /// Light Wizard's Hat icon - /// - /// https://fontawesome.com/icons/light_hat-wizard?style=light - /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconData lightHatWizard = const IconDataLight(0xf6e8); - - /// Duotone Wizard's Hat icon - /// - /// https://fontawesome.com/icons/duotone_hat-wizard?style=duotone - /// Dungeons & Dragons, accessory, buckle, clothing, d&d, dnd, fantasy, halloween, head, holiday, mage, magic, pointy, witch - static const IconDataDuotone duotoneHatWizard = const IconDataDuotone( - 0xf6e8, - secondary: const IconDataDuotone(0x10f6e8), - ); - - /// Regular HDD icon - /// - /// https://fontawesome.com/icons/hdd?style=regular - /// cpu, hard drive, harddrive, machine, save, storage - static const IconData hdd = const IconDataRegular(0xf0a0); - - /// Solid HDD icon - /// - /// https://fontawesome.com/icons/hdd?style=solid - /// cpu, hard drive, harddrive, machine, save, storage - static const IconData solidHdd = const IconDataSolid(0xf0a0); - - /// Light HDD icon - /// - /// https://fontawesome.com/icons/light_hdd?style=light - /// cpu, hard drive, harddrive, machine, save, storage - static const IconData lightHdd = const IconDataLight(0xf0a0); - - /// Duotone HDD icon - /// - /// https://fontawesome.com/icons/duotone_hdd?style=duotone - /// cpu, hard drive, harddrive, machine, save, storage - static const IconDataDuotone duotoneHdd = const IconDataDuotone( - 0xf0a0, - secondary: const IconDataDuotone(0x10f0a0), - ); - - /// Regular Head Side icon - /// - /// https://fontawesome.com/icons/head-side?style=regular - /// bald, face, profile, user - static const IconData headSide = const IconDataRegular(0xf6e9); - - /// Solid Head Side icon - /// - /// https://fontawesome.com/icons/head-side?style=solid - /// bald, face, profile, user - static const IconData solidHeadSide = const IconDataSolid(0xf6e9); - - /// Light Head Side icon - /// - /// https://fontawesome.com/icons/light_head-side?style=light - /// bald, face, profile, user - static const IconData lightHeadSide = const IconDataLight(0xf6e9); - - /// Duotone Head Side icon - /// - /// https://fontawesome.com/icons/duotone_head-side?style=duotone - /// bald, face, profile, user - static const IconDataDuotone duotoneHeadSide = const IconDataDuotone( - 0xf6e9, - secondary: const IconDataDuotone(0x10f6e9), - ); - - /// Regular Head Side with Brain icon - /// - /// https://fontawesome.com/icons/head-side-brain?style=regular - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData headSideBrain = const IconDataRegular(0xf808); - - /// Solid Head Side with Brain icon - /// - /// https://fontawesome.com/icons/head-side-brain?style=solid - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData solidHeadSideBrain = const IconDataSolid(0xf808); - - /// Light Head Side with Brain icon - /// - /// https://fontawesome.com/icons/light_head-side-brain?style=light - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData lightHeadSideBrain = const IconDataLight(0xf808); - - /// Duotone Head Side with Brain icon - /// - /// https://fontawesome.com/icons/duotone_head-side-brain?style=duotone - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconDataDuotone duotoneHeadSideBrain = const IconDataDuotone( - 0xf808, - secondary: const IconDataDuotone(0x10f808), - ); - - /// Regular Head Side Cough icon - /// - /// https://fontawesome.com/icons/head-side-cough?style=regular - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData headSideCough = const IconDataRegular(0xe061); - - /// Light Head Side Cough icon - /// - /// https://fontawesome.com/icons/light_head-side-cough?style=light - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData lightHeadSideCough = const IconDataLight(0xe061); - - /// Solid Head Side Cough icon - /// - /// https://fontawesome.com/icons/head-side-cough?style=solid - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData solidHeadSideCough = const IconDataSolid(0xe061); - - /// Duotone Head Side Cough icon - /// - /// https://fontawesome.com/icons/duotone_head-side-cough?style=duotone - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconDataDuotone duotoneHeadSideCough = const IconDataDuotone( - 0xe061, - secondary: const IconDataDuotone(0x10e061), - ); - - /// Regular Head Side-cough-slash icon - /// - /// https://fontawesome.com/icons/head-side-cough-slash?style=regular - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData headSideCoughSlash = const IconDataRegular(0xe062); - - /// Light Head Side-cough-slash icon - /// - /// https://fontawesome.com/icons/light_head-side-cough-slash?style=light - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData lightHeadSideCoughSlash = const IconDataLight(0xe062); - - /// Solid Head Side-cough-slash icon - /// - /// https://fontawesome.com/icons/head-side-cough-slash?style=solid - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconData solidHeadSideCoughSlash = const IconDataSolid(0xe062); - - /// Duotone Head Side-cough-slash icon - /// - /// https://fontawesome.com/icons/duotone_head-side-cough-slash?style=duotone - /// cough, covid-19, germs, lungs, respiratory, sick - static const IconDataDuotone duotoneHeadSideCoughSlash = - const IconDataDuotone( - 0xe062, - secondary: const IconDataDuotone(0x10e062), - ); - - /// Regular Head Side with Headphones icon - /// - /// https://fontawesome.com/icons/head-side-headphones?style=regular - /// amplifier, bluetooth, earphone, headset, listen, microphone, music - static const IconData headSideHeadphones = const IconDataRegular(0xf8c2); - - /// Solid Head Side with Headphones icon - /// - /// https://fontawesome.com/icons/head-side-headphones?style=solid - /// amplifier, bluetooth, earphone, headset, listen, microphone, music - static const IconData solidHeadSideHeadphones = const IconDataSolid(0xf8c2); - - /// Light Head Side with Headphones icon - /// - /// https://fontawesome.com/icons/light_head-side-headphones?style=light - /// amplifier, bluetooth, earphone, headset, listen, microphone, music - static const IconData lightHeadSideHeadphones = const IconDataLight(0xf8c2); - - /// Duotone Head Side with Headphones icon - /// - /// https://fontawesome.com/icons/duotone_head-side-headphones?style=duotone - /// amplifier, bluetooth, earphone, headset, listen, microphone, music - static const IconDataDuotone duotoneHeadSideHeadphones = - const IconDataDuotone( - 0xf8c2, - secondary: const IconDataDuotone(0x10f8c2), - ); - - /// Regular Head Side Mask icon - /// - /// https://fontawesome.com/icons/head-side-mask?style=regular - /// breath, covid-19, filter, respirator, virus - static const IconData headSideMask = const IconDataRegular(0xe063); - - /// Light Head Side Mask icon - /// - /// https://fontawesome.com/icons/light_head-side-mask?style=light - /// breath, covid-19, filter, respirator, virus - static const IconData lightHeadSideMask = const IconDataLight(0xe063); - - /// Solid Head Side Mask icon - /// - /// https://fontawesome.com/icons/head-side-mask?style=solid - /// breath, covid-19, filter, respirator, virus - static const IconData solidHeadSideMask = const IconDataSolid(0xe063); - - /// Duotone Head Side Mask icon - /// - /// https://fontawesome.com/icons/duotone_head-side-mask?style=duotone - /// breath, covid-19, filter, respirator, virus - static const IconDataDuotone duotoneHeadSideMask = const IconDataDuotone( - 0xe063, - secondary: const IconDataDuotone(0x10e063), - ); - - /// Regular Head Side with Medical Symbol icon - /// - /// https://fontawesome.com/icons/head-side-medical?style=regular - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData headSideMedical = const IconDataRegular(0xf809); - - /// Solid Head Side with Medical Symbol icon - /// - /// https://fontawesome.com/icons/head-side-medical?style=solid - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData solidHeadSideMedical = const IconDataSolid(0xf809); - - /// Light Head Side with Medical Symbol icon - /// - /// https://fontawesome.com/icons/light_head-side-medical?style=light - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconData lightHeadSideMedical = const IconDataLight(0xf809); - - /// Duotone Head Side with Medical Symbol icon - /// - /// https://fontawesome.com/icons/duotone_head-side-medical?style=duotone - /// diagnosis, face, mental health, profile, psychiatric, psychiatry - static const IconDataDuotone duotoneHeadSideMedical = const IconDataDuotone( - 0xf809, - secondary: const IconDataDuotone(0x10f809), - ); - - /// Regular Head Side Virus icon - /// - /// https://fontawesome.com/icons/head-side-virus?style=regular - /// cold, covid-19, flu, sick - static const IconData headSideVirus = const IconDataRegular(0xe064); - - /// Light Head Side Virus icon - /// - /// https://fontawesome.com/icons/light_head-side-virus?style=light - /// cold, covid-19, flu, sick - static const IconData lightHeadSideVirus = const IconDataLight(0xe064); - - /// Solid Head Side Virus icon - /// - /// https://fontawesome.com/icons/head-side-virus?style=solid - /// cold, covid-19, flu, sick - static const IconData solidHeadSideVirus = const IconDataSolid(0xe064); - - /// Duotone Head Side Virus icon - /// - /// https://fontawesome.com/icons/duotone_head-side-virus?style=duotone - /// cold, covid-19, flu, sick - static const IconDataDuotone duotoneHeadSideVirus = const IconDataDuotone( - 0xe064, - secondary: const IconDataDuotone(0x10e064), - ); - - /// Regular Head VR icon - /// - /// https://fontawesome.com/icons/head-vr?style=regular - /// 3d, augmented, face, occulus, profile, reality, virtual - static const IconData headVr = const IconDataRegular(0xf6ea); - - /// Solid Head VR icon - /// - /// https://fontawesome.com/icons/head-vr?style=solid - /// 3d, augmented, face, occulus, profile, reality, virtual - static const IconData solidHeadVr = const IconDataSolid(0xf6ea); - - /// Light Head VR icon - /// - /// https://fontawesome.com/icons/light_head-vr?style=light - /// 3d, augmented, face, occulus, profile, reality, virtual - static const IconData lightHeadVr = const IconDataLight(0xf6ea); - - /// Duotone Head VR icon - /// - /// https://fontawesome.com/icons/duotone_head-vr?style=duotone - /// 3d, augmented, face, occulus, profile, reality, virtual - static const IconDataDuotone duotoneHeadVr = const IconDataDuotone( - 0xf6ea, - secondary: const IconDataDuotone(0x10f6ea), - ); - - /// Regular heading icon - /// - /// https://fontawesome.com/icons/heading?style=regular - /// format, header, text, title - static const IconData heading = const IconDataRegular(0xf1dc); - - /// Solid heading icon - /// - /// https://fontawesome.com/icons/heading?style=solid - /// format, header, text, title - static const IconData solidHeading = const IconDataSolid(0xf1dc); - - /// Light heading icon - /// - /// https://fontawesome.com/icons/light_heading?style=light - /// format, header, text, title - static const IconData lightHeading = const IconDataLight(0xf1dc); - - /// Duotone heading icon - /// - /// https://fontawesome.com/icons/duotone_heading?style=duotone - /// format, header, text, title - static const IconDataDuotone duotoneHeading = const IconDataDuotone( - 0xf1dc, - secondary: const IconDataDuotone(0x10f1dc), - ); - - /// Regular headphones icon - /// - /// https://fontawesome.com/icons/headphones?style=regular - /// audio, listen, music, sound, speaker - static const IconData headphones = const IconDataRegular(0xf025); - - /// Solid headphones icon - /// - /// https://fontawesome.com/icons/headphones?style=solid - /// audio, listen, music, sound, speaker - static const IconData solidHeadphones = const IconDataSolid(0xf025); - - /// Light headphones icon - /// - /// https://fontawesome.com/icons/light_headphones?style=light - /// audio, listen, music, sound, speaker - static const IconData lightHeadphones = const IconDataLight(0xf025); - - /// Duotone headphones icon - /// - /// https://fontawesome.com/icons/duotone_headphones?style=duotone - /// audio, listen, music, sound, speaker - static const IconDataDuotone duotoneHeadphones = const IconDataDuotone( - 0xf025, - secondary: const IconDataDuotone(0x10f025), - ); - - /// Regular Alternate Headphones icon - /// - /// https://fontawesome.com/icons/headphones-alt?style=regular - /// audio, listen, music, sound, speaker - static const IconData headphonesAlt = const IconDataRegular(0xf58f); - - /// Solid Alternate Headphones icon - /// - /// https://fontawesome.com/icons/headphones-alt?style=solid - /// audio, listen, music, sound, speaker - static const IconData solidHeadphonesAlt = const IconDataSolid(0xf58f); - - /// Light Alternate Headphones icon - /// - /// https://fontawesome.com/icons/light_headphones-alt?style=light - /// audio, listen, music, sound, speaker - static const IconData lightHeadphonesAlt = const IconDataLight(0xf58f); - - /// Duotone Alternate Headphones icon - /// - /// https://fontawesome.com/icons/duotone_headphones-alt?style=duotone - /// audio, listen, music, sound, speaker - static const IconDataDuotone duotoneHeadphonesAlt = const IconDataDuotone( - 0xf58f, - secondary: const IconDataDuotone(0x10f58f), - ); - - /// 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 = const IconDataRegular(0xf590); - - /// Solid Headset icon - /// - /// https://fontawesome.com/icons/headset?style=solid - /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData solidHeadset = const IconDataSolid(0xf590); - - /// Light Headset icon - /// - /// https://fontawesome.com/icons/light_headset?style=light - /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconData lightHeadset = const IconDataLight(0xf590); - - /// Duotone Headset icon - /// - /// https://fontawesome.com/icons/duotone_headset?style=duotone - /// audio, gamer, gaming, listen, live chat, microphone, shot caller, sound, support, telemarketer - static const IconDataDuotone duotoneHeadset = const IconDataDuotone( - 0xf590, - secondary: const IconDataDuotone(0x10f590), - ); - - /// Regular Heart icon - /// - /// https://fontawesome.com/icons/heart?style=regular - /// favorite, like, love, relationship, valentine - static const IconData heart = const IconDataRegular(0xf004); - - /// Solid Heart icon - /// - /// https://fontawesome.com/icons/heart?style=solid - /// favorite, like, love, relationship, valentine - static const IconData solidHeart = const IconDataSolid(0xf004); - - /// Light Heart icon - /// - /// https://fontawesome.com/icons/light_heart?style=light - /// favorite, like, love, relationship, valentine - static const IconData lightHeart = const IconDataLight(0xf004); - - /// Duotone Heart icon - /// - /// https://fontawesome.com/icons/duotone_heart?style=duotone - /// favorite, like, love, relationship, valentine - static const IconDataDuotone duotoneHeart = const IconDataDuotone( - 0xf004, - secondary: const IconDataDuotone(0x10f004), - ); - - /// Regular Heart Broken icon - /// - /// https://fontawesome.com/icons/heart-broken?style=regular - /// breakup, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData heartBroken = const IconDataRegular(0xf7a9); - - /// Solid Heart Broken icon - /// - /// https://fontawesome.com/icons/heart-broken?style=solid - /// breakup, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData solidHeartBroken = const IconDataSolid(0xf7a9); - - /// Light Heart Broken icon - /// - /// https://fontawesome.com/icons/light_heart-broken?style=light - /// breakup, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconData lightHeartBroken = const IconDataLight(0xf7a9); - - /// Duotone Heart Broken icon - /// - /// https://fontawesome.com/icons/duotone_heart-broken?style=duotone - /// breakup, crushed, dislike, dumped, grief, love, lovesick, relationship, sad - static const IconDataDuotone duotoneHeartBroken = const IconDataDuotone( - 0xf7a9, - secondary: const IconDataDuotone(0x10f7a9), - ); - - /// Regular Heart Circle icon - /// - /// https://fontawesome.com/icons/heart-circle?style=regular - /// favorite, like, love - static const IconData heartCircle = const IconDataRegular(0xf4c7); - - /// Solid Heart Circle icon - /// - /// https://fontawesome.com/icons/heart-circle?style=solid - /// favorite, like, love - static const IconData solidHeartCircle = const IconDataSolid(0xf4c7); - - /// Light Heart Circle icon - /// - /// https://fontawesome.com/icons/light_heart-circle?style=light - /// favorite, like, love - static const IconData lightHeartCircle = const IconDataLight(0xf4c7); - - /// Duotone Heart Circle icon - /// - /// https://fontawesome.com/icons/duotone_heart-circle?style=duotone - /// favorite, like, love - static const IconDataDuotone duotoneHeartCircle = const IconDataDuotone( - 0xf4c7, - secondary: const IconDataDuotone(0x10f4c7), - ); - - /// Regular Heart Rate icon - /// - /// https://fontawesome.com/icons/heart-rate?style=regular - /// EKG, electrocardiogram, health, life, vital - static const IconData heartRate = const IconDataRegular(0xf5f8); - - /// Solid Heart Rate icon - /// - /// https://fontawesome.com/icons/heart-rate?style=solid - /// EKG, electrocardiogram, health, life, vital - static const IconData solidHeartRate = const IconDataSolid(0xf5f8); - - /// Light Heart Rate icon - /// - /// https://fontawesome.com/icons/light_heart-rate?style=light - /// EKG, electrocardiogram, health, life, vital - static const IconData lightHeartRate = const IconDataLight(0xf5f8); - - /// Duotone Heart Rate icon - /// - /// https://fontawesome.com/icons/duotone_heart-rate?style=duotone - /// EKG, electrocardiogram, health, life, vital - static const IconDataDuotone duotoneHeartRate = const IconDataDuotone( - 0xf5f8, - secondary: const IconDataDuotone(0x10f5f8), - ); - - /// Regular Heart Square icon - /// - /// https://fontawesome.com/icons/heart-square?style=regular - /// favorite, like, love - static const IconData heartSquare = const IconDataRegular(0xf4c8); - - /// Solid Heart Square icon - /// - /// https://fontawesome.com/icons/heart-square?style=solid - /// favorite, like, love - static const IconData solidHeartSquare = const IconDataSolid(0xf4c8); - - /// Light Heart Square icon - /// - /// https://fontawesome.com/icons/light_heart-square?style=light - /// favorite, like, love - static const IconData lightHeartSquare = const IconDataLight(0xf4c8); - - /// Duotone Heart Square icon - /// - /// https://fontawesome.com/icons/duotone_heart-square?style=duotone - /// favorite, like, love - static const IconDataDuotone duotoneHeartSquare = const IconDataDuotone( - 0xf4c8, - secondary: const IconDataDuotone(0x10f4c8), - ); - - /// Regular Heartbeat icon - /// - /// https://fontawesome.com/icons/heartbeat?style=regular - /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData heartbeat = const IconDataRegular(0xf21e); - - /// Solid Heartbeat icon - /// - /// https://fontawesome.com/icons/heartbeat?style=solid - /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData solidHeartbeat = const IconDataSolid(0xf21e); - - /// Light Heartbeat icon - /// - /// https://fontawesome.com/icons/light_heartbeat?style=light - /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconData lightHeartbeat = const IconDataLight(0xf21e); - - /// Duotone Heartbeat icon - /// - /// https://fontawesome.com/icons/duotone_heartbeat?style=duotone - /// ekg, electrocardiogram, health, lifeline, vital signs - static const IconDataDuotone duotoneHeartbeat = const IconDataDuotone( - 0xf21e, - secondary: const IconDataDuotone(0x10f21e), - ); - - /// Regular Heat icon - /// - /// https://fontawesome.com/icons/heat?style=regular - /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData heat = const IconDataRegular(0xe00c); - - /// Solid Heat icon - /// - /// https://fontawesome.com/icons/heat?style=solid - /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData solidHeat = const IconDataSolid(0xe00c); - - /// Light Heat icon - /// - /// https://fontawesome.com/icons/light_heat?style=light - /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconData lightHeat = const IconDataLight(0xe00c); - - /// Duotone Heat icon - /// - /// https://fontawesome.com/icons/duotone_heat?style=duotone - /// ac, air conditioner, boiler, heating, hot, sauna, spa, summer, temperature - static const IconDataDuotone duotoneHeat = const IconDataDuotone( - 0xe00c, - secondary: const IconDataDuotone(0x10e00c), - ); - - /// Regular Helicopter icon - /// - /// https://fontawesome.com/icons/helicopter?style=regular - /// airwolf, apache, chopper, flight, fly, travel - static const IconData helicopter = const IconDataRegular(0xf533); - - /// Solid Helicopter icon - /// - /// https://fontawesome.com/icons/helicopter?style=solid - /// airwolf, apache, chopper, flight, fly, travel - static const IconData solidHelicopter = const IconDataSolid(0xf533); - - /// Light Helicopter icon - /// - /// https://fontawesome.com/icons/light_helicopter?style=light - /// airwolf, apache, chopper, flight, fly, travel - static const IconData lightHelicopter = const IconDataLight(0xf533); - - /// Duotone Helicopter icon - /// - /// https://fontawesome.com/icons/duotone_helicopter?style=duotone - /// airwolf, apache, chopper, flight, fly, travel - static const IconDataDuotone duotoneHelicopter = const IconDataDuotone( - 0xf533, - secondary: const IconDataDuotone(0x10f533), - ); - - /// Regular Battle Helmet icon - /// - /// https://fontawesome.com/icons/helmet-battle?style=regular - /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData helmetBattle = const IconDataRegular(0xf6eb); - - /// Solid Battle Helmet icon - /// - /// https://fontawesome.com/icons/helmet-battle?style=solid - /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData solidHelmetBattle = const IconDataSolid(0xf6eb); - - /// Light Battle Helmet icon - /// - /// https://fontawesome.com/icons/light_helmet-battle?style=light - /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconData lightHelmetBattle = const IconDataLight(0xf6eb); - - /// Duotone Battle Helmet icon - /// - /// https://fontawesome.com/icons/duotone_helmet-battle?style=duotone - /// Dungeons & Dragons, armor, clothing, d&d, dnd, fantasy, hat, knight, paladin - static const IconDataDuotone duotoneHelmetBattle = const IconDataDuotone( - 0xf6eb, - secondary: const IconDataDuotone(0x10f6eb), - ); - - /// Regular Hexagon icon - /// - /// https://fontawesome.com/icons/hexagon?style=regular - /// geometry, honeycomb, polygon, shape - static const IconData hexagon = const IconDataRegular(0xf312); - - /// Solid Hexagon icon - /// - /// https://fontawesome.com/icons/hexagon?style=solid - /// geometry, honeycomb, polygon, shape - static const IconData solidHexagon = const IconDataSolid(0xf312); - - /// Light Hexagon icon - /// - /// https://fontawesome.com/icons/light_hexagon?style=light - /// geometry, honeycomb, polygon, shape - static const IconData lightHexagon = const IconDataLight(0xf312); - - /// Duotone Hexagon icon - /// - /// https://fontawesome.com/icons/duotone_hexagon?style=duotone - /// geometry, honeycomb, polygon, shape - static const IconDataDuotone duotoneHexagon = const IconDataDuotone( - 0xf312, - secondary: const IconDataDuotone(0x10f312), - ); - - /// Regular Highlighter icon - /// - /// https://fontawesome.com/icons/highlighter?style=regular - /// edit, marker, sharpie, update, write - static const IconData highlighter = const IconDataRegular(0xf591); - - /// Solid Highlighter icon - /// - /// https://fontawesome.com/icons/highlighter?style=solid - /// edit, marker, sharpie, update, write - static const IconData solidHighlighter = const IconDataSolid(0xf591); - - /// Light Highlighter icon - /// - /// https://fontawesome.com/icons/light_highlighter?style=light - /// edit, marker, sharpie, update, write - static const IconData lightHighlighter = const IconDataLight(0xf591); - - /// Duotone Highlighter icon - /// - /// https://fontawesome.com/icons/duotone_highlighter?style=duotone - /// edit, marker, sharpie, update, write - static const IconDataDuotone duotoneHighlighter = const IconDataDuotone( - 0xf591, - secondary: const IconDataDuotone(0x10f591), - ); - - /// Regular Hiking icon - /// - /// https://fontawesome.com/icons/hiking?style=regular - /// activity, backpack, fall, fitness, outdoors, person, seasonal, walking - static const IconData hiking = const IconDataRegular(0xf6ec); - - /// Solid Hiking icon - /// - /// https://fontawesome.com/icons/hiking?style=solid - /// activity, backpack, fall, fitness, outdoors, person, seasonal, walking - static const IconData solidHiking = const IconDataSolid(0xf6ec); - - /// Light Hiking icon - /// - /// https://fontawesome.com/icons/light_hiking?style=light - /// activity, backpack, fall, fitness, outdoors, person, seasonal, walking - static const IconData lightHiking = const IconDataLight(0xf6ec); - - /// Duotone Hiking icon - /// - /// https://fontawesome.com/icons/duotone_hiking?style=duotone - /// activity, backpack, fall, fitness, outdoors, person, seasonal, walking - static const IconDataDuotone duotoneHiking = const IconDataDuotone( - 0xf6ec, - secondary: const IconDataDuotone(0x10f6ec), - ); - - /// Regular Hippo icon - /// - /// https://fontawesome.com/icons/hippo?style=regular - /// animal, fauna, hippopotamus, hungry, mammal - static const IconData hippo = const IconDataRegular(0xf6ed); - - /// Solid Hippo icon - /// - /// https://fontawesome.com/icons/hippo?style=solid - /// animal, fauna, hippopotamus, hungry, mammal - static const IconData solidHippo = const IconDataSolid(0xf6ed); - - /// Light Hippo icon - /// - /// https://fontawesome.com/icons/light_hippo?style=light - /// animal, fauna, hippopotamus, hungry, mammal - static const IconData lightHippo = const IconDataLight(0xf6ed); - - /// Duotone Hippo icon - /// - /// https://fontawesome.com/icons/duotone_hippo?style=duotone - /// animal, fauna, hippopotamus, hungry, mammal - static const IconDataDuotone duotoneHippo = const IconDataDuotone( - 0xf6ed, - secondary: const IconDataDuotone(0x10f6ed), - ); - - /// Brands Hips icon - /// - /// https://fontawesome.com/icons/hips?style=brands - static const IconData hips = const IconDataBrands(0xf452); - - /// Brands HireAHelper icon - /// - /// https://fontawesome.com/icons/hire-a-helper?style=brands - static const IconData hireAHelper = const IconDataBrands(0xf3b0); - - /// Regular History icon - /// - /// https://fontawesome.com/icons/history?style=regular - /// Rewind, clock, reverse, time, time machine - static const IconData history = const IconDataRegular(0xf1da); - - /// Solid History icon - /// - /// https://fontawesome.com/icons/history?style=solid - /// Rewind, clock, reverse, time, time machine - static const IconData solidHistory = const IconDataSolid(0xf1da); - - /// Light History icon - /// - /// https://fontawesome.com/icons/light_history?style=light - /// Rewind, clock, reverse, time, time machine - static const IconData lightHistory = const IconDataLight(0xf1da); - - /// Duotone History icon - /// - /// https://fontawesome.com/icons/duotone_history?style=duotone - /// Rewind, clock, reverse, time, time machine - static const IconDataDuotone duotoneHistory = const IconDataDuotone( - 0xf1da, - secondary: const IconDataDuotone(0x10f1da), - ); - - /// Brands Hive Blockchain Network icon - /// - /// https://fontawesome.com/icons/hive?style=brands - static const IconData hive = const IconDataBrands(0xe07f); - - /// 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 = const IconDataRegular(0xf6ee); - - /// 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 = const IconDataSolid(0xf6ee); - - /// Light Hockey Mask icon - /// - /// https://fontawesome.com/icons/light_hockey-mask?style=light - /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconData lightHockeyMask = const IconDataLight(0xf6ee); - - /// Duotone Hockey Mask icon - /// - /// https://fontawesome.com/icons/duotone_hockey-mask?style=duotone - /// clothing, friday, halloween, ice, jason, nhl, protection, sport, thirteenth - static const IconDataDuotone duotoneHockeyMask = const IconDataDuotone( - 0xf6ee, - secondary: const IconDataDuotone(0x10f6ee), - ); - - /// Regular Hockey Puck icon - /// - /// https://fontawesome.com/icons/hockey-puck?style=regular - /// ice, nhl, sport - static const IconData hockeyPuck = const IconDataRegular(0xf453); - - /// Solid Hockey Puck icon - /// - /// https://fontawesome.com/icons/hockey-puck?style=solid - /// ice, nhl, sport - static const IconData solidHockeyPuck = const IconDataSolid(0xf453); - - /// Light Hockey Puck icon - /// - /// https://fontawesome.com/icons/light_hockey-puck?style=light - /// ice, nhl, sport - static const IconData lightHockeyPuck = const IconDataLight(0xf453); - - /// Duotone Hockey Puck icon - /// - /// https://fontawesome.com/icons/duotone_hockey-puck?style=duotone - /// ice, nhl, sport - static const IconDataDuotone duotoneHockeyPuck = const IconDataDuotone( - 0xf453, - secondary: const IconDataDuotone(0x10f453), - ); - - /// Regular Hockey Sticks icon - /// - /// https://fontawesome.com/icons/hockey-sticks?style=regular - /// ice, nhl, sport - static const IconData hockeySticks = const IconDataRegular(0xf454); - - /// Solid Hockey Sticks icon - /// - /// https://fontawesome.com/icons/hockey-sticks?style=solid - /// ice, nhl, sport - static const IconData solidHockeySticks = const IconDataSolid(0xf454); - - /// Light Hockey Sticks icon - /// - /// https://fontawesome.com/icons/light_hockey-sticks?style=light - /// ice, nhl, sport - static const IconData lightHockeySticks = const IconDataLight(0xf454); - - /// Duotone Hockey Sticks icon - /// - /// https://fontawesome.com/icons/duotone_hockey-sticks?style=duotone - /// ice, nhl, sport - static const IconDataDuotone duotoneHockeySticks = const IconDataDuotone( - 0xf454, - secondary: const IconDataDuotone(0x10f454), - ); - - /// 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 = const IconDataRegular(0xf7aa); - - /// 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 = const IconDataSolid(0xf7aa); - - /// Light Holly Berry icon - /// - /// https://fontawesome.com/icons/light_holly-berry?style=light - /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconData lightHollyBerry = const IconDataLight(0xf7aa); - - /// Duotone Holly Berry icon - /// - /// https://fontawesome.com/icons/duotone_holly-berry?style=duotone - /// catwoman, christmas, decoration, flora, halle, holiday, ororo munroe, plant, storm, xmas - static const IconDataDuotone duotoneHollyBerry = const IconDataDuotone( - 0xf7aa, - secondary: const IconDataDuotone(0x10f7aa), - ); - - /// Regular home icon - /// - /// https://fontawesome.com/icons/home?style=regular - /// abode, building, house, main - static const IconData home = const IconDataRegular(0xf015); - - /// Solid home icon - /// - /// https://fontawesome.com/icons/home?style=solid - /// abode, building, house, main - static const IconData solidHome = const IconDataSolid(0xf015); - - /// Light home icon - /// - /// https://fontawesome.com/icons/light_home?style=light - /// abode, building, house, main - static const IconData lightHome = const IconDataLight(0xf015); - - /// Duotone home icon - /// - /// https://fontawesome.com/icons/duotone_home?style=duotone - /// abode, building, house, main - static const IconDataDuotone duotoneHome = const IconDataDuotone( - 0xf015, - secondary: const IconDataDuotone(0x10f015), - ); - - /// Regular Alternate Home icon - /// - /// https://fontawesome.com/icons/home-alt?style=regular - /// abode, building, house, main - static const IconData homeAlt = const IconDataRegular(0xf80a); - - /// Solid Alternate Home icon - /// - /// https://fontawesome.com/icons/home-alt?style=solid - /// abode, building, house, main - static const IconData solidHomeAlt = const IconDataSolid(0xf80a); - - /// Light Alternate Home icon - /// - /// https://fontawesome.com/icons/light_home-alt?style=light - /// abode, building, house, main - static const IconData lightHomeAlt = const IconDataLight(0xf80a); - - /// Duotone Alternate Home icon - /// - /// https://fontawesome.com/icons/duotone_home-alt?style=duotone - /// abode, building, house, main - static const IconDataDuotone duotoneHomeAlt = const IconDataDuotone( - 0xf80a, - secondary: const IconDataDuotone(0x10f80a), - ); - - /// Regular Home Heart icon - /// - /// https://fontawesome.com/icons/home-heart?style=regular - /// abode, building, charity, house, main - static const IconData homeHeart = const IconDataRegular(0xf4c9); - - /// Solid Home Heart icon - /// - /// https://fontawesome.com/icons/home-heart?style=solid - /// abode, building, charity, house, main - static const IconData solidHomeHeart = const IconDataSolid(0xf4c9); - - /// Light Home Heart icon - /// - /// https://fontawesome.com/icons/light_home-heart?style=light - /// abode, building, charity, house, main - static const IconData lightHomeHeart = const IconDataLight(0xf4c9); - - /// Duotone Home Heart icon - /// - /// https://fontawesome.com/icons/duotone_home-heart?style=duotone - /// abode, building, charity, house, main - static const IconDataDuotone duotoneHomeHeart = const IconDataDuotone( - 0xf4c9, - secondary: const IconDataDuotone(0x10f4c9), - ); - - /// Regular Home Large icon - /// - /// https://fontawesome.com/icons/home-lg?style=regular - /// abode, building, house, main - static const IconData homeLg = const IconDataRegular(0xf80b); - - /// Solid Home Large icon - /// - /// https://fontawesome.com/icons/home-lg?style=solid - /// abode, building, house, main - static const IconData solidHomeLg = const IconDataSolid(0xf80b); - - /// Light Home Large icon - /// - /// https://fontawesome.com/icons/light_home-lg?style=light - /// abode, building, house, main - static const IconData lightHomeLg = const IconDataLight(0xf80b); - - /// Duotone Home Large icon - /// - /// https://fontawesome.com/icons/duotone_home-lg?style=duotone - /// abode, building, house, main - static const IconDataDuotone duotoneHomeLg = const IconDataDuotone( - 0xf80b, - secondary: const IconDataDuotone(0x10f80b), - ); - - /// Regular Alternative Home Large icon - /// - /// https://fontawesome.com/icons/home-lg-alt?style=regular - /// abode, building, house, main - static const IconData homeLgAlt = const IconDataRegular(0xf80c); - - /// Solid Alternative Home Large icon - /// - /// https://fontawesome.com/icons/home-lg-alt?style=solid - /// abode, building, house, main - static const IconData solidHomeLgAlt = const IconDataSolid(0xf80c); - - /// Light Alternative Home Large icon - /// - /// https://fontawesome.com/icons/light_home-lg-alt?style=light - /// abode, building, house, main - static const IconData lightHomeLgAlt = const IconDataLight(0xf80c); - - /// Duotone Alternative Home Large icon - /// - /// https://fontawesome.com/icons/duotone_home-lg-alt?style=duotone - /// abode, building, house, main - static const IconDataDuotone duotoneHomeLgAlt = const IconDataDuotone( - 0xf80c, - secondary: const IconDataDuotone(0x10f80c), - ); - - /// 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 = const IconDataRegular(0xf6ef); - - /// 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 = const IconDataSolid(0xf6ef); - - /// Light Hood Cloak icon - /// - /// https://fontawesome.com/icons/light_hood-cloak?style=light - /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconData lightHoodCloak = const IconDataLight(0xf6ef); - - /// Duotone Hood Cloak icon - /// - /// https://fontawesome.com/icons/duotone_hood-cloak?style=duotone - /// Dungeons & Dragons, clothing, d&d, dnd, fantasy, hat, rogue, stealth - static const IconDataDuotone duotoneHoodCloak = const IconDataDuotone( - 0xf6ef, - secondary: const IconDataDuotone(0x10f6ef), - ); - - /// Brands Hooli icon - /// - /// https://fontawesome.com/icons/hooli?style=brands - static const IconData hooli = const IconDataBrands(0xf427); - - /// Regular Horizontal Rule icon - /// - /// https://fontawesome.com/icons/horizontal-rule?style=regular - /// divider, hr, line, page break - static const IconData horizontalRule = const IconDataRegular(0xf86c); - - /// Solid Horizontal Rule icon - /// - /// https://fontawesome.com/icons/horizontal-rule?style=solid - /// divider, hr, line, page break - static const IconData solidHorizontalRule = const IconDataSolid(0xf86c); - - /// Light Horizontal Rule icon - /// - /// https://fontawesome.com/icons/light_horizontal-rule?style=light - /// divider, hr, line, page break - static const IconData lightHorizontalRule = const IconDataLight(0xf86c); - - /// Duotone Horizontal Rule icon - /// - /// https://fontawesome.com/icons/duotone_horizontal-rule?style=duotone - /// divider, hr, line, page break - static const IconDataDuotone duotoneHorizontalRule = const IconDataDuotone( - 0xf86c, - secondary: const IconDataDuotone(0x10f86c), - ); - - /// Brands Hornbill icon - /// - /// https://fontawesome.com/icons/hornbill?style=brands - static const IconData hornbill = const IconDataBrands(0xf592); - - /// Regular Horse icon - /// - /// https://fontawesome.com/icons/horse?style=regular - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData horse = const IconDataRegular(0xf6f0); - - /// Solid Horse icon - /// - /// https://fontawesome.com/icons/horse?style=solid - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData solidHorse = const IconDataSolid(0xf6f0); - - /// Light Horse icon - /// - /// https://fontawesome.com/icons/light_horse?style=light - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData lightHorse = const IconDataLight(0xf6f0); - - /// Duotone Horse icon - /// - /// https://fontawesome.com/icons/duotone_horse?style=duotone - /// equus, fauna, mammmal, mare, neigh, pony - static const IconDataDuotone duotoneHorse = const IconDataDuotone( - 0xf6f0, - secondary: const IconDataDuotone(0x10f6f0), - ); - - /// Regular Horse Head icon - /// - /// https://fontawesome.com/icons/horse-head?style=regular - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData horseHead = const IconDataRegular(0xf7ab); - - /// Solid Horse Head icon - /// - /// https://fontawesome.com/icons/horse-head?style=solid - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData solidHorseHead = const IconDataSolid(0xf7ab); - - /// Light Horse Head icon - /// - /// https://fontawesome.com/icons/light_horse-head?style=light - /// equus, fauna, mammmal, mare, neigh, pony - static const IconData lightHorseHead = const IconDataLight(0xf7ab); - - /// Duotone Horse Head icon - /// - /// https://fontawesome.com/icons/duotone_horse-head?style=duotone - /// equus, fauna, mammmal, mare, neigh, pony - static const IconDataDuotone duotoneHorseHead = const IconDataDuotone( - 0xf7ab, - secondary: const IconDataDuotone(0x10f7ab), - ); - - /// 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 = const IconDataRegular(0xf8c3); - - /// Light Horse Saddle icon - /// - /// https://fontawesome.com/icons/light_horse-saddle?style=light - /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconData lightHorseSaddle = const IconDataLight(0xf8c3); - - /// 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 = const IconDataSolid(0xf8c3); - - /// Duotone Horse Saddle icon - /// - /// https://fontawesome.com/icons/duotone_horse-saddle?style=duotone - /// cowboy, equus, fauna, mammmal, mare, neigh, pony, rodeo, western - static const IconDataDuotone duotoneHorseSaddle = const IconDataDuotone( - 0xf8c3, - secondary: const IconDataDuotone(0x10f8c3), - ); - - /// Regular hospital icon - /// - /// https://fontawesome.com/icons/hospital?style=regular - /// building, covid-19, emergency room, medical center - static const IconData hospital = const IconDataRegular(0xf0f8); - - /// Solid hospital icon - /// - /// https://fontawesome.com/icons/hospital?style=solid - /// building, covid-19, emergency room, medical center - static const IconData solidHospital = const IconDataSolid(0xf0f8); - - /// Light hospital icon - /// - /// https://fontawesome.com/icons/light_hospital?style=light - /// building, covid-19, emergency room, medical center - static const IconData lightHospital = const IconDataLight(0xf0f8); - - /// Duotone hospital icon - /// - /// https://fontawesome.com/icons/duotone_hospital?style=duotone - /// building, covid-19, emergency room, medical center - static const IconDataDuotone duotoneHospital = const IconDataDuotone( - 0xf0f8, - secondary: const IconDataDuotone(0x10f0f8), - ); - - /// Regular Alternate Hospital icon - /// - /// https://fontawesome.com/icons/hospital-alt?style=regular - /// building, covid-19, emergency room, medical center - static const IconData hospitalAlt = const IconDataRegular(0xf47d); - - /// Solid Alternate Hospital icon - /// - /// https://fontawesome.com/icons/hospital-alt?style=solid - /// building, covid-19, emergency room, medical center - static const IconData solidHospitalAlt = const IconDataSolid(0xf47d); - - /// Light Alternate Hospital icon - /// - /// https://fontawesome.com/icons/light_hospital-alt?style=light - /// building, covid-19, emergency room, medical center - static const IconData lightHospitalAlt = const IconDataLight(0xf47d); - - /// Duotone Alternate Hospital icon - /// - /// https://fontawesome.com/icons/duotone_hospital-alt?style=duotone - /// building, covid-19, emergency room, medical center - static const IconDataDuotone duotoneHospitalAlt = const IconDataDuotone( - 0xf47d, - secondary: const IconDataDuotone(0x10f47d), - ); - - /// Regular Hospital Symbol icon - /// - /// https://fontawesome.com/icons/hospital-symbol?style=regular - /// clinic, covid-19, emergency, map - static const IconData hospitalSymbol = const IconDataRegular(0xf47e); - - /// Solid Hospital Symbol icon - /// - /// https://fontawesome.com/icons/hospital-symbol?style=solid - /// clinic, covid-19, emergency, map - static const IconData solidHospitalSymbol = const IconDataSolid(0xf47e); - - /// Light Hospital Symbol icon - /// - /// https://fontawesome.com/icons/light_hospital-symbol?style=light - /// clinic, covid-19, emergency, map - static const IconData lightHospitalSymbol = const IconDataLight(0xf47e); - - /// Duotone Hospital Symbol icon - /// - /// https://fontawesome.com/icons/duotone_hospital-symbol?style=duotone - /// clinic, covid-19, emergency, map - static const IconDataDuotone duotoneHospitalSymbol = const IconDataDuotone( - 0xf47e, - secondary: const IconDataDuotone(0x10f47e), - ); - - /// Regular Hospital with User icon - /// - /// https://fontawesome.com/icons/hospital-user?style=regular - /// covid-19, doctor, network, patient, primary care - static const IconData hospitalUser = const IconDataRegular(0xf80d); - - /// Solid Hospital with User icon - /// - /// https://fontawesome.com/icons/hospital-user?style=solid - /// covid-19, doctor, network, patient, primary care - static const IconData solidHospitalUser = const IconDataSolid(0xf80d); - - /// Light Hospital with User icon - /// - /// https://fontawesome.com/icons/light_hospital-user?style=light - /// covid-19, doctor, network, patient, primary care - static const IconData lightHospitalUser = const IconDataLight(0xf80d); - - /// Duotone Hospital with User icon - /// - /// https://fontawesome.com/icons/duotone_hospital-user?style=duotone - /// covid-19, doctor, network, patient, primary care - static const IconDataDuotone duotoneHospitalUser = const IconDataDuotone( - 0xf80d, - secondary: const IconDataDuotone(0x10f80d), - ); - - /// Regular Hospitals icon - /// - /// https://fontawesome.com/icons/hospitals?style=regular - /// emergency, insurance, network - static const IconData hospitals = const IconDataRegular(0xf80e); - - /// Solid Hospitals icon - /// - /// https://fontawesome.com/icons/hospitals?style=solid - /// emergency, insurance, network - static const IconData solidHospitals = const IconDataSolid(0xf80e); - - /// Light Hospitals icon - /// - /// https://fontawesome.com/icons/light_hospitals?style=light - /// emergency, insurance, network - static const IconData lightHospitals = const IconDataLight(0xf80e); - - /// Duotone Hospitals icon - /// - /// https://fontawesome.com/icons/duotone_hospitals?style=duotone - /// emergency, insurance, network - static const IconDataDuotone duotoneHospitals = const IconDataDuotone( - 0xf80e, - secondary: const IconDataDuotone(0x10f80e), - ); - - /// Regular Hot Tub icon - /// - /// https://fontawesome.com/icons/hot-tub?style=regular - /// bath, jacuzzi, massage, sauna, spa - static const IconData hotTub = const IconDataRegular(0xf593); - - /// Solid Hot Tub icon - /// - /// https://fontawesome.com/icons/hot-tub?style=solid - /// bath, jacuzzi, massage, sauna, spa - static const IconData solidHotTub = const IconDataSolid(0xf593); - - /// Light Hot Tub icon - /// - /// https://fontawesome.com/icons/light_hot-tub?style=light - /// bath, jacuzzi, massage, sauna, spa - static const IconData lightHotTub = const IconDataLight(0xf593); - - /// Duotone Hot Tub icon - /// - /// https://fontawesome.com/icons/duotone_hot-tub?style=duotone - /// bath, jacuzzi, massage, sauna, spa - static const IconDataDuotone duotoneHotTub = const IconDataDuotone( - 0xf593, - secondary: const IconDataDuotone(0x10f593), - ); - - /// Regular Hot Dog icon - /// - /// https://fontawesome.com/icons/hotdog?style=regular - /// bun, chili, frankfurt, frankfurter, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData hotdog = const IconDataRegular(0xf80f); - - /// Solid Hot Dog icon - /// - /// https://fontawesome.com/icons/hotdog?style=solid - /// bun, chili, frankfurt, frankfurter, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData solidHotdog = const IconDataSolid(0xf80f); - - /// Light Hot Dog icon - /// - /// https://fontawesome.com/icons/light_hotdog?style=light - /// bun, chili, frankfurt, frankfurter, kosher, polish, sandwich, sausage, vienna, weiner - static const IconData lightHotdog = const IconDataLight(0xf80f); - - /// Duotone Hot Dog icon - /// - /// https://fontawesome.com/icons/duotone_hotdog?style=duotone - /// bun, chili, frankfurt, frankfurter, kosher, polish, sandwich, sausage, vienna, weiner - static const IconDataDuotone duotoneHotdog = const IconDataDuotone( - 0xf80f, - secondary: const IconDataDuotone(0x10f80f), - ); - - /// Regular Hotel icon - /// - /// https://fontawesome.com/icons/hotel?style=regular - /// building, inn, lodging, motel, resort, travel - static const IconData hotel = const IconDataRegular(0xf594); - - /// Solid Hotel icon - /// - /// https://fontawesome.com/icons/hotel?style=solid - /// building, inn, lodging, motel, resort, travel - static const IconData solidHotel = const IconDataSolid(0xf594); - - /// Light Hotel icon - /// - /// https://fontawesome.com/icons/light_hotel?style=light - /// building, inn, lodging, motel, resort, travel - static const IconData lightHotel = const IconDataLight(0xf594); - - /// Duotone Hotel icon - /// - /// https://fontawesome.com/icons/duotone_hotel?style=duotone - /// building, inn, lodging, motel, resort, travel - static const IconDataDuotone duotoneHotel = const IconDataDuotone( - 0xf594, - secondary: const IconDataDuotone(0x10f594), - ); - - /// Brands Hotjar icon - /// - /// https://fontawesome.com/icons/hotjar?style=brands - static const IconData hotjar = const IconDataBrands(0xf3b1); - - /// Regular Hourglass icon - /// - /// https://fontawesome.com/icons/hourglass?style=regular - /// hour, minute, sand, stopwatch, time - static const IconData hourglass = const IconDataRegular(0xf254); - - /// Solid Hourglass icon - /// - /// https://fontawesome.com/icons/hourglass?style=solid - /// hour, minute, sand, stopwatch, time - static const IconData solidHourglass = const IconDataSolid(0xf254); - - /// Light Hourglass icon - /// - /// https://fontawesome.com/icons/light_hourglass?style=light - /// hour, minute, sand, stopwatch, time - static const IconData lightHourglass = const IconDataLight(0xf254); - - /// Duotone Hourglass icon - /// - /// https://fontawesome.com/icons/duotone_hourglass?style=duotone - /// hour, minute, sand, stopwatch, time - static const IconDataDuotone duotoneHourglass = const IconDataDuotone( - 0xf254, - secondary: const IconDataDuotone(0x10f254), - ); - - /// Regular Hourglass End icon - /// - /// https://fontawesome.com/icons/hourglass-end?style=regular - /// hour, minute, sand, stopwatch, time - static const IconData hourglassEnd = const IconDataRegular(0xf253); - - /// Solid Hourglass End icon - /// - /// https://fontawesome.com/icons/hourglass-end?style=solid - /// hour, minute, sand, stopwatch, time - static const IconData solidHourglassEnd = const IconDataSolid(0xf253); - - /// Light Hourglass End icon - /// - /// https://fontawesome.com/icons/light_hourglass-end?style=light - /// hour, minute, sand, stopwatch, time - static const IconData lightHourglassEnd = const IconDataLight(0xf253); - - /// Duotone Hourglass End icon - /// - /// https://fontawesome.com/icons/duotone_hourglass-end?style=duotone - /// hour, minute, sand, stopwatch, time - static const IconDataDuotone duotoneHourglassEnd = const IconDataDuotone( - 0xf253, - secondary: const IconDataDuotone(0x10f253), - ); - - /// Regular Hourglass Half icon - /// - /// https://fontawesome.com/icons/hourglass-half?style=regular - /// hour, minute, sand, stopwatch, time - static const IconData hourglassHalf = const IconDataRegular(0xf252); - - /// Solid Hourglass Half icon - /// - /// https://fontawesome.com/icons/hourglass-half?style=solid - /// hour, minute, sand, stopwatch, time - static const IconData solidHourglassHalf = const IconDataSolid(0xf252); - - /// Light Hourglass Half icon - /// - /// https://fontawesome.com/icons/light_hourglass-half?style=light - /// hour, minute, sand, stopwatch, time - static const IconData lightHourglassHalf = const IconDataLight(0xf252); - - /// Duotone Hourglass Half icon - /// - /// https://fontawesome.com/icons/duotone_hourglass-half?style=duotone - /// hour, minute, sand, stopwatch, time - static const IconDataDuotone duotoneHourglassHalf = const IconDataDuotone( - 0xf252, - secondary: const IconDataDuotone(0x10f252), - ); - - /// Regular Hourglass Start icon - /// - /// https://fontawesome.com/icons/hourglass-start?style=regular - /// hour, minute, sand, stopwatch, time - static const IconData hourglassStart = const IconDataRegular(0xf251); - - /// Solid Hourglass Start icon - /// - /// https://fontawesome.com/icons/hourglass-start?style=solid - /// hour, minute, sand, stopwatch, time - static const IconData solidHourglassStart = const IconDataSolid(0xf251); - - /// Light Hourglass Start icon - /// - /// https://fontawesome.com/icons/light_hourglass-start?style=light - /// hour, minute, sand, stopwatch, time - static const IconData lightHourglassStart = const IconDataLight(0xf251); - - /// Duotone Hourglass Start icon - /// - /// https://fontawesome.com/icons/duotone_hourglass-start?style=duotone - /// hour, minute, sand, stopwatch, time - static const IconDataDuotone duotoneHourglassStart = const IconDataDuotone( - 0xf251, - secondary: const IconDataDuotone(0x10f251), - ); - - /// Regular House icon - /// - /// https://fontawesome.com/icons/house?style=regular - /// abode, building, family, home, residence - static const IconData house = const IconDataRegular(0xe00d); - - /// Solid House icon - /// - /// https://fontawesome.com/icons/house?style=solid - /// abode, building, family, home, residence - static const IconData solidHouse = const IconDataSolid(0xe00d); - - /// Light House icon - /// - /// https://fontawesome.com/icons/light_house?style=light - /// abode, building, family, home, residence - static const IconData lightHouse = const IconDataLight(0xe00d); - - /// Duotone House icon - /// - /// https://fontawesome.com/icons/duotone_house?style=duotone - /// abode, building, family, home, residence - static const IconDataDuotone duotoneHouse = const IconDataDuotone( - 0xe00d, - secondary: const IconDataDuotone(0x10e00d), - ); - - /// Regular Damaged House icon - /// - /// https://fontawesome.com/icons/house-damage?style=regular - /// building, devastation, disaster, home, insurance - static const IconData houseDamage = const IconDataRegular(0xf6f1); - - /// Solid Damaged House icon - /// - /// https://fontawesome.com/icons/house-damage?style=solid - /// building, devastation, disaster, home, insurance - static const IconData solidHouseDamage = const IconDataSolid(0xf6f1); - - /// Light Damaged House icon - /// - /// https://fontawesome.com/icons/light_house-damage?style=light - /// building, devastation, disaster, home, insurance - static const IconData lightHouseDamage = const IconDataLight(0xf6f1); - - /// Duotone Damaged House icon - /// - /// https://fontawesome.com/icons/duotone_house-damage?style=duotone - /// building, devastation, disaster, home, insurance - static const IconDataDuotone duotoneHouseDamage = const IconDataDuotone( - 0xf6f1, - secondary: const IconDataDuotone(0x10f6f1), - ); - - /// Regular House Day icon - /// - /// https://fontawesome.com/icons/house-day?style=regular - /// abode, building, family, home, residence, solar, sun - static const IconData houseDay = const IconDataRegular(0xe00e); - - /// Solid House Day icon - /// - /// https://fontawesome.com/icons/house-day?style=solid - /// abode, building, family, home, residence, solar, sun - static const IconData solidHouseDay = const IconDataSolid(0xe00e); - - /// Light House Day icon - /// - /// https://fontawesome.com/icons/light_house-day?style=light - /// abode, building, family, home, residence, solar, sun - static const IconData lightHouseDay = const IconDataLight(0xe00e); - - /// Duotone House Day icon - /// - /// https://fontawesome.com/icons/duotone_house-day?style=duotone - /// abode, building, family, home, residence, solar, sun - static const IconDataDuotone duotoneHouseDay = const IconDataDuotone( - 0xe00e, - secondary: const IconDataDuotone(0x10e00e), - ); - - /// Regular Flooded House icon - /// - /// https://fontawesome.com/icons/house-flood?style=regular - /// building, devastation, disaster, home, insurance, water - static const IconData houseFlood = const IconDataRegular(0xf74f); - - /// Solid Flooded House icon - /// - /// https://fontawesome.com/icons/house-flood?style=solid - /// building, devastation, disaster, home, insurance, water - static const IconData solidHouseFlood = const IconDataSolid(0xf74f); - - /// Light Flooded House icon - /// - /// https://fontawesome.com/icons/light_house-flood?style=light - /// building, devastation, disaster, home, insurance, water - static const IconData lightHouseFlood = const IconDataLight(0xf74f); - - /// Duotone Flooded House icon - /// - /// https://fontawesome.com/icons/duotone_house-flood?style=duotone - /// building, devastation, disaster, home, insurance, water - static const IconDataDuotone duotoneHouseFlood = const IconDataDuotone( - 0xf74f, - secondary: const IconDataDuotone(0x10f74f), - ); - - /// Regular House Leave icon - /// - /// https://fontawesome.com/icons/house-leave?style=regular - /// abode, building, depart, family, home, residence, work - static const IconData houseLeave = const IconDataRegular(0xe00f); - - /// Solid House Leave icon - /// - /// https://fontawesome.com/icons/house-leave?style=solid - /// abode, building, depart, family, home, residence, work - static const IconData solidHouseLeave = const IconDataSolid(0xe00f); - - /// Light House Leave icon - /// - /// https://fontawesome.com/icons/light_house-leave?style=light - /// abode, building, depart, family, home, residence, work - static const IconData lightHouseLeave = const IconDataLight(0xe00f); - - /// Duotone House Leave icon - /// - /// https://fontawesome.com/icons/duotone_house-leave?style=duotone - /// abode, building, depart, family, home, residence, work - static const IconDataDuotone duotoneHouseLeave = const IconDataDuotone( - 0xe00f, - secondary: const IconDataDuotone(0x10e00f), - ); - - /// Regular House Night icon - /// - /// https://fontawesome.com/icons/house-night?style=regular - /// abode, building, family, home, moon, residence, stars - static const IconData houseNight = const IconDataRegular(0xe010); - - /// Solid House Night icon - /// - /// https://fontawesome.com/icons/house-night?style=solid - /// abode, building, family, home, moon, residence, stars - static const IconData solidHouseNight = const IconDataSolid(0xe010); - - /// Light House Night icon - /// - /// https://fontawesome.com/icons/light_house-night?style=light - /// abode, building, family, home, moon, residence, stars - static const IconData lightHouseNight = const IconDataLight(0xe010); - - /// Duotone House Night icon - /// - /// https://fontawesome.com/icons/duotone_house-night?style=duotone - /// abode, building, family, home, moon, residence, stars - static const IconDataDuotone duotoneHouseNight = const IconDataDuotone( - 0xe010, - secondary: const IconDataDuotone(0x10e010), - ); - - /// Regular House Return icon - /// - /// https://fontawesome.com/icons/house-return?style=regular - /// abode, arrival, building, family, home, residence - static const IconData houseReturn = const IconDataRegular(0xe011); - - /// Solid House Return icon - /// - /// https://fontawesome.com/icons/house-return?style=solid - /// abode, arrival, building, family, home, residence - static const IconData solidHouseReturn = const IconDataSolid(0xe011); - - /// Light House Return icon - /// - /// https://fontawesome.com/icons/light_house-return?style=light - /// abode, arrival, building, family, home, residence - static const IconData lightHouseReturn = const IconDataLight(0xe011); - - /// Duotone House Return icon - /// - /// https://fontawesome.com/icons/duotone_house-return?style=duotone - /// abode, arrival, building, family, home, residence - static const IconDataDuotone duotoneHouseReturn = const IconDataDuotone( - 0xe011, - secondary: const IconDataDuotone(0x10e011), - ); - - /// Regular House Signal icon - /// - /// https://fontawesome.com/icons/house-signal?style=regular - /// abode, building, connect, family, home, residence, smart home, wifi - static const IconData houseSignal = const IconDataRegular(0xe012); - - /// Solid House Signal icon - /// - /// https://fontawesome.com/icons/house-signal?style=solid - /// abode, building, connect, family, home, residence, smart home, wifi - static const IconData solidHouseSignal = const IconDataSolid(0xe012); - - /// Light House Signal icon - /// - /// https://fontawesome.com/icons/light_house-signal?style=light - /// abode, building, connect, family, home, residence, smart home, wifi - static const IconData lightHouseSignal = const IconDataLight(0xe012); - - /// Duotone House Signal icon - /// - /// https://fontawesome.com/icons/duotone_house-signal?style=duotone - /// abode, building, connect, family, home, residence, smart home, wifi - static const IconDataDuotone duotoneHouseSignal = const IconDataDuotone( - 0xe012, - secondary: const IconDataDuotone(0x10e012), - ); - - /// Regular House User icon - /// - /// https://fontawesome.com/icons/house-user?style=regular - /// covid-19, home, isolation, quarantine - static const IconData houseUser = const IconDataRegular(0xe065); - - /// Light House User icon - /// - /// https://fontawesome.com/icons/light_house-user?style=light - /// covid-19, home, isolation, quarantine - static const IconData lightHouseUser = const IconDataLight(0xe065); - - /// Solid House User icon - /// - /// https://fontawesome.com/icons/house-user?style=solid - /// covid-19, home, isolation, quarantine - static const IconData solidHouseUser = const IconDataSolid(0xe065); - - /// Duotone House User icon - /// - /// https://fontawesome.com/icons/duotone_house-user?style=duotone - /// covid-19, home, isolation, quarantine - static const IconDataDuotone duotoneHouseUser = const IconDataDuotone( - 0xe065, - secondary: const IconDataDuotone(0x10e065), - ); - - /// Brands Houzz icon - /// - /// https://fontawesome.com/icons/houzz?style=brands - static const IconData houzz = const IconDataBrands(0xf27c); - - /// Regular Hryvnia icon - /// - /// https://fontawesome.com/icons/hryvnia?style=regular - /// currency, money, ukraine, ukrainian - static const IconData hryvnia = const IconDataRegular(0xf6f2); - - /// Solid Hryvnia icon - /// - /// https://fontawesome.com/icons/hryvnia?style=solid - /// currency, money, ukraine, ukrainian - static const IconData solidHryvnia = const IconDataSolid(0xf6f2); - - /// Light Hryvnia icon - /// - /// https://fontawesome.com/icons/light_hryvnia?style=light - /// currency, money, ukraine, ukrainian - static const IconData lightHryvnia = const IconDataLight(0xf6f2); - - /// Duotone Hryvnia icon - /// - /// https://fontawesome.com/icons/duotone_hryvnia?style=duotone - /// currency, money, ukraine, ukrainian - static const IconDataDuotone duotoneHryvnia = const IconDataDuotone( - 0xf6f2, - secondary: const IconDataDuotone(0x10f6f2), - ); - - /// Brands HTML 5 Logo icon - /// - /// https://fontawesome.com/icons/html5?style=brands - static const IconData html5 = const IconDataBrands(0xf13b); - - /// Brands HubSpot icon - /// - /// https://fontawesome.com/icons/hubspot?style=brands - static const IconData hubspot = const IconDataBrands(0xf3b2); - - /// Regular Humidity icon - /// - /// https://fontawesome.com/icons/humidity?style=regular - /// evaporation, fog, precipitation, rain - static const IconData humidity = const IconDataRegular(0xf750); - - /// Solid Humidity icon - /// - /// https://fontawesome.com/icons/humidity?style=solid - /// evaporation, fog, precipitation, rain - static const IconData solidHumidity = const IconDataSolid(0xf750); - - /// Light Humidity icon - /// - /// https://fontawesome.com/icons/light_humidity?style=light - /// evaporation, fog, precipitation, rain - static const IconData lightHumidity = const IconDataLight(0xf750); - - /// Duotone Humidity icon - /// - /// https://fontawesome.com/icons/duotone_humidity?style=duotone - /// evaporation, fog, precipitation, rain - static const IconDataDuotone duotoneHumidity = const IconDataDuotone( - 0xf750, - secondary: const IconDataDuotone(0x10f750), - ); - - /// Regular Hurricane icon - /// - /// https://fontawesome.com/icons/hurricane?style=regular - /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData hurricane = const IconDataRegular(0xf751); - - /// Solid Hurricane icon - /// - /// https://fontawesome.com/icons/hurricane?style=solid - /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData solidHurricane = const IconDataSolid(0xf751); - - /// Light Hurricane icon - /// - /// https://fontawesome.com/icons/light_hurricane?style=light - /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconData lightHurricane = const IconDataLight(0xf751); - - /// Duotone Hurricane icon - /// - /// https://fontawesome.com/icons/duotone_hurricane?style=duotone - /// coriolis effect, eye, storm, tropical cyclone, typhoon - static const IconDataDuotone duotoneHurricane = const IconDataDuotone( - 0xf751, - secondary: const IconDataDuotone(0x10f751), - ); - - /// Regular I Beam Cursor icon - /// - /// https://fontawesome.com/icons/i-cursor?style=regular - /// editing, i-beam, type, writing - static const IconData iCursor = const IconDataRegular(0xf246); - - /// Solid I Beam Cursor icon - /// - /// https://fontawesome.com/icons/i-cursor?style=solid - /// editing, i-beam, type, writing - static const IconData solidICursor = const IconDataSolid(0xf246); - - /// Light I Beam Cursor icon - /// - /// https://fontawesome.com/icons/light_i-cursor?style=light - /// editing, i-beam, type, writing - static const IconData lightICursor = const IconDataLight(0xf246); - - /// Duotone I Beam Cursor icon - /// - /// https://fontawesome.com/icons/duotone_i-cursor?style=duotone - /// editing, i-beam, type, writing - static const IconDataDuotone duotoneICursor = const IconDataDuotone( - 0xf246, - secondary: const IconDataDuotone(0x10f246), - ); - - /// Regular Ice Cream icon - /// - /// https://fontawesome.com/icons/ice-cream?style=regular - /// chocolate, cone, dessert, frozen, scoop, sorbet, vanilla, yogurt - static const IconData iceCream = const IconDataRegular(0xf810); - - /// Solid Ice Cream icon - /// - /// https://fontawesome.com/icons/ice-cream?style=solid - /// chocolate, cone, dessert, frozen, scoop, sorbet, vanilla, yogurt - static const IconData solidIceCream = const IconDataSolid(0xf810); - - /// Light Ice Cream icon - /// - /// https://fontawesome.com/icons/light_ice-cream?style=light - /// chocolate, cone, dessert, frozen, scoop, sorbet, vanilla, yogurt - static const IconData lightIceCream = const IconDataLight(0xf810); - - /// Duotone Ice Cream icon - /// - /// https://fontawesome.com/icons/duotone_ice-cream?style=duotone - /// chocolate, cone, dessert, frozen, scoop, sorbet, vanilla, yogurt - static const IconDataDuotone duotoneIceCream = const IconDataDuotone( - 0xf810, - secondary: const IconDataDuotone(0x10f810), - ); - - /// Regular Ice Skate icon - /// - /// https://fontawesome.com/icons/ice-skate?style=regular - /// blade, clothing, figure skating, hockey, seasonal, shoe - static const IconData iceSkate = const IconDataRegular(0xf7ac); - - /// Solid Ice Skate icon - /// - /// https://fontawesome.com/icons/ice-skate?style=solid - /// blade, clothing, figure skating, hockey, seasonal, shoe - static const IconData solidIceSkate = const IconDataSolid(0xf7ac); - - /// Light Ice Skate icon - /// - /// https://fontawesome.com/icons/light_ice-skate?style=light - /// blade, clothing, figure skating, hockey, seasonal, shoe - static const IconData lightIceSkate = const IconDataLight(0xf7ac); - - /// Duotone Ice Skate icon - /// - /// https://fontawesome.com/icons/duotone_ice-skate?style=duotone - /// blade, clothing, figure skating, hockey, seasonal, shoe - static const IconDataDuotone duotoneIceSkate = const IconDataDuotone( - 0xf7ac, - secondary: const IconDataDuotone(0x10f7ac), - ); - - /// Regular Icicles icon - /// - /// https://fontawesome.com/icons/icicles?style=regular - /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData icicles = const IconDataRegular(0xf7ad); - - /// Solid Icicles icon - /// - /// https://fontawesome.com/icons/icicles?style=solid - /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData solidIcicles = const IconDataSolid(0xf7ad); - - /// Light Icicles icon - /// - /// https://fontawesome.com/icons/light_icicles?style=light - /// cold, frozen, hanging, ice, seasonal, sharp - static const IconData lightIcicles = const IconDataLight(0xf7ad); - - /// Duotone Icicles icon - /// - /// https://fontawesome.com/icons/duotone_icicles?style=duotone - /// cold, frozen, hanging, ice, seasonal, sharp - static const IconDataDuotone duotoneIcicles = const IconDataDuotone( - 0xf7ad, - secondary: const IconDataDuotone(0x10f7ad), - ); - - /// Regular Icons icon - /// - /// https://fontawesome.com/icons/icons?style=regular - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData icons = const IconDataRegular(0xf86d); - - /// Solid Icons icon - /// - /// https://fontawesome.com/icons/icons?style=solid - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData solidIcons = const IconDataSolid(0xf86d); - - /// Light Icons icon - /// - /// https://fontawesome.com/icons/light_icons?style=light - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData lightIcons = const IconDataLight(0xf86d); - - /// Duotone Icons icon - /// - /// https://fontawesome.com/icons/duotone_icons?style=duotone - /// bolt, emoji, heart, image, music, photo, symbols - static const IconDataDuotone duotoneIcons = const IconDataDuotone( - 0xf86d, - secondary: const IconDataDuotone(0x10f86d), - ); - - /// Regular Alternate Icons icon - /// - /// https://fontawesome.com/icons/icons-alt?style=regular - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData iconsAlt = const IconDataRegular(0xf86e); - - /// Solid Alternate Icons icon - /// - /// https://fontawesome.com/icons/icons-alt?style=solid - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData solidIconsAlt = const IconDataSolid(0xf86e); - - /// Light Alternate Icons icon - /// - /// https://fontawesome.com/icons/light_icons-alt?style=light - /// bolt, emoji, heart, image, music, photo, symbols - static const IconData lightIconsAlt = const IconDataLight(0xf86e); - - /// Duotone Alternate Icons icon - /// - /// https://fontawesome.com/icons/duotone_icons-alt?style=duotone - /// bolt, emoji, heart, image, music, photo, symbols - static const IconDataDuotone duotoneIconsAlt = const IconDataDuotone( - 0xf86e, - secondary: const IconDataDuotone(0x10f86e), - ); - - /// Regular Identification Badge icon - /// - /// https://fontawesome.com/icons/id-badge?style=regular - /// address, contact, identification, license, profile - static const IconData idBadge = const IconDataRegular(0xf2c1); - - /// Solid Identification Badge icon - /// - /// https://fontawesome.com/icons/id-badge?style=solid - /// address, contact, identification, license, profile - static const IconData solidIdBadge = const IconDataSolid(0xf2c1); - - /// Light Identification Badge icon - /// - /// https://fontawesome.com/icons/light_id-badge?style=light - /// address, contact, identification, license, profile - static const IconData lightIdBadge = const IconDataLight(0xf2c1); - - /// Duotone Identification Badge icon - /// - /// https://fontawesome.com/icons/duotone_id-badge?style=duotone - /// address, contact, identification, license, profile - static const IconDataDuotone duotoneIdBadge = const IconDataDuotone( - 0xf2c1, - secondary: const IconDataDuotone(0x10f2c1), - ); - - /// Regular Identification Card icon - /// - /// https://fontawesome.com/icons/id-card?style=regular - /// contact, demographics, document, identification, issued, profile - static const IconData idCard = const IconDataRegular(0xf2c2); - - /// Solid Identification Card icon - /// - /// https://fontawesome.com/icons/id-card?style=solid - /// contact, demographics, document, identification, issued, profile - static const IconData solidIdCard = const IconDataSolid(0xf2c2); - - /// Light Identification Card icon - /// - /// https://fontawesome.com/icons/light_id-card?style=light - /// contact, demographics, document, identification, issued, profile - static const IconData lightIdCard = const IconDataLight(0xf2c2); - - /// Duotone Identification Card icon - /// - /// https://fontawesome.com/icons/duotone_id-card?style=duotone - /// contact, demographics, document, identification, issued, profile - static const IconDataDuotone duotoneIdCard = const IconDataDuotone( - 0xf2c2, - secondary: const IconDataDuotone(0x10f2c2), - ); - - /// Regular Alternate Identification Card icon - /// - /// https://fontawesome.com/icons/id-card-alt?style=regular - /// contact, demographics, document, identification, issued, profile - static const IconData idCardAlt = const IconDataRegular(0xf47f); - - /// Solid Alternate Identification Card icon - /// - /// https://fontawesome.com/icons/id-card-alt?style=solid - /// contact, demographics, document, identification, issued, profile - static const IconData solidIdCardAlt = const IconDataSolid(0xf47f); - - /// Light Alternate Identification Card icon - /// - /// https://fontawesome.com/icons/light_id-card-alt?style=light - /// contact, demographics, document, identification, issued, profile - static const IconData lightIdCardAlt = const IconDataLight(0xf47f); - - /// Duotone Alternate Identification Card icon - /// - /// https://fontawesome.com/icons/duotone_id-card-alt?style=duotone - /// contact, demographics, document, identification, issued, profile - static const IconDataDuotone duotoneIdCardAlt = const IconDataDuotone( - 0xf47f, - secondary: const IconDataDuotone(0x10f47f), - ); - - /// Brands iDeal icon - /// - /// https://fontawesome.com/icons/ideal?style=brands - static const IconData ideal = const IconDataBrands(0xe013); - - /// Regular Igloo icon - /// - /// https://fontawesome.com/icons/igloo?style=regular - /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData igloo = const IconDataRegular(0xf7ae); - - /// Solid Igloo icon - /// - /// https://fontawesome.com/icons/igloo?style=solid - /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData solidIgloo = const IconDataSolid(0xf7ae); - - /// Light Igloo icon - /// - /// https://fontawesome.com/icons/light_igloo?style=light - /// dome, dwelling, eskimo, home, house, ice, snow - static const IconData lightIgloo = const IconDataLight(0xf7ae); - - /// Duotone Igloo icon - /// - /// https://fontawesome.com/icons/duotone_igloo?style=duotone - /// dome, dwelling, eskimo, home, house, ice, snow - static const IconDataDuotone duotoneIgloo = const IconDataDuotone( - 0xf7ae, - secondary: const IconDataDuotone(0x10f7ae), - ); - - /// Regular Image icon - /// - /// https://fontawesome.com/icons/image?style=regular - /// album, landscape, photo, picture - static const IconData image = const IconDataRegular(0xf03e); - - /// Solid Image icon - /// - /// https://fontawesome.com/icons/image?style=solid - /// album, landscape, photo, picture - static const IconData solidImage = const IconDataSolid(0xf03e); - - /// Light Image icon - /// - /// https://fontawesome.com/icons/light_image?style=light - /// album, landscape, photo, picture - static const IconData lightImage = const IconDataLight(0xf03e); - - /// Duotone Image icon - /// - /// https://fontawesome.com/icons/duotone_image?style=duotone - /// album, landscape, photo, picture - static const IconDataDuotone duotoneImage = const IconDataDuotone( - 0xf03e, - secondary: const IconDataDuotone(0x10f03e), - ); - - /// Regular Polaroid Image icon - /// - /// https://fontawesome.com/icons/image-polaroid?style=regular - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData imagePolaroid = const IconDataRegular(0xf8c4); - - /// Solid Polaroid Image icon - /// - /// https://fontawesome.com/icons/image-polaroid?style=solid - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData solidImagePolaroid = const IconDataSolid(0xf8c4); - - /// Light Polaroid Image icon - /// - /// https://fontawesome.com/icons/light_image-polaroid?style=light - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconData lightImagePolaroid = const IconDataLight(0xf8c4); - - /// Duotone Polaroid Image icon - /// - /// https://fontawesome.com/icons/duotone_image-polaroid?style=duotone - /// capture, film, instant camera, lens, photo, photography, retro, snapshot, vintage - static const IconDataDuotone duotoneImagePolaroid = const IconDataDuotone( - 0xf8c4, - secondary: const IconDataDuotone(0x10f8c4), - ); - - /// Regular Images icon - /// - /// https://fontawesome.com/icons/images?style=regular - /// album, landscape, photo, picture - static const IconData images = const IconDataRegular(0xf302); - - /// Solid Images icon - /// - /// https://fontawesome.com/icons/images?style=solid - /// album, landscape, photo, picture - static const IconData solidImages = const IconDataSolid(0xf302); - - /// Light Images icon - /// - /// https://fontawesome.com/icons/light_images?style=light - /// album, landscape, photo, picture - static const IconData lightImages = const IconDataLight(0xf302); - - /// Duotone Images icon - /// - /// https://fontawesome.com/icons/duotone_images?style=duotone - /// album, landscape, photo, picture - static const IconDataDuotone duotoneImages = const IconDataDuotone( - 0xf302, - secondary: const IconDataDuotone(0x10f302), - ); - - /// Brands IMDB icon - /// - /// https://fontawesome.com/icons/imdb?style=brands - static const IconData imdb = const IconDataBrands(0xf2d8); - - /// Regular inbox icon - /// - /// https://fontawesome.com/icons/inbox?style=regular - /// archive, desk, email, mail, message - static const IconData inbox = const IconDataRegular(0xf01c); - - /// Solid inbox icon - /// - /// https://fontawesome.com/icons/inbox?style=solid - /// archive, desk, email, mail, message - static const IconData solidInbox = const IconDataSolid(0xf01c); - - /// Light inbox icon - /// - /// https://fontawesome.com/icons/light_inbox?style=light - /// archive, desk, email, mail, message - static const IconData lightInbox = const IconDataLight(0xf01c); - - /// Duotone inbox icon - /// - /// https://fontawesome.com/icons/duotone_inbox?style=duotone - /// archive, desk, email, mail, message - static const IconDataDuotone duotoneInbox = const IconDataDuotone( - 0xf01c, - secondary: const IconDataDuotone(0x10f01c), - ); - - /// Regular Inbox In icon - /// - /// https://fontawesome.com/icons/inbox-in?style=regular - /// archive, desk, email, mail, message - static const IconData inboxIn = const IconDataRegular(0xf310); - - /// Solid Inbox In icon - /// - /// https://fontawesome.com/icons/inbox-in?style=solid - /// archive, desk, email, mail, message - static const IconData solidInboxIn = const IconDataSolid(0xf310); - - /// Light Inbox In icon - /// - /// https://fontawesome.com/icons/light_inbox-in?style=light - /// archive, desk, email, mail, message - static const IconData lightInboxIn = const IconDataLight(0xf310); - - /// Duotone Inbox In icon - /// - /// https://fontawesome.com/icons/duotone_inbox-in?style=duotone - /// archive, desk, email, mail, message - static const IconDataDuotone duotoneInboxIn = const IconDataDuotone( - 0xf310, - secondary: const IconDataDuotone(0x10f310), - ); - - /// Regular Inbox Out icon - /// - /// https://fontawesome.com/icons/inbox-out?style=regular - /// archive, desk, email, mail, message - static const IconData inboxOut = const IconDataRegular(0xf311); - - /// Solid Inbox Out icon - /// - /// https://fontawesome.com/icons/inbox-out?style=solid - /// archive, desk, email, mail, message - static const IconData solidInboxOut = const IconDataSolid(0xf311); - - /// Light Inbox Out icon - /// - /// https://fontawesome.com/icons/light_inbox-out?style=light - /// archive, desk, email, mail, message - static const IconData lightInboxOut = const IconDataLight(0xf311); - - /// Duotone Inbox Out icon - /// - /// https://fontawesome.com/icons/duotone_inbox-out?style=duotone - /// archive, desk, email, mail, message - static const IconDataDuotone duotoneInboxOut = const IconDataDuotone( - 0xf311, - secondary: const IconDataDuotone(0x10f311), - ); - - /// Regular Indent icon - /// - /// https://fontawesome.com/icons/indent?style=regular - /// align, justify, paragraph, tab - static const IconData indent = const IconDataRegular(0xf03c); - - /// Solid Indent icon - /// - /// https://fontawesome.com/icons/indent?style=solid - /// align, justify, paragraph, tab - static const IconData solidIndent = const IconDataSolid(0xf03c); - - /// Light Indent icon - /// - /// https://fontawesome.com/icons/light_indent?style=light - /// align, justify, paragraph, tab - static const IconData lightIndent = const IconDataLight(0xf03c); - - /// Duotone Indent icon - /// - /// https://fontawesome.com/icons/duotone_indent?style=duotone - /// align, justify, paragraph, tab - static const IconDataDuotone duotoneIndent = const IconDataDuotone( - 0xf03c, - secondary: const IconDataDuotone(0x10f03c), - ); - - /// Regular Industry icon - /// - /// https://fontawesome.com/icons/industry?style=regular - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData industry = const IconDataRegular(0xf275); - - /// Solid Industry icon - /// - /// https://fontawesome.com/icons/industry?style=solid - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData solidIndustry = const IconDataSolid(0xf275); - - /// Light Industry icon - /// - /// https://fontawesome.com/icons/light_industry?style=light - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData lightIndustry = const IconDataLight(0xf275); - - /// Duotone Industry icon - /// - /// https://fontawesome.com/icons/duotone_industry?style=duotone - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconDataDuotone duotoneIndustry = const IconDataDuotone( - 0xf275, - secondary: const IconDataDuotone(0x10f275), - ); - - /// Regular Alternate Industry icon - /// - /// https://fontawesome.com/icons/industry-alt?style=regular - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData industryAlt = const IconDataRegular(0xf3b3); - - /// Solid Alternate Industry icon - /// - /// https://fontawesome.com/icons/industry-alt?style=solid - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData solidIndustryAlt = const IconDataSolid(0xf3b3); - - /// Light Alternate Industry icon - /// - /// https://fontawesome.com/icons/light_industry-alt?style=light - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconData lightIndustryAlt = const IconDataLight(0xf3b3); - - /// Duotone Alternate Industry icon - /// - /// https://fontawesome.com/icons/duotone_industry-alt?style=duotone - /// building, factory, industrial, manufacturing, mill, warehouse - static const IconDataDuotone duotoneIndustryAlt = const IconDataDuotone( - 0xf3b3, - secondary: const IconDataDuotone(0x10f3b3), - ); - - /// Regular Infinity icon - /// - /// https://fontawesome.com/icons/infinity?style=regular - /// eternity, forever, math - static const IconData infinity = const IconDataRegular(0xf534); - - /// Solid Infinity icon - /// - /// https://fontawesome.com/icons/infinity?style=solid - /// eternity, forever, math - static const IconData solidInfinity = const IconDataSolid(0xf534); - - /// Light Infinity icon - /// - /// https://fontawesome.com/icons/light_infinity?style=light - /// eternity, forever, math - static const IconData lightInfinity = const IconDataLight(0xf534); - - /// Duotone Infinity icon - /// - /// https://fontawesome.com/icons/duotone_infinity?style=duotone - /// eternity, forever, math - static const IconDataDuotone duotoneInfinity = const IconDataDuotone( - 0xf534, - secondary: const IconDataDuotone(0x10f534), - ); - - /// Regular Info icon - /// - /// https://fontawesome.com/icons/info?style=regular - /// details, help, information, more, support - static const IconData info = const IconDataRegular(0xf129); - - /// Solid Info icon - /// - /// https://fontawesome.com/icons/info?style=solid - /// details, help, information, more, support - static const IconData solidInfo = const IconDataSolid(0xf129); - - /// Light Info icon - /// - /// https://fontawesome.com/icons/light_info?style=light - /// details, help, information, more, support - static const IconData lightInfo = const IconDataLight(0xf129); - - /// Duotone Info icon - /// - /// https://fontawesome.com/icons/duotone_info?style=duotone - /// details, help, information, more, support - static const IconDataDuotone duotoneInfo = const IconDataDuotone( - 0xf129, - secondary: const IconDataDuotone(0x10f129), - ); - - /// Regular Info Circle icon - /// - /// https://fontawesome.com/icons/info-circle?style=regular - /// details, help, information, more, support - static const IconData infoCircle = const IconDataRegular(0xf05a); - - /// Solid Info Circle icon - /// - /// https://fontawesome.com/icons/info-circle?style=solid - /// details, help, information, more, support - static const IconData solidInfoCircle = const IconDataSolid(0xf05a); - - /// Light Info Circle icon - /// - /// https://fontawesome.com/icons/light_info-circle?style=light - /// details, help, information, more, support - static const IconData lightInfoCircle = const IconDataLight(0xf05a); - - /// Duotone Info Circle icon - /// - /// https://fontawesome.com/icons/duotone_info-circle?style=duotone - /// details, help, information, more, support - static const IconDataDuotone duotoneInfoCircle = const IconDataDuotone( - 0xf05a, - secondary: const IconDataDuotone(0x10f05a), - ); - - /// Regular Info Square icon - /// - /// https://fontawesome.com/icons/info-square?style=regular - /// details, help, information, more, support - static const IconData infoSquare = const IconDataRegular(0xf30f); - - /// Solid Info Square icon - /// - /// https://fontawesome.com/icons/info-square?style=solid - /// details, help, information, more, support - static const IconData solidInfoSquare = const IconDataSolid(0xf30f); - - /// Light Info Square icon - /// - /// https://fontawesome.com/icons/light_info-square?style=light - /// details, help, information, more, support - static const IconData lightInfoSquare = const IconDataLight(0xf30f); - - /// Duotone Info Square icon - /// - /// https://fontawesome.com/icons/duotone_info-square?style=duotone - /// details, help, information, more, support - static const IconDataDuotone duotoneInfoSquare = const IconDataDuotone( - 0xf30f, - secondary: const IconDataDuotone(0x10f30f), - ); - - /// Regular Inhaler icon - /// - /// https://fontawesome.com/icons/inhaler?style=regular - /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData inhaler = const IconDataRegular(0xf5f9); - - /// Solid Inhaler icon - /// - /// https://fontawesome.com/icons/inhaler?style=solid - /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData solidInhaler = const IconDataSolid(0xf5f9); - - /// Light Inhaler icon - /// - /// https://fontawesome.com/icons/light_inhaler?style=light - /// asthma, cough, lungs, nebulizer, vaporizer - static const IconData lightInhaler = const IconDataLight(0xf5f9); - - /// Duotone Inhaler icon - /// - /// https://fontawesome.com/icons/duotone_inhaler?style=duotone - /// asthma, cough, lungs, nebulizer, vaporizer - static const IconDataDuotone duotoneInhaler = const IconDataDuotone( - 0xf5f9, - secondary: const IconDataDuotone(0x10f5f9), - ); - - /// Brands Innosoft icon - /// - /// https://fontawesome.com/icons/innosoft?style=brands - static const IconData innosoft = const IconDataBrands(0xe080); - - /// Brands Instagram icon - /// - /// https://fontawesome.com/icons/instagram?style=brands - static const IconData instagram = const IconDataBrands(0xf16d); - - /// Brands Instagram Square icon - /// - /// https://fontawesome.com/icons/instagram-square?style=brands - static const IconData instagramSquare = const IconDataBrands(0xe055); - - /// Brands InstaLOD icon - /// - /// https://fontawesome.com/icons/instalod?style=brands - static const IconData instalod = const IconDataBrands(0xe081); - - /// Regular Integral icon - /// - /// https://fontawesome.com/icons/integral?style=regular - /// calculus, equation, function, math - static const IconData integral = const IconDataRegular(0xf667); - - /// Solid Integral icon - /// - /// https://fontawesome.com/icons/integral?style=solid - /// calculus, equation, function, math - static const IconData solidIntegral = const IconDataSolid(0xf667); - - /// Light Integral icon - /// - /// https://fontawesome.com/icons/light_integral?style=light - /// calculus, equation, function, math - static const IconData lightIntegral = const IconDataLight(0xf667); - - /// Duotone Integral icon - /// - /// https://fontawesome.com/icons/duotone_integral?style=duotone - /// calculus, equation, function, math - static const IconDataDuotone duotoneIntegral = const IconDataDuotone( - 0xf667, - secondary: const IconDataDuotone(0x10f667), - ); - - /// Brands Intercom icon - /// - /// https://fontawesome.com/icons/intercom?style=brands - /// app, customer, messenger - static const IconData intercom = const IconDataBrands(0xf7af); - - /// Brands Internet-explorer icon - /// - /// https://fontawesome.com/icons/internet-explorer?style=brands - /// browser, ie - static const IconData internetExplorer = const IconDataBrands(0xf26b); - - /// Regular Intersection icon - /// - /// https://fontawesome.com/icons/intersection?style=regular - /// calculus, equation, function, math - static const IconData intersection = const IconDataRegular(0xf668); - - /// Solid Intersection icon - /// - /// https://fontawesome.com/icons/intersection?style=solid - /// calculus, equation, function, math - static const IconData solidIntersection = const IconDataSolid(0xf668); - - /// Light Intersection icon - /// - /// https://fontawesome.com/icons/light_intersection?style=light - /// calculus, equation, function, math - static const IconData lightIntersection = const IconDataLight(0xf668); - - /// Duotone Intersection icon - /// - /// https://fontawesome.com/icons/duotone_intersection?style=duotone - /// calculus, equation, function, math - static const IconDataDuotone duotoneIntersection = const IconDataDuotone( - 0xf668, - secondary: const IconDataDuotone(0x10f668), - ); - - /// Regular Inventory icon - /// - /// https://fontawesome.com/icons/inventory?style=regular - /// archive, box, shipping, warehouse - static const IconData inventory = const IconDataRegular(0xf480); - - /// Solid Inventory icon - /// - /// https://fontawesome.com/icons/inventory?style=solid - /// archive, box, shipping, warehouse - static const IconData solidInventory = const IconDataSolid(0xf480); - - /// Light Inventory icon - /// - /// https://fontawesome.com/icons/light_inventory?style=light - /// archive, box, shipping, warehouse - static const IconData lightInventory = const IconDataLight(0xf480); - - /// Duotone Inventory icon - /// - /// https://fontawesome.com/icons/duotone_inventory?style=duotone - /// archive, box, shipping, warehouse - static const IconDataDuotone duotoneInventory = const IconDataDuotone( - 0xf480, - secondary: const IconDataDuotone(0x10f480), - ); - - /// Brands InVision icon - /// - /// https://fontawesome.com/icons/invision?style=brands - /// app, design, interface - static const IconData invision = const IconDataBrands(0xf7b0); - - /// Brands ioxhost icon - /// - /// https://fontawesome.com/icons/ioxhost?style=brands - static const IconData ioxhost = const IconDataBrands(0xf208); - - /// Regular Tropical Island icon - /// - /// https://fontawesome.com/icons/island-tropical?style=regular - /// castaway, desert, palm tree, sand, stranded, summer, vacation - static const IconData islandTropical = const IconDataRegular(0xf811); - - /// Solid Tropical Island icon - /// - /// https://fontawesome.com/icons/island-tropical?style=solid - /// castaway, desert, palm tree, sand, stranded, summer, vacation - static const IconData solidIslandTropical = const IconDataSolid(0xf811); - - /// Light Tropical Island icon - /// - /// https://fontawesome.com/icons/light_island-tropical?style=light - /// castaway, desert, palm tree, sand, stranded, summer, vacation - static const IconData lightIslandTropical = const IconDataLight(0xf811); - - /// Duotone Tropical Island icon - /// - /// https://fontawesome.com/icons/duotone_island-tropical?style=duotone - /// castaway, desert, palm tree, sand, stranded, summer, vacation - static const IconDataDuotone duotoneIslandTropical = const IconDataDuotone( - 0xf811, - secondary: const IconDataDuotone(0x10f811), - ); - - /// Regular italic icon - /// - /// https://fontawesome.com/icons/italic?style=regular - /// edit, emphasis, font, format, text, type - static const IconData italic = const IconDataRegular(0xf033); - - /// Solid italic icon - /// - /// https://fontawesome.com/icons/italic?style=solid - /// edit, emphasis, font, format, text, type - static const IconData solidItalic = const IconDataSolid(0xf033); - - /// Light italic icon - /// - /// https://fontawesome.com/icons/light_italic?style=light - /// edit, emphasis, font, format, text, type - static const IconData lightItalic = const IconDataLight(0xf033); - - /// Duotone italic icon - /// - /// https://fontawesome.com/icons/duotone_italic?style=duotone - /// edit, emphasis, font, format, text, type - static const IconDataDuotone duotoneItalic = const IconDataDuotone( - 0xf033, - secondary: const IconDataDuotone(0x10f033), - ); - - /// Brands itch.io icon - /// - /// https://fontawesome.com/icons/itch-io?style=brands - static const IconData itchIo = const IconDataBrands(0xf83a); - - /// Brands iTunes icon - /// - /// https://fontawesome.com/icons/itunes?style=brands - static const IconData itunes = const IconDataBrands(0xf3b4); - - /// Brands Itunes Note icon - /// - /// https://fontawesome.com/icons/itunes-note?style=brands - static const IconData itunesNote = const IconDataBrands(0xf3b5); - - /// Regular Jack-o'-lantern icon - /// - /// https://fontawesome.com/icons/jack-o-lantern?style=regular - /// carve, face, halloween, lantern, pumpkin, smile - static const IconData jackOLantern = const IconDataRegular(0xf30e); - - /// Solid Jack-o'-lantern icon - /// - /// https://fontawesome.com/icons/jack-o-lantern?style=solid - /// carve, face, halloween, lantern, pumpkin, smile - static const IconData solidJackOLantern = const IconDataSolid(0xf30e); - - /// Light Jack-o'-lantern icon - /// - /// https://fontawesome.com/icons/light_jack-o-lantern?style=light - /// carve, face, halloween, lantern, pumpkin, smile - static const IconData lightJackOLantern = const IconDataLight(0xf30e); - - /// Duotone Jack-o'-lantern icon - /// - /// https://fontawesome.com/icons/duotone_jack-o-lantern?style=duotone - /// carve, face, halloween, lantern, pumpkin, smile - static const IconDataDuotone duotoneJackOLantern = const IconDataDuotone( - 0xf30e, - secondary: const IconDataDuotone(0x10f30e), - ); - - /// Brands Java icon - /// - /// https://fontawesome.com/icons/java?style=brands - static const IconData java = const IconDataBrands(0xf4e4); - - /// Regular Jedi icon - /// - /// https://fontawesome.com/icons/jedi?style=regular - /// crest, force, sith, skywalker, star wars, yoda - static const IconData jedi = const IconDataRegular(0xf669); - - /// Solid Jedi icon - /// - /// https://fontawesome.com/icons/jedi?style=solid - /// crest, force, sith, skywalker, star wars, yoda - static const IconData solidJedi = const IconDataSolid(0xf669); - - /// Light Jedi icon - /// - /// https://fontawesome.com/icons/light_jedi?style=light - /// crest, force, sith, skywalker, star wars, yoda - static const IconData lightJedi = const IconDataLight(0xf669); - - /// Duotone Jedi icon - /// - /// https://fontawesome.com/icons/duotone_jedi?style=duotone - /// crest, force, sith, skywalker, star wars, yoda - static const IconDataDuotone duotoneJedi = const IconDataDuotone( - 0xf669, - secondary: const IconDataDuotone(0x10f669), - ); - - /// Brands Jedi Order icon - /// - /// https://fontawesome.com/icons/jedi-order?style=brands - /// star wars - static const IconData jediOrder = const IconDataBrands(0xf50e); - - /// Brands Jenkis icon - /// - /// https://fontawesome.com/icons/jenkins?style=brands - static const IconData jenkins = const IconDataBrands(0xf3b6); - - /// Brands Jira icon - /// - /// https://fontawesome.com/icons/jira?style=brands - /// atlassian - static const IconData jira = const IconDataBrands(0xf7b1); - - /// Brands Joget icon - /// - /// https://fontawesome.com/icons/joget?style=brands - static const IconData joget = const IconDataBrands(0xf3b7); - - /// Regular Joint icon - /// - /// https://fontawesome.com/icons/joint?style=regular - /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData joint = const IconDataRegular(0xf595); - - /// Solid Joint icon - /// - /// https://fontawesome.com/icons/joint?style=solid - /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData solidJoint = const IconDataSolid(0xf595); - - /// Light Joint icon - /// - /// https://fontawesome.com/icons/light_joint?style=light - /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconData lightJoint = const IconDataLight(0xf595); - - /// Duotone Joint icon - /// - /// https://fontawesome.com/icons/duotone_joint?style=duotone - /// blunt, cannabis, doobie, drugs, marijuana, roach, smoke, smoking, spliff - static const IconDataDuotone duotoneJoint = const IconDataDuotone( - 0xf595, - secondary: const IconDataDuotone(0x10f595), - ); - - /// Brands Joomla Logo icon - /// - /// https://fontawesome.com/icons/joomla?style=brands - static const IconData joomla = const IconDataBrands(0xf1aa); - - /// Regular Journal of the Whills icon - /// - /// https://fontawesome.com/icons/journal-whills?style=regular - /// book, force, jedi, sith, star wars, yoda - static const IconData journalWhills = const IconDataRegular(0xf66a); - - /// Solid Journal of the Whills icon - /// - /// https://fontawesome.com/icons/journal-whills?style=solid - /// book, force, jedi, sith, star wars, yoda - static const IconData solidJournalWhills = const IconDataSolid(0xf66a); - - /// Light Journal of the Whills icon - /// - /// https://fontawesome.com/icons/light_journal-whills?style=light - /// book, force, jedi, sith, star wars, yoda - static const IconData lightJournalWhills = const IconDataLight(0xf66a); - - /// Duotone Journal of the Whills icon - /// - /// https://fontawesome.com/icons/duotone_journal-whills?style=duotone - /// book, force, jedi, sith, star wars, yoda - static const IconDataDuotone duotoneJournalWhills = const IconDataDuotone( - 0xf66a, - secondary: const IconDataDuotone(0x10f66a), - ); - - /// Regular Joystick icon - /// - /// https://fontawesome.com/icons/joystick?style=regular - /// arcade, atari, controller, retro, video game, vintage - static const IconData joystick = const IconDataRegular(0xf8c5); - - /// Solid Joystick icon - /// - /// https://fontawesome.com/icons/joystick?style=solid - /// arcade, atari, controller, retro, video game, vintage - static const IconData solidJoystick = const IconDataSolid(0xf8c5); - - /// Light Joystick icon - /// - /// https://fontawesome.com/icons/light_joystick?style=light - /// arcade, atari, controller, retro, video game, vintage - static const IconData lightJoystick = const IconDataLight(0xf8c5); - - /// Duotone Joystick icon - /// - /// https://fontawesome.com/icons/duotone_joystick?style=duotone - /// arcade, atari, controller, retro, video game, vintage - static const IconDataDuotone duotoneJoystick = const IconDataDuotone( - 0xf8c5, - secondary: const IconDataDuotone(0x10f8c5), - ); - - /// Brands JavaScript (JS) icon - /// - /// https://fontawesome.com/icons/js?style=brands - static const IconData js = const IconDataBrands(0xf3b8); - - /// Brands JavaScript (JS) Square icon - /// - /// https://fontawesome.com/icons/js-square?style=brands - static const IconData jsSquare = const IconDataBrands(0xf3b9); - - /// Brands jsFiddle icon - /// - /// https://fontawesome.com/icons/jsfiddle?style=brands - static const IconData jsfiddle = const IconDataBrands(0xf1cc); - - /// Regular Jug icon - /// - /// https://fontawesome.com/icons/jug?style=regular - /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData jug = const IconDataRegular(0xf8c6); - - /// Light Jug icon - /// - /// https://fontawesome.com/icons/light_jug?style=light - /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData lightJug = const IconDataLight(0xf8c6); - - /// Solid Jug icon - /// - /// https://fontawesome.com/icons/jug?style=solid - /// beverage, bottle, drink, moonshine, pitcher, western - static const IconData solidJug = const IconDataSolid(0xf8c6); - - /// Duotone Jug icon - /// - /// https://fontawesome.com/icons/duotone_jug?style=duotone - /// beverage, bottle, drink, moonshine, pitcher, western - static const IconDataDuotone duotoneJug = const IconDataDuotone( - 0xf8c6, - secondary: const IconDataDuotone(0x10f8c6), - ); - - /// Regular Kaaba icon - /// - /// https://fontawesome.com/icons/kaaba?style=regular - /// building, cube, islam, muslim - static const IconData kaaba = const IconDataRegular(0xf66b); - - /// Solid Kaaba icon - /// - /// https://fontawesome.com/icons/kaaba?style=solid - /// building, cube, islam, muslim - static const IconData solidKaaba = const IconDataSolid(0xf66b); - - /// Light Kaaba icon - /// - /// https://fontawesome.com/icons/light_kaaba?style=light - /// building, cube, islam, muslim - static const IconData lightKaaba = const IconDataLight(0xf66b); - - /// Duotone Kaaba icon - /// - /// https://fontawesome.com/icons/duotone_kaaba?style=duotone - /// building, cube, islam, muslim - static const IconDataDuotone duotoneKaaba = const IconDataDuotone( - 0xf66b, - secondary: const IconDataDuotone(0x10f66b), - ); - - /// Brands Kaggle icon - /// - /// https://fontawesome.com/icons/kaggle?style=brands - static const IconData kaggle = const IconDataBrands(0xf5fa); - - /// Regular Kazoo icon - /// - /// https://fontawesome.com/icons/kazoo?style=regular - /// buzz, instrument, membranophone, mirliton, music - static const IconData kazoo = const IconDataRegular(0xf8c7); - - /// Solid Kazoo icon - /// - /// https://fontawesome.com/icons/kazoo?style=solid - /// buzz, instrument, membranophone, mirliton, music - static const IconData solidKazoo = const IconDataSolid(0xf8c7); - - /// Light Kazoo icon - /// - /// https://fontawesome.com/icons/light_kazoo?style=light - /// buzz, instrument, membranophone, mirliton, music - static const IconData lightKazoo = const IconDataLight(0xf8c7); - - /// Duotone Kazoo icon - /// - /// https://fontawesome.com/icons/duotone_kazoo?style=duotone - /// buzz, instrument, membranophone, mirliton, music - static const IconDataDuotone duotoneKazoo = const IconDataDuotone( - 0xf8c7, - secondary: const IconDataDuotone(0x10f8c7), - ); - - /// Regular Kerning icon - /// - /// https://fontawesome.com/icons/kerning?style=regular - /// adjust, font, spacing, text, tracking, type, typography - static const IconData kerning = const IconDataRegular(0xf86f); - - /// Solid Kerning icon - /// - /// https://fontawesome.com/icons/kerning?style=solid - /// adjust, font, spacing, text, tracking, type, typography - static const IconData solidKerning = const IconDataSolid(0xf86f); - - /// Light Kerning icon - /// - /// https://fontawesome.com/icons/light_kerning?style=light - /// adjust, font, spacing, text, tracking, type, typography - static const IconData lightKerning = const IconDataLight(0xf86f); - - /// Duotone Kerning icon - /// - /// https://fontawesome.com/icons/duotone_kerning?style=duotone - /// adjust, font, spacing, text, tracking, type, typography - static const IconDataDuotone duotoneKerning = const IconDataDuotone( - 0xf86f, - secondary: const IconDataDuotone(0x10f86f), - ); - - /// Regular key icon - /// - /// https://fontawesome.com/icons/key?style=regular - /// lock, password, private, secret, unlock - static const IconData key = const IconDataRegular(0xf084); - - /// Solid key icon - /// - /// https://fontawesome.com/icons/key?style=solid - /// lock, password, private, secret, unlock - static const IconData solidKey = const IconDataSolid(0xf084); - - /// Light key icon - /// - /// https://fontawesome.com/icons/light_key?style=light - /// lock, password, private, secret, unlock - static const IconData lightKey = const IconDataLight(0xf084); - - /// Duotone key icon - /// - /// https://fontawesome.com/icons/duotone_key?style=duotone - /// lock, password, private, secret, unlock - static const IconDataDuotone duotoneKey = const IconDataDuotone( - 0xf084, - secondary: const IconDataDuotone(0x10f084), - ); - - /// Regular Key Skeleton icon - /// - /// https://fontawesome.com/icons/key-skeleton?style=regular - /// halloween, lock, password, private, secret, unlock - static const IconData keySkeleton = const IconDataRegular(0xf6f3); - - /// Solid Key Skeleton icon - /// - /// https://fontawesome.com/icons/key-skeleton?style=solid - /// halloween, lock, password, private, secret, unlock - static const IconData solidKeySkeleton = const IconDataSolid(0xf6f3); - - /// Light Key Skeleton icon - /// - /// https://fontawesome.com/icons/light_key-skeleton?style=light - /// halloween, lock, password, private, secret, unlock - static const IconData lightKeySkeleton = const IconDataLight(0xf6f3); - - /// Duotone Key Skeleton icon - /// - /// https://fontawesome.com/icons/duotone_key-skeleton?style=duotone - /// halloween, lock, password, private, secret, unlock - static const IconDataDuotone duotoneKeySkeleton = const IconDataDuotone( - 0xf6f3, - secondary: const IconDataDuotone(0x10f6f3), - ); - - /// Brands Keybase icon - /// - /// https://fontawesome.com/icons/keybase?style=brands - static const IconData keybase = const IconDataBrands(0xf4f5); - - /// Regular Keyboard icon - /// - /// https://fontawesome.com/icons/keyboard?style=regular - /// accessory, edit, input, text, type, write - static const IconData keyboard = const IconDataRegular(0xf11c); - - /// Solid Keyboard icon - /// - /// https://fontawesome.com/icons/keyboard?style=solid - /// accessory, edit, input, text, type, write - static const IconData solidKeyboard = const IconDataSolid(0xf11c); - - /// Light Keyboard icon - /// - /// https://fontawesome.com/icons/light_keyboard?style=light - /// accessory, edit, input, text, type, write - static const IconData lightKeyboard = const IconDataLight(0xf11c); - - /// Duotone Keyboard icon - /// - /// https://fontawesome.com/icons/duotone_keyboard?style=duotone - /// accessory, edit, input, text, type, write - static const IconDataDuotone duotoneKeyboard = const IconDataDuotone( - 0xf11c, - secondary: const IconDataDuotone(0x10f11c), - ); - - /// Brands KeyCDN icon - /// - /// https://fontawesome.com/icons/keycdn?style=brands - static const IconData keycdn = const IconDataBrands(0xf3ba); - - /// Regular Keynote icon - /// - /// https://fontawesome.com/icons/keynote?style=regular - /// lecture, panel, seminar, speak, speaker, talk - static const IconData keynote = const IconDataRegular(0xf66c); - - /// Solid Keynote icon - /// - /// https://fontawesome.com/icons/keynote?style=solid - /// lecture, panel, seminar, speak, speaker, talk - static const IconData solidKeynote = const IconDataSolid(0xf66c); - - /// Light Keynote icon - /// - /// https://fontawesome.com/icons/light_keynote?style=light - /// lecture, panel, seminar, speak, speaker, talk - static const IconData lightKeynote = const IconDataLight(0xf66c); - - /// Duotone Keynote icon - /// - /// https://fontawesome.com/icons/duotone_keynote?style=duotone - /// lecture, panel, seminar, speak, speaker, talk - static const IconDataDuotone duotoneKeynote = const IconDataDuotone( - 0xf66c, - secondary: const IconDataDuotone(0x10f66c), - ); - - /// Regular Khanda icon - /// - /// https://fontawesome.com/icons/khanda?style=regular - /// chakkar, sikh, sikhism, sword - static const IconData khanda = const IconDataRegular(0xf66d); - - /// Solid Khanda icon - /// - /// https://fontawesome.com/icons/khanda?style=solid - /// chakkar, sikh, sikhism, sword - static const IconData solidKhanda = const IconDataSolid(0xf66d); - - /// Light Khanda icon - /// - /// https://fontawesome.com/icons/light_khanda?style=light - /// chakkar, sikh, sikhism, sword - static const IconData lightKhanda = const IconDataLight(0xf66d); - - /// Duotone Khanda icon - /// - /// https://fontawesome.com/icons/duotone_khanda?style=duotone - /// chakkar, sikh, sikhism, sword - static const IconDataDuotone duotoneKhanda = const IconDataDuotone( - 0xf66d, - secondary: const IconDataDuotone(0x10f66d), - ); - - /// Brands Kickstarter icon - /// - /// https://fontawesome.com/icons/kickstarter?style=brands - static const IconData kickstarter = const IconDataBrands(0xf3bb); - - /// Brands Kickstarter K icon - /// - /// https://fontawesome.com/icons/kickstarter-k?style=brands - static const IconData kickstarterK = const IconDataBrands(0xf3bc); - - /// Regular Kidneys icon - /// - /// https://fontawesome.com/icons/kidneys?style=regular - /// blood, body, organ, surgery, urine - static const IconData kidneys = const IconDataRegular(0xf5fb); - - /// Solid Kidneys icon - /// - /// https://fontawesome.com/icons/kidneys?style=solid - /// blood, body, organ, surgery, urine - static const IconData solidKidneys = const IconDataSolid(0xf5fb); - - /// Light Kidneys icon - /// - /// https://fontawesome.com/icons/light_kidneys?style=light - /// blood, body, organ, surgery, urine - static const IconData lightKidneys = const IconDataLight(0xf5fb); - - /// Duotone Kidneys icon - /// - /// https://fontawesome.com/icons/duotone_kidneys?style=duotone - /// blood, body, organ, surgery, urine - static const IconDataDuotone duotoneKidneys = const IconDataDuotone( - 0xf5fb, - secondary: const IconDataDuotone(0x10f5fb), - ); - - /// Regular Kissing Face icon - /// - /// https://fontawesome.com/icons/kiss?style=regular - /// beso, emoticon, face, love, smooch - static const IconData kiss = const IconDataRegular(0xf596); - - /// Solid Kissing Face icon - /// - /// https://fontawesome.com/icons/kiss?style=solid - /// beso, emoticon, face, love, smooch - static const IconData solidKiss = const IconDataSolid(0xf596); - - /// Light Kissing Face icon - /// - /// https://fontawesome.com/icons/light_kiss?style=light - /// beso, emoticon, face, love, smooch - static const IconData lightKiss = const IconDataLight(0xf596); - - /// Duotone Kissing Face icon - /// - /// https://fontawesome.com/icons/duotone_kiss?style=duotone - /// beso, emoticon, face, love, smooch - static const IconDataDuotone duotoneKiss = const IconDataDuotone( - 0xf596, - secondary: const IconDataDuotone(0x10f596), - ); - - /// Regular Kissing Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/kiss-beam?style=regular - /// beso, emoticon, face, love, smooch - static const IconData kissBeam = const IconDataRegular(0xf597); - - /// Solid Kissing Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/kiss-beam?style=solid - /// beso, emoticon, face, love, smooch - static const IconData solidKissBeam = const IconDataSolid(0xf597); - - /// Light Kissing Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/light_kiss-beam?style=light - /// beso, emoticon, face, love, smooch - static const IconData lightKissBeam = const IconDataLight(0xf597); - - /// Duotone Kissing Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/duotone_kiss-beam?style=duotone - /// beso, emoticon, face, love, smooch - static const IconDataDuotone duotoneKissBeam = const IconDataDuotone( - 0xf597, - secondary: const IconDataDuotone(0x10f597), - ); - - /// Regular Face Blowing a Kiss icon - /// - /// https://fontawesome.com/icons/kiss-wink-heart?style=regular - /// beso, emoticon, face, love, smooch - static const IconData kissWinkHeart = const IconDataRegular(0xf598); - - /// Solid Face Blowing a Kiss icon - /// - /// https://fontawesome.com/icons/kiss-wink-heart?style=solid - /// beso, emoticon, face, love, smooch - static const IconData solidKissWinkHeart = const IconDataSolid(0xf598); - - /// Light Face Blowing a Kiss icon - /// - /// https://fontawesome.com/icons/light_kiss-wink-heart?style=light - /// beso, emoticon, face, love, smooch - static const IconData lightKissWinkHeart = const IconDataLight(0xf598); - - /// Duotone Face Blowing a Kiss icon - /// - /// https://fontawesome.com/icons/duotone_kiss-wink-heart?style=duotone - /// beso, emoticon, face, love, smooch - static const IconDataDuotone duotoneKissWinkHeart = const IconDataDuotone( - 0xf598, - secondary: const IconDataDuotone(0x10f598), - ); - - /// Regular Kite icon - /// - /// https://fontawesome.com/icons/kite?style=regular - /// air, benjamin, fall, flying, franklin, outdoors, seasonal, sky, wind - static const IconData kite = const IconDataRegular(0xf6f4); - - /// Solid Kite icon - /// - /// https://fontawesome.com/icons/kite?style=solid - /// air, benjamin, fall, flying, franklin, outdoors, seasonal, sky, wind - static const IconData solidKite = const IconDataSolid(0xf6f4); - - /// Light Kite icon - /// - /// https://fontawesome.com/icons/light_kite?style=light - /// air, benjamin, fall, flying, franklin, outdoors, seasonal, sky, wind - static const IconData lightKite = const IconDataLight(0xf6f4); - - /// Duotone Kite icon - /// - /// https://fontawesome.com/icons/duotone_kite?style=duotone - /// air, benjamin, fall, flying, franklin, outdoors, seasonal, sky, wind - static const IconDataDuotone duotoneKite = const IconDataDuotone( - 0xf6f4, - secondary: const IconDataDuotone(0x10f6f4), - ); - - /// Regular Kiwi Bird icon - /// - /// https://fontawesome.com/icons/kiwi-bird?style=regular - /// bird, fauna, new zealand - static const IconData kiwiBird = const IconDataRegular(0xf535); - - /// Solid Kiwi Bird icon - /// - /// https://fontawesome.com/icons/kiwi-bird?style=solid - /// bird, fauna, new zealand - static const IconData solidKiwiBird = const IconDataSolid(0xf535); - - /// Light Kiwi Bird icon - /// - /// https://fontawesome.com/icons/light_kiwi-bird?style=light - /// bird, fauna, new zealand - static const IconData lightKiwiBird = const IconDataLight(0xf535); - - /// Duotone Kiwi Bird icon - /// - /// https://fontawesome.com/icons/duotone_kiwi-bird?style=duotone - /// bird, fauna, new zealand - static const IconDataDuotone duotoneKiwiBird = const IconDataDuotone( - 0xf535, - secondary: const IconDataDuotone(0x10f535), - ); - - /// Regular Knife Kitchen icon - /// - /// https://fontawesome.com/icons/knife-kitchen?style=regular - /// chef, cut, halloween, sharp, slice, tool - static const IconData knifeKitchen = const IconDataRegular(0xf6f5); - - /// Solid Knife Kitchen icon - /// - /// https://fontawesome.com/icons/knife-kitchen?style=solid - /// chef, cut, halloween, sharp, slice, tool - static const IconData solidKnifeKitchen = const IconDataSolid(0xf6f5); - - /// Light Knife Kitchen icon - /// - /// https://fontawesome.com/icons/light_knife-kitchen?style=light - /// chef, cut, halloween, sharp, slice, tool - static const IconData lightKnifeKitchen = const IconDataLight(0xf6f5); - - /// Duotone Knife Kitchen icon - /// - /// https://fontawesome.com/icons/duotone_knife-kitchen?style=duotone - /// chef, cut, halloween, sharp, slice, tool - static const IconDataDuotone duotoneKnifeKitchen = const IconDataDuotone( - 0xf6f5, - secondary: const IconDataDuotone(0x10f6f5), - ); - - /// Brands KORVUE icon - /// - /// https://fontawesome.com/icons/korvue?style=brands - static const IconData korvue = const IconDataBrands(0xf42f); - - /// Regular Lambda icon - /// - /// https://fontawesome.com/icons/lambda?style=regular - /// calculus, equation, function, math - static const IconData lambda = const IconDataRegular(0xf66e); - - /// Solid Lambda icon - /// - /// https://fontawesome.com/icons/lambda?style=solid - /// calculus, equation, function, math - static const IconData solidLambda = const IconDataSolid(0xf66e); - - /// Light Lambda icon - /// - /// https://fontawesome.com/icons/light_lambda?style=light - /// calculus, equation, function, math - static const IconData lightLambda = const IconDataLight(0xf66e); - - /// Duotone Lambda icon - /// - /// https://fontawesome.com/icons/duotone_lambda?style=duotone - /// calculus, equation, function, math - static const IconDataDuotone duotoneLambda = const IconDataDuotone( - 0xf66e, - secondary: const IconDataDuotone(0x10f66e), - ); - - /// Regular Lamp icon - /// - /// https://fontawesome.com/icons/lamp?style=regular - /// bright, furniture, light - static const IconData lamp = const IconDataRegular(0xf4ca); - - /// Solid Lamp icon - /// - /// https://fontawesome.com/icons/lamp?style=solid - /// bright, furniture, light - static const IconData solidLamp = const IconDataSolid(0xf4ca); - - /// Light Lamp icon - /// - /// https://fontawesome.com/icons/light_lamp?style=light - /// bright, furniture, light - static const IconData lightLamp = const IconDataLight(0xf4ca); - - /// Duotone Lamp icon - /// - /// https://fontawesome.com/icons/duotone_lamp?style=duotone - /// bright, furniture, light - static const IconDataDuotone duotoneLamp = const IconDataDuotone( - 0xf4ca, - secondary: const IconDataDuotone(0x10f4ca), - ); - - /// Regular Lamp Desk icon - /// - /// https://fontawesome.com/icons/lamp-desk?style=regular - /// bright, furniture, light - static const IconData lampDesk = const IconDataRegular(0xe014); - - /// Solid Lamp Desk icon - /// - /// https://fontawesome.com/icons/lamp-desk?style=solid - /// bright, furniture, light - static const IconData solidLampDesk = const IconDataSolid(0xe014); - - /// Light Lamp Desk icon - /// - /// https://fontawesome.com/icons/light_lamp-desk?style=light - /// bright, furniture, light - static const IconData lightLampDesk = const IconDataLight(0xe014); - - /// Duotone Lamp Desk icon - /// - /// https://fontawesome.com/icons/duotone_lamp-desk?style=duotone - /// bright, furniture, light - static const IconDataDuotone duotoneLampDesk = const IconDataDuotone( - 0xe014, - secondary: const IconDataDuotone(0x10e014), - ); - - /// Regular Lamp Floor icon - /// - /// https://fontawesome.com/icons/lamp-floor?style=regular - /// bright, furniture, light - static const IconData lampFloor = const IconDataRegular(0xe015); - - /// Solid Lamp Floor icon - /// - /// https://fontawesome.com/icons/lamp-floor?style=solid - /// bright, furniture, light - static const IconData solidLampFloor = const IconDataSolid(0xe015); - - /// Light Lamp Floor icon - /// - /// https://fontawesome.com/icons/light_lamp-floor?style=light - /// bright, furniture, light - static const IconData lightLampFloor = const IconDataLight(0xe015); - - /// Duotone Lamp Floor icon - /// - /// https://fontawesome.com/icons/duotone_lamp-floor?style=duotone - /// bright, furniture, light - static const IconDataDuotone duotoneLampFloor = const IconDataDuotone( - 0xe015, - secondary: const IconDataDuotone(0x10e015), - ); - - /// Regular Landmark icon - /// - /// https://fontawesome.com/icons/landmark?style=regular - /// building, historic, memorable, monument, politics - static const IconData landmark = const IconDataRegular(0xf66f); - - /// Solid Landmark icon - /// - /// https://fontawesome.com/icons/landmark?style=solid - /// building, historic, memorable, monument, politics - static const IconData solidLandmark = const IconDataSolid(0xf66f); - - /// Light Landmark icon - /// - /// https://fontawesome.com/icons/light_landmark?style=light - /// building, historic, memorable, monument, politics - static const IconData lightLandmark = const IconDataLight(0xf66f); - - /// Duotone Landmark icon - /// - /// https://fontawesome.com/icons/duotone_landmark?style=duotone - /// building, historic, memorable, monument, politics - static const IconDataDuotone duotoneLandmark = const IconDataDuotone( - 0xf66f, - secondary: const IconDataDuotone(0x10f66f), - ); - - /// Regular Alternative Landmark icon - /// - /// https://fontawesome.com/icons/landmark-alt?style=regular - /// building, historic, memorable, monument, politics - static const IconData landmarkAlt = const IconDataRegular(0xf752); - - /// Solid Alternative Landmark icon - /// - /// https://fontawesome.com/icons/landmark-alt?style=solid - /// building, historic, memorable, monument, politics - static const IconData solidLandmarkAlt = const IconDataSolid(0xf752); - - /// Light Alternative Landmark icon - /// - /// https://fontawesome.com/icons/light_landmark-alt?style=light - /// building, historic, memorable, monument, politics - static const IconData lightLandmarkAlt = const IconDataLight(0xf752); - - /// Duotone Alternative Landmark icon - /// - /// https://fontawesome.com/icons/duotone_landmark-alt?style=duotone - /// building, historic, memorable, monument, politics - static const IconDataDuotone duotoneLandmarkAlt = const IconDataDuotone( - 0xf752, - secondary: const IconDataDuotone(0x10f752), - ); - - /// Regular Language icon - /// - /// https://fontawesome.com/icons/language?style=regular - /// dialect, idiom, localize, speech, translate, vernacular - static const IconData language = const IconDataRegular(0xf1ab); - - /// Solid Language icon - /// - /// https://fontawesome.com/icons/language?style=solid - /// dialect, idiom, localize, speech, translate, vernacular - static const IconData solidLanguage = const IconDataSolid(0xf1ab); - - /// Light Language icon - /// - /// https://fontawesome.com/icons/light_language?style=light - /// dialect, idiom, localize, speech, translate, vernacular - static const IconData lightLanguage = const IconDataLight(0xf1ab); - - /// Duotone Language icon - /// - /// https://fontawesome.com/icons/duotone_language?style=duotone - /// dialect, idiom, localize, speech, translate, vernacular - static const IconDataDuotone duotoneLanguage = const IconDataDuotone( - 0xf1ab, - secondary: const IconDataDuotone(0x10f1ab), - ); - - /// Regular Laptop icon - /// - /// https://fontawesome.com/icons/laptop?style=regular - /// computer, cpu, dell, demo, device, mac, macbook, machine, pc - static const IconData laptop = const IconDataRegular(0xf109); - - /// Solid Laptop icon - /// - /// https://fontawesome.com/icons/laptop?style=solid - /// computer, cpu, dell, demo, device, mac, macbook, machine, pc - static const IconData solidLaptop = const IconDataSolid(0xf109); - - /// Light Laptop icon - /// - /// https://fontawesome.com/icons/light_laptop?style=light - /// computer, cpu, dell, demo, device, mac, macbook, machine, pc - static const IconData lightLaptop = const IconDataLight(0xf109); - - /// Duotone Laptop icon - /// - /// https://fontawesome.com/icons/duotone_laptop?style=duotone - /// computer, cpu, dell, demo, device, mac, macbook, machine, pc - static const IconDataDuotone duotoneLaptop = const IconDataDuotone( - 0xf109, - secondary: const IconDataDuotone(0x10f109), - ); - - /// Regular Laptop Code icon - /// - /// https://fontawesome.com/icons/laptop-code?style=regular - /// computer, cpu, dell, demo, develop, device, mac, macbook, machine, pc - static const IconData laptopCode = const IconDataRegular(0xf5fc); - - /// Solid Laptop Code icon - /// - /// https://fontawesome.com/icons/laptop-code?style=solid - /// computer, cpu, dell, demo, develop, device, mac, macbook, machine, pc - static const IconData solidLaptopCode = const IconDataSolid(0xf5fc); - - /// Light Laptop Code icon - /// - /// https://fontawesome.com/icons/light_laptop-code?style=light - /// computer, cpu, dell, demo, develop, device, mac, macbook, machine, pc - static const IconData lightLaptopCode = const IconDataLight(0xf5fc); - - /// Duotone Laptop Code icon - /// - /// https://fontawesome.com/icons/duotone_laptop-code?style=duotone - /// computer, cpu, dell, demo, develop, device, mac, macbook, machine, pc - static const IconDataDuotone duotoneLaptopCode = const IconDataDuotone( - 0xf5fc, - secondary: const IconDataDuotone(0x10f5fc), - ); - - /// Regular Laptop House icon - /// - /// https://fontawesome.com/icons/laptop-house?style=regular - /// computer, covid-19, device, office, remote, work from home - static const IconData laptopHouse = const IconDataRegular(0xe066); - - /// Light Laptop House icon - /// - /// https://fontawesome.com/icons/light_laptop-house?style=light - /// computer, covid-19, device, office, remote, work from home - static const IconData lightLaptopHouse = const IconDataLight(0xe066); - - /// Solid Laptop House icon - /// - /// https://fontawesome.com/icons/laptop-house?style=solid - /// computer, covid-19, device, office, remote, work from home - static const IconData solidLaptopHouse = const IconDataSolid(0xe066); - - /// Duotone Laptop House icon - /// - /// https://fontawesome.com/icons/duotone_laptop-house?style=duotone - /// computer, covid-19, device, office, remote, work from home - static const IconDataDuotone duotoneLaptopHouse = const IconDataDuotone( - 0xe066, - secondary: const IconDataDuotone(0x10e066), - ); - - /// Regular Laptop Medical icon - /// - /// https://fontawesome.com/icons/laptop-medical?style=regular - /// computer, device, ehr, electronic health records, history - static const IconData laptopMedical = const IconDataRegular(0xf812); - - /// Solid Laptop Medical icon - /// - /// https://fontawesome.com/icons/laptop-medical?style=solid - /// computer, device, ehr, electronic health records, history - static const IconData solidLaptopMedical = const IconDataSolid(0xf812); - - /// Light Laptop Medical icon - /// - /// https://fontawesome.com/icons/light_laptop-medical?style=light - /// computer, device, ehr, electronic health records, history - static const IconData lightLaptopMedical = const IconDataLight(0xf812); - - /// Duotone Laptop Medical icon - /// - /// https://fontawesome.com/icons/duotone_laptop-medical?style=duotone - /// computer, device, ehr, electronic health records, history - static const IconDataDuotone duotoneLaptopMedical = const IconDataDuotone( - 0xf812, - secondary: const IconDataDuotone(0x10f812), - ); - - /// Brands Laravel icon - /// - /// https://fontawesome.com/icons/laravel?style=brands - static const IconData laravel = const IconDataBrands(0xf3bd); - - /// Regular Lasso icon - /// - /// https://fontawesome.com/icons/lasso?style=regular - /// cowboy, rodeo, rope, select, selection, western - static const IconData lasso = const IconDataRegular(0xf8c8); - - /// Light Lasso icon - /// - /// https://fontawesome.com/icons/light_lasso?style=light - /// cowboy, rodeo, rope, select, selection, western - static const IconData lightLasso = const IconDataLight(0xf8c8); - - /// Solid Lasso icon - /// - /// https://fontawesome.com/icons/lasso?style=solid - /// cowboy, rodeo, rope, select, selection, western - static const IconData solidLasso = const IconDataSolid(0xf8c8); - - /// Duotone Lasso icon - /// - /// https://fontawesome.com/icons/duotone_lasso?style=duotone - /// cowboy, rodeo, rope, select, selection, western - static const IconDataDuotone duotoneLasso = const IconDataDuotone( - 0xf8c8, - secondary: const IconDataDuotone(0x10f8c8), - ); - - /// Brands last.fm icon - /// - /// https://fontawesome.com/icons/lastfm?style=brands - static const IconData lastfm = const IconDataBrands(0xf202); - - /// Brands last.fm Square icon - /// - /// https://fontawesome.com/icons/lastfm-square?style=brands - static const IconData lastfmSquare = const IconDataBrands(0xf203); - - /// Regular Grinning Face With Big Eyes icon - /// - /// https://fontawesome.com/icons/laugh?style=regular - /// LOL, emoticon, face, laugh, smile - static const IconData laugh = const IconDataRegular(0xf599); - - /// Solid Grinning Face With Big Eyes icon - /// - /// https://fontawesome.com/icons/laugh?style=solid - /// LOL, emoticon, face, laugh, smile - static const IconData solidLaugh = const IconDataSolid(0xf599); - - /// Light Grinning Face With Big Eyes icon - /// - /// https://fontawesome.com/icons/light_laugh?style=light - /// LOL, emoticon, face, laugh, smile - static const IconData lightLaugh = const IconDataLight(0xf599); - - /// Duotone Grinning Face With Big Eyes icon - /// - /// https://fontawesome.com/icons/duotone_laugh?style=duotone - /// LOL, emoticon, face, laugh, smile - static const IconDataDuotone duotoneLaugh = const IconDataDuotone( - 0xf599, - secondary: const IconDataDuotone(0x10f599), - ); - - /// Regular Laugh Face with Beaming Eyes icon - /// - /// https://fontawesome.com/icons/laugh-beam?style=regular - /// LOL, emoticon, face, happy, smile - static const IconData laughBeam = const IconDataRegular(0xf59a); - - /// Solid Laugh Face with Beaming Eyes icon - /// - /// https://fontawesome.com/icons/laugh-beam?style=solid - /// LOL, emoticon, face, happy, smile - static const IconData solidLaughBeam = const IconDataSolid(0xf59a); - - /// Light Laugh Face with Beaming Eyes icon - /// - /// https://fontawesome.com/icons/light_laugh-beam?style=light - /// LOL, emoticon, face, happy, smile - static const IconData lightLaughBeam = const IconDataLight(0xf59a); - - /// Duotone Laugh Face with Beaming Eyes icon - /// - /// https://fontawesome.com/icons/duotone_laugh-beam?style=duotone - /// LOL, emoticon, face, happy, smile - static const IconDataDuotone duotoneLaughBeam = const IconDataDuotone( - 0xf59a, - secondary: const IconDataDuotone(0x10f59a), - ); - - /// Regular Laughing Squinting Face icon - /// - /// https://fontawesome.com/icons/laugh-squint?style=regular - /// LOL, emoticon, face, happy, smile - static const IconData laughSquint = const IconDataRegular(0xf59b); - - /// Solid Laughing Squinting Face icon - /// - /// https://fontawesome.com/icons/laugh-squint?style=solid - /// LOL, emoticon, face, happy, smile - static const IconData solidLaughSquint = const IconDataSolid(0xf59b); - - /// Light Laughing Squinting Face icon - /// - /// https://fontawesome.com/icons/light_laugh-squint?style=light - /// LOL, emoticon, face, happy, smile - static const IconData lightLaughSquint = const IconDataLight(0xf59b); - - /// Duotone Laughing Squinting Face icon - /// - /// https://fontawesome.com/icons/duotone_laugh-squint?style=duotone - /// LOL, emoticon, face, happy, smile - static const IconDataDuotone duotoneLaughSquint = const IconDataDuotone( - 0xf59b, - secondary: const IconDataDuotone(0x10f59b), - ); - - /// Regular Laughing Winking Face icon - /// - /// https://fontawesome.com/icons/laugh-wink?style=regular - /// LOL, emoticon, face, happy, smile - static const IconData laughWink = const IconDataRegular(0xf59c); - - /// Solid Laughing Winking Face icon - /// - /// https://fontawesome.com/icons/laugh-wink?style=solid - /// LOL, emoticon, face, happy, smile - static const IconData solidLaughWink = const IconDataSolid(0xf59c); - - /// Light Laughing Winking Face icon - /// - /// https://fontawesome.com/icons/light_laugh-wink?style=light - /// LOL, emoticon, face, happy, smile - static const IconData lightLaughWink = const IconDataLight(0xf59c); - - /// Duotone Laughing Winking Face icon - /// - /// https://fontawesome.com/icons/duotone_laugh-wink?style=duotone - /// LOL, emoticon, face, happy, smile - static const IconDataDuotone duotoneLaughWink = const IconDataDuotone( - 0xf59c, - secondary: const IconDataDuotone(0x10f59c), - ); - - /// Regular Layer Group icon - /// - /// https://fontawesome.com/icons/layer-group?style=regular - /// arrange, develop, layers, map, stack - static const IconData layerGroup = const IconDataRegular(0xf5fd); - - /// Solid Layer Group icon - /// - /// https://fontawesome.com/icons/layer-group?style=solid - /// arrange, develop, layers, map, stack - static const IconData solidLayerGroup = const IconDataSolid(0xf5fd); - - /// Light Layer Group icon - /// - /// https://fontawesome.com/icons/light_layer-group?style=light - /// arrange, develop, layers, map, stack - static const IconData lightLayerGroup = const IconDataLight(0xf5fd); - - /// Duotone Layer Group icon - /// - /// https://fontawesome.com/icons/duotone_layer-group?style=duotone - /// arrange, develop, layers, map, stack - static const IconDataDuotone duotoneLayerGroup = const IconDataDuotone( - 0xf5fd, - secondary: const IconDataDuotone(0x10f5fd), - ); - - /// Regular Layer Minus icon - /// - /// https://fontawesome.com/icons/layer-minus?style=regular - /// arrange, delete, negative, remove, stack - static const IconData layerMinus = const IconDataRegular(0xf5fe); - - /// Solid Layer Minus icon - /// - /// https://fontawesome.com/icons/layer-minus?style=solid - /// arrange, delete, negative, remove, stack - static const IconData solidLayerMinus = const IconDataSolid(0xf5fe); - - /// Light Layer Minus icon - /// - /// https://fontawesome.com/icons/light_layer-minus?style=light - /// arrange, delete, negative, remove, stack - static const IconData lightLayerMinus = const IconDataLight(0xf5fe); - - /// Duotone Layer Minus icon - /// - /// https://fontawesome.com/icons/duotone_layer-minus?style=duotone - /// arrange, delete, negative, remove, stack - static const IconDataDuotone duotoneLayerMinus = const IconDataDuotone( - 0xf5fe, - secondary: const IconDataDuotone(0x10f5fe), - ); - - /// Regular Layer Plus icon - /// - /// https://fontawesome.com/icons/layer-plus?style=regular - /// add, arrange, create, new, positive, stack - static const IconData layerPlus = const IconDataRegular(0xf5ff); - - /// Solid Layer Plus icon - /// - /// https://fontawesome.com/icons/layer-plus?style=solid - /// add, arrange, create, new, positive, stack - static const IconData solidLayerPlus = const IconDataSolid(0xf5ff); - - /// Light Layer Plus icon - /// - /// https://fontawesome.com/icons/light_layer-plus?style=light - /// add, arrange, create, new, positive, stack - static const IconData lightLayerPlus = const IconDataLight(0xf5ff); - - /// Duotone Layer Plus icon - /// - /// https://fontawesome.com/icons/duotone_layer-plus?style=duotone - /// add, arrange, create, new, positive, stack - static const IconDataDuotone duotoneLayerPlus = const IconDataDuotone( - 0xf5ff, - secondary: const IconDataDuotone(0x10f5ff), - ); - - /// Regular leaf icon - /// - /// https://fontawesome.com/icons/leaf?style=regular - /// eco, flora, nature, plant, vegan - static const IconData leaf = const IconDataRegular(0xf06c); - - /// Solid leaf icon - /// - /// https://fontawesome.com/icons/leaf?style=solid - /// eco, flora, nature, plant, vegan - static const IconData solidLeaf = const IconDataSolid(0xf06c); - - /// Light leaf icon - /// - /// https://fontawesome.com/icons/light_leaf?style=light - /// eco, flora, nature, plant, vegan - static const IconData lightLeaf = const IconDataLight(0xf06c); - - /// Duotone leaf icon - /// - /// https://fontawesome.com/icons/duotone_leaf?style=duotone - /// eco, flora, nature, plant, vegan - static const IconDataDuotone duotoneLeaf = const IconDataDuotone( - 0xf06c, - secondary: const IconDataDuotone(0x10f06c), - ); - - /// Regular Leaf with a Heart icon - /// - /// https://fontawesome.com/icons/leaf-heart?style=regular - /// eco, flora, nature, plant, vegan - static const IconData leafHeart = const IconDataRegular(0xf4cb); - - /// Solid Leaf with a Heart icon - /// - /// https://fontawesome.com/icons/leaf-heart?style=solid - /// eco, flora, nature, plant, vegan - static const IconData solidLeafHeart = const IconDataSolid(0xf4cb); - - /// Light Leaf with a Heart icon - /// - /// https://fontawesome.com/icons/light_leaf-heart?style=light - /// eco, flora, nature, plant, vegan - static const IconData lightLeafHeart = const IconDataLight(0xf4cb); - - /// Duotone Leaf with a Heart icon - /// - /// https://fontawesome.com/icons/duotone_leaf-heart?style=duotone - /// eco, flora, nature, plant, vegan - static const IconDataDuotone duotoneLeafHeart = const IconDataDuotone( - 0xf4cb, - secondary: const IconDataDuotone(0x10f4cb), - ); - - /// Regular Maple Leaf icon - /// - /// https://fontawesome.com/icons/leaf-maple?style=regular - /// eco, fall, flora, nature, plant, seasonal - static const IconData leafMaple = const IconDataRegular(0xf6f6); - - /// Solid Maple Leaf icon - /// - /// https://fontawesome.com/icons/leaf-maple?style=solid - /// eco, fall, flora, nature, plant, seasonal - static const IconData solidLeafMaple = const IconDataSolid(0xf6f6); - - /// Light Maple Leaf icon - /// - /// https://fontawesome.com/icons/light_leaf-maple?style=light - /// eco, fall, flora, nature, plant, seasonal - static const IconData lightLeafMaple = const IconDataLight(0xf6f6); - - /// Duotone Maple Leaf icon - /// - /// https://fontawesome.com/icons/duotone_leaf-maple?style=duotone - /// eco, fall, flora, nature, plant, seasonal - static const IconDataDuotone duotoneLeafMaple = const IconDataDuotone( - 0xf6f6, - secondary: const IconDataDuotone(0x10f6f6), - ); - - /// Regular Oak Leaf icon - /// - /// https://fontawesome.com/icons/leaf-oak?style=regular - /// eco, fall, flora, nature, plant, seasonal - static const IconData leafOak = const IconDataRegular(0xf6f7); - - /// Solid Oak Leaf icon - /// - /// https://fontawesome.com/icons/leaf-oak?style=solid - /// eco, fall, flora, nature, plant, seasonal - static const IconData solidLeafOak = const IconDataSolid(0xf6f7); - - /// Light Oak Leaf icon - /// - /// https://fontawesome.com/icons/light_leaf-oak?style=light - /// eco, fall, flora, nature, plant, seasonal - static const IconData lightLeafOak = const IconDataLight(0xf6f7); - - /// Duotone Oak Leaf icon - /// - /// https://fontawesome.com/icons/duotone_leaf-oak?style=duotone - /// eco, fall, flora, nature, plant, seasonal - static const IconDataDuotone duotoneLeafOak = const IconDataDuotone( - 0xf6f7, - secondary: const IconDataDuotone(0x10f6f7), - ); - - /// Brands Leanpub icon - /// - /// https://fontawesome.com/icons/leanpub?style=brands - static const IconData leanpub = const IconDataBrands(0xf212); - - /// Regular Lemon icon - /// - /// https://fontawesome.com/icons/lemon?style=regular - /// citrus, lemonade, lime, tart - static const IconData lemon = const IconDataRegular(0xf094); - - /// Solid Lemon icon - /// - /// https://fontawesome.com/icons/lemon?style=solid - /// citrus, lemonade, lime, tart - static const IconData solidLemon = const IconDataSolid(0xf094); - - /// Light Lemon icon - /// - /// https://fontawesome.com/icons/light_lemon?style=light - /// citrus, lemonade, lime, tart - static const IconData lightLemon = const IconDataLight(0xf094); - - /// Duotone Lemon icon - /// - /// https://fontawesome.com/icons/duotone_lemon?style=duotone - /// citrus, lemonade, lime, tart - static const IconDataDuotone duotoneLemon = const IconDataDuotone( - 0xf094, - secondary: const IconDataDuotone(0x10f094), - ); - - /// Brands Less icon - /// - /// https://fontawesome.com/icons/less?style=brands - static const IconData less = const IconDataBrands(0xf41d); - - /// Regular Less Than icon - /// - /// https://fontawesome.com/icons/less-than?style=regular - /// arithmetic, compare, math - static const IconData lessThan = const IconDataRegular(0xf536); - - /// Solid Less Than icon - /// - /// https://fontawesome.com/icons/less-than?style=solid - /// arithmetic, compare, math - static const IconData solidLessThan = const IconDataSolid(0xf536); - - /// Light Less Than icon - /// - /// https://fontawesome.com/icons/light_less-than?style=light - /// arithmetic, compare, math - static const IconData lightLessThan = const IconDataLight(0xf536); - - /// Duotone Less Than icon - /// - /// https://fontawesome.com/icons/duotone_less-than?style=duotone - /// arithmetic, compare, math - static const IconDataDuotone duotoneLessThan = const IconDataDuotone( - 0xf536, - secondary: const IconDataDuotone(0x10f536), - ); - - /// Regular Less Than Equal To icon - /// - /// https://fontawesome.com/icons/less-than-equal?style=regular - /// arithmetic, compare, math - static const IconData lessThanEqual = const IconDataRegular(0xf537); - - /// Solid Less Than Equal To icon - /// - /// https://fontawesome.com/icons/less-than-equal?style=solid - /// arithmetic, compare, math - static const IconData solidLessThanEqual = const IconDataSolid(0xf537); - - /// Light Less Than Equal To icon - /// - /// https://fontawesome.com/icons/light_less-than-equal?style=light - /// arithmetic, compare, math - static const IconData lightLessThanEqual = const IconDataLight(0xf537); - - /// Duotone Less Than Equal To icon - /// - /// https://fontawesome.com/icons/duotone_less-than-equal?style=duotone - /// arithmetic, compare, math - static const IconDataDuotone duotoneLessThanEqual = const IconDataDuotone( - 0xf537, - secondary: const IconDataDuotone(0x10f537), - ); - - /// Regular Level Down icon - /// - /// https://fontawesome.com/icons/level-down?style=regular - /// arrow - static const IconData levelDown = const IconDataRegular(0xf149); - - /// Solid Level Down icon - /// - /// https://fontawesome.com/icons/level-down?style=solid - /// arrow - static const IconData solidLevelDown = const IconDataSolid(0xf149); - - /// Light Level Down icon - /// - /// https://fontawesome.com/icons/light_level-down?style=light - /// arrow - static const IconData lightLevelDown = const IconDataLight(0xf149); - - /// Duotone Level Down icon - /// - /// https://fontawesome.com/icons/duotone_level-down?style=duotone - /// arrow - static const IconDataDuotone duotoneLevelDown = const IconDataDuotone( - 0xf149, - secondary: const IconDataDuotone(0x10f149), - ); - - /// Regular Alternate Level Down icon - /// - /// https://fontawesome.com/icons/level-down-alt?style=regular - /// arrow, level-down - static const IconData levelDownAlt = const IconDataRegular(0xf3be); - - /// Solid Alternate Level Down icon - /// - /// https://fontawesome.com/icons/level-down-alt?style=solid - /// arrow, level-down - static const IconData solidLevelDownAlt = const IconDataSolid(0xf3be); - - /// Light Alternate Level Down icon - /// - /// https://fontawesome.com/icons/light_level-down-alt?style=light - /// arrow, level-down - static const IconData lightLevelDownAlt = const IconDataLight(0xf3be); - - /// Duotone Alternate Level Down icon - /// - /// https://fontawesome.com/icons/duotone_level-down-alt?style=duotone - /// arrow, level-down - static const IconDataDuotone duotoneLevelDownAlt = const IconDataDuotone( - 0xf3be, - secondary: const IconDataDuotone(0x10f3be), - ); - - /// Regular Level Up icon - /// - /// https://fontawesome.com/icons/level-up?style=regular - /// arrow - static const IconData levelUp = const IconDataRegular(0xf148); - - /// Solid Level Up icon - /// - /// https://fontawesome.com/icons/level-up?style=solid - /// arrow - static const IconData solidLevelUp = const IconDataSolid(0xf148); - - /// Light Level Up icon - /// - /// https://fontawesome.com/icons/light_level-up?style=light - /// arrow - static const IconData lightLevelUp = const IconDataLight(0xf148); - - /// Duotone Level Up icon - /// - /// https://fontawesome.com/icons/duotone_level-up?style=duotone - /// arrow - static const IconDataDuotone duotoneLevelUp = const IconDataDuotone( - 0xf148, - secondary: const IconDataDuotone(0x10f148), - ); - - /// Regular Alternate Level Up icon - /// - /// https://fontawesome.com/icons/level-up-alt?style=regular - /// arrow, level-up - static const IconData levelUpAlt = const IconDataRegular(0xf3bf); - - /// Solid Alternate Level Up icon - /// - /// https://fontawesome.com/icons/level-up-alt?style=solid - /// arrow, level-up - static const IconData solidLevelUpAlt = const IconDataSolid(0xf3bf); - - /// Light Alternate Level Up icon - /// - /// https://fontawesome.com/icons/light_level-up-alt?style=light - /// arrow, level-up - static const IconData lightLevelUpAlt = const IconDataLight(0xf3bf); - - /// Duotone Alternate Level Up icon - /// - /// https://fontawesome.com/icons/duotone_level-up-alt?style=duotone - /// arrow, level-up - static const IconDataDuotone duotoneLevelUpAlt = const IconDataDuotone( - 0xf3bf, - secondary: const IconDataDuotone(0x10f3bf), - ); - - /// Regular Life Ring icon - /// - /// https://fontawesome.com/icons/life-ring?style=regular - /// coast guard, help, overboard, save, support - static const IconData lifeRing = const IconDataRegular(0xf1cd); - - /// Solid Life Ring icon - /// - /// https://fontawesome.com/icons/life-ring?style=solid - /// coast guard, help, overboard, save, support - static const IconData solidLifeRing = const IconDataSolid(0xf1cd); - - /// Light Life Ring icon - /// - /// https://fontawesome.com/icons/light_life-ring?style=light - /// coast guard, help, overboard, save, support - static const IconData lightLifeRing = const IconDataLight(0xf1cd); - - /// Duotone Life Ring icon - /// - /// https://fontawesome.com/icons/duotone_life-ring?style=duotone - /// coast guard, help, overboard, save, support - static const IconDataDuotone duotoneLifeRing = const IconDataDuotone( - 0xf1cd, - secondary: const IconDataDuotone(0x10f1cd), - ); - - /// Regular Light Ceiling icon - /// - /// https://fontawesome.com/icons/light-ceiling?style=regular - /// bright, furniture, light, overhead - static const IconData lightCeiling = const IconDataRegular(0xe016); - - /// Solid Light Ceiling icon - /// - /// https://fontawesome.com/icons/light-ceiling?style=solid - /// bright, furniture, light, overhead - static const IconData solidLightCeiling = const IconDataSolid(0xe016); - - /// Light Light Ceiling icon - /// - /// https://fontawesome.com/icons/light_light-ceiling?style=light - /// bright, furniture, light, overhead - static const IconData lightLightCeiling = const IconDataLight(0xe016); - - /// Duotone Light Ceiling icon - /// - /// https://fontawesome.com/icons/duotone_light-ceiling?style=duotone - /// bright, furniture, light, overhead - static const IconDataDuotone duotoneLightCeiling = const IconDataDuotone( - 0xe016, - secondary: const IconDataDuotone(0x10e016), - ); - - /// Regular Light Switch icon - /// - /// https://fontawesome.com/icons/light-switch?style=regular - /// light, off, on - static const IconData lightSwitch = const IconDataRegular(0xe017); - - /// Solid Light Switch icon - /// - /// https://fontawesome.com/icons/light-switch?style=solid - /// light, off, on - static const IconData solidLightSwitch = const IconDataSolid(0xe017); - - /// Light Light Switch icon - /// - /// https://fontawesome.com/icons/light_light-switch?style=light - /// light, off, on - static const IconData lightLightSwitch = const IconDataLight(0xe017); - - /// Duotone Light Switch icon - /// - /// https://fontawesome.com/icons/duotone_light-switch?style=duotone - /// light, off, on - static const IconDataDuotone duotoneLightSwitch = const IconDataDuotone( - 0xe017, - secondary: const IconDataDuotone(0x10e017), - ); - - /// Regular Light Switch-off icon - /// - /// https://fontawesome.com/icons/light-switch-off?style=regular - /// light, off, on - static const IconData lightSwitchOff = const IconDataRegular(0xe018); - - /// Solid Light Switch-off icon - /// - /// https://fontawesome.com/icons/light-switch-off?style=solid - /// light, off, on - static const IconData solidLightSwitchOff = const IconDataSolid(0xe018); - - /// Light Light Switch-off icon - /// - /// https://fontawesome.com/icons/light_light-switch-off?style=light - /// light, off, on - static const IconData lightLightSwitchOff = const IconDataLight(0xe018); - - /// Duotone Light Switch-off icon - /// - /// https://fontawesome.com/icons/duotone_light-switch-off?style=duotone - /// light, off, on - static const IconDataDuotone duotoneLightSwitchOff = const IconDataDuotone( - 0xe018, - secondary: const IconDataDuotone(0x10e018), - ); - - /// Regular Light Switch-on icon - /// - /// https://fontawesome.com/icons/light-switch-on?style=regular - /// light, off, on - static const IconData lightSwitchOn = const IconDataRegular(0xe019); - - /// Solid Light Switch-on icon - /// - /// https://fontawesome.com/icons/light-switch-on?style=solid - /// light, off, on - static const IconData solidLightSwitchOn = const IconDataSolid(0xe019); - - /// Light Light Switch-on icon - /// - /// https://fontawesome.com/icons/light_light-switch-on?style=light - /// light, off, on - static const IconData lightLightSwitchOn = const IconDataLight(0xe019); - - /// Duotone Light Switch-on icon - /// - /// https://fontawesome.com/icons/duotone_light-switch-on?style=duotone - /// light, off, on - static const IconDataDuotone duotoneLightSwitchOn = const IconDataDuotone( - 0xe019, - secondary: const IconDataDuotone(0x10e019), - ); - - /// Regular Lightbulb icon - /// - /// https://fontawesome.com/icons/lightbulb?style=regular - /// energy, idea, inspiration, light - static const IconData lightbulb = const IconDataRegular(0xf0eb); - - /// Solid Lightbulb icon - /// - /// https://fontawesome.com/icons/lightbulb?style=solid - /// energy, idea, inspiration, light - static const IconData solidLightbulb = const IconDataSolid(0xf0eb); - - /// Light Lightbulb icon - /// - /// https://fontawesome.com/icons/light_lightbulb?style=light - /// energy, idea, inspiration, light - static const IconData lightLightbulb = const IconDataLight(0xf0eb); - - /// Duotone Lightbulb icon - /// - /// https://fontawesome.com/icons/duotone_lightbulb?style=duotone - /// energy, idea, inspiration, light - static const IconDataDuotone duotoneLightbulb = const IconDataDuotone( - 0xf0eb, - secondary: const IconDataDuotone(0x10f0eb), - ); - - /// Regular Lightbulb Dollar icon - /// - /// https://fontawesome.com/icons/lightbulb-dollar?style=regular - /// energy, idea, inspiration, light, money - static const IconData lightbulbDollar = const IconDataRegular(0xf670); - - /// Solid Lightbulb Dollar icon - /// - /// https://fontawesome.com/icons/lightbulb-dollar?style=solid - /// energy, idea, inspiration, light, money - static const IconData solidLightbulbDollar = const IconDataSolid(0xf670); - - /// Light Lightbulb Dollar icon - /// - /// https://fontawesome.com/icons/light_lightbulb-dollar?style=light - /// energy, idea, inspiration, light, money - static const IconData lightLightbulbDollar = const IconDataLight(0xf670); - - /// Duotone Lightbulb Dollar icon - /// - /// https://fontawesome.com/icons/duotone_lightbulb-dollar?style=duotone - /// energy, idea, inspiration, light, money - static const IconDataDuotone duotoneLightbulbDollar = const IconDataDuotone( - 0xf670, - secondary: const IconDataDuotone(0x10f670), - ); - - /// Regular Lightbulb Exclamation icon - /// - /// https://fontawesome.com/icons/lightbulb-exclamation?style=regular - /// alert, energy, idea, inspiration, light - static const IconData lightbulbExclamation = const IconDataRegular(0xf671); - - /// Solid Lightbulb Exclamation icon - /// - /// https://fontawesome.com/icons/lightbulb-exclamation?style=solid - /// alert, energy, idea, inspiration, light - static const IconData solidLightbulbExclamation = const IconDataSolid(0xf671); - - /// Light Lightbulb Exclamation icon - /// - /// https://fontawesome.com/icons/light_lightbulb-exclamation?style=light - /// alert, energy, idea, inspiration, light - static const IconData lightLightbulbExclamation = const IconDataLight(0xf671); - - /// Duotone Lightbulb Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_lightbulb-exclamation?style=duotone - /// alert, energy, idea, inspiration, light - static const IconDataDuotone duotoneLightbulbExclamation = - const IconDataDuotone( - 0xf671, - secondary: const IconDataDuotone(0x10f671), - ); - - /// Regular Lightbulb On icon - /// - /// https://fontawesome.com/icons/lightbulb-on?style=regular - /// energy, idea, inspiration, light, shine - static const IconData lightbulbOn = const IconDataRegular(0xf672); - - /// Solid Lightbulb On icon - /// - /// https://fontawesome.com/icons/lightbulb-on?style=solid - /// energy, idea, inspiration, light, shine - static const IconData solidLightbulbOn = const IconDataSolid(0xf672); - - /// Light Lightbulb On icon - /// - /// https://fontawesome.com/icons/light_lightbulb-on?style=light - /// energy, idea, inspiration, light, shine - static const IconData lightLightbulbOn = const IconDataLight(0xf672); - - /// Duotone Lightbulb On icon - /// - /// https://fontawesome.com/icons/duotone_lightbulb-on?style=duotone - /// energy, idea, inspiration, light, shine - static const IconDataDuotone duotoneLightbulbOn = const IconDataDuotone( - 0xf672, - secondary: const IconDataDuotone(0x10f672), - ); - - /// Regular Lightbulb Slash icon - /// - /// https://fontawesome.com/icons/lightbulb-slash?style=regular - /// dark, light, off - static const IconData lightbulbSlash = const IconDataRegular(0xf673); - - /// Solid Lightbulb Slash icon - /// - /// https://fontawesome.com/icons/lightbulb-slash?style=solid - /// dark, light, off - static const IconData solidLightbulbSlash = const IconDataSolid(0xf673); - - /// Light Lightbulb Slash icon - /// - /// https://fontawesome.com/icons/light_lightbulb-slash?style=light - /// dark, light, off - static const IconData lightLightbulbSlash = const IconDataLight(0xf673); - - /// Duotone Lightbulb Slash icon - /// - /// https://fontawesome.com/icons/duotone_lightbulb-slash?style=duotone - /// dark, light, off - static const IconDataDuotone duotoneLightbulbSlash = const IconDataDuotone( - 0xf673, - secondary: const IconDataDuotone(0x10f673), - ); - - /// Regular Holiday Lights icon - /// - /// https://fontawesome.com/icons/lights-holiday?style=regular - /// bulb, christmas, decoration, holiday, string, xmas - static const IconData lightsHoliday = const IconDataRegular(0xf7b2); - - /// Solid Holiday Lights icon - /// - /// https://fontawesome.com/icons/lights-holiday?style=solid - /// bulb, christmas, decoration, holiday, string, xmas - static const IconData solidLightsHoliday = const IconDataSolid(0xf7b2); - - /// Light Holiday Lights icon - /// - /// https://fontawesome.com/icons/light_lights-holiday?style=light - /// bulb, christmas, decoration, holiday, string, xmas - static const IconData lightLightsHoliday = const IconDataLight(0xf7b2); - - /// Duotone Holiday Lights icon - /// - /// https://fontawesome.com/icons/duotone_lights-holiday?style=duotone - /// bulb, christmas, decoration, holiday, string, xmas - static const IconDataDuotone duotoneLightsHoliday = const IconDataDuotone( - 0xf7b2, - secondary: const IconDataDuotone(0x10f7b2), - ); - - /// Brands Line icon - /// - /// https://fontawesome.com/icons/line?style=brands - static const IconData line = const IconDataBrands(0xf3c0); - - /// Regular Line Columns icon - /// - /// https://fontawesome.com/icons/line-columns?style=regular - /// divide, organize, panes, split - static const IconData lineColumns = const IconDataRegular(0xf870); - - /// Solid Line Columns icon - /// - /// https://fontawesome.com/icons/line-columns?style=solid - /// divide, organize, panes, split - static const IconData solidLineColumns = const IconDataSolid(0xf870); - - /// Light Line Columns icon - /// - /// https://fontawesome.com/icons/light_line-columns?style=light - /// divide, organize, panes, split - static const IconData lightLineColumns = const IconDataLight(0xf870); - - /// Duotone Line Columns icon - /// - /// https://fontawesome.com/icons/duotone_line-columns?style=duotone - /// divide, organize, panes, split - static const IconDataDuotone duotoneLineColumns = const IconDataDuotone( - 0xf870, - secondary: const IconDataDuotone(0x10f870), - ); - - /// Regular Line Height icon - /// - /// https://fontawesome.com/icons/line-height?style=regular - /// baseline, letter, spacing, text - static const IconData lineHeight = const IconDataRegular(0xf871); - - /// Solid Line Height icon - /// - /// https://fontawesome.com/icons/line-height?style=solid - /// baseline, letter, spacing, text - static const IconData solidLineHeight = const IconDataSolid(0xf871); - - /// Light Line Height icon - /// - /// https://fontawesome.com/icons/light_line-height?style=light - /// baseline, letter, spacing, text - static const IconData lightLineHeight = const IconDataLight(0xf871); - - /// Duotone Line Height icon - /// - /// https://fontawesome.com/icons/duotone_line-height?style=duotone - /// baseline, letter, spacing, text - static const IconDataDuotone duotoneLineHeight = const IconDataDuotone( - 0xf871, - secondary: const IconDataDuotone(0x10f871), - ); - - /// Regular Link icon - /// - /// https://fontawesome.com/icons/link?style=regular - /// attach, attachment, chain, connect - static const IconData link = const IconDataRegular(0xf0c1); - - /// Solid Link icon - /// - /// https://fontawesome.com/icons/link?style=solid - /// attach, attachment, chain, connect - static const IconData solidLink = const IconDataSolid(0xf0c1); - - /// Light Link icon - /// - /// https://fontawesome.com/icons/light_link?style=light - /// attach, attachment, chain, connect - static const IconData lightLink = const IconDataLight(0xf0c1); - - /// Duotone Link icon - /// - /// https://fontawesome.com/icons/duotone_link?style=duotone - /// attach, attachment, chain, connect - static const IconDataDuotone duotoneLink = const IconDataDuotone( - 0xf0c1, - secondary: const IconDataDuotone(0x10f0c1), - ); - - /// Brands LinkedIn icon - /// - /// https://fontawesome.com/icons/linkedin?style=brands - /// linkedin-square - static const IconData linkedin = const IconDataBrands(0xf08c); - - /// Brands LinkedIn In icon - /// - /// https://fontawesome.com/icons/linkedin-in?style=brands - /// linkedin - static const IconData linkedinIn = const IconDataBrands(0xf0e1); - - /// Brands Linode icon - /// - /// https://fontawesome.com/icons/linode?style=brands - static const IconData linode = const IconDataBrands(0xf2b8); - - /// Brands Linux icon - /// - /// https://fontawesome.com/icons/linux?style=brands - /// tux - static const IconData linux = const IconDataBrands(0xf17c); - - /// Regular Lips icon - /// - /// https://fontawesome.com/icons/lips?style=regular - /// fashion, kiss, lipstick, mouth, smile - static const IconData lips = const IconDataRegular(0xf600); - - /// Solid Lips icon - /// - /// https://fontawesome.com/icons/lips?style=solid - /// fashion, kiss, lipstick, mouth, smile - static const IconData solidLips = const IconDataSolid(0xf600); - - /// Light Lips icon - /// - /// https://fontawesome.com/icons/light_lips?style=light - /// fashion, kiss, lipstick, mouth, smile - static const IconData lightLips = const IconDataLight(0xf600); - - /// Duotone Lips icon - /// - /// https://fontawesome.com/icons/duotone_lips?style=duotone - /// fashion, kiss, lipstick, mouth, smile - static const IconDataDuotone duotoneLips = const IconDataDuotone( - 0xf600, - secondary: const IconDataDuotone(0x10f600), - ); - - /// Regular Turkish Lira Sign icon - /// - /// https://fontawesome.com/icons/lira-sign?style=regular - /// currency, money, try, turkish - static const IconData liraSign = const IconDataRegular(0xf195); - - /// Solid Turkish Lira Sign icon - /// - /// https://fontawesome.com/icons/lira-sign?style=solid - /// currency, money, try, turkish - static const IconData solidLiraSign = const IconDataSolid(0xf195); - - /// Light Turkish Lira Sign icon - /// - /// https://fontawesome.com/icons/light_lira-sign?style=light - /// currency, money, try, turkish - static const IconData lightLiraSign = const IconDataLight(0xf195); - - /// Duotone Turkish Lira Sign icon - /// - /// https://fontawesome.com/icons/duotone_lira-sign?style=duotone - /// currency, money, try, turkish - static const IconDataDuotone duotoneLiraSign = const IconDataDuotone( - 0xf195, - secondary: const IconDataDuotone(0x10f195), - ); - - /// Regular List icon - /// - /// https://fontawesome.com/icons/list?style=regular - /// checklist, completed, done, finished, ol, todo, ul - static const IconData list = const IconDataRegular(0xf03a); - - /// Solid List icon - /// - /// https://fontawesome.com/icons/list?style=solid - /// checklist, completed, done, finished, ol, todo, ul - static const IconData solidList = const IconDataSolid(0xf03a); - - /// Light List icon - /// - /// https://fontawesome.com/icons/light_list?style=light - /// checklist, completed, done, finished, ol, todo, ul - static const IconData lightList = const IconDataLight(0xf03a); - - /// Duotone List icon - /// - /// https://fontawesome.com/icons/duotone_list?style=duotone - /// checklist, completed, done, finished, ol, todo, ul - static const IconDataDuotone duotoneList = const IconDataDuotone( - 0xf03a, - secondary: const IconDataDuotone(0x10f03a), - ); - - /// Regular Alternate List icon - /// - /// https://fontawesome.com/icons/list-alt?style=regular - /// checklist, completed, done, finished, ol, todo, ul - static const IconData listAlt = const IconDataRegular(0xf022); - - /// Solid Alternate List icon - /// - /// https://fontawesome.com/icons/list-alt?style=solid - /// checklist, completed, done, finished, ol, todo, ul - static const IconData solidListAlt = const IconDataSolid(0xf022); - - /// Light Alternate List icon - /// - /// https://fontawesome.com/icons/light_list-alt?style=light - /// checklist, completed, done, finished, ol, todo, ul - static const IconData lightListAlt = const IconDataLight(0xf022); - - /// Duotone Alternate List icon - /// - /// https://fontawesome.com/icons/duotone_list-alt?style=duotone - /// checklist, completed, done, finished, ol, todo, ul - static const IconDataDuotone duotoneListAlt = const IconDataDuotone( - 0xf022, - secondary: const IconDataDuotone(0x10f022), - ); - - /// Regular List Music icon - /// - /// https://fontawesome.com/icons/list-music?style=regular - /// album, itunes, music, playlist, podcast, soundtrack - static const IconData listMusic = const IconDataRegular(0xf8c9); - - /// Solid List Music icon - /// - /// https://fontawesome.com/icons/list-music?style=solid - /// album, itunes, music, playlist, podcast, soundtrack - static const IconData solidListMusic = const IconDataSolid(0xf8c9); - - /// Light List Music icon - /// - /// https://fontawesome.com/icons/light_list-music?style=light - /// album, itunes, music, playlist, podcast, soundtrack - static const IconData lightListMusic = const IconDataLight(0xf8c9); - - /// Duotone List Music icon - /// - /// https://fontawesome.com/icons/duotone_list-music?style=duotone - /// album, itunes, music, playlist, podcast, soundtrack - static const IconDataDuotone duotoneListMusic = const IconDataDuotone( - 0xf8c9, - secondary: const IconDataDuotone(0x10f8c9), - ); - - /// Regular list-ol icon - /// - /// https://fontawesome.com/icons/list-ol?style=regular - /// checklist, completed, done, finished, numbers, ol, todo, ul - static const IconData listOl = const IconDataRegular(0xf0cb); - - /// Solid list-ol icon - /// - /// https://fontawesome.com/icons/list-ol?style=solid - /// checklist, completed, done, finished, numbers, ol, todo, ul - static const IconData solidListOl = const IconDataSolid(0xf0cb); - - /// Light list-ol icon - /// - /// https://fontawesome.com/icons/light_list-ol?style=light - /// checklist, completed, done, finished, numbers, ol, todo, ul - static const IconData lightListOl = const IconDataLight(0xf0cb); - - /// Duotone list-ol icon - /// - /// https://fontawesome.com/icons/duotone_list-ol?style=duotone - /// checklist, completed, done, finished, numbers, ol, todo, ul - static const IconDataDuotone duotoneListOl = const IconDataDuotone( - 0xf0cb, - secondary: const IconDataDuotone(0x10f0cb), - ); - - /// Regular list-ul icon - /// - /// https://fontawesome.com/icons/list-ul?style=regular - /// checklist, completed, done, finished, ol, todo, ul - static const IconData listUl = const IconDataRegular(0xf0ca); - - /// Solid list-ul icon - /// - /// https://fontawesome.com/icons/list-ul?style=solid - /// checklist, completed, done, finished, ol, todo, ul - static const IconData solidListUl = const IconDataSolid(0xf0ca); - - /// Light list-ul icon - /// - /// https://fontawesome.com/icons/light_list-ul?style=light - /// checklist, completed, done, finished, ol, todo, ul - static const IconData lightListUl = const IconDataLight(0xf0ca); - - /// Duotone list-ul icon - /// - /// https://fontawesome.com/icons/duotone_list-ul?style=duotone - /// checklist, completed, done, finished, ol, todo, ul - static const IconDataDuotone duotoneListUl = const IconDataDuotone( - 0xf0ca, - secondary: const IconDataDuotone(0x10f0ca), - ); - - /// Regular Location icon - /// - /// https://fontawesome.com/icons/location?style=regular - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData location = const IconDataRegular(0xf601); - - /// Solid Location icon - /// - /// https://fontawesome.com/icons/location?style=solid - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData solidLocation = const IconDataSolid(0xf601); - - /// Light Location icon - /// - /// https://fontawesome.com/icons/light_location?style=light - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData lightLocation = const IconDataLight(0xf601); - - /// Duotone Location icon - /// - /// https://fontawesome.com/icons/duotone_location?style=duotone - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconDataDuotone duotoneLocation = const IconDataDuotone( - 0xf601, - secondary: const IconDataDuotone(0x10f601), - ); - - /// Regular location-arrow icon - /// - /// https://fontawesome.com/icons/location-arrow?style=regular - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData locationArrow = const IconDataRegular(0xf124); - - /// Solid location-arrow icon - /// - /// https://fontawesome.com/icons/location-arrow?style=solid - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData solidLocationArrow = const IconDataSolid(0xf124); - - /// Light location-arrow icon - /// - /// https://fontawesome.com/icons/light_location-arrow?style=light - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData lightLocationArrow = const IconDataLight(0xf124); - - /// Duotone location-arrow icon - /// - /// https://fontawesome.com/icons/duotone_location-arrow?style=duotone - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconDataDuotone duotoneLocationArrow = const IconDataDuotone( - 0xf124, - secondary: const IconDataDuotone(0x10f124), - ); - - /// Regular Location Circle icon - /// - /// https://fontawesome.com/icons/location-circle?style=regular - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData locationCircle = const IconDataRegular(0xf602); - - /// Solid Location Circle icon - /// - /// https://fontawesome.com/icons/location-circle?style=solid - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData solidLocationCircle = const IconDataSolid(0xf602); - - /// Light Location Circle icon - /// - /// https://fontawesome.com/icons/light_location-circle?style=light - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconData lightLocationCircle = const IconDataLight(0xf602); - - /// Duotone Location Circle icon - /// - /// https://fontawesome.com/icons/duotone_location-circle?style=duotone - /// address, compass, coordinate, direction, gps, map, navigation, place - static const IconDataDuotone duotoneLocationCircle = const IconDataDuotone( - 0xf602, - secondary: const IconDataDuotone(0x10f602), - ); - - /// Regular Location Slash icon - /// - /// https://fontawesome.com/icons/location-slash?style=regular - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData locationSlash = const IconDataRegular(0xf603); - - /// Solid Location Slash icon - /// - /// https://fontawesome.com/icons/location-slash?style=solid - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData solidLocationSlash = const IconDataSolid(0xf603); - - /// Light Location Slash icon - /// - /// https://fontawesome.com/icons/light_location-slash?style=light - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconData lightLocationSlash = const IconDataLight(0xf603); - - /// Duotone Location Slash icon - /// - /// https://fontawesome.com/icons/duotone_location-slash?style=duotone - /// address, coordinate, direction, gps, map, navigation, place, where - static const IconDataDuotone duotoneLocationSlash = const IconDataDuotone( - 0xf603, - secondary: const IconDataDuotone(0x10f603), - ); - - /// Regular lock icon - /// - /// https://fontawesome.com/icons/lock?style=regular - /// admin, lock, open, password, private, protect, security - static const IconData lock = const IconDataRegular(0xf023); - - /// Solid lock icon - /// - /// https://fontawesome.com/icons/lock?style=solid - /// admin, lock, open, password, private, protect, security - static const IconData solidLock = const IconDataSolid(0xf023); - - /// Light lock icon - /// - /// https://fontawesome.com/icons/light_lock?style=light - /// admin, lock, open, password, private, protect, security - static const IconData lightLock = const IconDataLight(0xf023); - - /// Duotone lock icon - /// - /// https://fontawesome.com/icons/duotone_lock?style=duotone - /// admin, lock, open, password, private, protect, security - static const IconDataDuotone duotoneLock = const IconDataDuotone( - 0xf023, - secondary: const IconDataDuotone(0x10f023), - ); - - /// Regular Alternate Lock icon - /// - /// https://fontawesome.com/icons/lock-alt?style=regular - /// admin, lock, open, password, private, protect, security - static const IconData lockAlt = const IconDataRegular(0xf30d); - - /// Solid Alternate Lock icon - /// - /// https://fontawesome.com/icons/lock-alt?style=solid - /// admin, lock, open, password, private, protect, security - static const IconData solidLockAlt = const IconDataSolid(0xf30d); - - /// Light Alternate Lock icon - /// - /// https://fontawesome.com/icons/light_lock-alt?style=light - /// admin, lock, open, password, private, protect, security - static const IconData lightLockAlt = const IconDataLight(0xf30d); - - /// Duotone Alternate Lock icon - /// - /// https://fontawesome.com/icons/duotone_lock-alt?style=duotone - /// admin, lock, open, password, private, protect, security - static const IconDataDuotone duotoneLockAlt = const IconDataDuotone( - 0xf30d, - secondary: const IconDataDuotone(0x10f30d), - ); - - /// Regular Lock Open icon - /// - /// https://fontawesome.com/icons/lock-open?style=regular - /// admin, lock, open, password, private, protect, security - static const IconData lockOpen = const IconDataRegular(0xf3c1); - - /// Solid Lock Open icon - /// - /// https://fontawesome.com/icons/lock-open?style=solid - /// admin, lock, open, password, private, protect, security - static const IconData solidLockOpen = const IconDataSolid(0xf3c1); - - /// Light Lock Open icon - /// - /// https://fontawesome.com/icons/light_lock-open?style=light - /// admin, lock, open, password, private, protect, security - static const IconData lightLockOpen = const IconDataLight(0xf3c1); - - /// Duotone Lock Open icon - /// - /// https://fontawesome.com/icons/duotone_lock-open?style=duotone - /// admin, lock, open, password, private, protect, security - static const IconDataDuotone duotoneLockOpen = const IconDataDuotone( - 0xf3c1, - secondary: const IconDataDuotone(0x10f3c1), - ); - - /// Regular Alternate Lock Open icon - /// - /// https://fontawesome.com/icons/lock-open-alt?style=regular - /// admin, lock, open, password, private, protect, security - static const IconData lockOpenAlt = const IconDataRegular(0xf3c2); - - /// Solid Alternate Lock Open icon - /// - /// https://fontawesome.com/icons/lock-open-alt?style=solid - /// admin, lock, open, password, private, protect, security - static const IconData solidLockOpenAlt = const IconDataSolid(0xf3c2); - - /// Light Alternate Lock Open icon - /// - /// https://fontawesome.com/icons/light_lock-open-alt?style=light - /// admin, lock, open, password, private, protect, security - static const IconData lightLockOpenAlt = const IconDataLight(0xf3c2); - - /// Duotone Alternate Lock Open icon - /// - /// https://fontawesome.com/icons/duotone_lock-open-alt?style=duotone - /// admin, lock, open, password, private, protect, security - static const IconDataDuotone duotoneLockOpenAlt = const IconDataDuotone( - 0xf3c2, - secondary: const IconDataDuotone(0x10f3c2), - ); - - /// Regular Alternate Long Arrow Down icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-down?style=regular - /// download, long-arrow-down - static const IconData longArrowAltDown = const IconDataRegular(0xf309); - - /// Solid Alternate Long Arrow Down icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-down?style=solid - /// download, long-arrow-down - static const IconData solidLongArrowAltDown = const IconDataSolid(0xf309); - - /// Light Alternate Long Arrow Down icon - /// - /// https://fontawesome.com/icons/light_long-arrow-alt-down?style=light - /// download, long-arrow-down - static const IconData lightLongArrowAltDown = const IconDataLight(0xf309); - - /// Duotone Alternate Long Arrow Down icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-alt-down?style=duotone - /// download, long-arrow-down - static const IconDataDuotone duotoneLongArrowAltDown = const IconDataDuotone( - 0xf309, - secondary: const IconDataDuotone(0x10f309), - ); - - /// Regular Alternate Long Arrow Left icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-left?style=regular - /// back, long-arrow-left, previous - static const IconData longArrowAltLeft = const IconDataRegular(0xf30a); - - /// Solid Alternate Long Arrow Left icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-left?style=solid - /// back, long-arrow-left, previous - static const IconData solidLongArrowAltLeft = const IconDataSolid(0xf30a); - - /// Light Alternate Long Arrow Left icon - /// - /// https://fontawesome.com/icons/light_long-arrow-alt-left?style=light - /// back, long-arrow-left, previous - static const IconData lightLongArrowAltLeft = const IconDataLight(0xf30a); - - /// Duotone Alternate Long Arrow Left icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-alt-left?style=duotone - /// back, long-arrow-left, previous - static const IconDataDuotone duotoneLongArrowAltLeft = const IconDataDuotone( - 0xf30a, - secondary: const IconDataDuotone(0x10f30a), - ); - - /// Regular Alternate Long Arrow Right icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-right?style=regular - /// forward, long-arrow-right, next - static const IconData longArrowAltRight = const IconDataRegular(0xf30b); - - /// Solid Alternate Long Arrow Right icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-right?style=solid - /// forward, long-arrow-right, next - static const IconData solidLongArrowAltRight = const IconDataSolid(0xf30b); - - /// Light Alternate Long Arrow Right icon - /// - /// https://fontawesome.com/icons/light_long-arrow-alt-right?style=light - /// forward, long-arrow-right, next - static const IconData lightLongArrowAltRight = const IconDataLight(0xf30b); - - /// Duotone Alternate Long Arrow Right icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-alt-right?style=duotone - /// forward, long-arrow-right, next - static const IconDataDuotone duotoneLongArrowAltRight = const IconDataDuotone( - 0xf30b, - secondary: const IconDataDuotone(0x10f30b), - ); - - /// Regular Alternate Long Arrow Up icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-up?style=regular - /// long-arrow-up, upload - static const IconData longArrowAltUp = const IconDataRegular(0xf30c); - - /// Solid Alternate Long Arrow Up icon - /// - /// https://fontawesome.com/icons/long-arrow-alt-up?style=solid - /// long-arrow-up, upload - static const IconData solidLongArrowAltUp = const IconDataSolid(0xf30c); - - /// Light Alternate Long Arrow Up icon - /// - /// https://fontawesome.com/icons/light_long-arrow-alt-up?style=light - /// long-arrow-up, upload - static const IconData lightLongArrowAltUp = const IconDataLight(0xf30c); - - /// Duotone Alternate Long Arrow Up icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-alt-up?style=duotone - /// long-arrow-up, upload - static const IconDataDuotone duotoneLongArrowAltUp = const IconDataDuotone( - 0xf30c, - secondary: const IconDataDuotone(0x10f30c), - ); - - /// Regular Long Arrow Down icon - /// - /// https://fontawesome.com/icons/long-arrow-down?style=regular - /// download, long-arrow-down - static const IconData longArrowDown = const IconDataRegular(0xf175); - - /// Solid Long Arrow Down icon - /// - /// https://fontawesome.com/icons/long-arrow-down?style=solid - /// download, long-arrow-down - static const IconData solidLongArrowDown = const IconDataSolid(0xf175); - - /// Light Long Arrow Down icon - /// - /// https://fontawesome.com/icons/light_long-arrow-down?style=light - /// download, long-arrow-down - static const IconData lightLongArrowDown = const IconDataLight(0xf175); - - /// Duotone Long Arrow Down icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-down?style=duotone - /// download, long-arrow-down - static const IconDataDuotone duotoneLongArrowDown = const IconDataDuotone( - 0xf175, - secondary: const IconDataDuotone(0x10f175), - ); - - /// Regular Long Arrow Left icon - /// - /// https://fontawesome.com/icons/long-arrow-left?style=regular - /// back, long-arrow-left, previous - static const IconData longArrowLeft = const IconDataRegular(0xf177); - - /// Solid Long Arrow Left icon - /// - /// https://fontawesome.com/icons/long-arrow-left?style=solid - /// back, long-arrow-left, previous - static const IconData solidLongArrowLeft = const IconDataSolid(0xf177); - - /// Light Long Arrow Left icon - /// - /// https://fontawesome.com/icons/light_long-arrow-left?style=light - /// back, long-arrow-left, previous - static const IconData lightLongArrowLeft = const IconDataLight(0xf177); - - /// Duotone Long Arrow Left icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-left?style=duotone - /// back, long-arrow-left, previous - static const IconDataDuotone duotoneLongArrowLeft = const IconDataDuotone( - 0xf177, - secondary: const IconDataDuotone(0x10f177), - ); - - /// Regular Long Arrow Right icon - /// - /// https://fontawesome.com/icons/long-arrow-right?style=regular - /// forward, long-arrow-right, next - static const IconData longArrowRight = const IconDataRegular(0xf178); - - /// Solid Long Arrow Right icon - /// - /// https://fontawesome.com/icons/long-arrow-right?style=solid - /// forward, long-arrow-right, next - static const IconData solidLongArrowRight = const IconDataSolid(0xf178); - - /// Light Long Arrow Right icon - /// - /// https://fontawesome.com/icons/light_long-arrow-right?style=light - /// forward, long-arrow-right, next - static const IconData lightLongArrowRight = const IconDataLight(0xf178); - - /// Duotone Long Arrow Right icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-right?style=duotone - /// forward, long-arrow-right, next - static const IconDataDuotone duotoneLongArrowRight = const IconDataDuotone( - 0xf178, - secondary: const IconDataDuotone(0x10f178), - ); - - /// Regular Long Arrow Up icon - /// - /// https://fontawesome.com/icons/long-arrow-up?style=regular - /// long-arrow-up, upload - static const IconData longArrowUp = const IconDataRegular(0xf176); - - /// Solid Long Arrow Up icon - /// - /// https://fontawesome.com/icons/long-arrow-up?style=solid - /// long-arrow-up, upload - static const IconData solidLongArrowUp = const IconDataSolid(0xf176); - - /// Light Long Arrow Up icon - /// - /// https://fontawesome.com/icons/light_long-arrow-up?style=light - /// long-arrow-up, upload - static const IconData lightLongArrowUp = const IconDataLight(0xf176); - - /// Duotone Long Arrow Up icon - /// - /// https://fontawesome.com/icons/duotone_long-arrow-up?style=duotone - /// long-arrow-up, upload - static const IconDataDuotone duotoneLongArrowUp = const IconDataDuotone( - 0xf176, - secondary: const IconDataDuotone(0x10f176), - ); - - /// Regular Loveseat icon - /// - /// https://fontawesome.com/icons/loveseat?style=regular - /// chair, couch, cushion, furniture, relax, sofa - static const IconData loveseat = const IconDataRegular(0xf4cc); - - /// Solid Loveseat icon - /// - /// https://fontawesome.com/icons/loveseat?style=solid - /// chair, couch, cushion, furniture, relax, sofa - static const IconData solidLoveseat = const IconDataSolid(0xf4cc); - - /// Light Loveseat icon - /// - /// https://fontawesome.com/icons/light_loveseat?style=light - /// chair, couch, cushion, furniture, relax, sofa - static const IconData lightLoveseat = const IconDataLight(0xf4cc); - - /// Duotone Loveseat icon - /// - /// https://fontawesome.com/icons/duotone_loveseat?style=duotone - /// chair, couch, cushion, furniture, relax, sofa - static const IconDataDuotone duotoneLoveseat = const IconDataDuotone( - 0xf4cc, - secondary: const IconDataDuotone(0x10f4cc), - ); - - /// Regular Low Vision icon - /// - /// https://fontawesome.com/icons/low-vision?style=regular - /// blind, eye, sight - static const IconData lowVision = const IconDataRegular(0xf2a8); - - /// Solid Low Vision icon - /// - /// https://fontawesome.com/icons/low-vision?style=solid - /// blind, eye, sight - static const IconData solidLowVision = const IconDataSolid(0xf2a8); - - /// Light Low Vision icon - /// - /// https://fontawesome.com/icons/light_low-vision?style=light - /// blind, eye, sight - static const IconData lightLowVision = const IconDataLight(0xf2a8); - - /// Duotone Low Vision icon - /// - /// https://fontawesome.com/icons/duotone_low-vision?style=duotone - /// blind, eye, sight - static const IconDataDuotone duotoneLowVision = const IconDataDuotone( - 0xf2a8, - secondary: const IconDataDuotone(0x10f2a8), - ); - - /// Regular Luchador icon - /// - /// https://fontawesome.com/icons/luchador?style=regular - /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData luchador = const IconDataRegular(0xf455); - - /// Solid Luchador icon - /// - /// https://fontawesome.com/icons/luchador?style=solid - /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData solidLuchador = const IconDataSolid(0xf455); - - /// Light Luchador icon - /// - /// https://fontawesome.com/icons/light_luchador?style=light - /// fight, mexico, nacho libre, wrestle, wrestling - static const IconData lightLuchador = const IconDataLight(0xf455); - - /// Duotone Luchador icon - /// - /// https://fontawesome.com/icons/duotone_luchador?style=duotone - /// fight, mexico, nacho libre, wrestle, wrestling - static const IconDataDuotone duotoneLuchador = const IconDataDuotone( - 0xf455, - secondary: const IconDataDuotone(0x10f455), - ); - - /// Regular Luggage Cart icon - /// - /// https://fontawesome.com/icons/luggage-cart?style=regular - /// bag, baggage, suitcase, travel - static const IconData luggageCart = const IconDataRegular(0xf59d); - - /// Solid Luggage Cart icon - /// - /// https://fontawesome.com/icons/luggage-cart?style=solid - /// bag, baggage, suitcase, travel - static const IconData solidLuggageCart = const IconDataSolid(0xf59d); - - /// Light Luggage Cart icon - /// - /// https://fontawesome.com/icons/light_luggage-cart?style=light - /// bag, baggage, suitcase, travel - static const IconData lightLuggageCart = const IconDataLight(0xf59d); - - /// Duotone Luggage Cart icon - /// - /// https://fontawesome.com/icons/duotone_luggage-cart?style=duotone - /// bag, baggage, suitcase, travel - static const IconDataDuotone duotoneLuggageCart = const IconDataDuotone( - 0xf59d, - secondary: const IconDataDuotone(0x10f59d), - ); - - /// Regular Lungs icon - /// - /// https://fontawesome.com/icons/lungs?style=regular - /// air, breath, covid-19, organ, respiratory - static const IconData lungs = const IconDataRegular(0xf604); - - /// Solid Lungs icon - /// - /// https://fontawesome.com/icons/lungs?style=solid - /// air, breath, covid-19, organ, respiratory - static const IconData solidLungs = const IconDataSolid(0xf604); - - /// Light Lungs icon - /// - /// https://fontawesome.com/icons/light_lungs?style=light - /// air, breath, covid-19, organ, respiratory - static const IconData lightLungs = const IconDataLight(0xf604); - - /// Duotone Lungs icon - /// - /// https://fontawesome.com/icons/duotone_lungs?style=duotone - /// air, breath, covid-19, organ, respiratory - static const IconDataDuotone duotoneLungs = const IconDataDuotone( - 0xf604, - secondary: const IconDataDuotone(0x10f604), - ); - - /// Regular Lungs Virus icon - /// - /// https://fontawesome.com/icons/lungs-virus?style=regular - /// breath, covid-19, respiratory, sick - static const IconData lungsVirus = const IconDataRegular(0xe067); - - /// Light Lungs Virus icon - /// - /// https://fontawesome.com/icons/light_lungs-virus?style=light - /// breath, covid-19, respiratory, sick - static const IconData lightLungsVirus = const IconDataLight(0xe067); - - /// Solid Lungs Virus icon - /// - /// https://fontawesome.com/icons/lungs-virus?style=solid - /// breath, covid-19, respiratory, sick - static const IconData solidLungsVirus = const IconDataSolid(0xe067); - - /// Duotone Lungs Virus icon - /// - /// https://fontawesome.com/icons/duotone_lungs-virus?style=duotone - /// breath, covid-19, respiratory, sick - static const IconDataDuotone duotoneLungsVirus = const IconDataDuotone( - 0xe067, - secondary: const IconDataDuotone(0x10e067), - ); - - /// Brands lyft icon - /// - /// https://fontawesome.com/icons/lyft?style=brands - static const IconData lyft = const IconDataBrands(0xf3c3); - - /// Regular Mace icon - /// - /// https://fontawesome.com/icons/mace?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData mace = const IconDataRegular(0xf6f8); - - /// Solid Mace icon - /// - /// https://fontawesome.com/icons/mace?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData solidMace = const IconDataSolid(0xf6f8); - - /// Light Mace icon - /// - /// https://fontawesome.com/icons/light_mace?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconData lightMace = const IconDataLight(0xf6f8); - - /// Duotone Mace icon - /// - /// https://fontawesome.com/icons/duotone_mace?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, melee attack, weapon, windu - static const IconDataDuotone duotoneMace = const IconDataDuotone( - 0xf6f8, - secondary: const IconDataDuotone(0x10f6f8), - ); - - /// Brands Magento icon - /// - /// https://fontawesome.com/icons/magento?style=brands - static const IconData magento = const IconDataBrands(0xf3c4); - - /// Regular magic icon - /// - /// https://fontawesome.com/icons/magic?style=regular - /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData magic = const IconDataRegular(0xf0d0); - - /// Solid magic icon - /// - /// https://fontawesome.com/icons/magic?style=solid - /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData solidMagic = const IconDataSolid(0xf0d0); - - /// Light magic icon - /// - /// https://fontawesome.com/icons/light_magic?style=light - /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconData lightMagic = const IconDataLight(0xf0d0); - - /// Duotone magic icon - /// - /// https://fontawesome.com/icons/duotone_magic?style=duotone - /// autocomplete, automatic, mage, magic, spell, wand, witch, wizard - static const IconDataDuotone duotoneMagic = const IconDataDuotone( - 0xf0d0, - secondary: const IconDataDuotone(0x10f0d0), - ); - - /// Regular magnet icon - /// - /// https://fontawesome.com/icons/magnet?style=regular - /// Attract, lodestone, tool - static const IconData magnet = const IconDataRegular(0xf076); - - /// Solid magnet icon - /// - /// https://fontawesome.com/icons/magnet?style=solid - /// Attract, lodestone, tool - static const IconData solidMagnet = const IconDataSolid(0xf076); - - /// Light magnet icon - /// - /// https://fontawesome.com/icons/light_magnet?style=light - /// Attract, lodestone, tool - static const IconData lightMagnet = const IconDataLight(0xf076); - - /// Duotone magnet icon - /// - /// https://fontawesome.com/icons/duotone_magnet?style=duotone - /// Attract, lodestone, tool - static const IconDataDuotone duotoneMagnet = const IconDataDuotone( - 0xf076, - secondary: const IconDataDuotone(0x10f076), - ); - - /// Regular Mail Bulk icon - /// - /// https://fontawesome.com/icons/mail-bulk?style=regular - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData mailBulk = const IconDataRegular(0xf674); - - /// Solid Mail Bulk icon - /// - /// https://fontawesome.com/icons/mail-bulk?style=solid - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData solidMailBulk = const IconDataSolid(0xf674); - - /// Light Mail Bulk icon - /// - /// https://fontawesome.com/icons/light_mail-bulk?style=light - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData lightMailBulk = const IconDataLight(0xf674); - - /// Duotone Mail Bulk icon - /// - /// https://fontawesome.com/icons/duotone_mail-bulk?style=duotone - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconDataDuotone duotoneMailBulk = const IconDataDuotone( - 0xf674, - secondary: const IconDataDuotone(0x10f674), - ); - - /// Regular Mailbox icon - /// - /// https://fontawesome.com/icons/mailbox?style=regular - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData mailbox = const IconDataRegular(0xf813); - - /// Solid Mailbox icon - /// - /// https://fontawesome.com/icons/mailbox?style=solid - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData solidMailbox = const IconDataSolid(0xf813); - - /// Light Mailbox icon - /// - /// https://fontawesome.com/icons/light_mailbox?style=light - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconData lightMailbox = const IconDataLight(0xf813); - - /// Duotone Mailbox icon - /// - /// https://fontawesome.com/icons/duotone_mailbox?style=duotone - /// archive, envelope, letter, post office, postal, postcard, send, stamp, usps - static const IconDataDuotone duotoneMailbox = const IconDataDuotone( - 0xf813, - secondary: const IconDataDuotone(0x10f813), - ); - - /// Brands Mailchimp icon - /// - /// https://fontawesome.com/icons/mailchimp?style=brands - static const IconData mailchimp = const IconDataBrands(0xf59e); - - /// Regular Male icon - /// - /// https://fontawesome.com/icons/male?style=regular - /// human, man, person, profile, user - static const IconData male = const IconDataRegular(0xf183); - - /// Solid Male icon - /// - /// https://fontawesome.com/icons/male?style=solid - /// human, man, person, profile, user - static const IconData solidMale = const IconDataSolid(0xf183); - - /// Light Male icon - /// - /// https://fontawesome.com/icons/light_male?style=light - /// human, man, person, profile, user - static const IconData lightMale = const IconDataLight(0xf183); - - /// Duotone Male icon - /// - /// https://fontawesome.com/icons/duotone_male?style=duotone - /// human, man, person, profile, user - static const IconDataDuotone duotoneMale = const IconDataDuotone( - 0xf183, - secondary: const IconDataDuotone(0x10f183), - ); - - /// Brands Mandalorian icon - /// - /// https://fontawesome.com/icons/mandalorian?style=brands - static const IconData mandalorian = const IconDataBrands(0xf50f); - - /// 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 = const IconDataRegular(0xf6f9); - - /// 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 = const IconDataSolid(0xf6f9); - - /// Light Mandolin icon - /// - /// https://fontawesome.com/icons/light_mandolin?style=light - /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconData lightMandolin = const IconDataLight(0xf6f9); - - /// Duotone Mandolin icon - /// - /// https://fontawesome.com/icons/duotone_mandolin?style=duotone - /// Dungeons & Dragons, bard, d&d, dnd, fantasy, guitar, instrument, lute, music, song, strings - static const IconDataDuotone duotoneMandolin = const IconDataDuotone( - 0xf6f9, - secondary: const IconDataDuotone(0x10f6f9), - ); - - /// 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 - static const IconData map = const IconDataRegular(0xf279); - - /// 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 - static const IconData solidMap = const IconDataSolid(0xf279); - - /// Light Map icon - /// - /// https://fontawesome.com/icons/light_map?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMap = const IconDataLight(0xf279); - - /// Duotone Map icon - /// - /// https://fontawesome.com/icons/duotone_map?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMap = const IconDataDuotone( - 0xf279, - secondary: const IconDataDuotone(0x10f279), - ); - - /// Regular Map Marked icon - /// - /// https://fontawesome.com/icons/map-marked?style=regular - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapMarked = const IconDataRegular(0xf59f); - - /// Solid Map Marked icon - /// - /// https://fontawesome.com/icons/map-marked?style=solid - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapMarked = const IconDataSolid(0xf59f); - - /// Light Map Marked icon - /// - /// https://fontawesome.com/icons/light_map-marked?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapMarked = const IconDataLight(0xf59f); - - /// Duotone Map Marked icon - /// - /// https://fontawesome.com/icons/duotone_map-marked?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMapMarked = const IconDataDuotone( - 0xf59f, - secondary: const IconDataDuotone(0x10f59f), - ); - - /// Regular Alternate Map Marked icon - /// - /// https://fontawesome.com/icons/map-marked-alt?style=regular - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapMarkedAlt = const IconDataRegular(0xf5a0); - - /// Solid Alternate Map Marked icon - /// - /// https://fontawesome.com/icons/map-marked-alt?style=solid - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapMarkedAlt = const IconDataSolid(0xf5a0); - - /// Light Alternate Map Marked icon - /// - /// https://fontawesome.com/icons/light_map-marked-alt?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapMarkedAlt = const IconDataLight(0xf5a0); - - /// Duotone Alternate Map Marked icon - /// - /// https://fontawesome.com/icons/duotone_map-marked-alt?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMapMarkedAlt = const IconDataDuotone( - 0xf5a0, - secondary: const IconDataDuotone(0x10f5a0), - ); - - /// Regular map-marker icon - /// - /// https://fontawesome.com/icons/map-marker?style=regular - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapMarker = const IconDataRegular(0xf041); - - /// Solid map-marker icon - /// - /// https://fontawesome.com/icons/map-marker?style=solid - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapMarker = const IconDataSolid(0xf041); - - /// Light map-marker icon - /// - /// https://fontawesome.com/icons/light_map-marker?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapMarker = const IconDataLight(0xf041); - - /// Duotone map-marker icon - /// - /// https://fontawesome.com/icons/duotone_map-marker?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMapMarker = const IconDataDuotone( - 0xf041, - secondary: const IconDataDuotone(0x10f041), - ); - - /// Regular Alternate Map Marker icon - /// - /// https://fontawesome.com/icons/map-marker-alt?style=regular - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapMarkerAlt = const IconDataRegular(0xf3c5); - - /// Solid Alternate Map Marker icon - /// - /// https://fontawesome.com/icons/map-marker-alt?style=solid - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapMarkerAlt = const IconDataSolid(0xf3c5); - - /// Light Alternate Map Marker icon - /// - /// https://fontawesome.com/icons/light_map-marker-alt?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapMarkerAlt = const IconDataLight(0xf3c5); - - /// Duotone Alternate Map Marker icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-alt?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMapMarkerAlt = const IconDataDuotone( - 0xf3c5, - secondary: const IconDataDuotone(0x10f3c5), - ); - - /// Regular Alternate Map Marker Slash icon - /// - /// https://fontawesome.com/icons/map-marker-alt-slash?style=regular - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData mapMarkerAltSlash = const IconDataRegular(0xf605); - - /// Solid Alternate Map Marker Slash icon - /// - /// https://fontawesome.com/icons/map-marker-alt-slash?style=solid - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData solidMapMarkerAltSlash = const IconDataSolid(0xf605); - - /// Light Alternate Map Marker Slash icon - /// - /// https://fontawesome.com/icons/light_map-marker-alt-slash?style=light - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconData lightMapMarkerAltSlash = const IconDataLight(0xf605); - - /// Duotone Alternate Map Marker Slash icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-alt-slash?style=duotone - /// address, coordinates, destination, gps, localize, location, map, navigation, paper, pin, place, point of interest, position, route, travel - static const IconDataDuotone duotoneMapMarkerAltSlash = const IconDataDuotone( - 0xf605, - secondary: const IconDataDuotone(0x10f605), - ); - - /// Regular Map Marker Check icon - /// - /// https://fontawesome.com/icons/map-marker-check?style=regular - /// agree, coordinates, destination, location, map, navigation, pin, place, select, success, tick, todo - static const IconData mapMarkerCheck = const IconDataRegular(0xf606); - - /// Solid Map Marker Check icon - /// - /// https://fontawesome.com/icons/map-marker-check?style=solid - /// agree, coordinates, destination, location, map, navigation, pin, place, select, success, tick, todo - static const IconData solidMapMarkerCheck = const IconDataSolid(0xf606); - - /// Light Map Marker Check icon - /// - /// https://fontawesome.com/icons/light_map-marker-check?style=light - /// agree, coordinates, destination, location, map, navigation, pin, place, select, success, tick, todo - static const IconData lightMapMarkerCheck = const IconDataLight(0xf606); - - /// Duotone Map Marker Check icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-check?style=duotone - /// agree, coordinates, destination, location, map, navigation, pin, place, select, success, tick, todo - static const IconDataDuotone duotoneMapMarkerCheck = const IconDataDuotone( - 0xf606, - secondary: const IconDataDuotone(0x10f606), - ); - - /// Regular Map Marker Edit icon - /// - /// https://fontawesome.com/icons/map-marker-edit?style=regular - /// agree, coordinates, destination, edit, location, map, navigation, pen, pencil, pin, place, update, write - static const IconData mapMarkerEdit = const IconDataRegular(0xf607); - - /// Solid Map Marker Edit icon - /// - /// https://fontawesome.com/icons/map-marker-edit?style=solid - /// agree, coordinates, destination, edit, location, map, navigation, pen, pencil, pin, place, update, write - static const IconData solidMapMarkerEdit = const IconDataSolid(0xf607); - - /// Light Map Marker Edit icon - /// - /// https://fontawesome.com/icons/light_map-marker-edit?style=light - /// agree, coordinates, destination, edit, location, map, navigation, pen, pencil, pin, place, update, write - static const IconData lightMapMarkerEdit = const IconDataLight(0xf607); - - /// Duotone Map Marker Edit icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-edit?style=duotone - /// agree, coordinates, destination, edit, location, map, navigation, pen, pencil, pin, place, update, write - static const IconDataDuotone duotoneMapMarkerEdit = const IconDataDuotone( - 0xf607, - secondary: const IconDataDuotone(0x10f607), - ); - - /// Regular Map Marker Exclamation icon - /// - /// https://fontawesome.com/icons/map-marker-exclamation?style=regular - /// agree, alert, coordinates, destination, important, location, map, navigation, pin, place - static const IconData mapMarkerExclamation = const IconDataRegular(0xf608); - - /// Solid Map Marker Exclamation icon - /// - /// https://fontawesome.com/icons/map-marker-exclamation?style=solid - /// agree, alert, coordinates, destination, important, location, map, navigation, pin, place - static const IconData solidMapMarkerExclamation = const IconDataSolid(0xf608); - - /// Light Map Marker Exclamation icon - /// - /// https://fontawesome.com/icons/light_map-marker-exclamation?style=light - /// agree, alert, coordinates, destination, important, location, map, navigation, pin, place - static const IconData lightMapMarkerExclamation = const IconDataLight(0xf608); - - /// Duotone Map Marker Exclamation icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-exclamation?style=duotone - /// agree, alert, coordinates, destination, important, location, map, navigation, pin, place - static const IconDataDuotone duotoneMapMarkerExclamation = - const IconDataDuotone( - 0xf608, - secondary: const IconDataDuotone(0x10f608), - ); - - /// Regular Map Marker Minus icon - /// - /// https://fontawesome.com/icons/map-marker-minus?style=regular - /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData mapMarkerMinus = const IconDataRegular(0xf609); - - /// Solid Map Marker Minus icon - /// - /// https://fontawesome.com/icons/map-marker-minus?style=solid - /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData solidMapMarkerMinus = const IconDataSolid(0xf609); - - /// Light Map Marker Minus icon - /// - /// https://fontawesome.com/icons/light_map-marker-minus?style=light - /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconData lightMapMarkerMinus = const IconDataLight(0xf609); - - /// Duotone Map Marker Minus icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-minus?style=duotone - /// agree, coordinates, delete, destination, location, map, navigation, negative, pin, place, remove - static const IconDataDuotone duotoneMapMarkerMinus = const IconDataDuotone( - 0xf609, - secondary: const IconDataDuotone(0x10f609), - ); - - /// Regular Map Marker Plus icon - /// - /// https://fontawesome.com/icons/map-marker-plus?style=regular - /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData mapMarkerPlus = const IconDataRegular(0xf60a); - - /// Solid Map Marker Plus icon - /// - /// https://fontawesome.com/icons/map-marker-plus?style=solid - /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData solidMapMarkerPlus = const IconDataSolid(0xf60a); - - /// Light Map Marker Plus icon - /// - /// https://fontawesome.com/icons/light_map-marker-plus?style=light - /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconData lightMapMarkerPlus = const IconDataLight(0xf60a); - - /// Duotone Map Marker Plus icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-plus?style=duotone - /// add, agree, coordinates, create, destination, location, map, navigation, new, pin, place, positive - static const IconDataDuotone duotoneMapMarkerPlus = const IconDataDuotone( - 0xf60a, - secondary: const IconDataDuotone(0x10f60a), - ); - - /// Regular Map Marker Question icon - /// - /// https://fontawesome.com/icons/map-marker-question?style=regular - /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData mapMarkerQuestion = const IconDataRegular(0xf60b); - - /// Solid Map Marker Question icon - /// - /// https://fontawesome.com/icons/map-marker-question?style=solid - /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData solidMapMarkerQuestion = const IconDataSolid(0xf60b); - - /// Light Map Marker Question icon - /// - /// https://fontawesome.com/icons/light_map-marker-question?style=light - /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconData lightMapMarkerQuestion = const IconDataLight(0xf60b); - - /// Duotone Map Marker Question icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-question?style=duotone - /// agree, coordinates, destination, help, info, location, map, navigation, pin, place, support - static const IconDataDuotone duotoneMapMarkerQuestion = const IconDataDuotone( - 0xf60b, - secondary: const IconDataDuotone(0x10f60b), - ); - - /// Regular Map Marker Slash icon - /// - /// https://fontawesome.com/icons/map-marker-slash?style=regular - /// agree, cancel, coordinates, destination, location, map, missing, navigation, pin, place - static const IconData mapMarkerSlash = const IconDataRegular(0xf60c); - - /// Solid Map Marker Slash icon - /// - /// https://fontawesome.com/icons/map-marker-slash?style=solid - /// agree, cancel, coordinates, destination, location, map, missing, navigation, pin, place - static const IconData solidMapMarkerSlash = const IconDataSolid(0xf60c); - - /// Light Map Marker Slash icon - /// - /// https://fontawesome.com/icons/light_map-marker-slash?style=light - /// agree, cancel, coordinates, destination, location, map, missing, navigation, pin, place - static const IconData lightMapMarkerSlash = const IconDataLight(0xf60c); - - /// Duotone Map Marker Slash icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-slash?style=duotone - /// agree, cancel, coordinates, destination, location, map, missing, navigation, pin, place - static const IconDataDuotone duotoneMapMarkerSlash = const IconDataDuotone( - 0xf60c, - secondary: const IconDataDuotone(0x10f60c), - ); - - /// Regular Map Marker Smile icon - /// - /// https://fontawesome.com/icons/map-marker-smile?style=regular - /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData mapMarkerSmile = const IconDataRegular(0xf60d); - - /// Solid Map Marker Smile icon - /// - /// https://fontawesome.com/icons/map-marker-smile?style=solid - /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData solidMapMarkerSmile = const IconDataSolid(0xf60d); - - /// Light Map Marker Smile icon - /// - /// https://fontawesome.com/icons/light_map-marker-smile?style=light - /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconData lightMapMarkerSmile = const IconDataLight(0xf60d); - - /// Duotone Map Marker Smile icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-smile?style=duotone - /// agree, coordinates, destination, emoji, happy, location, map, navigation, pin, place, success - static const IconDataDuotone duotoneMapMarkerSmile = const IconDataDuotone( - 0xf60d, - secondary: const IconDataDuotone(0x10f60d), - ); - - /// Regular Map Marker Times icon - /// - /// https://fontawesome.com/icons/map-marker-times?style=regular - /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, x - static const IconData mapMarkerTimes = const IconDataRegular(0xf60e); - - /// Solid Map Marker Times icon - /// - /// https://fontawesome.com/icons/map-marker-times?style=solid - /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, x - static const IconData solidMapMarkerTimes = const IconDataSolid(0xf60e); - - /// Light Map Marker Times icon - /// - /// https://fontawesome.com/icons/light_map-marker-times?style=light - /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, x - static const IconData lightMapMarkerTimes = const IconDataLight(0xf60e); - - /// Duotone Map Marker Times icon - /// - /// https://fontawesome.com/icons/duotone_map-marker-times?style=duotone - /// agree, archive, coordinates, delete, destination, location, map, navigation, pin, place, remove, x - static const IconDataDuotone duotoneMapMarkerTimes = const IconDataDuotone( - 0xf60e, - secondary: const IconDataDuotone(0x10f60e), - ); - - /// 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, travel - static const IconData mapPin = const IconDataRegular(0xf276); - - /// Solid Map Pin icon - /// - /// https://fontawesome.com/icons/map-pin?style=solid - /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, travel - static const IconData solidMapPin = const IconDataSolid(0xf276); - - /// Light Map Pin icon - /// - /// https://fontawesome.com/icons/light_map-pin?style=light - /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, travel - static const IconData lightMapPin = const IconDataLight(0xf276); - - /// Duotone Map Pin icon - /// - /// https://fontawesome.com/icons/duotone_map-pin?style=duotone - /// address, agree, coordinates, destination, gps, localize, location, map, marker, navigation, pin, place, position, travel - static const IconDataDuotone duotoneMapPin = const IconDataDuotone( - 0xf276, - secondary: const IconDataDuotone(0x10f276), - ); - - /// Regular Map Signs icon - /// - /// https://fontawesome.com/icons/map-signs?style=regular - /// directions, directory, map, signage, wayfinding - static const IconData mapSigns = const IconDataRegular(0xf277); - - /// Solid Map Signs icon - /// - /// https://fontawesome.com/icons/map-signs?style=solid - /// directions, directory, map, signage, wayfinding - static const IconData solidMapSigns = const IconDataSolid(0xf277); - - /// Light Map Signs icon - /// - /// https://fontawesome.com/icons/light_map-signs?style=light - /// directions, directory, map, signage, wayfinding - static const IconData lightMapSigns = const IconDataLight(0xf277); - - /// Duotone Map Signs icon - /// - /// https://fontawesome.com/icons/duotone_map-signs?style=duotone - /// directions, directory, map, signage, wayfinding - static const IconDataDuotone duotoneMapSigns = const IconDataDuotone( - 0xf277, - secondary: const IconDataDuotone(0x10f277), - ); - - /// Brands Markdown icon - /// - /// https://fontawesome.com/icons/markdown?style=brands - static const IconData markdown = const IconDataBrands(0xf60f); - - /// Regular Marker icon - /// - /// https://fontawesome.com/icons/marker?style=regular - /// design, edit, sharpie, update, write - static const IconData marker = const IconDataRegular(0xf5a1); - - /// Solid Marker icon - /// - /// https://fontawesome.com/icons/marker?style=solid - /// design, edit, sharpie, update, write - static const IconData solidMarker = const IconDataSolid(0xf5a1); - - /// Light Marker icon - /// - /// https://fontawesome.com/icons/light_marker?style=light - /// design, edit, sharpie, update, write - static const IconData lightMarker = const IconDataLight(0xf5a1); - - /// Duotone Marker icon - /// - /// https://fontawesome.com/icons/duotone_marker?style=duotone - /// design, edit, sharpie, update, write - static const IconDataDuotone duotoneMarker = const IconDataDuotone( - 0xf5a1, - secondary: const IconDataDuotone(0x10f5a1), - ); - - /// Regular Mars icon - /// - /// https://fontawesome.com/icons/mars?style=regular - /// male - static const IconData mars = const IconDataRegular(0xf222); - - /// Solid Mars icon - /// - /// https://fontawesome.com/icons/mars?style=solid - /// male - static const IconData solidMars = const IconDataSolid(0xf222); - - /// Light Mars icon - /// - /// https://fontawesome.com/icons/light_mars?style=light - /// male - static const IconData lightMars = const IconDataLight(0xf222); - - /// Duotone Mars icon - /// - /// https://fontawesome.com/icons/duotone_mars?style=duotone - /// male - static const IconDataDuotone duotoneMars = const IconDataDuotone( - 0xf222, - secondary: const IconDataDuotone(0x10f222), - ); - - /// Regular Mars Double icon - /// - /// https://fontawesome.com/icons/mars-double?style=regular - static const IconData marsDouble = const IconDataRegular(0xf227); - - /// Solid Mars Double icon - /// - /// https://fontawesome.com/icons/mars-double?style=solid - static const IconData solidMarsDouble = const IconDataSolid(0xf227); - - /// Light Mars Double icon - /// - /// https://fontawesome.com/icons/light_mars-double?style=light - static const IconData lightMarsDouble = const IconDataLight(0xf227); - - /// Duotone Mars Double icon - /// - /// https://fontawesome.com/icons/duotone_mars-double?style=duotone - static const IconDataDuotone duotoneMarsDouble = const IconDataDuotone( - 0xf227, - secondary: const IconDataDuotone(0x10f227), - ); - - /// Regular Mars Stroke icon - /// - /// https://fontawesome.com/icons/mars-stroke?style=regular - static const IconData marsStroke = const IconDataRegular(0xf229); - - /// Solid Mars Stroke icon - /// - /// https://fontawesome.com/icons/mars-stroke?style=solid - static const IconData solidMarsStroke = const IconDataSolid(0xf229); - - /// Light Mars Stroke icon - /// - /// https://fontawesome.com/icons/light_mars-stroke?style=light - static const IconData lightMarsStroke = const IconDataLight(0xf229); - - /// Duotone Mars Stroke icon - /// - /// https://fontawesome.com/icons/duotone_mars-stroke?style=duotone - static const IconDataDuotone duotoneMarsStroke = const IconDataDuotone( - 0xf229, - secondary: const IconDataDuotone(0x10f229), - ); - - /// Regular Mars Stroke Horizontal icon - /// - /// https://fontawesome.com/icons/mars-stroke-h?style=regular - static const IconData marsStrokeH = const IconDataRegular(0xf22b); - - /// Solid Mars Stroke Horizontal icon - /// - /// https://fontawesome.com/icons/mars-stroke-h?style=solid - static const IconData solidMarsStrokeH = const IconDataSolid(0xf22b); - - /// Light Mars Stroke Horizontal icon - /// - /// https://fontawesome.com/icons/light_mars-stroke-h?style=light - static const IconData lightMarsStrokeH = const IconDataLight(0xf22b); - - /// Duotone Mars Stroke Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_mars-stroke-h?style=duotone - static const IconDataDuotone duotoneMarsStrokeH = const IconDataDuotone( - 0xf22b, - secondary: const IconDataDuotone(0x10f22b), - ); - - /// Regular Mars Stroke Vertical icon - /// - /// https://fontawesome.com/icons/mars-stroke-v?style=regular - static const IconData marsStrokeV = const IconDataRegular(0xf22a); - - /// Solid Mars Stroke Vertical icon - /// - /// https://fontawesome.com/icons/mars-stroke-v?style=solid - static const IconData solidMarsStrokeV = const IconDataSolid(0xf22a); - - /// Light Mars Stroke Vertical icon - /// - /// https://fontawesome.com/icons/light_mars-stroke-v?style=light - static const IconData lightMarsStrokeV = const IconDataLight(0xf22a); - - /// Duotone Mars Stroke Vertical icon - /// - /// https://fontawesome.com/icons/duotone_mars-stroke-v?style=duotone - static const IconDataDuotone duotoneMarsStrokeV = const IconDataDuotone( - 0xf22a, - secondary: const IconDataDuotone(0x10f22a), - ); - - /// Regular Mask icon - /// - /// https://fontawesome.com/icons/mask?style=regular - /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData mask = const IconDataRegular(0xf6fa); - - /// Solid Mask icon - /// - /// https://fontawesome.com/icons/mask?style=solid - /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData solidMask = const IconDataSolid(0xf6fa); - - /// Light Mask icon - /// - /// https://fontawesome.com/icons/light_mask?style=light - /// carnivale, costume, disguise, halloween, secret, super hero - static const IconData lightMask = const IconDataLight(0xf6fa); - - /// Duotone Mask icon - /// - /// https://fontawesome.com/icons/duotone_mask?style=duotone - /// carnivale, costume, disguise, halloween, secret, super hero - static const IconDataDuotone duotoneMask = const IconDataDuotone( - 0xf6fa, - secondary: const IconDataDuotone(0x10f6fa), - ); - - /// Brands Mastodon icon - /// - /// https://fontawesome.com/icons/mastodon?style=brands - static const IconData mastodon = const IconDataBrands(0xf4f6); - - /// Brands MaxCDN icon - /// - /// https://fontawesome.com/icons/maxcdn?style=brands - static const IconData maxcdn = const IconDataBrands(0xf136); - - /// Brands Material Design for Bootstrap icon - /// - /// https://fontawesome.com/icons/mdb?style=brands - static const IconData mdb = const IconDataBrands(0xf8ca); - - /// Regular Meat icon - /// - /// https://fontawesome.com/icons/meat?style=regular - /// beef, ham, mutton, pork, veal - static const IconData meat = const IconDataRegular(0xf814); - - /// Solid Meat icon - /// - /// https://fontawesome.com/icons/meat?style=solid - /// beef, ham, mutton, pork, veal - static const IconData solidMeat = const IconDataSolid(0xf814); - - /// Light Meat icon - /// - /// https://fontawesome.com/icons/light_meat?style=light - /// beef, ham, mutton, pork, veal - static const IconData lightMeat = const IconDataLight(0xf814); - - /// Duotone Meat icon - /// - /// https://fontawesome.com/icons/duotone_meat?style=duotone - /// beef, ham, mutton, pork, veal - static const IconDataDuotone duotoneMeat = const IconDataDuotone( - 0xf814, - secondary: const IconDataDuotone(0x10f814), - ); - - /// Regular Medal icon - /// - /// https://fontawesome.com/icons/medal?style=regular - /// award, ribbon, star, trophy - static const IconData medal = const IconDataRegular(0xf5a2); - - /// Solid Medal icon - /// - /// https://fontawesome.com/icons/medal?style=solid - /// award, ribbon, star, trophy - static const IconData solidMedal = const IconDataSolid(0xf5a2); - - /// Light Medal icon - /// - /// https://fontawesome.com/icons/light_medal?style=light - /// award, ribbon, star, trophy - static const IconData lightMedal = const IconDataLight(0xf5a2); - - /// Duotone Medal icon - /// - /// https://fontawesome.com/icons/duotone_medal?style=duotone - /// award, ribbon, star, trophy - static const IconDataDuotone duotoneMedal = const IconDataDuotone( - 0xf5a2, - secondary: const IconDataDuotone(0x10f5a2), - ); - - /// Brands MedApps icon - /// - /// https://fontawesome.com/icons/medapps?style=brands - static const IconData medapps = const IconDataBrands(0xf3c6); - - /// Brands Medium icon - /// - /// https://fontawesome.com/icons/medium?style=brands - static const IconData medium = const IconDataBrands(0xf23a); - - /// Brands Medium M icon - /// - /// https://fontawesome.com/icons/medium-m?style=brands - static const IconData mediumM = const IconDataBrands(0xf3c7); - - /// Regular medkit icon - /// - /// https://fontawesome.com/icons/medkit?style=regular - /// first aid, firstaid, health, help, support - static const IconData medkit = const IconDataRegular(0xf0fa); - - /// Solid medkit icon - /// - /// https://fontawesome.com/icons/medkit?style=solid - /// first aid, firstaid, health, help, support - static const IconData solidMedkit = const IconDataSolid(0xf0fa); - - /// Light medkit icon - /// - /// https://fontawesome.com/icons/light_medkit?style=light - /// first aid, firstaid, health, help, support - static const IconData lightMedkit = const IconDataLight(0xf0fa); - - /// Duotone medkit icon - /// - /// https://fontawesome.com/icons/duotone_medkit?style=duotone - /// first aid, firstaid, health, help, support - static const IconDataDuotone duotoneMedkit = const IconDataDuotone( - 0xf0fa, - secondary: const IconDataDuotone(0x10f0fa), - ); - - /// Brands MRT icon - /// - /// https://fontawesome.com/icons/medrt?style=brands - static const IconData medrt = const IconDataBrands(0xf3c8); - - /// Brands Meetup icon - /// - /// https://fontawesome.com/icons/meetup?style=brands - static const IconData meetup = const IconDataBrands(0xf2e0); - - /// Regular Megaphone icon - /// - /// https://fontawesome.com/icons/megaphone?style=regular - /// announcement, broadcast, bullhorn, louder, share - static const IconData megaphone = const IconDataRegular(0xf675); - - /// Solid Megaphone icon - /// - /// https://fontawesome.com/icons/megaphone?style=solid - /// announcement, broadcast, bullhorn, louder, share - static const IconData solidMegaphone = const IconDataSolid(0xf675); - - /// Light Megaphone icon - /// - /// https://fontawesome.com/icons/light_megaphone?style=light - /// announcement, broadcast, bullhorn, louder, share - static const IconData lightMegaphone = const IconDataLight(0xf675); - - /// Duotone Megaphone icon - /// - /// https://fontawesome.com/icons/duotone_megaphone?style=duotone - /// announcement, broadcast, bullhorn, louder, share - static const IconDataDuotone duotoneMegaphone = const IconDataDuotone( - 0xf675, - secondary: const IconDataDuotone(0x10f675), - ); - - /// Brands Megaport icon - /// - /// https://fontawesome.com/icons/megaport?style=brands - static const IconData megaport = const IconDataBrands(0xf5a3); - - /// Regular Neutral Face icon - /// - /// https://fontawesome.com/icons/meh?style=regular - /// emoticon, face, neutral, rating - static const IconData meh = const IconDataRegular(0xf11a); - - /// Solid Neutral Face icon - /// - /// https://fontawesome.com/icons/meh?style=solid - /// emoticon, face, neutral, rating - static const IconData solidMeh = const IconDataSolid(0xf11a); - - /// Light Neutral Face icon - /// - /// https://fontawesome.com/icons/light_meh?style=light - /// emoticon, face, neutral, rating - static const IconData lightMeh = const IconDataLight(0xf11a); - - /// Duotone Neutral Face icon - /// - /// https://fontawesome.com/icons/duotone_meh?style=duotone - /// emoticon, face, neutral, rating - static const IconDataDuotone duotoneMeh = const IconDataDuotone( - 0xf11a, - secondary: const IconDataDuotone(0x10f11a), - ); - - /// Regular Face Without Mouth icon - /// - /// https://fontawesome.com/icons/meh-blank?style=regular - /// emoticon, face, neutral, rating - static const IconData mehBlank = const IconDataRegular(0xf5a4); - - /// Solid Face Without Mouth icon - /// - /// https://fontawesome.com/icons/meh-blank?style=solid - /// emoticon, face, neutral, rating - static const IconData solidMehBlank = const IconDataSolid(0xf5a4); - - /// Light Face Without Mouth icon - /// - /// https://fontawesome.com/icons/light_meh-blank?style=light - /// emoticon, face, neutral, rating - static const IconData lightMehBlank = const IconDataLight(0xf5a4); - - /// Duotone Face Without Mouth icon - /// - /// https://fontawesome.com/icons/duotone_meh-blank?style=duotone - /// emoticon, face, neutral, rating - static const IconDataDuotone duotoneMehBlank = const IconDataDuotone( - 0xf5a4, - secondary: const IconDataDuotone(0x10f5a4), - ); - - /// Regular Face With Rolling Eyes icon - /// - /// https://fontawesome.com/icons/meh-rolling-eyes?style=regular - /// emoticon, face, neutral, rating - static const IconData mehRollingEyes = const IconDataRegular(0xf5a5); - - /// Solid Face With Rolling Eyes icon - /// - /// https://fontawesome.com/icons/meh-rolling-eyes?style=solid - /// emoticon, face, neutral, rating - static const IconData solidMehRollingEyes = const IconDataSolid(0xf5a5); - - /// Light Face With Rolling Eyes icon - /// - /// https://fontawesome.com/icons/light_meh-rolling-eyes?style=light - /// emoticon, face, neutral, rating - static const IconData lightMehRollingEyes = const IconDataLight(0xf5a5); - - /// Duotone Face With Rolling Eyes icon - /// - /// https://fontawesome.com/icons/duotone_meh-rolling-eyes?style=duotone - /// emoticon, face, neutral, rating - static const IconDataDuotone duotoneMehRollingEyes = const IconDataDuotone( - 0xf5a5, - secondary: const IconDataDuotone(0x10f5a5), - ); - - /// Regular Memory icon - /// - /// https://fontawesome.com/icons/memory?style=regular - /// DIMM, RAM, hardware, storage, technology - static const IconData memory = const IconDataRegular(0xf538); - - /// Solid Memory icon - /// - /// https://fontawesome.com/icons/memory?style=solid - /// DIMM, RAM, hardware, storage, technology - static const IconData solidMemory = const IconDataSolid(0xf538); - - /// Light Memory icon - /// - /// https://fontawesome.com/icons/light_memory?style=light - /// DIMM, RAM, hardware, storage, technology - static const IconData lightMemory = const IconDataLight(0xf538); - - /// Duotone Memory icon - /// - /// https://fontawesome.com/icons/duotone_memory?style=duotone - /// DIMM, RAM, hardware, storage, technology - static const IconDataDuotone duotoneMemory = const IconDataDuotone( - 0xf538, - secondary: const IconDataDuotone(0x10f538), - ); - - /// Brands Mendeley icon - /// - /// https://fontawesome.com/icons/mendeley?style=brands - static const IconData mendeley = const IconDataBrands(0xf7b3); - - /// Regular Menorah icon - /// - /// https://fontawesome.com/icons/menorah?style=regular - /// candle, hanukkah, jewish, judaism, light - static const IconData menorah = const IconDataRegular(0xf676); - - /// Solid Menorah icon - /// - /// https://fontawesome.com/icons/menorah?style=solid - /// candle, hanukkah, jewish, judaism, light - static const IconData solidMenorah = const IconDataSolid(0xf676); - - /// Light Menorah icon - /// - /// https://fontawesome.com/icons/light_menorah?style=light - /// candle, hanukkah, jewish, judaism, light - static const IconData lightMenorah = const IconDataLight(0xf676); - - /// Duotone Menorah icon - /// - /// https://fontawesome.com/icons/duotone_menorah?style=duotone - /// candle, hanukkah, jewish, judaism, light - static const IconDataDuotone duotoneMenorah = const IconDataDuotone( - 0xf676, - secondary: const IconDataDuotone(0x10f676), - ); - - /// Regular Mercury icon - /// - /// https://fontawesome.com/icons/mercury?style=regular - /// transgender - static const IconData mercury = const IconDataRegular(0xf223); - - /// Solid Mercury icon - /// - /// https://fontawesome.com/icons/mercury?style=solid - /// transgender - static const IconData solidMercury = const IconDataSolid(0xf223); - - /// Light Mercury icon - /// - /// https://fontawesome.com/icons/light_mercury?style=light - /// transgender - static const IconData lightMercury = const IconDataLight(0xf223); - - /// Duotone Mercury icon - /// - /// https://fontawesome.com/icons/duotone_mercury?style=duotone - /// transgender - static const IconDataDuotone duotoneMercury = const IconDataDuotone( - 0xf223, - secondary: const IconDataDuotone(0x10f223), - ); - - /// Regular Meteor icon - /// - /// https://fontawesome.com/icons/meteor?style=regular - /// armageddon, asteroid, comet, shooting star, space - static const IconData meteor = const IconDataRegular(0xf753); - - /// Solid Meteor icon - /// - /// https://fontawesome.com/icons/meteor?style=solid - /// armageddon, asteroid, comet, shooting star, space - static const IconData solidMeteor = const IconDataSolid(0xf753); - - /// Light Meteor icon - /// - /// https://fontawesome.com/icons/light_meteor?style=light - /// armageddon, asteroid, comet, shooting star, space - static const IconData lightMeteor = const IconDataLight(0xf753); - - /// Duotone Meteor icon - /// - /// https://fontawesome.com/icons/duotone_meteor?style=duotone - /// armageddon, asteroid, comet, shooting star, space - static const IconDataDuotone duotoneMeteor = const IconDataDuotone( - 0xf753, - secondary: const IconDataDuotone(0x10f753), - ); - - /// Brands Micro.blog icon - /// - /// https://fontawesome.com/icons/microblog?style=brands - static const IconData microblog = const IconDataBrands(0xe01a); - - /// Regular Microchip icon - /// - /// https://fontawesome.com/icons/microchip?style=regular - /// cpu, hardware, processor, technology - static const IconData microchip = const IconDataRegular(0xf2db); - - /// Solid Microchip icon - /// - /// https://fontawesome.com/icons/microchip?style=solid - /// cpu, hardware, processor, technology - static const IconData solidMicrochip = const IconDataSolid(0xf2db); - - /// Light Microchip icon - /// - /// https://fontawesome.com/icons/light_microchip?style=light - /// cpu, hardware, processor, technology - static const IconData lightMicrochip = const IconDataLight(0xf2db); - - /// Duotone Microchip icon - /// - /// https://fontawesome.com/icons/duotone_microchip?style=duotone - /// cpu, hardware, processor, technology - static const IconDataDuotone duotoneMicrochip = const IconDataDuotone( - 0xf2db, - secondary: const IconDataDuotone(0x10f2db), - ); - - /// Regular microphone icon - /// - /// https://fontawesome.com/icons/microphone?style=regular - /// audio, podcast, record, sing, sound, voice - static const IconData microphone = const IconDataRegular(0xf130); - - /// Solid microphone icon - /// - /// https://fontawesome.com/icons/microphone?style=solid - /// audio, podcast, record, sing, sound, voice - static const IconData solidMicrophone = const IconDataSolid(0xf130); - - /// Light microphone icon - /// - /// https://fontawesome.com/icons/light_microphone?style=light - /// audio, podcast, record, sing, sound, voice - static const IconData lightMicrophone = const IconDataLight(0xf130); - - /// Duotone microphone icon - /// - /// https://fontawesome.com/icons/duotone_microphone?style=duotone - /// audio, podcast, record, sing, sound, voice - static const IconDataDuotone duotoneMicrophone = const IconDataDuotone( - 0xf130, - secondary: const IconDataDuotone(0x10f130), - ); - - /// Regular Alternate Microphone icon - /// - /// https://fontawesome.com/icons/microphone-alt?style=regular - /// audio, podcast, record, sing, sound, voice - static const IconData microphoneAlt = const IconDataRegular(0xf3c9); - - /// Solid Alternate Microphone icon - /// - /// https://fontawesome.com/icons/microphone-alt?style=solid - /// audio, podcast, record, sing, sound, voice - static const IconData solidMicrophoneAlt = const IconDataSolid(0xf3c9); - - /// Light Alternate Microphone icon - /// - /// https://fontawesome.com/icons/light_microphone-alt?style=light - /// audio, podcast, record, sing, sound, voice - static const IconData lightMicrophoneAlt = const IconDataLight(0xf3c9); - - /// Duotone Alternate Microphone icon - /// - /// https://fontawesome.com/icons/duotone_microphone-alt?style=duotone - /// audio, podcast, record, sing, sound, voice - static const IconDataDuotone duotoneMicrophoneAlt = const IconDataDuotone( - 0xf3c9, - secondary: const IconDataDuotone(0x10f3c9), - ); - - /// Regular Alternate Microphone Slash icon - /// - /// https://fontawesome.com/icons/microphone-alt-slash?style=regular - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData microphoneAltSlash = const IconDataRegular(0xf539); - - /// Solid Alternate Microphone Slash icon - /// - /// https://fontawesome.com/icons/microphone-alt-slash?style=solid - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData solidMicrophoneAltSlash = const IconDataSolid(0xf539); - - /// Light Alternate Microphone Slash icon - /// - /// https://fontawesome.com/icons/light_microphone-alt-slash?style=light - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData lightMicrophoneAltSlash = const IconDataLight(0xf539); - - /// Duotone Alternate Microphone Slash icon - /// - /// https://fontawesome.com/icons/duotone_microphone-alt-slash?style=duotone - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconDataDuotone duotoneMicrophoneAltSlash = - const IconDataDuotone( - 0xf539, - secondary: const IconDataDuotone(0x10f539), - ); - - /// Regular Microphone Slash icon - /// - /// https://fontawesome.com/icons/microphone-slash?style=regular - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData microphoneSlash = const IconDataRegular(0xf131); - - /// Solid Microphone Slash icon - /// - /// https://fontawesome.com/icons/microphone-slash?style=solid - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData solidMicrophoneSlash = const IconDataSolid(0xf131); - - /// Light Microphone Slash icon - /// - /// https://fontawesome.com/icons/light_microphone-slash?style=light - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconData lightMicrophoneSlash = const IconDataLight(0xf131); - - /// Duotone Microphone Slash icon - /// - /// https://fontawesome.com/icons/duotone_microphone-slash?style=duotone - /// audio, disable, mute, podcast, record, sing, sound, voice - static const IconDataDuotone duotoneMicrophoneSlash = const IconDataDuotone( - 0xf131, - secondary: const IconDataDuotone(0x10f131), - ); - - /// Regular Microphone Stand icon - /// - /// https://fontawesome.com/icons/microphone-stand?style=regular - /// audio, podcast, record, sing, sound, voice - static const IconData microphoneStand = const IconDataRegular(0xf8cb); - - /// Solid Microphone Stand icon - /// - /// https://fontawesome.com/icons/microphone-stand?style=solid - /// audio, podcast, record, sing, sound, voice - static const IconData solidMicrophoneStand = const IconDataSolid(0xf8cb); - - /// Light Microphone Stand icon - /// - /// https://fontawesome.com/icons/light_microphone-stand?style=light - /// audio, podcast, record, sing, sound, voice - static const IconData lightMicrophoneStand = const IconDataLight(0xf8cb); - - /// Duotone Microphone Stand icon - /// - /// https://fontawesome.com/icons/duotone_microphone-stand?style=duotone - /// audio, podcast, record, sing, sound, voice - static const IconDataDuotone duotoneMicrophoneStand = const IconDataDuotone( - 0xf8cb, - secondary: const IconDataDuotone(0x10f8cb), - ); - - /// Regular Microscope icon - /// - /// https://fontawesome.com/icons/microscope?style=regular - /// covid-19, electron, lens, optics, science, shrink - static const IconData microscope = const IconDataRegular(0xf610); - - /// Solid Microscope icon - /// - /// https://fontawesome.com/icons/microscope?style=solid - /// covid-19, electron, lens, optics, science, shrink - static const IconData solidMicroscope = const IconDataSolid(0xf610); - - /// Light Microscope icon - /// - /// https://fontawesome.com/icons/light_microscope?style=light - /// covid-19, electron, lens, optics, science, shrink - static const IconData lightMicroscope = const IconDataLight(0xf610); - - /// Duotone Microscope icon - /// - /// https://fontawesome.com/icons/duotone_microscope?style=duotone - /// covid-19, electron, lens, optics, science, shrink - static const IconDataDuotone duotoneMicroscope = const IconDataDuotone( - 0xf610, - secondary: const IconDataDuotone(0x10f610), - ); - - /// Brands Microsoft icon - /// - /// https://fontawesome.com/icons/microsoft?style=brands - static const IconData microsoft = const IconDataBrands(0xf3ca); - - /// Regular Microwave icon - /// - /// https://fontawesome.com/icons/microwave?style=regular - /// chef, cook, kitchen, nuke - static const IconData microwave = const IconDataRegular(0xe01b); - - /// Solid Microwave icon - /// - /// https://fontawesome.com/icons/microwave?style=solid - /// chef, cook, kitchen, nuke - static const IconData solidMicrowave = const IconDataSolid(0xe01b); - - /// Light Microwave icon - /// - /// https://fontawesome.com/icons/light_microwave?style=light - /// chef, cook, kitchen, nuke - static const IconData lightMicrowave = const IconDataLight(0xe01b); - - /// Duotone Microwave icon - /// - /// https://fontawesome.com/icons/duotone_microwave?style=duotone - /// chef, cook, kitchen, nuke - static const IconDataDuotone duotoneMicrowave = const IconDataDuotone( - 0xe01b, - secondary: const IconDataDuotone(0x10e01b), - ); - - /// Regular Mind Share icon - /// - /// https://fontawesome.com/icons/mind-share?style=regular - /// brain, brainstorming, meeting, planning - static const IconData mindShare = const IconDataRegular(0xf677); - - /// Solid Mind Share icon - /// - /// https://fontawesome.com/icons/mind-share?style=solid - /// brain, brainstorming, meeting, planning - static const IconData solidMindShare = const IconDataSolid(0xf677); - - /// Light Mind Share icon - /// - /// https://fontawesome.com/icons/light_mind-share?style=light - /// brain, brainstorming, meeting, planning - static const IconData lightMindShare = const IconDataLight(0xf677); - - /// Duotone Mind Share icon - /// - /// https://fontawesome.com/icons/duotone_mind-share?style=duotone - /// brain, brainstorming, meeting, planning - static const IconDataDuotone duotoneMindShare = const IconDataDuotone( - 0xf677, - secondary: const IconDataDuotone(0x10f677), - ); - - /// Regular minus icon - /// - /// https://fontawesome.com/icons/minus?style=regular - /// collapse, delete, hide, minify, negative, remove, trash - static const IconData minus = const IconDataRegular(0xf068); - - /// Solid minus icon - /// - /// https://fontawesome.com/icons/minus?style=solid - /// collapse, delete, hide, minify, negative, remove, trash - static const IconData solidMinus = const IconDataSolid(0xf068); - - /// Light minus icon - /// - /// https://fontawesome.com/icons/light_minus?style=light - /// collapse, delete, hide, minify, negative, remove, trash - static const IconData lightMinus = const IconDataLight(0xf068); - - /// Duotone minus icon - /// - /// https://fontawesome.com/icons/duotone_minus?style=duotone - /// collapse, delete, hide, minify, negative, remove, trash - static const IconDataDuotone duotoneMinus = const IconDataDuotone( - 0xf068, - secondary: const IconDataDuotone(0x10f068), - ); - - /// Regular Minus Circle icon - /// - /// https://fontawesome.com/icons/minus-circle?style=regular - /// delete, hide, negative, remove, shape, trash - static const IconData minusCircle = const IconDataRegular(0xf056); - - /// Solid Minus Circle icon - /// - /// https://fontawesome.com/icons/minus-circle?style=solid - /// delete, hide, negative, remove, shape, trash - static const IconData solidMinusCircle = const IconDataSolid(0xf056); - - /// Light Minus Circle icon - /// - /// https://fontawesome.com/icons/light_minus-circle?style=light - /// delete, hide, negative, remove, shape, trash - static const IconData lightMinusCircle = const IconDataLight(0xf056); - - /// Duotone Minus Circle icon - /// - /// https://fontawesome.com/icons/duotone_minus-circle?style=duotone - /// delete, hide, negative, remove, shape, trash - static const IconDataDuotone duotoneMinusCircle = const IconDataDuotone( - 0xf056, - secondary: const IconDataDuotone(0x10f056), - ); - - /// Regular Minus Hexagon icon - /// - /// https://fontawesome.com/icons/minus-hexagon?style=regular - /// delete, hide, negative, remove, shape, trash - static const IconData minusHexagon = const IconDataRegular(0xf307); - - /// Solid Minus Hexagon icon - /// - /// https://fontawesome.com/icons/minus-hexagon?style=solid - /// delete, hide, negative, remove, shape, trash - static const IconData solidMinusHexagon = const IconDataSolid(0xf307); - - /// Light Minus Hexagon icon - /// - /// https://fontawesome.com/icons/light_minus-hexagon?style=light - /// delete, hide, negative, remove, shape, trash - static const IconData lightMinusHexagon = const IconDataLight(0xf307); - - /// Duotone Minus Hexagon icon - /// - /// https://fontawesome.com/icons/duotone_minus-hexagon?style=duotone - /// delete, hide, negative, remove, shape, trash - static const IconDataDuotone duotoneMinusHexagon = const IconDataDuotone( - 0xf307, - secondary: const IconDataDuotone(0x10f307), - ); - - /// Regular Minus Octagon icon - /// - /// https://fontawesome.com/icons/minus-octagon?style=regular - /// delete, hide, negative, remove, shape, trash - static const IconData minusOctagon = const IconDataRegular(0xf308); - - /// Solid Minus Octagon icon - /// - /// https://fontawesome.com/icons/minus-octagon?style=solid - /// delete, hide, negative, remove, shape, trash - static const IconData solidMinusOctagon = const IconDataSolid(0xf308); - - /// Light Minus Octagon icon - /// - /// https://fontawesome.com/icons/light_minus-octagon?style=light - /// delete, hide, negative, remove, shape, trash - static const IconData lightMinusOctagon = const IconDataLight(0xf308); - - /// Duotone Minus Octagon icon - /// - /// https://fontawesome.com/icons/duotone_minus-octagon?style=duotone - /// delete, hide, negative, remove, shape, trash - static const IconDataDuotone duotoneMinusOctagon = const IconDataDuotone( - 0xf308, - secondary: const IconDataDuotone(0x10f308), - ); - - /// Regular Minus Square icon - /// - /// https://fontawesome.com/icons/minus-square?style=regular - /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData minusSquare = const IconDataRegular(0xf146); - - /// Solid Minus Square icon - /// - /// https://fontawesome.com/icons/minus-square?style=solid - /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData solidMinusSquare = const IconDataSolid(0xf146); - - /// Light Minus Square icon - /// - /// https://fontawesome.com/icons/light_minus-square?style=light - /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconData lightMinusSquare = const IconDataLight(0xf146); - - /// Duotone Minus Square icon - /// - /// https://fontawesome.com/icons/duotone_minus-square?style=duotone - /// collapse, delete, hide, minify, negative, remove, shape, trash - static const IconDataDuotone duotoneMinusSquare = const IconDataDuotone( - 0xf146, - secondary: const IconDataDuotone(0x10f146), - ); - - /// Regular Mistletoe icon - /// - /// https://fontawesome.com/icons/mistletoe?style=regular - /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData mistletoe = const IconDataRegular(0xf7b4); - - /// Solid Mistletoe icon - /// - /// https://fontawesome.com/icons/mistletoe?style=solid - /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData solidMistletoe = const IconDataSolid(0xf7b4); - - /// Light Mistletoe icon - /// - /// https://fontawesome.com/icons/light_mistletoe?style=light - /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconData lightMistletoe = const IconDataLight(0xf7b4); - - /// Duotone Mistletoe icon - /// - /// https://fontawesome.com/icons/duotone_mistletoe?style=duotone - /// awkward, christmas, decoration, flora, holiday, kiss, plant, tradition, trap, xmas - static const IconDataDuotone duotoneMistletoe = const IconDataDuotone( - 0xf7b4, - secondary: const IconDataDuotone(0x10f7b4), - ); - - /// Regular Mitten icon - /// - /// https://fontawesome.com/icons/mitten?style=regular - /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData mitten = const IconDataRegular(0xf7b5); - - /// Solid Mitten icon - /// - /// https://fontawesome.com/icons/mitten?style=solid - /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData solidMitten = const IconDataSolid(0xf7b5); - - /// Light Mitten icon - /// - /// https://fontawesome.com/icons/light_mitten?style=light - /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconData lightMitten = const IconDataLight(0xf7b5); - - /// Duotone Mitten icon - /// - /// https://fontawesome.com/icons/duotone_mitten?style=duotone - /// clothing, cold, glove, hands, knitted, seasonal, warmth - static const IconDataDuotone duotoneMitten = const IconDataDuotone( - 0xf7b5, - secondary: const IconDataDuotone(0x10f7b5), - ); - - /// Brands Mix icon - /// - /// https://fontawesome.com/icons/mix?style=brands - static const IconData mix = const IconDataBrands(0xf3cb); - - /// Brands Mixcloud icon - /// - /// https://fontawesome.com/icons/mixcloud?style=brands - static const IconData mixcloud = const IconDataBrands(0xf289); - - /// Brands Mixer icon - /// - /// https://fontawesome.com/icons/mixer?style=brands - static const IconData mixer = const IconDataBrands(0xe056); - - /// Brands Mizuni icon - /// - /// https://fontawesome.com/icons/mizuni?style=brands - static const IconData mizuni = const IconDataBrands(0xf3cc); - - /// Regular Mobile Phone icon - /// - /// https://fontawesome.com/icons/mobile?style=regular - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData mobile = const IconDataRegular(0xf10b); - - /// Solid Mobile Phone icon - /// - /// https://fontawesome.com/icons/mobile?style=solid - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData solidMobile = const IconDataSolid(0xf10b); - - /// Light Mobile Phone icon - /// - /// https://fontawesome.com/icons/light_mobile?style=light - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData lightMobile = const IconDataLight(0xf10b); - - /// Duotone Mobile Phone icon - /// - /// https://fontawesome.com/icons/duotone_mobile?style=duotone - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconDataDuotone duotoneMobile = const IconDataDuotone( - 0xf10b, - secondary: const IconDataDuotone(0x10f10b), - ); - - /// Regular Alternate Mobile icon - /// - /// https://fontawesome.com/icons/mobile-alt?style=regular - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData mobileAlt = const IconDataRegular(0xf3cd); - - /// Solid Alternate Mobile icon - /// - /// https://fontawesome.com/icons/mobile-alt?style=solid - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData solidMobileAlt = const IconDataSolid(0xf3cd); - - /// Light Alternate Mobile icon - /// - /// https://fontawesome.com/icons/light_mobile-alt?style=light - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconData lightMobileAlt = const IconDataLight(0xf3cd); - - /// Duotone Alternate Mobile icon - /// - /// https://fontawesome.com/icons/duotone_mobile-alt?style=duotone - /// apple, call, cell phone, cellphone, device, iphone, number, screen, telephone - static const IconDataDuotone duotoneMobileAlt = const IconDataDuotone( - 0xf3cd, - secondary: const IconDataDuotone(0x10f3cd), - ); - - /// Regular Mobile Android icon - /// - /// https://fontawesome.com/icons/mobile-android?style=regular - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData mobileAndroid = const IconDataRegular(0xf3ce); - - /// Solid Mobile Android icon - /// - /// https://fontawesome.com/icons/mobile-android?style=solid - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData solidMobileAndroid = const IconDataSolid(0xf3ce); - - /// Light Mobile Android icon - /// - /// https://fontawesome.com/icons/light_mobile-android?style=light - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData lightMobileAndroid = const IconDataLight(0xf3ce); - - /// Duotone Mobile Android icon - /// - /// https://fontawesome.com/icons/duotone_mobile-android?style=duotone - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconDataDuotone duotoneMobileAndroid = const IconDataDuotone( - 0xf3ce, - secondary: const IconDataDuotone(0x10f3ce), - ); - - /// Regular Alternate Mobile Android icon - /// - /// https://fontawesome.com/icons/mobile-android-alt?style=regular - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData mobileAndroidAlt = const IconDataRegular(0xf3cf); - - /// Solid Alternate Mobile Android icon - /// - /// https://fontawesome.com/icons/mobile-android-alt?style=solid - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData solidMobileAndroidAlt = const IconDataSolid(0xf3cf); - - /// Light Alternate Mobile Android icon - /// - /// https://fontawesome.com/icons/light_mobile-android-alt?style=light - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconData lightMobileAndroidAlt = const IconDataLight(0xf3cf); - - /// Duotone Alternate Mobile Android icon - /// - /// https://fontawesome.com/icons/duotone_mobile-android-alt?style=duotone - /// android, call, cell phone, cellphone, device, number, screen, telephone, text - static const IconDataDuotone duotoneMobileAndroidAlt = const IconDataDuotone( - 0xf3cf, - secondary: const IconDataDuotone(0x10f3cf), - ); - - /// Brands MODX icon - /// - /// https://fontawesome.com/icons/modx?style=brands - static const IconData modx = const IconDataBrands(0xf285); - - /// Brands Monero icon - /// - /// https://fontawesome.com/icons/monero?style=brands - static const IconData monero = const IconDataBrands(0xf3d0); - - /// Regular Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill?style=regular - /// buy, cash, checkout, money, payment, price, purchase - static const IconData moneyBill = const IconDataRegular(0xf0d6); - - /// Solid Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill?style=solid - /// buy, cash, checkout, money, payment, price, purchase - static const IconData solidMoneyBill = const IconDataSolid(0xf0d6); - - /// Light Money Bill icon - /// - /// https://fontawesome.com/icons/light_money-bill?style=light - /// buy, cash, checkout, money, payment, price, purchase - static const IconData lightMoneyBill = const IconDataLight(0xf0d6); - - /// Duotone Money Bill icon - /// - /// https://fontawesome.com/icons/duotone_money-bill?style=duotone - /// buy, cash, checkout, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyBill = const IconDataDuotone( - 0xf0d6, - secondary: const IconDataDuotone(0x10f0d6), - ); - - /// Regular Alternate Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-alt?style=regular - /// buy, cash, checkout, money, payment, price, purchase - static const IconData moneyBillAlt = const IconDataRegular(0xf3d1); - - /// Solid Alternate Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-alt?style=solid - /// buy, cash, checkout, money, payment, price, purchase - static const IconData solidMoneyBillAlt = const IconDataSolid(0xf3d1); - - /// Light Alternate Money Bill icon - /// - /// https://fontawesome.com/icons/light_money-bill-alt?style=light - /// buy, cash, checkout, money, payment, price, purchase - static const IconData lightMoneyBillAlt = const IconDataLight(0xf3d1); - - /// Duotone Alternate Money Bill icon - /// - /// https://fontawesome.com/icons/duotone_money-bill-alt?style=duotone - /// buy, cash, checkout, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyBillAlt = const IconDataDuotone( - 0xf3d1, - secondary: const IconDataDuotone(0x10f3d1), - ); - - /// Regular Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-wave?style=regular - /// buy, cash, checkout, money, payment, price, purchase - static const IconData moneyBillWave = const IconDataRegular(0xf53a); - - /// Solid Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-wave?style=solid - /// buy, cash, checkout, money, payment, price, purchase - static const IconData solidMoneyBillWave = const IconDataSolid(0xf53a); - - /// Light Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/light_money-bill-wave?style=light - /// buy, cash, checkout, money, payment, price, purchase - static const IconData lightMoneyBillWave = const IconDataLight(0xf53a); - - /// Duotone Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/duotone_money-bill-wave?style=duotone - /// buy, cash, checkout, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyBillWave = const IconDataDuotone( - 0xf53a, - secondary: const IconDataDuotone(0x10f53a), - ); - - /// Regular Alternate Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-wave-alt?style=regular - /// buy, cash, checkout, money, payment, price, purchase - static const IconData moneyBillWaveAlt = const IconDataRegular(0xf53b); - - /// Solid Alternate Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/money-bill-wave-alt?style=solid - /// buy, cash, checkout, money, payment, price, purchase - static const IconData solidMoneyBillWaveAlt = const IconDataSolid(0xf53b); - - /// Light Alternate Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/light_money-bill-wave-alt?style=light - /// buy, cash, checkout, money, payment, price, purchase - static const IconData lightMoneyBillWaveAlt = const IconDataLight(0xf53b); - - /// Duotone Alternate Wavy Money Bill icon - /// - /// https://fontawesome.com/icons/duotone_money-bill-wave-alt?style=duotone - /// buy, cash, checkout, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyBillWaveAlt = const IconDataDuotone( - 0xf53b, - secondary: const IconDataDuotone(0x10f53b), - ); - - /// Regular Money Check icon - /// - /// https://fontawesome.com/icons/money-check?style=regular - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData moneyCheck = const IconDataRegular(0xf53c); - - /// Solid Money Check icon - /// - /// https://fontawesome.com/icons/money-check?style=solid - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData solidMoneyCheck = const IconDataSolid(0xf53c); - - /// Light Money Check icon - /// - /// https://fontawesome.com/icons/light_money-check?style=light - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData lightMoneyCheck = const IconDataLight(0xf53c); - - /// Duotone Money Check icon - /// - /// https://fontawesome.com/icons/duotone_money-check?style=duotone - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyCheck = const IconDataDuotone( - 0xf53c, - secondary: const IconDataDuotone(0x10f53c), - ); - - /// Regular Alternate Money Check icon - /// - /// https://fontawesome.com/icons/money-check-alt?style=regular - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData moneyCheckAlt = const IconDataRegular(0xf53d); - - /// Solid Alternate Money Check icon - /// - /// https://fontawesome.com/icons/money-check-alt?style=solid - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData solidMoneyCheckAlt = const IconDataSolid(0xf53d); - - /// Light Alternate Money Check icon - /// - /// https://fontawesome.com/icons/light_money-check-alt?style=light - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconData lightMoneyCheckAlt = const IconDataLight(0xf53d); - - /// Duotone Alternate Money Check icon - /// - /// https://fontawesome.com/icons/duotone_money-check-alt?style=duotone - /// bank check, buy, checkout, cheque, money, payment, price, purchase - static const IconDataDuotone duotoneMoneyCheckAlt = const IconDataDuotone( - 0xf53d, - secondary: const IconDataDuotone(0x10f53d), - ); - - /// Regular Money Check Edit icon - /// - /// https://fontawesome.com/icons/money-check-edit?style=regular - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData moneyCheckEdit = const IconDataRegular(0xf872); - - /// Solid Money Check Edit icon - /// - /// https://fontawesome.com/icons/money-check-edit?style=solid - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData solidMoneyCheckEdit = const IconDataSolid(0xf872); - - /// Light Money Check Edit icon - /// - /// https://fontawesome.com/icons/light_money-check-edit?style=light - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData lightMoneyCheckEdit = const IconDataLight(0xf872); - - /// Duotone Money Check Edit icon - /// - /// https://fontawesome.com/icons/duotone_money-check-edit?style=duotone - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconDataDuotone duotoneMoneyCheckEdit = const IconDataDuotone( - 0xf872, - secondary: const IconDataDuotone(0x10f872), - ); - - /// Regular Alternate Money Check Edit icon - /// - /// https://fontawesome.com/icons/money-check-edit-alt?style=regular - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData moneyCheckEditAlt = const IconDataRegular(0xf873); - - /// Solid Alternate Money Check Edit icon - /// - /// https://fontawesome.com/icons/money-check-edit-alt?style=solid - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData solidMoneyCheckEditAlt = const IconDataSolid(0xf873); - - /// Light Alternate Money Check Edit icon - /// - /// https://fontawesome.com/icons/light_money-check-edit-alt?style=light - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconData lightMoneyCheckEditAlt = const IconDataLight(0xf873); - - /// Duotone Alternate Money Check Edit icon - /// - /// https://fontawesome.com/icons/duotone_money-check-edit-alt?style=duotone - /// bank check, buy, checkout, cheque, money, payment, pen, price, purchase - static const IconDataDuotone duotoneMoneyCheckEditAlt = const IconDataDuotone( - 0xf873, - secondary: const IconDataDuotone(0x10f873), - ); - - /// Regular Heart Rate Monitor icon - /// - /// https://fontawesome.com/icons/monitor-heart-rate?style=regular - /// EKG, electrocardiogram, health, life, vital - static const IconData monitorHeartRate = const IconDataRegular(0xf611); - - /// Solid Heart Rate Monitor icon - /// - /// https://fontawesome.com/icons/monitor-heart-rate?style=solid - /// EKG, electrocardiogram, health, life, vital - static const IconData solidMonitorHeartRate = const IconDataSolid(0xf611); - - /// Light Heart Rate Monitor icon - /// - /// https://fontawesome.com/icons/light_monitor-heart-rate?style=light - /// EKG, electrocardiogram, health, life, vital - static const IconData lightMonitorHeartRate = const IconDataLight(0xf611); - - /// Duotone Heart Rate Monitor icon - /// - /// https://fontawesome.com/icons/duotone_monitor-heart-rate?style=duotone - /// EKG, electrocardiogram, health, life, vital - static const IconDataDuotone duotoneMonitorHeartRate = const IconDataDuotone( - 0xf611, - secondary: const IconDataDuotone(0x10f611), - ); - - /// Regular Monkey icon - /// - /// https://fontawesome.com/icons/monkey?style=regular - /// animal, banana, fauna, mammal, tail - static const IconData monkey = const IconDataRegular(0xf6fb); - - /// Solid Monkey icon - /// - /// https://fontawesome.com/icons/monkey?style=solid - /// animal, banana, fauna, mammal, tail - static const IconData solidMonkey = const IconDataSolid(0xf6fb); - - /// Light Monkey icon - /// - /// https://fontawesome.com/icons/light_monkey?style=light - /// animal, banana, fauna, mammal, tail - static const IconData lightMonkey = const IconDataLight(0xf6fb); - - /// Duotone Monkey icon - /// - /// https://fontawesome.com/icons/duotone_monkey?style=duotone - /// animal, banana, fauna, mammal, tail - static const IconDataDuotone duotoneMonkey = const IconDataDuotone( - 0xf6fb, - secondary: const IconDataDuotone(0x10f6fb), - ); - - /// Regular Monument icon - /// - /// https://fontawesome.com/icons/monument?style=regular - /// building, historic, landmark, memorable - static const IconData monument = const IconDataRegular(0xf5a6); - - /// Solid Monument icon - /// - /// https://fontawesome.com/icons/monument?style=solid - /// building, historic, landmark, memorable - static const IconData solidMonument = const IconDataSolid(0xf5a6); - - /// Light Monument icon - /// - /// https://fontawesome.com/icons/light_monument?style=light - /// building, historic, landmark, memorable - static const IconData lightMonument = const IconDataLight(0xf5a6); - - /// Duotone Monument icon - /// - /// https://fontawesome.com/icons/duotone_monument?style=duotone - /// building, historic, landmark, memorable - static const IconDataDuotone duotoneMonument = const IconDataDuotone( - 0xf5a6, - secondary: const IconDataDuotone(0x10f5a6), - ); - - /// Regular Moon icon - /// - /// https://fontawesome.com/icons/moon?style=regular - /// contrast, crescent, dark, lunar, night - static const IconData moon = const IconDataRegular(0xf186); - - /// Solid Moon icon - /// - /// https://fontawesome.com/icons/moon?style=solid - /// contrast, crescent, dark, lunar, night - static const IconData solidMoon = const IconDataSolid(0xf186); - - /// Light Moon icon - /// - /// https://fontawesome.com/icons/light_moon?style=light - /// contrast, crescent, dark, lunar, night - static const IconData lightMoon = const IconDataLight(0xf186); - - /// Duotone Moon icon - /// - /// https://fontawesome.com/icons/duotone_moon?style=duotone - /// contrast, crescent, dark, lunar, night - static const IconDataDuotone duotoneMoon = const IconDataDuotone( - 0xf186, - secondary: const IconDataDuotone(0x10f186), - ); - - /// Regular Moon with Cloud icon - /// - /// https://fontawesome.com/icons/moon-cloud?style=regular - /// crescent, dark, lunar, night, overcast - static const IconData moonCloud = const IconDataRegular(0xf754); - - /// Solid Moon with Cloud icon - /// - /// https://fontawesome.com/icons/moon-cloud?style=solid - /// crescent, dark, lunar, night, overcast - static const IconData solidMoonCloud = const IconDataSolid(0xf754); - - /// Light Moon with Cloud icon - /// - /// https://fontawesome.com/icons/light_moon-cloud?style=light - /// crescent, dark, lunar, night, overcast - static const IconData lightMoonCloud = const IconDataLight(0xf754); - - /// Duotone Moon with Cloud icon - /// - /// https://fontawesome.com/icons/duotone_moon-cloud?style=duotone - /// crescent, dark, lunar, night, overcast - static const IconDataDuotone duotoneMoonCloud = const IconDataDuotone( - 0xf754, - secondary: const IconDataDuotone(0x10f754), - ); - - /// Regular Moon with Stars icon - /// - /// https://fontawesome.com/icons/moon-stars?style=regular - /// clear, crescent, lunar, space, star - static const IconData moonStars = const IconDataRegular(0xf755); - - /// Solid Moon with Stars icon - /// - /// https://fontawesome.com/icons/moon-stars?style=solid - /// clear, crescent, lunar, space, star - static const IconData solidMoonStars = const IconDataSolid(0xf755); - - /// Light Moon with Stars icon - /// - /// https://fontawesome.com/icons/light_moon-stars?style=light - /// clear, crescent, lunar, space, star - static const IconData lightMoonStars = const IconDataLight(0xf755); - - /// Duotone Moon with Stars icon - /// - /// https://fontawesome.com/icons/duotone_moon-stars?style=duotone - /// clear, crescent, lunar, space, star - static const IconDataDuotone duotoneMoonStars = const IconDataDuotone( - 0xf755, - secondary: const IconDataDuotone(0x10f755), - ); - - /// Regular Mortar Pestle icon - /// - /// https://fontawesome.com/icons/mortar-pestle?style=regular - /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData mortarPestle = const IconDataRegular(0xf5a7); - - /// Solid Mortar Pestle icon - /// - /// https://fontawesome.com/icons/mortar-pestle?style=solid - /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData solidMortarPestle = const IconDataSolid(0xf5a7); - - /// Light Mortar Pestle icon - /// - /// https://fontawesome.com/icons/light_mortar-pestle?style=light - /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconData lightMortarPestle = const IconDataLight(0xf5a7); - - /// Duotone Mortar Pestle icon - /// - /// https://fontawesome.com/icons/duotone_mortar-pestle?style=duotone - /// crush, culinary, grind, medical, mix, pharmacy, prescription, spices - static const IconDataDuotone duotoneMortarPestle = const IconDataDuotone( - 0xf5a7, - secondary: const IconDataDuotone(0x10f5a7), - ); - - /// Regular Mosque icon - /// - /// https://fontawesome.com/icons/mosque?style=regular - /// building, islam, landmark, muslim - static const IconData mosque = const IconDataRegular(0xf678); - - /// Solid Mosque icon - /// - /// https://fontawesome.com/icons/mosque?style=solid - /// building, islam, landmark, muslim - static const IconData solidMosque = const IconDataSolid(0xf678); - - /// Light Mosque icon - /// - /// https://fontawesome.com/icons/light_mosque?style=light - /// building, islam, landmark, muslim - static const IconData lightMosque = const IconDataLight(0xf678); - - /// Duotone Mosque icon - /// - /// https://fontawesome.com/icons/duotone_mosque?style=duotone - /// building, islam, landmark, muslim - static const IconDataDuotone duotoneMosque = const IconDataDuotone( - 0xf678, - secondary: const IconDataDuotone(0x10f678), - ); - - /// Regular Motorcycle icon - /// - /// https://fontawesome.com/icons/motorcycle?style=regular - /// bike, machine, transportation, vehicle - static const IconData motorcycle = const IconDataRegular(0xf21c); - - /// Solid Motorcycle icon - /// - /// https://fontawesome.com/icons/motorcycle?style=solid - /// bike, machine, transportation, vehicle - static const IconData solidMotorcycle = const IconDataSolid(0xf21c); - - /// Light Motorcycle icon - /// - /// https://fontawesome.com/icons/light_motorcycle?style=light - /// bike, machine, transportation, vehicle - static const IconData lightMotorcycle = const IconDataLight(0xf21c); - - /// Duotone Motorcycle icon - /// - /// https://fontawesome.com/icons/duotone_motorcycle?style=duotone - /// bike, machine, transportation, vehicle - static const IconDataDuotone duotoneMotorcycle = const IconDataDuotone( - 0xf21c, - secondary: const IconDataDuotone(0x10f21c), - ); - - /// Regular Mountain icon - /// - /// https://fontawesome.com/icons/mountain?style=regular - /// glacier, hiking, hill, landscape, travel, view - static const IconData mountain = const IconDataRegular(0xf6fc); - - /// Solid Mountain icon - /// - /// https://fontawesome.com/icons/mountain?style=solid - /// glacier, hiking, hill, landscape, travel, view - static const IconData solidMountain = const IconDataSolid(0xf6fc); - - /// Light Mountain icon - /// - /// https://fontawesome.com/icons/light_mountain?style=light - /// glacier, hiking, hill, landscape, travel, view - static const IconData lightMountain = const IconDataLight(0xf6fc); - - /// Duotone Mountain icon - /// - /// https://fontawesome.com/icons/duotone_mountain?style=duotone - /// glacier, hiking, hill, landscape, travel, view - static const IconDataDuotone duotoneMountain = const IconDataDuotone( - 0xf6fc, - secondary: const IconDataDuotone(0x10f6fc), - ); - - /// Regular Mountains icon - /// - /// https://fontawesome.com/icons/mountains?style=regular - /// glacier, hiking, hill, landscape, travel, view - static const IconData mountains = const IconDataRegular(0xf6fd); - - /// Solid Mountains icon - /// - /// https://fontawesome.com/icons/mountains?style=solid - /// glacier, hiking, hill, landscape, travel, view - static const IconData solidMountains = const IconDataSolid(0xf6fd); - - /// Light Mountains icon - /// - /// https://fontawesome.com/icons/light_mountains?style=light - /// glacier, hiking, hill, landscape, travel, view - static const IconData lightMountains = const IconDataLight(0xf6fd); - - /// Duotone Mountains icon - /// - /// https://fontawesome.com/icons/duotone_mountains?style=duotone - /// glacier, hiking, hill, landscape, travel, view - static const IconDataDuotone duotoneMountains = const IconDataDuotone( - 0xf6fd, - secondary: const IconDataDuotone(0x10f6fd), - ); - - /// Regular Mouse icon - /// - /// https://fontawesome.com/icons/mouse?style=regular - /// click, computer, cursor, input, peripheral - static const IconData mouse = const IconDataRegular(0xf8cc); - - /// Solid Mouse icon - /// - /// https://fontawesome.com/icons/mouse?style=solid - /// click, computer, cursor, input, peripheral - static const IconData solidMouse = const IconDataSolid(0xf8cc); - - /// Light Mouse icon - /// - /// https://fontawesome.com/icons/light_mouse?style=light - /// click, computer, cursor, input, peripheral - static const IconData lightMouse = const IconDataLight(0xf8cc); - - /// Duotone Mouse icon - /// - /// https://fontawesome.com/icons/duotone_mouse?style=duotone - /// click, computer, cursor, input, peripheral - static const IconDataDuotone duotoneMouse = const IconDataDuotone( - 0xf8cc, - secondary: const IconDataDuotone(0x10f8cc), - ); - - /// Regular Alternate Mouse icon - /// - /// https://fontawesome.com/icons/mouse-alt?style=regular - /// click, computer, cursor, input, peripheral - static const IconData mouseAlt = const IconDataRegular(0xf8cd); - - /// Solid Alternate Mouse icon - /// - /// https://fontawesome.com/icons/mouse-alt?style=solid - /// click, computer, cursor, input, peripheral - static const IconData solidMouseAlt = const IconDataSolid(0xf8cd); - - /// Light Alternate Mouse icon - /// - /// https://fontawesome.com/icons/light_mouse-alt?style=light - /// click, computer, cursor, input, peripheral - static const IconData lightMouseAlt = const IconDataLight(0xf8cd); - - /// Duotone Alternate Mouse icon - /// - /// https://fontawesome.com/icons/duotone_mouse-alt?style=duotone - /// click, computer, cursor, input, peripheral - static const IconDataDuotone duotoneMouseAlt = const IconDataDuotone( - 0xf8cd, - secondary: const IconDataDuotone(0x10f8cd), - ); - - /// Regular Mouse Pointer icon - /// - /// https://fontawesome.com/icons/mouse-pointer?style=regular - /// arrow, cursor, select - static const IconData mousePointer = const IconDataRegular(0xf245); - - /// Solid Mouse Pointer icon - /// - /// https://fontawesome.com/icons/mouse-pointer?style=solid - /// arrow, cursor, select - static const IconData solidMousePointer = const IconDataSolid(0xf245); - - /// Light Mouse Pointer icon - /// - /// https://fontawesome.com/icons/light_mouse-pointer?style=light - /// arrow, cursor, select - static const IconData lightMousePointer = const IconDataLight(0xf245); - - /// Duotone Mouse Pointer icon - /// - /// https://fontawesome.com/icons/duotone_mouse-pointer?style=duotone - /// arrow, cursor, select - static const IconDataDuotone duotoneMousePointer = const IconDataDuotone( - 0xf245, - secondary: const IconDataDuotone(0x10f245), - ); - - /// Regular MP3 Player icon - /// - /// https://fontawesome.com/icons/mp3-player?style=regular - /// audio, handheld, ipod, itunes, music, zune - static const IconData mp3Player = const IconDataRegular(0xf8ce); - - /// Solid MP3 Player icon - /// - /// https://fontawesome.com/icons/mp3-player?style=solid - /// audio, handheld, ipod, itunes, music, zune - static const IconData solidMp3Player = const IconDataSolid(0xf8ce); - - /// Light MP3 Player icon - /// - /// https://fontawesome.com/icons/light_mp3-player?style=light - /// audio, handheld, ipod, itunes, music, zune - static const IconData lightMp3Player = const IconDataLight(0xf8ce); - - /// Duotone MP3 Player icon - /// - /// https://fontawesome.com/icons/duotone_mp3-player?style=duotone - /// audio, handheld, ipod, itunes, music, zune - static const IconDataDuotone duotoneMp3Player = const IconDataDuotone( - 0xf8ce, - secondary: const IconDataDuotone(0x10f8ce), - ); - - /// Regular Mug icon - /// - /// https://fontawesome.com/icons/mug?style=regular - /// coffee, cup, drink, hot chocolate, tea - static const IconData mug = const IconDataRegular(0xf874); - - /// Solid Mug icon - /// - /// https://fontawesome.com/icons/mug?style=solid - /// coffee, cup, drink, hot chocolate, tea - static const IconData solidMug = const IconDataSolid(0xf874); - - /// Light Mug icon - /// - /// https://fontawesome.com/icons/light_mug?style=light - /// coffee, cup, drink, hot chocolate, tea - static const IconData lightMug = const IconDataLight(0xf874); - - /// Duotone Mug icon - /// - /// https://fontawesome.com/icons/duotone_mug?style=duotone - /// coffee, cup, drink, hot chocolate, tea - static const IconDataDuotone duotoneMug = const IconDataDuotone( - 0xf874, - secondary: const IconDataDuotone(0x10f874), - ); - - /// Regular Mug Hot icon - /// - /// https://fontawesome.com/icons/mug-hot?style=regular - /// caliente, cocoa, coffee, cup, drink, holiday, hot chocolate, steam, tea, warmth - static const IconData mugHot = const IconDataRegular(0xf7b6); - - /// Solid Mug Hot icon - /// - /// https://fontawesome.com/icons/mug-hot?style=solid - /// caliente, cocoa, coffee, cup, drink, holiday, hot chocolate, steam, tea, warmth - static const IconData solidMugHot = const IconDataSolid(0xf7b6); - - /// Light Mug Hot icon - /// - /// https://fontawesome.com/icons/light_mug-hot?style=light - /// caliente, cocoa, coffee, cup, drink, holiday, hot chocolate, steam, tea, warmth - static const IconData lightMugHot = const IconDataLight(0xf7b6); - - /// Duotone Mug Hot icon - /// - /// https://fontawesome.com/icons/duotone_mug-hot?style=duotone - /// caliente, cocoa, coffee, cup, drink, holiday, hot chocolate, steam, tea, warmth - static const IconDataDuotone duotoneMugHot = const IconDataDuotone( - 0xf7b6, - secondary: const IconDataDuotone(0x10f7b6), - ); - - /// Regular Mug with Marshmallows icon - /// - /// https://fontawesome.com/icons/mug-marshmallows?style=regular - /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData mugMarshmallows = const IconDataRegular(0xf7b7); - - /// Solid Mug with Marshmallows icon - /// - /// https://fontawesome.com/icons/mug-marshmallows?style=solid - /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData solidMugMarshmallows = const IconDataSolid(0xf7b7); - - /// Light Mug with Marshmallows icon - /// - /// https://fontawesome.com/icons/light_mug-marshmallows?style=light - /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconData lightMugMarshmallows = const IconDataLight(0xf7b7); - - /// Duotone Mug with Marshmallows icon - /// - /// https://fontawesome.com/icons/duotone_mug-marshmallows?style=duotone - /// cocoa, coffee, cup, drink, hot chocolate, seasonal, sweet, warmth - static const IconDataDuotone duotoneMugMarshmallows = const IconDataDuotone( - 0xf7b7, - secondary: const IconDataDuotone(0x10f7b7), - ); - - /// Regular Mug Tea icon - /// - /// https://fontawesome.com/icons/mug-tea?style=regular - /// brew, drink, herbal, oolong - static const IconData mugTea = const IconDataRegular(0xf875); - - /// Solid Mug Tea icon - /// - /// https://fontawesome.com/icons/mug-tea?style=solid - /// brew, drink, herbal, oolong - static const IconData solidMugTea = const IconDataSolid(0xf875); - - /// Light Mug Tea icon - /// - /// https://fontawesome.com/icons/light_mug-tea?style=light - /// brew, drink, herbal, oolong - static const IconData lightMugTea = const IconDataLight(0xf875); - - /// Duotone Mug Tea icon - /// - /// https://fontawesome.com/icons/duotone_mug-tea?style=duotone - /// brew, drink, herbal, oolong - static const IconDataDuotone duotoneMugTea = const IconDataDuotone( - 0xf875, - secondary: const IconDataDuotone(0x10f875), - ); - - /// Regular Music icon - /// - /// https://fontawesome.com/icons/music?style=regular - /// lyrics, melody, note, sing, sound - static const IconData music = const IconDataRegular(0xf001); - - /// Solid Music icon - /// - /// https://fontawesome.com/icons/music?style=solid - /// lyrics, melody, note, sing, sound - static const IconData solidMusic = const IconDataSolid(0xf001); - - /// Light Music icon - /// - /// https://fontawesome.com/icons/light_music?style=light - /// lyrics, melody, note, sing, sound - static const IconData lightMusic = const IconDataLight(0xf001); - - /// Duotone Music icon - /// - /// https://fontawesome.com/icons/duotone_music?style=duotone - /// lyrics, melody, note, sing, sound - static const IconDataDuotone duotoneMusic = const IconDataDuotone( - 0xf001, - secondary: const IconDataDuotone(0x10f001), - ); - - /// Regular Alternate Music icon - /// - /// https://fontawesome.com/icons/music-alt?style=regular - /// lyrics, melody, note, sing, sound - static const IconData musicAlt = const IconDataRegular(0xf8cf); - - /// Solid Alternate Music icon - /// - /// https://fontawesome.com/icons/music-alt?style=solid - /// lyrics, melody, note, sing, sound - static const IconData solidMusicAlt = const IconDataSolid(0xf8cf); - - /// Light Alternate Music icon - /// - /// https://fontawesome.com/icons/light_music-alt?style=light - /// lyrics, melody, note, sing, sound - static const IconData lightMusicAlt = const IconDataLight(0xf8cf); - - /// Duotone Alternate Music icon - /// - /// https://fontawesome.com/icons/duotone_music-alt?style=duotone - /// lyrics, melody, note, sing, sound - static const IconDataDuotone duotoneMusicAlt = const IconDataDuotone( - 0xf8cf, - secondary: const IconDataDuotone(0x10f8cf), - ); - - /// Regular Alternate Music Slash icon - /// - /// https://fontawesome.com/icons/music-alt-slash?style=regular - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData musicAltSlash = const IconDataRegular(0xf8d0); - - /// Solid Alternate Music Slash icon - /// - /// https://fontawesome.com/icons/music-alt-slash?style=solid - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData solidMusicAltSlash = const IconDataSolid(0xf8d0); - - /// Light Alternate Music Slash icon - /// - /// https://fontawesome.com/icons/light_music-alt-slash?style=light - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData lightMusicAltSlash = const IconDataLight(0xf8d0); - - /// Duotone Alternate Music Slash icon - /// - /// https://fontawesome.com/icons/duotone_music-alt-slash?style=duotone - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconDataDuotone duotoneMusicAltSlash = const IconDataDuotone( - 0xf8d0, - secondary: const IconDataDuotone(0x10f8d0), - ); - - /// 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 = const IconDataRegular(0xf8d1); - - /// Solid Music Slash icon - /// - /// https://fontawesome.com/icons/music-slash?style=solid - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData solidMusicSlash = const IconDataSolid(0xf8d1); - - /// Light Music Slash icon - /// - /// https://fontawesome.com/icons/light_music-slash?style=light - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconData lightMusicSlash = const IconDataLight(0xf8d1); - - /// Duotone Music Slash icon - /// - /// https://fontawesome.com/icons/duotone_music-slash?style=duotone - /// cancel, disabled, lyrics, melody, mute, note, off, sing, sound - static const IconDataDuotone duotoneMusicSlash = const IconDataDuotone( - 0xf8d1, - secondary: const IconDataDuotone(0x10f8d1), - ); - - /// Brands Napster icon - /// - /// https://fontawesome.com/icons/napster?style=brands - static const IconData napster = const IconDataBrands(0xf3d2); - - /// Regular Narwhal icon - /// - /// https://fontawesome.com/icons/narwhal?style=regular - /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData narwhal = const IconDataRegular(0xf6fe); - - /// Solid Narwhal icon - /// - /// https://fontawesome.com/icons/narwhal?style=solid - /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData solidNarwhal = const IconDataSolid(0xf6fe); - - /// Light Narwhal icon - /// - /// https://fontawesome.com/icons/light_narwhal?style=light - /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconData lightNarwhal = const IconDataLight(0xf6fe); - - /// Duotone Narwhal icon - /// - /// https://fontawesome.com/icons/duotone_narwhal?style=duotone - /// animal, fauna, holiday, ivory, mammal, tusk, unicorn, whale - static const IconDataDuotone duotoneNarwhal = const IconDataDuotone( - 0xf6fe, - secondary: const IconDataDuotone(0x10f6fe), - ); - - /// Brands Neos icon - /// - /// https://fontawesome.com/icons/neos?style=brands - static const IconData neos = const IconDataBrands(0xf612); - - /// Regular Wired Network icon - /// - /// https://fontawesome.com/icons/network-wired?style=regular - /// computer, connect, ethernet, internet, intranet - static const IconData networkWired = const IconDataRegular(0xf6ff); - - /// Solid Wired Network icon - /// - /// https://fontawesome.com/icons/network-wired?style=solid - /// computer, connect, ethernet, internet, intranet - static const IconData solidNetworkWired = const IconDataSolid(0xf6ff); - - /// Light Wired Network icon - /// - /// https://fontawesome.com/icons/light_network-wired?style=light - /// computer, connect, ethernet, internet, intranet - static const IconData lightNetworkWired = const IconDataLight(0xf6ff); - - /// Duotone Wired Network icon - /// - /// https://fontawesome.com/icons/duotone_network-wired?style=duotone - /// computer, connect, ethernet, internet, intranet - static const IconDataDuotone duotoneNetworkWired = const IconDataDuotone( - 0xf6ff, - secondary: const IconDataDuotone(0x10f6ff), - ); - - /// Regular Neuter icon - /// - /// https://fontawesome.com/icons/neuter?style=regular - static const IconData neuter = const IconDataRegular(0xf22c); - - /// Solid Neuter icon - /// - /// https://fontawesome.com/icons/neuter?style=solid - static const IconData solidNeuter = const IconDataSolid(0xf22c); - - /// Light Neuter icon - /// - /// https://fontawesome.com/icons/light_neuter?style=light - static const IconData lightNeuter = const IconDataLight(0xf22c); - - /// Duotone Neuter icon - /// - /// https://fontawesome.com/icons/duotone_neuter?style=duotone - static const IconDataDuotone duotoneNeuter = const IconDataDuotone( - 0xf22c, - secondary: const IconDataDuotone(0x10f22c), - ); - - /// Regular Newspaper icon - /// - /// https://fontawesome.com/icons/newspaper?style=regular - /// article, editorial, headline, journal, journalism, news, press - static const IconData newspaper = const IconDataRegular(0xf1ea); - - /// Solid Newspaper icon - /// - /// https://fontawesome.com/icons/newspaper?style=solid - /// article, editorial, headline, journal, journalism, news, press - static const IconData solidNewspaper = const IconDataSolid(0xf1ea); - - /// Light Newspaper icon - /// - /// https://fontawesome.com/icons/light_newspaper?style=light - /// article, editorial, headline, journal, journalism, news, press - static const IconData lightNewspaper = const IconDataLight(0xf1ea); - - /// Duotone Newspaper icon - /// - /// https://fontawesome.com/icons/duotone_newspaper?style=duotone - /// article, editorial, headline, journal, journalism, news, press - static const IconDataDuotone duotoneNewspaper = const IconDataDuotone( - 0xf1ea, - secondary: const IconDataDuotone(0x10f1ea), - ); - - /// Brands Nimblr icon - /// - /// https://fontawesome.com/icons/nimblr?style=brands - static const IconData nimblr = const IconDataBrands(0xf5a8); - - /// Brands Node.js icon - /// - /// https://fontawesome.com/icons/node?style=brands - static const IconData node = const IconDataBrands(0xf419); - - /// Brands Node.js JS icon - /// - /// https://fontawesome.com/icons/node-js?style=brands - static const IconData nodeJs = const IconDataBrands(0xf3d3); - - /// Regular Not Equal icon - /// - /// https://fontawesome.com/icons/not-equal?style=regular - /// arithmetic, compare, math - static const IconData notEqual = const IconDataRegular(0xf53e); - - /// Solid Not Equal icon - /// - /// https://fontawesome.com/icons/not-equal?style=solid - /// arithmetic, compare, math - static const IconData solidNotEqual = const IconDataSolid(0xf53e); - - /// Light Not Equal icon - /// - /// https://fontawesome.com/icons/light_not-equal?style=light - /// arithmetic, compare, math - static const IconData lightNotEqual = const IconDataLight(0xf53e); - - /// Duotone Not Equal icon - /// - /// https://fontawesome.com/icons/duotone_not-equal?style=duotone - /// arithmetic, compare, math - static const IconDataDuotone duotoneNotEqual = const IconDataDuotone( - 0xf53e, - secondary: const IconDataDuotone(0x10f53e), - ); - - /// Regular Medical Notes icon - /// - /// https://fontawesome.com/icons/notes-medical?style=regular - /// clipboard, doctor, ehr, health, history, records - static const IconData notesMedical = const IconDataRegular(0xf481); - - /// Solid Medical Notes icon - /// - /// https://fontawesome.com/icons/notes-medical?style=solid - /// clipboard, doctor, ehr, health, history, records - static const IconData solidNotesMedical = const IconDataSolid(0xf481); - - /// Light Medical Notes icon - /// - /// https://fontawesome.com/icons/light_notes-medical?style=light - /// clipboard, doctor, ehr, health, history, records - static const IconData lightNotesMedical = const IconDataLight(0xf481); - - /// Duotone Medical Notes icon - /// - /// https://fontawesome.com/icons/duotone_notes-medical?style=duotone - /// clipboard, doctor, ehr, health, history, records - static const IconDataDuotone duotoneNotesMedical = const IconDataDuotone( - 0xf481, - secondary: const IconDataDuotone(0x10f481), - ); - - /// Brands npm icon - /// - /// https://fontawesome.com/icons/npm?style=brands - static const IconData npm = const IconDataBrands(0xf3d4); - - /// Brands NS8 icon - /// - /// https://fontawesome.com/icons/ns8?style=brands - static const IconData ns8 = const IconDataBrands(0xf3d5); - - /// Brands Nutritionix icon - /// - /// https://fontawesome.com/icons/nutritionix?style=brands - static const IconData nutritionix = const IconDataBrands(0xf3d6); - - /// Regular Object Group icon - /// - /// https://fontawesome.com/icons/object-group?style=regular - /// combine, copy, design, merge, select - static const IconData objectGroup = const IconDataRegular(0xf247); - - /// Solid Object Group icon - /// - /// https://fontawesome.com/icons/object-group?style=solid - /// combine, copy, design, merge, select - static const IconData solidObjectGroup = const IconDataSolid(0xf247); - - /// Light Object Group icon - /// - /// https://fontawesome.com/icons/light_object-group?style=light - /// combine, copy, design, merge, select - static const IconData lightObjectGroup = const IconDataLight(0xf247); - - /// Duotone Object Group icon - /// - /// https://fontawesome.com/icons/duotone_object-group?style=duotone - /// combine, copy, design, merge, select - static const IconDataDuotone duotoneObjectGroup = const IconDataDuotone( - 0xf247, - secondary: const IconDataDuotone(0x10f247), - ); - - /// Regular Object Ungroup icon - /// - /// https://fontawesome.com/icons/object-ungroup?style=regular - /// copy, design, merge, select, separate - static const IconData objectUngroup = const IconDataRegular(0xf248); - - /// Solid Object Ungroup icon - /// - /// https://fontawesome.com/icons/object-ungroup?style=solid - /// copy, design, merge, select, separate - static const IconData solidObjectUngroup = const IconDataSolid(0xf248); - - /// Light Object Ungroup icon - /// - /// https://fontawesome.com/icons/light_object-ungroup?style=light - /// copy, design, merge, select, separate - static const IconData lightObjectUngroup = const IconDataLight(0xf248); - - /// Duotone Object Ungroup icon - /// - /// https://fontawesome.com/icons/duotone_object-ungroup?style=duotone - /// copy, design, merge, select, separate - static const IconDataDuotone duotoneObjectUngroup = const IconDataDuotone( - 0xf248, - secondary: const IconDataDuotone(0x10f248), - ); - - /// Regular Octagon icon - /// - /// https://fontawesome.com/icons/octagon?style=regular - /// shape, stop - static const IconData octagon = const IconDataRegular(0xf306); - - /// Solid Octagon icon - /// - /// https://fontawesome.com/icons/octagon?style=solid - /// shape, stop - static const IconData solidOctagon = const IconDataSolid(0xf306); - - /// Light Octagon icon - /// - /// https://fontawesome.com/icons/light_octagon?style=light - /// shape, stop - static const IconData lightOctagon = const IconDataLight(0xf306); - - /// Duotone Octagon icon - /// - /// https://fontawesome.com/icons/duotone_octagon?style=duotone - /// shape, stop - static const IconDataDuotone duotoneOctagon = const IconDataDuotone( - 0xf306, - secondary: const IconDataDuotone(0x10f306), - ); - - /// Brands Octopus Deploy icon - /// - /// https://fontawesome.com/icons/octopus-deploy?style=brands - static const IconData octopusDeploy = const IconDataBrands(0xe082); - - /// Brands Odnoklassniki icon - /// - /// https://fontawesome.com/icons/odnoklassniki?style=brands - static const IconData odnoklassniki = const IconDataBrands(0xf263); - - /// Brands Odnoklassniki Square icon - /// - /// https://fontawesome.com/icons/odnoklassniki-square?style=brands - static const IconData odnoklassnikiSquare = const IconDataBrands(0xf264); - - /// Regular Oil Can icon - /// - /// https://fontawesome.com/icons/oil-can?style=regular - /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData oilCan = const IconDataRegular(0xf613); - - /// Solid Oil Can icon - /// - /// https://fontawesome.com/icons/oil-can?style=solid - /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData solidOilCan = const IconDataSolid(0xf613); - - /// Light Oil Can icon - /// - /// https://fontawesome.com/icons/light_oil-can?style=light - /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconData lightOilCan = const IconDataLight(0xf613); - - /// Duotone Oil Can icon - /// - /// https://fontawesome.com/icons/duotone_oil-can?style=duotone - /// auto, crude, gasoline, grease, lubricate, petroleum - static const IconDataDuotone duotoneOilCan = const IconDataDuotone( - 0xf613, - secondary: const IconDataDuotone(0x10f613), - ); - - /// Regular Oil Temp icon - /// - /// https://fontawesome.com/icons/oil-temp?style=regular - /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData oilTemp = const IconDataRegular(0xf614); - - /// Solid Oil Temp icon - /// - /// https://fontawesome.com/icons/oil-temp?style=solid - /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData solidOilTemp = const IconDataSolid(0xf614); - - /// Light Oil Temp icon - /// - /// https://fontawesome.com/icons/light_oil-temp?style=light - /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconData lightOilTemp = const IconDataLight(0xf614); - - /// Duotone Oil Temp icon - /// - /// https://fontawesome.com/icons/duotone_oil-temp?style=duotone - /// auto, crude, gasoline, grease, lubricate, overheat, petroleum, temperature - static const IconDataDuotone duotoneOilTemp = const IconDataDuotone( - 0xf614, - secondary: const IconDataDuotone(0x10f614), - ); - - /// Brands Old Republic icon - /// - /// https://fontawesome.com/icons/old-republic?style=brands - /// politics, star wars - static const IconData oldRepublic = const IconDataBrands(0xf510); - - /// Regular Om icon - /// - /// https://fontawesome.com/icons/om?style=regular - /// buddhism, hinduism, jainism, mantra - static const IconData om = const IconDataRegular(0xf679); - - /// Solid Om icon - /// - /// https://fontawesome.com/icons/om?style=solid - /// buddhism, hinduism, jainism, mantra - static const IconData solidOm = const IconDataSolid(0xf679); - - /// Light Om icon - /// - /// https://fontawesome.com/icons/light_om?style=light - /// buddhism, hinduism, jainism, mantra - static const IconData lightOm = const IconDataLight(0xf679); - - /// Duotone Om icon - /// - /// https://fontawesome.com/icons/duotone_om?style=duotone - /// buddhism, hinduism, jainism, mantra - static const IconDataDuotone duotoneOm = const IconDataDuotone( - 0xf679, - secondary: const IconDataDuotone(0x10f679), - ); - - /// Regular Omega icon - /// - /// https://fontawesome.com/icons/omega?style=regular - /// alphabet, greek, math - static const IconData omega = const IconDataRegular(0xf67a); - - /// Solid Omega icon - /// - /// https://fontawesome.com/icons/omega?style=solid - /// alphabet, greek, math - static const IconData solidOmega = const IconDataSolid(0xf67a); - - /// Light Omega icon - /// - /// https://fontawesome.com/icons/light_omega?style=light - /// alphabet, greek, math - static const IconData lightOmega = const IconDataLight(0xf67a); - - /// Duotone Omega icon - /// - /// https://fontawesome.com/icons/duotone_omega?style=duotone - /// alphabet, greek, math - static const IconDataDuotone duotoneOmega = const IconDataDuotone( - 0xf67a, - secondary: const IconDataDuotone(0x10f67a), - ); - - /// Brands OpenCart icon - /// - /// https://fontawesome.com/icons/opencart?style=brands - static const IconData opencart = const IconDataBrands(0xf23d); - - /// Brands OpenID icon - /// - /// https://fontawesome.com/icons/openid?style=brands - static const IconData openid = const IconDataBrands(0xf19b); - - /// Brands Opera icon - /// - /// https://fontawesome.com/icons/opera?style=brands - static const IconData opera = const IconDataBrands(0xf26a); - - /// Brands Optin Monster icon - /// - /// https://fontawesome.com/icons/optin-monster?style=brands - static const IconData optinMonster = const IconDataBrands(0xf23c); - - /// Brands ORCID icon - /// - /// https://fontawesome.com/icons/orcid?style=brands - static const IconData orcid = const IconDataBrands(0xf8d2); - - /// Regular Ornament icon - /// - /// https://fontawesome.com/icons/ornament?style=regular - /// christmas, decoration, holiday, xmas - static const IconData ornament = const IconDataRegular(0xf7b8); - - /// Solid Ornament icon - /// - /// https://fontawesome.com/icons/ornament?style=solid - /// christmas, decoration, holiday, xmas - static const IconData solidOrnament = const IconDataSolid(0xf7b8); - - /// Light Ornament icon - /// - /// https://fontawesome.com/icons/light_ornament?style=light - /// christmas, decoration, holiday, xmas - static const IconData lightOrnament = const IconDataLight(0xf7b8); - - /// Duotone Ornament icon - /// - /// https://fontawesome.com/icons/duotone_ornament?style=duotone - /// christmas, decoration, holiday, xmas - static const IconDataDuotone duotoneOrnament = const IconDataDuotone( - 0xf7b8, - secondary: const IconDataDuotone(0x10f7b8), - ); - - /// Brands Open Source Initiative icon - /// - /// https://fontawesome.com/icons/osi?style=brands - static const IconData osi = const IconDataBrands(0xf41a); - - /// Regular Otter icon - /// - /// https://fontawesome.com/icons/otter?style=regular - /// animal, badger, fauna, fur, mammal, marten - static const IconData otter = const IconDataRegular(0xf700); - - /// Solid Otter icon - /// - /// https://fontawesome.com/icons/otter?style=solid - /// animal, badger, fauna, fur, mammal, marten - static const IconData solidOtter = const IconDataSolid(0xf700); - - /// Light Otter icon - /// - /// https://fontawesome.com/icons/light_otter?style=light - /// animal, badger, fauna, fur, mammal, marten - static const IconData lightOtter = const IconDataLight(0xf700); - - /// Duotone Otter icon - /// - /// https://fontawesome.com/icons/duotone_otter?style=duotone - /// animal, badger, fauna, fur, mammal, marten - static const IconDataDuotone duotoneOtter = const IconDataDuotone( - 0xf700, - secondary: const IconDataDuotone(0x10f700), - ); - - /// Regular Outdent icon - /// - /// https://fontawesome.com/icons/outdent?style=regular - /// align, justify, paragraph, tab - static const IconData outdent = const IconDataRegular(0xf03b); - - /// Solid Outdent icon - /// - /// https://fontawesome.com/icons/outdent?style=solid - /// align, justify, paragraph, tab - static const IconData solidOutdent = const IconDataSolid(0xf03b); - - /// Light Outdent icon - /// - /// https://fontawesome.com/icons/light_outdent?style=light - /// align, justify, paragraph, tab - static const IconData lightOutdent = const IconDataLight(0xf03b); - - /// Duotone Outdent icon - /// - /// https://fontawesome.com/icons/duotone_outdent?style=duotone - /// align, justify, paragraph, tab - static const IconDataDuotone duotoneOutdent = const IconDataDuotone( - 0xf03b, - secondary: const IconDataDuotone(0x10f03b), - ); - - /// Regular Outlet icon - /// - /// https://fontawesome.com/icons/outlet?style=regular - /// electricity, energy, plug - static const IconData outlet = const IconDataRegular(0xe01c); - - /// Solid Outlet icon - /// - /// https://fontawesome.com/icons/outlet?style=solid - /// electricity, energy, plug - static const IconData solidOutlet = const IconDataSolid(0xe01c); - - /// Light Outlet icon - /// - /// https://fontawesome.com/icons/light_outlet?style=light - /// electricity, energy, plug - static const IconData lightOutlet = const IconDataLight(0xe01c); - - /// Duotone Outlet icon - /// - /// https://fontawesome.com/icons/duotone_outlet?style=duotone - /// electricity, energy, plug - static const IconDataDuotone duotoneOutlet = const IconDataDuotone( - 0xe01c, - secondary: const IconDataDuotone(0x10e01c), - ); - - /// Regular Oven icon - /// - /// https://fontawesome.com/icons/oven?style=regular - /// bake, broiler, convection, cook, kitchen, stove - static const IconData oven = const IconDataRegular(0xe01d); - - /// Solid Oven icon - /// - /// https://fontawesome.com/icons/oven?style=solid - /// bake, broiler, convection, cook, kitchen, stove - static const IconData solidOven = const IconDataSolid(0xe01d); - - /// Light Oven icon - /// - /// https://fontawesome.com/icons/light_oven?style=light - /// bake, broiler, convection, cook, kitchen, stove - static const IconData lightOven = const IconDataLight(0xe01d); - - /// Duotone Oven icon - /// - /// https://fontawesome.com/icons/duotone_oven?style=duotone - /// bake, broiler, convection, cook, kitchen, stove - static const IconDataDuotone duotoneOven = const IconDataDuotone( - 0xe01d, - secondary: const IconDataDuotone(0x10e01d), - ); - - /// Regular Overline icon - /// - /// https://fontawesome.com/icons/overline?style=regular - /// horizontal, line, overbar, overscore, vinculum - static const IconData overline = const IconDataRegular(0xf876); - - /// Solid Overline icon - /// - /// https://fontawesome.com/icons/overline?style=solid - /// horizontal, line, overbar, overscore, vinculum - static const IconData solidOverline = const IconDataSolid(0xf876); - - /// Light Overline icon - /// - /// https://fontawesome.com/icons/light_overline?style=light - /// horizontal, line, overbar, overscore, vinculum - static const IconData lightOverline = const IconDataLight(0xf876); - - /// Duotone Overline icon - /// - /// https://fontawesome.com/icons/duotone_overline?style=duotone - /// horizontal, line, overbar, overscore, vinculum - static const IconDataDuotone duotoneOverline = const IconDataDuotone( - 0xf876, - secondary: const IconDataDuotone(0x10f876), - ); - - /// Regular Page Break icon - /// - /// https://fontawesome.com/icons/page-break?style=regular - /// begin, divide, edit, end, format, split - static const IconData pageBreak = const IconDataRegular(0xf877); - - /// Solid Page Break icon - /// - /// https://fontawesome.com/icons/page-break?style=solid - /// begin, divide, edit, end, format, split - static const IconData solidPageBreak = const IconDataSolid(0xf877); - - /// Light Page Break icon - /// - /// https://fontawesome.com/icons/light_page-break?style=light - /// begin, divide, edit, end, format, split - static const IconData lightPageBreak = const IconDataLight(0xf877); - - /// Duotone Page Break icon - /// - /// https://fontawesome.com/icons/duotone_page-break?style=duotone - /// begin, divide, edit, end, format, split - static const IconDataDuotone duotonePageBreak = const IconDataDuotone( - 0xf877, - secondary: const IconDataDuotone(0x10f877), - ); - - /// Brands page4 Corporation icon - /// - /// https://fontawesome.com/icons/page4?style=brands - static const IconData page4 = const IconDataBrands(0xf3d7); - - /// Brands Pagelines icon - /// - /// https://fontawesome.com/icons/pagelines?style=brands - /// eco, flora, leaf, leaves, nature, plant, tree - static const IconData pagelines = const IconDataBrands(0xf18c); - - /// Regular Pager icon - /// - /// https://fontawesome.com/icons/pager?style=regular - /// beeper, cellphone, communication - static const IconData pager = const IconDataRegular(0xf815); - - /// Solid Pager icon - /// - /// https://fontawesome.com/icons/pager?style=solid - /// beeper, cellphone, communication - static const IconData solidPager = const IconDataSolid(0xf815); - - /// Light Pager icon - /// - /// https://fontawesome.com/icons/light_pager?style=light - /// beeper, cellphone, communication - static const IconData lightPager = const IconDataLight(0xf815); - - /// Duotone Pager icon - /// - /// https://fontawesome.com/icons/duotone_pager?style=duotone - /// beeper, cellphone, communication - static const IconDataDuotone duotonePager = const IconDataDuotone( - 0xf815, - secondary: const IconDataDuotone(0x10f815), - ); - - /// Regular Paint Brush icon - /// - /// https://fontawesome.com/icons/paint-brush?style=regular - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData paintBrush = const IconDataRegular(0xf1fc); - - /// Solid Paint Brush icon - /// - /// https://fontawesome.com/icons/paint-brush?style=solid - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData solidPaintBrush = const IconDataSolid(0xf1fc); - - /// Light Paint Brush icon - /// - /// https://fontawesome.com/icons/light_paint-brush?style=light - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData lightPaintBrush = const IconDataLight(0xf1fc); - - /// Duotone Paint Brush icon - /// - /// https://fontawesome.com/icons/duotone_paint-brush?style=duotone - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconDataDuotone duotonePaintBrush = const IconDataDuotone( - 0xf1fc, - secondary: const IconDataDuotone(0x10f1fc), - ); - - /// Regular Alternate Paint Brush icon - /// - /// https://fontawesome.com/icons/paint-brush-alt?style=regular - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData paintBrushAlt = const IconDataRegular(0xf5a9); - - /// Solid Alternate Paint Brush icon - /// - /// https://fontawesome.com/icons/paint-brush-alt?style=solid - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData solidPaintBrushAlt = const IconDataSolid(0xf5a9); - - /// Light Alternate Paint Brush icon - /// - /// https://fontawesome.com/icons/light_paint-brush-alt?style=light - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData lightPaintBrushAlt = const IconDataLight(0xf5a9); - - /// Duotone Alternate Paint Brush icon - /// - /// https://fontawesome.com/icons/duotone_paint-brush-alt?style=duotone - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconDataDuotone duotonePaintBrushAlt = const IconDataDuotone( - 0xf5a9, - secondary: const IconDataDuotone(0x10f5a9), - ); - - /// Regular Paint Roller icon - /// - /// https://fontawesome.com/icons/paint-roller?style=regular - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData paintRoller = const IconDataRegular(0xf5aa); - - /// Solid Paint Roller icon - /// - /// https://fontawesome.com/icons/paint-roller?style=solid - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData solidPaintRoller = const IconDataSolid(0xf5aa); - - /// Light Paint Roller icon - /// - /// https://fontawesome.com/icons/light_paint-roller?style=light - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData lightPaintRoller = const IconDataLight(0xf5aa); - - /// Duotone Paint Roller icon - /// - /// https://fontawesome.com/icons/duotone_paint-roller?style=duotone - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconDataDuotone duotonePaintRoller = const IconDataDuotone( - 0xf5aa, - secondary: const IconDataDuotone(0x10f5aa), - ); - - /// Regular Palette icon - /// - /// https://fontawesome.com/icons/palette?style=regular - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData palette = const IconDataRegular(0xf53f); - - /// Solid Palette icon - /// - /// https://fontawesome.com/icons/palette?style=solid - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData solidPalette = const IconDataSolid(0xf53f); - - /// Light Palette icon - /// - /// https://fontawesome.com/icons/light_palette?style=light - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconData lightPalette = const IconDataLight(0xf53f); - - /// Duotone Palette icon - /// - /// https://fontawesome.com/icons/duotone_palette?style=duotone - /// acrylic, art, brush, color, fill, paint, pigment, watercolor - static const IconDataDuotone duotonePalette = const IconDataDuotone( - 0xf53f, - secondary: const IconDataDuotone(0x10f53f), - ); - - /// Brands Palfed icon - /// - /// https://fontawesome.com/icons/palfed?style=brands - static const IconData palfed = const IconDataBrands(0xf3d8); - - /// Regular Pallet icon - /// - /// https://fontawesome.com/icons/pallet?style=regular - /// archive, box, inventory, shipping, warehouse - static const IconData pallet = const IconDataRegular(0xf482); - - /// Solid Pallet icon - /// - /// https://fontawesome.com/icons/pallet?style=solid - /// archive, box, inventory, shipping, warehouse - static const IconData solidPallet = const IconDataSolid(0xf482); - - /// Light Pallet icon - /// - /// https://fontawesome.com/icons/light_pallet?style=light - /// archive, box, inventory, shipping, warehouse - static const IconData lightPallet = const IconDataLight(0xf482); - - /// Duotone Pallet icon - /// - /// https://fontawesome.com/icons/duotone_pallet?style=duotone - /// archive, box, inventory, shipping, warehouse - static const IconDataDuotone duotonePallet = const IconDataDuotone( - 0xf482, - secondary: const IconDataDuotone(0x10f482), - ); - - /// Regular Alternate Pallet icon - /// - /// https://fontawesome.com/icons/pallet-alt?style=regular - /// archive, box, inventory, shipping, warehouse - static const IconData palletAlt = const IconDataRegular(0xf483); - - /// Solid Alternate Pallet icon - /// - /// https://fontawesome.com/icons/pallet-alt?style=solid - /// archive, box, inventory, shipping, warehouse - static const IconData solidPalletAlt = const IconDataSolid(0xf483); - - /// Light Alternate Pallet icon - /// - /// https://fontawesome.com/icons/light_pallet-alt?style=light - /// archive, box, inventory, shipping, warehouse - static const IconData lightPalletAlt = const IconDataLight(0xf483); - - /// Duotone Alternate Pallet icon - /// - /// https://fontawesome.com/icons/duotone_pallet-alt?style=duotone - /// archive, box, inventory, shipping, warehouse - static const IconDataDuotone duotonePalletAlt = const IconDataDuotone( - 0xf483, - secondary: const IconDataDuotone(0x10f483), - ); - - /// Regular Paper Plane icon - /// - /// https://fontawesome.com/icons/paper-plane?style=regular - /// air, float, fold, mail, paper, send - static const IconData paperPlane = const IconDataRegular(0xf1d8); - - /// Solid Paper Plane icon - /// - /// https://fontawesome.com/icons/paper-plane?style=solid - /// air, float, fold, mail, paper, send - static const IconData solidPaperPlane = const IconDataSolid(0xf1d8); - - /// Light Paper Plane icon - /// - /// https://fontawesome.com/icons/light_paper-plane?style=light - /// air, float, fold, mail, paper, send - static const IconData lightPaperPlane = const IconDataLight(0xf1d8); - - /// Duotone Paper Plane icon - /// - /// https://fontawesome.com/icons/duotone_paper-plane?style=duotone - /// air, float, fold, mail, paper, send - static const IconDataDuotone duotonePaperPlane = const IconDataDuotone( - 0xf1d8, - secondary: const IconDataDuotone(0x10f1d8), - ); - - /// Regular Paperclip icon - /// - /// https://fontawesome.com/icons/paperclip?style=regular - /// attach, attachment, connect, link - static const IconData paperclip = const IconDataRegular(0xf0c6); - - /// Solid Paperclip icon - /// - /// https://fontawesome.com/icons/paperclip?style=solid - /// attach, attachment, connect, link - static const IconData solidPaperclip = const IconDataSolid(0xf0c6); - - /// Light Paperclip icon - /// - /// https://fontawesome.com/icons/light_paperclip?style=light - /// attach, attachment, connect, link - static const IconData lightPaperclip = const IconDataLight(0xf0c6); - - /// Duotone Paperclip icon - /// - /// https://fontawesome.com/icons/duotone_paperclip?style=duotone - /// attach, attachment, connect, link - static const IconDataDuotone duotonePaperclip = const IconDataDuotone( - 0xf0c6, - secondary: const IconDataDuotone(0x10f0c6), - ); - - /// Regular Parachute Box icon - /// - /// https://fontawesome.com/icons/parachute-box?style=regular - /// aid, assistance, rescue, supplies - static const IconData parachuteBox = const IconDataRegular(0xf4cd); - - /// Solid Parachute Box icon - /// - /// https://fontawesome.com/icons/parachute-box?style=solid - /// aid, assistance, rescue, supplies - static const IconData solidParachuteBox = const IconDataSolid(0xf4cd); - - /// Light Parachute Box icon - /// - /// https://fontawesome.com/icons/light_parachute-box?style=light - /// aid, assistance, rescue, supplies - static const IconData lightParachuteBox = const IconDataLight(0xf4cd); - - /// Duotone Parachute Box icon - /// - /// https://fontawesome.com/icons/duotone_parachute-box?style=duotone - /// aid, assistance, rescue, supplies - static const IconDataDuotone duotoneParachuteBox = const IconDataDuotone( - 0xf4cd, - secondary: const IconDataDuotone(0x10f4cd), - ); - - /// Regular paragraph icon - /// - /// https://fontawesome.com/icons/paragraph?style=regular - /// edit, format, text, writing - static const IconData paragraph = const IconDataRegular(0xf1dd); - - /// Solid paragraph icon - /// - /// https://fontawesome.com/icons/paragraph?style=solid - /// edit, format, text, writing - static const IconData solidParagraph = const IconDataSolid(0xf1dd); - - /// Light paragraph icon - /// - /// https://fontawesome.com/icons/light_paragraph?style=light - /// edit, format, text, writing - static const IconData lightParagraph = const IconDataLight(0xf1dd); - - /// Duotone paragraph icon - /// - /// https://fontawesome.com/icons/duotone_paragraph?style=duotone - /// edit, format, text, writing - static const IconDataDuotone duotoneParagraph = const IconDataDuotone( - 0xf1dd, - secondary: const IconDataDuotone(0x10f1dd), - ); - - /// Regular Paragraph Right-to-Left icon - /// - /// https://fontawesome.com/icons/paragraph-rtl?style=regular - /// edit, format, text, writing - static const IconData paragraphRtl = const IconDataRegular(0xf878); - - /// Solid Paragraph Right-to-Left icon - /// - /// https://fontawesome.com/icons/paragraph-rtl?style=solid - /// edit, format, text, writing - static const IconData solidParagraphRtl = const IconDataSolid(0xf878); - - /// Light Paragraph Right-to-Left icon - /// - /// https://fontawesome.com/icons/light_paragraph-rtl?style=light - /// edit, format, text, writing - static const IconData lightParagraphRtl = const IconDataLight(0xf878); - - /// Duotone Paragraph Right-to-Left icon - /// - /// https://fontawesome.com/icons/duotone_paragraph-rtl?style=duotone - /// edit, format, text, writing - static const IconDataDuotone duotoneParagraphRtl = const IconDataDuotone( - 0xf878, - secondary: const IconDataDuotone(0x10f878), - ); - - /// Regular Parking icon - /// - /// https://fontawesome.com/icons/parking?style=regular - /// auto, car, garage, meter - static const IconData parking = const IconDataRegular(0xf540); - - /// Solid Parking icon - /// - /// https://fontawesome.com/icons/parking?style=solid - /// auto, car, garage, meter - static const IconData solidParking = const IconDataSolid(0xf540); - - /// Light Parking icon - /// - /// https://fontawesome.com/icons/light_parking?style=light - /// auto, car, garage, meter - static const IconData lightParking = const IconDataLight(0xf540); - - /// Duotone Parking icon - /// - /// https://fontawesome.com/icons/duotone_parking?style=duotone - /// auto, car, garage, meter - static const IconDataDuotone duotoneParking = const IconDataDuotone( - 0xf540, - secondary: const IconDataDuotone(0x10f540), - ); - - /// Regular Parking Circle icon - /// - /// https://fontawesome.com/icons/parking-circle?style=regular - /// auto, car, garage, meter - static const IconData parkingCircle = const IconDataRegular(0xf615); - - /// Solid Parking Circle icon - /// - /// https://fontawesome.com/icons/parking-circle?style=solid - /// auto, car, garage, meter - static const IconData solidParkingCircle = const IconDataSolid(0xf615); - - /// Light Parking Circle icon - /// - /// https://fontawesome.com/icons/light_parking-circle?style=light - /// auto, car, garage, meter - static const IconData lightParkingCircle = const IconDataLight(0xf615); - - /// Duotone Parking Circle icon - /// - /// https://fontawesome.com/icons/duotone_parking-circle?style=duotone - /// auto, car, garage, meter - static const IconDataDuotone duotoneParkingCircle = const IconDataDuotone( - 0xf615, - secondary: const IconDataDuotone(0x10f615), - ); - - /// Regular Parking Circle Slash icon - /// - /// https://fontawesome.com/icons/parking-circle-slash?style=regular - /// auto, car, garage, meter - static const IconData parkingCircleSlash = const IconDataRegular(0xf616); - - /// Solid Parking Circle Slash icon - /// - /// https://fontawesome.com/icons/parking-circle-slash?style=solid - /// auto, car, garage, meter - static const IconData solidParkingCircleSlash = const IconDataSolid(0xf616); - - /// Light Parking Circle Slash icon - /// - /// https://fontawesome.com/icons/light_parking-circle-slash?style=light - /// auto, car, garage, meter - static const IconData lightParkingCircleSlash = const IconDataLight(0xf616); - - /// Duotone Parking Circle Slash icon - /// - /// https://fontawesome.com/icons/duotone_parking-circle-slash?style=duotone - /// auto, car, garage, meter - static const IconDataDuotone duotoneParkingCircleSlash = - const IconDataDuotone( - 0xf616, - secondary: const IconDataDuotone(0x10f616), - ); - - /// Regular Parking Slash icon - /// - /// https://fontawesome.com/icons/parking-slash?style=regular - /// auto, car, garage, meter - static const IconData parkingSlash = const IconDataRegular(0xf617); - - /// Solid Parking Slash icon - /// - /// https://fontawesome.com/icons/parking-slash?style=solid - /// auto, car, garage, meter - static const IconData solidParkingSlash = const IconDataSolid(0xf617); - - /// Light Parking Slash icon - /// - /// https://fontawesome.com/icons/light_parking-slash?style=light - /// auto, car, garage, meter - static const IconData lightParkingSlash = const IconDataLight(0xf617); - - /// Duotone Parking Slash icon - /// - /// https://fontawesome.com/icons/duotone_parking-slash?style=duotone - /// auto, car, garage, meter - static const IconDataDuotone duotoneParkingSlash = const IconDataDuotone( - 0xf617, - secondary: const IconDataDuotone(0x10f617), - ); - - /// Regular Passport icon - /// - /// https://fontawesome.com/icons/passport?style=regular - /// document, id, identification, issued, travel - static const IconData passport = const IconDataRegular(0xf5ab); - - /// Solid Passport icon - /// - /// https://fontawesome.com/icons/passport?style=solid - /// document, id, identification, issued, travel - static const IconData solidPassport = const IconDataSolid(0xf5ab); - - /// Light Passport icon - /// - /// https://fontawesome.com/icons/light_passport?style=light - /// document, id, identification, issued, travel - static const IconData lightPassport = const IconDataLight(0xf5ab); - - /// Duotone Passport icon - /// - /// https://fontawesome.com/icons/duotone_passport?style=duotone - /// document, id, identification, issued, travel - static const IconDataDuotone duotonePassport = const IconDataDuotone( - 0xf5ab, - secondary: const IconDataDuotone(0x10f5ab), - ); - - /// Regular Pastafarianism icon - /// - /// https://fontawesome.com/icons/pastafarianism?style=regular - /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData pastafarianism = const IconDataRegular(0xf67b); - - /// Solid Pastafarianism icon - /// - /// https://fontawesome.com/icons/pastafarianism?style=solid - /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData solidPastafarianism = const IconDataSolid(0xf67b); - - /// Light Pastafarianism icon - /// - /// https://fontawesome.com/icons/light_pastafarianism?style=light - /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconData lightPastafarianism = const IconDataLight(0xf67b); - - /// Duotone Pastafarianism icon - /// - /// https://fontawesome.com/icons/duotone_pastafarianism?style=duotone - /// agnosticism, atheism, flying spaghetti monster, fsm - static const IconDataDuotone duotonePastafarianism = const IconDataDuotone( - 0xf67b, - secondary: const IconDataDuotone(0x10f67b), - ); - - /// Regular Paste icon - /// - /// https://fontawesome.com/icons/paste?style=regular - /// clipboard, copy, document, paper - static const IconData paste = const IconDataRegular(0xf0ea); - - /// Solid Paste icon - /// - /// https://fontawesome.com/icons/paste?style=solid - /// clipboard, copy, document, paper - static const IconData solidPaste = const IconDataSolid(0xf0ea); - - /// Light Paste icon - /// - /// https://fontawesome.com/icons/light_paste?style=light - /// clipboard, copy, document, paper - static const IconData lightPaste = const IconDataLight(0xf0ea); - - /// Duotone Paste icon - /// - /// https://fontawesome.com/icons/duotone_paste?style=duotone - /// clipboard, copy, document, paper - static const IconDataDuotone duotonePaste = const IconDataDuotone( - 0xf0ea, - secondary: const IconDataDuotone(0x10f0ea), - ); - - /// Brands Patreon icon - /// - /// https://fontawesome.com/icons/patreon?style=brands - static const IconData patreon = const IconDataBrands(0xf3d9); - - /// Regular pause icon - /// - /// https://fontawesome.com/icons/pause?style=regular - /// hold, wait - static const IconData pause = const IconDataRegular(0xf04c); - - /// Solid pause icon - /// - /// https://fontawesome.com/icons/pause?style=solid - /// hold, wait - static const IconData solidPause = const IconDataSolid(0xf04c); - - /// Light pause icon - /// - /// https://fontawesome.com/icons/light_pause?style=light - /// hold, wait - static const IconData lightPause = const IconDataLight(0xf04c); - - /// Duotone pause icon - /// - /// https://fontawesome.com/icons/duotone_pause?style=duotone - /// hold, wait - static const IconDataDuotone duotonePause = const IconDataDuotone( - 0xf04c, - secondary: const IconDataDuotone(0x10f04c), - ); - - /// Regular Pause Circle icon - /// - /// https://fontawesome.com/icons/pause-circle?style=regular - /// hold, wait - static const IconData pauseCircle = const IconDataRegular(0xf28b); - - /// Solid Pause Circle icon - /// - /// https://fontawesome.com/icons/pause-circle?style=solid - /// hold, wait - static const IconData solidPauseCircle = const IconDataSolid(0xf28b); - - /// Light Pause Circle icon - /// - /// https://fontawesome.com/icons/light_pause-circle?style=light - /// hold, wait - static const IconData lightPauseCircle = const IconDataLight(0xf28b); - - /// Duotone Pause Circle icon - /// - /// https://fontawesome.com/icons/duotone_pause-circle?style=duotone - /// hold, wait - static const IconDataDuotone duotonePauseCircle = const IconDataDuotone( - 0xf28b, - secondary: const IconDataDuotone(0x10f28b), - ); - - /// Regular Paw icon - /// - /// https://fontawesome.com/icons/paw?style=regular - /// animal, cat, dog, pet, print - static const IconData paw = const IconDataRegular(0xf1b0); - - /// Solid Paw icon - /// - /// https://fontawesome.com/icons/paw?style=solid - /// animal, cat, dog, pet, print - static const IconData solidPaw = const IconDataSolid(0xf1b0); - - /// Light Paw icon - /// - /// https://fontawesome.com/icons/light_paw?style=light - /// animal, cat, dog, pet, print - static const IconData lightPaw = const IconDataLight(0xf1b0); - - /// Duotone Paw icon - /// - /// https://fontawesome.com/icons/duotone_paw?style=duotone - /// animal, cat, dog, pet, print - static const IconDataDuotone duotonePaw = const IconDataDuotone( - 0xf1b0, - secondary: const IconDataDuotone(0x10f1b0), - ); - - /// Regular Paw Alt icon - /// - /// https://fontawesome.com/icons/paw-alt?style=regular - /// animal, cat, dog, pet, print - static const IconData pawAlt = const IconDataRegular(0xf701); - - /// Solid Paw Alt icon - /// - /// https://fontawesome.com/icons/paw-alt?style=solid - /// animal, cat, dog, pet, print - static const IconData solidPawAlt = const IconDataSolid(0xf701); - - /// Light Paw Alt icon - /// - /// https://fontawesome.com/icons/light_paw-alt?style=light - /// animal, cat, dog, pet, print - static const IconData lightPawAlt = const IconDataLight(0xf701); - - /// Duotone Paw Alt icon - /// - /// https://fontawesome.com/icons/duotone_paw-alt?style=duotone - /// animal, cat, dog, pet, print - static const IconDataDuotone duotonePawAlt = const IconDataDuotone( - 0xf701, - secondary: const IconDataDuotone(0x10f701), - ); - - /// 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 = const IconDataRegular(0xf702); - - /// 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 = const IconDataSolid(0xf702); - - /// Light Paw Claws icon - /// - /// https://fontawesome.com/icons/light_paw-claws?style=light - /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconData lightPawClaws = const IconDataLight(0xf702); - - /// Duotone Paw Claws icon - /// - /// https://fontawesome.com/icons/duotone_paw-claws?style=duotone - /// Dungeons & Dragons, animal, beast, d&d, dnd, fantasy, lion, pet, print - static const IconDataDuotone duotonePawClaws = const IconDataDuotone( - 0xf702, - secondary: const IconDataDuotone(0x10f702), - ); - - /// Brands Paypal icon - /// - /// https://fontawesome.com/icons/paypal?style=brands - static const IconData paypal = const IconDataBrands(0xf1ed); - - /// Regular Peace icon - /// - /// https://fontawesome.com/icons/peace?style=regular - /// serenity, tranquility, truce, war - static const IconData peace = const IconDataRegular(0xf67c); - - /// Solid Peace icon - /// - /// https://fontawesome.com/icons/peace?style=solid - /// serenity, tranquility, truce, war - static const IconData solidPeace = const IconDataSolid(0xf67c); - - /// Light Peace icon - /// - /// https://fontawesome.com/icons/light_peace?style=light - /// serenity, tranquility, truce, war - static const IconData lightPeace = const IconDataLight(0xf67c); - - /// Duotone Peace icon - /// - /// https://fontawesome.com/icons/duotone_peace?style=duotone - /// serenity, tranquility, truce, war - static const IconDataDuotone duotonePeace = const IconDataDuotone( - 0xf67c, - secondary: const IconDataDuotone(0x10f67c), - ); - - /// Regular Pegasus icon - /// - /// https://fontawesome.com/icons/pegasus?style=regular - /// fantasy, horse, unicorn, wings - static const IconData pegasus = const IconDataRegular(0xf703); - - /// Solid Pegasus icon - /// - /// https://fontawesome.com/icons/pegasus?style=solid - /// fantasy, horse, unicorn, wings - static const IconData solidPegasus = const IconDataSolid(0xf703); - - /// Light Pegasus icon - /// - /// https://fontawesome.com/icons/light_pegasus?style=light - /// fantasy, horse, unicorn, wings - static const IconData lightPegasus = const IconDataLight(0xf703); - - /// Duotone Pegasus icon - /// - /// https://fontawesome.com/icons/duotone_pegasus?style=duotone - /// fantasy, horse, unicorn, wings - static const IconDataDuotone duotonePegasus = const IconDataDuotone( - 0xf703, - secondary: const IconDataDuotone(0x10f703), - ); - - /// Regular Pen icon - /// - /// https://fontawesome.com/icons/pen?style=regular - /// design, edit, update, write - static const IconData pen = const IconDataRegular(0xf304); - - /// Solid Pen icon - /// - /// https://fontawesome.com/icons/pen?style=solid - /// design, edit, update, write - static const IconData solidPen = const IconDataSolid(0xf304); - - /// Light Pen icon - /// - /// https://fontawesome.com/icons/light_pen?style=light - /// design, edit, update, write - static const IconData lightPen = const IconDataLight(0xf304); - - /// Duotone Pen icon - /// - /// https://fontawesome.com/icons/duotone_pen?style=duotone - /// design, edit, update, write - static const IconDataDuotone duotonePen = const IconDataDuotone( - 0xf304, - secondary: const IconDataDuotone(0x10f304), - ); - - /// Regular Alternate Pen icon - /// - /// https://fontawesome.com/icons/pen-alt?style=regular - /// design, edit, update, write - static const IconData penAlt = const IconDataRegular(0xf305); - - /// Solid Alternate Pen icon - /// - /// https://fontawesome.com/icons/pen-alt?style=solid - /// design, edit, update, write - static const IconData solidPenAlt = const IconDataSolid(0xf305); - - /// Light Alternate Pen icon - /// - /// https://fontawesome.com/icons/light_pen-alt?style=light - /// design, edit, update, write - static const IconData lightPenAlt = const IconDataLight(0xf305); - - /// Duotone Alternate Pen icon - /// - /// https://fontawesome.com/icons/duotone_pen-alt?style=duotone - /// design, edit, update, write - static const IconDataDuotone duotonePenAlt = const IconDataDuotone( - 0xf305, - secondary: const IconDataDuotone(0x10f305), - ); - - /// Regular Pen Fancy icon - /// - /// https://fontawesome.com/icons/pen-fancy?style=regular - /// design, edit, fountain pen, update, write - static const IconData penFancy = const IconDataRegular(0xf5ac); - - /// Solid Pen Fancy icon - /// - /// https://fontawesome.com/icons/pen-fancy?style=solid - /// design, edit, fountain pen, update, write - static const IconData solidPenFancy = const IconDataSolid(0xf5ac); - - /// Light Pen Fancy icon - /// - /// https://fontawesome.com/icons/light_pen-fancy?style=light - /// design, edit, fountain pen, update, write - static const IconData lightPenFancy = const IconDataLight(0xf5ac); - - /// Duotone Pen Fancy icon - /// - /// https://fontawesome.com/icons/duotone_pen-fancy?style=duotone - /// design, edit, fountain pen, update, write - static const IconDataDuotone duotonePenFancy = const IconDataDuotone( - 0xf5ac, - secondary: const IconDataDuotone(0x10f5ac), - ); - - /// Regular Pen Nib icon - /// - /// https://fontawesome.com/icons/pen-nib?style=regular - /// design, edit, fountain pen, update, write - static const IconData penNib = const IconDataRegular(0xf5ad); - - /// Solid Pen Nib icon - /// - /// https://fontawesome.com/icons/pen-nib?style=solid - /// design, edit, fountain pen, update, write - static const IconData solidPenNib = const IconDataSolid(0xf5ad); - - /// Light Pen Nib icon - /// - /// https://fontawesome.com/icons/light_pen-nib?style=light - /// design, edit, fountain pen, update, write - static const IconData lightPenNib = const IconDataLight(0xf5ad); - - /// Duotone Pen Nib icon - /// - /// https://fontawesome.com/icons/duotone_pen-nib?style=duotone - /// design, edit, fountain pen, update, write - static const IconDataDuotone duotonePenNib = const IconDataDuotone( - 0xf5ad, - secondary: const IconDataDuotone(0x10f5ad), - ); - - /// Regular Pen Square icon - /// - /// https://fontawesome.com/icons/pen-square?style=regular - /// edit, pencil-square, update, write - static const IconData penSquare = const IconDataRegular(0xf14b); - - /// Solid Pen Square icon - /// - /// https://fontawesome.com/icons/pen-square?style=solid - /// edit, pencil-square, update, write - static const IconData solidPenSquare = const IconDataSolid(0xf14b); - - /// Light Pen Square icon - /// - /// https://fontawesome.com/icons/light_pen-square?style=light - /// edit, pencil-square, update, write - static const IconData lightPenSquare = const IconDataLight(0xf14b); - - /// Duotone Pen Square icon - /// - /// https://fontawesome.com/icons/duotone_pen-square?style=duotone - /// edit, pencil-square, update, write - static const IconDataDuotone duotonePenSquare = const IconDataDuotone( - 0xf14b, - secondary: const IconDataDuotone(0x10f14b), - ); - - /// Regular pencil icon - /// - /// https://fontawesome.com/icons/pencil?style=regular - /// design, edit, update, write - static const IconData pencil = const IconDataRegular(0xf040); - - /// Solid pencil icon - /// - /// https://fontawesome.com/icons/pencil?style=solid - /// design, edit, update, write - static const IconData solidPencil = const IconDataSolid(0xf040); - - /// Light pencil icon - /// - /// https://fontawesome.com/icons/light_pencil?style=light - /// design, edit, update, write - static const IconData lightPencil = const IconDataLight(0xf040); - - /// Duotone pencil icon - /// - /// https://fontawesome.com/icons/duotone_pencil?style=duotone - /// design, edit, update, write - static const IconDataDuotone duotonePencil = const IconDataDuotone( - 0xf040, - secondary: const IconDataDuotone(0x10f040), - ); - - /// Regular Alternate Pencil icon - /// - /// https://fontawesome.com/icons/pencil-alt?style=regular - /// design, edit, pencil, update, write - static const IconData pencilAlt = const IconDataRegular(0xf303); - - /// Solid Alternate Pencil icon - /// - /// https://fontawesome.com/icons/pencil-alt?style=solid - /// design, edit, pencil, update, write - static const IconData solidPencilAlt = const IconDataSolid(0xf303); - - /// Light Alternate Pencil icon - /// - /// https://fontawesome.com/icons/light_pencil-alt?style=light - /// design, edit, pencil, update, write - static const IconData lightPencilAlt = const IconDataLight(0xf303); - - /// Duotone Alternate Pencil icon - /// - /// https://fontawesome.com/icons/duotone_pencil-alt?style=duotone - /// design, edit, pencil, update, write - static const IconDataDuotone duotonePencilAlt = const IconDataDuotone( - 0xf303, - secondary: const IconDataDuotone(0x10f303), - ); - - /// Regular Pencil Paintbrush icon - /// - /// https://fontawesome.com/icons/pencil-paintbrush?style=regular - /// art, design, paint, pencil, write - static const IconData pencilPaintbrush = const IconDataRegular(0xf618); - - /// Solid Pencil Paintbrush icon - /// - /// https://fontawesome.com/icons/pencil-paintbrush?style=solid - /// art, design, paint, pencil, write - static const IconData solidPencilPaintbrush = const IconDataSolid(0xf618); - - /// Light Pencil Paintbrush icon - /// - /// https://fontawesome.com/icons/light_pencil-paintbrush?style=light - /// art, design, paint, pencil, write - static const IconData lightPencilPaintbrush = const IconDataLight(0xf618); - - /// Duotone Pencil Paintbrush icon - /// - /// https://fontawesome.com/icons/duotone_pencil-paintbrush?style=duotone - /// art, design, paint, pencil, write - static const IconDataDuotone duotonePencilPaintbrush = const IconDataDuotone( - 0xf618, - secondary: const IconDataDuotone(0x10f618), - ); - - /// Regular Pencil Ruler icon - /// - /// https://fontawesome.com/icons/pencil-ruler?style=regular - /// design, draft, draw, pencil - static const IconData pencilRuler = const IconDataRegular(0xf5ae); - - /// Solid Pencil Ruler icon - /// - /// https://fontawesome.com/icons/pencil-ruler?style=solid - /// design, draft, draw, pencil - static const IconData solidPencilRuler = const IconDataSolid(0xf5ae); - - /// Light Pencil Ruler icon - /// - /// https://fontawesome.com/icons/light_pencil-ruler?style=light - /// design, draft, draw, pencil - static const IconData lightPencilRuler = const IconDataLight(0xf5ae); - - /// Duotone Pencil Ruler icon - /// - /// https://fontawesome.com/icons/duotone_pencil-ruler?style=duotone - /// design, draft, draw, pencil - static const IconDataDuotone duotonePencilRuler = const IconDataDuotone( - 0xf5ae, - secondary: const IconDataDuotone(0x10f5ae), - ); - - /// Regular Pennant icon - /// - /// https://fontawesome.com/icons/pennant?style=regular - /// banner, flag, sign, sports, win - static const IconData pennant = const IconDataRegular(0xf456); - - /// Solid Pennant icon - /// - /// https://fontawesome.com/icons/pennant?style=solid - /// banner, flag, sign, sports, win - static const IconData solidPennant = const IconDataSolid(0xf456); - - /// Light Pennant icon - /// - /// https://fontawesome.com/icons/light_pennant?style=light - /// banner, flag, sign, sports, win - static const IconData lightPennant = const IconDataLight(0xf456); - - /// Duotone Pennant icon - /// - /// https://fontawesome.com/icons/duotone_pennant?style=duotone - /// banner, flag, sign, sports, win - static const IconDataDuotone duotonePennant = const IconDataDuotone( - 0xf456, - secondary: const IconDataDuotone(0x10f456), - ); - - /// Brands Penny Arcade icon - /// - /// https://fontawesome.com/icons/penny-arcade?style=brands - /// Dungeons & Dragons, d&d, dnd, fantasy, game, gaming, pax, tabletop - static const IconData pennyArcade = const IconDataBrands(0xf704); - - /// Regular People Arrows icon - /// - /// https://fontawesome.com/icons/people-arrows?style=regular - /// covid-19, personal space, social distance, space, spread, users - static const IconData peopleArrows = const IconDataRegular(0xe068); - - /// Light People Arrows icon - /// - /// https://fontawesome.com/icons/light_people-arrows?style=light - /// covid-19, personal space, social distance, space, spread, users - static const IconData lightPeopleArrows = const IconDataLight(0xe068); - - /// Solid People Arrows icon - /// - /// https://fontawesome.com/icons/people-arrows?style=solid - /// covid-19, personal space, social distance, space, spread, users - static const IconData solidPeopleArrows = const IconDataSolid(0xe068); - - /// Duotone People Arrows icon - /// - /// https://fontawesome.com/icons/duotone_people-arrows?style=duotone - /// covid-19, personal space, social distance, space, spread, users - static const IconDataDuotone duotonePeopleArrows = const IconDataDuotone( - 0xe068, - secondary: const IconDataDuotone(0x10e068), - ); - - /// Regular People Carry icon - /// - /// https://fontawesome.com/icons/people-carry?style=regular - /// box, carry, fragile, help, movers, package - static const IconData peopleCarry = const IconDataRegular(0xf4ce); - - /// Solid People Carry icon - /// - /// https://fontawesome.com/icons/people-carry?style=solid - /// box, carry, fragile, help, movers, package - static const IconData solidPeopleCarry = const IconDataSolid(0xf4ce); - - /// Light People Carry icon - /// - /// https://fontawesome.com/icons/light_people-carry?style=light - /// box, carry, fragile, help, movers, package - static const IconData lightPeopleCarry = const IconDataLight(0xf4ce); - - /// Duotone People Carry icon - /// - /// https://fontawesome.com/icons/duotone_people-carry?style=duotone - /// box, carry, fragile, help, movers, package - static const IconDataDuotone duotonePeopleCarry = const IconDataDuotone( - 0xf4ce, - secondary: const IconDataDuotone(0x10f4ce), - ); - - /// Regular Hot Pepper icon - /// - /// https://fontawesome.com/icons/pepper-hot?style=regular - /// buffalo wings, capsicum, chili, chilli, habanero, jalapeno, mexican, spicy, tabasco, vegetable - static const IconData pepperHot = const IconDataRegular(0xf816); - - /// Solid Hot Pepper icon - /// - /// https://fontawesome.com/icons/pepper-hot?style=solid - /// buffalo wings, capsicum, chili, chilli, habanero, jalapeno, mexican, spicy, tabasco, vegetable - static const IconData solidPepperHot = const IconDataSolid(0xf816); - - /// Light Hot Pepper icon - /// - /// https://fontawesome.com/icons/light_pepper-hot?style=light - /// buffalo wings, capsicum, chili, chilli, habanero, jalapeno, mexican, spicy, tabasco, vegetable - static const IconData lightPepperHot = const IconDataLight(0xf816); - - /// Duotone Hot Pepper icon - /// - /// https://fontawesome.com/icons/duotone_pepper-hot?style=duotone - /// buffalo wings, capsicum, chili, chilli, habanero, jalapeno, mexican, spicy, tabasco, vegetable - static const IconDataDuotone duotonePepperHot = const IconDataDuotone( - 0xf816, - secondary: const IconDataDuotone(0x10f816), - ); - - /// Brands PerByte icon - /// - /// https://fontawesome.com/icons/perbyte?style=brands - static const IconData perbyte = const IconDataBrands(0xe083); - - /// Regular Percent icon - /// - /// https://fontawesome.com/icons/percent?style=regular - /// discount, fraction, proportion, rate, ratio - static const IconData percent = const IconDataRegular(0xf295); - - /// Solid Percent icon - /// - /// https://fontawesome.com/icons/percent?style=solid - /// discount, fraction, proportion, rate, ratio - static const IconData solidPercent = const IconDataSolid(0xf295); - - /// Light Percent icon - /// - /// https://fontawesome.com/icons/light_percent?style=light - /// discount, fraction, proportion, rate, ratio - static const IconData lightPercent = const IconDataLight(0xf295); - - /// Duotone Percent icon - /// - /// https://fontawesome.com/icons/duotone_percent?style=duotone - /// discount, fraction, proportion, rate, ratio - static const IconDataDuotone duotonePercent = const IconDataDuotone( - 0xf295, - secondary: const IconDataDuotone(0x10f295), - ); - - /// Regular Percentage icon - /// - /// https://fontawesome.com/icons/percentage?style=regular - /// discount, fraction, proportion, rate, ratio - static const IconData percentage = const IconDataRegular(0xf541); - - /// Solid Percentage icon - /// - /// https://fontawesome.com/icons/percentage?style=solid - /// discount, fraction, proportion, rate, ratio - static const IconData solidPercentage = const IconDataSolid(0xf541); - - /// Light Percentage icon - /// - /// https://fontawesome.com/icons/light_percentage?style=light - /// discount, fraction, proportion, rate, ratio - static const IconData lightPercentage = const IconDataLight(0xf541); - - /// Duotone Percentage icon - /// - /// https://fontawesome.com/icons/duotone_percentage?style=duotone - /// discount, fraction, proportion, rate, ratio - static const IconDataDuotone duotonePercentage = const IconDataDuotone( - 0xf541, - secondary: const IconDataDuotone(0x10f541), - ); - - /// Brands Periscope icon - /// - /// https://fontawesome.com/icons/periscope?style=brands - static const IconData periscope = const IconDataBrands(0xf3da); - - /// Regular Person Entering Booth icon - /// - /// https://fontawesome.com/icons/person-booth?style=regular - /// changing, changing room, election, human, person, vote, voting - static const IconData personBooth = const IconDataRegular(0xf756); - - /// Solid Person Entering Booth icon - /// - /// https://fontawesome.com/icons/person-booth?style=solid - /// changing, changing room, election, human, person, vote, voting - static const IconData solidPersonBooth = const IconDataSolid(0xf756); - - /// Light Person Entering Booth icon - /// - /// https://fontawesome.com/icons/light_person-booth?style=light - /// changing, changing room, election, human, person, vote, voting - static const IconData lightPersonBooth = const IconDataLight(0xf756); - - /// Duotone Person Entering Booth icon - /// - /// https://fontawesome.com/icons/duotone_person-booth?style=duotone - /// changing, changing room, election, human, person, vote, voting - static const IconDataDuotone duotonePersonBooth = const IconDataDuotone( - 0xf756, - secondary: const IconDataDuotone(0x10f756), - ); - - /// Regular Person Carry icon - /// - /// https://fontawesome.com/icons/person-carry?style=regular - /// human, lift, mover, person, transport - static const IconData personCarry = const IconDataRegular(0xf4cf); - - /// Solid Person Carry icon - /// - /// https://fontawesome.com/icons/person-carry?style=solid - /// human, lift, mover, person, transport - static const IconData solidPersonCarry = const IconDataSolid(0xf4cf); - - /// Light Person Carry icon - /// - /// https://fontawesome.com/icons/light_person-carry?style=light - /// human, lift, mover, person, transport - static const IconData lightPersonCarry = const IconDataLight(0xf4cf); - - /// Duotone Person Carry icon - /// - /// https://fontawesome.com/icons/duotone_person-carry?style=duotone - /// human, lift, mover, person, transport - static const IconDataDuotone duotonePersonCarry = const IconDataDuotone( - 0xf4cf, - secondary: const IconDataDuotone(0x10f4cf), - ); - - /// Regular Person and Dolly icon - /// - /// https://fontawesome.com/icons/person-dolly?style=regular - /// human, lift, mover, person, transport - static const IconData personDolly = const IconDataRegular(0xf4d0); - - /// Solid Person and Dolly icon - /// - /// https://fontawesome.com/icons/person-dolly?style=solid - /// human, lift, mover, person, transport - static const IconData solidPersonDolly = const IconDataSolid(0xf4d0); - - /// Light Person and Dolly icon - /// - /// https://fontawesome.com/icons/light_person-dolly?style=light - /// human, lift, mover, person, transport - static const IconData lightPersonDolly = const IconDataLight(0xf4d0); - - /// Duotone Person and Dolly icon - /// - /// https://fontawesome.com/icons/duotone_person-dolly?style=duotone - /// human, lift, mover, person, transport - static const IconDataDuotone duotonePersonDolly = const IconDataDuotone( - 0xf4d0, - secondary: const IconDataDuotone(0x10f4d0), - ); - - /// Regular Person and Empty Dolly icon - /// - /// https://fontawesome.com/icons/person-dolly-empty?style=regular - /// human, lift, mover, person, transport - static const IconData personDollyEmpty = const IconDataRegular(0xf4d1); - - /// Solid Person and Empty Dolly icon - /// - /// https://fontawesome.com/icons/person-dolly-empty?style=solid - /// human, lift, mover, person, transport - static const IconData solidPersonDollyEmpty = const IconDataSolid(0xf4d1); - - /// Light Person and Empty Dolly icon - /// - /// https://fontawesome.com/icons/light_person-dolly-empty?style=light - /// human, lift, mover, person, transport - static const IconData lightPersonDollyEmpty = const IconDataLight(0xf4d1); - - /// Duotone Person and Empty Dolly icon - /// - /// https://fontawesome.com/icons/duotone_person-dolly-empty?style=duotone - /// human, lift, mover, person, transport - static const IconDataDuotone duotonePersonDollyEmpty = const IconDataDuotone( - 0xf4d1, - secondary: const IconDataDuotone(0x10f4d1), - ); - - /// Regular Person Holding Sign icon - /// - /// https://fontawesome.com/icons/person-sign?style=regular - /// advocate, human, information, person, protest, protester, volunteer - static const IconData personSign = const IconDataRegular(0xf757); - - /// Solid Person Holding Sign icon - /// - /// https://fontawesome.com/icons/person-sign?style=solid - /// advocate, human, information, person, protest, protester, volunteer - static const IconData solidPersonSign = const IconDataSolid(0xf757); - - /// Light Person Holding Sign icon - /// - /// https://fontawesome.com/icons/light_person-sign?style=light - /// advocate, human, information, person, protest, protester, volunteer - static const IconData lightPersonSign = const IconDataLight(0xf757); - - /// Duotone Person Holding Sign icon - /// - /// https://fontawesome.com/icons/duotone_person-sign?style=duotone - /// advocate, human, information, person, protest, protester, volunteer - static const IconDataDuotone duotonePersonSign = const IconDataDuotone( - 0xf757, - secondary: const IconDataDuotone(0x10f757), - ); - - /// Brands Phabricator icon - /// - /// https://fontawesome.com/icons/phabricator?style=brands - static const IconData phabricator = const IconDataBrands(0xf3db); - - /// Brands Phoenix Framework icon - /// - /// https://fontawesome.com/icons/phoenix-framework?style=brands - static const IconData phoenixFramework = const IconDataBrands(0xf3dc); - - /// Brands Phoenix Squadron icon - /// - /// https://fontawesome.com/icons/phoenix-squadron?style=brands - static const IconData phoenixSquadron = const IconDataBrands(0xf511); - - /// Regular Phone icon - /// - /// https://fontawesome.com/icons/phone?style=regular - /// call, earphone, number, support, telephone, voice - static const IconData phone = const IconDataRegular(0xf095); - - /// Solid Phone icon - /// - /// https://fontawesome.com/icons/phone?style=solid - /// call, earphone, number, support, telephone, voice - static const IconData solidPhone = const IconDataSolid(0xf095); - - /// Light Phone icon - /// - /// https://fontawesome.com/icons/light_phone?style=light - /// call, earphone, number, support, telephone, voice - static const IconData lightPhone = const IconDataLight(0xf095); - - /// Duotone Phone icon - /// - /// https://fontawesome.com/icons/duotone_phone?style=duotone - /// call, earphone, number, support, telephone, voice - static const IconDataDuotone duotonePhone = const IconDataDuotone( - 0xf095, - secondary: const IconDataDuotone(0x10f095), - ); - - /// Regular Alternate Phone icon - /// - /// https://fontawesome.com/icons/phone-alt?style=regular - /// call, earphone, number, support, telephone, voice - static const IconData phoneAlt = const IconDataRegular(0xf879); - - /// Solid Alternate Phone icon - /// - /// https://fontawesome.com/icons/phone-alt?style=solid - /// call, earphone, number, support, telephone, voice - static const IconData solidPhoneAlt = const IconDataSolid(0xf879); - - /// Light Alternate Phone icon - /// - /// https://fontawesome.com/icons/light_phone-alt?style=light - /// call, earphone, number, support, telephone, voice - static const IconData lightPhoneAlt = const IconDataLight(0xf879); - - /// Duotone Alternate Phone icon - /// - /// https://fontawesome.com/icons/duotone_phone-alt?style=duotone - /// call, earphone, number, support, telephone, voice - static const IconDataDuotone duotonePhoneAlt = const IconDataDuotone( - 0xf879, - secondary: const IconDataDuotone(0x10f879), - ); - - /// Regular Phone and Laptop icon - /// - /// https://fontawesome.com/icons/phone-laptop?style=regular - /// computer, device, mobile, technology - static const IconData phoneLaptop = const IconDataRegular(0xf87a); - - /// Solid Phone and Laptop icon - /// - /// https://fontawesome.com/icons/phone-laptop?style=solid - /// computer, device, mobile, technology - static const IconData solidPhoneLaptop = const IconDataSolid(0xf87a); - - /// Light Phone and Laptop icon - /// - /// https://fontawesome.com/icons/light_phone-laptop?style=light - /// computer, device, mobile, technology - static const IconData lightPhoneLaptop = const IconDataLight(0xf87a); - - /// Duotone Phone and Laptop icon - /// - /// https://fontawesome.com/icons/duotone_phone-laptop?style=duotone - /// computer, device, mobile, technology - static const IconDataDuotone duotonePhoneLaptop = const IconDataDuotone( - 0xf87a, - secondary: const IconDataDuotone(0x10f87a), - ); - - /// Regular Office Phone icon - /// - /// https://fontawesome.com/icons/phone-office?style=regular - /// call, earphone, number, support, telephone, voice - static const IconData phoneOffice = const IconDataRegular(0xf67d); - - /// Solid Office Phone icon - /// - /// https://fontawesome.com/icons/phone-office?style=solid - /// call, earphone, number, support, telephone, voice - static const IconData solidPhoneOffice = const IconDataSolid(0xf67d); - - /// Light Office Phone icon - /// - /// https://fontawesome.com/icons/light_phone-office?style=light - /// call, earphone, number, support, telephone, voice - static const IconData lightPhoneOffice = const IconDataLight(0xf67d); - - /// Duotone Office Phone icon - /// - /// https://fontawesome.com/icons/duotone_phone-office?style=duotone - /// call, earphone, number, support, telephone, voice - static const IconDataDuotone duotonePhoneOffice = const IconDataDuotone( - 0xf67d, - secondary: const IconDataDuotone(0x10f67d), - ); - - /// Regular Phone Plus icon - /// - /// https://fontawesome.com/icons/phone-plus?style=regular - /// add, call, earphone, number, positive, support, telephone, voice - static const IconData phonePlus = const IconDataRegular(0xf4d2); - - /// Solid Phone Plus icon - /// - /// https://fontawesome.com/icons/phone-plus?style=solid - /// add, call, earphone, number, positive, support, telephone, voice - static const IconData solidPhonePlus = const IconDataSolid(0xf4d2); - - /// Light Phone Plus icon - /// - /// https://fontawesome.com/icons/light_phone-plus?style=light - /// add, call, earphone, number, positive, support, telephone, voice - static const IconData lightPhonePlus = const IconDataLight(0xf4d2); - - /// Duotone Phone Plus icon - /// - /// https://fontawesome.com/icons/duotone_phone-plus?style=duotone - /// add, call, earphone, number, positive, support, telephone, voice - static const IconDataDuotone duotonePhonePlus = const IconDataDuotone( - 0xf4d2, - secondary: const IconDataDuotone(0x10f4d2), - ); - - /// Regular Rotary Phone icon - /// - /// https://fontawesome.com/icons/phone-rotary?style=regular - /// call, earphone, number, retro, support, telephone, vintage, voice - static const IconData phoneRotary = const IconDataRegular(0xf8d3); - - /// Solid Rotary Phone icon - /// - /// https://fontawesome.com/icons/phone-rotary?style=solid - /// call, earphone, number, retro, support, telephone, vintage, voice - static const IconData solidPhoneRotary = const IconDataSolid(0xf8d3); - - /// Light Rotary Phone icon - /// - /// https://fontawesome.com/icons/light_phone-rotary?style=light - /// call, earphone, number, retro, support, telephone, vintage, voice - static const IconData lightPhoneRotary = const IconDataLight(0xf8d3); - - /// Duotone Rotary Phone icon - /// - /// https://fontawesome.com/icons/duotone_phone-rotary?style=duotone - /// call, earphone, number, retro, support, telephone, vintage, voice - static const IconDataDuotone duotonePhoneRotary = const IconDataDuotone( - 0xf8d3, - secondary: const IconDataDuotone(0x10f8d3), - ); - - /// Regular Phone Slash icon - /// - /// https://fontawesome.com/icons/phone-slash?style=regular - /// call, cancel, earphone, mute, number, support, telephone, voice - static const IconData phoneSlash = const IconDataRegular(0xf3dd); - - /// Solid Phone Slash icon - /// - /// https://fontawesome.com/icons/phone-slash?style=solid - /// call, cancel, earphone, mute, number, support, telephone, voice - static const IconData solidPhoneSlash = const IconDataSolid(0xf3dd); - - /// Light Phone Slash icon - /// - /// https://fontawesome.com/icons/light_phone-slash?style=light - /// call, cancel, earphone, mute, number, support, telephone, voice - static const IconData lightPhoneSlash = const IconDataLight(0xf3dd); - - /// Duotone Phone Slash icon - /// - /// https://fontawesome.com/icons/duotone_phone-slash?style=duotone - /// call, cancel, earphone, mute, number, support, telephone, voice - static const IconDataDuotone duotonePhoneSlash = const IconDataDuotone( - 0xf3dd, - secondary: const IconDataDuotone(0x10f3dd), - ); - - /// Regular Phone Square icon - /// - /// https://fontawesome.com/icons/phone-square?style=regular - /// call, earphone, number, support, telephone, voice - static const IconData phoneSquare = const IconDataRegular(0xf098); - - /// Solid Phone Square icon - /// - /// https://fontawesome.com/icons/phone-square?style=solid - /// call, earphone, number, support, telephone, voice - static const IconData solidPhoneSquare = const IconDataSolid(0xf098); - - /// Light Phone Square icon - /// - /// https://fontawesome.com/icons/light_phone-square?style=light - /// call, earphone, number, support, telephone, voice - static const IconData lightPhoneSquare = const IconDataLight(0xf098); - - /// Duotone Phone Square icon - /// - /// https://fontawesome.com/icons/duotone_phone-square?style=duotone - /// call, earphone, number, support, telephone, voice - static const IconDataDuotone duotonePhoneSquare = const IconDataDuotone( - 0xf098, - secondary: const IconDataDuotone(0x10f098), - ); - - /// Regular Alternate Phone Square icon - /// - /// https://fontawesome.com/icons/phone-square-alt?style=regular - /// call, earphone, number, support, telephone, voice - static const IconData phoneSquareAlt = const IconDataRegular(0xf87b); - - /// Solid Alternate Phone Square icon - /// - /// https://fontawesome.com/icons/phone-square-alt?style=solid - /// call, earphone, number, support, telephone, voice - static const IconData solidPhoneSquareAlt = const IconDataSolid(0xf87b); - - /// Light Alternate Phone Square icon - /// - /// https://fontawesome.com/icons/light_phone-square-alt?style=light - /// call, earphone, number, support, telephone, voice - static const IconData lightPhoneSquareAlt = const IconDataLight(0xf87b); - - /// Duotone Alternate Phone Square icon - /// - /// https://fontawesome.com/icons/duotone_phone-square-alt?style=duotone - /// call, earphone, number, support, telephone, voice - static const IconDataDuotone duotonePhoneSquareAlt = const IconDataDuotone( - 0xf87b, - secondary: const IconDataDuotone(0x10f87b), - ); - - /// Regular Phone Volume icon - /// - /// https://fontawesome.com/icons/phone-volume?style=regular - /// call, earphone, number, sound, support, telephone, voice, volume-control-phone - static const IconData phoneVolume = const IconDataRegular(0xf2a0); - - /// Solid Phone Volume icon - /// - /// https://fontawesome.com/icons/phone-volume?style=solid - /// call, earphone, number, sound, support, telephone, voice, volume-control-phone - static const IconData solidPhoneVolume = const IconDataSolid(0xf2a0); - - /// Light Phone Volume icon - /// - /// https://fontawesome.com/icons/light_phone-volume?style=light - /// call, earphone, number, sound, support, telephone, voice, volume-control-phone - static const IconData lightPhoneVolume = const IconDataLight(0xf2a0); - - /// Duotone Phone Volume icon - /// - /// https://fontawesome.com/icons/duotone_phone-volume?style=duotone - /// call, earphone, number, sound, support, telephone, voice, volume-control-phone - static const IconDataDuotone duotonePhoneVolume = const IconDataDuotone( - 0xf2a0, - secondary: const IconDataDuotone(0x10f2a0), - ); - - /// Regular Photo Video icon - /// - /// https://fontawesome.com/icons/photo-video?style=regular - /// av, film, image, library, media - static const IconData photoVideo = const IconDataRegular(0xf87c); - - /// Solid Photo Video icon - /// - /// https://fontawesome.com/icons/photo-video?style=solid - /// av, film, image, library, media - static const IconData solidPhotoVideo = const IconDataSolid(0xf87c); - - /// Light Photo Video icon - /// - /// https://fontawesome.com/icons/light_photo-video?style=light - /// av, film, image, library, media - static const IconData lightPhotoVideo = const IconDataLight(0xf87c); - - /// Duotone Photo Video icon - /// - /// https://fontawesome.com/icons/duotone_photo-video?style=duotone - /// av, film, image, library, media - static const IconDataDuotone duotonePhotoVideo = const IconDataDuotone( - 0xf87c, - secondary: const IconDataDuotone(0x10f87c), - ); - - /// Brands PHP icon - /// - /// https://fontawesome.com/icons/php?style=brands - static const IconData php = const IconDataBrands(0xf457); - - /// Regular Pi icon - /// - /// https://fontawesome.com/icons/pi?style=regular - /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData pi = const IconDataRegular(0xf67e); - - /// Solid Pi icon - /// - /// https://fontawesome.com/icons/pi?style=solid - /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData solidPi = const IconDataSolid(0xf67e); - - /// Light Pi icon - /// - /// https://fontawesome.com/icons/light_pi?style=light - /// alphabet, circumference, diameter, greek, math, mathematics - static const IconData lightPi = const IconDataLight(0xf67e); - - /// Duotone Pi icon - /// - /// https://fontawesome.com/icons/duotone_pi?style=duotone - /// alphabet, circumference, diameter, greek, math, mathematics - static const IconDataDuotone duotonePi = const IconDataDuotone( - 0xf67e, - secondary: const IconDataDuotone(0x10f67e), - ); - - /// Regular Piano icon - /// - /// https://fontawesome.com/icons/piano?style=regular - /// grand piano, instrument, keyboard, keys, midi, music - static const IconData piano = const IconDataRegular(0xf8d4); - - /// Solid Piano icon - /// - /// https://fontawesome.com/icons/piano?style=solid - /// grand piano, instrument, keyboard, keys, midi, music - static const IconData solidPiano = const IconDataSolid(0xf8d4); - - /// Light Piano icon - /// - /// https://fontawesome.com/icons/light_piano?style=light - /// grand piano, instrument, keyboard, keys, midi, music - static const IconData lightPiano = const IconDataLight(0xf8d4); - - /// Duotone Piano icon - /// - /// https://fontawesome.com/icons/duotone_piano?style=duotone - /// grand piano, instrument, keyboard, keys, midi, music - static const IconDataDuotone duotonePiano = const IconDataDuotone( - 0xf8d4, - secondary: const IconDataDuotone(0x10f8d4), - ); - - /// Regular Piano Keyboard icon - /// - /// https://fontawesome.com/icons/piano-keyboard?style=regular - /// instrument, keyboard, keys, midi, music - static const IconData pianoKeyboard = const IconDataRegular(0xf8d5); - - /// Solid Piano Keyboard icon - /// - /// https://fontawesome.com/icons/piano-keyboard?style=solid - /// instrument, keyboard, keys, midi, music - static const IconData solidPianoKeyboard = const IconDataSolid(0xf8d5); - - /// Light Piano Keyboard icon - /// - /// https://fontawesome.com/icons/light_piano-keyboard?style=light - /// instrument, keyboard, keys, midi, music - static const IconData lightPianoKeyboard = const IconDataLight(0xf8d5); - - /// Duotone Piano Keyboard icon - /// - /// https://fontawesome.com/icons/duotone_piano-keyboard?style=duotone - /// instrument, keyboard, keys, midi, music - static const IconDataDuotone duotonePianoKeyboard = const IconDataDuotone( - 0xf8d5, - secondary: const IconDataDuotone(0x10f8d5), - ); - - /// Regular Pie icon - /// - /// https://fontawesome.com/icons/pie?style=regular - /// apple, bakery, cake, crust, dessert, pumpkin, tart - static const IconData pie = const IconDataRegular(0xf705); - - /// Solid Pie icon - /// - /// https://fontawesome.com/icons/pie?style=solid - /// apple, bakery, cake, crust, dessert, pumpkin, tart - static const IconData solidPie = const IconDataSolid(0xf705); - - /// Light Pie icon - /// - /// https://fontawesome.com/icons/light_pie?style=light - /// apple, bakery, cake, crust, dessert, pumpkin, tart - static const IconData lightPie = const IconDataLight(0xf705); - - /// Duotone Pie icon - /// - /// https://fontawesome.com/icons/duotone_pie?style=duotone - /// apple, bakery, cake, crust, dessert, pumpkin, tart - static const IconDataDuotone duotonePie = const IconDataDuotone( - 0xf705, - secondary: const IconDataDuotone(0x10f705), - ); - - /// Brands Pied Piper Logo icon - /// - /// https://fontawesome.com/icons/pied-piper?style=brands - static const IconData piedPiper = const IconDataBrands(0xf2ae); - - /// Brands Alternate Pied Piper Logo (Old) icon - /// - /// https://fontawesome.com/icons/pied-piper-alt?style=brands - static const IconData piedPiperAlt = const IconDataBrands(0xf1a8); - - /// Brands Pied Piper Hat (Old) icon - /// - /// https://fontawesome.com/icons/pied-piper-hat?style=brands - /// clothing - static const IconData piedPiperHat = const IconDataBrands(0xf4e5); - - /// Brands Pied Piper PP Logo (Old) icon - /// - /// https://fontawesome.com/icons/pied-piper-pp?style=brands - static const IconData piedPiperPp = const IconDataBrands(0xf1a7); - - /// Brands Pied Piper Square Logo (Old) icon - /// - /// https://fontawesome.com/icons/pied-piper-square?style=brands - static const IconData piedPiperSquare = const IconDataBrands(0xe01e); - - /// Regular Pig icon - /// - /// https://fontawesome.com/icons/pig?style=regular - /// agriculture, animal, farm, fauna, mammal, oink - static const IconData pig = const IconDataRegular(0xf706); - - /// Solid Pig icon - /// - /// https://fontawesome.com/icons/pig?style=solid - /// agriculture, animal, farm, fauna, mammal, oink - static const IconData solidPig = const IconDataSolid(0xf706); - - /// Light Pig icon - /// - /// https://fontawesome.com/icons/light_pig?style=light - /// agriculture, animal, farm, fauna, mammal, oink - static const IconData lightPig = const IconDataLight(0xf706); - - /// Duotone Pig icon - /// - /// https://fontawesome.com/icons/duotone_pig?style=duotone - /// agriculture, animal, farm, fauna, mammal, oink - static const IconDataDuotone duotonePig = const IconDataDuotone( - 0xf706, - secondary: const IconDataDuotone(0x10f706), - ); - - /// Regular Piggy Bank icon - /// - /// https://fontawesome.com/icons/piggy-bank?style=regular - /// bank, save, savings - static const IconData piggyBank = const IconDataRegular(0xf4d3); - - /// Solid Piggy Bank icon - /// - /// https://fontawesome.com/icons/piggy-bank?style=solid - /// bank, save, savings - static const IconData solidPiggyBank = const IconDataSolid(0xf4d3); - - /// Light Piggy Bank icon - /// - /// https://fontawesome.com/icons/light_piggy-bank?style=light - /// bank, save, savings - static const IconData lightPiggyBank = const IconDataLight(0xf4d3); - - /// Duotone Piggy Bank icon - /// - /// https://fontawesome.com/icons/duotone_piggy-bank?style=duotone - /// bank, save, savings - static const IconDataDuotone duotonePiggyBank = const IconDataDuotone( - 0xf4d3, - secondary: const IconDataDuotone(0x10f4d3), - ); - - /// Regular Pills icon - /// - /// https://fontawesome.com/icons/pills?style=regular - /// drugs, medicine, prescription, tablets - static const IconData pills = const IconDataRegular(0xf484); - - /// Solid Pills icon - /// - /// https://fontawesome.com/icons/pills?style=solid - /// drugs, medicine, prescription, tablets - static const IconData solidPills = const IconDataSolid(0xf484); - - /// Light Pills icon - /// - /// https://fontawesome.com/icons/light_pills?style=light - /// drugs, medicine, prescription, tablets - static const IconData lightPills = const IconDataLight(0xf484); - - /// Duotone Pills icon - /// - /// https://fontawesome.com/icons/duotone_pills?style=duotone - /// drugs, medicine, prescription, tablets - static const IconDataDuotone duotonePills = const IconDataDuotone( - 0xf484, - secondary: const IconDataDuotone(0x10f484), - ); - - /// Brands Pinterest icon - /// - /// https://fontawesome.com/icons/pinterest?style=brands - static const IconData pinterest = const IconDataBrands(0xf0d2); - - /// Brands Pinterest P icon - /// - /// https://fontawesome.com/icons/pinterest-p?style=brands - static const IconData pinterestP = const IconDataBrands(0xf231); - - /// Brands Pinterest Square icon - /// - /// https://fontawesome.com/icons/pinterest-square?style=brands - static const IconData pinterestSquare = const IconDataBrands(0xf0d3); - - /// Regular Pizza icon - /// - /// https://fontawesome.com/icons/pizza?style=regular - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData pizza = const IconDataRegular(0xf817); - - /// Solid Pizza icon - /// - /// https://fontawesome.com/icons/pizza?style=solid - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData solidPizza = const IconDataSolid(0xf817); - - /// Light Pizza icon - /// - /// https://fontawesome.com/icons/light_pizza?style=light - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData lightPizza = const IconDataLight(0xf817); - - /// Duotone Pizza icon - /// - /// https://fontawesome.com/icons/duotone_pizza?style=duotone - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconDataDuotone duotonePizza = const IconDataDuotone( - 0xf817, - secondary: const IconDataDuotone(0x10f817), - ); - - /// 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 = const IconDataRegular(0xf818); - - /// 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 = const IconDataSolid(0xf818); - - /// Light Pizza Slice icon - /// - /// https://fontawesome.com/icons/light_pizza-slice?style=light - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconData lightPizzaSlice = const IconDataLight(0xf818); - - /// Duotone Pizza Slice icon - /// - /// https://fontawesome.com/icons/duotone_pizza-slice?style=duotone - /// cheese, chicago, italian, mozzarella, new york, pepperoni, pie, slice, teenage mutant ninja turtles, tomato - static const IconDataDuotone duotonePizzaSlice = const IconDataDuotone( - 0xf818, - secondary: const IconDataDuotone(0x10f818), - ); - - /// Regular Place of Worship icon - /// - /// https://fontawesome.com/icons/place-of-worship?style=regular - /// building, church, holy, mosque, synagogue - static const IconData placeOfWorship = const IconDataRegular(0xf67f); - - /// Solid Place of Worship icon - /// - /// https://fontawesome.com/icons/place-of-worship?style=solid - /// building, church, holy, mosque, synagogue - static const IconData solidPlaceOfWorship = const IconDataSolid(0xf67f); - - /// Light Place of Worship icon - /// - /// https://fontawesome.com/icons/light_place-of-worship?style=light - /// building, church, holy, mosque, synagogue - static const IconData lightPlaceOfWorship = const IconDataLight(0xf67f); - - /// Duotone Place of Worship icon - /// - /// https://fontawesome.com/icons/duotone_place-of-worship?style=duotone - /// building, church, holy, mosque, synagogue - static const IconDataDuotone duotonePlaceOfWorship = const IconDataDuotone( - 0xf67f, - secondary: const IconDataDuotone(0x10f67f), - ); - - /// Regular plane icon - /// - /// https://fontawesome.com/icons/plane?style=regular - /// airplane, destination, fly, location, mode, travel, trip - static const IconData plane = const IconDataRegular(0xf072); - - /// Solid plane icon - /// - /// https://fontawesome.com/icons/plane?style=solid - /// airplane, destination, fly, location, mode, travel, trip - static const IconData solidPlane = const IconDataSolid(0xf072); - - /// Light plane icon - /// - /// https://fontawesome.com/icons/light_plane?style=light - /// airplane, destination, fly, location, mode, travel, trip - static const IconData lightPlane = const IconDataLight(0xf072); - - /// Duotone plane icon - /// - /// https://fontawesome.com/icons/duotone_plane?style=duotone - /// airplane, destination, fly, location, mode, travel, trip - static const IconDataDuotone duotonePlane = const IconDataDuotone( - 0xf072, - secondary: const IconDataDuotone(0x10f072), - ); - - /// Regular Alternate Plane icon - /// - /// https://fontawesome.com/icons/plane-alt?style=regular - /// airplane, destination, fly, location, mode, travel, trip - static const IconData planeAlt = const IconDataRegular(0xf3de); - - /// Solid Alternate Plane icon - /// - /// https://fontawesome.com/icons/plane-alt?style=solid - /// airplane, destination, fly, location, mode, travel, trip - static const IconData solidPlaneAlt = const IconDataSolid(0xf3de); - - /// Light Alternate Plane icon - /// - /// https://fontawesome.com/icons/light_plane-alt?style=light - /// airplane, destination, fly, location, mode, travel, trip - static const IconData lightPlaneAlt = const IconDataLight(0xf3de); - - /// Duotone Alternate Plane icon - /// - /// https://fontawesome.com/icons/duotone_plane-alt?style=duotone - /// airplane, destination, fly, location, mode, travel, trip - static const IconDataDuotone duotonePlaneAlt = const IconDataDuotone( - 0xf3de, - secondary: const IconDataDuotone(0x10f3de), - ); - - /// Regular Plane Arrival icon - /// - /// https://fontawesome.com/icons/plane-arrival?style=regular - /// airplane, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData planeArrival = const IconDataRegular(0xf5af); - - /// Solid Plane Arrival icon - /// - /// https://fontawesome.com/icons/plane-arrival?style=solid - /// airplane, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData solidPlaneArrival = const IconDataSolid(0xf5af); - - /// Light Plane Arrival icon - /// - /// https://fontawesome.com/icons/light_plane-arrival?style=light - /// airplane, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconData lightPlaneArrival = const IconDataLight(0xf5af); - - /// Duotone Plane Arrival icon - /// - /// https://fontawesome.com/icons/duotone_plane-arrival?style=duotone - /// airplane, arriving, destination, fly, land, landing, location, mode, travel, trip - static const IconDataDuotone duotonePlaneArrival = const IconDataDuotone( - 0xf5af, - secondary: const IconDataDuotone(0x10f5af), - ); - - /// Regular Plane Departure icon - /// - /// https://fontawesome.com/icons/plane-departure?style=regular - /// airplane, departing, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData planeDeparture = const IconDataRegular(0xf5b0); - - /// Solid Plane Departure icon - /// - /// https://fontawesome.com/icons/plane-departure?style=solid - /// airplane, departing, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData solidPlaneDeparture = const IconDataSolid(0xf5b0); - - /// Light Plane Departure icon - /// - /// https://fontawesome.com/icons/light_plane-departure?style=light - /// airplane, departing, destination, fly, location, mode, take off, taking off, travel, trip - static const IconData lightPlaneDeparture = const IconDataLight(0xf5b0); - - /// Duotone Plane Departure icon - /// - /// https://fontawesome.com/icons/duotone_plane-departure?style=duotone - /// airplane, departing, destination, fly, location, mode, take off, taking off, travel, trip - static const IconDataDuotone duotonePlaneDeparture = const IconDataDuotone( - 0xf5b0, - secondary: const IconDataDuotone(0x10f5b0), - ); - - /// Regular Plane Slash icon - /// - /// https://fontawesome.com/icons/plane-slash?style=regular - /// airplane mode, canceled, covid-19, delayed, grounded, travel - static const IconData planeSlash = const IconDataRegular(0xe069); - - /// Light Plane Slash icon - /// - /// https://fontawesome.com/icons/light_plane-slash?style=light - /// airplane mode, canceled, covid-19, delayed, grounded, travel - static const IconData lightPlaneSlash = const IconDataLight(0xe069); - - /// Solid Plane Slash icon - /// - /// https://fontawesome.com/icons/plane-slash?style=solid - /// airplane mode, canceled, covid-19, delayed, grounded, travel - static const IconData solidPlaneSlash = const IconDataSolid(0xe069); - - /// Duotone Plane Slash icon - /// - /// https://fontawesome.com/icons/duotone_plane-slash?style=duotone - /// airplane mode, canceled, covid-19, delayed, grounded, travel - static const IconDataDuotone duotonePlaneSlash = const IconDataDuotone( - 0xe069, - secondary: const IconDataDuotone(0x10e069), - ); - - /// Regular Planet with Moon icon - /// - /// https://fontawesome.com/icons/planet-moon?style=regular - /// earth, natural satellite, orbit, solar system, space, universe - static const IconData planetMoon = const IconDataRegular(0xe01f); - - /// Solid Planet with Moon icon - /// - /// https://fontawesome.com/icons/planet-moon?style=solid - /// earth, natural satellite, orbit, solar system, space, universe - static const IconData solidPlanetMoon = const IconDataSolid(0xe01f); - - /// Light Planet with Moon icon - /// - /// https://fontawesome.com/icons/light_planet-moon?style=light - /// earth, natural satellite, orbit, solar system, space, universe - static const IconData lightPlanetMoon = const IconDataLight(0xe01f); - - /// Duotone Planet with Moon icon - /// - /// https://fontawesome.com/icons/duotone_planet-moon?style=duotone - /// earth, natural satellite, orbit, solar system, space, universe - static const IconDataDuotone duotonePlanetMoon = const IconDataDuotone( - 0xe01f, - secondary: const IconDataDuotone(0x10e01f), - ); - - /// Regular Ringed Planet icon - /// - /// https://fontawesome.com/icons/planet-ringed?style=regular - /// orbit, saturn, solar system, space, universe - static const IconData planetRinged = const IconDataRegular(0xe020); - - /// Solid Ringed Planet icon - /// - /// https://fontawesome.com/icons/planet-ringed?style=solid - /// orbit, saturn, solar system, space, universe - static const IconData solidPlanetRinged = const IconDataSolid(0xe020); - - /// Light Ringed Planet icon - /// - /// https://fontawesome.com/icons/light_planet-ringed?style=light - /// orbit, saturn, solar system, space, universe - static const IconData lightPlanetRinged = const IconDataLight(0xe020); - - /// Duotone Ringed Planet icon - /// - /// https://fontawesome.com/icons/duotone_planet-ringed?style=duotone - /// orbit, saturn, solar system, space, universe - static const IconDataDuotone duotonePlanetRinged = const IconDataDuotone( - 0xe020, - secondary: const IconDataDuotone(0x10e020), - ); - - /// Regular play icon - /// - /// https://fontawesome.com/icons/play?style=regular - /// audio, music, playing, sound, start, video - static const IconData play = const IconDataRegular(0xf04b); - - /// Solid play icon - /// - /// https://fontawesome.com/icons/play?style=solid - /// audio, music, playing, sound, start, video - static const IconData solidPlay = const IconDataSolid(0xf04b); - - /// Light play icon - /// - /// https://fontawesome.com/icons/light_play?style=light - /// audio, music, playing, sound, start, video - static const IconData lightPlay = const IconDataLight(0xf04b); - - /// Duotone play icon - /// - /// https://fontawesome.com/icons/duotone_play?style=duotone - /// audio, music, playing, sound, start, video - static const IconDataDuotone duotonePlay = const IconDataDuotone( - 0xf04b, - secondary: const IconDataDuotone(0x10f04b), - ); - - /// Regular Play Circle icon - /// - /// https://fontawesome.com/icons/play-circle?style=regular - /// audio, music, playing, sound, start, video - static const IconData playCircle = const IconDataRegular(0xf144); - - /// Solid Play Circle icon - /// - /// https://fontawesome.com/icons/play-circle?style=solid - /// audio, music, playing, sound, start, video - static const IconData solidPlayCircle = const IconDataSolid(0xf144); - - /// Light Play Circle icon - /// - /// https://fontawesome.com/icons/light_play-circle?style=light - /// audio, music, playing, sound, start, video - static const IconData lightPlayCircle = const IconDataLight(0xf144); - - /// Duotone Play Circle icon - /// - /// https://fontawesome.com/icons/duotone_play-circle?style=duotone - /// audio, music, playing, sound, start, video - static const IconDataDuotone duotonePlayCircle = const IconDataDuotone( - 0xf144, - secondary: const IconDataDuotone(0x10f144), - ); - - /// Brands PlayStation icon - /// - /// https://fontawesome.com/icons/playstation?style=brands - static const IconData playstation = const IconDataBrands(0xf3df); - - /// Regular Plug icon - /// - /// https://fontawesome.com/icons/plug?style=regular - /// connect, electric, online, power - static const IconData plug = const IconDataRegular(0xf1e6); - - /// Solid Plug icon - /// - /// https://fontawesome.com/icons/plug?style=solid - /// connect, electric, online, power - static const IconData solidPlug = const IconDataSolid(0xf1e6); - - /// Light Plug icon - /// - /// https://fontawesome.com/icons/light_plug?style=light - /// connect, electric, online, power - static const IconData lightPlug = const IconDataLight(0xf1e6); - - /// Duotone Plug icon - /// - /// https://fontawesome.com/icons/duotone_plug?style=duotone - /// connect, electric, online, power - static const IconDataDuotone duotonePlug = const IconDataDuotone( - 0xf1e6, - secondary: const IconDataDuotone(0x10f1e6), - ); - - /// Regular plus icon - /// - /// https://fontawesome.com/icons/plus?style=regular - /// add, create, expand, new, positive, shape - static const IconData plus = const IconDataRegular(0xf067); - - /// Solid plus icon - /// - /// https://fontawesome.com/icons/plus?style=solid - /// add, create, expand, new, positive, shape - static const IconData solidPlus = const IconDataSolid(0xf067); - - /// Light plus icon - /// - /// https://fontawesome.com/icons/light_plus?style=light - /// add, create, expand, new, positive, shape - static const IconData lightPlus = const IconDataLight(0xf067); - - /// Duotone plus icon - /// - /// https://fontawesome.com/icons/duotone_plus?style=duotone - /// add, create, expand, new, positive, shape - static const IconDataDuotone duotonePlus = const IconDataDuotone( - 0xf067, - secondary: const IconDataDuotone(0x10f067), - ); - - /// Regular Plus Circle icon - /// - /// https://fontawesome.com/icons/plus-circle?style=regular - /// add, create, expand, new, positive, shape - static const IconData plusCircle = const IconDataRegular(0xf055); - - /// Solid Plus Circle icon - /// - /// https://fontawesome.com/icons/plus-circle?style=solid - /// add, create, expand, new, positive, shape - static const IconData solidPlusCircle = const IconDataSolid(0xf055); - - /// Light Plus Circle icon - /// - /// https://fontawesome.com/icons/light_plus-circle?style=light - /// add, create, expand, new, positive, shape - static const IconData lightPlusCircle = const IconDataLight(0xf055); - - /// Duotone Plus Circle icon - /// - /// https://fontawesome.com/icons/duotone_plus-circle?style=duotone - /// add, create, expand, new, positive, shape - static const IconDataDuotone duotonePlusCircle = const IconDataDuotone( - 0xf055, - secondary: const IconDataDuotone(0x10f055), - ); - - /// Regular Plus Hexagon icon - /// - /// https://fontawesome.com/icons/plus-hexagon?style=regular - /// add, create, expand, new, positive, shape - static const IconData plusHexagon = const IconDataRegular(0xf300); - - /// Solid Plus Hexagon icon - /// - /// https://fontawesome.com/icons/plus-hexagon?style=solid - /// add, create, expand, new, positive, shape - static const IconData solidPlusHexagon = const IconDataSolid(0xf300); - - /// Light Plus Hexagon icon - /// - /// https://fontawesome.com/icons/light_plus-hexagon?style=light - /// add, create, expand, new, positive, shape - static const IconData lightPlusHexagon = const IconDataLight(0xf300); - - /// Duotone Plus Hexagon icon - /// - /// https://fontawesome.com/icons/duotone_plus-hexagon?style=duotone - /// add, create, expand, new, positive, shape - static const IconDataDuotone duotonePlusHexagon = const IconDataDuotone( - 0xf300, - secondary: const IconDataDuotone(0x10f300), - ); - - /// Regular Plus Octagon icon - /// - /// https://fontawesome.com/icons/plus-octagon?style=regular - /// add, create, expand, new, positive, shape - static const IconData plusOctagon = const IconDataRegular(0xf301); - - /// Solid Plus Octagon icon - /// - /// https://fontawesome.com/icons/plus-octagon?style=solid - /// add, create, expand, new, positive, shape - static const IconData solidPlusOctagon = const IconDataSolid(0xf301); - - /// Light Plus Octagon icon - /// - /// https://fontawesome.com/icons/light_plus-octagon?style=light - /// add, create, expand, new, positive, shape - static const IconData lightPlusOctagon = const IconDataLight(0xf301); - - /// Duotone Plus Octagon icon - /// - /// https://fontawesome.com/icons/duotone_plus-octagon?style=duotone - /// add, create, expand, new, positive, shape - static const IconDataDuotone duotonePlusOctagon = const IconDataDuotone( - 0xf301, - secondary: const IconDataDuotone(0x10f301), - ); - - /// Regular Plus Square icon - /// - /// https://fontawesome.com/icons/plus-square?style=regular - /// add, create, expand, new, positive, shape - static const IconData plusSquare = const IconDataRegular(0xf0fe); - - /// Solid Plus Square icon - /// - /// https://fontawesome.com/icons/plus-square?style=solid - /// add, create, expand, new, positive, shape - static const IconData solidPlusSquare = const IconDataSolid(0xf0fe); - - /// Light Plus Square icon - /// - /// https://fontawesome.com/icons/light_plus-square?style=light - /// add, create, expand, new, positive, shape - static const IconData lightPlusSquare = const IconDataLight(0xf0fe); - - /// Duotone Plus Square icon - /// - /// https://fontawesome.com/icons/duotone_plus-square?style=duotone - /// add, create, expand, new, positive, shape - static const IconDataDuotone duotonePlusSquare = const IconDataDuotone( - 0xf0fe, - secondary: const IconDataDuotone(0x10f0fe), - ); - - /// Regular Podcast icon - /// - /// https://fontawesome.com/icons/podcast?style=regular - /// audio, broadcast, music, sound - static const IconData podcast = const IconDataRegular(0xf2ce); - - /// Solid Podcast icon - /// - /// https://fontawesome.com/icons/podcast?style=solid - /// audio, broadcast, music, sound - static const IconData solidPodcast = const IconDataSolid(0xf2ce); - - /// Light Podcast icon - /// - /// https://fontawesome.com/icons/light_podcast?style=light - /// audio, broadcast, music, sound - static const IconData lightPodcast = const IconDataLight(0xf2ce); - - /// Duotone Podcast icon - /// - /// https://fontawesome.com/icons/duotone_podcast?style=duotone - /// audio, broadcast, music, sound - static const IconDataDuotone duotonePodcast = const IconDataDuotone( - 0xf2ce, - secondary: const IconDataDuotone(0x10f2ce), - ); - - /// 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 = const IconDataRegular(0xf680); - - /// 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 = const IconDataSolid(0xf680); - - /// Light Podium icon - /// - /// https://fontawesome.com/icons/light_podium?style=light - /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData lightPodium = const IconDataLight(0xf680); - - /// Duotone Podium icon - /// - /// https://fontawesome.com/icons/duotone_podium?style=duotone - /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconDataDuotone duotonePodium = const IconDataDuotone( - 0xf680, - secondary: const IconDataDuotone(0x10f680), - ); - - /// Regular Podium with 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 = const IconDataRegular(0xf758); - - /// Solid Podium with 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 = const IconDataSolid(0xf758); - - /// Light Podium with Star icon - /// - /// https://fontawesome.com/icons/light_podium-star?style=light - /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconData lightPodiumStar = const IconDataLight(0xf758); - - /// Duotone Podium with Star icon - /// - /// https://fontawesome.com/icons/duotone_podium-star?style=duotone - /// debate, election, keynote, lecture, panel, politics, seminar, speak, speaker, speech, talk - static const IconDataDuotone duotonePodiumStar = const IconDataDuotone( - 0xf758, - secondary: const IconDataDuotone(0x10f758), - ); - - /// Regular Police Box icon - /// - /// https://fontawesome.com/icons/police-box?style=regular - /// doctor who, tardis, time and relative dimension in space, time machine - static const IconData policeBox = const IconDataRegular(0xe021); - - /// Solid Police Box icon - /// - /// https://fontawesome.com/icons/police-box?style=solid - /// doctor who, tardis, time and relative dimension in space, time machine - static const IconData solidPoliceBox = const IconDataSolid(0xe021); - - /// Light Police Box icon - /// - /// https://fontawesome.com/icons/light_police-box?style=light - /// doctor who, tardis, time and relative dimension in space, time machine - static const IconData lightPoliceBox = const IconDataLight(0xe021); - - /// Duotone Police Box icon - /// - /// https://fontawesome.com/icons/duotone_police-box?style=duotone - /// doctor who, tardis, time and relative dimension in space, time machine - static const IconDataDuotone duotonePoliceBox = const IconDataDuotone( - 0xe021, - secondary: const IconDataDuotone(0x10e021), - ); - - /// Regular Poll icon - /// - /// https://fontawesome.com/icons/poll?style=regular - /// results, survey, trend, vote, voting - static const IconData poll = const IconDataRegular(0xf681); - - /// Solid Poll icon - /// - /// https://fontawesome.com/icons/poll?style=solid - /// results, survey, trend, vote, voting - static const IconData solidPoll = const IconDataSolid(0xf681); - - /// Light Poll icon - /// - /// https://fontawesome.com/icons/light_poll?style=light - /// results, survey, trend, vote, voting - static const IconData lightPoll = const IconDataLight(0xf681); - - /// Duotone Poll icon - /// - /// https://fontawesome.com/icons/duotone_poll?style=duotone - /// results, survey, trend, vote, voting - static const IconDataDuotone duotonePoll = const IconDataDuotone( - 0xf681, - secondary: const IconDataDuotone(0x10f681), - ); - - /// Regular Poll H icon - /// - /// https://fontawesome.com/icons/poll-h?style=regular - /// results, survey, trend, vote, voting - static const IconData pollH = const IconDataRegular(0xf682); - - /// Solid Poll H icon - /// - /// https://fontawesome.com/icons/poll-h?style=solid - /// results, survey, trend, vote, voting - static const IconData solidPollH = const IconDataSolid(0xf682); - - /// Light Poll H icon - /// - /// https://fontawesome.com/icons/light_poll-h?style=light - /// results, survey, trend, vote, voting - static const IconData lightPollH = const IconDataLight(0xf682); - - /// Duotone Poll H icon - /// - /// https://fontawesome.com/icons/duotone_poll-h?style=duotone - /// results, survey, trend, vote, voting - static const IconDataDuotone duotonePollH = const IconDataDuotone( - 0xf682, - secondary: const IconDataDuotone(0x10f682), - ); - - /// Regular Poll People icon - /// - /// https://fontawesome.com/icons/poll-people?style=regular - /// candidates, election, people, person, results, survey, trend, vote, voting - static const IconData pollPeople = const IconDataRegular(0xf759); - - /// Solid Poll People icon - /// - /// https://fontawesome.com/icons/poll-people?style=solid - /// candidates, election, people, person, results, survey, trend, vote, voting - static const IconData solidPollPeople = const IconDataSolid(0xf759); - - /// Light Poll People icon - /// - /// https://fontawesome.com/icons/light_poll-people?style=light - /// candidates, election, people, person, results, survey, trend, vote, voting - static const IconData lightPollPeople = const IconDataLight(0xf759); - - /// Duotone Poll People icon - /// - /// https://fontawesome.com/icons/duotone_poll-people?style=duotone - /// candidates, election, people, person, results, survey, trend, vote, voting - static const IconDataDuotone duotonePollPeople = const IconDataDuotone( - 0xf759, - secondary: const IconDataDuotone(0x10f759), - ); - - /// Regular Poo icon - /// - /// https://fontawesome.com/icons/poo?style=regular - /// crap, poop, shit, smile, turd - static const IconData poo = const IconDataRegular(0xf2fe); - - /// Solid Poo icon - /// - /// https://fontawesome.com/icons/poo?style=solid - /// crap, poop, shit, smile, turd - static const IconData solidPoo = const IconDataSolid(0xf2fe); - - /// Light Poo icon - /// - /// https://fontawesome.com/icons/light_poo?style=light - /// crap, poop, shit, smile, turd - static const IconData lightPoo = const IconDataLight(0xf2fe); - - /// Duotone Poo icon - /// - /// https://fontawesome.com/icons/duotone_poo?style=duotone - /// crap, poop, shit, smile, turd - static const IconDataDuotone duotonePoo = const IconDataDuotone( - 0xf2fe, - secondary: const IconDataDuotone(0x10f2fe), - ); - - /// Regular Poo Storm icon - /// - /// https://fontawesome.com/icons/poo-storm?style=regular - /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData pooStorm = const IconDataRegular(0xf75a); - - /// Solid Poo Storm icon - /// - /// https://fontawesome.com/icons/poo-storm?style=solid - /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData solidPooStorm = const IconDataSolid(0xf75a); - - /// Light Poo Storm icon - /// - /// https://fontawesome.com/icons/light_poo-storm?style=light - /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconData lightPooStorm = const IconDataLight(0xf75a); - - /// Duotone Poo Storm icon - /// - /// https://fontawesome.com/icons/duotone_poo-storm?style=duotone - /// bolt, cloud, euphemism, lightning, mess, poop, shit, turd - static const IconDataDuotone duotonePooStorm = const IconDataDuotone( - 0xf75a, - secondary: const IconDataDuotone(0x10f75a), - ); - - /// Regular Poop icon - /// - /// https://fontawesome.com/icons/poop?style=regular - /// crap, poop, shit, smile, turd - static const IconData poop = const IconDataRegular(0xf619); - - /// Solid Poop icon - /// - /// https://fontawesome.com/icons/poop?style=solid - /// crap, poop, shit, smile, turd - static const IconData solidPoop = const IconDataSolid(0xf619); - - /// Light Poop icon - /// - /// https://fontawesome.com/icons/light_poop?style=light - /// crap, poop, shit, smile, turd - static const IconData lightPoop = const IconDataLight(0xf619); - - /// Duotone Poop icon - /// - /// https://fontawesome.com/icons/duotone_poop?style=duotone - /// crap, poop, shit, smile, turd - static const IconDataDuotone duotonePoop = const IconDataDuotone( - 0xf619, - secondary: const IconDataDuotone(0x10f619), - ); - - /// Regular Popcorn icon - /// - /// https://fontawesome.com/icons/popcorn?style=regular - /// bucket, butter, corn, junk food, kernels, movie, snack, theater - static const IconData popcorn = const IconDataRegular(0xf819); - - /// Solid Popcorn icon - /// - /// https://fontawesome.com/icons/popcorn?style=solid - /// bucket, butter, corn, junk food, kernels, movie, snack, theater - static const IconData solidPopcorn = const IconDataSolid(0xf819); - - /// Light Popcorn icon - /// - /// https://fontawesome.com/icons/light_popcorn?style=light - /// bucket, butter, corn, junk food, kernels, movie, snack, theater - static const IconData lightPopcorn = const IconDataLight(0xf819); - - /// Duotone Popcorn icon - /// - /// https://fontawesome.com/icons/duotone_popcorn?style=duotone - /// bucket, butter, corn, junk food, kernels, movie, snack, theater - static const IconDataDuotone duotonePopcorn = const IconDataDuotone( - 0xf819, - secondary: const IconDataDuotone(0x10f819), - ); - - /// Regular Portal Enter icon - /// - /// https://fontawesome.com/icons/portal-enter?style=regular - /// enter, open, teleport, transporter, travel - static const IconData portalEnter = const IconDataRegular(0xe022); - - /// Solid Portal Enter icon - /// - /// https://fontawesome.com/icons/portal-enter?style=solid - /// enter, open, teleport, transporter, travel - static const IconData solidPortalEnter = const IconDataSolid(0xe022); - - /// Light Portal Enter icon - /// - /// https://fontawesome.com/icons/light_portal-enter?style=light - /// enter, open, teleport, transporter, travel - static const IconData lightPortalEnter = const IconDataLight(0xe022); - - /// Duotone Portal Enter icon - /// - /// https://fontawesome.com/icons/duotone_portal-enter?style=duotone - /// enter, open, teleport, transporter, travel - static const IconDataDuotone duotonePortalEnter = const IconDataDuotone( - 0xe022, - secondary: const IconDataDuotone(0x10e022), - ); - - /// Regular Portal Exit icon - /// - /// https://fontawesome.com/icons/portal-exit?style=regular - /// close, enter, teleport, transporter, travel - static const IconData portalExit = const IconDataRegular(0xe023); - - /// Solid Portal Exit icon - /// - /// https://fontawesome.com/icons/portal-exit?style=solid - /// close, enter, teleport, transporter, travel - static const IconData solidPortalExit = const IconDataSolid(0xe023); - - /// Light Portal Exit icon - /// - /// https://fontawesome.com/icons/light_portal-exit?style=light - /// close, enter, teleport, transporter, travel - static const IconData lightPortalExit = const IconDataLight(0xe023); - - /// Duotone Portal Exit icon - /// - /// https://fontawesome.com/icons/duotone_portal-exit?style=duotone - /// close, enter, teleport, transporter, travel - static const IconDataDuotone duotonePortalExit = const IconDataDuotone( - 0xe023, - secondary: const IconDataDuotone(0x10e023), - ); - - /// Regular Portrait icon - /// - /// https://fontawesome.com/icons/portrait?style=regular - /// id, image, photo, picture, selfie - static const IconData portrait = const IconDataRegular(0xf3e0); - - /// Solid Portrait icon - /// - /// https://fontawesome.com/icons/portrait?style=solid - /// id, image, photo, picture, selfie - static const IconData solidPortrait = const IconDataSolid(0xf3e0); - - /// Light Portrait icon - /// - /// https://fontawesome.com/icons/light_portrait?style=light - /// id, image, photo, picture, selfie - static const IconData lightPortrait = const IconDataLight(0xf3e0); - - /// Duotone Portrait icon - /// - /// https://fontawesome.com/icons/duotone_portrait?style=duotone - /// id, image, photo, picture, selfie - static const IconDataDuotone duotonePortrait = const IconDataDuotone( - 0xf3e0, - secondary: const IconDataDuotone(0x10f3e0), - ); - - /// Regular Pound Sign icon - /// - /// https://fontawesome.com/icons/pound-sign?style=regular - /// currency, gbp, money - static const IconData poundSign = const IconDataRegular(0xf154); - - /// Solid Pound Sign icon - /// - /// https://fontawesome.com/icons/pound-sign?style=solid - /// currency, gbp, money - static const IconData solidPoundSign = const IconDataSolid(0xf154); - - /// Light Pound Sign icon - /// - /// https://fontawesome.com/icons/light_pound-sign?style=light - /// currency, gbp, money - static const IconData lightPoundSign = const IconDataLight(0xf154); - - /// Duotone Pound Sign icon - /// - /// https://fontawesome.com/icons/duotone_pound-sign?style=duotone - /// currency, gbp, money - static const IconDataDuotone duotonePoundSign = const IconDataDuotone( - 0xf154, - secondary: const IconDataDuotone(0x10f154), - ); - - /// Regular Power Off icon - /// - /// https://fontawesome.com/icons/power-off?style=regular - /// cancel, computer, on, reboot, restart - static const IconData powerOff = const IconDataRegular(0xf011); - - /// Solid Power Off icon - /// - /// https://fontawesome.com/icons/power-off?style=solid - /// cancel, computer, on, reboot, restart - static const IconData solidPowerOff = const IconDataSolid(0xf011); - - /// Light Power Off icon - /// - /// https://fontawesome.com/icons/light_power-off?style=light - /// cancel, computer, on, reboot, restart - static const IconData lightPowerOff = const IconDataLight(0xf011); - - /// Duotone Power Off icon - /// - /// https://fontawesome.com/icons/duotone_power-off?style=duotone - /// cancel, computer, on, reboot, restart - static const IconDataDuotone duotonePowerOff = const IconDataDuotone( - 0xf011, - secondary: const IconDataDuotone(0x10f011), - ); - - /// Regular Pray icon - /// - /// https://fontawesome.com/icons/pray?style=regular - /// kneel, preach, religion, worship - static const IconData pray = const IconDataRegular(0xf683); - - /// Solid Pray icon - /// - /// https://fontawesome.com/icons/pray?style=solid - /// kneel, preach, religion, worship - static const IconData solidPray = const IconDataSolid(0xf683); - - /// Light Pray icon - /// - /// https://fontawesome.com/icons/light_pray?style=light - /// kneel, preach, religion, worship - static const IconData lightPray = const IconDataLight(0xf683); - - /// Duotone Pray icon - /// - /// https://fontawesome.com/icons/duotone_pray?style=duotone - /// kneel, preach, religion, worship - static const IconDataDuotone duotonePray = const IconDataDuotone( - 0xf683, - secondary: const IconDataDuotone(0x10f683), - ); - - /// Regular Praying Hands icon - /// - /// https://fontawesome.com/icons/praying-hands?style=regular - /// kneel, preach, religion, worship - static const IconData prayingHands = const IconDataRegular(0xf684); - - /// Solid Praying Hands icon - /// - /// https://fontawesome.com/icons/praying-hands?style=solid - /// kneel, preach, religion, worship - static const IconData solidPrayingHands = const IconDataSolid(0xf684); - - /// Light Praying Hands icon - /// - /// https://fontawesome.com/icons/light_praying-hands?style=light - /// kneel, preach, religion, worship - static const IconData lightPrayingHands = const IconDataLight(0xf684); - - /// Duotone Praying Hands icon - /// - /// https://fontawesome.com/icons/duotone_praying-hands?style=duotone - /// kneel, preach, religion, worship - static const IconDataDuotone duotonePrayingHands = const IconDataDuotone( - 0xf684, - secondary: const IconDataDuotone(0x10f684), - ); - - /// Regular Prescription icon - /// - /// https://fontawesome.com/icons/prescription?style=regular - /// drugs, medical, medicine, pharmacy, rx - static const IconData prescription = const IconDataRegular(0xf5b1); - - /// Solid Prescription icon - /// - /// https://fontawesome.com/icons/prescription?style=solid - /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescription = const IconDataSolid(0xf5b1); - - /// Light Prescription icon - /// - /// https://fontawesome.com/icons/light_prescription?style=light - /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescription = const IconDataLight(0xf5b1); - - /// Duotone Prescription icon - /// - /// https://fontawesome.com/icons/duotone_prescription?style=duotone - /// drugs, medical, medicine, pharmacy, rx - static const IconDataDuotone duotonePrescription = const IconDataDuotone( - 0xf5b1, - secondary: const IconDataDuotone(0x10f5b1), - ); - - /// Regular Prescription Bottle icon - /// - /// https://fontawesome.com/icons/prescription-bottle?style=regular - /// drugs, medical, medicine, pharmacy, rx - static const IconData prescriptionBottle = const IconDataRegular(0xf485); - - /// Solid Prescription Bottle icon - /// - /// https://fontawesome.com/icons/prescription-bottle?style=solid - /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescriptionBottle = const IconDataSolid(0xf485); - - /// Light Prescription Bottle icon - /// - /// https://fontawesome.com/icons/light_prescription-bottle?style=light - /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescriptionBottle = const IconDataLight(0xf485); - - /// Duotone Prescription Bottle icon - /// - /// https://fontawesome.com/icons/duotone_prescription-bottle?style=duotone - /// drugs, medical, medicine, pharmacy, rx - static const IconDataDuotone duotonePrescriptionBottle = - const IconDataDuotone( - 0xf485, - secondary: const IconDataDuotone(0x10f485), - ); - - /// Regular Alternate Prescription Bottle icon - /// - /// https://fontawesome.com/icons/prescription-bottle-alt?style=regular - /// drugs, medical, medicine, pharmacy, rx - static const IconData prescriptionBottleAlt = const IconDataRegular(0xf486); - - /// Solid Alternate Prescription Bottle icon - /// - /// https://fontawesome.com/icons/prescription-bottle-alt?style=solid - /// drugs, medical, medicine, pharmacy, rx - static const IconData solidPrescriptionBottleAlt = - const IconDataSolid(0xf486); - - /// Light Alternate Prescription Bottle icon - /// - /// https://fontawesome.com/icons/light_prescription-bottle-alt?style=light - /// drugs, medical, medicine, pharmacy, rx - static const IconData lightPrescriptionBottleAlt = - const IconDataLight(0xf486); - - /// Duotone Alternate Prescription Bottle icon - /// - /// https://fontawesome.com/icons/duotone_prescription-bottle-alt?style=duotone - /// drugs, medical, medicine, pharmacy, rx - static const IconDataDuotone duotonePrescriptionBottleAlt = - const IconDataDuotone( - 0xf486, - secondary: const IconDataDuotone(0x10f486), - ); - - /// Regular Presentation icon - /// - /// https://fontawesome.com/icons/presentation?style=regular - /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData presentation = const IconDataRegular(0xf685); - - /// Solid Presentation icon - /// - /// https://fontawesome.com/icons/presentation?style=solid - /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData solidPresentation = const IconDataSolid(0xf685); - - /// Light Presentation icon - /// - /// https://fontawesome.com/icons/light_presentation?style=light - /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconData lightPresentation = const IconDataLight(0xf685); - - /// Duotone Presentation icon - /// - /// https://fontawesome.com/icons/duotone_presentation?style=duotone - /// keynote, lecture, panel, powerpoint, ppt, seminar, slides, speak, speaker, talk - static const IconDataDuotone duotonePresentation = const IconDataDuotone( - 0xf685, - secondary: const IconDataDuotone(0x10f685), - ); - - /// Regular print icon - /// - /// https://fontawesome.com/icons/print?style=regular - /// business, copy, document, office, paper - static const IconData print = const IconDataRegular(0xf02f); - - /// Solid print icon - /// - /// https://fontawesome.com/icons/print?style=solid - /// business, copy, document, office, paper - static const IconData solidPrint = const IconDataSolid(0xf02f); - - /// Light print icon - /// - /// https://fontawesome.com/icons/light_print?style=light - /// business, copy, document, office, paper - static const IconData lightPrint = const IconDataLight(0xf02f); - - /// Duotone print icon - /// - /// https://fontawesome.com/icons/duotone_print?style=duotone - /// business, copy, document, office, paper - static const IconDataDuotone duotonePrint = const IconDataDuotone( - 0xf02f, - secondary: const IconDataDuotone(0x10f02f), - ); - - /// Regular Print Search icon - /// - /// https://fontawesome.com/icons/print-search?style=regular - /// business, copy, document, find, office, paper, search - static const IconData printSearch = const IconDataRegular(0xf81a); - - /// Solid Print Search icon - /// - /// https://fontawesome.com/icons/print-search?style=solid - /// business, copy, document, find, office, paper, search - static const IconData solidPrintSearch = const IconDataSolid(0xf81a); - - /// Light Print Search icon - /// - /// https://fontawesome.com/icons/light_print-search?style=light - /// business, copy, document, find, office, paper, search - static const IconData lightPrintSearch = const IconDataLight(0xf81a); - - /// Duotone Print Search icon - /// - /// https://fontawesome.com/icons/duotone_print-search?style=duotone - /// business, copy, document, find, office, paper, search - static const IconDataDuotone duotonePrintSearch = const IconDataDuotone( - 0xf81a, - secondary: const IconDataDuotone(0x10f81a), - ); - - /// Regular Print Slash icon - /// - /// https://fontawesome.com/icons/print-slash?style=regular - /// business, copy, document, office, offline, paper - static const IconData printSlash = const IconDataRegular(0xf686); - - /// Solid Print Slash icon - /// - /// https://fontawesome.com/icons/print-slash?style=solid - /// business, copy, document, office, offline, paper - static const IconData solidPrintSlash = const IconDataSolid(0xf686); - - /// Light Print Slash icon - /// - /// https://fontawesome.com/icons/light_print-slash?style=light - /// business, copy, document, office, offline, paper - static const IconData lightPrintSlash = const IconDataLight(0xf686); - - /// Duotone Print Slash icon - /// - /// https://fontawesome.com/icons/duotone_print-slash?style=duotone - /// business, copy, document, office, offline, paper - static const IconDataDuotone duotonePrintSlash = const IconDataDuotone( - 0xf686, - secondary: const IconDataDuotone(0x10f686), - ); - - /// Regular Procedures icon - /// - /// https://fontawesome.com/icons/procedures?style=regular - /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData procedures = const IconDataRegular(0xf487); - - /// Solid Procedures icon - /// - /// https://fontawesome.com/icons/procedures?style=solid - /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData solidProcedures = const IconDataSolid(0xf487); - - /// Light Procedures icon - /// - /// https://fontawesome.com/icons/light_procedures?style=light - /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconData lightProcedures = const IconDataLight(0xf487); - - /// Duotone Procedures icon - /// - /// https://fontawesome.com/icons/duotone_procedures?style=duotone - /// EKG, bed, electrocardiogram, health, hospital, life, patient, vital - static const IconDataDuotone duotoneProcedures = const IconDataDuotone( - 0xf487, - secondary: const IconDataDuotone(0x10f487), - ); - - /// Brands Product Hunt icon - /// - /// https://fontawesome.com/icons/product-hunt?style=brands - static const IconData productHunt = const IconDataBrands(0xf288); - - /// Regular Project Diagram icon - /// - /// https://fontawesome.com/icons/project-diagram?style=regular - /// chart, graph, network, pert - static const IconData projectDiagram = const IconDataRegular(0xf542); - - /// Solid Project Diagram icon - /// - /// https://fontawesome.com/icons/project-diagram?style=solid - /// chart, graph, network, pert - static const IconData solidProjectDiagram = const IconDataSolid(0xf542); - - /// Light Project Diagram icon - /// - /// https://fontawesome.com/icons/light_project-diagram?style=light - /// chart, graph, network, pert - static const IconData lightProjectDiagram = const IconDataLight(0xf542); - - /// Duotone Project Diagram icon - /// - /// https://fontawesome.com/icons/duotone_project-diagram?style=duotone - /// chart, graph, network, pert - static const IconDataDuotone duotoneProjectDiagram = const IconDataDuotone( - 0xf542, - secondary: const IconDataDuotone(0x10f542), - ); - - /// Regular Projector icon - /// - /// https://fontawesome.com/icons/projector?style=regular - /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData projector = const IconDataRegular(0xf8d6); - - /// Solid Projector icon - /// - /// https://fontawesome.com/icons/projector?style=solid - /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData solidProjector = const IconDataSolid(0xf8d6); - - /// Light Projector icon - /// - /// https://fontawesome.com/icons/light_projector?style=light - /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconData lightProjector = const IconDataLight(0xf8d6); - - /// Duotone Projector icon - /// - /// https://fontawesome.com/icons/duotone_projector?style=duotone - /// cinema, keynote, movie, powerpoint, presentation, shadow puppets, slides - static const IconDataDuotone duotoneProjector = const IconDataDuotone( - 0xf8d6, - secondary: const IconDataDuotone(0x10f8d6), - ); - - /// 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 = const IconDataRegular(0xe06a); - - /// Light Pump Medical icon - /// - /// https://fontawesome.com/icons/light_pump-medical?style=light - /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconData lightPumpMedical = const IconDataLight(0xe06a); - - /// 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 = const IconDataSolid(0xe06a); - - /// Duotone Pump Medical icon - /// - /// https://fontawesome.com/icons/duotone_pump-medical?style=duotone - /// anti-bacterial, clean, covid-19, disinfect, hygiene, medical grade, sanitizer, soap - static const IconDataDuotone duotonePumpMedical = const IconDataDuotone( - 0xe06a, - secondary: const IconDataDuotone(0x10e06a), - ); - - /// 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 = const IconDataRegular(0xe06b); - - /// Light Pump Soap icon - /// - /// https://fontawesome.com/icons/light_pump-soap?style=light - /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconData lightPumpSoap = const IconDataLight(0xe06b); - - /// 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 = const IconDataSolid(0xe06b); - - /// Duotone Pump Soap icon - /// - /// https://fontawesome.com/icons/duotone_pump-soap?style=duotone - /// anti-bacterial, clean, covid-19, disinfect, hygiene, sanitizer, soap - static const IconDataDuotone duotonePumpSoap = const IconDataDuotone( - 0xe06b, - secondary: const IconDataDuotone(0x10e06b), - ); - - /// Regular Pumpkin icon - /// - /// https://fontawesome.com/icons/pumpkin?style=regular - /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData pumpkin = const IconDataRegular(0xf707); - - /// Solid Pumpkin icon - /// - /// https://fontawesome.com/icons/pumpkin?style=solid - /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData solidPumpkin = const IconDataSolid(0xf707); - - /// Light Pumpkin icon - /// - /// https://fontawesome.com/icons/light_pumpkin?style=light - /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconData lightPumpkin = const IconDataLight(0xf707); - - /// Duotone Pumpkin icon - /// - /// https://fontawesome.com/icons/duotone_pumpkin?style=duotone - /// autumn, gourd, halloween, harvest, squash, thanksgiving, vegetable - static const IconDataDuotone duotonePumpkin = const IconDataDuotone( - 0xf707, - secondary: const IconDataDuotone(0x10f707), - ); - - /// Brands Pushed icon - /// - /// https://fontawesome.com/icons/pushed?style=brands - static const IconData pushed = const IconDataBrands(0xf3e1); - - /// Regular Puzzle Piece icon - /// - /// https://fontawesome.com/icons/puzzle-piece?style=regular - /// add-on, addon, game, section - static const IconData puzzlePiece = const IconDataRegular(0xf12e); - - /// Solid Puzzle Piece icon - /// - /// https://fontawesome.com/icons/puzzle-piece?style=solid - /// add-on, addon, game, section - static const IconData solidPuzzlePiece = const IconDataSolid(0xf12e); - - /// Light Puzzle Piece icon - /// - /// https://fontawesome.com/icons/light_puzzle-piece?style=light - /// add-on, addon, game, section - static const IconData lightPuzzlePiece = const IconDataLight(0xf12e); - - /// Duotone Puzzle Piece icon - /// - /// https://fontawesome.com/icons/duotone_puzzle-piece?style=duotone - /// add-on, addon, game, section - static const IconDataDuotone duotonePuzzlePiece = const IconDataDuotone( - 0xf12e, - secondary: const IconDataDuotone(0x10f12e), - ); - - /// Brands Python icon - /// - /// https://fontawesome.com/icons/python?style=brands - static const IconData python = const IconDataBrands(0xf3e2); - - /// Brands QQ icon - /// - /// https://fontawesome.com/icons/qq?style=brands - static const IconData qq = const IconDataBrands(0xf1d6); - - /// Regular qrcode icon - /// - /// https://fontawesome.com/icons/qrcode?style=regular - /// barcode, info, information, scan - static const IconData qrcode = const IconDataRegular(0xf029); - - /// Solid qrcode icon - /// - /// https://fontawesome.com/icons/qrcode?style=solid - /// barcode, info, information, scan - static const IconData solidQrcode = const IconDataSolid(0xf029); - - /// Light qrcode icon - /// - /// https://fontawesome.com/icons/light_qrcode?style=light - /// barcode, info, information, scan - static const IconData lightQrcode = const IconDataLight(0xf029); - - /// Duotone qrcode icon - /// - /// https://fontawesome.com/icons/duotone_qrcode?style=duotone - /// barcode, info, information, scan - static const IconDataDuotone duotoneQrcode = const IconDataDuotone( - 0xf029, - secondary: const IconDataDuotone(0x10f029), - ); - - /// Regular Question icon - /// - /// https://fontawesome.com/icons/question?style=regular - /// help, information, support, unknown - static const IconData question = const IconDataRegular(0xf128); - - /// Solid Question icon - /// - /// https://fontawesome.com/icons/question?style=solid - /// help, information, support, unknown - static const IconData solidQuestion = const IconDataSolid(0xf128); - - /// Light Question icon - /// - /// https://fontawesome.com/icons/light_question?style=light - /// help, information, support, unknown - static const IconData lightQuestion = const IconDataLight(0xf128); - - /// Duotone Question icon - /// - /// https://fontawesome.com/icons/duotone_question?style=duotone - /// help, information, support, unknown - static const IconDataDuotone duotoneQuestion = const IconDataDuotone( - 0xf128, - secondary: const IconDataDuotone(0x10f128), - ); - - /// Regular Question Circle icon - /// - /// https://fontawesome.com/icons/question-circle?style=regular - /// help, information, support, unknown - static const IconData questionCircle = const IconDataRegular(0xf059); - - /// Solid Question Circle icon - /// - /// https://fontawesome.com/icons/question-circle?style=solid - /// help, information, support, unknown - static const IconData solidQuestionCircle = const IconDataSolid(0xf059); - - /// Light Question Circle icon - /// - /// https://fontawesome.com/icons/light_question-circle?style=light - /// help, information, support, unknown - static const IconData lightQuestionCircle = const IconDataLight(0xf059); - - /// Duotone Question Circle icon - /// - /// https://fontawesome.com/icons/duotone_question-circle?style=duotone - /// help, information, support, unknown - static const IconDataDuotone duotoneQuestionCircle = const IconDataDuotone( - 0xf059, - secondary: const IconDataDuotone(0x10f059), - ); - - /// Regular Question Square icon - /// - /// https://fontawesome.com/icons/question-square?style=regular - /// help, information, support, unknown - static const IconData questionSquare = const IconDataRegular(0xf2fd); - - /// Solid Question Square icon - /// - /// https://fontawesome.com/icons/question-square?style=solid - /// help, information, support, unknown - static const IconData solidQuestionSquare = const IconDataSolid(0xf2fd); - - /// Light Question Square icon - /// - /// https://fontawesome.com/icons/light_question-square?style=light - /// help, information, support, unknown - static const IconData lightQuestionSquare = const IconDataLight(0xf2fd); - - /// Duotone Question Square icon - /// - /// https://fontawesome.com/icons/duotone_question-square?style=duotone - /// help, information, support, unknown - static const IconDataDuotone duotoneQuestionSquare = const IconDataDuotone( - 0xf2fd, - secondary: const IconDataDuotone(0x10f2fd), - ); - - /// Regular Quidditch icon - /// - /// https://fontawesome.com/icons/quidditch?style=regular - /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData quidditch = const IconDataRegular(0xf458); - - /// Solid Quidditch icon - /// - /// https://fontawesome.com/icons/quidditch?style=solid - /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData solidQuidditch = const IconDataSolid(0xf458); - - /// Light Quidditch icon - /// - /// https://fontawesome.com/icons/light_quidditch?style=light - /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconData lightQuidditch = const IconDataLight(0xf458); - - /// Duotone Quidditch icon - /// - /// https://fontawesome.com/icons/duotone_quidditch?style=duotone - /// ball, bludger, broom, golden snitch, harry potter, hogwarts, quaffle, sport, wizard - static const IconDataDuotone duotoneQuidditch = const IconDataDuotone( - 0xf458, - secondary: const IconDataDuotone(0x10f458), - ); - - /// Brands QuinScape icon - /// - /// https://fontawesome.com/icons/quinscape?style=brands - static const IconData quinscape = const IconDataBrands(0xf459); - - /// Brands Quora icon - /// - /// https://fontawesome.com/icons/quora?style=brands - static const IconData quora = const IconDataBrands(0xf2c4); - - /// Regular quote-left icon - /// - /// https://fontawesome.com/icons/quote-left?style=regular - /// mention, note, phrase, text, type - static const IconData quoteLeft = const IconDataRegular(0xf10d); - - /// Solid quote-left icon - /// - /// https://fontawesome.com/icons/quote-left?style=solid - /// mention, note, phrase, text, type - static const IconData solidQuoteLeft = const IconDataSolid(0xf10d); - - /// Light quote-left icon - /// - /// https://fontawesome.com/icons/light_quote-left?style=light - /// mention, note, phrase, text, type - static const IconData lightQuoteLeft = const IconDataLight(0xf10d); - - /// Duotone quote-left icon - /// - /// https://fontawesome.com/icons/duotone_quote-left?style=duotone - /// mention, note, phrase, text, type - static const IconDataDuotone duotoneQuoteLeft = const IconDataDuotone( - 0xf10d, - secondary: const IconDataDuotone(0x10f10d), - ); - - /// Regular quote-right icon - /// - /// https://fontawesome.com/icons/quote-right?style=regular - /// mention, note, phrase, text, type - static const IconData quoteRight = const IconDataRegular(0xf10e); - - /// Solid quote-right icon - /// - /// https://fontawesome.com/icons/quote-right?style=solid - /// mention, note, phrase, text, type - static const IconData solidQuoteRight = const IconDataSolid(0xf10e); - - /// Light quote-right icon - /// - /// https://fontawesome.com/icons/light_quote-right?style=light - /// mention, note, phrase, text, type - static const IconData lightQuoteRight = const IconDataLight(0xf10e); - - /// Duotone quote-right icon - /// - /// https://fontawesome.com/icons/duotone_quote-right?style=duotone - /// mention, note, phrase, text, type - static const IconDataDuotone duotoneQuoteRight = const IconDataDuotone( - 0xf10e, - secondary: const IconDataDuotone(0x10f10e), - ); - - /// Regular Quran icon - /// - /// https://fontawesome.com/icons/quran?style=regular - /// book, islam, muslim, religion - static const IconData quran = const IconDataRegular(0xf687); - - /// Solid Quran icon - /// - /// https://fontawesome.com/icons/quran?style=solid - /// book, islam, muslim, religion - static const IconData solidQuran = const IconDataSolid(0xf687); - - /// Light Quran icon - /// - /// https://fontawesome.com/icons/light_quran?style=light - /// book, islam, muslim, religion - static const IconData lightQuran = const IconDataLight(0xf687); - - /// Duotone Quran icon - /// - /// https://fontawesome.com/icons/duotone_quran?style=duotone - /// book, islam, muslim, religion - static const IconDataDuotone duotoneQuran = const IconDataDuotone( - 0xf687, - secondary: const IconDataDuotone(0x10f687), - ); - - /// Brands R Project icon - /// - /// https://fontawesome.com/icons/r-project?style=brands - static const IconData rProject = const IconDataBrands(0xf4f7); - - /// Regular Rabbit icon - /// - /// https://fontawesome.com/icons/rabbit?style=regular - /// animal, bunny, fast, fauna, hare, mammal, speed, wabbit - static const IconData rabbit = const IconDataRegular(0xf708); - - /// Solid Rabbit icon - /// - /// https://fontawesome.com/icons/rabbit?style=solid - /// animal, bunny, fast, fauna, hare, mammal, speed, wabbit - static const IconData solidRabbit = const IconDataSolid(0xf708); - - /// Light Rabbit icon - /// - /// https://fontawesome.com/icons/light_rabbit?style=light - /// animal, bunny, fast, fauna, hare, mammal, speed, wabbit - static const IconData lightRabbit = const IconDataLight(0xf708); - - /// Duotone Rabbit icon - /// - /// https://fontawesome.com/icons/duotone_rabbit?style=duotone - /// animal, bunny, fast, fauna, hare, mammal, speed, wabbit - static const IconDataDuotone duotoneRabbit = const IconDataDuotone( - 0xf708, - secondary: const IconDataDuotone(0x10f708), - ); - - /// Regular Fast Rabbit icon - /// - /// https://fontawesome.com/icons/rabbit-fast?style=regular - /// animal, bunny, fast, fauna, hare, mammal, running, speed, wabbit - static const IconData rabbitFast = const IconDataRegular(0xf709); - - /// Solid Fast Rabbit icon - /// - /// https://fontawesome.com/icons/rabbit-fast?style=solid - /// animal, bunny, fast, fauna, hare, mammal, running, speed, wabbit - static const IconData solidRabbitFast = const IconDataSolid(0xf709); - - /// Light Fast Rabbit icon - /// - /// https://fontawesome.com/icons/light_rabbit-fast?style=light - /// animal, bunny, fast, fauna, hare, mammal, running, speed, wabbit - static const IconData lightRabbitFast = const IconDataLight(0xf709); - - /// Duotone Fast Rabbit icon - /// - /// https://fontawesome.com/icons/duotone_rabbit-fast?style=duotone - /// animal, bunny, fast, fauna, hare, mammal, running, speed, wabbit - static const IconDataDuotone duotoneRabbitFast = const IconDataDuotone( - 0xf709, - secondary: const IconDataDuotone(0x10f709), - ); - - /// Regular Racquet icon - /// - /// https://fontawesome.com/icons/racquet?style=regular - /// badminton, racket, squash, tennis - static const IconData racquet = const IconDataRegular(0xf45a); - - /// Solid Racquet icon - /// - /// https://fontawesome.com/icons/racquet?style=solid - /// badminton, racket, squash, tennis - static const IconData solidRacquet = const IconDataSolid(0xf45a); - - /// Light Racquet icon - /// - /// https://fontawesome.com/icons/light_racquet?style=light - /// badminton, racket, squash, tennis - static const IconData lightRacquet = const IconDataLight(0xf45a); - - /// Duotone Racquet icon - /// - /// https://fontawesome.com/icons/duotone_racquet?style=duotone - /// badminton, racket, squash, tennis - static const IconDataDuotone duotoneRacquet = const IconDataDuotone( - 0xf45a, - secondary: const IconDataDuotone(0x10f45a), - ); - - /// Regular Radar icon - /// - /// https://fontawesome.com/icons/radar?style=regular - /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData radar = const IconDataRegular(0xe024); - - /// Solid Radar icon - /// - /// https://fontawesome.com/icons/radar?style=solid - /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData solidRadar = const IconDataSolid(0xe024); - - /// Light Radar icon - /// - /// https://fontawesome.com/icons/light_radar?style=light - /// blip, find, lidar, radio, scan, search, sonar, space - static const IconData lightRadar = const IconDataLight(0xe024); - - /// Duotone Radar icon - /// - /// https://fontawesome.com/icons/duotone_radar?style=duotone - /// blip, find, lidar, radio, scan, search, sonar, space - static const IconDataDuotone duotoneRadar = const IconDataDuotone( - 0xe024, - secondary: const IconDataDuotone(0x10e024), - ); - - /// Regular Radiation icon - /// - /// https://fontawesome.com/icons/radiation?style=regular - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData radiation = const IconDataRegular(0xf7b9); - - /// Solid Radiation icon - /// - /// https://fontawesome.com/icons/radiation?style=solid - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData solidRadiation = const IconDataSolid(0xf7b9); - - /// Light Radiation icon - /// - /// https://fontawesome.com/icons/light_radiation?style=light - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData lightRadiation = const IconDataLight(0xf7b9); - - /// Duotone Radiation icon - /// - /// https://fontawesome.com/icons/duotone_radiation?style=duotone - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconDataDuotone duotoneRadiation = const IconDataDuotone( - 0xf7b9, - secondary: const IconDataDuotone(0x10f7b9), - ); - - /// Regular Alternate Radiation icon - /// - /// https://fontawesome.com/icons/radiation-alt?style=regular - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData radiationAlt = const IconDataRegular(0xf7ba); - - /// Solid Alternate Radiation icon - /// - /// https://fontawesome.com/icons/radiation-alt?style=solid - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData solidRadiationAlt = const IconDataSolid(0xf7ba); - - /// Light Alternate Radiation icon - /// - /// https://fontawesome.com/icons/light_radiation-alt?style=light - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconData lightRadiationAlt = const IconDataLight(0xf7ba); - - /// Duotone Alternate Radiation icon - /// - /// https://fontawesome.com/icons/duotone_radiation-alt?style=duotone - /// danger, dangerous, deadly, hazard, nuclear, radioactive, warning - static const IconDataDuotone duotoneRadiationAlt = const IconDataDuotone( - 0xf7ba, - secondary: const IconDataDuotone(0x10f7ba), - ); - - /// Regular Radio icon - /// - /// https://fontawesome.com/icons/radio?style=regular - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData radio = const IconDataRegular(0xf8d7); - - /// Solid Radio icon - /// - /// https://fontawesome.com/icons/radio?style=solid - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData solidRadio = const IconDataSolid(0xf8d7); - - /// Light Radio icon - /// - /// https://fontawesome.com/icons/light_radio?style=light - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData lightRadio = const IconDataLight(0xf8d7); - - /// Duotone Radio icon - /// - /// https://fontawesome.com/icons/duotone_radio?style=duotone - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconDataDuotone duotoneRadio = const IconDataDuotone( - 0xf8d7, - secondary: const IconDataDuotone(0x10f8d7), - ); - - /// Regular Alternate Radio icon - /// - /// https://fontawesome.com/icons/radio-alt?style=regular - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData radioAlt = const IconDataRegular(0xf8d8); - - /// Solid Alternate Radio icon - /// - /// https://fontawesome.com/icons/radio-alt?style=solid - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData solidRadioAlt = const IconDataSolid(0xf8d8); - - /// Light Alternate Radio icon - /// - /// https://fontawesome.com/icons/light_radio-alt?style=light - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconData lightRadioAlt = const IconDataLight(0xf8d8); - - /// Duotone Alternate Radio icon - /// - /// https://fontawesome.com/icons/duotone_radio-alt?style=duotone - /// am, broadcast, fm, frequency, music, news, receiver, transmitter, tuner - static const IconDataDuotone duotoneRadioAlt = const IconDataDuotone( - 0xf8d8, - secondary: const IconDataDuotone(0x10f8d8), - ); - - /// Regular Rainbow icon - /// - /// https://fontawesome.com/icons/rainbow?style=regular - /// gold, leprechaun, prism, rain, sky - static const IconData rainbow = const IconDataRegular(0xf75b); - - /// Solid Rainbow icon - /// - /// https://fontawesome.com/icons/rainbow?style=solid - /// gold, leprechaun, prism, rain, sky - static const IconData solidRainbow = const IconDataSolid(0xf75b); - - /// Light Rainbow icon - /// - /// https://fontawesome.com/icons/light_rainbow?style=light - /// gold, leprechaun, prism, rain, sky - static const IconData lightRainbow = const IconDataLight(0xf75b); - - /// Duotone Rainbow icon - /// - /// https://fontawesome.com/icons/duotone_rainbow?style=duotone - /// gold, leprechaun, prism, rain, sky - static const IconDataDuotone duotoneRainbow = const IconDataDuotone( - 0xf75b, - secondary: const IconDataDuotone(0x10f75b), - ); - - /// Regular Raindrops icon - /// - /// https://fontawesome.com/icons/raindrops?style=regular - /// precipitation, rain, sprinkle, storm - static const IconData raindrops = const IconDataRegular(0xf75c); - - /// Solid Raindrops icon - /// - /// https://fontawesome.com/icons/raindrops?style=solid - /// precipitation, rain, sprinkle, storm - static const IconData solidRaindrops = const IconDataSolid(0xf75c); - - /// Light Raindrops icon - /// - /// https://fontawesome.com/icons/light_raindrops?style=light - /// precipitation, rain, sprinkle, storm - static const IconData lightRaindrops = const IconDataLight(0xf75c); - - /// Duotone Raindrops icon - /// - /// https://fontawesome.com/icons/duotone_raindrops?style=duotone - /// precipitation, rain, sprinkle, storm - static const IconDataDuotone duotoneRaindrops = const IconDataDuotone( - 0xf75c, - secondary: const IconDataDuotone(0x10f75c), - ); - - /// Regular Ram icon - /// - /// https://fontawesome.com/icons/ram?style=regular - /// animal, fauna, horns, mammal - static const IconData ram = const IconDataRegular(0xf70a); - - /// Solid Ram icon - /// - /// https://fontawesome.com/icons/ram?style=solid - /// animal, fauna, horns, mammal - static const IconData solidRam = const IconDataSolid(0xf70a); - - /// Light Ram icon - /// - /// https://fontawesome.com/icons/light_ram?style=light - /// animal, fauna, horns, mammal - static const IconData lightRam = const IconDataLight(0xf70a); - - /// Duotone Ram icon - /// - /// https://fontawesome.com/icons/duotone_ram?style=duotone - /// animal, fauna, horns, mammal - static const IconDataDuotone duotoneRam = const IconDataDuotone( - 0xf70a, - secondary: const IconDataDuotone(0x10f70a), - ); - - /// Regular Ramp Loading icon - /// - /// https://fontawesome.com/icons/ramp-loading?style=regular - /// inventory, moving, shipping, storage, warehouse - static const IconData rampLoading = const IconDataRegular(0xf4d4); - - /// Solid Ramp Loading icon - /// - /// https://fontawesome.com/icons/ramp-loading?style=solid - /// inventory, moving, shipping, storage, warehouse - static const IconData solidRampLoading = const IconDataSolid(0xf4d4); - - /// Light Ramp Loading icon - /// - /// https://fontawesome.com/icons/light_ramp-loading?style=light - /// inventory, moving, shipping, storage, warehouse - static const IconData lightRampLoading = const IconDataLight(0xf4d4); - - /// Duotone Ramp Loading icon - /// - /// https://fontawesome.com/icons/duotone_ramp-loading?style=duotone - /// inventory, moving, shipping, storage, warehouse - static const IconDataDuotone duotoneRampLoading = const IconDataDuotone( - 0xf4d4, - secondary: const IconDataDuotone(0x10f4d4), - ); - - /// Regular random icon - /// - /// https://fontawesome.com/icons/random?style=regular - /// arrows, shuffle, sort, swap, switch, transfer - static const IconData random = const IconDataRegular(0xf074); - - /// Solid random icon - /// - /// https://fontawesome.com/icons/random?style=solid - /// arrows, shuffle, sort, swap, switch, transfer - static const IconData solidRandom = const IconDataSolid(0xf074); - - /// Light random icon - /// - /// https://fontawesome.com/icons/light_random?style=light - /// arrows, shuffle, sort, swap, switch, transfer - static const IconData lightRandom = const IconDataLight(0xf074); - - /// Duotone random icon - /// - /// https://fontawesome.com/icons/duotone_random?style=duotone - /// arrows, shuffle, sort, swap, switch, transfer - static const IconDataDuotone duotoneRandom = const IconDataDuotone( - 0xf074, - secondary: const IconDataDuotone(0x10f074), - ); - - /// Brands Raspberry Pi icon - /// - /// https://fontawesome.com/icons/raspberry-pi?style=brands - static const IconData raspberryPi = const IconDataBrands(0xf7bb); - - /// Brands Ravelry icon - /// - /// https://fontawesome.com/icons/ravelry?style=brands - static const IconData ravelry = const IconDataBrands(0xf2d9); - - /// Regular Raygun icon - /// - /// https://fontawesome.com/icons/raygun?style=regular - /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData raygun = const IconDataRegular(0xe025); - - /// Solid Raygun icon - /// - /// https://fontawesome.com/icons/raygun?style=solid - /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData solidRaygun = const IconDataSolid(0xe025); - - /// Light Raygun icon - /// - /// https://fontawesome.com/icons/light_raygun?style=light - /// flash gordon, laser, pew pew, phaser, space, stun - static const IconData lightRaygun = const IconDataLight(0xe025); - - /// Duotone Raygun icon - /// - /// https://fontawesome.com/icons/duotone_raygun?style=duotone - /// flash gordon, laser, pew pew, phaser, space, stun - static const IconDataDuotone duotoneRaygun = const IconDataDuotone( - 0xe025, - secondary: const IconDataDuotone(0x10e025), - ); - - /// Brands React icon - /// - /// https://fontawesome.com/icons/react?style=brands - static const IconData react = const IconDataBrands(0xf41b); - - /// Brands ReactEurope icon - /// - /// https://fontawesome.com/icons/reacteurope?style=brands - static const IconData reacteurope = const IconDataBrands(0xf75d); - - /// Brands ReadMe icon - /// - /// https://fontawesome.com/icons/readme?style=brands - static const IconData readme = const IconDataBrands(0xf4d5); - - /// Brands Rebel Alliance icon - /// - /// https://fontawesome.com/icons/rebel?style=brands - static const IconData rebel = const IconDataBrands(0xf1d0); - - /// Regular Receipt icon - /// - /// https://fontawesome.com/icons/receipt?style=regular - /// check, invoice, money, pay, table - static const IconData receipt = const IconDataRegular(0xf543); - - /// Solid Receipt icon - /// - /// https://fontawesome.com/icons/receipt?style=solid - /// check, invoice, money, pay, table - static const IconData solidReceipt = const IconDataSolid(0xf543); - - /// Light Receipt icon - /// - /// https://fontawesome.com/icons/light_receipt?style=light - /// check, invoice, money, pay, table - static const IconData lightReceipt = const IconDataLight(0xf543); - - /// Duotone Receipt icon - /// - /// https://fontawesome.com/icons/duotone_receipt?style=duotone - /// check, invoice, money, pay, table - static const IconDataDuotone duotoneReceipt = const IconDataDuotone( - 0xf543, - secondary: const IconDataDuotone(0x10f543), - ); - - /// Regular Record Vinyl icon - /// - /// https://fontawesome.com/icons/record-vinyl?style=regular - /// LP, album, analog, music, phonograph, sound - static const IconData recordVinyl = const IconDataRegular(0xf8d9); - - /// Solid Record Vinyl icon - /// - /// https://fontawesome.com/icons/record-vinyl?style=solid - /// LP, album, analog, music, phonograph, sound - static const IconData solidRecordVinyl = const IconDataSolid(0xf8d9); - - /// Light Record Vinyl icon - /// - /// https://fontawesome.com/icons/light_record-vinyl?style=light - /// LP, album, analog, music, phonograph, sound - static const IconData lightRecordVinyl = const IconDataLight(0xf8d9); - - /// Duotone Record Vinyl icon - /// - /// https://fontawesome.com/icons/duotone_record-vinyl?style=duotone - /// LP, album, analog, music, phonograph, sound - static const IconDataDuotone duotoneRecordVinyl = const IconDataDuotone( - 0xf8d9, - secondary: const IconDataDuotone(0x10f8d9), - ); - - /// Regular Landscape Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-landscape?style=regular - /// geometry, shape - static const IconData rectangleLandscape = const IconDataRegular(0xf2fa); - - /// Solid Landscape Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-landscape?style=solid - /// geometry, shape - static const IconData solidRectangleLandscape = const IconDataSolid(0xf2fa); - - /// Light Landscape Rectangle icon - /// - /// https://fontawesome.com/icons/light_rectangle-landscape?style=light - /// geometry, shape - static const IconData lightRectangleLandscape = const IconDataLight(0xf2fa); - - /// Duotone Landscape Rectangle icon - /// - /// https://fontawesome.com/icons/duotone_rectangle-landscape?style=duotone - /// geometry, shape - static const IconDataDuotone duotoneRectangleLandscape = - const IconDataDuotone( - 0xf2fa, - secondary: const IconDataDuotone(0x10f2fa), - ); - - /// Regular Portrait Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-portrait?style=regular - /// geometry, shape - static const IconData rectanglePortrait = const IconDataRegular(0xf2fb); - - /// Solid Portrait Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-portrait?style=solid - /// geometry, shape - static const IconData solidRectanglePortrait = const IconDataSolid(0xf2fb); - - /// Light Portrait Rectangle icon - /// - /// https://fontawesome.com/icons/light_rectangle-portrait?style=light - /// geometry, shape - static const IconData lightRectanglePortrait = const IconDataLight(0xf2fb); - - /// Duotone Portrait Rectangle icon - /// - /// https://fontawesome.com/icons/duotone_rectangle-portrait?style=duotone - /// geometry, shape - static const IconDataDuotone duotoneRectanglePortrait = const IconDataDuotone( - 0xf2fb, - secondary: const IconDataDuotone(0x10f2fb), - ); - - /// Regular Wide Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-wide?style=regular - /// geometry, landscape, shape - static const IconData rectangleWide = const IconDataRegular(0xf2fc); - - /// Solid Wide Rectangle icon - /// - /// https://fontawesome.com/icons/rectangle-wide?style=solid - /// geometry, landscape, shape - static const IconData solidRectangleWide = const IconDataSolid(0xf2fc); - - /// Light Wide Rectangle icon - /// - /// https://fontawesome.com/icons/light_rectangle-wide?style=light - /// geometry, landscape, shape - static const IconData lightRectangleWide = const IconDataLight(0xf2fc); - - /// Duotone Wide Rectangle icon - /// - /// https://fontawesome.com/icons/duotone_rectangle-wide?style=duotone - /// geometry, landscape, shape - static const IconDataDuotone duotoneRectangleWide = const IconDataDuotone( - 0xf2fc, - secondary: const IconDataDuotone(0x10f2fc), - ); - - /// Regular Recycle icon - /// - /// https://fontawesome.com/icons/recycle?style=regular - /// Waste, compost, garbage, reuse, trash - static const IconData recycle = const IconDataRegular(0xf1b8); - - /// Solid Recycle icon - /// - /// https://fontawesome.com/icons/recycle?style=solid - /// Waste, compost, garbage, reuse, trash - static const IconData solidRecycle = const IconDataSolid(0xf1b8); - - /// Light Recycle icon - /// - /// https://fontawesome.com/icons/light_recycle?style=light - /// Waste, compost, garbage, reuse, trash - static const IconData lightRecycle = const IconDataLight(0xf1b8); - - /// Duotone Recycle icon - /// - /// https://fontawesome.com/icons/duotone_recycle?style=duotone - /// Waste, compost, garbage, reuse, trash - static const IconDataDuotone duotoneRecycle = const IconDataDuotone( - 0xf1b8, - secondary: const IconDataDuotone(0x10f1b8), - ); - - /// Brands red river icon - /// - /// https://fontawesome.com/icons/red-river?style=brands - static const IconData redRiver = const IconDataBrands(0xf3e3); - - /// Brands reddit Logo icon - /// - /// https://fontawesome.com/icons/reddit?style=brands - static const IconData reddit = const IconDataBrands(0xf1a1); - - /// Brands reddit Alien icon - /// - /// https://fontawesome.com/icons/reddit-alien?style=brands - static const IconData redditAlien = const IconDataBrands(0xf281); - - /// Brands reddit Square icon - /// - /// https://fontawesome.com/icons/reddit-square?style=brands - static const IconData redditSquare = const IconDataBrands(0xf1a2); - - /// Brands Redhat icon - /// - /// https://fontawesome.com/icons/redhat?style=brands - /// linux, operating system, os - static const IconData redhat = const IconDataBrands(0xf7bc); - - /// Regular Redo icon - /// - /// https://fontawesome.com/icons/redo?style=regular - /// forward, refresh, reload, repeat - static const IconData redo = const IconDataRegular(0xf01e); - - /// Solid Redo icon - /// - /// https://fontawesome.com/icons/redo?style=solid - /// forward, refresh, reload, repeat - static const IconData solidRedo = const IconDataSolid(0xf01e); - - /// Light Redo icon - /// - /// https://fontawesome.com/icons/light_redo?style=light - /// forward, refresh, reload, repeat - static const IconData lightRedo = const IconDataLight(0xf01e); - - /// Duotone Redo icon - /// - /// https://fontawesome.com/icons/duotone_redo?style=duotone - /// forward, refresh, reload, repeat - static const IconDataDuotone duotoneRedo = const IconDataDuotone( - 0xf01e, - secondary: const IconDataDuotone(0x10f01e), - ); - - /// Regular Alternate Redo icon - /// - /// https://fontawesome.com/icons/redo-alt?style=regular - /// forward, refresh, reload, repeat - static const IconData redoAlt = const IconDataRegular(0xf2f9); - - /// Solid Alternate Redo icon - /// - /// https://fontawesome.com/icons/redo-alt?style=solid - /// forward, refresh, reload, repeat - static const IconData solidRedoAlt = const IconDataSolid(0xf2f9); - - /// Light Alternate Redo icon - /// - /// https://fontawesome.com/icons/light_redo-alt?style=light - /// forward, refresh, reload, repeat - static const IconData lightRedoAlt = const IconDataLight(0xf2f9); - - /// Duotone Alternate Redo icon - /// - /// https://fontawesome.com/icons/duotone_redo-alt?style=duotone - /// forward, refresh, reload, repeat - static const IconDataDuotone duotoneRedoAlt = const IconDataDuotone( - 0xf2f9, - secondary: const IconDataDuotone(0x10f2f9), - ); - - /// Regular Refrigerator icon - /// - /// https://fontawesome.com/icons/refrigerator?style=regular - /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData refrigerator = const IconDataRegular(0xe026); - - /// Solid Refrigerator icon - /// - /// https://fontawesome.com/icons/refrigerator?style=solid - /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData solidRefrigerator = const IconDataSolid(0xe026); - - /// Light Refrigerator icon - /// - /// https://fontawesome.com/icons/light_refrigerator?style=light - /// cold, cool, freezer, fridge, icebox, kitchen - static const IconData lightRefrigerator = const IconDataLight(0xe026); - - /// Duotone Refrigerator icon - /// - /// https://fontawesome.com/icons/duotone_refrigerator?style=duotone - /// cold, cool, freezer, fridge, icebox, kitchen - static const IconDataDuotone duotoneRefrigerator = const IconDataDuotone( - 0xe026, - secondary: const IconDataDuotone(0x10e026), - ); - - /// Regular Registered Trademark icon - /// - /// https://fontawesome.com/icons/registered?style=regular - /// copyright, mark, trademark - static const IconData registered = const IconDataRegular(0xf25d); - - /// Solid Registered Trademark icon - /// - /// https://fontawesome.com/icons/registered?style=solid - /// copyright, mark, trademark - static const IconData solidRegistered = const IconDataSolid(0xf25d); - - /// Light Registered Trademark icon - /// - /// https://fontawesome.com/icons/light_registered?style=light - /// copyright, mark, trademark - static const IconData lightRegistered = const IconDataLight(0xf25d); - - /// Duotone Registered Trademark icon - /// - /// https://fontawesome.com/icons/duotone_registered?style=duotone - /// copyright, mark, trademark - static const IconDataDuotone duotoneRegistered = const IconDataDuotone( - 0xf25d, - secondary: const IconDataDuotone(0x10f25d), - ); - - /// Regular Remove Format icon - /// - /// https://fontawesome.com/icons/remove-format?style=regular - /// cancel, font, format, remove, style, text - static const IconData removeFormat = const IconDataRegular(0xf87d); - - /// Solid Remove Format icon - /// - /// https://fontawesome.com/icons/remove-format?style=solid - /// cancel, font, format, remove, style, text - static const IconData solidRemoveFormat = const IconDataSolid(0xf87d); - - /// Light Remove Format icon - /// - /// https://fontawesome.com/icons/light_remove-format?style=light - /// cancel, font, format, remove, style, text - static const IconData lightRemoveFormat = const IconDataLight(0xf87d); - - /// Duotone Remove Format icon - /// - /// https://fontawesome.com/icons/duotone_remove-format?style=duotone - /// cancel, font, format, remove, style, text - static const IconDataDuotone duotoneRemoveFormat = const IconDataDuotone( - 0xf87d, - secondary: const IconDataDuotone(0x10f87d), - ); - - /// Brands Renren icon - /// - /// https://fontawesome.com/icons/renren?style=brands - static const IconData renren = const IconDataBrands(0xf18b); - - /// Regular Repeat icon - /// - /// https://fontawesome.com/icons/repeat?style=regular - /// flip, reload, rewind, switch - static const IconData repeat = const IconDataRegular(0xf363); - - /// Solid Repeat icon - /// - /// https://fontawesome.com/icons/repeat?style=solid - /// flip, reload, rewind, switch - static const IconData solidRepeat = const IconDataSolid(0xf363); - - /// Light Repeat icon - /// - /// https://fontawesome.com/icons/light_repeat?style=light - /// flip, reload, rewind, switch - static const IconData lightRepeat = const IconDataLight(0xf363); - - /// Duotone Repeat icon - /// - /// https://fontawesome.com/icons/duotone_repeat?style=duotone - /// flip, reload, rewind, switch - static const IconDataDuotone duotoneRepeat = const IconDataDuotone( - 0xf363, - secondary: const IconDataDuotone(0x10f363), - ); - - /// Regular Repeat 1 icon - /// - /// https://fontawesome.com/icons/repeat-1?style=regular - /// flip, reload, rewind, switch - static const IconData repeat1 = const IconDataRegular(0xf365); - - /// Solid Repeat 1 icon - /// - /// https://fontawesome.com/icons/repeat-1?style=solid - /// flip, reload, rewind, switch - static const IconData solidRepeat1 = const IconDataSolid(0xf365); - - /// Light Repeat 1 icon - /// - /// https://fontawesome.com/icons/light_repeat-1?style=light - /// flip, reload, rewind, switch - static const IconData lightRepeat1 = const IconDataLight(0xf365); - - /// Duotone Repeat 1 icon - /// - /// https://fontawesome.com/icons/duotone_repeat-1?style=duotone - /// flip, reload, rewind, switch - static const IconDataDuotone duotoneRepeat1 = const IconDataDuotone( - 0xf365, - secondary: const IconDataDuotone(0x10f365), - ); - - /// Regular Alternate Repeat 1 icon - /// - /// https://fontawesome.com/icons/repeat-1-alt?style=regular - /// flip, reload, rewind, switch - static const IconData repeat1Alt = const IconDataRegular(0xf366); - - /// Solid Alternate Repeat 1 icon - /// - /// https://fontawesome.com/icons/repeat-1-alt?style=solid - /// flip, reload, rewind, switch - static const IconData solidRepeat1Alt = const IconDataSolid(0xf366); - - /// Light Alternate Repeat 1 icon - /// - /// https://fontawesome.com/icons/light_repeat-1-alt?style=light - /// flip, reload, rewind, switch - static const IconData lightRepeat1Alt = const IconDataLight(0xf366); - - /// Duotone Alternate Repeat 1 icon - /// - /// https://fontawesome.com/icons/duotone_repeat-1-alt?style=duotone - /// flip, reload, rewind, switch - static const IconDataDuotone duotoneRepeat1Alt = const IconDataDuotone( - 0xf366, - secondary: const IconDataDuotone(0x10f366), - ); - - /// Regular Alternate Repeat icon - /// - /// https://fontawesome.com/icons/repeat-alt?style=regular - /// flip, reload, rewind, switch - static const IconData repeatAlt = const IconDataRegular(0xf364); - - /// Solid Alternate Repeat icon - /// - /// https://fontawesome.com/icons/repeat-alt?style=solid - /// flip, reload, rewind, switch - static const IconData solidRepeatAlt = const IconDataSolid(0xf364); - - /// Light Alternate Repeat icon - /// - /// https://fontawesome.com/icons/light_repeat-alt?style=light - /// flip, reload, rewind, switch - static const IconData lightRepeatAlt = const IconDataLight(0xf364); - - /// Duotone Alternate Repeat icon - /// - /// https://fontawesome.com/icons/duotone_repeat-alt?style=duotone - /// flip, reload, rewind, switch - static const IconDataDuotone duotoneRepeatAlt = const IconDataDuotone( - 0xf364, - secondary: const IconDataDuotone(0x10f364), - ); - - /// Regular Reply icon - /// - /// https://fontawesome.com/icons/reply?style=regular - /// mail, message, respond - static const IconData reply = const IconDataRegular(0xf3e5); - - /// Solid Reply icon - /// - /// https://fontawesome.com/icons/reply?style=solid - /// mail, message, respond - static const IconData solidReply = const IconDataSolid(0xf3e5); - - /// Light Reply icon - /// - /// https://fontawesome.com/icons/light_reply?style=light - /// mail, message, respond - static const IconData lightReply = const IconDataLight(0xf3e5); - - /// Duotone Reply icon - /// - /// https://fontawesome.com/icons/duotone_reply?style=duotone - /// mail, message, respond - static const IconDataDuotone duotoneReply = const IconDataDuotone( - 0xf3e5, - secondary: const IconDataDuotone(0x10f3e5), - ); - - /// Regular reply-all icon - /// - /// https://fontawesome.com/icons/reply-all?style=regular - /// mail, message, respond - static const IconData replyAll = const IconDataRegular(0xf122); - - /// Solid reply-all icon - /// - /// https://fontawesome.com/icons/reply-all?style=solid - /// mail, message, respond - static const IconData solidReplyAll = const IconDataSolid(0xf122); - - /// Light reply-all icon - /// - /// https://fontawesome.com/icons/light_reply-all?style=light - /// mail, message, respond - static const IconData lightReplyAll = const IconDataLight(0xf122); - - /// Duotone reply-all icon - /// - /// https://fontawesome.com/icons/duotone_reply-all?style=duotone - /// mail, message, respond - static const IconDataDuotone duotoneReplyAll = const IconDataDuotone( - 0xf122, - secondary: const IconDataDuotone(0x10f122), - ); - - /// Brands replyd icon - /// - /// https://fontawesome.com/icons/replyd?style=brands - static const IconData replyd = const IconDataBrands(0xf3e6); - - /// 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 = const IconDataRegular(0xf75e); - - /// 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 = const IconDataSolid(0xf75e); - - /// Light Republican icon - /// - /// https://fontawesome.com/icons/light_republican?style=light - /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconData lightRepublican = const IconDataLight(0xf75e); - - /// Duotone Republican icon - /// - /// https://fontawesome.com/icons/duotone_republican?style=duotone - /// american, conservative, election, elephant, politics, republican party, right, right-wing, usa - static const IconDataDuotone duotoneRepublican = const IconDataDuotone( - 0xf75e, - secondary: const IconDataDuotone(0x10f75e), - ); - - /// Brands Researchgate icon - /// - /// https://fontawesome.com/icons/researchgate?style=brands - static const IconData researchgate = const IconDataBrands(0xf4f8); - - /// Brands Resolving icon - /// - /// https://fontawesome.com/icons/resolving?style=brands - static const IconData resolving = const IconDataBrands(0xf3e7); - - /// Regular Restroom icon - /// - /// https://fontawesome.com/icons/restroom?style=regular - /// bathroom, john, loo, potty, washroom, waste, wc - static const IconData restroom = const IconDataRegular(0xf7bd); - - /// Solid Restroom icon - /// - /// https://fontawesome.com/icons/restroom?style=solid - /// bathroom, john, loo, potty, washroom, waste, wc - static const IconData solidRestroom = const IconDataSolid(0xf7bd); - - /// Light Restroom icon - /// - /// https://fontawesome.com/icons/light_restroom?style=light - /// bathroom, john, loo, potty, washroom, waste, wc - static const IconData lightRestroom = const IconDataLight(0xf7bd); - - /// Duotone Restroom icon - /// - /// https://fontawesome.com/icons/duotone_restroom?style=duotone - /// bathroom, john, loo, potty, washroom, waste, wc - static const IconDataDuotone duotoneRestroom = const IconDataDuotone( - 0xf7bd, - secondary: const IconDataDuotone(0x10f7bd), - ); - - /// Regular Retweet icon - /// - /// https://fontawesome.com/icons/retweet?style=regular - /// refresh, reload, share, swap - static const IconData retweet = const IconDataRegular(0xf079); - - /// Solid Retweet icon - /// - /// https://fontawesome.com/icons/retweet?style=solid - /// refresh, reload, share, swap - static const IconData solidRetweet = const IconDataSolid(0xf079); - - /// Light Retweet icon - /// - /// https://fontawesome.com/icons/light_retweet?style=light - /// refresh, reload, share, swap - static const IconData lightRetweet = const IconDataLight(0xf079); - - /// Duotone Retweet icon - /// - /// https://fontawesome.com/icons/duotone_retweet?style=duotone - /// refresh, reload, share, swap - static const IconDataDuotone duotoneRetweet = const IconDataDuotone( - 0xf079, - secondary: const IconDataDuotone(0x10f079), - ); - - /// Regular Alternate Retweet icon - /// - /// https://fontawesome.com/icons/retweet-alt?style=regular - /// refresh, reload, share, swap - static const IconData retweetAlt = const IconDataRegular(0xf361); - - /// Solid Alternate Retweet icon - /// - /// https://fontawesome.com/icons/retweet-alt?style=solid - /// refresh, reload, share, swap - static const IconData solidRetweetAlt = const IconDataSolid(0xf361); - - /// Light Alternate Retweet icon - /// - /// https://fontawesome.com/icons/light_retweet-alt?style=light - /// refresh, reload, share, swap - static const IconData lightRetweetAlt = const IconDataLight(0xf361); - - /// Duotone Alternate Retweet icon - /// - /// https://fontawesome.com/icons/duotone_retweet-alt?style=duotone - /// refresh, reload, share, swap - static const IconDataDuotone duotoneRetweetAlt = const IconDataDuotone( - 0xf361, - secondary: const IconDataDuotone(0x10f361), - ); - - /// Brands Rev.io icon - /// - /// https://fontawesome.com/icons/rev?style=brands - static const IconData rev = const IconDataBrands(0xf5b2); - - /// Regular Ribbon icon - /// - /// https://fontawesome.com/icons/ribbon?style=regular - /// badge, cause, lapel, pin - static const IconData ribbon = const IconDataRegular(0xf4d6); - - /// Solid Ribbon icon - /// - /// https://fontawesome.com/icons/ribbon?style=solid - /// badge, cause, lapel, pin - static const IconData solidRibbon = const IconDataSolid(0xf4d6); - - /// Light Ribbon icon - /// - /// https://fontawesome.com/icons/light_ribbon?style=light - /// badge, cause, lapel, pin - static const IconData lightRibbon = const IconDataLight(0xf4d6); - - /// Duotone Ribbon icon - /// - /// https://fontawesome.com/icons/duotone_ribbon?style=duotone - /// badge, cause, lapel, pin - static const IconDataDuotone duotoneRibbon = const IconDataDuotone( - 0xf4d6, - secondary: const IconDataDuotone(0x10f4d6), - ); - - /// Regular Ring icon - /// - /// https://fontawesome.com/icons/ring?style=regular - /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious - static const IconData ring = const IconDataRegular(0xf70b); - - /// Solid Ring icon - /// - /// https://fontawesome.com/icons/ring?style=solid - /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious - static const IconData solidRing = const IconDataSolid(0xf70b); - - /// Light Ring icon - /// - /// https://fontawesome.com/icons/light_ring?style=light - /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious - static const IconData lightRing = const IconDataLight(0xf70b); - - /// Duotone Ring icon - /// - /// https://fontawesome.com/icons/duotone_ring?style=duotone - /// Dungeons & Dragons, Gollum, band, binding, d&d, dnd, engagement, fantasy, gold, jewelry, marriage, precious - static const IconDataDuotone duotoneRing = const IconDataDuotone( - 0xf70b, - secondary: const IconDataDuotone(0x10f70b), - ); - - /// Regular Rings Wedding icon - /// - /// https://fontawesome.com/icons/rings-wedding?style=regular - /// diamond, engagement, gold, marriage, matrimony, platinum, proposal - static const IconData ringsWedding = const IconDataRegular(0xf81b); - - /// Solid Rings Wedding icon - /// - /// https://fontawesome.com/icons/rings-wedding?style=solid - /// diamond, engagement, gold, marriage, matrimony, platinum, proposal - static const IconData solidRingsWedding = const IconDataSolid(0xf81b); - - /// Light Rings Wedding icon - /// - /// https://fontawesome.com/icons/light_rings-wedding?style=light - /// diamond, engagement, gold, marriage, matrimony, platinum, proposal - static const IconData lightRingsWedding = const IconDataLight(0xf81b); - - /// Duotone Rings Wedding icon - /// - /// https://fontawesome.com/icons/duotone_rings-wedding?style=duotone - /// diamond, engagement, gold, marriage, matrimony, platinum, proposal - static const IconDataDuotone duotoneRingsWedding = const IconDataDuotone( - 0xf81b, - secondary: const IconDataDuotone(0x10f81b), - ); - - /// Regular road icon - /// - /// https://fontawesome.com/icons/road?style=regular - /// highway, map, pavement, route, street, travel - static const IconData road = const IconDataRegular(0xf018); - - /// Solid road icon - /// - /// https://fontawesome.com/icons/road?style=solid - /// highway, map, pavement, route, street, travel - static const IconData solidRoad = const IconDataSolid(0xf018); - - /// Light road icon - /// - /// https://fontawesome.com/icons/light_road?style=light - /// highway, map, pavement, route, street, travel - static const IconData lightRoad = const IconDataLight(0xf018); - - /// Duotone road icon - /// - /// https://fontawesome.com/icons/duotone_road?style=duotone - /// highway, map, pavement, route, street, travel - static const IconDataDuotone duotoneRoad = const IconDataDuotone( - 0xf018, - secondary: const IconDataDuotone(0x10f018), - ); - - /// Regular Robot icon - /// - /// https://fontawesome.com/icons/robot?style=regular - /// android, automate, computer, cyborg - static const IconData robot = const IconDataRegular(0xf544); - - /// Solid Robot icon - /// - /// https://fontawesome.com/icons/robot?style=solid - /// android, automate, computer, cyborg - static const IconData solidRobot = const IconDataSolid(0xf544); - - /// Light Robot icon - /// - /// https://fontawesome.com/icons/light_robot?style=light - /// android, automate, computer, cyborg - static const IconData lightRobot = const IconDataLight(0xf544); - - /// Duotone Robot icon - /// - /// https://fontawesome.com/icons/duotone_robot?style=duotone - /// android, automate, computer, cyborg - static const IconDataDuotone duotoneRobot = const IconDataDuotone( - 0xf544, - secondary: const IconDataDuotone(0x10f544), - ); - - /// Regular rocket icon - /// - /// https://fontawesome.com/icons/rocket?style=regular - /// aircraft, app, jet, launch, nasa, space - static const IconData rocket = const IconDataRegular(0xf135); - - /// Solid rocket icon - /// - /// https://fontawesome.com/icons/rocket?style=solid - /// aircraft, app, jet, launch, nasa, space - static const IconData solidRocket = const IconDataSolid(0xf135); - - /// Light rocket icon - /// - /// https://fontawesome.com/icons/light_rocket?style=light - /// aircraft, app, jet, launch, nasa, space - static const IconData lightRocket = const IconDataLight(0xf135); - - /// Duotone rocket icon - /// - /// https://fontawesome.com/icons/duotone_rocket?style=duotone - /// aircraft, app, jet, launch, nasa, space - static const IconDataDuotone duotoneRocket = const IconDataDuotone( - 0xf135, - secondary: const IconDataDuotone(0x10f135), - ); - - /// Regular Rocket Launch icon - /// - /// https://fontawesome.com/icons/rocket-launch?style=regular - /// aircraft, app, ignition, jet, launch, nasa, space, thrusters - static const IconData rocketLaunch = const IconDataRegular(0xe027); - - /// Solid Rocket Launch icon - /// - /// https://fontawesome.com/icons/rocket-launch?style=solid - /// aircraft, app, ignition, jet, launch, nasa, space, thrusters - static const IconData solidRocketLaunch = const IconDataSolid(0xe027); - - /// Light Rocket Launch icon - /// - /// https://fontawesome.com/icons/light_rocket-launch?style=light - /// aircraft, app, ignition, jet, launch, nasa, space, thrusters - static const IconData lightRocketLaunch = const IconDataLight(0xe027); - - /// Duotone Rocket Launch icon - /// - /// https://fontawesome.com/icons/duotone_rocket-launch?style=duotone - /// aircraft, app, ignition, jet, launch, nasa, space, thrusters - static const IconDataDuotone duotoneRocketLaunch = const IconDataDuotone( - 0xe027, - secondary: const IconDataDuotone(0x10e027), - ); - - /// Brands Rocket.Chat icon - /// - /// https://fontawesome.com/icons/rocketchat?style=brands - static const IconData rocketchat = const IconDataBrands(0xf3e8); - - /// Brands Rockrms icon - /// - /// https://fontawesome.com/icons/rockrms?style=brands - static const IconData rockrms = const IconDataBrands(0xf3e9); - - /// Regular Route icon - /// - /// https://fontawesome.com/icons/route?style=regular - /// directions, navigation, travel - static const IconData route = const IconDataRegular(0xf4d7); - - /// Solid Route icon - /// - /// https://fontawesome.com/icons/route?style=solid - /// directions, navigation, travel - static const IconData solidRoute = const IconDataSolid(0xf4d7); - - /// Light Route icon - /// - /// https://fontawesome.com/icons/light_route?style=light - /// directions, navigation, travel - static const IconData lightRoute = const IconDataLight(0xf4d7); - - /// Duotone Route icon - /// - /// https://fontawesome.com/icons/duotone_route?style=duotone - /// directions, navigation, travel - static const IconDataDuotone duotoneRoute = const IconDataDuotone( - 0xf4d7, - secondary: const IconDataDuotone(0x10f4d7), - ); - - /// Regular Route Highway icon - /// - /// https://fontawesome.com/icons/route-highway?style=regular - /// directions, highway, interstate, navigation, sign, travel - static const IconData routeHighway = const IconDataRegular(0xf61a); - - /// Solid Route Highway icon - /// - /// https://fontawesome.com/icons/route-highway?style=solid - /// directions, highway, interstate, navigation, sign, travel - static const IconData solidRouteHighway = const IconDataSolid(0xf61a); - - /// Light Route Highway icon - /// - /// https://fontawesome.com/icons/light_route-highway?style=light - /// directions, highway, interstate, navigation, sign, travel - static const IconData lightRouteHighway = const IconDataLight(0xf61a); - - /// Duotone Route Highway icon - /// - /// https://fontawesome.com/icons/duotone_route-highway?style=duotone - /// directions, highway, interstate, navigation, sign, travel - static const IconDataDuotone duotoneRouteHighway = const IconDataDuotone( - 0xf61a, - secondary: const IconDataDuotone(0x10f61a), - ); - - /// Regular Route Interstate icon - /// - /// https://fontawesome.com/icons/route-interstate?style=regular - /// directions, highway, interstate, navigation, sign, travel - static const IconData routeInterstate = const IconDataRegular(0xf61b); - - /// Solid Route Interstate icon - /// - /// https://fontawesome.com/icons/route-interstate?style=solid - /// directions, highway, interstate, navigation, sign, travel - static const IconData solidRouteInterstate = const IconDataSolid(0xf61b); - - /// Light Route Interstate icon - /// - /// https://fontawesome.com/icons/light_route-interstate?style=light - /// directions, highway, interstate, navigation, sign, travel - static const IconData lightRouteInterstate = const IconDataLight(0xf61b); - - /// Duotone Route Interstate icon - /// - /// https://fontawesome.com/icons/duotone_route-interstate?style=duotone - /// directions, highway, interstate, navigation, sign, travel - static const IconDataDuotone duotoneRouteInterstate = const IconDataDuotone( - 0xf61b, - secondary: const IconDataDuotone(0x10f61b), - ); - - /// Regular Router icon - /// - /// https://fontawesome.com/icons/router?style=regular - /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless - static const IconData router = const IconDataRegular(0xf8da); - - /// Solid Router icon - /// - /// https://fontawesome.com/icons/router?style=solid - /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless - static const IconData solidRouter = const IconDataSolid(0xf8da); - - /// Light Router icon - /// - /// https://fontawesome.com/icons/light_router?style=light - /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless - static const IconData lightRouter = const IconDataLight(0xf8da); - - /// Duotone Router icon - /// - /// https://fontawesome.com/icons/duotone_router?style=duotone - /// bandwidth, connection, dsl, ethernet, internet, modem, switch, wifi, wireless - static const IconDataDuotone duotoneRouter = const IconDataDuotone( - 0xf8da, - secondary: const IconDataDuotone(0x10f8da), - ); - - /// Regular rss icon - /// - /// https://fontawesome.com/icons/rss?style=regular - /// blog, feed, journal, news, writing - static const IconData rss = const IconDataRegular(0xf09e); - - /// Solid rss icon - /// - /// https://fontawesome.com/icons/rss?style=solid - /// blog, feed, journal, news, writing - static const IconData solidRss = const IconDataSolid(0xf09e); - - /// Light rss icon - /// - /// https://fontawesome.com/icons/light_rss?style=light - /// blog, feed, journal, news, writing - static const IconData lightRss = const IconDataLight(0xf09e); - - /// Duotone rss icon - /// - /// https://fontawesome.com/icons/duotone_rss?style=duotone - /// blog, feed, journal, news, writing - static const IconDataDuotone duotoneRss = const IconDataDuotone( - 0xf09e, - secondary: const IconDataDuotone(0x10f09e), - ); - - /// Regular RSS Square icon - /// - /// https://fontawesome.com/icons/rss-square?style=regular - /// blog, feed, journal, news, writing - static const IconData rssSquare = const IconDataRegular(0xf143); - - /// Solid RSS Square icon - /// - /// https://fontawesome.com/icons/rss-square?style=solid - /// blog, feed, journal, news, writing - static const IconData solidRssSquare = const IconDataSolid(0xf143); - - /// Light RSS Square icon - /// - /// https://fontawesome.com/icons/light_rss-square?style=light - /// blog, feed, journal, news, writing - static const IconData lightRssSquare = const IconDataLight(0xf143); - - /// Duotone RSS Square icon - /// - /// https://fontawesome.com/icons/duotone_rss-square?style=duotone - /// blog, feed, journal, news, writing - static const IconDataDuotone duotoneRssSquare = const IconDataDuotone( - 0xf143, - secondary: const IconDataDuotone(0x10f143), - ); - - /// Regular Ruble Sign icon - /// - /// https://fontawesome.com/icons/ruble-sign?style=regular - /// currency, money, rub - static const IconData rubleSign = const IconDataRegular(0xf158); - - /// Solid Ruble Sign icon - /// - /// https://fontawesome.com/icons/ruble-sign?style=solid - /// currency, money, rub - static const IconData solidRubleSign = const IconDataSolid(0xf158); - - /// Light Ruble Sign icon - /// - /// https://fontawesome.com/icons/light_ruble-sign?style=light - /// currency, money, rub - static const IconData lightRubleSign = const IconDataLight(0xf158); - - /// Duotone Ruble Sign icon - /// - /// https://fontawesome.com/icons/duotone_ruble-sign?style=duotone - /// currency, money, rub - static const IconDataDuotone duotoneRubleSign = const IconDataDuotone( - 0xf158, - secondary: const IconDataDuotone(0x10f158), - ); - - /// Regular Ruler icon - /// - /// https://fontawesome.com/icons/ruler?style=regular - /// design, draft, length, measure, planning - static const IconData ruler = const IconDataRegular(0xf545); - - /// Solid Ruler icon - /// - /// https://fontawesome.com/icons/ruler?style=solid - /// design, draft, length, measure, planning - static const IconData solidRuler = const IconDataSolid(0xf545); - - /// Light Ruler icon - /// - /// https://fontawesome.com/icons/light_ruler?style=light - /// design, draft, length, measure, planning - static const IconData lightRuler = const IconDataLight(0xf545); - - /// Duotone Ruler icon - /// - /// https://fontawesome.com/icons/duotone_ruler?style=duotone - /// design, draft, length, measure, planning - static const IconDataDuotone duotoneRuler = const IconDataDuotone( - 0xf545, - secondary: const IconDataDuotone(0x10f545), - ); - - /// Regular Ruler Combined icon - /// - /// https://fontawesome.com/icons/ruler-combined?style=regular - /// design, draft, length, measure, planning - static const IconData rulerCombined = const IconDataRegular(0xf546); - - /// Solid Ruler Combined icon - /// - /// https://fontawesome.com/icons/ruler-combined?style=solid - /// design, draft, length, measure, planning - static const IconData solidRulerCombined = const IconDataSolid(0xf546); - - /// Light Ruler Combined icon - /// - /// https://fontawesome.com/icons/light_ruler-combined?style=light - /// design, draft, length, measure, planning - static const IconData lightRulerCombined = const IconDataLight(0xf546); - - /// Duotone Ruler Combined icon - /// - /// https://fontawesome.com/icons/duotone_ruler-combined?style=duotone - /// design, draft, length, measure, planning - static const IconDataDuotone duotoneRulerCombined = const IconDataDuotone( - 0xf546, - secondary: const IconDataDuotone(0x10f546), - ); - - /// Regular Ruler Horizontal icon - /// - /// https://fontawesome.com/icons/ruler-horizontal?style=regular - /// design, draft, length, measure, planning - static const IconData rulerHorizontal = const IconDataRegular(0xf547); - - /// Solid Ruler Horizontal icon - /// - /// https://fontawesome.com/icons/ruler-horizontal?style=solid - /// design, draft, length, measure, planning - static const IconData solidRulerHorizontal = const IconDataSolid(0xf547); - - /// Light Ruler Horizontal icon - /// - /// https://fontawesome.com/icons/light_ruler-horizontal?style=light - /// design, draft, length, measure, planning - static const IconData lightRulerHorizontal = const IconDataLight(0xf547); - - /// Duotone Ruler Horizontal icon - /// - /// https://fontawesome.com/icons/duotone_ruler-horizontal?style=duotone - /// design, draft, length, measure, planning - static const IconDataDuotone duotoneRulerHorizontal = const IconDataDuotone( - 0xf547, - secondary: const IconDataDuotone(0x10f547), - ); - - /// Regular Ruler Triangle icon - /// - /// https://fontawesome.com/icons/ruler-triangle?style=regular - /// design, draft, length, measure, planning - static const IconData rulerTriangle = const IconDataRegular(0xf61c); - - /// Solid Ruler Triangle icon - /// - /// https://fontawesome.com/icons/ruler-triangle?style=solid - /// design, draft, length, measure, planning - static const IconData solidRulerTriangle = const IconDataSolid(0xf61c); - - /// Light Ruler Triangle icon - /// - /// https://fontawesome.com/icons/light_ruler-triangle?style=light - /// design, draft, length, measure, planning - static const IconData lightRulerTriangle = const IconDataLight(0xf61c); - - /// Duotone Ruler Triangle icon - /// - /// https://fontawesome.com/icons/duotone_ruler-triangle?style=duotone - /// design, draft, length, measure, planning - static const IconDataDuotone duotoneRulerTriangle = const IconDataDuotone( - 0xf61c, - secondary: const IconDataDuotone(0x10f61c), - ); - - /// Regular Ruler Vertical icon - /// - /// https://fontawesome.com/icons/ruler-vertical?style=regular - /// design, draft, length, measure, planning - static const IconData rulerVertical = const IconDataRegular(0xf548); - - /// Solid Ruler Vertical icon - /// - /// https://fontawesome.com/icons/ruler-vertical?style=solid - /// design, draft, length, measure, planning - static const IconData solidRulerVertical = const IconDataSolid(0xf548); - - /// Light Ruler Vertical icon - /// - /// https://fontawesome.com/icons/light_ruler-vertical?style=light - /// design, draft, length, measure, planning - static const IconData lightRulerVertical = const IconDataLight(0xf548); - - /// Duotone Ruler Vertical icon - /// - /// https://fontawesome.com/icons/duotone_ruler-vertical?style=duotone - /// design, draft, length, measure, planning - static const IconDataDuotone duotoneRulerVertical = const IconDataDuotone( - 0xf548, - secondary: const IconDataDuotone(0x10f548), - ); - - /// Regular Running icon - /// - /// https://fontawesome.com/icons/running?style=regular - /// exercise, health, jog, person, run, sport, sprint - static const IconData running = const IconDataRegular(0xf70c); - - /// Solid Running icon - /// - /// https://fontawesome.com/icons/running?style=solid - /// exercise, health, jog, person, run, sport, sprint - static const IconData solidRunning = const IconDataSolid(0xf70c); - - /// Light Running icon - /// - /// https://fontawesome.com/icons/light_running?style=light - /// exercise, health, jog, person, run, sport, sprint - static const IconData lightRunning = const IconDataLight(0xf70c); - - /// Duotone Running icon - /// - /// https://fontawesome.com/icons/duotone_running?style=duotone - /// exercise, health, jog, person, run, sport, sprint - static const IconDataDuotone duotoneRunning = const IconDataDuotone( - 0xf70c, - secondary: const IconDataDuotone(0x10f70c), - ); - - /// Regular Indian Rupee Sign icon - /// - /// https://fontawesome.com/icons/rupee-sign?style=regular - /// currency, indian, inr, money - static const IconData rupeeSign = const IconDataRegular(0xf156); - - /// Solid Indian Rupee Sign icon - /// - /// https://fontawesome.com/icons/rupee-sign?style=solid - /// currency, indian, inr, money - static const IconData solidRupeeSign = const IconDataSolid(0xf156); - - /// Light Indian Rupee Sign icon - /// - /// https://fontawesome.com/icons/light_rupee-sign?style=light - /// currency, indian, inr, money - static const IconData lightRupeeSign = const IconDataLight(0xf156); - - /// Duotone Indian Rupee Sign icon - /// - /// https://fontawesome.com/icons/duotone_rupee-sign?style=duotone - /// currency, indian, inr, money - static const IconDataDuotone duotoneRupeeSign = const IconDataDuotone( - 0xf156, - secondary: const IconDataDuotone(0x10f156), - ); - - /// Brands Rust icon - /// - /// https://fontawesome.com/icons/rust?style=brands - static const IconData rust = const IconDataBrands(0xe07a); - - /// Regular R.V. icon - /// - /// https://fontawesome.com/icons/rv?style=regular - /// camping, cousin eddie, recreational, travel, vehicle - static const IconData rv = const IconDataRegular(0xf7be); - - /// Solid R.V. icon - /// - /// https://fontawesome.com/icons/rv?style=solid - /// camping, cousin eddie, recreational, travel, vehicle - static const IconData solidRv = const IconDataSolid(0xf7be); - - /// Light R.V. icon - /// - /// https://fontawesome.com/icons/light_rv?style=light - /// camping, cousin eddie, recreational, travel, vehicle - static const IconData lightRv = const IconDataLight(0xf7be); - - /// Duotone R.V. icon - /// - /// https://fontawesome.com/icons/duotone_rv?style=duotone - /// camping, cousin eddie, recreational, travel, vehicle - static const IconDataDuotone duotoneRv = const IconDataDuotone( - 0xf7be, - secondary: const IconDataDuotone(0x10f7be), - ); - - /// Regular Sack icon - /// - /// https://fontawesome.com/icons/sack?style=regular - /// bag, burlap, money, santa - static const IconData sack = const IconDataRegular(0xf81c); - - /// Solid Sack icon - /// - /// https://fontawesome.com/icons/sack?style=solid - /// bag, burlap, money, santa - static const IconData solidSack = const IconDataSolid(0xf81c); - - /// Light Sack icon - /// - /// https://fontawesome.com/icons/light_sack?style=light - /// bag, burlap, money, santa - static const IconData lightSack = const IconDataLight(0xf81c); - - /// Duotone Sack icon - /// - /// https://fontawesome.com/icons/duotone_sack?style=duotone - /// bag, burlap, money, santa - static const IconDataDuotone duotoneSack = const IconDataDuotone( - 0xf81c, - secondary: const IconDataDuotone(0x10f81c), - ); - - /// Regular Sack of Money icon - /// - /// https://fontawesome.com/icons/sack-dollar?style=regular - /// bag, burlap, cash, dollar, money, robber, santa, usd - static const IconData sackDollar = const IconDataRegular(0xf81d); - - /// Solid Sack of Money icon - /// - /// https://fontawesome.com/icons/sack-dollar?style=solid - /// bag, burlap, cash, dollar, money, robber, santa, usd - static const IconData solidSackDollar = const IconDataSolid(0xf81d); - - /// Light Sack of Money icon - /// - /// https://fontawesome.com/icons/light_sack-dollar?style=light - /// bag, burlap, cash, dollar, money, robber, santa, usd - static const IconData lightSackDollar = const IconDataLight(0xf81d); - - /// Duotone Sack of Money icon - /// - /// https://fontawesome.com/icons/duotone_sack-dollar?style=duotone - /// bag, burlap, cash, dollar, money, robber, santa, usd - static const IconDataDuotone duotoneSackDollar = const IconDataDuotone( - 0xf81d, - secondary: const IconDataDuotone(0x10f81d), - ); - - /// Regular Crying Face icon - /// - /// https://fontawesome.com/icons/sad-cry?style=regular - /// emoticon, face, tear, tears - static const IconData sadCry = const IconDataRegular(0xf5b3); - - /// Solid Crying Face icon - /// - /// https://fontawesome.com/icons/sad-cry?style=solid - /// emoticon, face, tear, tears - static const IconData solidSadCry = const IconDataSolid(0xf5b3); - - /// Light Crying Face icon - /// - /// https://fontawesome.com/icons/light_sad-cry?style=light - /// emoticon, face, tear, tears - static const IconData lightSadCry = const IconDataLight(0xf5b3); - - /// Duotone Crying Face icon - /// - /// https://fontawesome.com/icons/duotone_sad-cry?style=duotone - /// emoticon, face, tear, tears - static const IconDataDuotone duotoneSadCry = const IconDataDuotone( - 0xf5b3, - secondary: const IconDataDuotone(0x10f5b3), - ); - - /// Regular Loudly Crying Face icon - /// - /// https://fontawesome.com/icons/sad-tear?style=regular - /// emoticon, face, tear, tears - static const IconData sadTear = const IconDataRegular(0xf5b4); - - /// Solid Loudly Crying Face icon - /// - /// https://fontawesome.com/icons/sad-tear?style=solid - /// emoticon, face, tear, tears - static const IconData solidSadTear = const IconDataSolid(0xf5b4); - - /// Light Loudly Crying Face icon - /// - /// https://fontawesome.com/icons/light_sad-tear?style=light - /// emoticon, face, tear, tears - static const IconData lightSadTear = const IconDataLight(0xf5b4); - - /// Duotone Loudly Crying Face icon - /// - /// https://fontawesome.com/icons/duotone_sad-tear?style=duotone - /// emoticon, face, tear, tears - static const IconDataDuotone duotoneSadTear = const IconDataDuotone( - 0xf5b4, - secondary: const IconDataDuotone(0x10f5b4), - ); - - /// Brands Safari icon - /// - /// https://fontawesome.com/icons/safari?style=brands - /// browser - static const IconData safari = const IconDataBrands(0xf267); - - /// Regular Salad icon - /// - /// https://fontawesome.com/icons/salad?style=regular - /// bowl, health, lettuce, spinach, vegan, vegetable, vegetarian - static const IconData salad = const IconDataRegular(0xf81e); - - /// Solid Salad icon - /// - /// https://fontawesome.com/icons/salad?style=solid - /// bowl, health, lettuce, spinach, vegan, vegetable, vegetarian - static const IconData solidSalad = const IconDataSolid(0xf81e); - - /// Light Salad icon - /// - /// https://fontawesome.com/icons/light_salad?style=light - /// bowl, health, lettuce, spinach, vegan, vegetable, vegetarian - static const IconData lightSalad = const IconDataLight(0xf81e); - - /// Duotone Salad icon - /// - /// https://fontawesome.com/icons/duotone_salad?style=duotone - /// bowl, health, lettuce, spinach, vegan, vegetable, vegetarian - static const IconDataDuotone duotoneSalad = const IconDataDuotone( - 0xf81e, - secondary: const IconDataDuotone(0x10f81e), - ); - - /// Brands Salesforce icon - /// - /// https://fontawesome.com/icons/salesforce?style=brands - static const IconData salesforce = const IconDataBrands(0xf83b); - - /// Regular Sandwich icon - /// - /// https://fontawesome.com/icons/sandwich?style=regular - /// bread, deli, grilled cheese, toast - static const IconData sandwich = const IconDataRegular(0xf81f); - - /// Solid Sandwich icon - /// - /// https://fontawesome.com/icons/sandwich?style=solid - /// bread, deli, grilled cheese, toast - static const IconData solidSandwich = const IconDataSolid(0xf81f); - - /// Light Sandwich icon - /// - /// https://fontawesome.com/icons/light_sandwich?style=light - /// bread, deli, grilled cheese, toast - static const IconData lightSandwich = const IconDataLight(0xf81f); - - /// Duotone Sandwich icon - /// - /// https://fontawesome.com/icons/duotone_sandwich?style=duotone - /// bread, deli, grilled cheese, toast - static const IconDataDuotone duotoneSandwich = const IconDataDuotone( - 0xf81f, - secondary: const IconDataDuotone(0x10f81f), - ); - - /// Brands Sass icon - /// - /// https://fontawesome.com/icons/sass?style=brands - static const IconData sass = const IconDataBrands(0xf41e); - - /// Regular Satellite icon - /// - /// https://fontawesome.com/icons/satellite?style=regular - /// communications, hardware, orbit, space - static const IconData satellite = const IconDataRegular(0xf7bf); - - /// Solid Satellite icon - /// - /// https://fontawesome.com/icons/satellite?style=solid - /// communications, hardware, orbit, space - static const IconData solidSatellite = const IconDataSolid(0xf7bf); - - /// Light Satellite icon - /// - /// https://fontawesome.com/icons/light_satellite?style=light - /// communications, hardware, orbit, space - static const IconData lightSatellite = const IconDataLight(0xf7bf); - - /// Duotone Satellite icon - /// - /// https://fontawesome.com/icons/duotone_satellite?style=duotone - /// communications, hardware, orbit, space - static const IconDataDuotone duotoneSatellite = const IconDataDuotone( - 0xf7bf, - secondary: const IconDataDuotone(0x10f7bf), - ); - - /// Regular Satellite Dish icon - /// - /// https://fontawesome.com/icons/satellite-dish?style=regular - /// SETI, communications, hardware, receiver, saucer, signal, space - static const IconData satelliteDish = const IconDataRegular(0xf7c0); - - /// Solid Satellite Dish icon - /// - /// https://fontawesome.com/icons/satellite-dish?style=solid - /// SETI, communications, hardware, receiver, saucer, signal, space - static const IconData solidSatelliteDish = const IconDataSolid(0xf7c0); - - /// Light Satellite Dish icon - /// - /// https://fontawesome.com/icons/light_satellite-dish?style=light - /// SETI, communications, hardware, receiver, saucer, signal, space - static const IconData lightSatelliteDish = const IconDataLight(0xf7c0); - - /// Duotone Satellite Dish icon - /// - /// https://fontawesome.com/icons/duotone_satellite-dish?style=duotone - /// SETI, communications, hardware, receiver, saucer, signal, space - static const IconDataDuotone duotoneSatelliteDish = const IconDataDuotone( - 0xf7c0, - secondary: const IconDataDuotone(0x10f7c0), - ); - - /// 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 = const IconDataRegular(0xf820); - - /// 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 = const IconDataSolid(0xf820); - - /// Light Sausage icon - /// - /// https://fontawesome.com/icons/light_sausage?style=light - /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconData lightSausage = const IconDataLight(0xf820); - - /// Duotone Sausage icon - /// - /// https://fontawesome.com/icons/duotone_sausage?style=duotone - /// bratwurst, breakfast, chorizo, frankfurt, frankfurter, hot dog, hotdog, kielbasa, kosher, pepperoni, polish, vienna, weiner - static const IconDataDuotone duotoneSausage = const IconDataDuotone( - 0xf820, - secondary: const IconDataDuotone(0x10f820), - ); - - /// Regular Save icon - /// - /// https://fontawesome.com/icons/save?style=regular - /// disk, download, floppy, floppy-o - static const IconData save = const IconDataRegular(0xf0c7); - - /// Solid Save icon - /// - /// https://fontawesome.com/icons/save?style=solid - /// disk, download, floppy, floppy-o - static const IconData solidSave = const IconDataSolid(0xf0c7); - - /// Light Save icon - /// - /// https://fontawesome.com/icons/light_save?style=light - /// disk, download, floppy, floppy-o - static const IconData lightSave = const IconDataLight(0xf0c7); - - /// Duotone Save icon - /// - /// https://fontawesome.com/icons/duotone_save?style=duotone - /// disk, download, floppy, floppy-o - static const IconDataDuotone duotoneSave = const IconDataDuotone( - 0xf0c7, - secondary: const IconDataDuotone(0x10f0c7), - ); - - /// Regular Hot Saxophone icon - /// - /// https://fontawesome.com/icons/sax-hot?style=regular - /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData saxHot = const IconDataRegular(0xf8db); - - /// Solid Hot Saxophone icon - /// - /// https://fontawesome.com/icons/sax-hot?style=solid - /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData solidSaxHot = const IconDataSolid(0xf8db); - - /// Light Hot Saxophone icon - /// - /// https://fontawesome.com/icons/light_sax-hot?style=light - /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconData lightSaxHot = const IconDataLight(0xf8db); - - /// Duotone Hot Saxophone icon - /// - /// https://fontawesome.com/icons/duotone_sax-hot?style=duotone - /// brass, fire, flame, instrument, jazz, music, saxophone, woodwind - static const IconDataDuotone duotoneSaxHot = const IconDataDuotone( - 0xf8db, - secondary: const IconDataDuotone(0x10f8db), - ); - - /// Regular Saxophone icon - /// - /// https://fontawesome.com/icons/saxophone?style=regular - /// brass, instrument, jazz, music, woodwind - static const IconData saxophone = const IconDataRegular(0xf8dc); - - /// Solid Saxophone icon - /// - /// https://fontawesome.com/icons/saxophone?style=solid - /// brass, instrument, jazz, music, woodwind - static const IconData solidSaxophone = const IconDataSolid(0xf8dc); - - /// Light Saxophone icon - /// - /// https://fontawesome.com/icons/light_saxophone?style=light - /// brass, instrument, jazz, music, woodwind - static const IconData lightSaxophone = const IconDataLight(0xf8dc); - - /// Duotone Saxophone icon - /// - /// https://fontawesome.com/icons/duotone_saxophone?style=duotone - /// brass, instrument, jazz, music, woodwind - static const IconDataDuotone duotoneSaxophone = const IconDataDuotone( - 0xf8dc, - secondary: const IconDataDuotone(0x10f8dc), - ); - - /// Regular Scalpel icon - /// - /// https://fontawesome.com/icons/scalpel?style=regular - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData scalpel = const IconDataRegular(0xf61d); - - /// Solid Scalpel icon - /// - /// https://fontawesome.com/icons/scalpel?style=solid - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData solidScalpel = const IconDataSolid(0xf61d); - - /// Light Scalpel icon - /// - /// https://fontawesome.com/icons/light_scalpel?style=light - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData lightScalpel = const IconDataLight(0xf61d); - - /// Duotone Scalpel icon - /// - /// https://fontawesome.com/icons/duotone_scalpel?style=duotone - /// blade, cut, doctor, knife, surgeon, surgery - static const IconDataDuotone duotoneScalpel = const IconDataDuotone( - 0xf61d, - secondary: const IconDataDuotone(0x10f61d), - ); - - /// Regular Scalpel Path icon - /// - /// https://fontawesome.com/icons/scalpel-path?style=regular - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData scalpelPath = const IconDataRegular(0xf61e); - - /// Solid Scalpel Path icon - /// - /// https://fontawesome.com/icons/scalpel-path?style=solid - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData solidScalpelPath = const IconDataSolid(0xf61e); - - /// Light Scalpel Path icon - /// - /// https://fontawesome.com/icons/light_scalpel-path?style=light - /// blade, cut, doctor, knife, surgeon, surgery - static const IconData lightScalpelPath = const IconDataLight(0xf61e); - - /// Duotone Scalpel Path icon - /// - /// https://fontawesome.com/icons/duotone_scalpel-path?style=duotone - /// blade, cut, doctor, knife, surgeon, surgery - static const IconDataDuotone duotoneScalpelPath = const IconDataDuotone( - 0xf61e, - secondary: const IconDataDuotone(0x10f61e), - ); - - /// Regular Scanner icon - /// - /// https://fontawesome.com/icons/scanner?style=regular - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scanner = const IconDataRegular(0xf488); - - /// Solid Scanner icon - /// - /// https://fontawesome.com/icons/scanner?style=solid - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScanner = const IconDataSolid(0xf488); - - /// Light Scanner icon - /// - /// https://fontawesome.com/icons/light_scanner?style=light - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScanner = const IconDataLight(0xf488); - - /// Duotone Scanner icon - /// - /// https://fontawesome.com/icons/duotone_scanner?style=duotone - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconDataDuotone duotoneScanner = const IconDataDuotone( - 0xf488, - secondary: const IconDataDuotone(0x10f488), - ); - - /// Regular Image Scanner icon - /// - /// https://fontawesome.com/icons/scanner-image?style=regular - /// copy, device, digitize, image, import - static const IconData scannerImage = const IconDataRegular(0xf8f3); - - /// Solid Image Scanner icon - /// - /// https://fontawesome.com/icons/scanner-image?style=solid - /// copy, device, digitize, image, import - static const IconData solidScannerImage = const IconDataSolid(0xf8f3); - - /// Light Image Scanner icon - /// - /// https://fontawesome.com/icons/light_scanner-image?style=light - /// copy, device, digitize, image, import - static const IconData lightScannerImage = const IconDataLight(0xf8f3); - - /// Duotone Image Scanner icon - /// - /// https://fontawesome.com/icons/duotone_scanner-image?style=duotone - /// copy, device, digitize, image, import - static const IconDataDuotone duotoneScannerImage = const IconDataDuotone( - 0xf8f3, - secondary: const IconDataDuotone(0x10f8f3), - ); - - /// Regular Scanner Keyboard icon - /// - /// https://fontawesome.com/icons/scanner-keyboard?style=regular - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scannerKeyboard = const IconDataRegular(0xf489); - - /// Solid Scanner Keyboard icon - /// - /// https://fontawesome.com/icons/scanner-keyboard?style=solid - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScannerKeyboard = const IconDataSolid(0xf489); - - /// Light Scanner Keyboard icon - /// - /// https://fontawesome.com/icons/light_scanner-keyboard?style=light - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScannerKeyboard = const IconDataLight(0xf489); - - /// Duotone Scanner Keyboard icon - /// - /// https://fontawesome.com/icons/duotone_scanner-keyboard?style=duotone - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconDataDuotone duotoneScannerKeyboard = const IconDataDuotone( - 0xf489, - secondary: const IconDataDuotone(0x10f489), - ); - - /// Regular Scanner Touchscreen icon - /// - /// https://fontawesome.com/icons/scanner-touchscreen?style=regular - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData scannerTouchscreen = const IconDataRegular(0xf48a); - - /// Solid Scanner Touchscreen icon - /// - /// https://fontawesome.com/icons/scanner-touchscreen?style=solid - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData solidScannerTouchscreen = const IconDataSolid(0xf48a); - - /// Light Scanner Touchscreen icon - /// - /// https://fontawesome.com/icons/light_scanner-touchscreen?style=light - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconData lightScannerTouchscreen = const IconDataLight(0xf48a); - - /// Duotone Scanner Touchscreen icon - /// - /// https://fontawesome.com/icons/duotone_scanner-touchscreen?style=duotone - /// barcode, checkout, gun, inventory, price, upc, warehouse - static const IconDataDuotone duotoneScannerTouchscreen = - const IconDataDuotone( - 0xf48a, - secondary: const IconDataDuotone(0x10f48a), - ); - - /// Regular Scarecrow icon - /// - /// https://fontawesome.com/icons/scarecrow?style=regular - /// bird, crow, farm, field, halloween, strawman - static const IconData scarecrow = const IconDataRegular(0xf70d); - - /// Solid Scarecrow icon - /// - /// https://fontawesome.com/icons/scarecrow?style=solid - /// bird, crow, farm, field, halloween, strawman - static const IconData solidScarecrow = const IconDataSolid(0xf70d); - - /// Light Scarecrow icon - /// - /// https://fontawesome.com/icons/light_scarecrow?style=light - /// bird, crow, farm, field, halloween, strawman - static const IconData lightScarecrow = const IconDataLight(0xf70d); - - /// Duotone Scarecrow icon - /// - /// https://fontawesome.com/icons/duotone_scarecrow?style=duotone - /// bird, crow, farm, field, halloween, strawman - static const IconDataDuotone duotoneScarecrow = const IconDataDuotone( - 0xf70d, - secondary: const IconDataDuotone(0x10f70d), - ); - - /// Regular Scarf icon - /// - /// https://fontawesome.com/icons/scarf?style=regular - /// clothing, knitted, neck, seasonal, warmth - static const IconData scarf = const IconDataRegular(0xf7c1); - - /// Solid Scarf icon - /// - /// https://fontawesome.com/icons/scarf?style=solid - /// clothing, knitted, neck, seasonal, warmth - static const IconData solidScarf = const IconDataSolid(0xf7c1); - - /// Light Scarf icon - /// - /// https://fontawesome.com/icons/light_scarf?style=light - /// clothing, knitted, neck, seasonal, warmth - static const IconData lightScarf = const IconDataLight(0xf7c1); - - /// Duotone Scarf icon - /// - /// https://fontawesome.com/icons/duotone_scarf?style=duotone - /// clothing, knitted, neck, seasonal, warmth - static const IconDataDuotone duotoneScarf = const IconDataDuotone( - 0xf7c1, - secondary: const IconDataDuotone(0x10f7c1), - ); - - /// Brands SCHLIX icon - /// - /// https://fontawesome.com/icons/schlix?style=brands - static const IconData schlix = const IconDataBrands(0xf3ea); - - /// Regular School icon - /// - /// https://fontawesome.com/icons/school?style=regular - /// building, education, learn, student, teacher - static const IconData school = const IconDataRegular(0xf549); - - /// Solid School icon - /// - /// https://fontawesome.com/icons/school?style=solid - /// building, education, learn, student, teacher - static const IconData solidSchool = const IconDataSolid(0xf549); - - /// Light School icon - /// - /// https://fontawesome.com/icons/light_school?style=light - /// building, education, learn, student, teacher - static const IconData lightSchool = const IconDataLight(0xf549); - - /// Duotone School icon - /// - /// https://fontawesome.com/icons/duotone_school?style=duotone - /// building, education, learn, student, teacher - static const IconDataDuotone duotoneSchool = const IconDataDuotone( - 0xf549, - secondary: const IconDataDuotone(0x10f549), - ); - - /// Regular Screwdriver icon - /// - /// https://fontawesome.com/icons/screwdriver?style=regular - /// admin, fix, mechanic, repair, settings, tool - static const IconData screwdriver = const IconDataRegular(0xf54a); - - /// Solid Screwdriver icon - /// - /// https://fontawesome.com/icons/screwdriver?style=solid - /// admin, fix, mechanic, repair, settings, tool - static const IconData solidScrewdriver = const IconDataSolid(0xf54a); - - /// Light Screwdriver icon - /// - /// https://fontawesome.com/icons/light_screwdriver?style=light - /// admin, fix, mechanic, repair, settings, tool - static const IconData lightScrewdriver = const IconDataLight(0xf54a); - - /// Duotone Screwdriver icon - /// - /// https://fontawesome.com/icons/duotone_screwdriver?style=duotone - /// admin, fix, mechanic, repair, settings, tool - static const IconDataDuotone duotoneScrewdriver = const IconDataDuotone( - 0xf54a, - secondary: const IconDataDuotone(0x10f54a), - ); - - /// Brands Scribd icon - /// - /// https://fontawesome.com/icons/scribd?style=brands - static const IconData scribd = const IconDataBrands(0xf28a); - - /// Regular Scroll icon - /// - /// https://fontawesome.com/icons/scroll?style=regular - /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, script - static const IconData scroll = const IconDataRegular(0xf70e); - - /// Solid Scroll icon - /// - /// https://fontawesome.com/icons/scroll?style=solid - /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, script - static const IconData solidScroll = const IconDataSolid(0xf70e); - - /// Light Scroll icon - /// - /// https://fontawesome.com/icons/light_scroll?style=light - /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, script - static const IconData lightScroll = const IconDataLight(0xf70e); - - /// Duotone Scroll icon - /// - /// https://fontawesome.com/icons/duotone_scroll?style=duotone - /// Dungeons & Dragons, announcement, d&d, dnd, fantasy, paper, script - static const IconDataDuotone duotoneScroll = const IconDataDuotone( - 0xf70e, - secondary: const IconDataDuotone(0x10f70e), - ); - - /// Regular Scroll Old icon - /// - /// https://fontawesome.com/icons/scroll-old?style=regular - /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, script, worn - static const IconData scrollOld = const IconDataRegular(0xf70f); - - /// Solid Scroll Old icon - /// - /// https://fontawesome.com/icons/scroll-old?style=solid - /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, script, worn - static const IconData solidScrollOld = const IconDataSolid(0xf70f); - - /// Light Scroll Old icon - /// - /// https://fontawesome.com/icons/light_scroll-old?style=light - /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, script, worn - static const IconData lightScrollOld = const IconDataLight(0xf70f); - - /// Duotone Scroll Old icon - /// - /// https://fontawesome.com/icons/duotone_scroll-old?style=duotone - /// Dungeons & Dragons, ancient, announcement, d&d, dnd, fantasy, paper, relic, script, worn - static const IconDataDuotone duotoneScrollOld = const IconDataDuotone( - 0xf70f, - secondary: const IconDataDuotone(0x10f70f), - ); - - /// Regular Scrubber icon - /// - /// https://fontawesome.com/icons/scrubber?style=regular - /// circle, dot, toggle - static const IconData scrubber = const IconDataRegular(0xf2f8); - - /// Solid Scrubber icon - /// - /// https://fontawesome.com/icons/scrubber?style=solid - /// circle, dot, toggle - static const IconData solidScrubber = const IconDataSolid(0xf2f8); - - /// Light Scrubber icon - /// - /// https://fontawesome.com/icons/light_scrubber?style=light - /// circle, dot, toggle - static const IconData lightScrubber = const IconDataLight(0xf2f8); - - /// Duotone Scrubber icon - /// - /// https://fontawesome.com/icons/duotone_scrubber?style=duotone - /// circle, dot, toggle - static const IconDataDuotone duotoneScrubber = const IconDataDuotone( - 0xf2f8, - secondary: const IconDataDuotone(0x10f2f8), - ); - - /// 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 = const IconDataRegular(0xf710); - - /// 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 = const IconDataSolid(0xf710); - - /// Light Scythe icon - /// - /// https://fontawesome.com/icons/light_scythe?style=light - /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconData lightScythe = const IconDataLight(0xf710); - - /// Duotone Scythe icon - /// - /// https://fontawesome.com/icons/duotone_scythe?style=duotone - /// Dungeons & Dragons, blade, d&d, death, dnd, fantasy, grim reaper, weapon - static const IconDataDuotone duotoneScythe = const IconDataDuotone( - 0xf710, - secondary: const IconDataDuotone(0x10f710), - ); - - /// Regular Sd Card icon - /// - /// https://fontawesome.com/icons/sd-card?style=regular - /// image, memory, photo, save - static const IconData sdCard = const IconDataRegular(0xf7c2); - - /// Solid Sd Card icon - /// - /// https://fontawesome.com/icons/sd-card?style=solid - /// image, memory, photo, save - static const IconData solidSdCard = const IconDataSolid(0xf7c2); - - /// Light Sd Card icon - /// - /// https://fontawesome.com/icons/light_sd-card?style=light - /// image, memory, photo, save - static const IconData lightSdCard = const IconDataLight(0xf7c2); - - /// Duotone Sd Card icon - /// - /// https://fontawesome.com/icons/duotone_sd-card?style=duotone - /// image, memory, photo, save - static const IconDataDuotone duotoneSdCard = const IconDataDuotone( - 0xf7c2, - secondary: const IconDataDuotone(0x10f7c2), - ); - - /// Regular Search icon - /// - /// https://fontawesome.com/icons/search?style=regular - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData search = const IconDataRegular(0xf002); - - /// Solid Search icon - /// - /// https://fontawesome.com/icons/search?style=solid - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData solidSearch = const IconDataSolid(0xf002); - - /// Light Search icon - /// - /// https://fontawesome.com/icons/light_search?style=light - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData lightSearch = const IconDataLight(0xf002); - - /// Duotone Search icon - /// - /// https://fontawesome.com/icons/duotone_search?style=duotone - /// bigger, enlarge, find, magnify, preview, zoom - static const IconDataDuotone duotoneSearch = const IconDataDuotone( - 0xf002, - secondary: const IconDataDuotone(0x10f002), - ); - - /// Regular Search Dollar icon - /// - /// https://fontawesome.com/icons/search-dollar?style=regular - /// bigger, enlarge, find, magnify, money, preview, zoom - static const IconData searchDollar = const IconDataRegular(0xf688); - - /// Solid Search Dollar icon - /// - /// https://fontawesome.com/icons/search-dollar?style=solid - /// bigger, enlarge, find, magnify, money, preview, zoom - static const IconData solidSearchDollar = const IconDataSolid(0xf688); - - /// Light Search Dollar icon - /// - /// https://fontawesome.com/icons/light_search-dollar?style=light - /// bigger, enlarge, find, magnify, money, preview, zoom - static const IconData lightSearchDollar = const IconDataLight(0xf688); - - /// Duotone Search Dollar icon - /// - /// https://fontawesome.com/icons/duotone_search-dollar?style=duotone - /// bigger, enlarge, find, magnify, money, preview, zoom - static const IconDataDuotone duotoneSearchDollar = const IconDataDuotone( - 0xf688, - secondary: const IconDataDuotone(0x10f688), - ); - - /// Regular Search Location icon - /// - /// https://fontawesome.com/icons/search-location?style=regular - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData searchLocation = const IconDataRegular(0xf689); - - /// Solid Search Location icon - /// - /// https://fontawesome.com/icons/search-location?style=solid - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData solidSearchLocation = const IconDataSolid(0xf689); - - /// Light Search Location icon - /// - /// https://fontawesome.com/icons/light_search-location?style=light - /// bigger, enlarge, find, magnify, preview, zoom - static const IconData lightSearchLocation = const IconDataLight(0xf689); - - /// Duotone Search Location icon - /// - /// https://fontawesome.com/icons/duotone_search-location?style=duotone - /// bigger, enlarge, find, magnify, preview, zoom - static const IconDataDuotone duotoneSearchLocation = const IconDataDuotone( - 0xf689, - secondary: const IconDataDuotone(0x10f689), - ); - - /// Regular Search Minus icon - /// - /// https://fontawesome.com/icons/search-minus?style=regular - /// minify, negative, smaller, zoom, zoom out - static const IconData searchMinus = const IconDataRegular(0xf010); - - /// Solid Search Minus icon - /// - /// https://fontawesome.com/icons/search-minus?style=solid - /// minify, negative, smaller, zoom, zoom out - static const IconData solidSearchMinus = const IconDataSolid(0xf010); - - /// Light Search Minus icon - /// - /// https://fontawesome.com/icons/light_search-minus?style=light - /// minify, negative, smaller, zoom, zoom out - static const IconData lightSearchMinus = const IconDataLight(0xf010); - - /// Duotone Search Minus icon - /// - /// https://fontawesome.com/icons/duotone_search-minus?style=duotone - /// minify, negative, smaller, zoom, zoom out - static const IconDataDuotone duotoneSearchMinus = const IconDataDuotone( - 0xf010, - secondary: const IconDataDuotone(0x10f010), - ); - - /// Regular Search Plus icon - /// - /// https://fontawesome.com/icons/search-plus?style=regular - /// bigger, enlarge, magnify, positive, zoom, zoom in - static const IconData searchPlus = const IconDataRegular(0xf00e); - - /// Solid Search Plus icon - /// - /// https://fontawesome.com/icons/search-plus?style=solid - /// bigger, enlarge, magnify, positive, zoom, zoom in - static const IconData solidSearchPlus = const IconDataSolid(0xf00e); - - /// Light Search Plus icon - /// - /// https://fontawesome.com/icons/light_search-plus?style=light - /// bigger, enlarge, magnify, positive, zoom, zoom in - static const IconData lightSearchPlus = const IconDataLight(0xf00e); - - /// Duotone Search Plus icon - /// - /// https://fontawesome.com/icons/duotone_search-plus?style=duotone - /// bigger, enlarge, magnify, positive, zoom, zoom in - static const IconDataDuotone duotoneSearchPlus = const IconDataDuotone( - 0xf00e, - secondary: const IconDataDuotone(0x10f00e), - ); - - /// Brands Searchengin icon - /// - /// https://fontawesome.com/icons/searchengin?style=brands - static const IconData searchengin = const IconDataBrands(0xf3eb); - - /// Regular Seedling icon - /// - /// https://fontawesome.com/icons/seedling?style=regular - /// flora, grow, plant, vegan - static const IconData seedling = const IconDataRegular(0xf4d8); - - /// Solid Seedling icon - /// - /// https://fontawesome.com/icons/seedling?style=solid - /// flora, grow, plant, vegan - static const IconData solidSeedling = const IconDataSolid(0xf4d8); - - /// Light Seedling icon - /// - /// https://fontawesome.com/icons/light_seedling?style=light - /// flora, grow, plant, vegan - static const IconData lightSeedling = const IconDataLight(0xf4d8); - - /// Duotone Seedling icon - /// - /// https://fontawesome.com/icons/duotone_seedling?style=duotone - /// flora, grow, plant, vegan - static const IconDataDuotone duotoneSeedling = const IconDataDuotone( - 0xf4d8, - secondary: const IconDataDuotone(0x10f4d8), - ); - - /// Brands Sellcast icon - /// - /// https://fontawesome.com/icons/sellcast?style=brands - /// eercast - static const IconData sellcast = const IconDataBrands(0xf2da); - - /// Brands Sellsy icon - /// - /// https://fontawesome.com/icons/sellsy?style=brands - static const IconData sellsy = const IconDataBrands(0xf213); - - /// Regular Send Back icon - /// - /// https://fontawesome.com/icons/send-back?style=regular - /// arrange, backward, layer, order, stack - static const IconData sendBack = const IconDataRegular(0xf87e); - - /// Solid Send Back icon - /// - /// https://fontawesome.com/icons/send-back?style=solid - /// arrange, backward, layer, order, stack - static const IconData solidSendBack = const IconDataSolid(0xf87e); - - /// Light Send Back icon - /// - /// https://fontawesome.com/icons/light_send-back?style=light - /// arrange, backward, layer, order, stack - static const IconData lightSendBack = const IconDataLight(0xf87e); - - /// Duotone Send Back icon - /// - /// https://fontawesome.com/icons/duotone_send-back?style=duotone - /// arrange, backward, layer, order, stack - static const IconDataDuotone duotoneSendBack = const IconDataDuotone( - 0xf87e, - secondary: const IconDataDuotone(0x10f87e), - ); - - /// Regular Send Backward icon - /// - /// https://fontawesome.com/icons/send-backward?style=regular - /// arrange, back, layer, order, stack - static const IconData sendBackward = const IconDataRegular(0xf87f); - - /// Solid Send Backward icon - /// - /// https://fontawesome.com/icons/send-backward?style=solid - /// arrange, back, layer, order, stack - static const IconData solidSendBackward = const IconDataSolid(0xf87f); - - /// Light Send Backward icon - /// - /// https://fontawesome.com/icons/light_send-backward?style=light - /// arrange, back, layer, order, stack - static const IconData lightSendBackward = const IconDataLight(0xf87f); - - /// Duotone Send Backward icon - /// - /// https://fontawesome.com/icons/duotone_send-backward?style=duotone - /// arrange, back, layer, order, stack - static const IconDataDuotone duotoneSendBackward = const IconDataDuotone( - 0xf87f, - secondary: const IconDataDuotone(0x10f87f), - ); - - /// Regular Sensor icon - /// - /// https://fontawesome.com/icons/sensor?style=regular - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensor = const IconDataRegular(0xe028); - - /// Solid Sensor icon - /// - /// https://fontawesome.com/icons/sensor?style=solid - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensor = const IconDataSolid(0xe028); - - /// Light Sensor icon - /// - /// https://fontawesome.com/icons/light_sensor?style=light - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensor = const IconDataLight(0xe028); - - /// Duotone Sensor icon - /// - /// https://fontawesome.com/icons/duotone_sensor?style=duotone - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconDataDuotone duotoneSensor = const IconDataDuotone( - 0xe028, - secondary: const IconDataDuotone(0x10e028), - ); - - /// Regular Sensor Alert icon - /// - /// https://fontawesome.com/icons/sensor-alert?style=regular - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorAlert = const IconDataRegular(0xe029); - - /// Solid Sensor Alert icon - /// - /// https://fontawesome.com/icons/sensor-alert?style=solid - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorAlert = const IconDataSolid(0xe029); - - /// Light Sensor Alert icon - /// - /// https://fontawesome.com/icons/light_sensor-alert?style=light - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorAlert = const IconDataLight(0xe029); - - /// Duotone Sensor Alert icon - /// - /// https://fontawesome.com/icons/duotone_sensor-alert?style=duotone - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconDataDuotone duotoneSensorAlert = const IconDataDuotone( - 0xe029, - secondary: const IconDataDuotone(0x10e029), - ); - - /// Regular Sensor Fire icon - /// - /// https://fontawesome.com/icons/sensor-fire?style=regular - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorFire = const IconDataRegular(0xe02a); - - /// Solid Sensor Fire icon - /// - /// https://fontawesome.com/icons/sensor-fire?style=solid - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorFire = const IconDataSolid(0xe02a); - - /// Light Sensor Fire icon - /// - /// https://fontawesome.com/icons/light_sensor-fire?style=light - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorFire = const IconDataLight(0xe02a); - - /// Duotone Sensor Fire icon - /// - /// https://fontawesome.com/icons/duotone_sensor-fire?style=duotone - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconDataDuotone duotoneSensorFire = const IconDataDuotone( - 0xe02a, - secondary: const IconDataDuotone(0x10e02a), - ); - - /// Regular Sensor On icon - /// - /// https://fontawesome.com/icons/sensor-on?style=regular - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorOn = const IconDataRegular(0xe02b); - - /// Solid Sensor On icon - /// - /// https://fontawesome.com/icons/sensor-on?style=solid - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorOn = const IconDataSolid(0xe02b); - - /// Light Sensor On icon - /// - /// https://fontawesome.com/icons/light_sensor-on?style=light - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorOn = const IconDataLight(0xe02b); - - /// Duotone Sensor On icon - /// - /// https://fontawesome.com/icons/duotone_sensor-on?style=duotone - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconDataDuotone duotoneSensorOn = const IconDataDuotone( - 0xe02b, - secondary: const IconDataDuotone(0x10e02b), - ); - - /// Regular Sensor Smoke icon - /// - /// https://fontawesome.com/icons/sensor-smoke?style=regular - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData sensorSmoke = const IconDataRegular(0xe02c); - - /// Solid Sensor Smoke icon - /// - /// https://fontawesome.com/icons/sensor-smoke?style=solid - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData solidSensorSmoke = const IconDataSolid(0xe02c); - - /// Light Sensor Smoke icon - /// - /// https://fontawesome.com/icons/light_sensor-smoke?style=light - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconData lightSensorSmoke = const IconDataLight(0xe02c); - - /// Duotone Sensor Smoke icon - /// - /// https://fontawesome.com/icons/duotone_sensor-smoke?style=duotone - /// alarm, alert, carbon monoxide, detector, fire, smoke - static const IconDataDuotone duotoneSensorSmoke = const IconDataDuotone( - 0xe02c, - secondary: const IconDataDuotone(0x10e02c), - ); - - /// Regular Server icon - /// - /// https://fontawesome.com/icons/server?style=regular - /// computer, cpu, database, hardware, network - static const IconData server = const IconDataRegular(0xf233); - - /// Solid Server icon - /// - /// https://fontawesome.com/icons/server?style=solid - /// computer, cpu, database, hardware, network - static const IconData solidServer = const IconDataSolid(0xf233); - - /// Light Server icon - /// - /// https://fontawesome.com/icons/light_server?style=light - /// computer, cpu, database, hardware, network - static const IconData lightServer = const IconDataLight(0xf233); - - /// Duotone Server icon - /// - /// https://fontawesome.com/icons/duotone_server?style=duotone - /// computer, cpu, database, hardware, network - static const IconDataDuotone duotoneServer = const IconDataDuotone( - 0xf233, - secondary: const IconDataDuotone(0x10f233), - ); - - /// Brands Servicestack icon - /// - /// https://fontawesome.com/icons/servicestack?style=brands - static const IconData servicestack = const IconDataBrands(0xf3ec); - - /// Regular Shapes icon - /// - /// https://fontawesome.com/icons/shapes?style=regular - /// blocks, build, circle, square, triangle - static const IconData shapes = const IconDataRegular(0xf61f); - - /// Solid Shapes icon - /// - /// https://fontawesome.com/icons/shapes?style=solid - /// blocks, build, circle, square, triangle - static const IconData solidShapes = const IconDataSolid(0xf61f); - - /// Light Shapes icon - /// - /// https://fontawesome.com/icons/light_shapes?style=light - /// blocks, build, circle, square, triangle - static const IconData lightShapes = const IconDataLight(0xf61f); - - /// Duotone Shapes icon - /// - /// https://fontawesome.com/icons/duotone_shapes?style=duotone - /// blocks, build, circle, square, triangle - static const IconDataDuotone duotoneShapes = const IconDataDuotone( - 0xf61f, - secondary: const IconDataDuotone(0x10f61f), - ); - - /// Regular Share icon - /// - /// https://fontawesome.com/icons/share?style=regular - /// forward, save, send, social - static const IconData share = const IconDataRegular(0xf064); - - /// Solid Share icon - /// - /// https://fontawesome.com/icons/share?style=solid - /// forward, save, send, social - static const IconData solidShare = const IconDataSolid(0xf064); - - /// Light Share icon - /// - /// https://fontawesome.com/icons/light_share?style=light - /// forward, save, send, social - static const IconData lightShare = const IconDataLight(0xf064); - - /// Duotone Share icon - /// - /// https://fontawesome.com/icons/duotone_share?style=duotone - /// forward, save, send, social - static const IconDataDuotone duotoneShare = const IconDataDuotone( - 0xf064, - secondary: const IconDataDuotone(0x10f064), - ); - - /// Regular Share All icon - /// - /// https://fontawesome.com/icons/share-all?style=regular - /// forward, save, send, social - static const IconData shareAll = const IconDataRegular(0xf367); - - /// Solid Share All icon - /// - /// https://fontawesome.com/icons/share-all?style=solid - /// forward, save, send, social - static const IconData solidShareAll = const IconDataSolid(0xf367); - - /// Light Share All icon - /// - /// https://fontawesome.com/icons/light_share-all?style=light - /// forward, save, send, social - static const IconData lightShareAll = const IconDataLight(0xf367); - - /// Duotone Share All icon - /// - /// https://fontawesome.com/icons/duotone_share-all?style=duotone - /// forward, save, send, social - static const IconDataDuotone duotoneShareAll = const IconDataDuotone( - 0xf367, - secondary: const IconDataDuotone(0x10f367), - ); - - /// Regular Alternate Share icon - /// - /// https://fontawesome.com/icons/share-alt?style=regular - /// forward, save, send, social - static const IconData shareAlt = const IconDataRegular(0xf1e0); - - /// Solid Alternate Share icon - /// - /// https://fontawesome.com/icons/share-alt?style=solid - /// forward, save, send, social - static const IconData solidShareAlt = const IconDataSolid(0xf1e0); - - /// Light Alternate Share icon - /// - /// https://fontawesome.com/icons/light_share-alt?style=light - /// forward, save, send, social - static const IconData lightShareAlt = const IconDataLight(0xf1e0); - - /// Duotone Alternate Share icon - /// - /// https://fontawesome.com/icons/duotone_share-alt?style=duotone - /// forward, save, send, social - static const IconDataDuotone duotoneShareAlt = const IconDataDuotone( - 0xf1e0, - secondary: const IconDataDuotone(0x10f1e0), - ); - - /// Regular Alternate Share Square icon - /// - /// https://fontawesome.com/icons/share-alt-square?style=regular - /// forward, save, send, social - static const IconData shareAltSquare = const IconDataRegular(0xf1e1); - - /// Solid Alternate Share Square icon - /// - /// https://fontawesome.com/icons/share-alt-square?style=solid - /// forward, save, send, social - static const IconData solidShareAltSquare = const IconDataSolid(0xf1e1); - - /// Light Alternate Share Square icon - /// - /// https://fontawesome.com/icons/light_share-alt-square?style=light - /// forward, save, send, social - static const IconData lightShareAltSquare = const IconDataLight(0xf1e1); - - /// Duotone Alternate Share Square icon - /// - /// https://fontawesome.com/icons/duotone_share-alt-square?style=duotone - /// forward, save, send, social - static const IconDataDuotone duotoneShareAltSquare = const IconDataDuotone( - 0xf1e1, - secondary: const IconDataDuotone(0x10f1e1), - ); - - /// Regular Share Square icon - /// - /// https://fontawesome.com/icons/share-square?style=regular - /// forward, save, send, social - static const IconData shareSquare = const IconDataRegular(0xf14d); - - /// Solid Share Square icon - /// - /// https://fontawesome.com/icons/share-square?style=solid - /// forward, save, send, social - static const IconData solidShareSquare = const IconDataSolid(0xf14d); - - /// Light Share Square icon - /// - /// https://fontawesome.com/icons/light_share-square?style=light - /// forward, save, send, social - static const IconData lightShareSquare = const IconDataLight(0xf14d); - - /// Duotone Share Square icon - /// - /// https://fontawesome.com/icons/duotone_share-square?style=duotone - /// forward, save, send, social - static const IconDataDuotone duotoneShareSquare = const IconDataDuotone( - 0xf14d, - secondary: const IconDataDuotone(0x10f14d), - ); - - /// Regular Sheep icon - /// - /// https://fontawesome.com/icons/sheep?style=regular - /// agriculture, animal, farming, fauna, mammal, wool, yarn - static const IconData sheep = const IconDataRegular(0xf711); - - /// Solid Sheep icon - /// - /// https://fontawesome.com/icons/sheep?style=solid - /// agriculture, animal, farming, fauna, mammal, wool, yarn - static const IconData solidSheep = const IconDataSolid(0xf711); - - /// Light Sheep icon - /// - /// https://fontawesome.com/icons/light_sheep?style=light - /// agriculture, animal, farming, fauna, mammal, wool, yarn - static const IconData lightSheep = const IconDataLight(0xf711); - - /// Duotone Sheep icon - /// - /// https://fontawesome.com/icons/duotone_sheep?style=duotone - /// agriculture, animal, farming, fauna, mammal, wool, yarn - static const IconDataDuotone duotoneSheep = const IconDataDuotone( - 0xf711, - secondary: const IconDataDuotone(0x10f711), - ); - - /// Regular Shekel Sign icon - /// - /// https://fontawesome.com/icons/shekel-sign?style=regular - /// currency, ils, money - static const IconData shekelSign = const IconDataRegular(0xf20b); - - /// Solid Shekel Sign icon - /// - /// https://fontawesome.com/icons/shekel-sign?style=solid - /// currency, ils, money - static const IconData solidShekelSign = const IconDataSolid(0xf20b); - - /// Light Shekel Sign icon - /// - /// https://fontawesome.com/icons/light_shekel-sign?style=light - /// currency, ils, money - static const IconData lightShekelSign = const IconDataLight(0xf20b); - - /// Duotone Shekel Sign icon - /// - /// https://fontawesome.com/icons/duotone_shekel-sign?style=duotone - /// currency, ils, money - static const IconDataDuotone duotoneShekelSign = const IconDataDuotone( - 0xf20b, - secondary: const IconDataDuotone(0x10f20b), - ); - - /// Regular shield icon - /// - /// https://fontawesome.com/icons/shield?style=regular - /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, winner - static const IconData shield = const IconDataRegular(0xf132); - - /// Solid shield icon - /// - /// https://fontawesome.com/icons/shield?style=solid - /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, winner - static const IconData solidShield = const IconDataSolid(0xf132); - - /// Light shield icon - /// - /// https://fontawesome.com/icons/light_shield?style=light - /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, winner - static const IconData lightShield = const IconDataLight(0xf132); - - /// Duotone shield icon - /// - /// https://fontawesome.com/icons/duotone_shield?style=duotone - /// achievement, armor, award, block, cleric, defend, defense, holy, paladin, security, winner - static const IconDataDuotone duotoneShield = const IconDataDuotone( - 0xf132, - secondary: const IconDataDuotone(0x10f132), - ); - - /// Regular Alternate Shield icon - /// - /// https://fontawesome.com/icons/shield-alt?style=regular - /// achievement, award, block, defend, security, winner - static const IconData shieldAlt = const IconDataRegular(0xf3ed); - - /// Solid Alternate Shield icon - /// - /// https://fontawesome.com/icons/shield-alt?style=solid - /// achievement, award, block, defend, security, winner - static const IconData solidShieldAlt = const IconDataSolid(0xf3ed); - - /// Light Alternate Shield icon - /// - /// https://fontawesome.com/icons/light_shield-alt?style=light - /// achievement, award, block, defend, security, winner - static const IconData lightShieldAlt = const IconDataLight(0xf3ed); - - /// Duotone Alternate Shield icon - /// - /// https://fontawesome.com/icons/duotone_shield-alt?style=duotone - /// achievement, award, block, defend, security, winner - static const IconDataDuotone duotoneShieldAlt = const IconDataDuotone( - 0xf3ed, - secondary: const IconDataDuotone(0x10f3ed), - ); - - /// Regular shield icon - /// - /// https://fontawesome.com/icons/shield-check?style=regular - /// achievement, award, block, defend, security, select, success, tick, todo, winner - static const IconData shieldCheck = const IconDataRegular(0xf2f7); - - /// Solid shield icon - /// - /// https://fontawesome.com/icons/shield-check?style=solid - /// achievement, award, block, defend, security, select, success, tick, todo, winner - static const IconData solidShieldCheck = const IconDataSolid(0xf2f7); - - /// Light shield icon - /// - /// https://fontawesome.com/icons/light_shield-check?style=light - /// achievement, award, block, defend, security, select, success, tick, todo, winner - static const IconData lightShieldCheck = const IconDataLight(0xf2f7); - - /// Duotone shield icon - /// - /// https://fontawesome.com/icons/duotone_shield-check?style=duotone - /// achievement, award, block, defend, security, select, success, tick, todo, winner - static const IconDataDuotone duotoneShieldCheck = const IconDataDuotone( - 0xf2f7, - secondary: const IconDataDuotone(0x10f2f7), - ); - - /// Regular Shield Cross icon - /// - /// https://fontawesome.com/icons/shield-cross?style=regular - /// Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, security, templar - static const IconData shieldCross = const IconDataRegular(0xf712); - - /// Solid Shield Cross icon - /// - /// https://fontawesome.com/icons/shield-cross?style=solid - /// Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, security, templar - static const IconData solidShieldCross = const IconDataSolid(0xf712); - - /// Light Shield Cross icon - /// - /// https://fontawesome.com/icons/light_shield-cross?style=light - /// Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, security, templar - static const IconData lightShieldCross = const IconDataLight(0xf712); - - /// Duotone Shield Cross icon - /// - /// https://fontawesome.com/icons/duotone_shield-cross?style=duotone - /// Dungeons & Dragons, block, catholicism, christianity, crusader, d&d, defend, dnd, fantasy, security, templar - static const IconDataDuotone duotoneShieldCross = const IconDataDuotone( - 0xf712, - secondary: const IconDataDuotone(0x10f712), - ); - - /// Regular Shield Virus icon - /// - /// https://fontawesome.com/icons/shield-virus?style=regular - /// antibodies, barrier, covid-19, health, protect - static const IconData shieldVirus = const IconDataRegular(0xe06c); - - /// Light Shield Virus icon - /// - /// https://fontawesome.com/icons/light_shield-virus?style=light - /// antibodies, barrier, covid-19, health, protect - static const IconData lightShieldVirus = const IconDataLight(0xe06c); - - /// Solid Shield Virus icon - /// - /// https://fontawesome.com/icons/shield-virus?style=solid - /// antibodies, barrier, covid-19, health, protect - static const IconData solidShieldVirus = const IconDataSolid(0xe06c); - - /// Duotone Shield Virus icon - /// - /// https://fontawesome.com/icons/duotone_shield-virus?style=duotone - /// antibodies, barrier, covid-19, health, protect - static const IconDataDuotone duotoneShieldVirus = const IconDataDuotone( - 0xe06c, - secondary: const IconDataDuotone(0x10e06c), - ); - - /// Regular Ship icon - /// - /// https://fontawesome.com/icons/ship?style=regular - /// boat, sea, water - static const IconData ship = const IconDataRegular(0xf21a); - - /// Solid Ship icon - /// - /// https://fontawesome.com/icons/ship?style=solid - /// boat, sea, water - static const IconData solidShip = const IconDataSolid(0xf21a); - - /// Light Ship icon - /// - /// https://fontawesome.com/icons/light_ship?style=light - /// boat, sea, water - static const IconData lightShip = const IconDataLight(0xf21a); - - /// Duotone Ship icon - /// - /// https://fontawesome.com/icons/duotone_ship?style=duotone - /// boat, sea, water - static const IconDataDuotone duotoneShip = const IconDataDuotone( - 0xf21a, - secondary: const IconDataDuotone(0x10f21a), - ); - - /// Regular Shipping Fast icon - /// - /// https://fontawesome.com/icons/shipping-fast?style=regular - /// express, fedex, mail, overnight, package, ups - static const IconData shippingFast = const IconDataRegular(0xf48b); - - /// Solid Shipping Fast icon - /// - /// https://fontawesome.com/icons/shipping-fast?style=solid - /// express, fedex, mail, overnight, package, ups - static const IconData solidShippingFast = const IconDataSolid(0xf48b); - - /// Light Shipping Fast icon - /// - /// https://fontawesome.com/icons/light_shipping-fast?style=light - /// express, fedex, mail, overnight, package, ups - static const IconData lightShippingFast = const IconDataLight(0xf48b); - - /// Duotone Shipping Fast icon - /// - /// https://fontawesome.com/icons/duotone_shipping-fast?style=duotone - /// express, fedex, mail, overnight, package, ups - static const IconDataDuotone duotoneShippingFast = const IconDataDuotone( - 0xf48b, - secondary: const IconDataDuotone(0x10f48b), - ); - - /// Regular Shipping Timed icon - /// - /// https://fontawesome.com/icons/shipping-timed?style=regular - /// express, fedex, mail, overnight, package, ups - static const IconData shippingTimed = const IconDataRegular(0xf48c); - - /// Solid Shipping Timed icon - /// - /// https://fontawesome.com/icons/shipping-timed?style=solid - /// express, fedex, mail, overnight, package, ups - static const IconData solidShippingTimed = const IconDataSolid(0xf48c); - - /// Light Shipping Timed icon - /// - /// https://fontawesome.com/icons/light_shipping-timed?style=light - /// express, fedex, mail, overnight, package, ups - static const IconData lightShippingTimed = const IconDataLight(0xf48c); - - /// Duotone Shipping Timed icon - /// - /// https://fontawesome.com/icons/duotone_shipping-timed?style=duotone - /// express, fedex, mail, overnight, package, ups - static const IconDataDuotone duotoneShippingTimed = const IconDataDuotone( - 0xf48c, - secondary: const IconDataDuotone(0x10f48c), - ); - - /// Brands Shirts in Bulk icon - /// - /// https://fontawesome.com/icons/shirtsinbulk?style=brands - static const IconData shirtsinbulk = const IconDataBrands(0xf214); - - /// Regular Shish Kebab icon - /// - /// https://fontawesome.com/icons/shish-kebab?style=regular - /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData shishKebab = const IconDataRegular(0xf821); - - /// Solid Shish Kebab icon - /// - /// https://fontawesome.com/icons/shish-kebab?style=solid - /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData solidShishKebab = const IconDataSolid(0xf821); - - /// Light Shish Kebab icon - /// - /// https://fontawesome.com/icons/light_shish-kebab?style=light - /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconData lightShishKebab = const IconDataLight(0xf821); - - /// Duotone Shish Kebab icon - /// - /// https://fontawesome.com/icons/duotone_shish-kebab?style=duotone - /// grill, kabob, kebob, meat, shawarma, skewer, souvlaki - static const IconDataDuotone duotoneShishKebab = const IconDataDuotone( - 0xf821, - secondary: const IconDataDuotone(0x10f821), - ); - - /// Regular Shoe Prints icon - /// - /// https://fontawesome.com/icons/shoe-prints?style=regular - /// feet, footprints, steps, walk - static const IconData shoePrints = const IconDataRegular(0xf54b); - - /// Solid Shoe Prints icon - /// - /// https://fontawesome.com/icons/shoe-prints?style=solid - /// feet, footprints, steps, walk - static const IconData solidShoePrints = const IconDataSolid(0xf54b); - - /// Light Shoe Prints icon - /// - /// https://fontawesome.com/icons/light_shoe-prints?style=light - /// feet, footprints, steps, walk - static const IconData lightShoePrints = const IconDataLight(0xf54b); - - /// Duotone Shoe Prints icon - /// - /// https://fontawesome.com/icons/duotone_shoe-prints?style=duotone - /// feet, footprints, steps, walk - static const IconDataDuotone duotoneShoePrints = const IconDataDuotone( - 0xf54b, - secondary: const IconDataDuotone(0x10f54b), - ); - - /// Brands Shopify icon - /// - /// https://fontawesome.com/icons/shopify?style=brands - static const IconData shopify = const IconDataBrands(0xe057); - - /// Regular Shopping Bag icon - /// - /// https://fontawesome.com/icons/shopping-bag?style=regular - /// buy, checkout, grocery, payment, purchase - static const IconData shoppingBag = const IconDataRegular(0xf290); - - /// Solid Shopping Bag icon - /// - /// https://fontawesome.com/icons/shopping-bag?style=solid - /// buy, checkout, grocery, payment, purchase - static const IconData solidShoppingBag = const IconDataSolid(0xf290); - - /// Light Shopping Bag icon - /// - /// https://fontawesome.com/icons/light_shopping-bag?style=light - /// buy, checkout, grocery, payment, purchase - static const IconData lightShoppingBag = const IconDataLight(0xf290); - - /// Duotone Shopping Bag icon - /// - /// https://fontawesome.com/icons/duotone_shopping-bag?style=duotone - /// buy, checkout, grocery, payment, purchase - static const IconDataDuotone duotoneShoppingBag = const IconDataDuotone( - 0xf290, - secondary: const IconDataDuotone(0x10f290), - ); - - /// Regular Shopping Basket icon - /// - /// https://fontawesome.com/icons/shopping-basket?style=regular - /// buy, checkout, grocery, payment, purchase - static const IconData shoppingBasket = const IconDataRegular(0xf291); - - /// Solid Shopping Basket icon - /// - /// https://fontawesome.com/icons/shopping-basket?style=solid - /// buy, checkout, grocery, payment, purchase - static const IconData solidShoppingBasket = const IconDataSolid(0xf291); - - /// Light Shopping Basket icon - /// - /// https://fontawesome.com/icons/light_shopping-basket?style=light - /// buy, checkout, grocery, payment, purchase - static const IconData lightShoppingBasket = const IconDataLight(0xf291); - - /// Duotone Shopping Basket icon - /// - /// https://fontawesome.com/icons/duotone_shopping-basket?style=duotone - /// buy, checkout, grocery, payment, purchase - static const IconDataDuotone duotoneShoppingBasket = const IconDataDuotone( - 0xf291, - secondary: const IconDataDuotone(0x10f291), - ); - - /// Regular shopping-cart icon - /// - /// https://fontawesome.com/icons/shopping-cart?style=regular - /// buy, checkout, grocery, payment, purchase - static const IconData shoppingCart = const IconDataRegular(0xf07a); - - /// Solid shopping-cart icon - /// - /// https://fontawesome.com/icons/shopping-cart?style=solid - /// buy, checkout, grocery, payment, purchase - static const IconData solidShoppingCart = const IconDataSolid(0xf07a); - - /// Light shopping-cart icon - /// - /// https://fontawesome.com/icons/light_shopping-cart?style=light - /// buy, checkout, grocery, payment, purchase - static const IconData lightShoppingCart = const IconDataLight(0xf07a); - - /// Duotone shopping-cart icon - /// - /// https://fontawesome.com/icons/duotone_shopping-cart?style=duotone - /// buy, checkout, grocery, payment, purchase - static const IconDataDuotone duotoneShoppingCart = const IconDataDuotone( - 0xf07a, - secondary: const IconDataDuotone(0x10f07a), - ); - - /// Brands Shopware icon - /// - /// https://fontawesome.com/icons/shopware?style=brands - static const IconData shopware = const IconDataBrands(0xf5b5); - - /// Regular Shovel icon - /// - /// https://fontawesome.com/icons/shovel?style=regular - /// construction, dig, excavate, tool, trench - static const IconData shovel = const IconDataRegular(0xf713); - - /// Solid Shovel icon - /// - /// https://fontawesome.com/icons/shovel?style=solid - /// construction, dig, excavate, tool, trench - static const IconData solidShovel = const IconDataSolid(0xf713); - - /// Light Shovel icon - /// - /// https://fontawesome.com/icons/light_shovel?style=light - /// construction, dig, excavate, tool, trench - static const IconData lightShovel = const IconDataLight(0xf713); - - /// Duotone Shovel icon - /// - /// https://fontawesome.com/icons/duotone_shovel?style=duotone - /// construction, dig, excavate, tool, trench - static const IconDataDuotone duotoneShovel = const IconDataDuotone( - 0xf713, - secondary: const IconDataDuotone(0x10f713), - ); - - /// Regular Shovel Snow icon - /// - /// https://fontawesome.com/icons/shovel-snow?style=regular - /// construction, dig, excavate, plow, tool, trench - static const IconData shovelSnow = const IconDataRegular(0xf7c3); - - /// Solid Shovel Snow icon - /// - /// https://fontawesome.com/icons/shovel-snow?style=solid - /// construction, dig, excavate, plow, tool, trench - static const IconData solidShovelSnow = const IconDataSolid(0xf7c3); - - /// Light Shovel Snow icon - /// - /// https://fontawesome.com/icons/light_shovel-snow?style=light - /// construction, dig, excavate, plow, tool, trench - static const IconData lightShovelSnow = const IconDataLight(0xf7c3); - - /// Duotone Shovel Snow icon - /// - /// https://fontawesome.com/icons/duotone_shovel-snow?style=duotone - /// construction, dig, excavate, plow, tool, trench - static const IconDataDuotone duotoneShovelSnow = const IconDataDuotone( - 0xf7c3, - secondary: const IconDataDuotone(0x10f7c3), - ); - - /// Regular Shower icon - /// - /// https://fontawesome.com/icons/shower?style=regular - /// bath, clean, faucet, water - static const IconData shower = const IconDataRegular(0xf2cc); - - /// Solid Shower icon - /// - /// https://fontawesome.com/icons/shower?style=solid - /// bath, clean, faucet, water - static const IconData solidShower = const IconDataSolid(0xf2cc); - - /// Light Shower icon - /// - /// https://fontawesome.com/icons/light_shower?style=light - /// bath, clean, faucet, water - static const IconData lightShower = const IconDataLight(0xf2cc); - - /// Duotone Shower icon - /// - /// https://fontawesome.com/icons/duotone_shower?style=duotone - /// bath, clean, faucet, water - static const IconDataDuotone duotoneShower = const IconDataDuotone( - 0xf2cc, - secondary: const IconDataDuotone(0x10f2cc), - ); - - /// Regular Shredder icon - /// - /// https://fontawesome.com/icons/shredder?style=regular - /// destroy, document, office, paper, print - static const IconData shredder = const IconDataRegular(0xf68a); - - /// Solid Shredder icon - /// - /// https://fontawesome.com/icons/shredder?style=solid - /// destroy, document, office, paper, print - static const IconData solidShredder = const IconDataSolid(0xf68a); - - /// Light Shredder icon - /// - /// https://fontawesome.com/icons/light_shredder?style=light - /// destroy, document, office, paper, print - static const IconData lightShredder = const IconDataLight(0xf68a); - - /// Duotone Shredder icon - /// - /// https://fontawesome.com/icons/duotone_shredder?style=duotone - /// destroy, document, office, paper, print - static const IconDataDuotone duotoneShredder = const IconDataDuotone( - 0xf68a, - secondary: const IconDataDuotone(0x10f68a), - ); - - /// Regular Shuttle Van icon - /// - /// https://fontawesome.com/icons/shuttle-van?style=regular - /// airport, machine, public-transportation, transportation, travel, vehicle - static const IconData shuttleVan = const IconDataRegular(0xf5b6); - - /// Solid Shuttle Van icon - /// - /// https://fontawesome.com/icons/shuttle-van?style=solid - /// airport, machine, public-transportation, transportation, travel, vehicle - static const IconData solidShuttleVan = const IconDataSolid(0xf5b6); - - /// Light Shuttle Van icon - /// - /// https://fontawesome.com/icons/light_shuttle-van?style=light - /// airport, machine, public-transportation, transportation, travel, vehicle - static const IconData lightShuttleVan = const IconDataLight(0xf5b6); - - /// Duotone Shuttle Van icon - /// - /// https://fontawesome.com/icons/duotone_shuttle-van?style=duotone - /// airport, machine, public-transportation, transportation, travel, vehicle - static const IconDataDuotone duotoneShuttleVan = const IconDataDuotone( - 0xf5b6, - secondary: const IconDataDuotone(0x10f5b6), - ); - - /// Regular Shuttlecock icon - /// - /// https://fontawesome.com/icons/shuttlecock?style=regular - /// badminton, birdie, feather, sport - static const IconData shuttlecock = const IconDataRegular(0xf45b); - - /// Solid Shuttlecock icon - /// - /// https://fontawesome.com/icons/shuttlecock?style=solid - /// badminton, birdie, feather, sport - static const IconData solidShuttlecock = const IconDataSolid(0xf45b); - - /// Light Shuttlecock icon - /// - /// https://fontawesome.com/icons/light_shuttlecock?style=light - /// badminton, birdie, feather, sport - static const IconData lightShuttlecock = const IconDataLight(0xf45b); - - /// Duotone Shuttlecock icon - /// - /// https://fontawesome.com/icons/duotone_shuttlecock?style=duotone - /// badminton, birdie, feather, sport - static const IconDataDuotone duotoneShuttlecock = const IconDataDuotone( - 0xf45b, - secondary: const IconDataDuotone(0x10f45b), - ); - - /// Regular Sickle icon - /// - /// https://fontawesome.com/icons/sickle?style=regular - /// blade, d&d, dnd, dungeons & dragons, fantasy, weapon - static const IconData sickle = const IconDataRegular(0xf822); - - /// Solid Sickle icon - /// - /// https://fontawesome.com/icons/sickle?style=solid - /// blade, d&d, dnd, dungeons & dragons, fantasy, weapon - static const IconData solidSickle = const IconDataSolid(0xf822); - - /// Light Sickle icon - /// - /// https://fontawesome.com/icons/light_sickle?style=light - /// blade, d&d, dnd, dungeons & dragons, fantasy, weapon - static const IconData lightSickle = const IconDataLight(0xf822); - - /// Duotone Sickle icon - /// - /// https://fontawesome.com/icons/duotone_sickle?style=duotone - /// blade, d&d, dnd, dungeons & dragons, fantasy, weapon - static const IconDataDuotone duotoneSickle = const IconDataDuotone( - 0xf822, - secondary: const IconDataDuotone(0x10f822), - ); - - /// Regular Sigma (Summation) icon - /// - /// https://fontawesome.com/icons/sigma?style=regular - /// alphabet, greek, math, summation - static const IconData sigma = const IconDataRegular(0xf68b); - - /// Solid Sigma (Summation) icon - /// - /// https://fontawesome.com/icons/sigma?style=solid - /// alphabet, greek, math, summation - static const IconData solidSigma = const IconDataSolid(0xf68b); - - /// Light Sigma (Summation) icon - /// - /// https://fontawesome.com/icons/light_sigma?style=light - /// alphabet, greek, math, summation - static const IconData lightSigma = const IconDataLight(0xf68b); - - /// Duotone Sigma (Summation) icon - /// - /// https://fontawesome.com/icons/duotone_sigma?style=duotone - /// alphabet, greek, math, summation - static const IconDataDuotone duotoneSigma = const IconDataDuotone( - 0xf68b, - secondary: const IconDataDuotone(0x10f68b), - ); - - /// Regular Sign icon - /// - /// https://fontawesome.com/icons/sign?style=regular - /// directions, real estate, signage, wayfinding - static const IconData sign = const IconDataRegular(0xf4d9); - - /// Solid Sign icon - /// - /// https://fontawesome.com/icons/sign?style=solid - /// directions, real estate, signage, wayfinding - static const IconData solidSign = const IconDataSolid(0xf4d9); - - /// Light Sign icon - /// - /// https://fontawesome.com/icons/light_sign?style=light - /// directions, real estate, signage, wayfinding - static const IconData lightSign = const IconDataLight(0xf4d9); - - /// Duotone Sign icon - /// - /// https://fontawesome.com/icons/duotone_sign?style=duotone - /// directions, real estate, signage, wayfinding - static const IconDataDuotone duotoneSign = const IconDataDuotone( - 0xf4d9, - secondary: const IconDataDuotone(0x10f4d9), - ); - - /// Regular Sign In icon - /// - /// https://fontawesome.com/icons/sign-in?style=regular - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData signIn = const IconDataRegular(0xf090); - - /// Solid Sign In icon - /// - /// https://fontawesome.com/icons/sign-in?style=solid - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData solidSignIn = const IconDataSolid(0xf090); - - /// Light Sign In icon - /// - /// https://fontawesome.com/icons/light_sign-in?style=light - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData lightSignIn = const IconDataLight(0xf090); - - /// Duotone Sign In icon - /// - /// https://fontawesome.com/icons/duotone_sign-in?style=duotone - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconDataDuotone duotoneSignIn = const IconDataDuotone( - 0xf090, - secondary: const IconDataDuotone(0x10f090), - ); - - /// Regular Alternate Sign In icon - /// - /// https://fontawesome.com/icons/sign-in-alt?style=regular - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData signInAlt = const IconDataRegular(0xf2f6); - - /// Solid Alternate Sign In icon - /// - /// https://fontawesome.com/icons/sign-in-alt?style=solid - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData solidSignInAlt = const IconDataSolid(0xf2f6); - - /// Light Alternate Sign In icon - /// - /// https://fontawesome.com/icons/light_sign-in-alt?style=light - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconData lightSignInAlt = const IconDataLight(0xf2f6); - - /// Duotone Alternate Sign In icon - /// - /// https://fontawesome.com/icons/duotone_sign-in-alt?style=duotone - /// arrow, enter, join, log in, login, sign in, sign up, sign-in, signin, signup - static const IconDataDuotone duotoneSignInAlt = const IconDataDuotone( - 0xf2f6, - secondary: const IconDataDuotone(0x10f2f6), - ); - - /// Regular Sign Language icon - /// - /// https://fontawesome.com/icons/sign-language?style=regular - /// Translate, asl, deaf, hands - static const IconData signLanguage = const IconDataRegular(0xf2a7); - - /// Solid Sign Language icon - /// - /// https://fontawesome.com/icons/sign-language?style=solid - /// Translate, asl, deaf, hands - static const IconData solidSignLanguage = const IconDataSolid(0xf2a7); - - /// Light Sign Language icon - /// - /// https://fontawesome.com/icons/light_sign-language?style=light - /// Translate, asl, deaf, hands - static const IconData lightSignLanguage = const IconDataLight(0xf2a7); - - /// Duotone Sign Language icon - /// - /// https://fontawesome.com/icons/duotone_sign-language?style=duotone - /// Translate, asl, deaf, hands - static const IconDataDuotone duotoneSignLanguage = const IconDataDuotone( - 0xf2a7, - secondary: const IconDataDuotone(0x10f2a7), - ); - - /// Regular Sign Out icon - /// - /// https://fontawesome.com/icons/sign-out?style=regular - /// arrow, exit, leave, log out, logout - static const IconData signOut = const IconDataRegular(0xf08b); - - /// Solid Sign Out icon - /// - /// https://fontawesome.com/icons/sign-out?style=solid - /// arrow, exit, leave, log out, logout - static const IconData solidSignOut = const IconDataSolid(0xf08b); - - /// Light Sign Out icon - /// - /// https://fontawesome.com/icons/light_sign-out?style=light - /// arrow, exit, leave, log out, logout - static const IconData lightSignOut = const IconDataLight(0xf08b); - - /// Duotone Sign Out icon - /// - /// https://fontawesome.com/icons/duotone_sign-out?style=duotone - /// arrow, exit, leave, log out, logout - static const IconDataDuotone duotoneSignOut = const IconDataDuotone( - 0xf08b, - secondary: const IconDataDuotone(0x10f08b), - ); - - /// Regular Alternate Sign Out icon - /// - /// https://fontawesome.com/icons/sign-out-alt?style=regular - /// arrow, exit, leave, log out, logout, sign-out - static const IconData signOutAlt = const IconDataRegular(0xf2f5); - - /// Solid Alternate Sign Out icon - /// - /// https://fontawesome.com/icons/sign-out-alt?style=solid - /// arrow, exit, leave, log out, logout, sign-out - static const IconData solidSignOutAlt = const IconDataSolid(0xf2f5); - - /// Light Alternate Sign Out icon - /// - /// https://fontawesome.com/icons/light_sign-out-alt?style=light - /// arrow, exit, leave, log out, logout, sign-out - static const IconData lightSignOutAlt = const IconDataLight(0xf2f5); - - /// Duotone Alternate Sign Out icon - /// - /// https://fontawesome.com/icons/duotone_sign-out-alt?style=duotone - /// arrow, exit, leave, log out, logout, sign-out - static const IconDataDuotone duotoneSignOutAlt = const IconDataDuotone( - 0xf2f5, - secondary: const IconDataDuotone(0x10f2f5), - ); - - /// Regular signal icon - /// - /// https://fontawesome.com/icons/signal?style=regular - /// bars, graph, online, reception, status - static const IconData signal = const IconDataRegular(0xf012); - - /// Solid signal icon - /// - /// https://fontawesome.com/icons/signal?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignal = const IconDataSolid(0xf012); - - /// Light signal icon - /// - /// https://fontawesome.com/icons/light_signal?style=light - /// bars, graph, online, reception, status - static const IconData lightSignal = const IconDataLight(0xf012); - - /// Duotone signal icon - /// - /// https://fontawesome.com/icons/duotone_signal?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignal = const IconDataDuotone( - 0xf012, - secondary: const IconDataDuotone(0x10f012), - ); - - /// Regular Signal 1 icon - /// - /// https://fontawesome.com/icons/signal-1?style=regular - /// bars, graph, online, reception, status - static const IconData signal1 = const IconDataRegular(0xf68c); - - /// Solid Signal 1 icon - /// - /// https://fontawesome.com/icons/signal-1?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignal1 = const IconDataSolid(0xf68c); - - /// Light Signal 1 icon - /// - /// https://fontawesome.com/icons/light_signal-1?style=light - /// bars, graph, online, reception, status - static const IconData lightSignal1 = const IconDataLight(0xf68c); - - /// Duotone Signal 1 icon - /// - /// https://fontawesome.com/icons/duotone_signal-1?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignal1 = const IconDataDuotone( - 0xf68c, - secondary: const IconDataDuotone(0x10f68c), - ); - - /// Regular Signal 2 icon - /// - /// https://fontawesome.com/icons/signal-2?style=regular - /// bars, graph, online, reception, status - static const IconData signal2 = const IconDataRegular(0xf68d); - - /// Solid Signal 2 icon - /// - /// https://fontawesome.com/icons/signal-2?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignal2 = const IconDataSolid(0xf68d); - - /// Light Signal 2 icon - /// - /// https://fontawesome.com/icons/light_signal-2?style=light - /// bars, graph, online, reception, status - static const IconData lightSignal2 = const IconDataLight(0xf68d); - - /// Duotone Signal 2 icon - /// - /// https://fontawesome.com/icons/duotone_signal-2?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignal2 = const IconDataDuotone( - 0xf68d, - secondary: const IconDataDuotone(0x10f68d), - ); - - /// Regular Signal 3 icon - /// - /// https://fontawesome.com/icons/signal-3?style=regular - /// bars, graph, online, reception, status - static const IconData signal3 = const IconDataRegular(0xf68e); - - /// Solid Signal 3 icon - /// - /// https://fontawesome.com/icons/signal-3?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignal3 = const IconDataSolid(0xf68e); - - /// Light Signal 3 icon - /// - /// https://fontawesome.com/icons/light_signal-3?style=light - /// bars, graph, online, reception, status - static const IconData lightSignal3 = const IconDataLight(0xf68e); - - /// Duotone Signal 3 icon - /// - /// https://fontawesome.com/icons/duotone_signal-3?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignal3 = const IconDataDuotone( - 0xf68e, - secondary: const IconDataDuotone(0x10f68e), - ); - - /// Regular Signal 4 icon - /// - /// https://fontawesome.com/icons/signal-4?style=regular - /// bars, graph, online, reception, status - static const IconData signal4 = const IconDataRegular(0xf68f); - - /// Solid Signal 4 icon - /// - /// https://fontawesome.com/icons/signal-4?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignal4 = const IconDataSolid(0xf68f); - - /// Light Signal 4 icon - /// - /// https://fontawesome.com/icons/light_signal-4?style=light - /// bars, graph, online, reception, status - static const IconData lightSignal4 = const IconDataLight(0xf68f); - - /// Duotone Signal 4 icon - /// - /// https://fontawesome.com/icons/duotone_signal-4?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignal4 = const IconDataDuotone( - 0xf68f, - secondary: const IconDataDuotone(0x10f68f), - ); - - /// Regular Alternate Signal icon - /// - /// https://fontawesome.com/icons/signal-alt?style=regular - /// bars, graph, online, reception, status - static const IconData signalAlt = const IconDataRegular(0xf690); - - /// Solid Alternate Signal icon - /// - /// https://fontawesome.com/icons/signal-alt?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalAlt = const IconDataSolid(0xf690); - - /// Light Alternate Signal icon - /// - /// https://fontawesome.com/icons/light_signal-alt?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalAlt = const IconDataLight(0xf690); - - /// Duotone Alternate Signal icon - /// - /// https://fontawesome.com/icons/duotone_signal-alt?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalAlt = const IconDataDuotone( - 0xf690, - secondary: const IconDataDuotone(0x10f690), - ); - - /// Regular Alternate Signal 1 icon - /// - /// https://fontawesome.com/icons/signal-alt-1?style=regular - /// bars, graph, online, reception, status - static const IconData signalAlt1 = const IconDataRegular(0xf691); - - /// Solid Alternate Signal 1 icon - /// - /// https://fontawesome.com/icons/signal-alt-1?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalAlt1 = const IconDataSolid(0xf691); - - /// Light Alternate Signal 1 icon - /// - /// https://fontawesome.com/icons/light_signal-alt-1?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalAlt1 = const IconDataLight(0xf691); - - /// Duotone Alternate Signal 1 icon - /// - /// https://fontawesome.com/icons/duotone_signal-alt-1?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalAlt1 = const IconDataDuotone( - 0xf691, - secondary: const IconDataDuotone(0x10f691), - ); - - /// Regular Alternate Signal 2 icon - /// - /// https://fontawesome.com/icons/signal-alt-2?style=regular - /// bars, graph, online, reception, status - static const IconData signalAlt2 = const IconDataRegular(0xf692); - - /// Solid Alternate Signal 2 icon - /// - /// https://fontawesome.com/icons/signal-alt-2?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalAlt2 = const IconDataSolid(0xf692); - - /// Light Alternate Signal 2 icon - /// - /// https://fontawesome.com/icons/light_signal-alt-2?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalAlt2 = const IconDataLight(0xf692); - - /// Duotone Alternate Signal 2 icon - /// - /// https://fontawesome.com/icons/duotone_signal-alt-2?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalAlt2 = const IconDataDuotone( - 0xf692, - secondary: const IconDataDuotone(0x10f692), - ); - - /// Regular Alternate Signal 3 icon - /// - /// https://fontawesome.com/icons/signal-alt-3?style=regular - /// bars, graph, online, reception, status - static const IconData signalAlt3 = const IconDataRegular(0xf693); - - /// Solid Alternate Signal 3 icon - /// - /// https://fontawesome.com/icons/signal-alt-3?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalAlt3 = const IconDataSolid(0xf693); - - /// Light Alternate Signal 3 icon - /// - /// https://fontawesome.com/icons/light_signal-alt-3?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalAlt3 = const IconDataLight(0xf693); - - /// Duotone Alternate Signal 3 icon - /// - /// https://fontawesome.com/icons/duotone_signal-alt-3?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalAlt3 = const IconDataDuotone( - 0xf693, - secondary: const IconDataDuotone(0x10f693), - ); - - /// Regular Alternate Signal Slash icon - /// - /// https://fontawesome.com/icons/signal-alt-slash?style=regular - /// bars, graph, online, reception, status - static const IconData signalAltSlash = const IconDataRegular(0xf694); - - /// Solid Alternate Signal Slash icon - /// - /// https://fontawesome.com/icons/signal-alt-slash?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalAltSlash = const IconDataSolid(0xf694); - - /// Light Alternate Signal Slash icon - /// - /// https://fontawesome.com/icons/light_signal-alt-slash?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalAltSlash = const IconDataLight(0xf694); - - /// Duotone Alternate Signal Slash icon - /// - /// https://fontawesome.com/icons/duotone_signal-alt-slash?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalAltSlash = const IconDataDuotone( - 0xf694, - secondary: const IconDataDuotone(0x10f694), - ); - - /// Regular Signal Slash icon - /// - /// https://fontawesome.com/icons/signal-slash?style=regular - /// bars, graph, online, reception, status - static const IconData signalSlash = const IconDataRegular(0xf695); - - /// Solid Signal Slash icon - /// - /// https://fontawesome.com/icons/signal-slash?style=solid - /// bars, graph, online, reception, status - static const IconData solidSignalSlash = const IconDataSolid(0xf695); - - /// Light Signal Slash icon - /// - /// https://fontawesome.com/icons/light_signal-slash?style=light - /// bars, graph, online, reception, status - static const IconData lightSignalSlash = const IconDataLight(0xf695); - - /// Duotone Signal Slash icon - /// - /// https://fontawesome.com/icons/duotone_signal-slash?style=duotone - /// bars, graph, online, reception, status - static const IconDataDuotone duotoneSignalSlash = const IconDataDuotone( - 0xf695, - secondary: const IconDataDuotone(0x10f695), - ); - - /// Regular Signal Stream icon - /// - /// https://fontawesome.com/icons/signal-stream?style=regular - /// podcast, radio, sisngal, streaming, wave, wifi, wireless - static const IconData signalStream = const IconDataRegular(0xf8dd); - - /// Solid Signal Stream icon - /// - /// https://fontawesome.com/icons/signal-stream?style=solid - /// podcast, radio, sisngal, streaming, wave, wifi, wireless - static const IconData solidSignalStream = const IconDataSolid(0xf8dd); - - /// Light Signal Stream icon - /// - /// https://fontawesome.com/icons/light_signal-stream?style=light - /// podcast, radio, sisngal, streaming, wave, wifi, wireless - static const IconData lightSignalStream = const IconDataLight(0xf8dd); - - /// Duotone Signal Stream icon - /// - /// https://fontawesome.com/icons/duotone_signal-stream?style=duotone - /// podcast, radio, sisngal, streaming, wave, wifi, wireless - static const IconDataDuotone duotoneSignalStream = const IconDataDuotone( - 0xf8dd, - secondary: const IconDataDuotone(0x10f8dd), - ); - - /// Regular Signature icon - /// - /// https://fontawesome.com/icons/signature?style=regular - /// John Hancock, cursive, name, writing - static const IconData signature = const IconDataRegular(0xf5b7); - - /// Solid Signature icon - /// - /// https://fontawesome.com/icons/signature?style=solid - /// John Hancock, cursive, name, writing - static const IconData solidSignature = const IconDataSolid(0xf5b7); - - /// Light Signature icon - /// - /// https://fontawesome.com/icons/light_signature?style=light - /// John Hancock, cursive, name, writing - static const IconData lightSignature = const IconDataLight(0xf5b7); - - /// Duotone Signature icon - /// - /// https://fontawesome.com/icons/duotone_signature?style=duotone - /// John Hancock, cursive, name, writing - static const IconDataDuotone duotoneSignature = const IconDataDuotone( - 0xf5b7, - secondary: const IconDataDuotone(0x10f5b7), - ); - - /// Regular SIM Card icon - /// - /// https://fontawesome.com/icons/sim-card?style=regular - /// hard drive, hardware, portable, storage, technology, tiny - static const IconData simCard = const IconDataRegular(0xf7c4); - - /// Solid SIM Card icon - /// - /// https://fontawesome.com/icons/sim-card?style=solid - /// hard drive, hardware, portable, storage, technology, tiny - static const IconData solidSimCard = const IconDataSolid(0xf7c4); - - /// Light SIM Card icon - /// - /// https://fontawesome.com/icons/light_sim-card?style=light - /// hard drive, hardware, portable, storage, technology, tiny - static const IconData lightSimCard = const IconDataLight(0xf7c4); - - /// Duotone SIM Card icon - /// - /// https://fontawesome.com/icons/duotone_sim-card?style=duotone - /// hard drive, hardware, portable, storage, technology, tiny - static const IconDataDuotone duotoneSimCard = const IconDataDuotone( - 0xf7c4, - secondary: const IconDataDuotone(0x10f7c4), - ); - - /// Brands SimplyBuilt icon - /// - /// https://fontawesome.com/icons/simplybuilt?style=brands - static const IconData simplybuilt = const IconDataBrands(0xf215); - - /// Regular Sink icon - /// - /// https://fontawesome.com/icons/sink?style=regular - /// bathroom, covid-19, faucet, kitchen, wash - static const IconData sink = const IconDataRegular(0xe06d); - - /// Light Sink icon - /// - /// https://fontawesome.com/icons/light_sink?style=light - /// bathroom, covid-19, faucet, kitchen, wash - static const IconData lightSink = const IconDataLight(0xe06d); - - /// Solid Sink icon - /// - /// https://fontawesome.com/icons/sink?style=solid - /// bathroom, covid-19, faucet, kitchen, wash - static const IconData solidSink = const IconDataSolid(0xe06d); - - /// Duotone Sink icon - /// - /// https://fontawesome.com/icons/duotone_sink?style=duotone - /// bathroom, covid-19, faucet, kitchen, wash - static const IconDataDuotone duotoneSink = const IconDataDuotone( - 0xe06d, - secondary: const IconDataDuotone(0x10e06d), - ); - - /// Regular Siren icon - /// - /// https://fontawesome.com/icons/siren?style=regular - /// alarm, alert, ambulance, loud, police, warning - static const IconData siren = const IconDataRegular(0xe02d); - - /// Solid Siren icon - /// - /// https://fontawesome.com/icons/siren?style=solid - /// alarm, alert, ambulance, loud, police, warning - static const IconData solidSiren = const IconDataSolid(0xe02d); - - /// Light Siren icon - /// - /// https://fontawesome.com/icons/light_siren?style=light - /// alarm, alert, ambulance, loud, police, warning - static const IconData lightSiren = const IconDataLight(0xe02d); - - /// Duotone Siren icon - /// - /// https://fontawesome.com/icons/duotone_siren?style=duotone - /// alarm, alert, ambulance, loud, police, warning - static const IconDataDuotone duotoneSiren = const IconDataDuotone( - 0xe02d, - secondary: const IconDataDuotone(0x10e02d), - ); - - /// Regular Siren On icon - /// - /// https://fontawesome.com/icons/siren-on?style=regular - /// alarm, alert, ambulance, loud, police, warning - static const IconData sirenOn = const IconDataRegular(0xe02e); - - /// Solid Siren On icon - /// - /// https://fontawesome.com/icons/siren-on?style=solid - /// alarm, alert, ambulance, loud, police, warning - static const IconData solidSirenOn = const IconDataSolid(0xe02e); - - /// Light Siren On icon - /// - /// https://fontawesome.com/icons/light_siren-on?style=light - /// alarm, alert, ambulance, loud, police, warning - static const IconData lightSirenOn = const IconDataLight(0xe02e); - - /// Duotone Siren On icon - /// - /// https://fontawesome.com/icons/duotone_siren-on?style=duotone - /// alarm, alert, ambulance, loud, police, warning - static const IconDataDuotone duotoneSirenOn = const IconDataDuotone( - 0xe02e, - secondary: const IconDataDuotone(0x10e02e), - ); - - /// Brands SISTRIX icon - /// - /// https://fontawesome.com/icons/sistrix?style=brands - static const IconData sistrix = const IconDataBrands(0xf3ee); - - /// Regular Sitemap icon - /// - /// https://fontawesome.com/icons/sitemap?style=regular - /// directory, hierarchy, ia, information architecture, organization - static const IconData sitemap = const IconDataRegular(0xf0e8); - - /// Solid Sitemap icon - /// - /// https://fontawesome.com/icons/sitemap?style=solid - /// directory, hierarchy, ia, information architecture, organization - static const IconData solidSitemap = const IconDataSolid(0xf0e8); - - /// Light Sitemap icon - /// - /// https://fontawesome.com/icons/light_sitemap?style=light - /// directory, hierarchy, ia, information architecture, organization - static const IconData lightSitemap = const IconDataLight(0xf0e8); - - /// Duotone Sitemap icon - /// - /// https://fontawesome.com/icons/duotone_sitemap?style=duotone - /// directory, hierarchy, ia, information architecture, organization - static const IconDataDuotone duotoneSitemap = const IconDataDuotone( - 0xf0e8, - secondary: const IconDataDuotone(0x10f0e8), - ); - - /// Brands Sith icon - /// - /// https://fontawesome.com/icons/sith?style=brands - static const IconData sith = const IconDataBrands(0xf512); - - /// Regular Skating icon - /// - /// https://fontawesome.com/icons/skating?style=regular - /// activity, figure skating, fitness, ice, person, winter - static const IconData skating = const IconDataRegular(0xf7c5); - - /// Solid Skating icon - /// - /// https://fontawesome.com/icons/skating?style=solid - /// activity, figure skating, fitness, ice, person, winter - static const IconData solidSkating = const IconDataSolid(0xf7c5); - - /// Light Skating icon - /// - /// https://fontawesome.com/icons/light_skating?style=light - /// activity, figure skating, fitness, ice, person, winter - static const IconData lightSkating = const IconDataLight(0xf7c5); - - /// Duotone Skating icon - /// - /// https://fontawesome.com/icons/duotone_skating?style=duotone - /// activity, figure skating, fitness, ice, person, winter - static const IconDataDuotone duotoneSkating = const IconDataDuotone( - 0xf7c5, - secondary: const IconDataDuotone(0x10f7c5), - ); - - /// Regular Skeleton icon - /// - /// https://fontawesome.com/icons/skeleton?style=regular - /// bones, skeletal, vertebrate, x-ray - static const IconData skeleton = const IconDataRegular(0xf620); - - /// Solid Skeleton icon - /// - /// https://fontawesome.com/icons/skeleton?style=solid - /// bones, skeletal, vertebrate, x-ray - static const IconData solidSkeleton = const IconDataSolid(0xf620); - - /// Light Skeleton icon - /// - /// https://fontawesome.com/icons/light_skeleton?style=light - /// bones, skeletal, vertebrate, x-ray - static const IconData lightSkeleton = const IconDataLight(0xf620); - - /// Duotone Skeleton icon - /// - /// https://fontawesome.com/icons/duotone_skeleton?style=duotone - /// bones, skeletal, vertebrate, x-ray - static const IconDataDuotone duotoneSkeleton = const IconDataDuotone( - 0xf620, - secondary: const IconDataDuotone(0x10f620), - ); - - /// Brands Sketch icon - /// - /// https://fontawesome.com/icons/sketch?style=brands - /// app, design, interface - static const IconData sketch = const IconDataBrands(0xf7c6); - - /// Regular Ski Jump icon - /// - /// https://fontawesome.com/icons/ski-jump?style=regular - /// activity, fast, fitness, olympics, outdoors, person, snowman - static const IconData skiJump = const IconDataRegular(0xf7c7); - - /// Solid Ski Jump icon - /// - /// https://fontawesome.com/icons/ski-jump?style=solid - /// activity, fast, fitness, olympics, outdoors, person, snowman - static const IconData solidSkiJump = const IconDataSolid(0xf7c7); - - /// Light Ski Jump icon - /// - /// https://fontawesome.com/icons/light_ski-jump?style=light - /// activity, fast, fitness, olympics, outdoors, person, snowman - static const IconData lightSkiJump = const IconDataLight(0xf7c7); - - /// Duotone Ski Jump icon - /// - /// https://fontawesome.com/icons/duotone_ski-jump?style=duotone - /// activity, fast, fitness, olympics, outdoors, person, snowman - static const IconDataDuotone duotoneSkiJump = const IconDataDuotone( - 0xf7c7, - secondary: const IconDataDuotone(0x10f7c7), - ); - - /// Regular Ski Lift icon - /// - /// https://fontawesome.com/icons/ski-lift?style=regular - /// machine, outdoors, resort, seasonal, seat, skiing, tow - static const IconData skiLift = const IconDataRegular(0xf7c8); - - /// Solid Ski Lift icon - /// - /// https://fontawesome.com/icons/ski-lift?style=solid - /// machine, outdoors, resort, seasonal, seat, skiing, tow - static const IconData solidSkiLift = const IconDataSolid(0xf7c8); - - /// Light Ski Lift icon - /// - /// https://fontawesome.com/icons/light_ski-lift?style=light - /// machine, outdoors, resort, seasonal, seat, skiing, tow - static const IconData lightSkiLift = const IconDataLight(0xf7c8); - - /// Duotone Ski Lift icon - /// - /// https://fontawesome.com/icons/duotone_ski-lift?style=duotone - /// machine, outdoors, resort, seasonal, seat, skiing, tow - static const IconDataDuotone duotoneSkiLift = const IconDataDuotone( - 0xf7c8, - secondary: const IconDataDuotone(0x10f7c8), - ); - - /// Regular Skiing icon - /// - /// https://fontawesome.com/icons/skiing?style=regular - /// activity, downhill, fast, fitness, olympics, outdoors, person, seasonal, slalom - static const IconData skiing = const IconDataRegular(0xf7c9); - - /// Solid Skiing icon - /// - /// https://fontawesome.com/icons/skiing?style=solid - /// activity, downhill, fast, fitness, olympics, outdoors, person, seasonal, slalom - static const IconData solidSkiing = const IconDataSolid(0xf7c9); - - /// Light Skiing icon - /// - /// https://fontawesome.com/icons/light_skiing?style=light - /// activity, downhill, fast, fitness, olympics, outdoors, person, seasonal, slalom - static const IconData lightSkiing = const IconDataLight(0xf7c9); - - /// Duotone Skiing icon - /// - /// https://fontawesome.com/icons/duotone_skiing?style=duotone - /// activity, downhill, fast, fitness, olympics, outdoors, person, seasonal, slalom - static const IconDataDuotone duotoneSkiing = const IconDataDuotone( - 0xf7c9, - secondary: const IconDataDuotone(0x10f7c9), - ); - - /// Regular Skiing Nordic icon - /// - /// https://fontawesome.com/icons/skiing-nordic?style=regular - /// activity, cross country, fitness, outdoors, person, seasonal - static const IconData skiingNordic = const IconDataRegular(0xf7ca); - - /// Solid Skiing Nordic icon - /// - /// https://fontawesome.com/icons/skiing-nordic?style=solid - /// activity, cross country, fitness, outdoors, person, seasonal - static const IconData solidSkiingNordic = const IconDataSolid(0xf7ca); - - /// Light Skiing Nordic icon - /// - /// https://fontawesome.com/icons/light_skiing-nordic?style=light - /// activity, cross country, fitness, outdoors, person, seasonal - static const IconData lightSkiingNordic = const IconDataLight(0xf7ca); - - /// Duotone Skiing Nordic icon - /// - /// https://fontawesome.com/icons/duotone_skiing-nordic?style=duotone - /// activity, cross country, fitness, outdoors, person, seasonal - static const IconDataDuotone duotoneSkiingNordic = const IconDataDuotone( - 0xf7ca, - secondary: const IconDataDuotone(0x10f7ca), - ); - - /// Regular Skull icon - /// - /// https://fontawesome.com/icons/skull?style=regular - /// bones, skeleton, x-ray, yorick - static const IconData skull = const IconDataRegular(0xf54c); - - /// Solid Skull icon - /// - /// https://fontawesome.com/icons/skull?style=solid - /// bones, skeleton, x-ray, yorick - static const IconData solidSkull = const IconDataSolid(0xf54c); - - /// Light Skull icon - /// - /// https://fontawesome.com/icons/light_skull?style=light - /// bones, skeleton, x-ray, yorick - static const IconData lightSkull = const IconDataLight(0xf54c); - - /// Duotone Skull icon - /// - /// https://fontawesome.com/icons/duotone_skull?style=duotone - /// bones, skeleton, x-ray, yorick - static const IconDataDuotone duotoneSkull = const IconDataDuotone( - 0xf54c, - secondary: const IconDataDuotone(0x10f54c), - ); - - /// Regular Cow Skull icon - /// - /// https://fontawesome.com/icons/skull-cow?style=regular - /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData skullCow = const IconDataRegular(0xf8de); - - /// Light Cow Skull icon - /// - /// https://fontawesome.com/icons/light_skull-cow?style=light - /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData lightSkullCow = const IconDataLight(0xf8de); - - /// Solid Cow Skull icon - /// - /// https://fontawesome.com/icons/skull-cow?style=solid - /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconData solidSkullCow = const IconDataSolid(0xf8de); - - /// Duotone Cow Skull icon - /// - /// https://fontawesome.com/icons/duotone_skull-cow?style=duotone - /// barren, cowboy, dead, desert, horns, old west, skeleton, western - static const IconDataDuotone duotoneSkullCow = const IconDataDuotone( - 0xf8de, - secondary: const IconDataDuotone(0x10f8de), - ); - - /// Regular Skull & Crossbones icon - /// - /// https://fontawesome.com/icons/skull-crossbones?style=regular - /// Dungeons & Dragons, alert, bones, d&d, danger, dead, deadly, death, dnd, fantasy, halloween, holiday, jolly-roger, pirate, poison, skeleton, warning - static const IconData skullCrossbones = const IconDataRegular(0xf714); - - /// Solid Skull & Crossbones icon - /// - /// https://fontawesome.com/icons/skull-crossbones?style=solid - /// Dungeons & Dragons, alert, bones, d&d, danger, dead, deadly, death, dnd, fantasy, halloween, holiday, jolly-roger, pirate, poison, skeleton, warning - static const IconData solidSkullCrossbones = const IconDataSolid(0xf714); - - /// Light Skull & Crossbones icon - /// - /// https://fontawesome.com/icons/light_skull-crossbones?style=light - /// Dungeons & Dragons, alert, bones, d&d, danger, dead, deadly, death, dnd, fantasy, halloween, holiday, jolly-roger, pirate, poison, skeleton, warning - static const IconData lightSkullCrossbones = const IconDataLight(0xf714); - - /// Duotone Skull & Crossbones icon - /// - /// https://fontawesome.com/icons/duotone_skull-crossbones?style=duotone - /// Dungeons & Dragons, alert, bones, d&d, danger, dead, deadly, death, dnd, fantasy, halloween, holiday, jolly-roger, pirate, poison, skeleton, warning - static const IconDataDuotone duotoneSkullCrossbones = const IconDataDuotone( - 0xf714, - secondary: const IconDataDuotone(0x10f714), - ); - - /// Brands skyatlas icon - /// - /// https://fontawesome.com/icons/skyatlas?style=brands - static const IconData skyatlas = const IconDataBrands(0xf216); - - /// Brands Skype icon - /// - /// https://fontawesome.com/icons/skype?style=brands - static const IconData skype = const IconDataBrands(0xf17e); - - /// Brands Slack Logo icon - /// - /// https://fontawesome.com/icons/slack?style=brands - /// anchor, hash, hashtag - static const IconData slack = const IconDataBrands(0xf198); - - /// Brands Slack Hashtag icon - /// - /// https://fontawesome.com/icons/slack-hash?style=brands - /// anchor, hash, hashtag - static const IconData slackHash = const IconDataBrands(0xf3ef); - - /// Regular Slash icon - /// - /// https://fontawesome.com/icons/slash?style=regular - /// cancel, close, mute, off, stop, x - static const IconData slash = const IconDataRegular(0xf715); - - /// Solid Slash icon - /// - /// https://fontawesome.com/icons/slash?style=solid - /// cancel, close, mute, off, stop, x - static const IconData solidSlash = const IconDataSolid(0xf715); - - /// Light Slash icon - /// - /// https://fontawesome.com/icons/light_slash?style=light - /// cancel, close, mute, off, stop, x - static const IconData lightSlash = const IconDataLight(0xf715); - - /// Duotone Slash icon - /// - /// https://fontawesome.com/icons/duotone_slash?style=duotone - /// cancel, close, mute, off, stop, x - static const IconDataDuotone duotoneSlash = const IconDataDuotone( - 0xf715, - secondary: const IconDataDuotone(0x10f715), - ); - - /// Regular Sledding icon - /// - /// https://fontawesome.com/icons/sledding?style=regular - /// activity, luge, outdoors, person, seasonal, snow, toboggan - static const IconData sledding = const IconDataRegular(0xf7cb); - - /// Solid Sledding icon - /// - /// https://fontawesome.com/icons/sledding?style=solid - /// activity, luge, outdoors, person, seasonal, snow, toboggan - static const IconData solidSledding = const IconDataSolid(0xf7cb); - - /// Light Sledding icon - /// - /// https://fontawesome.com/icons/light_sledding?style=light - /// activity, luge, outdoors, person, seasonal, snow, toboggan - static const IconData lightSledding = const IconDataLight(0xf7cb); - - /// Duotone Sledding icon - /// - /// https://fontawesome.com/icons/duotone_sledding?style=duotone - /// activity, luge, outdoors, person, seasonal, snow, toboggan - static const IconDataDuotone duotoneSledding = const IconDataDuotone( - 0xf7cb, - secondary: const IconDataDuotone(0x10f7cb), - ); - - /// Regular Sleigh icon - /// - /// https://fontawesome.com/icons/sleigh?style=regular - /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData sleigh = const IconDataRegular(0xf7cc); - - /// Solid Sleigh icon - /// - /// https://fontawesome.com/icons/sleigh?style=solid - /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData solidSleigh = const IconDataSolid(0xf7cc); - - /// Light Sleigh icon - /// - /// https://fontawesome.com/icons/light_sleigh?style=light - /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconData lightSleigh = const IconDataLight(0xf7cc); - - /// Duotone Sleigh icon - /// - /// https://fontawesome.com/icons/duotone_sleigh?style=duotone - /// christmas, claus, fly, holiday, santa, sled, snow, xmas - static const IconDataDuotone duotoneSleigh = const IconDataDuotone( - 0xf7cc, - secondary: const IconDataDuotone(0x10f7cc), - ); - - /// Regular Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/sliders-h?style=regular - /// adjust, settings, sliders, toggle - static const IconData slidersH = const IconDataRegular(0xf1de); - - /// Solid Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/sliders-h?style=solid - /// adjust, settings, sliders, toggle - static const IconData solidSlidersH = const IconDataSolid(0xf1de); - - /// Light Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/light_sliders-h?style=light - /// adjust, settings, sliders, toggle - static const IconData lightSlidersH = const IconDataLight(0xf1de); - - /// Duotone Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/duotone_sliders-h?style=duotone - /// adjust, settings, sliders, toggle - static const IconDataDuotone duotoneSlidersH = const IconDataDuotone( - 0xf1de, - secondary: const IconDataDuotone(0x10f1de), - ); - - /// Regular Square Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/sliders-h-square?style=regular - /// adjust, settings, sliders, toggle - static const IconData slidersHSquare = const IconDataRegular(0xf3f0); - - /// Solid Square Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/sliders-h-square?style=solid - /// adjust, settings, sliders, toggle - static const IconData solidSlidersHSquare = const IconDataSolid(0xf3f0); - - /// Light Square Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/light_sliders-h-square?style=light - /// adjust, settings, sliders, toggle - static const IconData lightSlidersHSquare = const IconDataLight(0xf3f0); - - /// Duotone Square Horizontal Sliders icon - /// - /// https://fontawesome.com/icons/duotone_sliders-h-square?style=duotone - /// adjust, settings, sliders, toggle - static const IconDataDuotone duotoneSlidersHSquare = const IconDataDuotone( - 0xf3f0, - secondary: const IconDataDuotone(0x10f3f0), - ); - - /// Regular Vertical Sliders icon - /// - /// https://fontawesome.com/icons/sliders-v?style=regular - /// adjust, settings, sliders, toggle - static const IconData slidersV = const IconDataRegular(0xf3f1); - - /// Solid Vertical Sliders icon - /// - /// https://fontawesome.com/icons/sliders-v?style=solid - /// adjust, settings, sliders, toggle - static const IconData solidSlidersV = const IconDataSolid(0xf3f1); - - /// Light Vertical Sliders icon - /// - /// https://fontawesome.com/icons/light_sliders-v?style=light - /// adjust, settings, sliders, toggle - static const IconData lightSlidersV = const IconDataLight(0xf3f1); - - /// Duotone Vertical Sliders icon - /// - /// https://fontawesome.com/icons/duotone_sliders-v?style=duotone - /// adjust, settings, sliders, toggle - static const IconDataDuotone duotoneSlidersV = const IconDataDuotone( - 0xf3f1, - secondary: const IconDataDuotone(0x10f3f1), - ); - - /// Regular Square Vertical Sliders icon - /// - /// https://fontawesome.com/icons/sliders-v-square?style=regular - /// adjust, settings, sliders, toggle - static const IconData slidersVSquare = const IconDataRegular(0xf3f2); - - /// Solid Square Vertical Sliders icon - /// - /// https://fontawesome.com/icons/sliders-v-square?style=solid - /// adjust, settings, sliders, toggle - static const IconData solidSlidersVSquare = const IconDataSolid(0xf3f2); - - /// Light Square Vertical Sliders icon - /// - /// https://fontawesome.com/icons/light_sliders-v-square?style=light - /// adjust, settings, sliders, toggle - static const IconData lightSlidersVSquare = const IconDataLight(0xf3f2); - - /// Duotone Square Vertical Sliders icon - /// - /// https://fontawesome.com/icons/duotone_sliders-v-square?style=duotone - /// adjust, settings, sliders, toggle - static const IconDataDuotone duotoneSlidersVSquare = const IconDataDuotone( - 0xf3f2, - secondary: const IconDataDuotone(0x10f3f2), - ); - - /// Brands Slideshare icon - /// - /// https://fontawesome.com/icons/slideshare?style=brands - static const IconData slideshare = const IconDataBrands(0xf1e7); - - /// Regular Smiling Face icon - /// - /// https://fontawesome.com/icons/smile?style=regular - /// approve, emoticon, face, happy, rating, satisfied - static const IconData smile = const IconDataRegular(0xf118); - - /// Solid Smiling Face icon - /// - /// https://fontawesome.com/icons/smile?style=solid - /// approve, emoticon, face, happy, rating, satisfied - static const IconData solidSmile = const IconDataSolid(0xf118); - - /// Light Smiling Face icon - /// - /// https://fontawesome.com/icons/light_smile?style=light - /// approve, emoticon, face, happy, rating, satisfied - static const IconData lightSmile = const IconDataLight(0xf118); - - /// Duotone Smiling Face icon - /// - /// https://fontawesome.com/icons/duotone_smile?style=duotone - /// approve, emoticon, face, happy, rating, satisfied - static const IconDataDuotone duotoneSmile = const IconDataDuotone( - 0xf118, - secondary: const IconDataDuotone(0x10f118), - ); - - /// Regular Beaming Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/smile-beam?style=regular - /// emoticon, face, happy, positive - static const IconData smileBeam = const IconDataRegular(0xf5b8); - - /// Solid Beaming Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/smile-beam?style=solid - /// emoticon, face, happy, positive - static const IconData solidSmileBeam = const IconDataSolid(0xf5b8); - - /// Light Beaming Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/light_smile-beam?style=light - /// emoticon, face, happy, positive - static const IconData lightSmileBeam = const IconDataLight(0xf5b8); - - /// Duotone Beaming Face With Smiling Eyes icon - /// - /// https://fontawesome.com/icons/duotone_smile-beam?style=duotone - /// emoticon, face, happy, positive - static const IconDataDuotone duotoneSmileBeam = const IconDataDuotone( - 0xf5b8, - secondary: const IconDataDuotone(0x10f5b8), - ); - - /// Regular Smiling Face Plus icon - /// - /// https://fontawesome.com/icons/smile-plus?style=regular - /// add, emoticon, face, happy, new - static const IconData smilePlus = const IconDataRegular(0xf5b9); - - /// Solid Smiling Face Plus icon - /// - /// https://fontawesome.com/icons/smile-plus?style=solid - /// add, emoticon, face, happy, new - static const IconData solidSmilePlus = const IconDataSolid(0xf5b9); - - /// Light Smiling Face Plus icon - /// - /// https://fontawesome.com/icons/light_smile-plus?style=light - /// add, emoticon, face, happy, new - static const IconData lightSmilePlus = const IconDataLight(0xf5b9); - - /// Duotone Smiling Face Plus icon - /// - /// https://fontawesome.com/icons/duotone_smile-plus?style=duotone - /// add, emoticon, face, happy, new - static const IconDataDuotone duotoneSmilePlus = const IconDataDuotone( - 0xf5b9, - secondary: const IconDataDuotone(0x10f5b9), - ); - - /// Regular Winking Face icon - /// - /// https://fontawesome.com/icons/smile-wink?style=regular - /// emoticon, face, happy, hint, joke - static const IconData smileWink = const IconDataRegular(0xf4da); - - /// Solid Winking Face icon - /// - /// https://fontawesome.com/icons/smile-wink?style=solid - /// emoticon, face, happy, hint, joke - static const IconData solidSmileWink = const IconDataSolid(0xf4da); - - /// Light Winking Face icon - /// - /// https://fontawesome.com/icons/light_smile-wink?style=light - /// emoticon, face, happy, hint, joke - static const IconData lightSmileWink = const IconDataLight(0xf4da); - - /// Duotone Winking Face icon - /// - /// https://fontawesome.com/icons/duotone_smile-wink?style=duotone - /// emoticon, face, happy, hint, joke - static const IconDataDuotone duotoneSmileWink = const IconDataDuotone( - 0xf4da, - secondary: const IconDataDuotone(0x10f4da), - ); - - /// Regular Smog icon - /// - /// https://fontawesome.com/icons/smog?style=regular - /// dragon, fog, haze, pollution, smoke, weather - static const IconData smog = const IconDataRegular(0xf75f); - - /// Solid Smog icon - /// - /// https://fontawesome.com/icons/smog?style=solid - /// dragon, fog, haze, pollution, smoke, weather - static const IconData solidSmog = const IconDataSolid(0xf75f); - - /// Light Smog icon - /// - /// https://fontawesome.com/icons/light_smog?style=light - /// dragon, fog, haze, pollution, smoke, weather - static const IconData lightSmog = const IconDataLight(0xf75f); - - /// Duotone Smog icon - /// - /// https://fontawesome.com/icons/duotone_smog?style=duotone - /// dragon, fog, haze, pollution, smoke, weather - static const IconDataDuotone duotoneSmog = const IconDataDuotone( - 0xf75f, - secondary: const IconDataDuotone(0x10f75f), - ); - - /// Regular Smoke icon - /// - /// https://fontawesome.com/icons/smoke?style=regular - /// cloud, fire, fog, haze - static const IconData smoke = const IconDataRegular(0xf760); - - /// Solid Smoke icon - /// - /// https://fontawesome.com/icons/smoke?style=solid - /// cloud, fire, fog, haze - static const IconData solidSmoke = const IconDataSolid(0xf760); - - /// Light Smoke icon - /// - /// https://fontawesome.com/icons/light_smoke?style=light - /// cloud, fire, fog, haze - static const IconData lightSmoke = const IconDataLight(0xf760); - - /// Duotone Smoke icon - /// - /// https://fontawesome.com/icons/duotone_smoke?style=duotone - /// cloud, fire, fog, haze - static const IconDataDuotone duotoneSmoke = const IconDataDuotone( - 0xf760, - secondary: const IconDataDuotone(0x10f760), - ); - - /// Regular Smoking icon - /// - /// https://fontawesome.com/icons/smoking?style=regular - /// cancer, cigarette, nicotine, smoking status, tobacco - static const IconData smoking = const IconDataRegular(0xf48d); - - /// Solid Smoking icon - /// - /// https://fontawesome.com/icons/smoking?style=solid - /// cancer, cigarette, nicotine, smoking status, tobacco - static const IconData solidSmoking = const IconDataSolid(0xf48d); - - /// Light Smoking icon - /// - /// https://fontawesome.com/icons/light_smoking?style=light - /// cancer, cigarette, nicotine, smoking status, tobacco - static const IconData lightSmoking = const IconDataLight(0xf48d); - - /// Duotone Smoking icon - /// - /// https://fontawesome.com/icons/duotone_smoking?style=duotone - /// cancer, cigarette, nicotine, smoking status, tobacco - static const IconDataDuotone duotoneSmoking = const IconDataDuotone( - 0xf48d, - secondary: const IconDataDuotone(0x10f48d), - ); - - /// Regular Smoking Ban icon - /// - /// https://fontawesome.com/icons/smoking-ban?style=regular - /// ban, cancel, no smoking, non-smoking - static const IconData smokingBan = const IconDataRegular(0xf54d); - - /// Solid Smoking Ban icon - /// - /// https://fontawesome.com/icons/smoking-ban?style=solid - /// ban, cancel, no smoking, non-smoking - static const IconData solidSmokingBan = const IconDataSolid(0xf54d); - - /// Light Smoking Ban icon - /// - /// https://fontawesome.com/icons/light_smoking-ban?style=light - /// ban, cancel, no smoking, non-smoking - static const IconData lightSmokingBan = const IconDataLight(0xf54d); - - /// Duotone Smoking Ban icon - /// - /// https://fontawesome.com/icons/duotone_smoking-ban?style=duotone - /// ban, cancel, no smoking, non-smoking - static const IconDataDuotone duotoneSmokingBan = const IconDataDuotone( - 0xf54d, - secondary: const IconDataDuotone(0x10f54d), - ); - - /// Regular SMS icon - /// - /// https://fontawesome.com/icons/sms?style=regular - /// chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData sms = const IconDataRegular(0xf7cd); - - /// Solid SMS icon - /// - /// https://fontawesome.com/icons/sms?style=solid - /// chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData solidSms = const IconDataSolid(0xf7cd); - - /// Light SMS icon - /// - /// https://fontawesome.com/icons/light_sms?style=light - /// chat, conversation, message, mobile, notification, phone, sms, texting - static const IconData lightSms = const IconDataLight(0xf7cd); - - /// Duotone SMS icon - /// - /// https://fontawesome.com/icons/duotone_sms?style=duotone - /// chat, conversation, message, mobile, notification, phone, sms, texting - static const IconDataDuotone duotoneSms = const IconDataDuotone( - 0xf7cd, - secondary: const IconDataDuotone(0x10f7cd), - ); - - /// Regular Snake icon - /// - /// https://fontawesome.com/icons/snake?style=regular - /// cobra, fauna, reptile, slither - static const IconData snake = const IconDataRegular(0xf716); - - /// Solid Snake icon - /// - /// https://fontawesome.com/icons/snake?style=solid - /// cobra, fauna, reptile, slither - static const IconData solidSnake = const IconDataSolid(0xf716); - - /// Light Snake icon - /// - /// https://fontawesome.com/icons/light_snake?style=light - /// cobra, fauna, reptile, slither - static const IconData lightSnake = const IconDataLight(0xf716); - - /// Duotone Snake icon - /// - /// https://fontawesome.com/icons/duotone_snake?style=duotone - /// cobra, fauna, reptile, slither - static const IconDataDuotone duotoneSnake = const IconDataDuotone( - 0xf716, - secondary: const IconDataDuotone(0x10f716), - ); - - /// Brands Snapchat icon - /// - /// https://fontawesome.com/icons/snapchat?style=brands - static const IconData snapchat = const IconDataBrands(0xf2ab); - - /// Brands Snapchat Ghost icon - /// - /// https://fontawesome.com/icons/snapchat-ghost?style=brands - static const IconData snapchatGhost = const IconDataBrands(0xf2ac); - - /// Brands Snapchat Square icon - /// - /// https://fontawesome.com/icons/snapchat-square?style=brands - static const IconData snapchatSquare = const IconDataBrands(0xf2ad); - - /// Regular Snooze icon - /// - /// https://fontawesome.com/icons/snooze?style=regular - /// alarm, nap, rest, siesta, sleep - static const IconData snooze = const IconDataRegular(0xf880); - - /// Solid Snooze icon - /// - /// https://fontawesome.com/icons/snooze?style=solid - /// alarm, nap, rest, siesta, sleep - static const IconData solidSnooze = const IconDataSolid(0xf880); - - /// Light Snooze icon - /// - /// https://fontawesome.com/icons/light_snooze?style=light - /// alarm, nap, rest, siesta, sleep - static const IconData lightSnooze = const IconDataLight(0xf880); - - /// Duotone Snooze icon - /// - /// https://fontawesome.com/icons/duotone_snooze?style=duotone - /// alarm, nap, rest, siesta, sleep - static const IconDataDuotone duotoneSnooze = const IconDataDuotone( - 0xf880, - secondary: const IconDataDuotone(0x10f880), - ); - - /// Regular Snow Blowing icon - /// - /// https://fontawesome.com/icons/snow-blowing?style=regular - /// blizzard, precipitation, storm, winter - static const IconData snowBlowing = const IconDataRegular(0xf761); - - /// Solid Snow Blowing icon - /// - /// https://fontawesome.com/icons/snow-blowing?style=solid - /// blizzard, precipitation, storm, winter - static const IconData solidSnowBlowing = const IconDataSolid(0xf761); - - /// Light Snow Blowing icon - /// - /// https://fontawesome.com/icons/light_snow-blowing?style=light - /// blizzard, precipitation, storm, winter - static const IconData lightSnowBlowing = const IconDataLight(0xf761); - - /// Duotone Snow Blowing icon - /// - /// https://fontawesome.com/icons/duotone_snow-blowing?style=duotone - /// blizzard, precipitation, storm, winter - static const IconDataDuotone duotoneSnowBlowing = const IconDataDuotone( - 0xf761, - secondary: const IconDataDuotone(0x10f761), - ); - - /// Regular Snowboarding icon - /// - /// https://fontawesome.com/icons/snowboarding?style=regular - /// activity, fitness, olympics, outdoors, person - static const IconData snowboarding = const IconDataRegular(0xf7ce); - - /// Solid Snowboarding icon - /// - /// https://fontawesome.com/icons/snowboarding?style=solid - /// activity, fitness, olympics, outdoors, person - static const IconData solidSnowboarding = const IconDataSolid(0xf7ce); - - /// Light Snowboarding icon - /// - /// https://fontawesome.com/icons/light_snowboarding?style=light - /// activity, fitness, olympics, outdoors, person - static const IconData lightSnowboarding = const IconDataLight(0xf7ce); - - /// Duotone Snowboarding icon - /// - /// https://fontawesome.com/icons/duotone_snowboarding?style=duotone - /// activity, fitness, olympics, outdoors, person - static const IconDataDuotone duotoneSnowboarding = const IconDataDuotone( - 0xf7ce, - secondary: const IconDataDuotone(0x10f7ce), - ); - - /// Regular Snowflake icon - /// - /// https://fontawesome.com/icons/snowflake?style=regular - /// precipitation, rain, winter - static const IconData snowflake = const IconDataRegular(0xf2dc); - - /// Solid Snowflake icon - /// - /// https://fontawesome.com/icons/snowflake?style=solid - /// precipitation, rain, winter - static const IconData solidSnowflake = const IconDataSolid(0xf2dc); - - /// Light Snowflake icon - /// - /// https://fontawesome.com/icons/light_snowflake?style=light - /// precipitation, rain, winter - static const IconData lightSnowflake = const IconDataLight(0xf2dc); - - /// Duotone Snowflake icon - /// - /// https://fontawesome.com/icons/duotone_snowflake?style=duotone - /// precipitation, rain, winter - static const IconDataDuotone duotoneSnowflake = const IconDataDuotone( - 0xf2dc, - secondary: const IconDataDuotone(0x10f2dc), - ); - - /// Regular Snowflakes icon - /// - /// https://fontawesome.com/icons/snowflakes?style=regular - /// precipitation, rain, winter - static const IconData snowflakes = const IconDataRegular(0xf7cf); - - /// Solid Snowflakes icon - /// - /// https://fontawesome.com/icons/snowflakes?style=solid - /// precipitation, rain, winter - static const IconData solidSnowflakes = const IconDataSolid(0xf7cf); - - /// Light Snowflakes icon - /// - /// https://fontawesome.com/icons/light_snowflakes?style=light - /// precipitation, rain, winter - static const IconData lightSnowflakes = const IconDataLight(0xf7cf); - - /// Duotone Snowflakes icon - /// - /// https://fontawesome.com/icons/duotone_snowflakes?style=duotone - /// precipitation, rain, winter - static const IconDataDuotone duotoneSnowflakes = const IconDataDuotone( - 0xf7cf, - secondary: const IconDataDuotone(0x10f7cf), - ); - - /// Regular Snowman icon - /// - /// https://fontawesome.com/icons/snowman?style=regular - /// decoration, frost, frosty, holiday - static const IconData snowman = const IconDataRegular(0xf7d0); - - /// Solid Snowman icon - /// - /// https://fontawesome.com/icons/snowman?style=solid - /// decoration, frost, frosty, holiday - static const IconData solidSnowman = const IconDataSolid(0xf7d0); - - /// Light Snowman icon - /// - /// https://fontawesome.com/icons/light_snowman?style=light - /// decoration, frost, frosty, holiday - static const IconData lightSnowman = const IconDataLight(0xf7d0); - - /// Duotone Snowman icon - /// - /// https://fontawesome.com/icons/duotone_snowman?style=duotone - /// decoration, frost, frosty, holiday - static const IconDataDuotone duotoneSnowman = const IconDataDuotone( - 0xf7d0, - secondary: const IconDataDuotone(0x10f7d0), - ); - - /// Regular Snowmobile icon - /// - /// https://fontawesome.com/icons/snowmobile?style=regular - /// fast, person, transportation, treads, vehicle, winter - static const IconData snowmobile = const IconDataRegular(0xf7d1); - - /// Solid Snowmobile icon - /// - /// https://fontawesome.com/icons/snowmobile?style=solid - /// fast, person, transportation, treads, vehicle, winter - static const IconData solidSnowmobile = const IconDataSolid(0xf7d1); - - /// Light Snowmobile icon - /// - /// https://fontawesome.com/icons/light_snowmobile?style=light - /// fast, person, transportation, treads, vehicle, winter - static const IconData lightSnowmobile = const IconDataLight(0xf7d1); - - /// Duotone Snowmobile icon - /// - /// https://fontawesome.com/icons/duotone_snowmobile?style=duotone - /// fast, person, transportation, treads, vehicle, winter - static const IconDataDuotone duotoneSnowmobile = const IconDataDuotone( - 0xf7d1, - secondary: const IconDataDuotone(0x10f7d1), - ); - - /// Regular Snowplow icon - /// - /// https://fontawesome.com/icons/snowplow?style=regular - /// clean up, cold, road, storm, winter - static const IconData snowplow = const IconDataRegular(0xf7d2); - - /// Solid Snowplow icon - /// - /// https://fontawesome.com/icons/snowplow?style=solid - /// clean up, cold, road, storm, winter - static const IconData solidSnowplow = const IconDataSolid(0xf7d2); - - /// Light Snowplow icon - /// - /// https://fontawesome.com/icons/light_snowplow?style=light - /// clean up, cold, road, storm, winter - static const IconData lightSnowplow = const IconDataLight(0xf7d2); - - /// Duotone Snowplow icon - /// - /// https://fontawesome.com/icons/duotone_snowplow?style=duotone - /// clean up, cold, road, storm, winter - static const IconDataDuotone duotoneSnowplow = const IconDataDuotone( - 0xf7d2, - secondary: const IconDataDuotone(0x10f7d2), - ); - - /// Regular Soap icon - /// - /// https://fontawesome.com/icons/soap?style=regular - /// bubbles, clean, covid-19, hygiene, wash - static const IconData soap = const IconDataRegular(0xe06e); - - /// Light Soap icon - /// - /// https://fontawesome.com/icons/light_soap?style=light - /// bubbles, clean, covid-19, hygiene, wash - static const IconData lightSoap = const IconDataLight(0xe06e); - - /// Solid Soap icon - /// - /// https://fontawesome.com/icons/soap?style=solid - /// bubbles, clean, covid-19, hygiene, wash - static const IconData solidSoap = const IconDataSolid(0xe06e); - - /// Duotone Soap icon - /// - /// https://fontawesome.com/icons/duotone_soap?style=duotone - /// bubbles, clean, covid-19, hygiene, wash - static const IconDataDuotone duotoneSoap = const IconDataDuotone( - 0xe06e, - secondary: const IconDataDuotone(0x10e06e), - ); - - /// Regular Socks icon - /// - /// https://fontawesome.com/icons/socks?style=regular - /// business socks, business time, clothing, feet, flight of the conchords, wednesday - static const IconData socks = const IconDataRegular(0xf696); - - /// Solid Socks icon - /// - /// https://fontawesome.com/icons/socks?style=solid - /// business socks, business time, clothing, feet, flight of the conchords, wednesday - static const IconData solidSocks = const IconDataSolid(0xf696); - - /// Light Socks icon - /// - /// https://fontawesome.com/icons/light_socks?style=light - /// business socks, business time, clothing, feet, flight of the conchords, wednesday - static const IconData lightSocks = const IconDataLight(0xf696); - - /// Duotone Socks icon - /// - /// https://fontawesome.com/icons/duotone_socks?style=duotone - /// business socks, business time, clothing, feet, flight of the conchords, wednesday - static const IconDataDuotone duotoneSocks = const IconDataDuotone( - 0xf696, - secondary: const IconDataDuotone(0x10f696), - ); - - /// Regular Solar Panel icon - /// - /// https://fontawesome.com/icons/solar-panel?style=regular - /// clean, eco-friendly, energy, green, sun - static const IconData solarPanel = const IconDataRegular(0xf5ba); - - /// Solid Solar Panel icon - /// - /// https://fontawesome.com/icons/solar-panel?style=solid - /// clean, eco-friendly, energy, green, sun - static const IconData solidSolarPanel = const IconDataSolid(0xf5ba); - - /// Light Solar Panel icon - /// - /// https://fontawesome.com/icons/light_solar-panel?style=light - /// clean, eco-friendly, energy, green, sun - static const IconData lightSolarPanel = const IconDataLight(0xf5ba); - - /// Duotone Solar Panel icon - /// - /// https://fontawesome.com/icons/duotone_solar-panel?style=duotone - /// clean, eco-friendly, energy, green, sun - static const IconDataDuotone duotoneSolarPanel = const IconDataDuotone( - 0xf5ba, - secondary: const IconDataDuotone(0x10f5ba), - ); - - /// Regular Solar System icon - /// - /// https://fontawesome.com/icons/solar-system?style=regular - /// galaxy, orbit, planets, space, sun, universe - static const IconData solarSystem = const IconDataRegular(0xe02f); - - /// Solid Solar System icon - /// - /// https://fontawesome.com/icons/solar-system?style=solid - /// galaxy, orbit, planets, space, sun, universe - static const IconData solidSolarSystem = const IconDataSolid(0xe02f); - - /// Light Solar System icon - /// - /// https://fontawesome.com/icons/light_solar-system?style=light - /// galaxy, orbit, planets, space, sun, universe - static const IconData lightSolarSystem = const IconDataLight(0xe02f); - - /// Duotone Solar System icon - /// - /// https://fontawesome.com/icons/duotone_solar-system?style=duotone - /// galaxy, orbit, planets, space, sun, universe - static const IconDataDuotone duotoneSolarSystem = const IconDataDuotone( - 0xe02f, - secondary: const IconDataDuotone(0x10e02f), - ); - - /// Regular Sort icon - /// - /// https://fontawesome.com/icons/sort?style=regular - /// filter, order - static const IconData sort = const IconDataRegular(0xf0dc); - - /// Solid Sort icon - /// - /// https://fontawesome.com/icons/sort?style=solid - /// filter, order - static const IconData solidSort = const IconDataSolid(0xf0dc); - - /// Light Sort icon - /// - /// https://fontawesome.com/icons/light_sort?style=light - /// filter, order - static const IconData lightSort = const IconDataLight(0xf0dc); - - /// Duotone Sort icon - /// - /// https://fontawesome.com/icons/duotone_sort?style=duotone - /// filter, order - static const IconDataDuotone duotoneSort = const IconDataDuotone( - 0xf0dc, - secondary: const IconDataDuotone(0x10f0dc), - ); - - /// Regular Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/sort-alpha-down?style=regular - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData sortAlphaDown = const IconDataRegular(0xf15d); - - /// Solid Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/sort-alpha-down?style=solid - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData solidSortAlphaDown = const IconDataSolid(0xf15d); - - /// Light Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/light_sort-alpha-down?style=light - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData lightSortAlphaDown = const IconDataLight(0xf15d); - - /// Duotone Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-alpha-down?style=duotone - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconDataDuotone duotoneSortAlphaDown = const IconDataDuotone( - 0xf15d, - secondary: const IconDataDuotone(0x10f15d), - ); - - /// Regular Alternate Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/sort-alpha-down-alt?style=regular - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData sortAlphaDownAlt = const IconDataRegular(0xf881); - - /// Solid Alternate Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/sort-alpha-down-alt?style=solid - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData solidSortAlphaDownAlt = const IconDataSolid(0xf881); - - /// Light Alternate Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/light_sort-alpha-down-alt?style=light - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconData lightSortAlphaDownAlt = const IconDataLight(0xf881); - - /// Duotone Alternate Sort Alphabetical Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-alpha-down-alt?style=duotone - /// alphabetical, arrange, filter, order, sort-alpha-asc - static const IconDataDuotone duotoneSortAlphaDownAlt = const IconDataDuotone( - 0xf881, - secondary: const IconDataDuotone(0x10f881), - ); - - /// Regular Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/sort-alpha-up?style=regular - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData sortAlphaUp = const IconDataRegular(0xf15e); - - /// Solid Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/sort-alpha-up?style=solid - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData solidSortAlphaUp = const IconDataSolid(0xf15e); - - /// Light Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/light_sort-alpha-up?style=light - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData lightSortAlphaUp = const IconDataLight(0xf15e); - - /// Duotone Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-alpha-up?style=duotone - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconDataDuotone duotoneSortAlphaUp = const IconDataDuotone( - 0xf15e, - secondary: const IconDataDuotone(0x10f15e), - ); - - /// Regular Alternate Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/sort-alpha-up-alt?style=regular - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData sortAlphaUpAlt = const IconDataRegular(0xf882); - - /// Solid Alternate Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/sort-alpha-up-alt?style=solid - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData solidSortAlphaUpAlt = const IconDataSolid(0xf882); - - /// Light Alternate Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/light_sort-alpha-up-alt?style=light - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconData lightSortAlphaUpAlt = const IconDataLight(0xf882); - - /// Duotone Alternate Sort Alphabetical Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-alpha-up-alt?style=duotone - /// alphabetical, arrange, filter, order, sort-alpha-desc - static const IconDataDuotone duotoneSortAlphaUpAlt = const IconDataDuotone( - 0xf882, - secondary: const IconDataDuotone(0x10f882), - ); - - /// Regular Alternate Sort icon - /// - /// https://fontawesome.com/icons/sort-alt?style=regular - /// arrange, arrows, exchange, filter, order, transfer - static const IconData sortAlt = const IconDataRegular(0xf883); - - /// Solid Alternate Sort icon - /// - /// https://fontawesome.com/icons/sort-alt?style=solid - /// arrange, arrows, exchange, filter, order, transfer - static const IconData solidSortAlt = const IconDataSolid(0xf883); - - /// Light Alternate Sort icon - /// - /// https://fontawesome.com/icons/light_sort-alt?style=light - /// arrange, arrows, exchange, filter, order, transfer - static const IconData lightSortAlt = const IconDataLight(0xf883); - - /// Duotone Alternate Sort icon - /// - /// https://fontawesome.com/icons/duotone_sort-alt?style=duotone - /// arrange, arrows, exchange, filter, order, transfer - static const IconDataDuotone duotoneSortAlt = const IconDataDuotone( - 0xf883, - secondary: const IconDataDuotone(0x10f883), - ); - - /// Regular Sort Amount Down icon - /// - /// https://fontawesome.com/icons/sort-amount-down?style=regular - /// arrange, filter, number, order, sort-amount-asc - static const IconData sortAmountDown = const IconDataRegular(0xf160); - - /// Solid Sort Amount Down icon - /// - /// https://fontawesome.com/icons/sort-amount-down?style=solid - /// arrange, filter, number, order, sort-amount-asc - static const IconData solidSortAmountDown = const IconDataSolid(0xf160); - - /// Light Sort Amount Down icon - /// - /// https://fontawesome.com/icons/light_sort-amount-down?style=light - /// arrange, filter, number, order, sort-amount-asc - static const IconData lightSortAmountDown = const IconDataLight(0xf160); - - /// Duotone Sort Amount Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-amount-down?style=duotone - /// arrange, filter, number, order, sort-amount-asc - static const IconDataDuotone duotoneSortAmountDown = const IconDataDuotone( - 0xf160, - secondary: const IconDataDuotone(0x10f160), - ); - - /// Regular Alternate Sort Amount Down icon - /// - /// https://fontawesome.com/icons/sort-amount-down-alt?style=regular - /// arrange, filter, order, sort-amount-asc - static const IconData sortAmountDownAlt = const IconDataRegular(0xf884); - - /// Solid Alternate Sort Amount Down icon - /// - /// https://fontawesome.com/icons/sort-amount-down-alt?style=solid - /// arrange, filter, order, sort-amount-asc - static const IconData solidSortAmountDownAlt = const IconDataSolid(0xf884); - - /// Light Alternate Sort Amount Down icon - /// - /// https://fontawesome.com/icons/light_sort-amount-down-alt?style=light - /// arrange, filter, order, sort-amount-asc - static const IconData lightSortAmountDownAlt = const IconDataLight(0xf884); - - /// Duotone Alternate Sort Amount Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-amount-down-alt?style=duotone - /// arrange, filter, order, sort-amount-asc - static const IconDataDuotone duotoneSortAmountDownAlt = const IconDataDuotone( - 0xf884, - secondary: const IconDataDuotone(0x10f884), - ); - - /// Regular Sort Amount Up icon - /// - /// https://fontawesome.com/icons/sort-amount-up?style=regular - /// arrange, filter, order, sort-amount-desc - static const IconData sortAmountUp = const IconDataRegular(0xf161); - - /// Solid Sort Amount Up icon - /// - /// https://fontawesome.com/icons/sort-amount-up?style=solid - /// arrange, filter, order, sort-amount-desc - static const IconData solidSortAmountUp = const IconDataSolid(0xf161); - - /// Light Sort Amount Up icon - /// - /// https://fontawesome.com/icons/light_sort-amount-up?style=light - /// arrange, filter, order, sort-amount-desc - static const IconData lightSortAmountUp = const IconDataLight(0xf161); - - /// Duotone Sort Amount Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-amount-up?style=duotone - /// arrange, filter, order, sort-amount-desc - static const IconDataDuotone duotoneSortAmountUp = const IconDataDuotone( - 0xf161, - secondary: const IconDataDuotone(0x10f161), - ); - - /// Regular Alternate Sort Amount Up icon - /// - /// https://fontawesome.com/icons/sort-amount-up-alt?style=regular - /// arrange, filter, order, sort-amount-desc - static const IconData sortAmountUpAlt = const IconDataRegular(0xf885); - - /// Solid Alternate Sort Amount Up icon - /// - /// https://fontawesome.com/icons/sort-amount-up-alt?style=solid - /// arrange, filter, order, sort-amount-desc - static const IconData solidSortAmountUpAlt = const IconDataSolid(0xf885); - - /// Light Alternate Sort Amount Up icon - /// - /// https://fontawesome.com/icons/light_sort-amount-up-alt?style=light - /// arrange, filter, order, sort-amount-desc - static const IconData lightSortAmountUpAlt = const IconDataLight(0xf885); - - /// Duotone Alternate Sort Amount Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-amount-up-alt?style=duotone - /// arrange, filter, order, sort-amount-desc - static const IconDataDuotone duotoneSortAmountUpAlt = const IconDataDuotone( - 0xf885, - secondary: const IconDataDuotone(0x10f885), - ); - - /// Regular Sort Circle icon - /// - /// https://fontawesome.com/icons/sort-circle?style=regular - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData sortCircle = const IconDataRegular(0xe030); - - /// Solid Sort Circle icon - /// - /// https://fontawesome.com/icons/sort-circle?style=solid - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData solidSortCircle = const IconDataSolid(0xe030); - - /// Light Sort Circle icon - /// - /// https://fontawesome.com/icons/light_sort-circle?style=light - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData lightSortCircle = const IconDataLight(0xe030); - - /// Duotone Sort Circle icon - /// - /// https://fontawesome.com/icons/duotone_sort-circle?style=duotone - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconDataDuotone duotoneSortCircle = const IconDataDuotone( - 0xe030, - secondary: const IconDataDuotone(0x10e030), - ); - - /// Regular Sort Circle Down icon - /// - /// https://fontawesome.com/icons/sort-circle-down?style=regular - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData sortCircleDown = const IconDataRegular(0xe031); - - /// Solid Sort Circle Down icon - /// - /// https://fontawesome.com/icons/sort-circle-down?style=solid - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData solidSortCircleDown = const IconDataSolid(0xe031); - - /// Light Sort Circle Down icon - /// - /// https://fontawesome.com/icons/light_sort-circle-down?style=light - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData lightSortCircleDown = const IconDataLight(0xe031); - - /// Duotone Sort Circle Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-circle-down?style=duotone - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconDataDuotone duotoneSortCircleDown = const IconDataDuotone( - 0xe031, - secondary: const IconDataDuotone(0x10e031), - ); - - /// Regular Sort Circle Up icon - /// - /// https://fontawesome.com/icons/sort-circle-up?style=regular - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData sortCircleUp = const IconDataRegular(0xe032); - - /// Solid Sort Circle Up icon - /// - /// https://fontawesome.com/icons/sort-circle-up?style=solid - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData solidSortCircleUp = const IconDataSolid(0xe032); - - /// Light Sort Circle Up icon - /// - /// https://fontawesome.com/icons/light_sort-circle-up?style=light - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconData lightSortCircleUp = const IconDataLight(0xe032); - - /// Duotone Sort Circle Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-circle-up?style=duotone - /// down, elevator, lower, raise, temperature, thermostat, up - static const IconDataDuotone duotoneSortCircleUp = const IconDataDuotone( - 0xe032, - secondary: const IconDataDuotone(0x10e032), - ); - - /// Regular Sort Down (Descending) icon - /// - /// https://fontawesome.com/icons/sort-down?style=regular - /// arrow, descending, filter, order, sort-desc - static const IconData sortDown = const IconDataRegular(0xf0dd); - - /// Solid Sort Down (Descending) icon - /// - /// https://fontawesome.com/icons/sort-down?style=solid - /// arrow, descending, filter, order, sort-desc - static const IconData solidSortDown = const IconDataSolid(0xf0dd); - - /// Light Sort Down (Descending) icon - /// - /// https://fontawesome.com/icons/light_sort-down?style=light - /// arrow, descending, filter, order, sort-desc - static const IconData lightSortDown = const IconDataLight(0xf0dd); - - /// Duotone Sort Down (Descending) icon - /// - /// https://fontawesome.com/icons/duotone_sort-down?style=duotone - /// arrow, descending, filter, order, sort-desc - static const IconDataDuotone duotoneSortDown = const IconDataDuotone( - 0xf0dd, - secondary: const IconDataDuotone(0x10f0dd), - ); - - /// Regular Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/sort-numeric-down?style=regular - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData sortNumericDown = const IconDataRegular(0xf162); - - /// Solid Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/sort-numeric-down?style=solid - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData solidSortNumericDown = const IconDataSolid(0xf162); - - /// Light Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/light_sort-numeric-down?style=light - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData lightSortNumericDown = const IconDataLight(0xf162); - - /// Duotone Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-numeric-down?style=duotone - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconDataDuotone duotoneSortNumericDown = const IconDataDuotone( - 0xf162, - secondary: const IconDataDuotone(0x10f162), - ); - - /// Regular Alternate Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/sort-numeric-down-alt?style=regular - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData sortNumericDownAlt = const IconDataRegular(0xf886); - - /// Solid Alternate Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/sort-numeric-down-alt?style=solid - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData solidSortNumericDownAlt = const IconDataSolid(0xf886); - - /// Light Alternate Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/light_sort-numeric-down-alt?style=light - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconData lightSortNumericDownAlt = const IconDataLight(0xf886); - - /// Duotone Alternate Sort Numeric Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-numeric-down-alt?style=duotone - /// arrange, filter, numbers, order, sort-numeric-asc - static const IconDataDuotone duotoneSortNumericDownAlt = - const IconDataDuotone( - 0xf886, - secondary: const IconDataDuotone(0x10f886), - ); - - /// Regular Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/sort-numeric-up?style=regular - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData sortNumericUp = const IconDataRegular(0xf163); - - /// Solid Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/sort-numeric-up?style=solid - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData solidSortNumericUp = const IconDataSolid(0xf163); - - /// Light Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/light_sort-numeric-up?style=light - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData lightSortNumericUp = const IconDataLight(0xf163); - - /// Duotone Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-numeric-up?style=duotone - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconDataDuotone duotoneSortNumericUp = const IconDataDuotone( - 0xf163, - secondary: const IconDataDuotone(0x10f163), - ); - - /// Regular Alternate Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/sort-numeric-up-alt?style=regular - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData sortNumericUpAlt = const IconDataRegular(0xf887); - - /// Solid Alternate Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/sort-numeric-up-alt?style=solid - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData solidSortNumericUpAlt = const IconDataSolid(0xf887); - - /// Light Alternate Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/light_sort-numeric-up-alt?style=light - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconData lightSortNumericUpAlt = const IconDataLight(0xf887); - - /// Duotone Alternate Sort Numeric Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-numeric-up-alt?style=duotone - /// arrange, filter, numbers, order, sort-numeric-desc - static const IconDataDuotone duotoneSortNumericUpAlt = const IconDataDuotone( - 0xf887, - secondary: const IconDataDuotone(0x10f887), - ); - - /// Regular Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/sort-shapes-down?style=regular - /// arrange, filter, order, shapes, square, triangle - static const IconData sortShapesDown = const IconDataRegular(0xf888); - - /// Solid Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/sort-shapes-down?style=solid - /// arrange, filter, order, shapes, square, triangle - static const IconData solidSortShapesDown = const IconDataSolid(0xf888); - - /// Light Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/light_sort-shapes-down?style=light - /// arrange, filter, order, shapes, square, triangle - static const IconData lightSortShapesDown = const IconDataLight(0xf888); - - /// Duotone Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-shapes-down?style=duotone - /// arrange, filter, order, shapes, square, triangle - static const IconDataDuotone duotoneSortShapesDown = const IconDataDuotone( - 0xf888, - secondary: const IconDataDuotone(0x10f888), - ); - - /// Regular Alternate Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/sort-shapes-down-alt?style=regular - /// arrange, filter, order, shapes, square, triangle - static const IconData sortShapesDownAlt = const IconDataRegular(0xf889); - - /// Solid Alternate Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/sort-shapes-down-alt?style=solid - /// arrange, filter, order, shapes, square, triangle - static const IconData solidSortShapesDownAlt = const IconDataSolid(0xf889); - - /// Light Alternate Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/light_sort-shapes-down-alt?style=light - /// arrange, filter, order, shapes, square, triangle - static const IconData lightSortShapesDownAlt = const IconDataLight(0xf889); - - /// Duotone Alternate Sort Shapes Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-shapes-down-alt?style=duotone - /// arrange, filter, order, shapes, square, triangle - static const IconDataDuotone duotoneSortShapesDownAlt = const IconDataDuotone( - 0xf889, - secondary: const IconDataDuotone(0x10f889), - ); - - /// Regular Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/sort-shapes-up?style=regular - /// arrange, filter, order, shapes, square, triangle - static const IconData sortShapesUp = const IconDataRegular(0xf88a); - - /// Solid Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/sort-shapes-up?style=solid - /// arrange, filter, order, shapes, square, triangle - static const IconData solidSortShapesUp = const IconDataSolid(0xf88a); - - /// Light Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/light_sort-shapes-up?style=light - /// arrange, filter, order, shapes, square, triangle - static const IconData lightSortShapesUp = const IconDataLight(0xf88a); - - /// Duotone Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-shapes-up?style=duotone - /// arrange, filter, order, shapes, square, triangle - static const IconDataDuotone duotoneSortShapesUp = const IconDataDuotone( - 0xf88a, - secondary: const IconDataDuotone(0x10f88a), - ); - - /// Regular Alternate Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/sort-shapes-up-alt?style=regular - /// arrange, filter, order, shapes, square, triangle - static const IconData sortShapesUpAlt = const IconDataRegular(0xf88b); - - /// Solid Alternate Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/sort-shapes-up-alt?style=solid - /// arrange, filter, order, shapes, square, triangle - static const IconData solidSortShapesUpAlt = const IconDataSolid(0xf88b); - - /// Light Alternate Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/light_sort-shapes-up-alt?style=light - /// arrange, filter, order, shapes, square, triangle - static const IconData lightSortShapesUpAlt = const IconDataLight(0xf88b); - - /// Duotone Alternate Sort Shapes Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-shapes-up-alt?style=duotone - /// arrange, filter, order, shapes, square, triangle - static const IconDataDuotone duotoneSortShapesUpAlt = const IconDataDuotone( - 0xf88b, - secondary: const IconDataDuotone(0x10f88b), - ); - - /// Regular Sort Size Down icon - /// - /// https://fontawesome.com/icons/sort-size-down?style=regular - /// arrange, filter, order, rectangle - static const IconData sortSizeDown = const IconDataRegular(0xf88c); - - /// Solid Sort Size Down icon - /// - /// https://fontawesome.com/icons/sort-size-down?style=solid - /// arrange, filter, order, rectangle - static const IconData solidSortSizeDown = const IconDataSolid(0xf88c); - - /// Light Sort Size Down icon - /// - /// https://fontawesome.com/icons/light_sort-size-down?style=light - /// arrange, filter, order, rectangle - static const IconData lightSortSizeDown = const IconDataLight(0xf88c); - - /// Duotone Sort Size Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-size-down?style=duotone - /// arrange, filter, order, rectangle - static const IconDataDuotone duotoneSortSizeDown = const IconDataDuotone( - 0xf88c, - secondary: const IconDataDuotone(0x10f88c), - ); - - /// Regular Alternate Sort Size Down icon - /// - /// https://fontawesome.com/icons/sort-size-down-alt?style=regular - /// arrange, filter, order, rectangle - static const IconData sortSizeDownAlt = const IconDataRegular(0xf88d); - - /// Solid Alternate Sort Size Down icon - /// - /// https://fontawesome.com/icons/sort-size-down-alt?style=solid - /// arrange, filter, order, rectangle - static const IconData solidSortSizeDownAlt = const IconDataSolid(0xf88d); - - /// Light Alternate Sort Size Down icon - /// - /// https://fontawesome.com/icons/light_sort-size-down-alt?style=light - /// arrange, filter, order, rectangle - static const IconData lightSortSizeDownAlt = const IconDataLight(0xf88d); - - /// Duotone Alternate Sort Size Down icon - /// - /// https://fontawesome.com/icons/duotone_sort-size-down-alt?style=duotone - /// arrange, filter, order, rectangle - static const IconDataDuotone duotoneSortSizeDownAlt = const IconDataDuotone( - 0xf88d, - secondary: const IconDataDuotone(0x10f88d), - ); - - /// Regular Sort Size Up icon - /// - /// https://fontawesome.com/icons/sort-size-up?style=regular - /// arrange, filter, order, rectangle - static const IconData sortSizeUp = const IconDataRegular(0xf88e); - - /// Solid Sort Size Up icon - /// - /// https://fontawesome.com/icons/sort-size-up?style=solid - /// arrange, filter, order, rectangle - static const IconData solidSortSizeUp = const IconDataSolid(0xf88e); - - /// Light Sort Size Up icon - /// - /// https://fontawesome.com/icons/light_sort-size-up?style=light - /// arrange, filter, order, rectangle - static const IconData lightSortSizeUp = const IconDataLight(0xf88e); - - /// Duotone Sort Size Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-size-up?style=duotone - /// arrange, filter, order, rectangle - static const IconDataDuotone duotoneSortSizeUp = const IconDataDuotone( - 0xf88e, - secondary: const IconDataDuotone(0x10f88e), - ); - - /// Regular Alternate Sort Size Up icon - /// - /// https://fontawesome.com/icons/sort-size-up-alt?style=regular - /// arrange, filter, order, rectangle - static const IconData sortSizeUpAlt = const IconDataRegular(0xf88f); - - /// Solid Alternate Sort Size Up icon - /// - /// https://fontawesome.com/icons/sort-size-up-alt?style=solid - /// arrange, filter, order, rectangle - static const IconData solidSortSizeUpAlt = const IconDataSolid(0xf88f); - - /// Light Alternate Sort Size Up icon - /// - /// https://fontawesome.com/icons/light_sort-size-up-alt?style=light - /// arrange, filter, order, rectangle - static const IconData lightSortSizeUpAlt = const IconDataLight(0xf88f); - - /// Duotone Alternate Sort Size Up icon - /// - /// https://fontawesome.com/icons/duotone_sort-size-up-alt?style=duotone - /// arrange, filter, order, rectangle - static const IconDataDuotone duotoneSortSizeUpAlt = const IconDataDuotone( - 0xf88f, - secondary: const IconDataDuotone(0x10f88f), - ); - - /// Regular Sort Up (Ascending) icon - /// - /// https://fontawesome.com/icons/sort-up?style=regular - /// arrow, ascending, filter, order, sort-asc - static const IconData sortUp = const IconDataRegular(0xf0de); - - /// Solid Sort Up (Ascending) icon - /// - /// https://fontawesome.com/icons/sort-up?style=solid - /// arrow, ascending, filter, order, sort-asc - static const IconData solidSortUp = const IconDataSolid(0xf0de); - - /// Light Sort Up (Ascending) icon - /// - /// https://fontawesome.com/icons/light_sort-up?style=light - /// arrow, ascending, filter, order, sort-asc - static const IconData lightSortUp = const IconDataLight(0xf0de); - - /// Duotone Sort Up (Ascending) icon - /// - /// https://fontawesome.com/icons/duotone_sort-up?style=duotone - /// arrow, ascending, filter, order, sort-asc - static const IconDataDuotone duotoneSortUp = const IconDataDuotone( - 0xf0de, - secondary: const IconDataDuotone(0x10f0de), - ); - - /// Brands SoundCloud icon - /// - /// https://fontawesome.com/icons/soundcloud?style=brands - static const IconData soundcloud = const IconDataBrands(0xf1be); - - /// Regular Soup icon - /// - /// https://fontawesome.com/icons/soup?style=regular - /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData soup = const IconDataRegular(0xf823); - - /// Solid Soup icon - /// - /// https://fontawesome.com/icons/soup?style=solid - /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData solidSoup = const IconDataSolid(0xf823); - - /// Light Soup icon - /// - /// https://fontawesome.com/icons/light_soup?style=light - /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconData lightSoup = const IconDataLight(0xf823); - - /// Duotone Soup icon - /// - /// https://fontawesome.com/icons/duotone_soup?style=duotone - /// bisque, bouillon, bowl, broth, chicken, chowder, gazpacho, ramen, stew - static const IconDataDuotone duotoneSoup = const IconDataDuotone( - 0xf823, - secondary: const IconDataDuotone(0x10f823), - ); - - /// Brands Sourcetree icon - /// - /// https://fontawesome.com/icons/sourcetree?style=brands - static const IconData sourcetree = const IconDataBrands(0xf7d3); - - /// Regular Spa icon - /// - /// https://fontawesome.com/icons/spa?style=regular - /// flora, massage, mindfulness, plant, wellness - static const IconData spa = const IconDataRegular(0xf5bb); - - /// Solid Spa icon - /// - /// https://fontawesome.com/icons/spa?style=solid - /// flora, massage, mindfulness, plant, wellness - static const IconData solidSpa = const IconDataSolid(0xf5bb); - - /// Light Spa icon - /// - /// https://fontawesome.com/icons/light_spa?style=light - /// flora, massage, mindfulness, plant, wellness - static const IconData lightSpa = const IconDataLight(0xf5bb); - - /// Duotone Spa icon - /// - /// https://fontawesome.com/icons/duotone_spa?style=duotone - /// flora, massage, mindfulness, plant, wellness - static const IconDataDuotone duotoneSpa = const IconDataDuotone( - 0xf5bb, - secondary: const IconDataDuotone(0x10f5bb), - ); - - /// Regular Space Shuttle icon - /// - /// https://fontawesome.com/icons/space-shuttle?style=regular - /// astronaut, machine, nasa, rocket, space, transportation - static const IconData spaceShuttle = const IconDataRegular(0xf197); - - /// Solid Space Shuttle icon - /// - /// https://fontawesome.com/icons/space-shuttle?style=solid - /// astronaut, machine, nasa, rocket, space, transportation - static const IconData solidSpaceShuttle = const IconDataSolid(0xf197); - - /// Light Space Shuttle icon - /// - /// https://fontawesome.com/icons/light_space-shuttle?style=light - /// astronaut, machine, nasa, rocket, space, transportation - static const IconData lightSpaceShuttle = const IconDataLight(0xf197); - - /// Duotone Space Shuttle icon - /// - /// https://fontawesome.com/icons/duotone_space-shuttle?style=duotone - /// astronaut, machine, nasa, rocket, space, transportation - static const IconDataDuotone duotoneSpaceShuttle = const IconDataDuotone( - 0xf197, - secondary: const IconDataDuotone(0x10f197), - ); - - /// Regular Moon Space Station 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 = const IconDataRegular(0xe033); - - /// Solid Moon Space Station 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 = const IconDataSolid(0xe033); - - /// Light Moon Space Station icon - /// - /// https://fontawesome.com/icons/light_space-station-moon?style=light - /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconData lightSpaceStationMoon = const IconDataLight(0xe033); - - /// Duotone Moon Space Station icon - /// - /// https://fontawesome.com/icons/duotone_space-station-moon?style=duotone - /// death star, empire, galen erso, kyber crystal, laser, not a moon, secret weapon, star wars - static const IconDataDuotone duotoneSpaceStationMoon = const IconDataDuotone( - 0xe033, - secondary: const IconDataDuotone(0x10e033), - ); - - /// Regular Moon Space Station Under Construction icon - /// - /// https://fontawesome.com/icons/space-station-moon-alt?style=regular - /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconData spaceStationMoonAlt = const IconDataRegular(0xe034); - - /// Solid Moon Space Station Under Construction icon - /// - /// https://fontawesome.com/icons/space-station-moon-alt?style=solid - /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconData solidSpaceStationMoonAlt = const IconDataSolid(0xe034); - - /// Light Moon Space Station Under Construction icon - /// - /// https://fontawesome.com/icons/light_space-station-moon-alt?style=light - /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconData lightSpaceStationMoonAlt = const IconDataLight(0xe034); - - /// Duotone Moon Space Station Under Construction icon - /// - /// https://fontawesome.com/icons/duotone_space-station-moon-alt?style=duotone - /// death star, empire, kyber crystal, laser, not a moon, star wars, under construction - static const IconDataDuotone duotoneSpaceStationMoonAlt = - const IconDataDuotone( - 0xe034, - secondary: const IconDataDuotone(0x10e034), - ); - - /// Regular Spade icon - /// - /// https://fontawesome.com/icons/spade?style=regular - /// card, game, poker, suit - static const IconData spade = const IconDataRegular(0xf2f4); - - /// Solid Spade icon - /// - /// https://fontawesome.com/icons/spade?style=solid - /// card, game, poker, suit - static const IconData solidSpade = const IconDataSolid(0xf2f4); - - /// Light Spade icon - /// - /// https://fontawesome.com/icons/light_spade?style=light - /// card, game, poker, suit - static const IconData lightSpade = const IconDataLight(0xf2f4); - - /// Duotone Spade icon - /// - /// https://fontawesome.com/icons/duotone_spade?style=duotone - /// card, game, poker, suit - static const IconDataDuotone duotoneSpade = const IconDataDuotone( - 0xf2f4, - secondary: const IconDataDuotone(0x10f2f4), - ); - - /// Regular Sparkles icon - /// - /// https://fontawesome.com/icons/sparkles?style=regular - /// glitter, magic, new, special, twinkle - static const IconData sparkles = const IconDataRegular(0xf890); - - /// Solid Sparkles icon - /// - /// https://fontawesome.com/icons/sparkles?style=solid - /// glitter, magic, new, special, twinkle - static const IconData solidSparkles = const IconDataSolid(0xf890); - - /// Light Sparkles icon - /// - /// https://fontawesome.com/icons/light_sparkles?style=light - /// glitter, magic, new, special, twinkle - static const IconData lightSparkles = const IconDataLight(0xf890); - - /// Duotone Sparkles icon - /// - /// https://fontawesome.com/icons/duotone_sparkles?style=duotone - /// glitter, magic, new, special, twinkle - static const IconDataDuotone duotoneSparkles = const IconDataDuotone( - 0xf890, - secondary: const IconDataDuotone(0x10f890), - ); - - /// Brands Speakap icon - /// - /// https://fontawesome.com/icons/speakap?style=brands - static const IconData speakap = const IconDataBrands(0xf3f3); - - /// Regular Speaker icon - /// - /// https://fontawesome.com/icons/speaker?style=regular - /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData speaker = const IconDataRegular(0xf8df); - - /// Solid Speaker icon - /// - /// https://fontawesome.com/icons/speaker?style=solid - /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData solidSpeaker = const IconDataSolid(0xf8df); - - /// Light Speaker icon - /// - /// https://fontawesome.com/icons/light_speaker?style=light - /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconData lightSpeaker = const IconDataLight(0xf8df); - - /// Duotone Speaker icon - /// - /// https://fontawesome.com/icons/duotone_speaker?style=duotone - /// audio, device, music, sound, subwoofer, transducer, tweeter - static const IconDataDuotone duotoneSpeaker = const IconDataDuotone( - 0xf8df, - secondary: const IconDataDuotone(0x10f8df), - ); - - /// Brands Speaker Deck icon - /// - /// https://fontawesome.com/icons/speaker-deck?style=brands - static const IconData speakerDeck = const IconDataBrands(0xf83c); - - /// Regular Speakers icon - /// - /// https://fontawesome.com/icons/speakers?style=regular - /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData speakers = const IconDataRegular(0xf8e0); - - /// Solid Speakers icon - /// - /// https://fontawesome.com/icons/speakers?style=solid - /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData solidSpeakers = const IconDataSolid(0xf8e0); - - /// Light Speakers icon - /// - /// https://fontawesome.com/icons/light_speakers?style=light - /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconData lightSpeakers = const IconDataLight(0xf8e0); - - /// Duotone Speakers icon - /// - /// https://fontawesome.com/icons/duotone_speakers?style=duotone - /// audio, device, group, music, sound, subwoofer, transducer, tweeter - static const IconDataDuotone duotoneSpeakers = const IconDataDuotone( - 0xf8e0, - secondary: const IconDataDuotone(0x10f8e0), - ); - - /// Regular Spell Check icon - /// - /// https://fontawesome.com/icons/spell-check?style=regular - /// dictionary, edit, editor, grammar, text - static const IconData spellCheck = const IconDataRegular(0xf891); - - /// Solid Spell Check icon - /// - /// https://fontawesome.com/icons/spell-check?style=solid - /// dictionary, edit, editor, grammar, text - static const IconData solidSpellCheck = const IconDataSolid(0xf891); - - /// Light Spell Check icon - /// - /// https://fontawesome.com/icons/light_spell-check?style=light - /// dictionary, edit, editor, grammar, text - static const IconData lightSpellCheck = const IconDataLight(0xf891); - - /// Duotone Spell Check icon - /// - /// https://fontawesome.com/icons/duotone_spell-check?style=duotone - /// dictionary, edit, editor, grammar, text - static const IconDataDuotone duotoneSpellCheck = const IconDataDuotone( - 0xf891, - secondary: const IconDataDuotone(0x10f891), - ); - - /// Regular Spider icon - /// - /// https://fontawesome.com/icons/spider?style=regular - /// arachnid, bug, charlotte, crawl, eight, halloween - static const IconData spider = const IconDataRegular(0xf717); - - /// Solid Spider icon - /// - /// https://fontawesome.com/icons/spider?style=solid - /// arachnid, bug, charlotte, crawl, eight, halloween - static const IconData solidSpider = const IconDataSolid(0xf717); - - /// Light Spider icon - /// - /// https://fontawesome.com/icons/light_spider?style=light - /// arachnid, bug, charlotte, crawl, eight, halloween - static const IconData lightSpider = const IconDataLight(0xf717); - - /// Duotone Spider icon - /// - /// https://fontawesome.com/icons/duotone_spider?style=duotone - /// arachnid, bug, charlotte, crawl, eight, halloween - static const IconDataDuotone duotoneSpider = const IconDataDuotone( - 0xf717, - secondary: const IconDataDuotone(0x10f717), - ); - - /// Regular Black Widow Spider 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 = const IconDataRegular(0xf718); - - /// Solid Black Widow Spider 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 = const IconDataSolid(0xf718); - - /// Light Black Widow Spider icon - /// - /// https://fontawesome.com/icons/light_spider-black-widow?style=light - /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconData lightSpiderBlackWidow = const IconDataLight(0xf718); - - /// Duotone Black Widow Spider icon - /// - /// https://fontawesome.com/icons/duotone_spider-black-widow?style=duotone - /// alert, arachnid, bug, charlotte, crawl, danger, dangerous, deadly, eight, error, halloween - static const IconDataDuotone duotoneSpiderBlackWidow = const IconDataDuotone( - 0xf718, - secondary: const IconDataDuotone(0x10f718), - ); - - /// Regular Spider Web icon - /// - /// https://fontawesome.com/icons/spider-web?style=regular - /// cobweb, gossamer, halloween - static const IconData spiderWeb = const IconDataRegular(0xf719); - - /// Solid Spider Web icon - /// - /// https://fontawesome.com/icons/spider-web?style=solid - /// cobweb, gossamer, halloween - static const IconData solidSpiderWeb = const IconDataSolid(0xf719); - - /// Light Spider Web icon - /// - /// https://fontawesome.com/icons/light_spider-web?style=light - /// cobweb, gossamer, halloween - static const IconData lightSpiderWeb = const IconDataLight(0xf719); - - /// Duotone Spider Web icon - /// - /// https://fontawesome.com/icons/duotone_spider-web?style=duotone - /// cobweb, gossamer, halloween - static const IconDataDuotone duotoneSpiderWeb = const IconDataDuotone( - 0xf719, - secondary: const IconDataDuotone(0x10f719), - ); - - /// Regular Spinner icon - /// - /// https://fontawesome.com/icons/spinner?style=regular - /// circle, loading, progress - static const IconData spinner = const IconDataRegular(0xf110); - - /// Solid Spinner icon - /// - /// https://fontawesome.com/icons/spinner?style=solid - /// circle, loading, progress - static const IconData solidSpinner = const IconDataSolid(0xf110); - - /// Light Spinner icon - /// - /// https://fontawesome.com/icons/light_spinner?style=light - /// circle, loading, progress - static const IconData lightSpinner = const IconDataLight(0xf110); - - /// Duotone Spinner icon - /// - /// https://fontawesome.com/icons/duotone_spinner?style=duotone - /// circle, loading, progress - static const IconDataDuotone duotoneSpinner = const IconDataDuotone( - 0xf110, - secondary: const IconDataDuotone(0x10f110), - ); - - /// Regular Spinner Third icon - /// - /// https://fontawesome.com/icons/spinner-third?style=regular - /// circle, loading, progress - static const IconData spinnerThird = const IconDataRegular(0xf3f4); - - /// Solid Spinner Third icon - /// - /// https://fontawesome.com/icons/spinner-third?style=solid - /// circle, loading, progress - static const IconData solidSpinnerThird = const IconDataSolid(0xf3f4); - - /// Light Spinner Third icon - /// - /// https://fontawesome.com/icons/light_spinner-third?style=light - /// circle, loading, progress - static const IconData lightSpinnerThird = const IconDataLight(0xf3f4); - - /// Duotone Spinner Third icon - /// - /// https://fontawesome.com/icons/duotone_spinner-third?style=duotone - /// circle, loading, progress - static const IconDataDuotone duotoneSpinnerThird = const IconDataDuotone( - 0xf3f4, - secondary: const IconDataDuotone(0x10f3f4), - ); - - /// Regular Splotch icon - /// - /// https://fontawesome.com/icons/splotch?style=regular - /// Ink, blob, blotch, glob, stain - static const IconData splotch = const IconDataRegular(0xf5bc); - - /// Solid Splotch icon - /// - /// https://fontawesome.com/icons/splotch?style=solid - /// Ink, blob, blotch, glob, stain - static const IconData solidSplotch = const IconDataSolid(0xf5bc); - - /// Light Splotch icon - /// - /// https://fontawesome.com/icons/light_splotch?style=light - /// Ink, blob, blotch, glob, stain - static const IconData lightSplotch = const IconDataLight(0xf5bc); - - /// Duotone Splotch icon - /// - /// https://fontawesome.com/icons/duotone_splotch?style=duotone - /// Ink, blob, blotch, glob, stain - static const IconDataDuotone duotoneSplotch = const IconDataDuotone( - 0xf5bc, - secondary: const IconDataDuotone(0x10f5bc), - ); - - /// Brands Spotify icon - /// - /// https://fontawesome.com/icons/spotify?style=brands - static const IconData spotify = const IconDataBrands(0xf1bc); - - /// Regular Spray Can icon - /// - /// https://fontawesome.com/icons/spray-can?style=regular - /// Paint, aerosol, design, graffiti, tag - static const IconData sprayCan = const IconDataRegular(0xf5bd); - - /// Solid Spray Can icon - /// - /// https://fontawesome.com/icons/spray-can?style=solid - /// Paint, aerosol, design, graffiti, tag - static const IconData solidSprayCan = const IconDataSolid(0xf5bd); - - /// Light Spray Can icon - /// - /// https://fontawesome.com/icons/light_spray-can?style=light - /// Paint, aerosol, design, graffiti, tag - static const IconData lightSprayCan = const IconDataLight(0xf5bd); - - /// Duotone Spray Can icon - /// - /// https://fontawesome.com/icons/duotone_spray-can?style=duotone - /// Paint, aerosol, design, graffiti, tag - static const IconDataDuotone duotoneSprayCan = const IconDataDuotone( - 0xf5bd, - secondary: const IconDataDuotone(0x10f5bd), - ); - - /// Regular Sprinkler icon - /// - /// https://fontawesome.com/icons/sprinkler?style=regular - /// grass, lawn, shower, spray, water - static const IconData sprinkler = const IconDataRegular(0xe035); - - /// Solid Sprinkler icon - /// - /// https://fontawesome.com/icons/sprinkler?style=solid - /// grass, lawn, shower, spray, water - static const IconData solidSprinkler = const IconDataSolid(0xe035); - - /// Light Sprinkler icon - /// - /// https://fontawesome.com/icons/light_sprinkler?style=light - /// grass, lawn, shower, spray, water - static const IconData lightSprinkler = const IconDataLight(0xe035); - - /// Duotone Sprinkler icon - /// - /// https://fontawesome.com/icons/duotone_sprinkler?style=duotone - /// grass, lawn, shower, spray, water - static const IconDataDuotone duotoneSprinkler = const IconDataDuotone( - 0xe035, - secondary: const IconDataDuotone(0x10e035), - ); - - /// Regular Square icon - /// - /// https://fontawesome.com/icons/square?style=regular - /// block, box, shape - static const IconData square = const IconDataRegular(0xf0c8); - - /// Solid Square icon - /// - /// https://fontawesome.com/icons/square?style=solid - /// block, box, shape - static const IconData solidSquare = const IconDataSolid(0xf0c8); - - /// Light Square icon - /// - /// https://fontawesome.com/icons/light_square?style=light - /// block, box, shape - static const IconData lightSquare = const IconDataLight(0xf0c8); - - /// Duotone Square icon - /// - /// https://fontawesome.com/icons/duotone_square?style=duotone - /// block, box, shape - static const IconDataDuotone duotoneSquare = const IconDataDuotone( - 0xf0c8, - secondary: const IconDataDuotone(0x10f0c8), - ); - - /// Regular Square Full icon - /// - /// https://fontawesome.com/icons/square-full?style=regular - /// block, box, shape - static const IconData squareFull = const IconDataRegular(0xf45c); - - /// Solid Square Full icon - /// - /// https://fontawesome.com/icons/square-full?style=solid - /// block, box, shape - static const IconData solidSquareFull = const IconDataSolid(0xf45c); - - /// Light Square Full icon - /// - /// https://fontawesome.com/icons/light_square-full?style=light - /// block, box, shape - static const IconData lightSquareFull = const IconDataLight(0xf45c); - - /// Duotone Square Full icon - /// - /// https://fontawesome.com/icons/duotone_square-full?style=duotone - /// block, box, shape - static const IconDataDuotone duotoneSquareFull = const IconDataDuotone( - 0xf45c, - secondary: const IconDataDuotone(0x10f45c), - ); - - /// Regular Square Root icon - /// - /// https://fontawesome.com/icons/square-root?style=regular - /// arithmetic, calculus, division, math - static const IconData squareRoot = const IconDataRegular(0xf697); - - /// Solid Square Root icon - /// - /// https://fontawesome.com/icons/square-root?style=solid - /// arithmetic, calculus, division, math - static const IconData solidSquareRoot = const IconDataSolid(0xf697); - - /// Light Square Root icon - /// - /// https://fontawesome.com/icons/light_square-root?style=light - /// arithmetic, calculus, division, math - static const IconData lightSquareRoot = const IconDataLight(0xf697); - - /// Duotone Square Root icon - /// - /// https://fontawesome.com/icons/duotone_square-root?style=duotone - /// arithmetic, calculus, division, math - static const IconDataDuotone duotoneSquareRoot = const IconDataDuotone( - 0xf697, - secondary: const IconDataDuotone(0x10f697), - ); - - /// Regular Alternate Square Root icon - /// - /// https://fontawesome.com/icons/square-root-alt?style=regular - /// arithmetic, calculus, division, math - static const IconData squareRootAlt = const IconDataRegular(0xf698); - - /// Solid Alternate Square Root icon - /// - /// https://fontawesome.com/icons/square-root-alt?style=solid - /// arithmetic, calculus, division, math - static const IconData solidSquareRootAlt = const IconDataSolid(0xf698); - - /// Light Alternate Square Root icon - /// - /// https://fontawesome.com/icons/light_square-root-alt?style=light - /// arithmetic, calculus, division, math - static const IconData lightSquareRootAlt = const IconDataLight(0xf698); - - /// Duotone Alternate Square Root icon - /// - /// https://fontawesome.com/icons/duotone_square-root-alt?style=duotone - /// arithmetic, calculus, division, math - static const IconDataDuotone duotoneSquareRootAlt = const IconDataDuotone( - 0xf698, - secondary: const IconDataDuotone(0x10f698), - ); - - /// Brands Squarespace icon - /// - /// https://fontawesome.com/icons/squarespace?style=brands - static const IconData squarespace = const IconDataBrands(0xf5be); - - /// Regular Squirrel icon - /// - /// https://fontawesome.com/icons/squirrel?style=regular - /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData squirrel = const IconDataRegular(0xf71a); - - /// Solid Squirrel icon - /// - /// https://fontawesome.com/icons/squirrel?style=solid - /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData solidSquirrel = const IconDataSolid(0xf71a); - - /// Light Squirrel icon - /// - /// https://fontawesome.com/icons/light_squirrel?style=light - /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconData lightSquirrel = const IconDataLight(0xf71a); - - /// Duotone Squirrel icon - /// - /// https://fontawesome.com/icons/duotone_squirrel?style=duotone - /// animal, chipmunk, mammal, marmot, rat, rodent, tree - static const IconDataDuotone duotoneSquirrel = const IconDataDuotone( - 0xf71a, - secondary: const IconDataDuotone(0x10f71a), - ); - - /// Brands Stack Exchange icon - /// - /// https://fontawesome.com/icons/stack-exchange?style=brands - static const IconData stackExchange = const IconDataBrands(0xf18d); - - /// Brands Stack Overflow icon - /// - /// https://fontawesome.com/icons/stack-overflow?style=brands - static const IconData stackOverflow = const IconDataBrands(0xf16c); - - /// Brands Stackpath icon - /// - /// https://fontawesome.com/icons/stackpath?style=brands - static const IconData stackpath = const IconDataBrands(0xf842); - - /// Regular Staff icon - /// - /// https://fontawesome.com/icons/staff?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData staff = const IconDataRegular(0xf71b); - - /// Solid Staff icon - /// - /// https://fontawesome.com/icons/staff?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData solidStaff = const IconDataSolid(0xf71b); - - /// Light Staff icon - /// - /// https://fontawesome.com/icons/light_staff?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconData lightStaff = const IconDataLight(0xf71b); - - /// Duotone Staff icon - /// - /// https://fontawesome.com/icons/duotone_staff?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, mage, stick, weapon - static const IconDataDuotone duotoneStaff = const IconDataDuotone( - 0xf71b, - secondary: const IconDataDuotone(0x10f71b), - ); - - /// Regular Stamp icon - /// - /// https://fontawesome.com/icons/stamp?style=regular - /// art, certificate, imprint, rubber, seal - static const IconData stamp = const IconDataRegular(0xf5bf); - - /// Solid Stamp icon - /// - /// https://fontawesome.com/icons/stamp?style=solid - /// art, certificate, imprint, rubber, seal - static const IconData solidStamp = const IconDataSolid(0xf5bf); - - /// Light Stamp icon - /// - /// https://fontawesome.com/icons/light_stamp?style=light - /// art, certificate, imprint, rubber, seal - static const IconData lightStamp = const IconDataLight(0xf5bf); - - /// Duotone Stamp icon - /// - /// https://fontawesome.com/icons/duotone_stamp?style=duotone - /// art, certificate, imprint, rubber, seal - static const IconDataDuotone duotoneStamp = const IconDataDuotone( - 0xf5bf, - secondary: const IconDataDuotone(0x10f5bf), - ); - - /// Regular Star icon - /// - /// https://fontawesome.com/icons/star?style=regular - /// achievement, award, favorite, important, night, rating, score - static const IconData star = const IconDataRegular(0xf005); - - /// Solid Star icon - /// - /// https://fontawesome.com/icons/star?style=solid - /// achievement, award, favorite, important, night, rating, score - static const IconData solidStar = const IconDataSolid(0xf005); - - /// Light Star icon - /// - /// https://fontawesome.com/icons/light_star?style=light - /// achievement, award, favorite, important, night, rating, score - static const IconData lightStar = const IconDataLight(0xf005); - - /// Duotone Star icon - /// - /// https://fontawesome.com/icons/duotone_star?style=duotone - /// achievement, award, favorite, important, night, rating, score - static const IconDataDuotone duotoneStar = const IconDataDuotone( - 0xf005, - secondary: const IconDataDuotone(0x10f005), - ); - - /// Regular Star and Crescent icon - /// - /// https://fontawesome.com/icons/star-and-crescent?style=regular - /// islam, muslim, religion - static const IconData starAndCrescent = const IconDataRegular(0xf699); - - /// Solid Star and Crescent icon - /// - /// https://fontawesome.com/icons/star-and-crescent?style=solid - /// islam, muslim, religion - static const IconData solidStarAndCrescent = const IconDataSolid(0xf699); - - /// Light Star and Crescent icon - /// - /// https://fontawesome.com/icons/light_star-and-crescent?style=light - /// islam, muslim, religion - static const IconData lightStarAndCrescent = const IconDataLight(0xf699); - - /// Duotone Star and Crescent icon - /// - /// https://fontawesome.com/icons/duotone_star-and-crescent?style=duotone - /// islam, muslim, religion - static const IconDataDuotone duotoneStarAndCrescent = const IconDataDuotone( - 0xf699, - secondary: const IconDataDuotone(0x10f699), - ); - - /// Regular Christmas Star icon - /// - /// https://fontawesome.com/icons/star-christmas?style=regular - /// bethlehem, christmas, holiday, north, xmas - static const IconData starChristmas = const IconDataRegular(0xf7d4); - - /// Solid Christmas Star icon - /// - /// https://fontawesome.com/icons/star-christmas?style=solid - /// bethlehem, christmas, holiday, north, xmas - static const IconData solidStarChristmas = const IconDataSolid(0xf7d4); - - /// Light Christmas Star icon - /// - /// https://fontawesome.com/icons/light_star-christmas?style=light - /// bethlehem, christmas, holiday, north, xmas - static const IconData lightStarChristmas = const IconDataLight(0xf7d4); - - /// Duotone Christmas Star icon - /// - /// https://fontawesome.com/icons/duotone_star-christmas?style=duotone - /// bethlehem, christmas, holiday, north, xmas - static const IconDataDuotone duotoneStarChristmas = const IconDataDuotone( - 0xf7d4, - secondary: const IconDataDuotone(0x10f7d4), - ); - - /// Regular Exclamation Star icon - /// - /// https://fontawesome.com/icons/star-exclamation?style=regular - /// achievement, alert, award, favorite, night, rating, score - static const IconData starExclamation = const IconDataRegular(0xf2f3); - - /// Solid Exclamation Star icon - /// - /// https://fontawesome.com/icons/star-exclamation?style=solid - /// achievement, alert, award, favorite, night, rating, score - static const IconData solidStarExclamation = const IconDataSolid(0xf2f3); - - /// Light Exclamation Star icon - /// - /// https://fontawesome.com/icons/light_star-exclamation?style=light - /// achievement, alert, award, favorite, night, rating, score - static const IconData lightStarExclamation = const IconDataLight(0xf2f3); - - /// Duotone Exclamation Star icon - /// - /// https://fontawesome.com/icons/duotone_star-exclamation?style=duotone - /// achievement, alert, award, favorite, night, rating, score - static const IconDataDuotone duotoneStarExclamation = const IconDataDuotone( - 0xf2f3, - secondary: const IconDataDuotone(0x10f2f3), - ); - - /// 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 = const IconDataRegular(0xf089); - - /// 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 = const IconDataSolid(0xf089); - - /// Light star-half icon - /// - /// https://fontawesome.com/icons/light_star-half?style=light - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData lightStarHalf = const IconDataLight(0xf089); - - /// Duotone star-half icon - /// - /// https://fontawesome.com/icons/duotone_star-half?style=duotone - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconDataDuotone duotoneStarHalf = const IconDataDuotone( - 0xf089, - secondary: const IconDataDuotone(0x10f089), - ); - - /// Regular Alternate Star Half icon - /// - /// https://fontawesome.com/icons/star-half-alt?style=regular - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData starHalfAlt = const IconDataRegular(0xf5c0); - - /// Solid Alternate Star Half icon - /// - /// https://fontawesome.com/icons/star-half-alt?style=solid - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData solidStarHalfAlt = const IconDataSolid(0xf5c0); - - /// Light Alternate Star Half icon - /// - /// https://fontawesome.com/icons/light_star-half-alt?style=light - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconData lightStarHalfAlt = const IconDataLight(0xf5c0); - - /// Duotone Alternate Star Half icon - /// - /// https://fontawesome.com/icons/duotone_star-half-alt?style=duotone - /// achievement, award, rating, score, star-half-empty, star-half-full - static const IconDataDuotone duotoneStarHalfAlt = const IconDataDuotone( - 0xf5c0, - secondary: const IconDataDuotone(0x10f5c0), - ); - - /// Regular Star of David icon - /// - /// https://fontawesome.com/icons/star-of-david?style=regular - /// jewish, judaism, religion - static const IconData starOfDavid = const IconDataRegular(0xf69a); - - /// Solid Star of David icon - /// - /// https://fontawesome.com/icons/star-of-david?style=solid - /// jewish, judaism, religion - static const IconData solidStarOfDavid = const IconDataSolid(0xf69a); - - /// Light Star of David icon - /// - /// https://fontawesome.com/icons/light_star-of-david?style=light - /// jewish, judaism, religion - static const IconData lightStarOfDavid = const IconDataLight(0xf69a); - - /// Duotone Star of David icon - /// - /// https://fontawesome.com/icons/duotone_star-of-david?style=duotone - /// jewish, judaism, religion - static const IconDataDuotone duotoneStarOfDavid = const IconDataDuotone( - 0xf69a, - secondary: const IconDataDuotone(0x10f69a), - ); - - /// Regular Star of Life icon - /// - /// https://fontawesome.com/icons/star-of-life?style=regular - /// doctor, emt, first aid, health, medical - static const IconData starOfLife = const IconDataRegular(0xf621); - - /// Solid Star of Life icon - /// - /// https://fontawesome.com/icons/star-of-life?style=solid - /// doctor, emt, first aid, health, medical - static const IconData solidStarOfLife = const IconDataSolid(0xf621); - - /// Light Star of Life icon - /// - /// https://fontawesome.com/icons/light_star-of-life?style=light - /// doctor, emt, first aid, health, medical - static const IconData lightStarOfLife = const IconDataLight(0xf621); - - /// Duotone Star of Life icon - /// - /// https://fontawesome.com/icons/duotone_star-of-life?style=duotone - /// doctor, emt, first aid, health, medical - static const IconDataDuotone duotoneStarOfLife = const IconDataDuotone( - 0xf621, - secondary: const IconDataDuotone(0x10f621), - ); - - /// Regular Star Shooting icon - /// - /// https://fontawesome.com/icons/star-shooting?style=regular - /// asteroid, comet, meteor, space, wish - static const IconData starShooting = const IconDataRegular(0xe036); - - /// Solid Star Shooting icon - /// - /// https://fontawesome.com/icons/star-shooting?style=solid - /// asteroid, comet, meteor, space, wish - static const IconData solidStarShooting = const IconDataSolid(0xe036); - - /// Light Star Shooting icon - /// - /// https://fontawesome.com/icons/light_star-shooting?style=light - /// asteroid, comet, meteor, space, wish - static const IconData lightStarShooting = const IconDataLight(0xe036); - - /// Duotone Star Shooting icon - /// - /// https://fontawesome.com/icons/duotone_star-shooting?style=duotone - /// asteroid, comet, meteor, space, wish - static const IconDataDuotone duotoneStarShooting = const IconDataDuotone( - 0xe036, - secondary: const IconDataDuotone(0x10e036), - ); - - /// Regular Starfighter icon - /// - /// https://fontawesome.com/icons/starfighter?style=regular - /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData starfighter = const IconDataRegular(0xe037); - - /// Solid Starfighter icon - /// - /// https://fontawesome.com/icons/starfighter?style=solid - /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData solidStarfighter = const IconDataSolid(0xe037); - - /// Light Starfighter icon - /// - /// https://fontawesome.com/icons/light_starfighter?style=light - /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconData lightStarfighter = const IconDataLight(0xe037); - - /// Duotone Starfighter icon - /// - /// https://fontawesome.com/icons/duotone_starfighter?style=duotone - /// luke skywalker, rebel, spaceship, star wars, x-wing - static const IconDataDuotone duotoneStarfighter = const IconDataDuotone( - 0xe037, - secondary: const IconDataDuotone(0x10e037), - ); - - /// Regular Starfighter Alternate icon - /// - /// https://fontawesome.com/icons/starfighter-alt?style=regular - /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData starfighterAlt = const IconDataRegular(0xe038); - - /// Solid Starfighter Alternate icon - /// - /// https://fontawesome.com/icons/starfighter-alt?style=solid - /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData solidStarfighterAlt = const IconDataSolid(0xe038); - - /// Light Starfighter Alternate icon - /// - /// https://fontawesome.com/icons/light_starfighter-alt?style=light - /// darth vader, empire, spaceship, star wars, tie fighter - static const IconData lightStarfighterAlt = const IconDataLight(0xe038); - - /// Duotone Starfighter Alternate icon - /// - /// https://fontawesome.com/icons/duotone_starfighter-alt?style=duotone - /// darth vader, empire, spaceship, star wars, tie fighter - static const IconDataDuotone duotoneStarfighterAlt = const IconDataDuotone( - 0xe038, - secondary: const IconDataDuotone(0x10e038), - ); - - /// Regular Stars icon - /// - /// https://fontawesome.com/icons/stars?style=regular - /// favorite, galaxy, magic, night, space - static const IconData stars = const IconDataRegular(0xf762); - - /// Solid Stars icon - /// - /// https://fontawesome.com/icons/stars?style=solid - /// favorite, galaxy, magic, night, space - static const IconData solidStars = const IconDataSolid(0xf762); - - /// Light Stars icon - /// - /// https://fontawesome.com/icons/light_stars?style=light - /// favorite, galaxy, magic, night, space - static const IconData lightStars = const IconDataLight(0xf762); - - /// Duotone Stars icon - /// - /// https://fontawesome.com/icons/duotone_stars?style=duotone - /// favorite, galaxy, magic, night, space - static const IconDataDuotone duotoneStars = const IconDataDuotone( - 0xf762, - secondary: const IconDataDuotone(0x10f762), - ); - - /// 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 = const IconDataRegular(0xe039); - - /// 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 = const IconDataSolid(0xe039); - - /// Light Starship icon - /// - /// https://fontawesome.com/icons/light_starship?style=light - /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconData lightStarship = const IconDataLight(0xe039); - - /// Duotone Starship icon - /// - /// https://fontawesome.com/icons/duotone_starship?style=duotone - /// engage, enterprise, james t kirk, jean-luc picard, make it so, ncc-1701, spacecraft, spaceship, star trek - static const IconDataDuotone duotoneStarship = const IconDataDuotone( - 0xe039, - secondary: const IconDataDuotone(0x10e039), - ); - - /// 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 = const IconDataRegular(0xe03a); - - /// 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 = const IconDataSolid(0xe03a); - - /// Light Starship Freighter icon - /// - /// https://fontawesome.com/icons/light_starship-freighter?style=light - /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconData lightStarshipFreighter = const IconDataLight(0xe03a); - - /// Duotone Starship Freighter icon - /// - /// https://fontawesome.com/icons/duotone_starship-freighter?style=duotone - /// chewbacca, han solo, millenium falcon, rebel, spaceship, star wars, yt-1300 - static const IconDataDuotone duotoneStarshipFreighter = const IconDataDuotone( - 0xe03a, - secondary: const IconDataDuotone(0x10e03a), - ); - - /// Brands StayLinked icon - /// - /// https://fontawesome.com/icons/staylinked?style=brands - static const IconData staylinked = const IconDataBrands(0xf3f5); - - /// Regular Steak icon - /// - /// https://fontawesome.com/icons/steak?style=regular - /// beef, grill, meat, sirloin - static const IconData steak = const IconDataRegular(0xf824); - - /// Solid Steak icon - /// - /// https://fontawesome.com/icons/steak?style=solid - /// beef, grill, meat, sirloin - static const IconData solidSteak = const IconDataSolid(0xf824); - - /// Light Steak icon - /// - /// https://fontawesome.com/icons/light_steak?style=light - /// beef, grill, meat, sirloin - static const IconData lightSteak = const IconDataLight(0xf824); - - /// Duotone Steak icon - /// - /// https://fontawesome.com/icons/duotone_steak?style=duotone - /// beef, grill, meat, sirloin - static const IconDataDuotone duotoneSteak = const IconDataDuotone( - 0xf824, - secondary: const IconDataDuotone(0x10f824), - ); - - /// Brands Steam icon - /// - /// https://fontawesome.com/icons/steam?style=brands - static const IconData steam = const IconDataBrands(0xf1b6); - - /// Brands Steam Square icon - /// - /// https://fontawesome.com/icons/steam-square?style=brands - static const IconData steamSquare = const IconDataBrands(0xf1b7); - - /// Brands Steam Symbol icon - /// - /// https://fontawesome.com/icons/steam-symbol?style=brands - static const IconData steamSymbol = const IconDataBrands(0xf3f6); - - /// Regular Wheel Steering icon - /// - /// https://fontawesome.com/icons/steering-wheel?style=regular - /// auto, car, direction, driving, navigation - static const IconData steeringWheel = const IconDataRegular(0xf622); - - /// Solid Wheel Steering icon - /// - /// https://fontawesome.com/icons/steering-wheel?style=solid - /// auto, car, direction, driving, navigation - static const IconData solidSteeringWheel = const IconDataSolid(0xf622); - - /// Light Wheel Steering icon - /// - /// https://fontawesome.com/icons/light_steering-wheel?style=light - /// auto, car, direction, driving, navigation - static const IconData lightSteeringWheel = const IconDataLight(0xf622); - - /// Duotone Wheel Steering icon - /// - /// https://fontawesome.com/icons/duotone_steering-wheel?style=duotone - /// auto, car, direction, driving, navigation - static const IconDataDuotone duotoneSteeringWheel = const IconDataDuotone( - 0xf622, - secondary: const IconDataDuotone(0x10f622), - ); - - /// Regular step-backward icon - /// - /// https://fontawesome.com/icons/step-backward?style=regular - /// beginning, first, previous, rewind, start - static const IconData stepBackward = const IconDataRegular(0xf048); - - /// Solid step-backward icon - /// - /// https://fontawesome.com/icons/step-backward?style=solid - /// beginning, first, previous, rewind, start - static const IconData solidStepBackward = const IconDataSolid(0xf048); - - /// Light step-backward icon - /// - /// https://fontawesome.com/icons/light_step-backward?style=light - /// beginning, first, previous, rewind, start - static const IconData lightStepBackward = const IconDataLight(0xf048); - - /// Duotone step-backward icon - /// - /// https://fontawesome.com/icons/duotone_step-backward?style=duotone - /// beginning, first, previous, rewind, start - static const IconDataDuotone duotoneStepBackward = const IconDataDuotone( - 0xf048, - secondary: const IconDataDuotone(0x10f048), - ); - - /// Regular step-forward icon - /// - /// https://fontawesome.com/icons/step-forward?style=regular - /// end, last, next - static const IconData stepForward = const IconDataRegular(0xf051); - - /// Solid step-forward icon - /// - /// https://fontawesome.com/icons/step-forward?style=solid - /// end, last, next - static const IconData solidStepForward = const IconDataSolid(0xf051); - - /// Light step-forward icon - /// - /// https://fontawesome.com/icons/light_step-forward?style=light - /// end, last, next - static const IconData lightStepForward = const IconDataLight(0xf051); - - /// Duotone step-forward icon - /// - /// https://fontawesome.com/icons/duotone_step-forward?style=duotone - /// end, last, next - static const IconDataDuotone duotoneStepForward = const IconDataDuotone( - 0xf051, - secondary: const IconDataDuotone(0x10f051), - ); - - /// Regular Stethoscope icon - /// - /// https://fontawesome.com/icons/stethoscope?style=regular - /// covid-19, diagnosis, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData stethoscope = const IconDataRegular(0xf0f1); - - /// Solid Stethoscope icon - /// - /// https://fontawesome.com/icons/stethoscope?style=solid - /// covid-19, diagnosis, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData solidStethoscope = const IconDataSolid(0xf0f1); - - /// Light Stethoscope icon - /// - /// https://fontawesome.com/icons/light_stethoscope?style=light - /// covid-19, diagnosis, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconData lightStethoscope = const IconDataLight(0xf0f1); - - /// Duotone Stethoscope icon - /// - /// https://fontawesome.com/icons/duotone_stethoscope?style=duotone - /// covid-19, diagnosis, doctor, general practitioner, hospital, infirmary, medicine, office, outpatient - static const IconDataDuotone duotoneStethoscope = const IconDataDuotone( - 0xf0f1, - secondary: const IconDataDuotone(0x10f0f1), - ); - - /// Brands Sticker Mule icon - /// - /// https://fontawesome.com/icons/sticker-mule?style=brands - static const IconData stickerMule = const IconDataBrands(0xf3f7); - - /// Regular Sticky Note icon - /// - /// https://fontawesome.com/icons/sticky-note?style=regular - /// message, note, paper, reminder, sticker - static const IconData stickyNote = const IconDataRegular(0xf249); - - /// Solid Sticky Note icon - /// - /// https://fontawesome.com/icons/sticky-note?style=solid - /// message, note, paper, reminder, sticker - static const IconData solidStickyNote = const IconDataSolid(0xf249); - - /// Light Sticky Note icon - /// - /// https://fontawesome.com/icons/light_sticky-note?style=light - /// message, note, paper, reminder, sticker - static const IconData lightStickyNote = const IconDataLight(0xf249); - - /// Duotone Sticky Note icon - /// - /// https://fontawesome.com/icons/duotone_sticky-note?style=duotone - /// message, note, paper, reminder, sticker - static const IconDataDuotone duotoneStickyNote = const IconDataDuotone( - 0xf249, - secondary: const IconDataDuotone(0x10f249), - ); - - /// Regular Stocking icon - /// - /// https://fontawesome.com/icons/stocking?style=regular - /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData stocking = const IconDataRegular(0xf7d5); - - /// Solid Stocking icon - /// - /// https://fontawesome.com/icons/stocking?style=solid - /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData solidStocking = const IconDataSolid(0xf7d5); - - /// Light Stocking icon - /// - /// https://fontawesome.com/icons/light_stocking?style=light - /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconData lightStocking = const IconDataLight(0xf7d5); - - /// Duotone Stocking icon - /// - /// https://fontawesome.com/icons/duotone_stocking?style=duotone - /// christmas, clothing, decoration, gift, holiday, present, sock, tradition, xmas - static const IconDataDuotone duotoneStocking = const IconDataDuotone( - 0xf7d5, - secondary: const IconDataDuotone(0x10f7d5), - ); - - /// Regular Stomach icon - /// - /// https://fontawesome.com/icons/stomach?style=regular - /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData stomach = const IconDataRegular(0xf623); - - /// Solid Stomach icon - /// - /// https://fontawesome.com/icons/stomach?style=solid - /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData solidStomach = const IconDataSolid(0xf623); - - /// Light Stomach icon - /// - /// https://fontawesome.com/icons/light_stomach?style=light - /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconData lightStomach = const IconDataLight(0xf623); - - /// Duotone Stomach icon - /// - /// https://fontawesome.com/icons/duotone_stomach?style=duotone - /// abdomen, belly, food, gut, hungry, intestine, organ, tummy - static const IconDataDuotone duotoneStomach = const IconDataDuotone( - 0xf623, - secondary: const IconDataDuotone(0x10f623), - ); - - /// Regular stop icon - /// - /// https://fontawesome.com/icons/stop?style=regular - /// block, box, square - static const IconData stop = const IconDataRegular(0xf04d); - - /// Solid stop icon - /// - /// https://fontawesome.com/icons/stop?style=solid - /// block, box, square - static const IconData solidStop = const IconDataSolid(0xf04d); - - /// Light stop icon - /// - /// https://fontawesome.com/icons/light_stop?style=light - /// block, box, square - static const IconData lightStop = const IconDataLight(0xf04d); - - /// Duotone stop icon - /// - /// https://fontawesome.com/icons/duotone_stop?style=duotone - /// block, box, square - static const IconDataDuotone duotoneStop = const IconDataDuotone( - 0xf04d, - secondary: const IconDataDuotone(0x10f04d), - ); - - /// Regular Stop Circle icon - /// - /// https://fontawesome.com/icons/stop-circle?style=regular - /// block, box, circle, square - static const IconData stopCircle = const IconDataRegular(0xf28d); - - /// Solid Stop Circle icon - /// - /// https://fontawesome.com/icons/stop-circle?style=solid - /// block, box, circle, square - static const IconData solidStopCircle = const IconDataSolid(0xf28d); - - /// Light Stop Circle icon - /// - /// https://fontawesome.com/icons/light_stop-circle?style=light - /// block, box, circle, square - static const IconData lightStopCircle = const IconDataLight(0xf28d); - - /// Duotone Stop Circle icon - /// - /// https://fontawesome.com/icons/duotone_stop-circle?style=duotone - /// block, box, circle, square - static const IconDataDuotone duotoneStopCircle = const IconDataDuotone( - 0xf28d, - secondary: const IconDataDuotone(0x10f28d), - ); - - /// Regular Stopwatch icon - /// - /// https://fontawesome.com/icons/stopwatch?style=regular - /// clock, reminder, time - static const IconData stopwatch = const IconDataRegular(0xf2f2); - - /// Solid Stopwatch icon - /// - /// https://fontawesome.com/icons/stopwatch?style=solid - /// clock, reminder, time - static const IconData solidStopwatch = const IconDataSolid(0xf2f2); - - /// Light Stopwatch icon - /// - /// https://fontawesome.com/icons/light_stopwatch?style=light - /// clock, reminder, time - static const IconData lightStopwatch = const IconDataLight(0xf2f2); - - /// Duotone Stopwatch icon - /// - /// https://fontawesome.com/icons/duotone_stopwatch?style=duotone - /// clock, reminder, time - static const IconDataDuotone duotoneStopwatch = const IconDataDuotone( - 0xf2f2, - secondary: const IconDataDuotone(0x10f2f2), - ); - - /// 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 = const IconDataRegular(0xe06f); - - /// Light Stopwatch 20 icon - /// - /// https://fontawesome.com/icons/light_stopwatch-20?style=light - /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconData lightStopwatch20 = const IconDataLight(0xe06f); - - /// 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 = const IconDataSolid(0xe06f); - - /// Duotone Stopwatch 20 icon - /// - /// https://fontawesome.com/icons/duotone_stopwatch-20?style=duotone - /// ABCs, countdown, covid-19, happy birthday, i will survive, reminder, seconds, time, timer - static const IconDataDuotone duotoneStopwatch20 = const IconDataDuotone( - 0xe06f, - secondary: const IconDataDuotone(0x10e06f), - ); - - /// Regular Store icon - /// - /// https://fontawesome.com/icons/store?style=regular - /// building, buy, purchase, shopping - static const IconData store = const IconDataRegular(0xf54e); - - /// Solid Store icon - /// - /// https://fontawesome.com/icons/store?style=solid - /// building, buy, purchase, shopping - static const IconData solidStore = const IconDataSolid(0xf54e); - - /// Light Store icon - /// - /// https://fontawesome.com/icons/light_store?style=light - /// building, buy, purchase, shopping - static const IconData lightStore = const IconDataLight(0xf54e); - - /// Duotone Store icon - /// - /// https://fontawesome.com/icons/duotone_store?style=duotone - /// building, buy, purchase, shopping - static const IconDataDuotone duotoneStore = const IconDataDuotone( - 0xf54e, - secondary: const IconDataDuotone(0x10f54e), - ); - - /// Regular Alternate Store icon - /// - /// https://fontawesome.com/icons/store-alt?style=regular - /// building, buy, purchase, shopping - static const IconData storeAlt = const IconDataRegular(0xf54f); - - /// Solid Alternate Store icon - /// - /// https://fontawesome.com/icons/store-alt?style=solid - /// building, buy, purchase, shopping - static const IconData solidStoreAlt = const IconDataSolid(0xf54f); - - /// Light Alternate Store icon - /// - /// https://fontawesome.com/icons/light_store-alt?style=light - /// building, buy, purchase, shopping - static const IconData lightStoreAlt = const IconDataLight(0xf54f); - - /// Duotone Alternate Store icon - /// - /// https://fontawesome.com/icons/duotone_store-alt?style=duotone - /// building, buy, purchase, shopping - static const IconDataDuotone duotoneStoreAlt = const IconDataDuotone( - 0xf54f, - secondary: const IconDataDuotone(0x10f54f), - ); - - /// Regular Alternate Store Slash icon - /// - /// https://fontawesome.com/icons/store-alt-slash?style=regular - /// building, buy, closed, covid-19, purchase, shopping - static const IconData storeAltSlash = const IconDataRegular(0xe070); - - /// Light Alternate Store Slash icon - /// - /// https://fontawesome.com/icons/light_store-alt-slash?style=light - /// building, buy, closed, covid-19, purchase, shopping - static const IconData lightStoreAltSlash = const IconDataLight(0xe070); - - /// Solid Alternate Store Slash icon - /// - /// https://fontawesome.com/icons/store-alt-slash?style=solid - /// building, buy, closed, covid-19, purchase, shopping - static const IconData solidStoreAltSlash = const IconDataSolid(0xe070); - - /// Duotone Alternate Store Slash icon - /// - /// https://fontawesome.com/icons/duotone_store-alt-slash?style=duotone - /// building, buy, closed, covid-19, purchase, shopping - static const IconDataDuotone duotoneStoreAltSlash = const IconDataDuotone( - 0xe070, - secondary: const IconDataDuotone(0x10e070), - ); - - /// Regular Store Slash icon - /// - /// https://fontawesome.com/icons/store-slash?style=regular - /// building, buy, closed, covid-19, purchase, shopping - static const IconData storeSlash = const IconDataRegular(0xe071); - - /// Light Store Slash icon - /// - /// https://fontawesome.com/icons/light_store-slash?style=light - /// building, buy, closed, covid-19, purchase, shopping - static const IconData lightStoreSlash = const IconDataLight(0xe071); - - /// Solid Store Slash icon - /// - /// https://fontawesome.com/icons/store-slash?style=solid - /// building, buy, closed, covid-19, purchase, shopping - static const IconData solidStoreSlash = const IconDataSolid(0xe071); - - /// Duotone Store Slash icon - /// - /// https://fontawesome.com/icons/duotone_store-slash?style=duotone - /// building, buy, closed, covid-19, purchase, shopping - static const IconDataDuotone duotoneStoreSlash = const IconDataDuotone( - 0xe071, - secondary: const IconDataDuotone(0x10e071), - ); - - /// Brands Strava icon - /// - /// https://fontawesome.com/icons/strava?style=brands - static const IconData strava = const IconDataBrands(0xf428); - - /// Regular Stream icon - /// - /// https://fontawesome.com/icons/stream?style=regular - /// flow, list, timeline - static const IconData stream = const IconDataRegular(0xf550); - - /// Solid Stream icon - /// - /// https://fontawesome.com/icons/stream?style=solid - /// flow, list, timeline - static const IconData solidStream = const IconDataSolid(0xf550); - - /// Light Stream icon - /// - /// https://fontawesome.com/icons/light_stream?style=light - /// flow, list, timeline - static const IconData lightStream = const IconDataLight(0xf550); - - /// Duotone Stream icon - /// - /// https://fontawesome.com/icons/duotone_stream?style=duotone - /// flow, list, timeline - static const IconDataDuotone duotoneStream = const IconDataDuotone( - 0xf550, - secondary: const IconDataDuotone(0x10f550), - ); - - /// Regular Street View icon - /// - /// https://fontawesome.com/icons/street-view?style=regular - /// directions, location, map, navigation - static const IconData streetView = const IconDataRegular(0xf21d); - - /// Solid Street View icon - /// - /// https://fontawesome.com/icons/street-view?style=solid - /// directions, location, map, navigation - static const IconData solidStreetView = const IconDataSolid(0xf21d); - - /// Light Street View icon - /// - /// https://fontawesome.com/icons/light_street-view?style=light - /// directions, location, map, navigation - static const IconData lightStreetView = const IconDataLight(0xf21d); - - /// Duotone Street View icon - /// - /// https://fontawesome.com/icons/duotone_street-view?style=duotone - /// directions, location, map, navigation - static const IconDataDuotone duotoneStreetView = const IconDataDuotone( - 0xf21d, - secondary: const IconDataDuotone(0x10f21d), - ); - - /// Regular Stretcher icon - /// - /// https://fontawesome.com/icons/stretcher?style=regular - /// ambulance, bed, emergency, er, patient - static const IconData stretcher = const IconDataRegular(0xf825); - - /// Solid Stretcher icon - /// - /// https://fontawesome.com/icons/stretcher?style=solid - /// ambulance, bed, emergency, er, patient - static const IconData solidStretcher = const IconDataSolid(0xf825); - - /// Light Stretcher icon - /// - /// https://fontawesome.com/icons/light_stretcher?style=light - /// ambulance, bed, emergency, er, patient - static const IconData lightStretcher = const IconDataLight(0xf825); - - /// Duotone Stretcher icon - /// - /// https://fontawesome.com/icons/duotone_stretcher?style=duotone - /// ambulance, bed, emergency, er, patient - static const IconDataDuotone duotoneStretcher = const IconDataDuotone( - 0xf825, - secondary: const IconDataDuotone(0x10f825), - ); - - /// Regular Strikethrough icon - /// - /// https://fontawesome.com/icons/strikethrough?style=regular - /// cancel, edit, font, format, text, type - static const IconData strikethrough = const IconDataRegular(0xf0cc); - - /// Solid Strikethrough icon - /// - /// https://fontawesome.com/icons/strikethrough?style=solid - /// cancel, edit, font, format, text, type - static const IconData solidStrikethrough = const IconDataSolid(0xf0cc); - - /// Light Strikethrough icon - /// - /// https://fontawesome.com/icons/light_strikethrough?style=light - /// cancel, edit, font, format, text, type - static const IconData lightStrikethrough = const IconDataLight(0xf0cc); - - /// Duotone Strikethrough icon - /// - /// https://fontawesome.com/icons/duotone_strikethrough?style=duotone - /// cancel, edit, font, format, text, type - static const IconDataDuotone duotoneStrikethrough = const IconDataDuotone( - 0xf0cc, - secondary: const IconDataDuotone(0x10f0cc), - ); - - /// Brands Stripe icon - /// - /// https://fontawesome.com/icons/stripe?style=brands - static const IconData stripe = const IconDataBrands(0xf429); - - /// Brands Stripe S icon - /// - /// https://fontawesome.com/icons/stripe-s?style=brands - static const IconData stripeS = const IconDataBrands(0xf42a); - - /// Regular Stroopwafel icon - /// - /// https://fontawesome.com/icons/stroopwafel?style=regular - /// caramel, cookie, dessert, sweets, waffle - static const IconData stroopwafel = const IconDataRegular(0xf551); - - /// Solid Stroopwafel icon - /// - /// https://fontawesome.com/icons/stroopwafel?style=solid - /// caramel, cookie, dessert, sweets, waffle - static const IconData solidStroopwafel = const IconDataSolid(0xf551); - - /// Light Stroopwafel icon - /// - /// https://fontawesome.com/icons/light_stroopwafel?style=light - /// caramel, cookie, dessert, sweets, waffle - static const IconData lightStroopwafel = const IconDataLight(0xf551); - - /// Duotone Stroopwafel icon - /// - /// https://fontawesome.com/icons/duotone_stroopwafel?style=duotone - /// caramel, cookie, dessert, sweets, waffle - static const IconDataDuotone duotoneStroopwafel = const IconDataDuotone( - 0xf551, - secondary: const IconDataDuotone(0x10f551), - ); - - /// Brands Studio Vinari icon - /// - /// https://fontawesome.com/icons/studiovinari?style=brands - static const IconData studiovinari = const IconDataBrands(0xf3f8); - - /// Brands StumbleUpon Logo icon - /// - /// https://fontawesome.com/icons/stumbleupon?style=brands - static const IconData stumbleupon = const IconDataBrands(0xf1a4); - - /// Brands StumbleUpon Circle icon - /// - /// https://fontawesome.com/icons/stumbleupon-circle?style=brands - static const IconData stumbleuponCircle = const IconDataBrands(0xf1a3); - - /// Regular subscript icon - /// - /// https://fontawesome.com/icons/subscript?style=regular - /// edit, font, format, text, type - static const IconData subscript = const IconDataRegular(0xf12c); - - /// Solid subscript icon - /// - /// https://fontawesome.com/icons/subscript?style=solid - /// edit, font, format, text, type - static const IconData solidSubscript = const IconDataSolid(0xf12c); - - /// Light subscript icon - /// - /// https://fontawesome.com/icons/light_subscript?style=light - /// edit, font, format, text, type - static const IconData lightSubscript = const IconDataLight(0xf12c); - - /// Duotone subscript icon - /// - /// https://fontawesome.com/icons/duotone_subscript?style=duotone - /// edit, font, format, text, type - static const IconDataDuotone duotoneSubscript = const IconDataDuotone( - 0xf12c, - secondary: const IconDataDuotone(0x10f12c), - ); - - /// Regular Subway icon - /// - /// https://fontawesome.com/icons/subway?style=regular - /// machine, railway, train, transportation, vehicle - static const IconData subway = const IconDataRegular(0xf239); - - /// Solid Subway icon - /// - /// https://fontawesome.com/icons/subway?style=solid - /// machine, railway, train, transportation, vehicle - static const IconData solidSubway = const IconDataSolid(0xf239); - - /// Light Subway icon - /// - /// https://fontawesome.com/icons/light_subway?style=light - /// machine, railway, train, transportation, vehicle - static const IconData lightSubway = const IconDataLight(0xf239); - - /// Duotone Subway icon - /// - /// https://fontawesome.com/icons/duotone_subway?style=duotone - /// machine, railway, train, transportation, vehicle - static const IconDataDuotone duotoneSubway = const IconDataDuotone( - 0xf239, - secondary: const IconDataDuotone(0x10f239), - ); - - /// Regular Suitcase icon - /// - /// https://fontawesome.com/icons/suitcase?style=regular - /// baggage, luggage, move, suitcase, travel, trip - static const IconData suitcase = const IconDataRegular(0xf0f2); - - /// Solid Suitcase icon - /// - /// https://fontawesome.com/icons/suitcase?style=solid - /// baggage, luggage, move, suitcase, travel, trip - static const IconData solidSuitcase = const IconDataSolid(0xf0f2); - - /// Light Suitcase icon - /// - /// https://fontawesome.com/icons/light_suitcase?style=light - /// baggage, luggage, move, suitcase, travel, trip - static const IconData lightSuitcase = const IconDataLight(0xf0f2); - - /// Duotone Suitcase icon - /// - /// https://fontawesome.com/icons/duotone_suitcase?style=duotone - /// baggage, luggage, move, suitcase, travel, trip - static const IconDataDuotone duotoneSuitcase = const IconDataDuotone( - 0xf0f2, - secondary: const IconDataDuotone(0x10f0f2), - ); - - /// Regular Suitcase Rolling icon - /// - /// https://fontawesome.com/icons/suitcase-rolling?style=regular - /// baggage, luggage, move, suitcase, travel, trip - static const IconData suitcaseRolling = const IconDataRegular(0xf5c1); - - /// Solid Suitcase Rolling icon - /// - /// https://fontawesome.com/icons/suitcase-rolling?style=solid - /// baggage, luggage, move, suitcase, travel, trip - static const IconData solidSuitcaseRolling = const IconDataSolid(0xf5c1); - - /// Light Suitcase Rolling icon - /// - /// https://fontawesome.com/icons/light_suitcase-rolling?style=light - /// baggage, luggage, move, suitcase, travel, trip - static const IconData lightSuitcaseRolling = const IconDataLight(0xf5c1); - - /// Duotone Suitcase Rolling icon - /// - /// https://fontawesome.com/icons/duotone_suitcase-rolling?style=duotone - /// baggage, luggage, move, suitcase, travel, trip - static const IconDataDuotone duotoneSuitcaseRolling = const IconDataDuotone( - 0xf5c1, - secondary: const IconDataDuotone(0x10f5c1), - ); - - /// Regular Sun icon - /// - /// https://fontawesome.com/icons/sun?style=regular - /// brighten, contrast, day, lighter, sol, solar, star, weather - static const IconData sun = const IconDataRegular(0xf185); - - /// Solid Sun icon - /// - /// https://fontawesome.com/icons/sun?style=solid - /// brighten, contrast, day, lighter, sol, solar, star, weather - static const IconData solidSun = const IconDataSolid(0xf185); - - /// Light Sun icon - /// - /// https://fontawesome.com/icons/light_sun?style=light - /// brighten, contrast, day, lighter, sol, solar, star, weather - static const IconData lightSun = const IconDataLight(0xf185); - - /// Duotone Sun icon - /// - /// https://fontawesome.com/icons/duotone_sun?style=duotone - /// brighten, contrast, day, lighter, sol, solar, star, weather - static const IconDataDuotone duotoneSun = const IconDataDuotone( - 0xf185, - secondary: const IconDataDuotone(0x10f185), - ); - - /// Regular Sun with Cloud icon - /// - /// https://fontawesome.com/icons/sun-cloud?style=regular - /// cloud, day, lighter, sol, solar, star, weather - static const IconData sunCloud = const IconDataRegular(0xf763); - - /// Solid Sun with Cloud icon - /// - /// https://fontawesome.com/icons/sun-cloud?style=solid - /// cloud, day, lighter, sol, solar, star, weather - static const IconData solidSunCloud = const IconDataSolid(0xf763); - - /// Light Sun with Cloud icon - /// - /// https://fontawesome.com/icons/light_sun-cloud?style=light - /// cloud, day, lighter, sol, solar, star, weather - static const IconData lightSunCloud = const IconDataLight(0xf763); - - /// Duotone Sun with Cloud icon - /// - /// https://fontawesome.com/icons/duotone_sun-cloud?style=duotone - /// cloud, day, lighter, sol, solar, star, weather - static const IconDataDuotone duotoneSunCloud = const IconDataDuotone( - 0xf763, - secondary: const IconDataDuotone(0x10f763), - ); - - /// Regular Sun Dust icon - /// - /// https://fontawesome.com/icons/sun-dust?style=regular - /// day, dry, haze, heat - static const IconData sunDust = const IconDataRegular(0xf764); - - /// Solid Sun Dust icon - /// - /// https://fontawesome.com/icons/sun-dust?style=solid - /// day, dry, haze, heat - static const IconData solidSunDust = const IconDataSolid(0xf764); - - /// Light Sun Dust icon - /// - /// https://fontawesome.com/icons/light_sun-dust?style=light - /// day, dry, haze, heat - static const IconData lightSunDust = const IconDataLight(0xf764); - - /// Duotone Sun Dust icon - /// - /// https://fontawesome.com/icons/duotone_sun-dust?style=duotone - /// day, dry, haze, heat - static const IconDataDuotone duotoneSunDust = const IconDataDuotone( - 0xf764, - secondary: const IconDataDuotone(0x10f764), - ); - - /// Regular Sun Haze icon - /// - /// https://fontawesome.com/icons/sun-haze?style=regular - /// fog, heat, hot, sweltering - static const IconData sunHaze = const IconDataRegular(0xf765); - - /// Solid Sun Haze icon - /// - /// https://fontawesome.com/icons/sun-haze?style=solid - /// fog, heat, hot, sweltering - static const IconData solidSunHaze = const IconDataSolid(0xf765); - - /// Light Sun Haze icon - /// - /// https://fontawesome.com/icons/light_sun-haze?style=light - /// fog, heat, hot, sweltering - static const IconData lightSunHaze = const IconDataLight(0xf765); - - /// Duotone Sun Haze icon - /// - /// https://fontawesome.com/icons/duotone_sun-haze?style=duotone - /// fog, heat, hot, sweltering - static const IconDataDuotone duotoneSunHaze = const IconDataDuotone( - 0xf765, - secondary: const IconDataDuotone(0x10f765), - ); - - /// Regular Sunglasses icon - /// - /// https://fontawesome.com/icons/sunglasses?style=regular - /// bright, cool, mib, shades - static const IconData sunglasses = const IconDataRegular(0xf892); - - /// Solid Sunglasses icon - /// - /// https://fontawesome.com/icons/sunglasses?style=solid - /// bright, cool, mib, shades - static const IconData solidSunglasses = const IconDataSolid(0xf892); - - /// Light Sunglasses icon - /// - /// https://fontawesome.com/icons/light_sunglasses?style=light - /// bright, cool, mib, shades - static const IconData lightSunglasses = const IconDataLight(0xf892); - - /// Duotone Sunglasses icon - /// - /// https://fontawesome.com/icons/duotone_sunglasses?style=duotone - /// bright, cool, mib, shades - static const IconDataDuotone duotoneSunglasses = const IconDataDuotone( - 0xf892, - secondary: const IconDataDuotone(0x10f892), - ); - - /// Regular Sunrise icon - /// - /// https://fontawesome.com/icons/sunrise?style=regular - /// dawn, day, daybreak, daylight, daytime, morning, sun up - static const IconData sunrise = const IconDataRegular(0xf766); - - /// Solid Sunrise icon - /// - /// https://fontawesome.com/icons/sunrise?style=solid - /// dawn, day, daybreak, daylight, daytime, morning, sun up - static const IconData solidSunrise = const IconDataSolid(0xf766); - - /// Light Sunrise icon - /// - /// https://fontawesome.com/icons/light_sunrise?style=light - /// dawn, day, daybreak, daylight, daytime, morning, sun up - static const IconData lightSunrise = const IconDataLight(0xf766); - - /// Duotone Sunrise icon - /// - /// https://fontawesome.com/icons/duotone_sunrise?style=duotone - /// dawn, day, daybreak, daylight, daytime, morning, sun up - static const IconDataDuotone duotoneSunrise = const IconDataDuotone( - 0xf766, - secondary: const IconDataDuotone(0x10f766), - ); - - /// Regular Sunset icon - /// - /// https://fontawesome.com/icons/sunset?style=regular - /// dusk, night, nighttime, sun down - static const IconData sunset = const IconDataRegular(0xf767); - - /// Solid Sunset icon - /// - /// https://fontawesome.com/icons/sunset?style=solid - /// dusk, night, nighttime, sun down - static const IconData solidSunset = const IconDataSolid(0xf767); - - /// Light Sunset icon - /// - /// https://fontawesome.com/icons/light_sunset?style=light - /// dusk, night, nighttime, sun down - static const IconData lightSunset = const IconDataLight(0xf767); - - /// Duotone Sunset icon - /// - /// https://fontawesome.com/icons/duotone_sunset?style=duotone - /// dusk, night, nighttime, sun down - static const IconDataDuotone duotoneSunset = const IconDataDuotone( - 0xf767, - secondary: const IconDataDuotone(0x10f767), - ); - - /// Brands Superpowers icon - /// - /// https://fontawesome.com/icons/superpowers?style=brands - static const IconData superpowers = const IconDataBrands(0xf2dd); - - /// Regular superscript icon - /// - /// https://fontawesome.com/icons/superscript?style=regular - /// edit, exponential, font, format, text, type - static const IconData superscript = const IconDataRegular(0xf12b); - - /// Solid superscript icon - /// - /// https://fontawesome.com/icons/superscript?style=solid - /// edit, exponential, font, format, text, type - static const IconData solidSuperscript = const IconDataSolid(0xf12b); - - /// Light superscript icon - /// - /// https://fontawesome.com/icons/light_superscript?style=light - /// edit, exponential, font, format, text, type - static const IconData lightSuperscript = const IconDataLight(0xf12b); - - /// Duotone superscript icon - /// - /// https://fontawesome.com/icons/duotone_superscript?style=duotone - /// edit, exponential, font, format, text, type - static const IconDataDuotone duotoneSuperscript = const IconDataDuotone( - 0xf12b, - secondary: const IconDataDuotone(0x10f12b), - ); - - /// Brands Supple icon - /// - /// https://fontawesome.com/icons/supple?style=brands - static const IconData supple = const IconDataBrands(0xf3f9); - - /// Regular Hushed Face icon - /// - /// https://fontawesome.com/icons/surprise?style=regular - /// emoticon, face, shocked - static const IconData surprise = const IconDataRegular(0xf5c2); - - /// Solid Hushed Face icon - /// - /// https://fontawesome.com/icons/surprise?style=solid - /// emoticon, face, shocked - static const IconData solidSurprise = const IconDataSolid(0xf5c2); - - /// Light Hushed Face icon - /// - /// https://fontawesome.com/icons/light_surprise?style=light - /// emoticon, face, shocked - static const IconData lightSurprise = const IconDataLight(0xf5c2); - - /// Duotone Hushed Face icon - /// - /// https://fontawesome.com/icons/duotone_surprise?style=duotone - /// emoticon, face, shocked - static const IconDataDuotone duotoneSurprise = const IconDataDuotone( - 0xf5c2, - secondary: const IconDataDuotone(0x10f5c2), - ); - - /// Brands Suse icon - /// - /// https://fontawesome.com/icons/suse?style=brands - /// linux, operating system, os - static const IconData suse = const IconDataBrands(0xf7d6); - - /// Regular Swatchbook icon - /// - /// https://fontawesome.com/icons/swatchbook?style=regular - /// Pantone, color, design, hue, palette - static const IconData swatchbook = const IconDataRegular(0xf5c3); - - /// Solid Swatchbook icon - /// - /// https://fontawesome.com/icons/swatchbook?style=solid - /// Pantone, color, design, hue, palette - static const IconData solidSwatchbook = const IconDataSolid(0xf5c3); - - /// Light Swatchbook icon - /// - /// https://fontawesome.com/icons/light_swatchbook?style=light - /// Pantone, color, design, hue, palette - static const IconData lightSwatchbook = const IconDataLight(0xf5c3); - - /// Duotone Swatchbook icon - /// - /// https://fontawesome.com/icons/duotone_swatchbook?style=duotone - /// Pantone, color, design, hue, palette - static const IconDataDuotone duotoneSwatchbook = const IconDataDuotone( - 0xf5c3, - secondary: const IconDataDuotone(0x10f5c3), - ); - - /// Brands Swift icon - /// - /// https://fontawesome.com/icons/swift?style=brands - static const IconData swift = const IconDataBrands(0xf8e1); - - /// Regular Swimmer icon - /// - /// https://fontawesome.com/icons/swimmer?style=regular - /// athlete, head, man, olympics, person, pool, water - static const IconData swimmer = const IconDataRegular(0xf5c4); - - /// Solid Swimmer icon - /// - /// https://fontawesome.com/icons/swimmer?style=solid - /// athlete, head, man, olympics, person, pool, water - static const IconData solidSwimmer = const IconDataSolid(0xf5c4); - - /// Light Swimmer icon - /// - /// https://fontawesome.com/icons/light_swimmer?style=light - /// athlete, head, man, olympics, person, pool, water - static const IconData lightSwimmer = const IconDataLight(0xf5c4); - - /// Duotone Swimmer icon - /// - /// https://fontawesome.com/icons/duotone_swimmer?style=duotone - /// athlete, head, man, olympics, person, pool, water - static const IconDataDuotone duotoneSwimmer = const IconDataDuotone( - 0xf5c4, - secondary: const IconDataDuotone(0x10f5c4), - ); - - /// Regular Swimming Pool icon - /// - /// https://fontawesome.com/icons/swimming-pool?style=regular - /// ladder, recreation, swim, water - static const IconData swimmingPool = const IconDataRegular(0xf5c5); - - /// Solid Swimming Pool icon - /// - /// https://fontawesome.com/icons/swimming-pool?style=solid - /// ladder, recreation, swim, water - static const IconData solidSwimmingPool = const IconDataSolid(0xf5c5); - - /// Light Swimming Pool icon - /// - /// https://fontawesome.com/icons/light_swimming-pool?style=light - /// ladder, recreation, swim, water - static const IconData lightSwimmingPool = const IconDataLight(0xf5c5); - - /// Duotone Swimming Pool icon - /// - /// https://fontawesome.com/icons/duotone_swimming-pool?style=duotone - /// ladder, recreation, swim, water - static const IconDataDuotone duotoneSwimmingPool = const IconDataDuotone( - 0xf5c5, - secondary: const IconDataDuotone(0x10f5c5), - ); - - /// Regular Sword icon - /// - /// https://fontawesome.com/icons/sword?style=regular - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData sword = const IconDataRegular(0xf71c); - - /// Solid Sword icon - /// - /// https://fontawesome.com/icons/sword?style=solid - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData solidSword = const IconDataSolid(0xf71c); - - /// Light Sword icon - /// - /// https://fontawesome.com/icons/light_sword?style=light - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData lightSword = const IconDataLight(0xf71c); - - /// Duotone Sword icon - /// - /// https://fontawesome.com/icons/duotone_sword?style=duotone - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconDataDuotone duotoneSword = const IconDataDuotone( - 0xf71c, - secondary: const IconDataDuotone(0x10f71c), - ); - - /// Regular Sword Laser icon - /// - /// https://fontawesome.com/icons/sword-laser?style=regular - /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData swordLaser = const IconDataRegular(0xe03b); - - /// Solid Sword Laser icon - /// - /// https://fontawesome.com/icons/sword-laser?style=solid - /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData solidSwordLaser = const IconDataSolid(0xe03b); - - /// Light Sword Laser icon - /// - /// https://fontawesome.com/icons/light_sword-laser?style=light - /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconData lightSwordLaser = const IconDataLight(0xe03b); - - /// Duotone Sword Laser icon - /// - /// https://fontawesome.com/icons/duotone_sword-laser?style=duotone - /// jedi, lightsaber, luke skywalker, rebel, star wars - static const IconDataDuotone duotoneSwordLaser = const IconDataDuotone( - 0xe03b, - secondary: const IconDataDuotone(0x10e03b), - ); - - /// Regular Sword Laser Alternate icon - /// - /// https://fontawesome.com/icons/sword-laser-alt?style=regular - /// darth vader, empire, lightsaber, sith, star wars - static const IconData swordLaserAlt = const IconDataRegular(0xe03c); - - /// Solid Sword Laser Alternate icon - /// - /// https://fontawesome.com/icons/sword-laser-alt?style=solid - /// darth vader, empire, lightsaber, sith, star wars - static const IconData solidSwordLaserAlt = const IconDataSolid(0xe03c); - - /// Light Sword Laser Alternate icon - /// - /// https://fontawesome.com/icons/light_sword-laser-alt?style=light - /// darth vader, empire, lightsaber, sith, star wars - static const IconData lightSwordLaserAlt = const IconDataLight(0xe03c); - - /// Duotone Sword Laser Alternate icon - /// - /// https://fontawesome.com/icons/duotone_sword-laser-alt?style=duotone - /// darth vader, empire, lightsaber, sith, star wars - static const IconDataDuotone duotoneSwordLaserAlt = const IconDataDuotone( - 0xe03c, - secondary: const IconDataDuotone(0x10e03c), - ); - - /// Regular Swords icon - /// - /// https://fontawesome.com/icons/swords?style=regular - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData swords = const IconDataRegular(0xf71d); - - /// Solid Swords icon - /// - /// https://fontawesome.com/icons/swords?style=solid - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData solidSwords = const IconDataSolid(0xf71d); - - /// Light Swords icon - /// - /// https://fontawesome.com/icons/light_swords?style=light - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconData lightSwords = const IconDataLight(0xf71d); - - /// Duotone Swords icon - /// - /// https://fontawesome.com/icons/duotone_swords?style=duotone - /// Dungeons & Dragons, blade, d&d, dnd, fantasy, fight, sharp, weapon - static const IconDataDuotone duotoneSwords = const IconDataDuotone( - 0xf71d, - secondary: const IconDataDuotone(0x10f71d), - ); - - /// 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 = const IconDataRegular(0xe03d); - - /// 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 = const IconDataSolid(0xe03d); - - /// Light Swords Laser icon - /// - /// https://fontawesome.com/icons/light_swords-laser?style=light - /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconData lightSwordsLaser = const IconDataLight(0xe03d); - - /// Duotone Swords Laser icon - /// - /// https://fontawesome.com/icons/duotone_swords-laser?style=duotone - /// clash, darth vader, duel, fight, jedi, lightsaber, luke skywalker, rebel, sith, star wars - static const IconDataDuotone duotoneSwordsLaser = const IconDataDuotone( - 0xe03d, - secondary: const IconDataDuotone(0x10e03d), - ); - - /// Brands Symfony icon - /// - /// https://fontawesome.com/icons/symfony?style=brands - static const IconData symfony = const IconDataBrands(0xf83d); - - /// Regular Synagogue icon - /// - /// https://fontawesome.com/icons/synagogue?style=regular - /// building, jewish, judaism, religion, star of david, temple - static const IconData synagogue = const IconDataRegular(0xf69b); - - /// Solid Synagogue icon - /// - /// https://fontawesome.com/icons/synagogue?style=solid - /// building, jewish, judaism, religion, star of david, temple - static const IconData solidSynagogue = const IconDataSolid(0xf69b); - - /// Light Synagogue icon - /// - /// https://fontawesome.com/icons/light_synagogue?style=light - /// building, jewish, judaism, religion, star of david, temple - static const IconData lightSynagogue = const IconDataLight(0xf69b); - - /// Duotone Synagogue icon - /// - /// https://fontawesome.com/icons/duotone_synagogue?style=duotone - /// building, jewish, judaism, religion, star of david, temple - static const IconDataDuotone duotoneSynagogue = const IconDataDuotone( - 0xf69b, - secondary: const IconDataDuotone(0x10f69b), - ); - - /// Regular Sync icon - /// - /// https://fontawesome.com/icons/sync?style=regular - /// exchange, refresh, reload, rotate, swap - static const IconData sync = const IconDataRegular(0xf021); - - /// Solid Sync icon - /// - /// https://fontawesome.com/icons/sync?style=solid - /// exchange, refresh, reload, rotate, swap - static const IconData solidSync = const IconDataSolid(0xf021); - - /// Light Sync icon - /// - /// https://fontawesome.com/icons/light_sync?style=light - /// exchange, refresh, reload, rotate, swap - static const IconData lightSync = const IconDataLight(0xf021); - - /// Duotone Sync icon - /// - /// https://fontawesome.com/icons/duotone_sync?style=duotone - /// exchange, refresh, reload, rotate, swap - static const IconDataDuotone duotoneSync = const IconDataDuotone( - 0xf021, - secondary: const IconDataDuotone(0x10f021), - ); - - /// Regular Alternate Sync icon - /// - /// https://fontawesome.com/icons/sync-alt?style=regular - /// exchange, refresh, reload, rotate, swap - static const IconData syncAlt = const IconDataRegular(0xf2f1); - - /// Solid Alternate Sync icon - /// - /// https://fontawesome.com/icons/sync-alt?style=solid - /// exchange, refresh, reload, rotate, swap - static const IconData solidSyncAlt = const IconDataSolid(0xf2f1); - - /// Light Alternate Sync icon - /// - /// https://fontawesome.com/icons/light_sync-alt?style=light - /// exchange, refresh, reload, rotate, swap - static const IconData lightSyncAlt = const IconDataLight(0xf2f1); - - /// Duotone Alternate Sync icon - /// - /// https://fontawesome.com/icons/duotone_sync-alt?style=duotone - /// exchange, refresh, reload, rotate, swap - static const IconDataDuotone duotoneSyncAlt = const IconDataDuotone( - 0xf2f1, - secondary: const IconDataDuotone(0x10f2f1), - ); - - /// Regular Syringe icon - /// - /// https://fontawesome.com/icons/syringe?style=regular - /// covid-19, doctor, immunizations, medical, needle - static const IconData syringe = const IconDataRegular(0xf48e); - - /// Solid Syringe icon - /// - /// https://fontawesome.com/icons/syringe?style=solid - /// covid-19, doctor, immunizations, medical, needle - static const IconData solidSyringe = const IconDataSolid(0xf48e); - - /// Light Syringe icon - /// - /// https://fontawesome.com/icons/light_syringe?style=light - /// covid-19, doctor, immunizations, medical, needle - static const IconData lightSyringe = const IconDataLight(0xf48e); - - /// Duotone Syringe icon - /// - /// https://fontawesome.com/icons/duotone_syringe?style=duotone - /// covid-19, doctor, immunizations, medical, needle - static const IconDataDuotone duotoneSyringe = const IconDataDuotone( - 0xf48e, - secondary: const IconDataDuotone(0x10f48e), - ); - - /// Regular table icon - /// - /// https://fontawesome.com/icons/table?style=regular - /// data, excel, spreadsheet - static const IconData table = const IconDataRegular(0xf0ce); - - /// Solid table icon - /// - /// https://fontawesome.com/icons/table?style=solid - /// data, excel, spreadsheet - static const IconData solidTable = const IconDataSolid(0xf0ce); - - /// Light table icon - /// - /// https://fontawesome.com/icons/light_table?style=light - /// data, excel, spreadsheet - static const IconData lightTable = const IconDataLight(0xf0ce); - - /// Duotone table icon - /// - /// https://fontawesome.com/icons/duotone_table?style=duotone - /// data, excel, spreadsheet - static const IconDataDuotone duotoneTable = const IconDataDuotone( - 0xf0ce, - secondary: const IconDataDuotone(0x10f0ce), - ); - - /// Regular Table Tennis icon - /// - /// https://fontawesome.com/icons/table-tennis?style=regular - /// ball, paddle, ping pong - static const IconData tableTennis = const IconDataRegular(0xf45d); - - /// Solid Table Tennis icon - /// - /// https://fontawesome.com/icons/table-tennis?style=solid - /// ball, paddle, ping pong - static const IconData solidTableTennis = const IconDataSolid(0xf45d); - - /// Light Table Tennis icon - /// - /// https://fontawesome.com/icons/light_table-tennis?style=light - /// ball, paddle, ping pong - static const IconData lightTableTennis = const IconDataLight(0xf45d); - - /// Duotone Table Tennis icon - /// - /// https://fontawesome.com/icons/duotone_table-tennis?style=duotone - /// ball, paddle, ping pong - static const IconDataDuotone duotoneTableTennis = const IconDataDuotone( - 0xf45d, - secondary: const IconDataDuotone(0x10f45d), - ); - - /// Regular tablet icon - /// - /// https://fontawesome.com/icons/tablet?style=regular - /// apple, device, ipad, kindle, screen - static const IconData tablet = const IconDataRegular(0xf10a); - - /// Solid tablet icon - /// - /// https://fontawesome.com/icons/tablet?style=solid - /// apple, device, ipad, kindle, screen - static const IconData solidTablet = const IconDataSolid(0xf10a); - - /// Light tablet icon - /// - /// https://fontawesome.com/icons/light_tablet?style=light - /// apple, device, ipad, kindle, screen - static const IconData lightTablet = const IconDataLight(0xf10a); - - /// Duotone tablet icon - /// - /// https://fontawesome.com/icons/duotone_tablet?style=duotone - /// apple, device, ipad, kindle, screen - static const IconDataDuotone duotoneTablet = const IconDataDuotone( - 0xf10a, - secondary: const IconDataDuotone(0x10f10a), - ); - - /// Regular Alternate Tablet icon - /// - /// https://fontawesome.com/icons/tablet-alt?style=regular - /// apple, device, ipad, kindle, screen - static const IconData tabletAlt = const IconDataRegular(0xf3fa); - - /// Solid Alternate Tablet icon - /// - /// https://fontawesome.com/icons/tablet-alt?style=solid - /// apple, device, ipad, kindle, screen - static const IconData solidTabletAlt = const IconDataSolid(0xf3fa); - - /// Light Alternate Tablet icon - /// - /// https://fontawesome.com/icons/light_tablet-alt?style=light - /// apple, device, ipad, kindle, screen - static const IconData lightTabletAlt = const IconDataLight(0xf3fa); - - /// Duotone Alternate Tablet icon - /// - /// https://fontawesome.com/icons/duotone_tablet-alt?style=duotone - /// apple, device, ipad, kindle, screen - static const IconDataDuotone duotoneTabletAlt = const IconDataDuotone( - 0xf3fa, - secondary: const IconDataDuotone(0x10f3fa), - ); - - /// Regular Tablet Android icon - /// - /// https://fontawesome.com/icons/tablet-android?style=regular - /// device, kindle, screen - static const IconData tabletAndroid = const IconDataRegular(0xf3fb); - - /// Solid Tablet Android icon - /// - /// https://fontawesome.com/icons/tablet-android?style=solid - /// device, kindle, screen - static const IconData solidTabletAndroid = const IconDataSolid(0xf3fb); - - /// Light Tablet Android icon - /// - /// https://fontawesome.com/icons/light_tablet-android?style=light - /// device, kindle, screen - static const IconData lightTabletAndroid = const IconDataLight(0xf3fb); - - /// Duotone Tablet Android icon - /// - /// https://fontawesome.com/icons/duotone_tablet-android?style=duotone - /// device, kindle, screen - static const IconDataDuotone duotoneTabletAndroid = const IconDataDuotone( - 0xf3fb, - secondary: const IconDataDuotone(0x10f3fb), - ); - - /// Regular Alternate Tablet Android icon - /// - /// https://fontawesome.com/icons/tablet-android-alt?style=regular - /// device, kindle, screen - static const IconData tabletAndroidAlt = const IconDataRegular(0xf3fc); - - /// Solid Alternate Tablet Android icon - /// - /// https://fontawesome.com/icons/tablet-android-alt?style=solid - /// device, kindle, screen - static const IconData solidTabletAndroidAlt = const IconDataSolid(0xf3fc); - - /// Light Alternate Tablet Android icon - /// - /// https://fontawesome.com/icons/light_tablet-android-alt?style=light - /// device, kindle, screen - static const IconData lightTabletAndroidAlt = const IconDataLight(0xf3fc); - - /// Duotone Alternate Tablet Android icon - /// - /// https://fontawesome.com/icons/duotone_tablet-android-alt?style=duotone - /// device, kindle, screen - static const IconDataDuotone duotoneTabletAndroidAlt = const IconDataDuotone( - 0xf3fc, - secondary: const IconDataDuotone(0x10f3fc), - ); - - /// Regular Rugged Tablet icon - /// - /// https://fontawesome.com/icons/tablet-rugged?style=regular - /// device, durable, protection, screen, tough - static const IconData tabletRugged = const IconDataRegular(0xf48f); - - /// Solid Rugged Tablet icon - /// - /// https://fontawesome.com/icons/tablet-rugged?style=solid - /// device, durable, protection, screen, tough - static const IconData solidTabletRugged = const IconDataSolid(0xf48f); - - /// Light Rugged Tablet icon - /// - /// https://fontawesome.com/icons/light_tablet-rugged?style=light - /// device, durable, protection, screen, tough - static const IconData lightTabletRugged = const IconDataLight(0xf48f); - - /// Duotone Rugged Tablet icon - /// - /// https://fontawesome.com/icons/duotone_tablet-rugged?style=duotone - /// device, durable, protection, screen, tough - static const IconDataDuotone duotoneTabletRugged = const IconDataDuotone( - 0xf48f, - secondary: const IconDataDuotone(0x10f48f), - ); - - /// Regular Tablets icon - /// - /// https://fontawesome.com/icons/tablets?style=regular - /// drugs, medicine, pills, prescription - static const IconData tablets = const IconDataRegular(0xf490); - - /// Solid Tablets icon - /// - /// https://fontawesome.com/icons/tablets?style=solid - /// drugs, medicine, pills, prescription - static const IconData solidTablets = const IconDataSolid(0xf490); - - /// Light Tablets icon - /// - /// https://fontawesome.com/icons/light_tablets?style=light - /// drugs, medicine, pills, prescription - static const IconData lightTablets = const IconDataLight(0xf490); - - /// Duotone Tablets icon - /// - /// https://fontawesome.com/icons/duotone_tablets?style=duotone - /// drugs, medicine, pills, prescription - static const IconDataDuotone duotoneTablets = const IconDataDuotone( - 0xf490, - secondary: const IconDataDuotone(0x10f490), - ); - - /// Regular Tachometer icon - /// - /// https://fontawesome.com/icons/tachometer?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometer = const IconDataRegular(0xf0e4); - - /// Solid Tachometer icon - /// - /// https://fontawesome.com/icons/tachometer?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometer = const IconDataSolid(0xf0e4); - - /// Light Tachometer icon - /// - /// https://fontawesome.com/icons/light_tachometer?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometer = const IconDataLight(0xf0e4); - - /// Duotone Tachometer icon - /// - /// https://fontawesome.com/icons/duotone_tachometer?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometer = const IconDataDuotone( - 0xf0e4, - secondary: const IconDataDuotone(0x10f0e4), - ); - - /// Regular Alternate Tachometer icon - /// - /// https://fontawesome.com/icons/tachometer-alt?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAlt = const IconDataRegular(0xf3fd); - - /// Solid Alternate Tachometer icon - /// - /// https://fontawesome.com/icons/tachometer-alt?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAlt = const IconDataSolid(0xf3fd); - - /// Light Alternate Tachometer icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAlt = const IconDataLight(0xf3fd); - - /// Duotone Alternate Tachometer icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAlt = const IconDataDuotone( - 0xf3fd, - secondary: const IconDataDuotone(0x10f3fd), - ); - - /// Regular Alternate Tachometer Average icon - /// - /// https://fontawesome.com/icons/tachometer-alt-average?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAltAverage = const IconDataRegular(0xf624); - - /// Solid Alternate Tachometer Average icon - /// - /// https://fontawesome.com/icons/tachometer-alt-average?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAltAverage = const IconDataSolid(0xf624); - - /// Light Alternate Tachometer Average icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt-average?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAltAverage = const IconDataLight(0xf624); - - /// Duotone Alternate Tachometer Average icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt-average?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAltAverage = - const IconDataDuotone( - 0xf624, - secondary: const IconDataDuotone(0x10f624), - ); - - /// Regular Alternate Tachometer Fast icon - /// - /// https://fontawesome.com/icons/tachometer-alt-fast?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAltFast = const IconDataRegular(0xf625); - - /// Solid Alternate Tachometer Fast icon - /// - /// https://fontawesome.com/icons/tachometer-alt-fast?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAltFast = const IconDataSolid(0xf625); - - /// Light Alternate Tachometer Fast icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt-fast?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAltFast = const IconDataLight(0xf625); - - /// Duotone Alternate Tachometer Fast icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt-fast?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAltFast = const IconDataDuotone( - 0xf625, - secondary: const IconDataDuotone(0x10f625), - ); - - /// Regular Alternate Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/tachometer-alt-fastest?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAltFastest = const IconDataRegular(0xf626); - - /// Solid Alternate Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/tachometer-alt-fastest?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAltFastest = const IconDataSolid(0xf626); - - /// Light Alternate Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt-fastest?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAltFastest = const IconDataLight(0xf626); - - /// Duotone Alternate Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt-fastest?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAltFastest = - const IconDataDuotone( - 0xf626, - secondary: const IconDataDuotone(0x10f626), - ); - - /// Regular Alternate Tachometer Slow icon - /// - /// https://fontawesome.com/icons/tachometer-alt-slow?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAltSlow = const IconDataRegular(0xf627); - - /// Solid Alternate Tachometer Slow icon - /// - /// https://fontawesome.com/icons/tachometer-alt-slow?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAltSlow = const IconDataSolid(0xf627); - - /// Light Alternate Tachometer Slow icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt-slow?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAltSlow = const IconDataLight(0xf627); - - /// Duotone Alternate Tachometer Slow icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt-slow?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAltSlow = const IconDataDuotone( - 0xf627, - secondary: const IconDataDuotone(0x10f627), - ); - - /// Regular Alternate Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/tachometer-alt-slowest?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAltSlowest = const IconDataRegular(0xf628); - - /// Solid Alternate Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/tachometer-alt-slowest?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAltSlowest = const IconDataSolid(0xf628); - - /// Light Alternate Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/light_tachometer-alt-slowest?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAltSlowest = const IconDataLight(0xf628); - - /// Duotone Alternate Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-alt-slowest?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAltSlowest = - const IconDataDuotone( - 0xf628, - secondary: const IconDataDuotone(0x10f628), - ); - - /// Regular Tachometer Average icon - /// - /// https://fontawesome.com/icons/tachometer-average?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerAverage = const IconDataRegular(0xf629); - - /// Solid Tachometer Average icon - /// - /// https://fontawesome.com/icons/tachometer-average?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerAverage = const IconDataSolid(0xf629); - - /// Light Tachometer Average icon - /// - /// https://fontawesome.com/icons/light_tachometer-average?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerAverage = const IconDataLight(0xf629); - - /// Duotone Tachometer Average icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-average?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerAverage = const IconDataDuotone( - 0xf629, - secondary: const IconDataDuotone(0x10f629), - ); - - /// Regular Tachometer Fast icon - /// - /// https://fontawesome.com/icons/tachometer-fast?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerFast = const IconDataRegular(0xf62a); - - /// Solid Tachometer Fast icon - /// - /// https://fontawesome.com/icons/tachometer-fast?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerFast = const IconDataSolid(0xf62a); - - /// Light Tachometer Fast icon - /// - /// https://fontawesome.com/icons/light_tachometer-fast?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerFast = const IconDataLight(0xf62a); - - /// Duotone Tachometer Fast icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-fast?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerFast = const IconDataDuotone( - 0xf62a, - secondary: const IconDataDuotone(0x10f62a), - ); - - /// Regular Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/tachometer-fastest?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerFastest = const IconDataRegular(0xf62b); - - /// Solid Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/tachometer-fastest?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerFastest = const IconDataSolid(0xf62b); - - /// Light Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/light_tachometer-fastest?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerFastest = const IconDataLight(0xf62b); - - /// Duotone Tachometer Fastest icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-fastest?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerFastest = const IconDataDuotone( - 0xf62b, - secondary: const IconDataDuotone(0x10f62b), - ); - - /// Regular Tachometer Slow icon - /// - /// https://fontawesome.com/icons/tachometer-slow?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerSlow = const IconDataRegular(0xf62c); - - /// Solid Tachometer Slow icon - /// - /// https://fontawesome.com/icons/tachometer-slow?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerSlow = const IconDataSolid(0xf62c); - - /// Light Tachometer Slow icon - /// - /// https://fontawesome.com/icons/light_tachometer-slow?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerSlow = const IconDataLight(0xf62c); - - /// Duotone Tachometer Slow icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-slow?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerSlow = const IconDataDuotone( - 0xf62c, - secondary: const IconDataDuotone(0x10f62c), - ); - - /// Regular Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/tachometer-slowest?style=regular - /// dashboard, fast, odometer, speed, speedometer - static const IconData tachometerSlowest = const IconDataRegular(0xf62d); - - /// Solid Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/tachometer-slowest?style=solid - /// dashboard, fast, odometer, speed, speedometer - static const IconData solidTachometerSlowest = const IconDataSolid(0xf62d); - - /// Light Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/light_tachometer-slowest?style=light - /// dashboard, fast, odometer, speed, speedometer - static const IconData lightTachometerSlowest = const IconDataLight(0xf62d); - - /// Duotone Tachometer Slowest icon - /// - /// https://fontawesome.com/icons/duotone_tachometer-slowest?style=duotone - /// dashboard, fast, odometer, speed, speedometer - static const IconDataDuotone duotoneTachometerSlowest = const IconDataDuotone( - 0xf62d, - secondary: const IconDataDuotone(0x10f62d), - ); - - /// Regular Taco icon - /// - /// https://fontawesome.com/icons/taco?style=regular - /// corn, maize, mexican, salsa, tortilla - static const IconData taco = const IconDataRegular(0xf826); - - /// Solid Taco icon - /// - /// https://fontawesome.com/icons/taco?style=solid - /// corn, maize, mexican, salsa, tortilla - static const IconData solidTaco = const IconDataSolid(0xf826); - - /// Light Taco icon - /// - /// https://fontawesome.com/icons/light_taco?style=light - /// corn, maize, mexican, salsa, tortilla - static const IconData lightTaco = const IconDataLight(0xf826); - - /// Duotone Taco icon - /// - /// https://fontawesome.com/icons/duotone_taco?style=duotone - /// corn, maize, mexican, salsa, tortilla - static const IconDataDuotone duotoneTaco = const IconDataDuotone( - 0xf826, - secondary: const IconDataDuotone(0x10f826), - ); - - /// Regular tag icon - /// - /// https://fontawesome.com/icons/tag?style=regular - /// discount, label, price, shopping - static const IconData tag = const IconDataRegular(0xf02b); - - /// Solid tag icon - /// - /// https://fontawesome.com/icons/tag?style=solid - /// discount, label, price, shopping - static const IconData solidTag = const IconDataSolid(0xf02b); - - /// Light tag icon - /// - /// https://fontawesome.com/icons/light_tag?style=light - /// discount, label, price, shopping - static const IconData lightTag = const IconDataLight(0xf02b); - - /// Duotone tag icon - /// - /// https://fontawesome.com/icons/duotone_tag?style=duotone - /// discount, label, price, shopping - static const IconDataDuotone duotoneTag = const IconDataDuotone( - 0xf02b, - secondary: const IconDataDuotone(0x10f02b), - ); - - /// Regular tags icon - /// - /// https://fontawesome.com/icons/tags?style=regular - /// discount, label, price, shopping - static const IconData tags = const IconDataRegular(0xf02c); - - /// Solid tags icon - /// - /// https://fontawesome.com/icons/tags?style=solid - /// discount, label, price, shopping - static const IconData solidTags = const IconDataSolid(0xf02c); - - /// Light tags icon - /// - /// https://fontawesome.com/icons/light_tags?style=light - /// discount, label, price, shopping - static const IconData lightTags = const IconDataLight(0xf02c); - - /// Duotone tags icon - /// - /// https://fontawesome.com/icons/duotone_tags?style=duotone - /// discount, label, price, shopping - static const IconDataDuotone duotoneTags = const IconDataDuotone( - 0xf02c, - secondary: const IconDataDuotone(0x10f02c), - ); - - /// Regular Tally icon - /// - /// https://fontawesome.com/icons/tally?style=regular - /// count, hash, numbers - static const IconData tally = const IconDataRegular(0xf69c); - - /// Solid Tally icon - /// - /// https://fontawesome.com/icons/tally?style=solid - /// count, hash, numbers - static const IconData solidTally = const IconDataSolid(0xf69c); - - /// Light Tally icon - /// - /// https://fontawesome.com/icons/light_tally?style=light - /// count, hash, numbers - static const IconData lightTally = const IconDataLight(0xf69c); - - /// Duotone Tally icon - /// - /// https://fontawesome.com/icons/duotone_tally?style=duotone - /// count, hash, numbers - static const IconDataDuotone duotoneTally = const IconDataDuotone( - 0xf69c, - secondary: const IconDataDuotone(0x10f69c), - ); - - /// Regular Tanakh icon - /// - /// https://fontawesome.com/icons/tanakh?style=regular - /// book, jewish, judaism, religion - static const IconData tanakh = const IconDataRegular(0xf827); - - /// Solid Tanakh icon - /// - /// https://fontawesome.com/icons/tanakh?style=solid - /// book, jewish, judaism, religion - static const IconData solidTanakh = const IconDataSolid(0xf827); - - /// Light Tanakh icon - /// - /// https://fontawesome.com/icons/light_tanakh?style=light - /// book, jewish, judaism, religion - static const IconData lightTanakh = const IconDataLight(0xf827); - - /// Duotone Tanakh icon - /// - /// https://fontawesome.com/icons/duotone_tanakh?style=duotone - /// book, jewish, judaism, religion - static const IconDataDuotone duotoneTanakh = const IconDataDuotone( - 0xf827, - secondary: const IconDataDuotone(0x10f827), - ); - - /// Regular Tape icon - /// - /// https://fontawesome.com/icons/tape?style=regular - /// design, package, sticky - static const IconData tape = const IconDataRegular(0xf4db); - - /// Solid Tape icon - /// - /// https://fontawesome.com/icons/tape?style=solid - /// design, package, sticky - static const IconData solidTape = const IconDataSolid(0xf4db); - - /// Light Tape icon - /// - /// https://fontawesome.com/icons/light_tape?style=light - /// design, package, sticky - static const IconData lightTape = const IconDataLight(0xf4db); - - /// Duotone Tape icon - /// - /// https://fontawesome.com/icons/duotone_tape?style=duotone - /// design, package, sticky - static const IconDataDuotone duotoneTape = const IconDataDuotone( - 0xf4db, - secondary: const IconDataDuotone(0x10f4db), - ); - - /// Regular Tasks icon - /// - /// https://fontawesome.com/icons/tasks?style=regular - /// checklist, downloading, downloads, loading, progress, project management, settings, to do - static const IconData tasks = const IconDataRegular(0xf0ae); - - /// Solid Tasks icon - /// - /// https://fontawesome.com/icons/tasks?style=solid - /// checklist, downloading, downloads, loading, progress, project management, settings, to do - static const IconData solidTasks = const IconDataSolid(0xf0ae); - - /// Light Tasks icon - /// - /// https://fontawesome.com/icons/light_tasks?style=light - /// checklist, downloading, downloads, loading, progress, project management, settings, to do - static const IconData lightTasks = const IconDataLight(0xf0ae); - - /// Duotone Tasks icon - /// - /// https://fontawesome.com/icons/duotone_tasks?style=duotone - /// checklist, downloading, downloads, loading, progress, project management, settings, to do - static const IconDataDuotone duotoneTasks = const IconDataDuotone( - 0xf0ae, - secondary: const IconDataDuotone(0x10f0ae), - ); - - /// Regular Alternate Tasks icon - /// - /// https://fontawesome.com/icons/tasks-alt?style=regular - /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData tasksAlt = const IconDataRegular(0xf828); - - /// Solid Alternate Tasks icon - /// - /// https://fontawesome.com/icons/tasks-alt?style=solid - /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData solidTasksAlt = const IconDataSolid(0xf828); - - /// Light Alternate Tasks icon - /// - /// https://fontawesome.com/icons/light_tasks-alt?style=light - /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconData lightTasksAlt = const IconDataLight(0xf828); - - /// Duotone Alternate Tasks icon - /// - /// https://fontawesome.com/icons/duotone_tasks-alt?style=duotone - /// checklist, downloading, downloads, loading, poll, progress, project management, settings, to do - static const IconDataDuotone duotoneTasksAlt = const IconDataDuotone( - 0xf828, - secondary: const IconDataDuotone(0x10f828), - ); - - /// Regular Taxi icon - /// - /// https://fontawesome.com/icons/taxi?style=regular - /// cab, cabbie, car, car service, lyft, machine, transportation, travel, uber, vehicle - static const IconData taxi = const IconDataRegular(0xf1ba); - - /// Solid Taxi icon - /// - /// https://fontawesome.com/icons/taxi?style=solid - /// cab, cabbie, car, car service, lyft, machine, transportation, travel, uber, vehicle - static const IconData solidTaxi = const IconDataSolid(0xf1ba); - - /// Light Taxi icon - /// - /// https://fontawesome.com/icons/light_taxi?style=light - /// cab, cabbie, car, car service, lyft, machine, transportation, travel, uber, vehicle - static const IconData lightTaxi = const IconDataLight(0xf1ba); - - /// Duotone Taxi icon - /// - /// https://fontawesome.com/icons/duotone_taxi?style=duotone - /// cab, cabbie, car, car service, lyft, machine, transportation, travel, uber, vehicle - static const IconDataDuotone duotoneTaxi = const IconDataDuotone( - 0xf1ba, - secondary: const IconDataDuotone(0x10f1ba), - ); - - /// Brands TeamSpeak icon - /// - /// https://fontawesome.com/icons/teamspeak?style=brands - static const IconData teamspeak = const IconDataBrands(0xf4f9); - - /// Regular Teeth icon - /// - /// https://fontawesome.com/icons/teeth?style=regular - /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData teeth = const IconDataRegular(0xf62e); - - /// Solid Teeth icon - /// - /// https://fontawesome.com/icons/teeth?style=solid - /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData solidTeeth = const IconDataSolid(0xf62e); - - /// Light Teeth icon - /// - /// https://fontawesome.com/icons/light_teeth?style=light - /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconData lightTeeth = const IconDataLight(0xf62e); - - /// Duotone Teeth icon - /// - /// https://fontawesome.com/icons/duotone_teeth?style=duotone - /// bite, dental, dentist, gums, mouth, smile, tooth - static const IconDataDuotone duotoneTeeth = const IconDataDuotone( - 0xf62e, - secondary: const IconDataDuotone(0x10f62e), - ); - - /// Regular Teeth Open icon - /// - /// https://fontawesome.com/icons/teeth-open?style=regular - /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData teethOpen = const IconDataRegular(0xf62f); - - /// Solid Teeth Open icon - /// - /// https://fontawesome.com/icons/teeth-open?style=solid - /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData solidTeethOpen = const IconDataSolid(0xf62f); - - /// Light Teeth Open icon - /// - /// https://fontawesome.com/icons/light_teeth-open?style=light - /// dental, dentist, gums bite, mouth, smile, tooth - static const IconData lightTeethOpen = const IconDataLight(0xf62f); - - /// Duotone Teeth Open icon - /// - /// https://fontawesome.com/icons/duotone_teeth-open?style=duotone - /// dental, dentist, gums bite, mouth, smile, tooth - static const IconDataDuotone duotoneTeethOpen = const IconDataDuotone( - 0xf62f, - secondary: const IconDataDuotone(0x10f62f), - ); - - /// Brands Telegram icon - /// - /// https://fontawesome.com/icons/telegram?style=brands - static const IconData telegram = const IconDataBrands(0xf2c6); - - /// Brands Telegram Plane icon - /// - /// https://fontawesome.com/icons/telegram-plane?style=brands - static const IconData telegramPlane = const IconDataBrands(0xf3fe); - - /// Regular Telescope icon - /// - /// https://fontawesome.com/icons/telescope?style=regular - /// astronomy, lens, look, microscope, observatory, scope, search, space, view - static const IconData telescope = const IconDataRegular(0xe03e); - - /// Solid Telescope icon - /// - /// https://fontawesome.com/icons/telescope?style=solid - /// astronomy, lens, look, microscope, observatory, scope, search, space, view - static const IconData solidTelescope = const IconDataSolid(0xe03e); - - /// Light Telescope icon - /// - /// https://fontawesome.com/icons/light_telescope?style=light - /// astronomy, lens, look, microscope, observatory, scope, search, space, view - static const IconData lightTelescope = const IconDataLight(0xe03e); - - /// Duotone Telescope icon - /// - /// https://fontawesome.com/icons/duotone_telescope?style=duotone - /// astronomy, lens, look, microscope, observatory, scope, search, space, view - static const IconDataDuotone duotoneTelescope = const IconDataDuotone( - 0xe03e, - secondary: const IconDataDuotone(0x10e03e), - ); - - /// Regular Temperature Down icon - /// - /// https://fontawesome.com/icons/temperature-down?style=regular - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData temperatureDown = const IconDataRegular(0xe03f); - - /// Solid Temperature Down icon - /// - /// https://fontawesome.com/icons/temperature-down?style=solid - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData solidTemperatureDown = const IconDataSolid(0xe03f); - - /// Light Temperature Down icon - /// - /// https://fontawesome.com/icons/light_temperature-down?style=light - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData lightTemperatureDown = const IconDataLight(0xe03f); - - /// Duotone Temperature Down icon - /// - /// https://fontawesome.com/icons/duotone_temperature-down?style=duotone - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconDataDuotone duotoneTemperatureDown = const IconDataDuotone( - 0xe03f, - secondary: const IconDataDuotone(0x10e03f), - ); - - /// Regular Temperature Frigid icon - /// - /// https://fontawesome.com/icons/temperature-frigid?style=regular - /// cold, mercury, thermometer, winter - static const IconData temperatureFrigid = const IconDataRegular(0xf768); - - /// Solid Temperature Frigid icon - /// - /// https://fontawesome.com/icons/temperature-frigid?style=solid - /// cold, mercury, thermometer, winter - static const IconData solidTemperatureFrigid = const IconDataSolid(0xf768); - - /// Light Temperature Frigid icon - /// - /// https://fontawesome.com/icons/light_temperature-frigid?style=light - /// cold, mercury, thermometer, winter - static const IconData lightTemperatureFrigid = const IconDataLight(0xf768); - - /// Duotone Temperature Frigid icon - /// - /// https://fontawesome.com/icons/duotone_temperature-frigid?style=duotone - /// cold, mercury, thermometer, winter - static const IconDataDuotone duotoneTemperatureFrigid = const IconDataDuotone( - 0xf768, - secondary: const IconDataDuotone(0x10f768), - ); - - /// Regular High Temperature icon - /// - /// https://fontawesome.com/icons/temperature-high?style=regular - /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData temperatureHigh = const IconDataRegular(0xf769); - - /// Solid High Temperature icon - /// - /// https://fontawesome.com/icons/temperature-high?style=solid - /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData solidTemperatureHigh = const IconDataSolid(0xf769); - - /// Light High Temperature icon - /// - /// https://fontawesome.com/icons/light_temperature-high?style=light - /// cook, covid-19, mercury, summer, thermometer, warm - static const IconData lightTemperatureHigh = const IconDataLight(0xf769); - - /// Duotone High Temperature icon - /// - /// https://fontawesome.com/icons/duotone_temperature-high?style=duotone - /// cook, covid-19, mercury, summer, thermometer, warm - static const IconDataDuotone duotoneTemperatureHigh = const IconDataDuotone( - 0xf769, - secondary: const IconDataDuotone(0x10f769), - ); - - /// Regular Temperature Hot icon - /// - /// https://fontawesome.com/icons/temperature-hot?style=regular - /// heat, mercury, summer, thermometer - static const IconData temperatureHot = const IconDataRegular(0xf76a); - - /// Solid Temperature Hot icon - /// - /// https://fontawesome.com/icons/temperature-hot?style=solid - /// heat, mercury, summer, thermometer - static const IconData solidTemperatureHot = const IconDataSolid(0xf76a); - - /// Light Temperature Hot icon - /// - /// https://fontawesome.com/icons/light_temperature-hot?style=light - /// heat, mercury, summer, thermometer - static const IconData lightTemperatureHot = const IconDataLight(0xf76a); - - /// Duotone Temperature Hot icon - /// - /// https://fontawesome.com/icons/duotone_temperature-hot?style=duotone - /// heat, mercury, summer, thermometer - static const IconDataDuotone duotoneTemperatureHot = const IconDataDuotone( - 0xf76a, - secondary: const IconDataDuotone(0x10f76a), - ); - - /// Regular Low Temperature icon - /// - /// https://fontawesome.com/icons/temperature-low?style=regular - /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData temperatureLow = const IconDataRegular(0xf76b); - - /// Solid Low Temperature icon - /// - /// https://fontawesome.com/icons/temperature-low?style=solid - /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData solidTemperatureLow = const IconDataSolid(0xf76b); - - /// Light Low Temperature icon - /// - /// https://fontawesome.com/icons/light_temperature-low?style=light - /// cold, cool, covid-19, mercury, thermometer, winter - static const IconData lightTemperatureLow = const IconDataLight(0xf76b); - - /// Duotone Low Temperature icon - /// - /// https://fontawesome.com/icons/duotone_temperature-low?style=duotone - /// cold, cool, covid-19, mercury, thermometer, winter - static const IconDataDuotone duotoneTemperatureLow = const IconDataDuotone( - 0xf76b, - secondary: const IconDataDuotone(0x10f76b), - ); - - /// Regular Temperature Up icon - /// - /// https://fontawesome.com/icons/temperature-up?style=regular - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData temperatureUp = const IconDataRegular(0xe040); - - /// Solid Temperature Up icon - /// - /// https://fontawesome.com/icons/temperature-up?style=solid - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData solidTemperatureUp = const IconDataSolid(0xe040); - - /// Light Temperature Up icon - /// - /// https://fontawesome.com/icons/light_temperature-up?style=light - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconData lightTemperatureUp = const IconDataLight(0xe040); - - /// Duotone Temperature Up icon - /// - /// https://fontawesome.com/icons/duotone_temperature-up?style=duotone - /// air conditioner, cold, heater, mercury, thermometer, winter - static const IconDataDuotone duotoneTemperatureUp = const IconDataDuotone( - 0xe040, - secondary: const IconDataDuotone(0x10e040), - ); - - /// Brands Tencent Weibo icon - /// - /// https://fontawesome.com/icons/tencent-weibo?style=brands - static const IconData tencentWeibo = const IconDataBrands(0xf1d5); - - /// Regular Tenge icon - /// - /// https://fontawesome.com/icons/tenge?style=regular - /// currency, kazakhstan, money, price - static const IconData tenge = const IconDataRegular(0xf7d7); - - /// Solid Tenge icon - /// - /// https://fontawesome.com/icons/tenge?style=solid - /// currency, kazakhstan, money, price - static const IconData solidTenge = const IconDataSolid(0xf7d7); - - /// Light Tenge icon - /// - /// https://fontawesome.com/icons/light_tenge?style=light - /// currency, kazakhstan, money, price - static const IconData lightTenge = const IconDataLight(0xf7d7); - - /// Duotone Tenge icon - /// - /// https://fontawesome.com/icons/duotone_tenge?style=duotone - /// currency, kazakhstan, money, price - static const IconDataDuotone duotoneTenge = const IconDataDuotone( - 0xf7d7, - secondary: const IconDataDuotone(0x10f7d7), - ); - - /// Regular Tennis Ball icon - /// - /// https://fontawesome.com/icons/tennis-ball?style=regular - /// racket, sport, tennis, us open - static const IconData tennisBall = const IconDataRegular(0xf45e); - - /// Solid Tennis Ball icon - /// - /// https://fontawesome.com/icons/tennis-ball?style=solid - /// racket, sport, tennis, us open - static const IconData solidTennisBall = const IconDataSolid(0xf45e); - - /// Light Tennis Ball icon - /// - /// https://fontawesome.com/icons/light_tennis-ball?style=light - /// racket, sport, tennis, us open - static const IconData lightTennisBall = const IconDataLight(0xf45e); - - /// Duotone Tennis Ball icon - /// - /// https://fontawesome.com/icons/duotone_tennis-ball?style=duotone - /// racket, sport, tennis, us open - static const IconDataDuotone duotoneTennisBall = const IconDataDuotone( - 0xf45e, - secondary: const IconDataDuotone(0x10f45e), - ); - - /// Regular Terminal icon - /// - /// https://fontawesome.com/icons/terminal?style=regular - /// code, command, console, development, prompt - static const IconData terminal = const IconDataRegular(0xf120); - - /// Solid Terminal icon - /// - /// https://fontawesome.com/icons/terminal?style=solid - /// code, command, console, development, prompt - static const IconData solidTerminal = const IconDataSolid(0xf120); - - /// Light Terminal icon - /// - /// https://fontawesome.com/icons/light_terminal?style=light - /// code, command, console, development, prompt - static const IconData lightTerminal = const IconDataLight(0xf120); - - /// Duotone Terminal icon - /// - /// https://fontawesome.com/icons/duotone_terminal?style=duotone - /// code, command, console, development, prompt - static const IconDataDuotone duotoneTerminal = const IconDataDuotone( - 0xf120, - secondary: const IconDataDuotone(0x10f120), - ); - - /// Regular Text icon - /// - /// https://fontawesome.com/icons/text?style=regular - /// font, format, letter, style, typography - static const IconData text = const IconDataRegular(0xf893); - - /// Solid Text icon - /// - /// https://fontawesome.com/icons/text?style=solid - /// font, format, letter, style, typography - static const IconData solidText = const IconDataSolid(0xf893); - - /// Light Text icon - /// - /// https://fontawesome.com/icons/light_text?style=light - /// font, format, letter, style, typography - static const IconData lightText = const IconDataLight(0xf893); - - /// Duotone Text icon - /// - /// https://fontawesome.com/icons/duotone_text?style=duotone - /// font, format, letter, style, typography - static const IconDataDuotone duotoneText = const IconDataDuotone( - 0xf893, - secondary: const IconDataDuotone(0x10f893), - ); - - /// Regular text-height icon - /// - /// https://fontawesome.com/icons/text-height?style=regular - /// edit, font, format, text, type - static const IconData textHeight = const IconDataRegular(0xf034); - - /// Solid text-height icon - /// - /// https://fontawesome.com/icons/text-height?style=solid - /// edit, font, format, text, type - static const IconData solidTextHeight = const IconDataSolid(0xf034); - - /// Light text-height icon - /// - /// https://fontawesome.com/icons/light_text-height?style=light - /// edit, font, format, text, type - static const IconData lightTextHeight = const IconDataLight(0xf034); - - /// Duotone text-height icon - /// - /// https://fontawesome.com/icons/duotone_text-height?style=duotone - /// edit, font, format, text, type - static const IconDataDuotone duotoneTextHeight = const IconDataDuotone( - 0xf034, - secondary: const IconDataDuotone(0x10f034), - ); - - /// Regular Text Size icon - /// - /// https://fontawesome.com/icons/text-size?style=regular - /// decrease, edit, font, format, increase, text, type - static const IconData textSize = const IconDataRegular(0xf894); - - /// Solid Text Size icon - /// - /// https://fontawesome.com/icons/text-size?style=solid - /// decrease, edit, font, format, increase, text, type - static const IconData solidTextSize = const IconDataSolid(0xf894); - - /// Light Text Size icon - /// - /// https://fontawesome.com/icons/light_text-size?style=light - /// decrease, edit, font, format, increase, text, type - static const IconData lightTextSize = const IconDataLight(0xf894); - - /// Duotone Text Size icon - /// - /// https://fontawesome.com/icons/duotone_text-size?style=duotone - /// decrease, edit, font, format, increase, text, type - static const IconDataDuotone duotoneTextSize = const IconDataDuotone( - 0xf894, - secondary: const IconDataDuotone(0x10f894), - ); - - /// Regular Text Width icon - /// - /// https://fontawesome.com/icons/text-width?style=regular - /// edit, font, format, text, type - static const IconData textWidth = const IconDataRegular(0xf035); - - /// Solid Text Width icon - /// - /// https://fontawesome.com/icons/text-width?style=solid - /// edit, font, format, text, type - static const IconData solidTextWidth = const IconDataSolid(0xf035); - - /// Light Text Width icon - /// - /// https://fontawesome.com/icons/light_text-width?style=light - /// edit, font, format, text, type - static const IconData lightTextWidth = const IconDataLight(0xf035); - - /// Duotone Text Width icon - /// - /// https://fontawesome.com/icons/duotone_text-width?style=duotone - /// edit, font, format, text, type - static const IconDataDuotone duotoneTextWidth = const IconDataDuotone( - 0xf035, - secondary: const IconDataDuotone(0x10f035), - ); - - /// Regular th icon - /// - /// https://fontawesome.com/icons/th?style=regular - /// blocks, boxes, grid, squares - static const IconData th = const IconDataRegular(0xf00a); - - /// Solid th icon - /// - /// https://fontawesome.com/icons/th?style=solid - /// blocks, boxes, grid, squares - static const IconData solidTh = const IconDataSolid(0xf00a); - - /// Light th icon - /// - /// https://fontawesome.com/icons/light_th?style=light - /// blocks, boxes, grid, squares - static const IconData lightTh = const IconDataLight(0xf00a); - - /// Duotone th icon - /// - /// https://fontawesome.com/icons/duotone_th?style=duotone - /// blocks, boxes, grid, squares - static const IconDataDuotone duotoneTh = const IconDataDuotone( - 0xf00a, - secondary: const IconDataDuotone(0x10f00a), - ); - - /// Regular th-large icon - /// - /// https://fontawesome.com/icons/th-large?style=regular - /// blocks, boxes, grid, squares - static const IconData thLarge = const IconDataRegular(0xf009); - - /// Solid th-large icon - /// - /// https://fontawesome.com/icons/th-large?style=solid - /// blocks, boxes, grid, squares - static const IconData solidThLarge = const IconDataSolid(0xf009); - - /// Light th-large icon - /// - /// https://fontawesome.com/icons/light_th-large?style=light - /// blocks, boxes, grid, squares - static const IconData lightThLarge = const IconDataLight(0xf009); - - /// Duotone th-large icon - /// - /// https://fontawesome.com/icons/duotone_th-large?style=duotone - /// blocks, boxes, grid, squares - static const IconDataDuotone duotoneThLarge = const IconDataDuotone( - 0xf009, - secondary: const IconDataDuotone(0x10f009), - ); - - /// Regular th-list icon - /// - /// https://fontawesome.com/icons/th-list?style=regular - /// checklist, completed, done, finished, ol, todo, ul - static const IconData thList = const IconDataRegular(0xf00b); - - /// Solid th-list icon - /// - /// https://fontawesome.com/icons/th-list?style=solid - /// checklist, completed, done, finished, ol, todo, ul - static const IconData solidThList = const IconDataSolid(0xf00b); - - /// Light th-list icon - /// - /// https://fontawesome.com/icons/light_th-list?style=light - /// checklist, completed, done, finished, ol, todo, ul - static const IconData lightThList = const IconDataLight(0xf00b); - - /// Duotone th-list icon - /// - /// https://fontawesome.com/icons/duotone_th-list?style=duotone - /// checklist, completed, done, finished, ol, todo, ul - static const IconDataDuotone duotoneThList = const IconDataDuotone( - 0xf00b, - secondary: const IconDataDuotone(0x10f00b), - ); - - /// Brands The Red Yeti icon - /// - /// https://fontawesome.com/icons/the-red-yeti?style=brands - static const IconData theRedYeti = const IconDataBrands(0xf69d); - - /// Regular Theater Masks icon - /// - /// https://fontawesome.com/icons/theater-masks?style=regular - /// comedy, perform, theatre, tragedy - static const IconData theaterMasks = const IconDataRegular(0xf630); - - /// Solid Theater Masks icon - /// - /// https://fontawesome.com/icons/theater-masks?style=solid - /// comedy, perform, theatre, tragedy - static const IconData solidTheaterMasks = const IconDataSolid(0xf630); - - /// Light Theater Masks icon - /// - /// https://fontawesome.com/icons/light_theater-masks?style=light - /// comedy, perform, theatre, tragedy - static const IconData lightTheaterMasks = const IconDataLight(0xf630); - - /// Duotone Theater Masks icon - /// - /// https://fontawesome.com/icons/duotone_theater-masks?style=duotone - /// comedy, perform, theatre, tragedy - static const IconDataDuotone duotoneTheaterMasks = const IconDataDuotone( - 0xf630, - secondary: const IconDataDuotone(0x10f630), - ); - - /// Brands Themeco icon - /// - /// https://fontawesome.com/icons/themeco?style=brands - static const IconData themeco = const IconDataBrands(0xf5c6); - - /// Brands ThemeIsle icon - /// - /// https://fontawesome.com/icons/themeisle?style=brands - static const IconData themeisle = const IconDataBrands(0xf2b2); - - /// Regular Thermometer icon - /// - /// https://fontawesome.com/icons/thermometer?style=regular - /// covid-19, mercury, status, temperature - static const IconData thermometer = const IconDataRegular(0xf491); - - /// Solid Thermometer icon - /// - /// https://fontawesome.com/icons/thermometer?style=solid - /// covid-19, mercury, status, temperature - static const IconData solidThermometer = const IconDataSolid(0xf491); - - /// Light Thermometer icon - /// - /// https://fontawesome.com/icons/light_thermometer?style=light - /// covid-19, mercury, status, temperature - static const IconData lightThermometer = const IconDataLight(0xf491); - - /// Duotone Thermometer icon - /// - /// https://fontawesome.com/icons/duotone_thermometer?style=duotone - /// covid-19, mercury, status, temperature - static const IconDataDuotone duotoneThermometer = const IconDataDuotone( - 0xf491, - secondary: const IconDataDuotone(0x10f491), - ); - - /// Regular Thermometer Empty icon - /// - /// https://fontawesome.com/icons/thermometer-empty?style=regular - /// cold, mercury, status, temperature - static const IconData thermometerEmpty = const IconDataRegular(0xf2cb); - - /// Solid Thermometer Empty icon - /// - /// https://fontawesome.com/icons/thermometer-empty?style=solid - /// cold, mercury, status, temperature - static const IconData solidThermometerEmpty = const IconDataSolid(0xf2cb); - - /// Light Thermometer Empty icon - /// - /// https://fontawesome.com/icons/light_thermometer-empty?style=light - /// cold, mercury, status, temperature - static const IconData lightThermometerEmpty = const IconDataLight(0xf2cb); - - /// Duotone Thermometer Empty icon - /// - /// https://fontawesome.com/icons/duotone_thermometer-empty?style=duotone - /// cold, mercury, status, temperature - static const IconDataDuotone duotoneThermometerEmpty = const IconDataDuotone( - 0xf2cb, - secondary: const IconDataDuotone(0x10f2cb), - ); - - /// Regular Thermometer Full icon - /// - /// https://fontawesome.com/icons/thermometer-full?style=regular - /// fever, hot, mercury, status, temperature - static const IconData thermometerFull = const IconDataRegular(0xf2c7); - - /// Solid Thermometer Full icon - /// - /// https://fontawesome.com/icons/thermometer-full?style=solid - /// fever, hot, mercury, status, temperature - static const IconData solidThermometerFull = const IconDataSolid(0xf2c7); - - /// Light Thermometer Full icon - /// - /// https://fontawesome.com/icons/light_thermometer-full?style=light - /// fever, hot, mercury, status, temperature - static const IconData lightThermometerFull = const IconDataLight(0xf2c7); - - /// Duotone Thermometer Full icon - /// - /// https://fontawesome.com/icons/duotone_thermometer-full?style=duotone - /// fever, hot, mercury, status, temperature - static const IconDataDuotone duotoneThermometerFull = const IconDataDuotone( - 0xf2c7, - secondary: const IconDataDuotone(0x10f2c7), - ); - - /// Regular Thermometer 1/2 Full icon - /// - /// https://fontawesome.com/icons/thermometer-half?style=regular - /// mercury, status, temperature - static const IconData thermometerHalf = const IconDataRegular(0xf2c9); - - /// Solid Thermometer 1/2 Full icon - /// - /// https://fontawesome.com/icons/thermometer-half?style=solid - /// mercury, status, temperature - static const IconData solidThermometerHalf = const IconDataSolid(0xf2c9); - - /// Light Thermometer 1/2 Full icon - /// - /// https://fontawesome.com/icons/light_thermometer-half?style=light - /// mercury, status, temperature - static const IconData lightThermometerHalf = const IconDataLight(0xf2c9); - - /// Duotone Thermometer 1/2 Full icon - /// - /// https://fontawesome.com/icons/duotone_thermometer-half?style=duotone - /// mercury, status, temperature - static const IconDataDuotone duotoneThermometerHalf = const IconDataDuotone( - 0xf2c9, - secondary: const IconDataDuotone(0x10f2c9), - ); - - /// Regular Thermometer 1/4 Full icon - /// - /// https://fontawesome.com/icons/thermometer-quarter?style=regular - /// mercury, status, temperature - static const IconData thermometerQuarter = const IconDataRegular(0xf2ca); - - /// Solid Thermometer 1/4 Full icon - /// - /// https://fontawesome.com/icons/thermometer-quarter?style=solid - /// mercury, status, temperature - static const IconData solidThermometerQuarter = const IconDataSolid(0xf2ca); - - /// Light Thermometer 1/4 Full icon - /// - /// https://fontawesome.com/icons/light_thermometer-quarter?style=light - /// mercury, status, temperature - static const IconData lightThermometerQuarter = const IconDataLight(0xf2ca); - - /// Duotone Thermometer 1/4 Full icon - /// - /// https://fontawesome.com/icons/duotone_thermometer-quarter?style=duotone - /// mercury, status, temperature - static const IconDataDuotone duotoneThermometerQuarter = - const IconDataDuotone( - 0xf2ca, - secondary: const IconDataDuotone(0x10f2ca), - ); - - /// Regular Thermometer 3/4 Full icon - /// - /// https://fontawesome.com/icons/thermometer-three-quarters?style=regular - /// mercury, status, temperature - static const IconData thermometerThreeQuarters = - const IconDataRegular(0xf2c8); - - /// Solid Thermometer 3/4 Full icon - /// - /// https://fontawesome.com/icons/thermometer-three-quarters?style=solid - /// mercury, status, temperature - static const IconData solidThermometerThreeQuarters = - const IconDataSolid(0xf2c8); - - /// Light Thermometer 3/4 Full icon - /// - /// https://fontawesome.com/icons/light_thermometer-three-quarters?style=light - /// mercury, status, temperature - static const IconData lightThermometerThreeQuarters = - const IconDataLight(0xf2c8); - - /// Duotone Thermometer 3/4 Full icon - /// - /// https://fontawesome.com/icons/duotone_thermometer-three-quarters?style=duotone - /// mercury, status, temperature - static const IconDataDuotone duotoneThermometerThreeQuarters = - const IconDataDuotone( - 0xf2c8, - secondary: const IconDataDuotone(0x10f2c8), - ); - - /// Regular Theta icon - /// - /// https://fontawesome.com/icons/theta?style=regular - /// alphabet, greek, math - static const IconData theta = const IconDataRegular(0xf69e); - - /// Solid Theta icon - /// - /// https://fontawesome.com/icons/theta?style=solid - /// alphabet, greek, math - static const IconData solidTheta = const IconDataSolid(0xf69e); - - /// Light Theta icon - /// - /// https://fontawesome.com/icons/light_theta?style=light - /// alphabet, greek, math - static const IconData lightTheta = const IconDataLight(0xf69e); - - /// Duotone Theta icon - /// - /// https://fontawesome.com/icons/duotone_theta?style=duotone - /// alphabet, greek, math - static const IconDataDuotone duotoneTheta = const IconDataDuotone( - 0xf69e, - secondary: const IconDataDuotone(0x10f69e), - ); - - /// Brands Think Peaks icon - /// - /// https://fontawesome.com/icons/think-peaks?style=brands - static const IconData thinkPeaks = const IconDataBrands(0xf731); - - /// Regular thumbs-down icon - /// - /// https://fontawesome.com/icons/thumbs-down?style=regular - /// disagree, disapprove, dislike, hand, social, thumbs-o-down - static const IconData thumbsDown = const IconDataRegular(0xf165); - - /// Solid thumbs-down icon - /// - /// https://fontawesome.com/icons/thumbs-down?style=solid - /// disagree, disapprove, dislike, hand, social, thumbs-o-down - static const IconData solidThumbsDown = const IconDataSolid(0xf165); - - /// Light thumbs-down icon - /// - /// https://fontawesome.com/icons/light_thumbs-down?style=light - /// disagree, disapprove, dislike, hand, social, thumbs-o-down - static const IconData lightThumbsDown = const IconDataLight(0xf165); - - /// Duotone thumbs-down icon - /// - /// https://fontawesome.com/icons/duotone_thumbs-down?style=duotone - /// disagree, disapprove, dislike, hand, social, thumbs-o-down - static const IconDataDuotone duotoneThumbsDown = const IconDataDuotone( - 0xf165, - secondary: const IconDataDuotone(0x10f165), - ); - - /// Regular thumbs-up icon - /// - /// https://fontawesome.com/icons/thumbs-up?style=regular - /// agree, approve, favorite, hand, like, ok, okay, social, success, thumbs-o-up, yes, you got it dude - static const IconData thumbsUp = const IconDataRegular(0xf164); - - /// Solid thumbs-up icon - /// - /// https://fontawesome.com/icons/thumbs-up?style=solid - /// agree, approve, favorite, hand, like, ok, okay, social, success, thumbs-o-up, yes, you got it dude - static const IconData solidThumbsUp = const IconDataSolid(0xf164); - - /// Light thumbs-up icon - /// - /// https://fontawesome.com/icons/light_thumbs-up?style=light - /// agree, approve, favorite, hand, like, ok, okay, social, success, thumbs-o-up, yes, you got it dude - static const IconData lightThumbsUp = const IconDataLight(0xf164); - - /// Duotone thumbs-up icon - /// - /// https://fontawesome.com/icons/duotone_thumbs-up?style=duotone - /// agree, approve, favorite, hand, like, ok, okay, social, success, thumbs-o-up, yes, you got it dude - static const IconDataDuotone duotoneThumbsUp = const IconDataDuotone( - 0xf164, - secondary: const IconDataDuotone(0x10f164), - ); - - /// Regular Thumbtack icon - /// - /// https://fontawesome.com/icons/thumbtack?style=regular - /// coordinates, location, marker, pin, thumb-tack - static const IconData thumbtack = const IconDataRegular(0xf08d); - - /// Solid Thumbtack icon - /// - /// https://fontawesome.com/icons/thumbtack?style=solid - /// coordinates, location, marker, pin, thumb-tack - static const IconData solidThumbtack = const IconDataSolid(0xf08d); - - /// Light Thumbtack icon - /// - /// https://fontawesome.com/icons/light_thumbtack?style=light - /// coordinates, location, marker, pin, thumb-tack - static const IconData lightThumbtack = const IconDataLight(0xf08d); - - /// Duotone Thumbtack icon - /// - /// https://fontawesome.com/icons/duotone_thumbtack?style=duotone - /// coordinates, location, marker, pin, thumb-tack - static const IconDataDuotone duotoneThumbtack = const IconDataDuotone( - 0xf08d, - secondary: const IconDataDuotone(0x10f08d), - ); - - /// Regular Thunderstorm icon - /// - /// https://fontawesome.com/icons/thunderstorm?style=regular - /// bolt, lightning, precipitation, rain, storm, weather - static const IconData thunderstorm = const IconDataRegular(0xf76c); - - /// Solid Thunderstorm icon - /// - /// https://fontawesome.com/icons/thunderstorm?style=solid - /// bolt, lightning, precipitation, rain, storm, weather - static const IconData solidThunderstorm = const IconDataSolid(0xf76c); - - /// Light Thunderstorm icon - /// - /// https://fontawesome.com/icons/light_thunderstorm?style=light - /// bolt, lightning, precipitation, rain, storm, weather - static const IconData lightThunderstorm = const IconDataLight(0xf76c); - - /// Duotone Thunderstorm icon - /// - /// https://fontawesome.com/icons/duotone_thunderstorm?style=duotone - /// bolt, lightning, precipitation, rain, storm, weather - static const IconDataDuotone duotoneThunderstorm = const IconDataDuotone( - 0xf76c, - secondary: const IconDataDuotone(0x10f76c), - ); - - /// Regular Thunderstorm with Moon icon - /// - /// https://fontawesome.com/icons/thunderstorm-moon?style=regular - /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData thunderstormMoon = const IconDataRegular(0xf76d); - - /// Solid Thunderstorm with Moon icon - /// - /// https://fontawesome.com/icons/thunderstorm-moon?style=solid - /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData solidThunderstormMoon = const IconDataSolid(0xf76d); - - /// Light Thunderstorm with Moon icon - /// - /// https://fontawesome.com/icons/light_thunderstorm-moon?style=light - /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconData lightThunderstormMoon = const IconDataLight(0xf76d); - - /// Duotone Thunderstorm with Moon icon - /// - /// https://fontawesome.com/icons/duotone_thunderstorm-moon?style=duotone - /// bolt, lightning, lunar, moon, precipitation, rain, storm, weather - static const IconDataDuotone duotoneThunderstormMoon = const IconDataDuotone( - 0xf76d, - secondary: const IconDataDuotone(0x10f76d), - ); - - /// Regular Thunderstorm with Sun icon - /// - /// https://fontawesome.com/icons/thunderstorm-sun?style=regular - /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData thunderstormSun = const IconDataRegular(0xf76e); - - /// Solid Thunderstorm with Sun icon - /// - /// https://fontawesome.com/icons/thunderstorm-sun?style=solid - /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData solidThunderstormSun = const IconDataSolid(0xf76e); - - /// Light Thunderstorm with Sun icon - /// - /// https://fontawesome.com/icons/light_thunderstorm-sun?style=light - /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconData lightThunderstormSun = const IconDataLight(0xf76e); - - /// Duotone Thunderstorm with Sun icon - /// - /// https://fontawesome.com/icons/duotone_thunderstorm-sun?style=duotone - /// bolt, lightning, precipitation, rain, solar, storm, sun, weather - static const IconDataDuotone duotoneThunderstormSun = const IconDataDuotone( - 0xf76e, - secondary: const IconDataDuotone(0x10f76e), - ); - - /// Regular Ticket icon - /// - /// https://fontawesome.com/icons/ticket?style=regular - /// movie, pass, support, ticket - static const IconData ticket = const IconDataRegular(0xf145); - - /// Solid Ticket icon - /// - /// https://fontawesome.com/icons/ticket?style=solid - /// movie, pass, support, ticket - static const IconData solidTicket = const IconDataSolid(0xf145); - - /// Light Ticket icon - /// - /// https://fontawesome.com/icons/light_ticket?style=light - /// movie, pass, support, ticket - static const IconData lightTicket = const IconDataLight(0xf145); - - /// Duotone Ticket icon - /// - /// https://fontawesome.com/icons/duotone_ticket?style=duotone - /// movie, pass, support, ticket - static const IconDataDuotone duotoneTicket = const IconDataDuotone( - 0xf145, - secondary: const IconDataDuotone(0x10f145), - ); - - /// Regular Alternate Ticket icon - /// - /// https://fontawesome.com/icons/ticket-alt?style=regular - /// movie, pass, support, ticket - static const IconData ticketAlt = const IconDataRegular(0xf3ff); - - /// Solid Alternate Ticket icon - /// - /// https://fontawesome.com/icons/ticket-alt?style=solid - /// movie, pass, support, ticket - static const IconData solidTicketAlt = const IconDataSolid(0xf3ff); - - /// Light Alternate Ticket icon - /// - /// https://fontawesome.com/icons/light_ticket-alt?style=light - /// movie, pass, support, ticket - static const IconData lightTicketAlt = const IconDataLight(0xf3ff); - - /// Duotone Alternate Ticket icon - /// - /// https://fontawesome.com/icons/duotone_ticket-alt?style=duotone - /// movie, pass, support, ticket - static const IconDataDuotone duotoneTicketAlt = const IconDataDuotone( - 0xf3ff, - secondary: const IconDataDuotone(0x10f3ff), - ); - - /// Brands TikTok icon - /// - /// https://fontawesome.com/icons/tiktok?style=brands - static const IconData tiktok = const IconDataBrands(0xe07b); - - /// Regular Tilde icon - /// - /// https://fontawesome.com/icons/tilde?style=regular - /// accent, symbol, text, type - static const IconData tilde = const IconDataRegular(0xf69f); - - /// Solid Tilde icon - /// - /// https://fontawesome.com/icons/tilde?style=solid - /// accent, symbol, text, type - static const IconData solidTilde = const IconDataSolid(0xf69f); - - /// Light Tilde icon - /// - /// https://fontawesome.com/icons/light_tilde?style=light - /// accent, symbol, text, type - static const IconData lightTilde = const IconDataLight(0xf69f); - - /// Duotone Tilde icon - /// - /// https://fontawesome.com/icons/duotone_tilde?style=duotone - /// accent, symbol, text, type - static const IconDataDuotone duotoneTilde = const IconDataDuotone( - 0xf69f, - secondary: const IconDataDuotone(0x10f69f), - ); - - /// Regular Times icon - /// - /// https://fontawesome.com/icons/times?style=regular - /// close, cross, error, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData times = const IconDataRegular(0xf00d); - - /// Solid Times icon - /// - /// https://fontawesome.com/icons/times?style=solid - /// close, cross, error, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData solidTimes = const IconDataSolid(0xf00d); - - /// Light Times icon - /// - /// https://fontawesome.com/icons/light_times?style=light - /// close, cross, error, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData lightTimes = const IconDataLight(0xf00d); - - /// Duotone Times icon - /// - /// https://fontawesome.com/icons/duotone_times?style=duotone - /// close, cross, error, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconDataDuotone duotoneTimes = const IconDataDuotone( - 0xf00d, - secondary: const IconDataDuotone(0x10f00d), - ); - - /// Regular Times Circle icon - /// - /// https://fontawesome.com/icons/times-circle?style=regular - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData timesCircle = const IconDataRegular(0xf057); - - /// Solid Times Circle icon - /// - /// https://fontawesome.com/icons/times-circle?style=solid - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData solidTimesCircle = const IconDataSolid(0xf057); - - /// Light Times Circle icon - /// - /// https://fontawesome.com/icons/light_times-circle?style=light - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData lightTimesCircle = const IconDataLight(0xf057); - - /// Duotone Times Circle icon - /// - /// https://fontawesome.com/icons/duotone_times-circle?style=duotone - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconDataDuotone duotoneTimesCircle = const IconDataDuotone( - 0xf057, - secondary: const IconDataDuotone(0x10f057), - ); - - /// Regular Times Hexagon icon - /// - /// https://fontawesome.com/icons/times-hexagon?style=regular - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData timesHexagon = const IconDataRegular(0xf2ee); - - /// Solid Times Hexagon icon - /// - /// https://fontawesome.com/icons/times-hexagon?style=solid - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData solidTimesHexagon = const IconDataSolid(0xf2ee); - - /// Light Times Hexagon icon - /// - /// https://fontawesome.com/icons/light_times-hexagon?style=light - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData lightTimesHexagon = const IconDataLight(0xf2ee); - - /// Duotone Times Hexagon icon - /// - /// https://fontawesome.com/icons/duotone_times-hexagon?style=duotone - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconDataDuotone duotoneTimesHexagon = const IconDataDuotone( - 0xf2ee, - secondary: const IconDataDuotone(0x10f2ee), - ); - - /// Regular Times Octagon icon - /// - /// https://fontawesome.com/icons/times-octagon?style=regular - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData timesOctagon = const IconDataRegular(0xf2f0); - - /// Solid Times Octagon icon - /// - /// https://fontawesome.com/icons/times-octagon?style=solid - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData solidTimesOctagon = const IconDataSolid(0xf2f0); - - /// Light Times Octagon icon - /// - /// https://fontawesome.com/icons/light_times-octagon?style=light - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconData lightTimesOctagon = const IconDataLight(0xf2f0); - - /// Duotone Times Octagon icon - /// - /// https://fontawesome.com/icons/duotone_times-octagon?style=duotone - /// close, cross, exit, incorrect, notice, notification, notify, problem, wrong, x - static const IconDataDuotone duotoneTimesOctagon = const IconDataDuotone( - 0xf2f0, - secondary: const IconDataDuotone(0x10f2f0), - ); - - /// Regular Times Square icon - /// - /// https://fontawesome.com/icons/times-square?style=regular - /// close, cross, incorrect, notice, notification, notify, problem, window, wrong - static const IconData timesSquare = const IconDataRegular(0xf2d3); - - /// Solid Times Square icon - /// - /// https://fontawesome.com/icons/times-square?style=solid - /// close, cross, incorrect, notice, notification, notify, problem, window, wrong - static const IconData solidTimesSquare = const IconDataSolid(0xf2d3); - - /// Light Times Square icon - /// - /// https://fontawesome.com/icons/light_times-square?style=light - /// close, cross, incorrect, notice, notification, notify, problem, window, wrong - static const IconData lightTimesSquare = const IconDataLight(0xf2d3); - - /// Duotone Times Square icon - /// - /// https://fontawesome.com/icons/duotone_times-square?style=duotone - /// close, cross, incorrect, notice, notification, notify, problem, window, wrong - static const IconDataDuotone duotoneTimesSquare = const IconDataDuotone( - 0xf2d3, - secondary: const IconDataDuotone(0x10f2d3), - ); - - /// Regular tint icon - /// - /// https://fontawesome.com/icons/tint?style=regular - /// color, drop, droplet, raindrop, waterdrop - static const IconData tint = const IconDataRegular(0xf043); - - /// Solid tint icon - /// - /// https://fontawesome.com/icons/tint?style=solid - /// color, drop, droplet, raindrop, waterdrop - static const IconData solidTint = const IconDataSolid(0xf043); - - /// Light tint icon - /// - /// https://fontawesome.com/icons/light_tint?style=light - /// color, drop, droplet, raindrop, waterdrop - static const IconData lightTint = const IconDataLight(0xf043); - - /// Duotone tint icon - /// - /// https://fontawesome.com/icons/duotone_tint?style=duotone - /// color, drop, droplet, raindrop, waterdrop - static const IconDataDuotone duotoneTint = const IconDataDuotone( - 0xf043, - secondary: const IconDataDuotone(0x10f043), - ); - - /// Regular Tint Slash icon - /// - /// https://fontawesome.com/icons/tint-slash?style=regular - /// color, drop, droplet, raindrop, waterdrop - static const IconData tintSlash = const IconDataRegular(0xf5c7); - - /// Solid Tint Slash icon - /// - /// https://fontawesome.com/icons/tint-slash?style=solid - /// color, drop, droplet, raindrop, waterdrop - static const IconData solidTintSlash = const IconDataSolid(0xf5c7); - - /// Light Tint Slash icon - /// - /// https://fontawesome.com/icons/light_tint-slash?style=light - /// color, drop, droplet, raindrop, waterdrop - static const IconData lightTintSlash = const IconDataLight(0xf5c7); - - /// Duotone Tint Slash icon - /// - /// https://fontawesome.com/icons/duotone_tint-slash?style=duotone - /// color, drop, droplet, raindrop, waterdrop - static const IconDataDuotone duotoneTintSlash = const IconDataDuotone( - 0xf5c7, - secondary: const IconDataDuotone(0x10f5c7), - ); - - /// Regular Tire icon - /// - /// https://fontawesome.com/icons/tire?style=regular - /// auto, car, rim, rubber, wheel - static const IconData tire = const IconDataRegular(0xf631); - - /// Solid Tire icon - /// - /// https://fontawesome.com/icons/tire?style=solid - /// auto, car, rim, rubber, wheel - static const IconData solidTire = const IconDataSolid(0xf631); - - /// Light Tire icon - /// - /// https://fontawesome.com/icons/light_tire?style=light - /// auto, car, rim, rubber, wheel - static const IconData lightTire = const IconDataLight(0xf631); - - /// Duotone Tire icon - /// - /// https://fontawesome.com/icons/duotone_tire?style=duotone - /// auto, car, rim, rubber, wheel - static const IconDataDuotone duotoneTire = const IconDataDuotone( - 0xf631, - secondary: const IconDataDuotone(0x10f631), - ); - - /// Regular Tire Flat icon - /// - /// https://fontawesome.com/icons/tire-flat?style=regular - /// auto, car, rim, rubber, wheel - static const IconData tireFlat = const IconDataRegular(0xf632); - - /// Solid Tire Flat icon - /// - /// https://fontawesome.com/icons/tire-flat?style=solid - /// auto, car, rim, rubber, wheel - static const IconData solidTireFlat = const IconDataSolid(0xf632); - - /// Light Tire Flat icon - /// - /// https://fontawesome.com/icons/light_tire-flat?style=light - /// auto, car, rim, rubber, wheel - static const IconData lightTireFlat = const IconDataLight(0xf632); - - /// Duotone Tire Flat icon - /// - /// https://fontawesome.com/icons/duotone_tire-flat?style=duotone - /// auto, car, rim, rubber, wheel - static const IconDataDuotone duotoneTireFlat = const IconDataDuotone( - 0xf632, - secondary: const IconDataDuotone(0x10f632), - ); - - /// 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 = const IconDataRegular(0xf633); - - /// 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 = const IconDataSolid(0xf633); - - /// Light Tire Pressure-warning icon - /// - /// https://fontawesome.com/icons/light_tire-pressure-warning?style=light - /// alert, auto, car, flat, rim, rubber, wheel - static const IconData lightTirePressureWarning = const IconDataLight(0xf633); - - /// Duotone Tire Pressure-warning icon - /// - /// https://fontawesome.com/icons/duotone_tire-pressure-warning?style=duotone - /// alert, auto, car, flat, rim, rubber, wheel - static const IconDataDuotone duotoneTirePressureWarning = - const IconDataDuotone( - 0xf633, - secondary: const IconDataDuotone(0x10f633), - ); - - /// Regular Tire Rugged icon - /// - /// https://fontawesome.com/icons/tire-rugged?style=regular - /// auto, car, offroad, rim, rubber, wheel - static const IconData tireRugged = const IconDataRegular(0xf634); - - /// Solid Tire Rugged icon - /// - /// https://fontawesome.com/icons/tire-rugged?style=solid - /// auto, car, offroad, rim, rubber, wheel - static const IconData solidTireRugged = const IconDataSolid(0xf634); - - /// Light Tire Rugged icon - /// - /// https://fontawesome.com/icons/light_tire-rugged?style=light - /// auto, car, offroad, rim, rubber, wheel - static const IconData lightTireRugged = const IconDataLight(0xf634); - - /// Duotone Tire Rugged icon - /// - /// https://fontawesome.com/icons/duotone_tire-rugged?style=duotone - /// auto, car, offroad, rim, rubber, wheel - static const IconDataDuotone duotoneTireRugged = const IconDataDuotone( - 0xf634, - secondary: const IconDataDuotone(0x10f634), - ); - - /// Regular Tired Face icon - /// - /// https://fontawesome.com/icons/tired?style=regular - /// angry, emoticon, face, grumpy, upset - static const IconData tired = const IconDataRegular(0xf5c8); - - /// Solid Tired Face icon - /// - /// https://fontawesome.com/icons/tired?style=solid - /// angry, emoticon, face, grumpy, upset - static const IconData solidTired = const IconDataSolid(0xf5c8); - - /// Light Tired Face icon - /// - /// https://fontawesome.com/icons/light_tired?style=light - /// angry, emoticon, face, grumpy, upset - static const IconData lightTired = const IconDataLight(0xf5c8); - - /// Duotone Tired Face icon - /// - /// https://fontawesome.com/icons/duotone_tired?style=duotone - /// angry, emoticon, face, grumpy, upset - static const IconDataDuotone duotoneTired = const IconDataDuotone( - 0xf5c8, - secondary: const IconDataDuotone(0x10f5c8), - ); - - /// Regular Toggle Off icon - /// - /// https://fontawesome.com/icons/toggle-off?style=regular - /// switch - static const IconData toggleOff = const IconDataRegular(0xf204); - - /// Solid Toggle Off icon - /// - /// https://fontawesome.com/icons/toggle-off?style=solid - /// switch - static const IconData solidToggleOff = const IconDataSolid(0xf204); - - /// Light Toggle Off icon - /// - /// https://fontawesome.com/icons/light_toggle-off?style=light - /// switch - static const IconData lightToggleOff = const IconDataLight(0xf204); - - /// Duotone Toggle Off icon - /// - /// https://fontawesome.com/icons/duotone_toggle-off?style=duotone - /// switch - static const IconDataDuotone duotoneToggleOff = const IconDataDuotone( - 0xf204, - secondary: const IconDataDuotone(0x10f204), - ); - - /// Regular Toggle On icon - /// - /// https://fontawesome.com/icons/toggle-on?style=regular - /// switch - static const IconData toggleOn = const IconDataRegular(0xf205); - - /// Solid Toggle On icon - /// - /// https://fontawesome.com/icons/toggle-on?style=solid - /// switch - static const IconData solidToggleOn = const IconDataSolid(0xf205); - - /// Light Toggle On icon - /// - /// https://fontawesome.com/icons/light_toggle-on?style=light - /// switch - static const IconData lightToggleOn = const IconDataLight(0xf205); - - /// Duotone Toggle On icon - /// - /// https://fontawesome.com/icons/duotone_toggle-on?style=duotone - /// switch - static const IconDataDuotone duotoneToggleOn = const IconDataDuotone( - 0xf205, - secondary: const IconDataDuotone(0x10f205), - ); - - /// Regular Toilet icon - /// - /// https://fontawesome.com/icons/toilet?style=regular - /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, washroom, waste, wc - static const IconData toilet = const IconDataRegular(0xf7d8); - - /// Solid Toilet icon - /// - /// https://fontawesome.com/icons/toilet?style=solid - /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, washroom, waste, wc - static const IconData solidToilet = const IconDataSolid(0xf7d8); - - /// Light Toilet icon - /// - /// https://fontawesome.com/icons/light_toilet?style=light - /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, washroom, waste, wc - static const IconData lightToilet = const IconDataLight(0xf7d8); - - /// Duotone Toilet icon - /// - /// https://fontawesome.com/icons/duotone_toilet?style=duotone - /// bathroom, flush, john, loo, pee, plumbing, poop, porcelain, potty, restroom, throne, washroom, waste, wc - static const IconDataDuotone duotoneToilet = const IconDataDuotone( - 0xf7d8, - secondary: const IconDataDuotone(0x10f7d8), - ); - - /// Regular Toilet Paper icon - /// - /// https://fontawesome.com/icons/toilet-paper?style=regular - /// bathroom, covid-19, halloween, holiday, lavatory, prank, restroom, roll - static const IconData toiletPaper = const IconDataRegular(0xf71e); - - /// Solid Toilet Paper icon - /// - /// https://fontawesome.com/icons/toilet-paper?style=solid - /// bathroom, covid-19, halloween, holiday, lavatory, prank, restroom, roll - static const IconData solidToiletPaper = const IconDataSolid(0xf71e); - - /// Light Toilet Paper icon - /// - /// https://fontawesome.com/icons/light_toilet-paper?style=light - /// bathroom, covid-19, halloween, holiday, lavatory, prank, restroom, roll - static const IconData lightToiletPaper = const IconDataLight(0xf71e); - - /// Duotone Toilet Paper icon - /// - /// https://fontawesome.com/icons/duotone_toilet-paper?style=duotone - /// bathroom, covid-19, halloween, holiday, lavatory, prank, restroom, roll - static const IconDataDuotone duotoneToiletPaper = const IconDataDuotone( - 0xf71e, - secondary: const IconDataDuotone(0x10f71e), - ); - - /// Regular Alternate Toilet Paper icon - /// - /// https://fontawesome.com/icons/toilet-paper-alt?style=regular - /// bathroom, halloween, holiday, lavatory, prank, restroom, roll - static const IconData toiletPaperAlt = const IconDataRegular(0xf71f); - - /// Solid Alternate Toilet Paper icon - /// - /// https://fontawesome.com/icons/toilet-paper-alt?style=solid - /// bathroom, halloween, holiday, lavatory, prank, restroom, roll - static const IconData solidToiletPaperAlt = const IconDataSolid(0xf71f); - - /// Light Alternate Toilet Paper icon - /// - /// https://fontawesome.com/icons/light_toilet-paper-alt?style=light - /// bathroom, halloween, holiday, lavatory, prank, restroom, roll - static const IconData lightToiletPaperAlt = const IconDataLight(0xf71f); - - /// Duotone Alternate Toilet Paper icon - /// - /// https://fontawesome.com/icons/duotone_toilet-paper-alt?style=duotone - /// bathroom, halloween, holiday, lavatory, prank, restroom, roll - static const IconDataDuotone duotoneToiletPaperAlt = const IconDataDuotone( - 0xf71f, - secondary: const IconDataDuotone(0x10f71f), - ); - - /// Regular Toilet Paper Slash icon - /// - /// https://fontawesome.com/icons/toilet-paper-slash?style=regular - /// bathroom, covid-19, halloween, holiday, lavatory, leaves, prank, restroom, roll, trouble, ut oh - static const IconData toiletPaperSlash = const IconDataRegular(0xe072); - - /// Light Toilet Paper Slash icon - /// - /// https://fontawesome.com/icons/light_toilet-paper-slash?style=light - /// bathroom, covid-19, halloween, holiday, lavatory, leaves, prank, restroom, roll, trouble, ut oh - static const IconData lightToiletPaperSlash = const IconDataLight(0xe072); - - /// Solid Toilet Paper Slash icon - /// - /// https://fontawesome.com/icons/toilet-paper-slash?style=solid - /// bathroom, covid-19, halloween, holiday, lavatory, leaves, prank, restroom, roll, trouble, ut oh - static const IconData solidToiletPaperSlash = const IconDataSolid(0xe072); - - /// Duotone Toilet Paper Slash icon - /// - /// https://fontawesome.com/icons/duotone_toilet-paper-slash?style=duotone - /// bathroom, covid-19, halloween, holiday, lavatory, leaves, prank, restroom, roll, trouble, ut oh - static const IconDataDuotone duotoneToiletPaperSlash = const IconDataDuotone( - 0xe072, - secondary: const IconDataDuotone(0x10e072), - ); - - /// Regular Tombstone icon - /// - /// https://fontawesome.com/icons/tombstone?style=regular - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData tombstone = const IconDataRegular(0xf720); - - /// Solid Tombstone icon - /// - /// https://fontawesome.com/icons/tombstone?style=solid - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData solidTombstone = const IconDataSolid(0xf720); - - /// Light Tombstone icon - /// - /// https://fontawesome.com/icons/light_tombstone?style=light - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData lightTombstone = const IconDataLight(0xf720); - - /// Duotone Tombstone icon - /// - /// https://fontawesome.com/icons/duotone_tombstone?style=duotone - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconDataDuotone duotoneTombstone = const IconDataDuotone( - 0xf720, - secondary: const IconDataDuotone(0x10f720), - ); - - /// Regular Alternate Tombstone icon - /// - /// https://fontawesome.com/icons/tombstone-alt?style=regular - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData tombstoneAlt = const IconDataRegular(0xf721); - - /// Solid Alternate Tombstone icon - /// - /// https://fontawesome.com/icons/tombstone-alt?style=solid - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData solidTombstoneAlt = const IconDataSolid(0xf721); - - /// Light Alternate Tombstone icon - /// - /// https://fontawesome.com/icons/light_tombstone-alt?style=light - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconData lightTombstoneAlt = const IconDataLight(0xf721); - - /// Duotone Alternate Tombstone icon - /// - /// https://fontawesome.com/icons/duotone_tombstone-alt?style=duotone - /// cemetery, cross, dead, death, delete, grave, halloween, holiday, remove - static const IconDataDuotone duotoneTombstoneAlt = const IconDataDuotone( - 0xf721, - secondary: const IconDataDuotone(0x10f721), - ); - - /// Regular Toolbox icon - /// - /// https://fontawesome.com/icons/toolbox?style=regular - /// admin, container, fix, repair, settings, tools - static const IconData toolbox = const IconDataRegular(0xf552); - - /// Solid Toolbox icon - /// - /// https://fontawesome.com/icons/toolbox?style=solid - /// admin, container, fix, repair, settings, tools - static const IconData solidToolbox = const IconDataSolid(0xf552); - - /// Light Toolbox icon - /// - /// https://fontawesome.com/icons/light_toolbox?style=light - /// admin, container, fix, repair, settings, tools - static const IconData lightToolbox = const IconDataLight(0xf552); - - /// Duotone Toolbox icon - /// - /// https://fontawesome.com/icons/duotone_toolbox?style=duotone - /// admin, container, fix, repair, settings, tools - static const IconDataDuotone duotoneToolbox = const IconDataDuotone( - 0xf552, - secondary: const IconDataDuotone(0x10f552), - ); - - /// Regular Tools icon - /// - /// https://fontawesome.com/icons/tools?style=regular - /// admin, fix, repair, screwdriver, settings, tools, wrench - static const IconData tools = const IconDataRegular(0xf7d9); - - /// Solid Tools icon - /// - /// https://fontawesome.com/icons/tools?style=solid - /// admin, fix, repair, screwdriver, settings, tools, wrench - static const IconData solidTools = const IconDataSolid(0xf7d9); - - /// Light Tools icon - /// - /// https://fontawesome.com/icons/light_tools?style=light - /// admin, fix, repair, screwdriver, settings, tools, wrench - static const IconData lightTools = const IconDataLight(0xf7d9); - - /// Duotone Tools icon - /// - /// https://fontawesome.com/icons/duotone_tools?style=duotone - /// admin, fix, repair, screwdriver, settings, tools, wrench - static const IconDataDuotone duotoneTools = const IconDataDuotone( - 0xf7d9, - secondary: const IconDataDuotone(0x10f7d9), - ); - - /// Regular Tooth icon - /// - /// https://fontawesome.com/icons/tooth?style=regular - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData tooth = const IconDataRegular(0xf5c9); - - /// Solid Tooth icon - /// - /// https://fontawesome.com/icons/tooth?style=solid - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData solidTooth = const IconDataSolid(0xf5c9); - - /// Light Tooth icon - /// - /// https://fontawesome.com/icons/light_tooth?style=light - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData lightTooth = const IconDataLight(0xf5c9); - - /// Duotone Tooth icon - /// - /// https://fontawesome.com/icons/duotone_tooth?style=duotone - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconDataDuotone duotoneTooth = const IconDataDuotone( - 0xf5c9, - secondary: const IconDataDuotone(0x10f5c9), - ); - - /// Regular Toothbrush icon - /// - /// https://fontawesome.com/icons/toothbrush?style=regular - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData toothbrush = const IconDataRegular(0xf635); - - /// Solid Toothbrush icon - /// - /// https://fontawesome.com/icons/toothbrush?style=solid - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData solidToothbrush = const IconDataSolid(0xf635); - - /// Light Toothbrush icon - /// - /// https://fontawesome.com/icons/light_toothbrush?style=light - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconData lightToothbrush = const IconDataLight(0xf635); - - /// Duotone Toothbrush icon - /// - /// https://fontawesome.com/icons/duotone_toothbrush?style=duotone - /// bicuspid, dental, dentist, molar, mouth, teeth - static const IconDataDuotone duotoneToothbrush = const IconDataDuotone( - 0xf635, - secondary: const IconDataDuotone(0x10f635), - ); - - /// Regular Torah icon - /// - /// https://fontawesome.com/icons/torah?style=regular - /// book, jewish, judaism, religion, scroll - static const IconData torah = const IconDataRegular(0xf6a0); - - /// Solid Torah icon - /// - /// https://fontawesome.com/icons/torah?style=solid - /// book, jewish, judaism, religion, scroll - static const IconData solidTorah = const IconDataSolid(0xf6a0); - - /// Light Torah icon - /// - /// https://fontawesome.com/icons/light_torah?style=light - /// book, jewish, judaism, religion, scroll - static const IconData lightTorah = const IconDataLight(0xf6a0); - - /// Duotone Torah icon - /// - /// https://fontawesome.com/icons/duotone_torah?style=duotone - /// book, jewish, judaism, religion, scroll - static const IconDataDuotone duotoneTorah = const IconDataDuotone( - 0xf6a0, - secondary: const IconDataDuotone(0x10f6a0), - ); - - /// Regular Torii Gate icon - /// - /// https://fontawesome.com/icons/torii-gate?style=regular - /// building, shintoism - static const IconData toriiGate = const IconDataRegular(0xf6a1); - - /// Solid Torii Gate icon - /// - /// https://fontawesome.com/icons/torii-gate?style=solid - /// building, shintoism - static const IconData solidToriiGate = const IconDataSolid(0xf6a1); - - /// Light Torii Gate icon - /// - /// https://fontawesome.com/icons/light_torii-gate?style=light - /// building, shintoism - static const IconData lightToriiGate = const IconDataLight(0xf6a1); - - /// Duotone Torii Gate icon - /// - /// https://fontawesome.com/icons/duotone_torii-gate?style=duotone - /// building, shintoism - static const IconDataDuotone duotoneToriiGate = const IconDataDuotone( - 0xf6a1, - secondary: const IconDataDuotone(0x10f6a1), - ); - - /// Regular Tornado icon - /// - /// https://fontawesome.com/icons/tornado?style=regular - /// cyclone, dorothy, landspout, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData tornado = const IconDataRegular(0xf76f); - - /// Solid Tornado icon - /// - /// https://fontawesome.com/icons/tornado?style=solid - /// cyclone, dorothy, landspout, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData solidTornado = const IconDataSolid(0xf76f); - - /// Light Tornado icon - /// - /// https://fontawesome.com/icons/light_tornado?style=light - /// cyclone, dorothy, landspout, toto, twister, vortext, waterspout, weather, whirlwind - static const IconData lightTornado = const IconDataLight(0xf76f); - - /// Duotone Tornado icon - /// - /// https://fontawesome.com/icons/duotone_tornado?style=duotone - /// cyclone, dorothy, landspout, toto, twister, vortext, waterspout, weather, whirlwind - static const IconDataDuotone duotoneTornado = const IconDataDuotone( - 0xf76f, - secondary: const IconDataDuotone(0x10f76f), - ); - - /// Regular Tractor icon - /// - /// https://fontawesome.com/icons/tractor?style=regular - /// agriculture, farm, vehicle - static const IconData tractor = const IconDataRegular(0xf722); - - /// Solid Tractor icon - /// - /// https://fontawesome.com/icons/tractor?style=solid - /// agriculture, farm, vehicle - static const IconData solidTractor = const IconDataSolid(0xf722); - - /// Light Tractor icon - /// - /// https://fontawesome.com/icons/light_tractor?style=light - /// agriculture, farm, vehicle - static const IconData lightTractor = const IconDataLight(0xf722); - - /// Duotone Tractor icon - /// - /// https://fontawesome.com/icons/duotone_tractor?style=duotone - /// agriculture, farm, vehicle - static const IconDataDuotone duotoneTractor = const IconDataDuotone( - 0xf722, - secondary: const IconDataDuotone(0x10f722), - ); - - /// Brands Trade Federation icon - /// - /// https://fontawesome.com/icons/trade-federation?style=brands - static const IconData tradeFederation = const IconDataBrands(0xf513); - - /// Regular Trademark icon - /// - /// https://fontawesome.com/icons/trademark?style=regular - /// copyright, register, symbol - static const IconData trademark = const IconDataRegular(0xf25c); - - /// Solid Trademark icon - /// - /// https://fontawesome.com/icons/trademark?style=solid - /// copyright, register, symbol - static const IconData solidTrademark = const IconDataSolid(0xf25c); - - /// Light Trademark icon - /// - /// https://fontawesome.com/icons/light_trademark?style=light - /// copyright, register, symbol - static const IconData lightTrademark = const IconDataLight(0xf25c); - - /// Duotone Trademark icon - /// - /// https://fontawesome.com/icons/duotone_trademark?style=duotone - /// copyright, register, symbol - static const IconDataDuotone duotoneTrademark = const IconDataDuotone( - 0xf25c, - secondary: const IconDataDuotone(0x10f25c), - ); - - /// Regular Traffic Cone icon - /// - /// https://fontawesome.com/icons/traffic-cone?style=regular - /// alert, construction, road - static const IconData trafficCone = const IconDataRegular(0xf636); - - /// Solid Traffic Cone icon - /// - /// https://fontawesome.com/icons/traffic-cone?style=solid - /// alert, construction, road - static const IconData solidTrafficCone = const IconDataSolid(0xf636); - - /// Light Traffic Cone icon - /// - /// https://fontawesome.com/icons/light_traffic-cone?style=light - /// alert, construction, road - static const IconData lightTrafficCone = const IconDataLight(0xf636); - - /// Duotone Traffic Cone icon - /// - /// https://fontawesome.com/icons/duotone_traffic-cone?style=duotone - /// alert, construction, road - static const IconDataDuotone duotoneTrafficCone = const IconDataDuotone( - 0xf636, - secondary: const IconDataDuotone(0x10f636), - ); - - /// Regular Traffic Light icon - /// - /// https://fontawesome.com/icons/traffic-light?style=regular - /// direction, road, signal, travel - static const IconData trafficLight = const IconDataRegular(0xf637); - - /// Solid Traffic Light icon - /// - /// https://fontawesome.com/icons/traffic-light?style=solid - /// direction, road, signal, travel - static const IconData solidTrafficLight = const IconDataSolid(0xf637); - - /// Light Traffic Light icon - /// - /// https://fontawesome.com/icons/light_traffic-light?style=light - /// direction, road, signal, travel - static const IconData lightTrafficLight = const IconDataLight(0xf637); - - /// Duotone Traffic Light icon - /// - /// https://fontawesome.com/icons/duotone_traffic-light?style=duotone - /// direction, road, signal, travel - static const IconDataDuotone duotoneTrafficLight = const IconDataDuotone( - 0xf637, - secondary: const IconDataDuotone(0x10f637), - ); - - /// Regular Traffic Light-go icon - /// - /// https://fontawesome.com/icons/traffic-light-go?style=regular - /// direction, green, road, signal, travel - static const IconData trafficLightGo = const IconDataRegular(0xf638); - - /// Solid Traffic Light-go icon - /// - /// https://fontawesome.com/icons/traffic-light-go?style=solid - /// direction, green, road, signal, travel - static const IconData solidTrafficLightGo = const IconDataSolid(0xf638); - - /// Light Traffic Light-go icon - /// - /// https://fontawesome.com/icons/light_traffic-light-go?style=light - /// direction, green, road, signal, travel - static const IconData lightTrafficLightGo = const IconDataLight(0xf638); - - /// Duotone Traffic Light-go icon - /// - /// https://fontawesome.com/icons/duotone_traffic-light-go?style=duotone - /// direction, green, road, signal, travel - static const IconDataDuotone duotoneTrafficLightGo = const IconDataDuotone( - 0xf638, - secondary: const IconDataDuotone(0x10f638), - ); - - /// Regular Traffic Light-slow icon - /// - /// https://fontawesome.com/icons/traffic-light-slow?style=regular - /// direction, road, signal, travel, yellow - static const IconData trafficLightSlow = const IconDataRegular(0xf639); - - /// Solid Traffic Light-slow icon - /// - /// https://fontawesome.com/icons/traffic-light-slow?style=solid - /// direction, road, signal, travel, yellow - static const IconData solidTrafficLightSlow = const IconDataSolid(0xf639); - - /// Light Traffic Light-slow icon - /// - /// https://fontawesome.com/icons/light_traffic-light-slow?style=light - /// direction, road, signal, travel, yellow - static const IconData lightTrafficLightSlow = const IconDataLight(0xf639); - - /// Duotone Traffic Light-slow icon - /// - /// https://fontawesome.com/icons/duotone_traffic-light-slow?style=duotone - /// direction, road, signal, travel, yellow - static const IconDataDuotone duotoneTrafficLightSlow = const IconDataDuotone( - 0xf639, - secondary: const IconDataDuotone(0x10f639), - ); - - /// Regular Traffic Light-stop icon - /// - /// https://fontawesome.com/icons/traffic-light-stop?style=regular - /// direction, red, road, signal, travel - static const IconData trafficLightStop = const IconDataRegular(0xf63a); - - /// Solid Traffic Light-stop icon - /// - /// https://fontawesome.com/icons/traffic-light-stop?style=solid - /// direction, red, road, signal, travel - static const IconData solidTrafficLightStop = const IconDataSolid(0xf63a); - - /// Light Traffic Light-stop icon - /// - /// https://fontawesome.com/icons/light_traffic-light-stop?style=light - /// direction, red, road, signal, travel - static const IconData lightTrafficLightStop = const IconDataLight(0xf63a); - - /// Duotone Traffic Light-stop icon - /// - /// https://fontawesome.com/icons/duotone_traffic-light-stop?style=duotone - /// direction, red, road, signal, travel - static const IconDataDuotone duotoneTrafficLightStop = const IconDataDuotone( - 0xf63a, - secondary: const IconDataDuotone(0x10f63a), - ); - - /// Regular Trailer icon - /// - /// https://fontawesome.com/icons/trailer?style=regular - /// carry, haul, moving, travel - static const IconData trailer = const IconDataRegular(0xe041); - - /// Solid Trailer icon - /// - /// https://fontawesome.com/icons/trailer?style=solid - /// carry, haul, moving, travel - static const IconData solidTrailer = const IconDataSolid(0xe041); - - /// Light Trailer icon - /// - /// https://fontawesome.com/icons/light_trailer?style=light - /// carry, haul, moving, travel - static const IconData lightTrailer = const IconDataLight(0xe041); - - /// Duotone Trailer icon - /// - /// https://fontawesome.com/icons/duotone_trailer?style=duotone - /// carry, haul, moving, travel - static const IconDataDuotone duotoneTrailer = const IconDataDuotone( - 0xe041, - secondary: const IconDataDuotone(0x10e041), - ); - - /// Regular Train icon - /// - /// https://fontawesome.com/icons/train?style=regular - /// bullet, commute, locomotive, railway, subway - static const IconData train = const IconDataRegular(0xf238); - - /// Solid Train icon - /// - /// https://fontawesome.com/icons/train?style=solid - /// bullet, commute, locomotive, railway, subway - static const IconData solidTrain = const IconDataSolid(0xf238); - - /// Light Train icon - /// - /// https://fontawesome.com/icons/light_train?style=light - /// bullet, commute, locomotive, railway, subway - static const IconData lightTrain = const IconDataLight(0xf238); - - /// Duotone Train icon - /// - /// https://fontawesome.com/icons/duotone_train?style=duotone - /// bullet, commute, locomotive, railway, subway - static const IconDataDuotone duotoneTrain = const IconDataDuotone( - 0xf238, - secondary: const IconDataDuotone(0x10f238), - ); - - /// Regular Tram icon - /// - /// https://fontawesome.com/icons/tram?style=regular - /// crossing, machine, mountains, seasonal, transportation - static const IconData tram = const IconDataRegular(0xf7da); - - /// Solid Tram icon - /// - /// https://fontawesome.com/icons/tram?style=solid - /// crossing, machine, mountains, seasonal, transportation - static const IconData solidTram = const IconDataSolid(0xf7da); - - /// Light Tram icon - /// - /// https://fontawesome.com/icons/light_tram?style=light - /// crossing, machine, mountains, seasonal, transportation - static const IconData lightTram = const IconDataLight(0xf7da); - - /// Duotone Tram icon - /// - /// https://fontawesome.com/icons/duotone_tram?style=duotone - /// crossing, machine, mountains, seasonal, transportation - static const IconDataDuotone duotoneTram = const IconDataDuotone( - 0xf7da, - secondary: const IconDataDuotone(0x10f7da), - ); - - /// Regular Transgender icon - /// - /// https://fontawesome.com/icons/transgender?style=regular - /// intersex - static const IconData transgender = const IconDataRegular(0xf224); - - /// Solid Transgender icon - /// - /// https://fontawesome.com/icons/transgender?style=solid - /// intersex - static const IconData solidTransgender = const IconDataSolid(0xf224); - - /// Light Transgender icon - /// - /// https://fontawesome.com/icons/light_transgender?style=light - /// intersex - static const IconData lightTransgender = const IconDataLight(0xf224); - - /// Duotone Transgender icon - /// - /// https://fontawesome.com/icons/duotone_transgender?style=duotone - /// intersex - static const IconDataDuotone duotoneTransgender = const IconDataDuotone( - 0xf224, - secondary: const IconDataDuotone(0x10f224), - ); - - /// Regular Alternate Transgender icon - /// - /// https://fontawesome.com/icons/transgender-alt?style=regular - /// intersex - static const IconData transgenderAlt = const IconDataRegular(0xf225); - - /// Solid Alternate Transgender icon - /// - /// https://fontawesome.com/icons/transgender-alt?style=solid - /// intersex - static const IconData solidTransgenderAlt = const IconDataSolid(0xf225); - - /// Light Alternate Transgender icon - /// - /// https://fontawesome.com/icons/light_transgender-alt?style=light - /// intersex - static const IconData lightTransgenderAlt = const IconDataLight(0xf225); - - /// Duotone Alternate Transgender icon - /// - /// https://fontawesome.com/icons/duotone_transgender-alt?style=duotone - /// intersex - static const IconDataDuotone duotoneTransgenderAlt = const IconDataDuotone( - 0xf225, - secondary: const IconDataDuotone(0x10f225), - ); - - /// Regular Transporter icon - /// - /// https://fontawesome.com/icons/transporter?style=regular - /// move, teleport, transfer, translocate, travel - static const IconData transporter = const IconDataRegular(0xe042); - - /// Solid Transporter icon - /// - /// https://fontawesome.com/icons/transporter?style=solid - /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter = const IconDataSolid(0xe042); - - /// Light Transporter icon - /// - /// https://fontawesome.com/icons/light_transporter?style=light - /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter = const IconDataLight(0xe042); - - /// Duotone Transporter icon - /// - /// https://fontawesome.com/icons/duotone_transporter?style=duotone - /// move, teleport, transfer, translocate, travel - static const IconDataDuotone duotoneTransporter = const IconDataDuotone( - 0xe042, - secondary: const IconDataDuotone(0x10e042), - ); - - /// Regular Transporter 1 icon - /// - /// https://fontawesome.com/icons/transporter-1?style=regular - /// move, teleport, transfer, translocate, travel - static const IconData transporter1 = const IconDataRegular(0xe043); - - /// Solid Transporter 1 icon - /// - /// https://fontawesome.com/icons/transporter-1?style=solid - /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter1 = const IconDataSolid(0xe043); - - /// Light Transporter 1 icon - /// - /// https://fontawesome.com/icons/light_transporter-1?style=light - /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter1 = const IconDataLight(0xe043); - - /// Duotone Transporter 1 icon - /// - /// https://fontawesome.com/icons/duotone_transporter-1?style=duotone - /// move, teleport, transfer, translocate, travel - static const IconDataDuotone duotoneTransporter1 = const IconDataDuotone( - 0xe043, - secondary: const IconDataDuotone(0x10e043), - ); - - /// Regular Transporter 2 icon - /// - /// https://fontawesome.com/icons/transporter-2?style=regular - /// move, teleport, transfer, translocate, travel - static const IconData transporter2 = const IconDataRegular(0xe044); - - /// Solid Transporter 2 icon - /// - /// https://fontawesome.com/icons/transporter-2?style=solid - /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter2 = const IconDataSolid(0xe044); - - /// Light Transporter 2 icon - /// - /// https://fontawesome.com/icons/light_transporter-2?style=light - /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter2 = const IconDataLight(0xe044); - - /// Duotone Transporter 2 icon - /// - /// https://fontawesome.com/icons/duotone_transporter-2?style=duotone - /// move, teleport, transfer, translocate, travel - static const IconDataDuotone duotoneTransporter2 = const IconDataDuotone( - 0xe044, - secondary: const IconDataDuotone(0x10e044), - ); - - /// Regular Transporter 3 icon - /// - /// https://fontawesome.com/icons/transporter-3?style=regular - /// move, teleport, transfer, translocate, travel - static const IconData transporter3 = const IconDataRegular(0xe045); - - /// Solid Transporter 3 icon - /// - /// https://fontawesome.com/icons/transporter-3?style=solid - /// move, teleport, transfer, translocate, travel - static const IconData solidTransporter3 = const IconDataSolid(0xe045); - - /// Light Transporter 3 icon - /// - /// https://fontawesome.com/icons/light_transporter-3?style=light - /// move, teleport, transfer, translocate, travel - static const IconData lightTransporter3 = const IconDataLight(0xe045); - - /// Duotone Transporter 3 icon - /// - /// https://fontawesome.com/icons/duotone_transporter-3?style=duotone - /// move, teleport, transfer, translocate, travel - static const IconDataDuotone duotoneTransporter3 = const IconDataDuotone( - 0xe045, - secondary: const IconDataDuotone(0x10e045), - ); - - /// Regular Transporter Empty icon - /// - /// https://fontawesome.com/icons/transporter-empty?style=regular - /// complete, move, teleport, transfer, translocate, travel - static const IconData transporterEmpty = const IconDataRegular(0xe046); - - /// Solid Transporter Empty icon - /// - /// https://fontawesome.com/icons/transporter-empty?style=solid - /// complete, move, teleport, transfer, translocate, travel - static const IconData solidTransporterEmpty = const IconDataSolid(0xe046); - - /// Light Transporter Empty icon - /// - /// https://fontawesome.com/icons/light_transporter-empty?style=light - /// complete, move, teleport, transfer, translocate, travel - static const IconData lightTransporterEmpty = const IconDataLight(0xe046); - - /// Duotone Transporter Empty icon - /// - /// https://fontawesome.com/icons/duotone_transporter-empty?style=duotone - /// complete, move, teleport, transfer, translocate, travel - static const IconDataDuotone duotoneTransporterEmpty = const IconDataDuotone( - 0xe046, - secondary: const IconDataDuotone(0x10e046), - ); - - /// Regular Trash icon - /// - /// https://fontawesome.com/icons/trash?style=regular - /// delete, garbage, hide, remove - static const IconData trash = const IconDataRegular(0xf1f8); - - /// Solid Trash icon - /// - /// https://fontawesome.com/icons/trash?style=solid - /// delete, garbage, hide, remove - static const IconData solidTrash = const IconDataSolid(0xf1f8); - - /// Light Trash icon - /// - /// https://fontawesome.com/icons/light_trash?style=light - /// delete, garbage, hide, remove - static const IconData lightTrash = const IconDataLight(0xf1f8); - - /// Duotone Trash icon - /// - /// https://fontawesome.com/icons/duotone_trash?style=duotone - /// delete, garbage, hide, remove - static const IconDataDuotone duotoneTrash = const IconDataDuotone( - 0xf1f8, - secondary: const IconDataDuotone(0x10f1f8), - ); - - /// Regular Alternate Trash icon - /// - /// https://fontawesome.com/icons/trash-alt?style=regular - /// delete, garbage, hide, remove, trash-o - static const IconData trashAlt = const IconDataRegular(0xf2ed); - - /// Solid Alternate Trash icon - /// - /// https://fontawesome.com/icons/trash-alt?style=solid - /// delete, garbage, hide, remove, trash-o - static const IconData solidTrashAlt = const IconDataSolid(0xf2ed); - - /// Light Alternate Trash icon - /// - /// https://fontawesome.com/icons/light_trash-alt?style=light - /// delete, garbage, hide, remove, trash-o - static const IconData lightTrashAlt = const IconDataLight(0xf2ed); - - /// Duotone Alternate Trash icon - /// - /// https://fontawesome.com/icons/duotone_trash-alt?style=duotone - /// delete, garbage, hide, remove, trash-o - static const IconDataDuotone duotoneTrashAlt = const IconDataDuotone( - 0xf2ed, - secondary: const IconDataDuotone(0x10f2ed), - ); - - /// Regular Trash Restore icon - /// - /// https://fontawesome.com/icons/trash-restore?style=regular - /// back, control z, oops, undo - static const IconData trashRestore = const IconDataRegular(0xf829); - - /// Solid Trash Restore icon - /// - /// https://fontawesome.com/icons/trash-restore?style=solid - /// back, control z, oops, undo - static const IconData solidTrashRestore = const IconDataSolid(0xf829); - - /// Light Trash Restore icon - /// - /// https://fontawesome.com/icons/light_trash-restore?style=light - /// back, control z, oops, undo - static const IconData lightTrashRestore = const IconDataLight(0xf829); - - /// Duotone Trash Restore icon - /// - /// https://fontawesome.com/icons/duotone_trash-restore?style=duotone - /// back, control z, oops, undo - static const IconDataDuotone duotoneTrashRestore = const IconDataDuotone( - 0xf829, - secondary: const IconDataDuotone(0x10f829), - ); - - /// Regular Alternative Trash Restore icon - /// - /// https://fontawesome.com/icons/trash-restore-alt?style=regular - /// back, control z, oops, undo - static const IconData trashRestoreAlt = const IconDataRegular(0xf82a); - - /// Solid Alternative Trash Restore icon - /// - /// https://fontawesome.com/icons/trash-restore-alt?style=solid - /// back, control z, oops, undo - static const IconData solidTrashRestoreAlt = const IconDataSolid(0xf82a); - - /// Light Alternative Trash Restore icon - /// - /// https://fontawesome.com/icons/light_trash-restore-alt?style=light - /// back, control z, oops, undo - static const IconData lightTrashRestoreAlt = const IconDataLight(0xf82a); - - /// Duotone Alternative Trash Restore icon - /// - /// https://fontawesome.com/icons/duotone_trash-restore-alt?style=duotone - /// back, control z, oops, undo - static const IconDataDuotone duotoneTrashRestoreAlt = const IconDataDuotone( - 0xf82a, - secondary: const IconDataDuotone(0x10f82a), - ); - - /// Regular Trash Undo icon - /// - /// https://fontawesome.com/icons/trash-undo?style=regular - /// back, control z, oops, restore - static const IconData trashUndo = const IconDataRegular(0xf895); - - /// Solid Trash Undo icon - /// - /// https://fontawesome.com/icons/trash-undo?style=solid - /// back, control z, oops, restore - static const IconData solidTrashUndo = const IconDataSolid(0xf895); - - /// Light Trash Undo icon - /// - /// https://fontawesome.com/icons/light_trash-undo?style=light - /// back, control z, oops, restore - static const IconData lightTrashUndo = const IconDataLight(0xf895); - - /// Duotone Trash Undo icon - /// - /// https://fontawesome.com/icons/duotone_trash-undo?style=duotone - /// back, control z, oops, restore - static const IconDataDuotone duotoneTrashUndo = const IconDataDuotone( - 0xf895, - secondary: const IconDataDuotone(0x10f895), - ); - - /// Regular Alternate Trash Undo icon - /// - /// https://fontawesome.com/icons/trash-undo-alt?style=regular - /// back, control z, oops, restore - static const IconData trashUndoAlt = const IconDataRegular(0xf896); - - /// Solid Alternate Trash Undo icon - /// - /// https://fontawesome.com/icons/trash-undo-alt?style=solid - /// back, control z, oops, restore - static const IconData solidTrashUndoAlt = const IconDataSolid(0xf896); - - /// Light Alternate Trash Undo icon - /// - /// https://fontawesome.com/icons/light_trash-undo-alt?style=light - /// back, control z, oops, restore - static const IconData lightTrashUndoAlt = const IconDataLight(0xf896); - - /// Duotone Alternate Trash Undo icon - /// - /// https://fontawesome.com/icons/duotone_trash-undo-alt?style=duotone - /// back, control z, oops, restore - static const IconDataDuotone duotoneTrashUndoAlt = const IconDataDuotone( - 0xf896, - secondary: const IconDataDuotone(0x10f896), - ); - - /// Regular Treasure Chest icon - /// - /// https://fontawesome.com/icons/treasure-chest?style=regular - /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, reward, trap - static const IconData treasureChest = const IconDataRegular(0xf723); - - /// Solid Treasure Chest icon - /// - /// https://fontawesome.com/icons/treasure-chest?style=solid - /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, reward, trap - static const IconData solidTreasureChest = const IconDataSolid(0xf723); - - /// Light Treasure Chest icon - /// - /// https://fontawesome.com/icons/light_treasure-chest?style=light - /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, reward, trap - static const IconData lightTreasureChest = const IconDataLight(0xf723); - - /// Duotone Treasure Chest icon - /// - /// https://fontawesome.com/icons/duotone_treasure-chest?style=duotone - /// Dungeons & Dragons, booty, d&d, dnd, fantasy, gold, hidden, loot, reward, trap - static const IconDataDuotone duotoneTreasureChest = const IconDataDuotone( - 0xf723, - secondary: const IconDataDuotone(0x10f723), - ); - - /// Regular Tree icon - /// - /// https://fontawesome.com/icons/tree?style=regular - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData tree = const IconDataRegular(0xf1bb); - - /// Solid Tree icon - /// - /// https://fontawesome.com/icons/tree?style=solid - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTree = const IconDataSolid(0xf1bb); - - /// Light Tree icon - /// - /// https://fontawesome.com/icons/light_tree?style=light - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTree = const IconDataLight(0xf1bb); - - /// Duotone Tree icon - /// - /// https://fontawesome.com/icons/duotone_tree?style=duotone - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconDataDuotone duotoneTree = const IconDataDuotone( - 0xf1bb, - secondary: const IconDataDuotone(0x10f1bb), - ); - - /// Regular Alternate Tree icon - /// - /// https://fontawesome.com/icons/tree-alt?style=regular - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData treeAlt = const IconDataRegular(0xf400); - - /// Solid Alternate Tree icon - /// - /// https://fontawesome.com/icons/tree-alt?style=solid - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTreeAlt = const IconDataSolid(0xf400); - - /// Light Alternate Tree icon - /// - /// https://fontawesome.com/icons/light_tree-alt?style=light - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTreeAlt = const IconDataLight(0xf400); - - /// Duotone Alternate Tree icon - /// - /// https://fontawesome.com/icons/duotone_tree-alt?style=duotone - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconDataDuotone duotoneTreeAlt = const IconDataDuotone( - 0xf400, - secondary: const IconDataDuotone(0x10f400), - ); - - /// Regular Christmas Tree icon - /// - /// https://fontawesome.com/icons/tree-christmas?style=regular - /// christmas, decorated, decorations, flora, holiday, lights, plant, star, xmas - static const IconData treeChristmas = const IconDataRegular(0xf7db); - - /// Solid Christmas Tree icon - /// - /// https://fontawesome.com/icons/tree-christmas?style=solid - /// christmas, decorated, decorations, flora, holiday, lights, plant, star, xmas - static const IconData solidTreeChristmas = const IconDataSolid(0xf7db); - - /// Light Christmas Tree icon - /// - /// https://fontawesome.com/icons/light_tree-christmas?style=light - /// christmas, decorated, decorations, flora, holiday, lights, plant, star, xmas - static const IconData lightTreeChristmas = const IconDataLight(0xf7db); - - /// Duotone Christmas Tree icon - /// - /// https://fontawesome.com/icons/duotone_tree-christmas?style=duotone - /// christmas, decorated, decorations, flora, holiday, lights, plant, star, xmas - static const IconDataDuotone duotoneTreeChristmas = const IconDataDuotone( - 0xf7db, - secondary: const IconDataDuotone(0x10f7db), - ); - - /// Regular Tree Decorated icon - /// - /// https://fontawesome.com/icons/tree-decorated?style=regular - /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData treeDecorated = const IconDataRegular(0xf7dc); - - /// Solid Tree Decorated icon - /// - /// https://fontawesome.com/icons/tree-decorated?style=solid - /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData solidTreeDecorated = const IconDataSolid(0xf7dc); - - /// Light Tree Decorated icon - /// - /// https://fontawesome.com/icons/light_tree-decorated?style=light - /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconData lightTreeDecorated = const IconDataLight(0xf7dc); - - /// Duotone Tree Decorated icon - /// - /// https://fontawesome.com/icons/duotone_tree-decorated?style=duotone - /// christmas, decorations, flora, holiday, lights, plant, xmas - static const IconDataDuotone duotoneTreeDecorated = const IconDataDuotone( - 0xf7dc, - secondary: const IconDataDuotone(0x10f7dc), - ); - - /// Regular Tree Large icon - /// - /// https://fontawesome.com/icons/tree-large?style=regular - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData treeLarge = const IconDataRegular(0xf7dd); - - /// Solid Tree Large icon - /// - /// https://fontawesome.com/icons/tree-large?style=solid - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTreeLarge = const IconDataSolid(0xf7dd); - - /// Light Tree Large icon - /// - /// https://fontawesome.com/icons/light_tree-large?style=light - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTreeLarge = const IconDataLight(0xf7dd); - - /// Duotone Tree Large icon - /// - /// https://fontawesome.com/icons/duotone_tree-large?style=duotone - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconDataDuotone duotoneTreeLarge = const IconDataDuotone( - 0xf7dd, - secondary: const IconDataDuotone(0x10f7dd), - ); - - /// Regular Palm Tree icon - /// - /// https://fontawesome.com/icons/tree-palm?style=regular - /// coconut, frond, tropical - static const IconData treePalm = const IconDataRegular(0xf82b); - - /// Solid Palm Tree icon - /// - /// https://fontawesome.com/icons/tree-palm?style=solid - /// coconut, frond, tropical - static const IconData solidTreePalm = const IconDataSolid(0xf82b); - - /// Light Palm Tree icon - /// - /// https://fontawesome.com/icons/light_tree-palm?style=light - /// coconut, frond, tropical - static const IconData lightTreePalm = const IconDataLight(0xf82b); - - /// Duotone Palm Tree icon - /// - /// https://fontawesome.com/icons/duotone_tree-palm?style=duotone - /// coconut, frond, tropical - static const IconDataDuotone duotoneTreePalm = const IconDataDuotone( - 0xf82b, - secondary: const IconDataDuotone(0x10f82b), - ); - - /// Regular Trees icon - /// - /// https://fontawesome.com/icons/trees?style=regular - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData trees = const IconDataRegular(0xf724); - - /// Solid Trees icon - /// - /// https://fontawesome.com/icons/trees?style=solid - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData solidTrees = const IconDataSolid(0xf724); - - /// Light Trees icon - /// - /// https://fontawesome.com/icons/light_trees?style=light - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconData lightTrees = const IconDataLight(0xf724); - - /// Duotone Trees icon - /// - /// https://fontawesome.com/icons/duotone_trees?style=duotone - /// bark, fall, flora, forest, nature, plant, seasonal - static const IconDataDuotone duotoneTrees = const IconDataDuotone( - 0xf724, - secondary: const IconDataDuotone(0x10f724), - ); - - /// Brands Trello icon - /// - /// https://fontawesome.com/icons/trello?style=brands - /// atlassian - static const IconData trello = const IconDataBrands(0xf181); - - /// Regular Triangle icon - /// - /// https://fontawesome.com/icons/triangle?style=regular - /// pyramid, shape - static const IconData triangle = const IconDataRegular(0xf2ec); - - /// Solid Triangle icon - /// - /// https://fontawesome.com/icons/triangle?style=solid - /// pyramid, shape - static const IconData solidTriangle = const IconDataSolid(0xf2ec); - - /// Light Triangle icon - /// - /// https://fontawesome.com/icons/light_triangle?style=light - /// pyramid, shape - static const IconData lightTriangle = const IconDataLight(0xf2ec); - - /// Duotone Triangle icon - /// - /// https://fontawesome.com/icons/duotone_triangle?style=duotone - /// pyramid, shape - static const IconDataDuotone duotoneTriangle = const IconDataDuotone( - 0xf2ec, - secondary: const IconDataDuotone(0x10f2ec), - ); - - /// Regular Musical Triangle icon - /// - /// https://fontawesome.com/icons/triangle-music?style=regular - /// ding, idiophone, instrument, music, percussion - static const IconData triangleMusic = const IconDataRegular(0xf8e2); - - /// Solid Musical Triangle icon - /// - /// https://fontawesome.com/icons/triangle-music?style=solid - /// ding, idiophone, instrument, music, percussion - static const IconData solidTriangleMusic = const IconDataSolid(0xf8e2); - - /// Light Musical Triangle icon - /// - /// https://fontawesome.com/icons/light_triangle-music?style=light - /// ding, idiophone, instrument, music, percussion - static const IconData lightTriangleMusic = const IconDataLight(0xf8e2); - - /// Duotone Musical Triangle icon - /// - /// https://fontawesome.com/icons/duotone_triangle-music?style=duotone - /// ding, idiophone, instrument, music, percussion - static const IconDataDuotone duotoneTriangleMusic = const IconDataDuotone( - 0xf8e2, - secondary: const IconDataDuotone(0x10f8e2), - ); - - /// Brands TripAdvisor icon - /// - /// https://fontawesome.com/icons/tripadvisor?style=brands - static const IconData tripadvisor = const IconDataBrands(0xf262); - - /// Regular trophy icon - /// - /// https://fontawesome.com/icons/trophy?style=regular - /// achievement, award, cup, game, winner - static const IconData trophy = const IconDataRegular(0xf091); - - /// Solid trophy icon - /// - /// https://fontawesome.com/icons/trophy?style=solid - /// achievement, award, cup, game, winner - static const IconData solidTrophy = const IconDataSolid(0xf091); - - /// Light trophy icon - /// - /// https://fontawesome.com/icons/light_trophy?style=light - /// achievement, award, cup, game, winner - static const IconData lightTrophy = const IconDataLight(0xf091); - - /// Duotone trophy icon - /// - /// https://fontawesome.com/icons/duotone_trophy?style=duotone - /// achievement, award, cup, game, winner - static const IconDataDuotone duotoneTrophy = const IconDataDuotone( - 0xf091, - secondary: const IconDataDuotone(0x10f091), - ); - - /// Regular Alternate Trophy icon - /// - /// https://fontawesome.com/icons/trophy-alt?style=regular - /// achievement, award, cup, game, star, winner - static const IconData trophyAlt = const IconDataRegular(0xf2eb); - - /// Solid Alternate Trophy icon - /// - /// https://fontawesome.com/icons/trophy-alt?style=solid - /// achievement, award, cup, game, star, winner - static const IconData solidTrophyAlt = const IconDataSolid(0xf2eb); - - /// Light Alternate Trophy icon - /// - /// https://fontawesome.com/icons/light_trophy-alt?style=light - /// achievement, award, cup, game, star, winner - static const IconData lightTrophyAlt = const IconDataLight(0xf2eb); - - /// Duotone Alternate Trophy icon - /// - /// https://fontawesome.com/icons/duotone_trophy-alt?style=duotone - /// achievement, award, cup, game, star, winner - static const IconDataDuotone duotoneTrophyAlt = const IconDataDuotone( - 0xf2eb, - secondary: const IconDataDuotone(0x10f2eb), - ); - - /// Regular truck icon - /// - /// https://fontawesome.com/icons/truck?style=regular - /// cargo, delivery, shipping, vehicle - static const IconData truck = const IconDataRegular(0xf0d1); - - /// Solid truck icon - /// - /// https://fontawesome.com/icons/truck?style=solid - /// cargo, delivery, shipping, vehicle - static const IconData solidTruck = const IconDataSolid(0xf0d1); - - /// Light truck icon - /// - /// https://fontawesome.com/icons/light_truck?style=light - /// cargo, delivery, shipping, vehicle - static const IconData lightTruck = const IconDataLight(0xf0d1); - - /// Duotone truck icon - /// - /// https://fontawesome.com/icons/duotone_truck?style=duotone - /// cargo, delivery, shipping, vehicle - static const IconDataDuotone duotoneTruck = const IconDataDuotone( - 0xf0d1, - secondary: const IconDataDuotone(0x10f0d1), - ); - - /// Regular Truck Container icon - /// - /// https://fontawesome.com/icons/truck-container?style=regular - /// cargo, delivery, shipping, vehicle - static const IconData truckContainer = const IconDataRegular(0xf4dc); - - /// Solid Truck Container icon - /// - /// https://fontawesome.com/icons/truck-container?style=solid - /// cargo, delivery, shipping, vehicle - static const IconData solidTruckContainer = const IconDataSolid(0xf4dc); - - /// Light Truck Container icon - /// - /// https://fontawesome.com/icons/light_truck-container?style=light - /// cargo, delivery, shipping, vehicle - static const IconData lightTruckContainer = const IconDataLight(0xf4dc); - - /// Duotone Truck Container icon - /// - /// https://fontawesome.com/icons/duotone_truck-container?style=duotone - /// cargo, delivery, shipping, vehicle - static const IconDataDuotone duotoneTruckContainer = const IconDataDuotone( - 0xf4dc, - secondary: const IconDataDuotone(0x10f4dc), - ); - - /// Regular Truck Couch icon - /// - /// https://fontawesome.com/icons/truck-couch?style=regular - /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData truckCouch = const IconDataRegular(0xf4dd); - - /// Solid Truck Couch icon - /// - /// https://fontawesome.com/icons/truck-couch?style=solid - /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData solidTruckCouch = const IconDataSolid(0xf4dd); - - /// Light Truck Couch icon - /// - /// https://fontawesome.com/icons/light_truck-couch?style=light - /// cargo, delivery, moving, rental, shipping, vehicle - static const IconData lightTruckCouch = const IconDataLight(0xf4dd); - - /// Duotone Truck Couch icon - /// - /// https://fontawesome.com/icons/duotone_truck-couch?style=duotone - /// cargo, delivery, moving, rental, shipping, vehicle - static const IconDataDuotone duotoneTruckCouch = const IconDataDuotone( - 0xf4dd, - secondary: const IconDataDuotone(0x10f4dd), - ); - - /// Regular Truck Loading icon - /// - /// https://fontawesome.com/icons/truck-loading?style=regular - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData truckLoading = const IconDataRegular(0xf4de); - - /// Solid Truck Loading icon - /// - /// https://fontawesome.com/icons/truck-loading?style=solid - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData solidTruckLoading = const IconDataSolid(0xf4de); - - /// Light Truck Loading icon - /// - /// https://fontawesome.com/icons/light_truck-loading?style=light - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData lightTruckLoading = const IconDataLight(0xf4de); - - /// Duotone Truck Loading icon - /// - /// https://fontawesome.com/icons/duotone_truck-loading?style=duotone - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconDataDuotone duotoneTruckLoading = const IconDataDuotone( - 0xf4de, - secondary: const IconDataDuotone(0x10f4de), - ); - - /// Regular Truck Monster icon - /// - /// https://fontawesome.com/icons/truck-monster?style=regular - /// offroad, vehicle, wheel - static const IconData truckMonster = const IconDataRegular(0xf63b); - - /// Solid Truck Monster icon - /// - /// https://fontawesome.com/icons/truck-monster?style=solid - /// offroad, vehicle, wheel - static const IconData solidTruckMonster = const IconDataSolid(0xf63b); - - /// Light Truck Monster icon - /// - /// https://fontawesome.com/icons/light_truck-monster?style=light - /// offroad, vehicle, wheel - static const IconData lightTruckMonster = const IconDataLight(0xf63b); - - /// Duotone Truck Monster icon - /// - /// https://fontawesome.com/icons/duotone_truck-monster?style=duotone - /// offroad, vehicle, wheel - static const IconDataDuotone duotoneTruckMonster = const IconDataDuotone( - 0xf63b, - secondary: const IconDataDuotone(0x10f63b), - ); - - /// Regular Truck Moving icon - /// - /// https://fontawesome.com/icons/truck-moving?style=regular - /// cargo, inventory, rental, vehicle - static const IconData truckMoving = const IconDataRegular(0xf4df); - - /// Solid Truck Moving icon - /// - /// https://fontawesome.com/icons/truck-moving?style=solid - /// cargo, inventory, rental, vehicle - static const IconData solidTruckMoving = const IconDataSolid(0xf4df); - - /// Light Truck Moving icon - /// - /// https://fontawesome.com/icons/light_truck-moving?style=light - /// cargo, inventory, rental, vehicle - static const IconData lightTruckMoving = const IconDataLight(0xf4df); - - /// Duotone Truck Moving icon - /// - /// https://fontawesome.com/icons/duotone_truck-moving?style=duotone - /// cargo, inventory, rental, vehicle - static const IconDataDuotone duotoneTruckMoving = const IconDataDuotone( - 0xf4df, - secondary: const IconDataDuotone(0x10f4df), - ); - - /// Regular Truck Side icon - /// - /// https://fontawesome.com/icons/truck-pickup?style=regular - /// cargo, vehicle - static const IconData truckPickup = const IconDataRegular(0xf63c); - - /// Solid Truck Side icon - /// - /// https://fontawesome.com/icons/truck-pickup?style=solid - /// cargo, vehicle - static const IconData solidTruckPickup = const IconDataSolid(0xf63c); - - /// Light Truck Side icon - /// - /// https://fontawesome.com/icons/light_truck-pickup?style=light - /// cargo, vehicle - static const IconData lightTruckPickup = const IconDataLight(0xf63c); - - /// Duotone Truck Side icon - /// - /// https://fontawesome.com/icons/duotone_truck-pickup?style=duotone - /// cargo, vehicle - static const IconDataDuotone duotoneTruckPickup = const IconDataDuotone( - 0xf63c, - secondary: const IconDataDuotone(0x10f63c), - ); - - /// Regular Truck Plow icon - /// - /// https://fontawesome.com/icons/truck-plow?style=regular - /// clean up, cold, seasonal, snow, winter - static const IconData truckPlow = const IconDataRegular(0xf7de); - - /// Solid Truck Plow icon - /// - /// https://fontawesome.com/icons/truck-plow?style=solid - /// clean up, cold, seasonal, snow, winter - static const IconData solidTruckPlow = const IconDataSolid(0xf7de); - - /// Light Truck Plow icon - /// - /// https://fontawesome.com/icons/light_truck-plow?style=light - /// clean up, cold, seasonal, snow, winter - static const IconData lightTruckPlow = const IconDataLight(0xf7de); - - /// Duotone Truck Plow icon - /// - /// https://fontawesome.com/icons/duotone_truck-plow?style=duotone - /// clean up, cold, seasonal, snow, winter - static const IconDataDuotone duotoneTruckPlow = const IconDataDuotone( - 0xf7de, - secondary: const IconDataDuotone(0x10f7de), - ); - - /// Regular Truck Ramp icon - /// - /// https://fontawesome.com/icons/truck-ramp?style=regular - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData truckRamp = const IconDataRegular(0xf4e0); - - /// Solid Truck Ramp icon - /// - /// https://fontawesome.com/icons/truck-ramp?style=solid - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData solidTruckRamp = const IconDataSolid(0xf4e0); - - /// Light Truck Ramp icon - /// - /// https://fontawesome.com/icons/light_truck-ramp?style=light - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconData lightTruckRamp = const IconDataLight(0xf4e0); - - /// Duotone Truck Ramp icon - /// - /// https://fontawesome.com/icons/duotone_truck-ramp?style=duotone - /// box, cargo, delivery, inventory, moving, rental, vehicle - static const IconDataDuotone duotoneTruckRamp = const IconDataDuotone( - 0xf4e0, - secondary: const IconDataDuotone(0x10f4e0), - ); - - /// Regular Trumpet icon - /// - /// https://fontawesome.com/icons/trumpet?style=regular - /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra - static const IconData trumpet = const IconDataRegular(0xf8e3); - - /// Solid Trumpet icon - /// - /// https://fontawesome.com/icons/trumpet?style=solid - /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra - static const IconData solidTrumpet = const IconDataSolid(0xf8e3); - - /// Light Trumpet icon - /// - /// https://fontawesome.com/icons/light_trumpet?style=light - /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra - static const IconData lightTrumpet = const IconDataLight(0xf8e3); - - /// Duotone Trumpet icon - /// - /// https://fontawesome.com/icons/duotone_trumpet?style=duotone - /// brass, bugle, classical, cornet, instrument, jazz, music, orchestra - static const IconDataDuotone duotoneTrumpet = const IconDataDuotone( - 0xf8e3, - secondary: const IconDataDuotone(0x10f8e3), - ); - - /// Regular T-Shirt icon - /// - /// https://fontawesome.com/icons/tshirt?style=regular - /// clothing, fashion, garment, shirt - static const IconData tshirt = const IconDataRegular(0xf553); - - /// Solid T-Shirt icon - /// - /// https://fontawesome.com/icons/tshirt?style=solid - /// clothing, fashion, garment, shirt - static const IconData solidTshirt = const IconDataSolid(0xf553); - - /// Light T-Shirt icon - /// - /// https://fontawesome.com/icons/light_tshirt?style=light - /// clothing, fashion, garment, shirt - static const IconData lightTshirt = const IconDataLight(0xf553); - - /// Duotone T-Shirt icon - /// - /// https://fontawesome.com/icons/duotone_tshirt?style=duotone - /// clothing, fashion, garment, shirt - static const IconDataDuotone duotoneTshirt = const IconDataDuotone( - 0xf553, - secondary: const IconDataDuotone(0x10f553), - ); - - /// Regular TTY icon - /// - /// https://fontawesome.com/icons/tty?style=regular - /// communication, deaf, telephone, teletypewriter, text - static const IconData tty = const IconDataRegular(0xf1e4); - - /// Solid TTY icon - /// - /// https://fontawesome.com/icons/tty?style=solid - /// communication, deaf, telephone, teletypewriter, text - static const IconData solidTty = const IconDataSolid(0xf1e4); - - /// Light TTY icon - /// - /// https://fontawesome.com/icons/light_tty?style=light - /// communication, deaf, telephone, teletypewriter, text - static const IconData lightTty = const IconDataLight(0xf1e4); - - /// Duotone TTY icon - /// - /// https://fontawesome.com/icons/duotone_tty?style=duotone - /// communication, deaf, telephone, teletypewriter, text - static const IconDataDuotone duotoneTty = const IconDataDuotone( - 0xf1e4, - secondary: const IconDataDuotone(0x10f1e4), - ); - - /// Brands Tumblr icon - /// - /// https://fontawesome.com/icons/tumblr?style=brands - static const IconData tumblr = const IconDataBrands(0xf173); - - /// Brands Tumblr Square icon - /// - /// https://fontawesome.com/icons/tumblr-square?style=brands - static const IconData tumblrSquare = const IconDataBrands(0xf174); - - /// Regular Turkey icon - /// - /// https://fontawesome.com/icons/turkey?style=regular - /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData turkey = const IconDataRegular(0xf725); - - /// Solid Turkey icon - /// - /// https://fontawesome.com/icons/turkey?style=solid - /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData solidTurkey = const IconDataSolid(0xf725); - - /// Light Turkey icon - /// - /// https://fontawesome.com/icons/light_turkey?style=light - /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconData lightTurkey = const IconDataLight(0xf725); - - /// Duotone Turkey icon - /// - /// https://fontawesome.com/icons/duotone_turkey?style=duotone - /// bird, chicken, meal, meat, poultry, seasonal, thanksgiving - static const IconDataDuotone duotoneTurkey = const IconDataDuotone( - 0xf725, - secondary: const IconDataDuotone(0x10f725), - ); - - /// Regular Turntable icon - /// - /// https://fontawesome.com/icons/turntable?style=regular - /// album, music, phonograph, record, record player, vinyl - static const IconData turntable = const IconDataRegular(0xf8e4); - - /// Solid Turntable icon - /// - /// https://fontawesome.com/icons/turntable?style=solid - /// album, music, phonograph, record, record player, vinyl - static const IconData solidTurntable = const IconDataSolid(0xf8e4); - - /// Light Turntable icon - /// - /// https://fontawesome.com/icons/light_turntable?style=light - /// album, music, phonograph, record, record player, vinyl - static const IconData lightTurntable = const IconDataLight(0xf8e4); - - /// Duotone Turntable icon - /// - /// https://fontawesome.com/icons/duotone_turntable?style=duotone - /// album, music, phonograph, record, record player, vinyl - static const IconDataDuotone duotoneTurntable = const IconDataDuotone( - 0xf8e4, - secondary: const IconDataDuotone(0x10f8e4), - ); - - /// Regular Turtle icon - /// - /// https://fontawesome.com/icons/turtle?style=regular - /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow - static const IconData turtle = const IconDataRegular(0xf726); - - /// Solid Turtle icon - /// - /// https://fontawesome.com/icons/turtle?style=solid - /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow - static const IconData solidTurtle = const IconDataSolid(0xf726); - - /// Light Turtle icon - /// - /// https://fontawesome.com/icons/light_turtle?style=light - /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow - static const IconData lightTurtle = const IconDataLight(0xf726); - - /// Duotone Turtle icon - /// - /// https://fontawesome.com/icons/duotone_turtle?style=duotone - /// cowabunga, donatello, fauna, leonardo, michaelangelo, raphael, reptile, shell, slow - static const IconDataDuotone duotoneTurtle = const IconDataDuotone( - 0xf726, - secondary: const IconDataDuotone(0x10f726), - ); - - /// Regular Television icon - /// - /// https://fontawesome.com/icons/tv?style=regular - /// computer, display, monitor, television - static const IconData tv = const IconDataRegular(0xf26c); - - /// Solid Television icon - /// - /// https://fontawesome.com/icons/tv?style=solid - /// computer, display, monitor, television - static const IconData solidTv = const IconDataSolid(0xf26c); - - /// Light Television icon - /// - /// https://fontawesome.com/icons/light_tv?style=light - /// computer, display, monitor, television - static const IconData lightTv = const IconDataLight(0xf26c); - - /// Duotone Television icon - /// - /// https://fontawesome.com/icons/duotone_tv?style=duotone - /// computer, display, monitor, television - static const IconDataDuotone duotoneTv = const IconDataDuotone( - 0xf26c, - secondary: const IconDataDuotone(0x10f26c), - ); - - /// Regular Alternate Television icon - /// - /// https://fontawesome.com/icons/tv-alt?style=regular - /// computer, display, monitor, television - static const IconData tvAlt = const IconDataRegular(0xf8e5); - - /// Solid Alternate Television icon - /// - /// https://fontawesome.com/icons/tv-alt?style=solid - /// computer, display, monitor, television - static const IconData solidTvAlt = const IconDataSolid(0xf8e5); - - /// Light Alternate Television icon - /// - /// https://fontawesome.com/icons/light_tv-alt?style=light - /// computer, display, monitor, television - static const IconData lightTvAlt = const IconDataLight(0xf8e5); - - /// Duotone Alternate Television icon - /// - /// https://fontawesome.com/icons/duotone_tv-alt?style=duotone - /// computer, display, monitor, television - static const IconDataDuotone duotoneTvAlt = const IconDataDuotone( - 0xf8e5, - secondary: const IconDataDuotone(0x10f8e5), - ); - - /// Regular TV Music icon - /// - /// https://fontawesome.com/icons/tv-music?style=regular - /// audio, mtv, music, music video, sound, television, vh1 - static const IconData tvMusic = const IconDataRegular(0xf8e6); - - /// Solid TV Music icon - /// - /// https://fontawesome.com/icons/tv-music?style=solid - /// audio, mtv, music, music video, sound, television, vh1 - static const IconData solidTvMusic = const IconDataSolid(0xf8e6); - - /// Light TV Music icon - /// - /// https://fontawesome.com/icons/light_tv-music?style=light - /// audio, mtv, music, music video, sound, television, vh1 - static const IconData lightTvMusic = const IconDataLight(0xf8e6); - - /// Duotone TV Music icon - /// - /// https://fontawesome.com/icons/duotone_tv-music?style=duotone - /// audio, mtv, music, music video, sound, television, vh1 - static const IconDataDuotone duotoneTvMusic = const IconDataDuotone( - 0xf8e6, - secondary: const IconDataDuotone(0x10f8e6), - ); - - /// Regular Retro Televison icon - /// - /// https://fontawesome.com/icons/tv-retro?style=regular - /// computer, display, monitor, television - static const IconData tvRetro = const IconDataRegular(0xf401); - - /// Solid Retro Televison icon - /// - /// https://fontawesome.com/icons/tv-retro?style=solid - /// computer, display, monitor, television - static const IconData solidTvRetro = const IconDataSolid(0xf401); - - /// Light Retro Televison icon - /// - /// https://fontawesome.com/icons/light_tv-retro?style=light - /// computer, display, monitor, television - static const IconData lightTvRetro = const IconDataLight(0xf401); - - /// Duotone Retro Televison icon - /// - /// https://fontawesome.com/icons/duotone_tv-retro?style=duotone - /// computer, display, monitor, television - static const IconDataDuotone duotoneTvRetro = const IconDataDuotone( - 0xf401, - secondary: const IconDataDuotone(0x10f401), - ); - - /// Brands Twitch icon - /// - /// https://fontawesome.com/icons/twitch?style=brands - static const IconData twitch = const IconDataBrands(0xf1e8); - - /// Brands Twitter icon - /// - /// https://fontawesome.com/icons/twitter?style=brands - /// social network, tweet - static const IconData twitter = const IconDataBrands(0xf099); - - /// Brands Twitter Square icon - /// - /// https://fontawesome.com/icons/twitter-square?style=brands - /// social network, tweet - static const IconData twitterSquare = const IconDataBrands(0xf081); - - /// Regular Typewriter icon - /// - /// https://fontawesome.com/icons/typewriter?style=regular - /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage - static const IconData typewriter = const IconDataRegular(0xf8e7); - - /// Solid Typewriter icon - /// - /// https://fontawesome.com/icons/typewriter?style=solid - /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage - static const IconData solidTypewriter = const IconDataSolid(0xf8e7); - - /// Light Typewriter icon - /// - /// https://fontawesome.com/icons/light_typewriter?style=light - /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage - static const IconData lightTypewriter = const IconDataLight(0xf8e7); - - /// Duotone Typewriter icon - /// - /// https://fontawesome.com/icons/duotone_typewriter?style=duotone - /// keyboard, letterpress, movable type, newspaper, novel, retro, typing, vintage - static const IconDataDuotone duotoneTypewriter = const IconDataDuotone( - 0xf8e7, - secondary: const IconDataDuotone(0x10f8e7), - ); - - /// Brands Typo3 icon - /// - /// https://fontawesome.com/icons/typo3?style=brands - static const IconData typo3 = const IconDataBrands(0xf42b); - - /// Brands Uber icon - /// - /// https://fontawesome.com/icons/uber?style=brands - static const IconData uber = const IconDataBrands(0xf402); - - /// Brands Ubuntu icon - /// - /// https://fontawesome.com/icons/ubuntu?style=brands - /// linux, operating system, os - static const IconData ubuntu = const IconDataBrands(0xf7df); - - /// Regular U.F.O. icon - /// - /// https://fontawesome.com/icons/ufo?style=regular - /// abduct, alien, extraterrestrial, flying saucer, space, spacecraft, t-craft, travel, unidentified flying object - static const IconData ufo = const IconDataRegular(0xe047); - - /// Solid U.F.O. icon - /// - /// https://fontawesome.com/icons/ufo?style=solid - /// abduct, alien, extraterrestrial, flying saucer, space, spacecraft, t-craft, travel, unidentified flying object - static const IconData solidUfo = const IconDataSolid(0xe047); - - /// Light U.F.O. icon - /// - /// https://fontawesome.com/icons/light_ufo?style=light - /// abduct, alien, extraterrestrial, flying saucer, space, spacecraft, t-craft, travel, unidentified flying object - static const IconData lightUfo = const IconDataLight(0xe047); - - /// Duotone U.F.O. icon - /// - /// https://fontawesome.com/icons/duotone_ufo?style=duotone - /// abduct, alien, extraterrestrial, flying saucer, space, spacecraft, t-craft, travel, unidentified flying object - static const IconDataDuotone duotoneUfo = const IconDataDuotone( - 0xe047, - secondary: const IconDataDuotone(0x10e047), - ); - - /// Regular U.F.O. with Beam icon - /// - /// https://fontawesome.com/icons/ufo-beam?style=regular - /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, t-craft, tractor beam, travel, unidentified flying object - static const IconData ufoBeam = const IconDataRegular(0xe048); - - /// Solid U.F.O. with Beam icon - /// - /// https://fontawesome.com/icons/ufo-beam?style=solid - /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, t-craft, tractor beam, travel, unidentified flying object - static const IconData solidUfoBeam = const IconDataSolid(0xe048); - - /// Light U.F.O. with Beam icon - /// - /// https://fontawesome.com/icons/light_ufo-beam?style=light - /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, t-craft, tractor beam, travel, unidentified flying object - static const IconData lightUfoBeam = const IconDataLight(0xe048); - - /// Duotone U.F.O. with Beam icon - /// - /// https://fontawesome.com/icons/duotone_ufo-beam?style=duotone - /// abduct, alien, extraterrestrial, flying saucer, probe, space, spacecraft, t-craft, tractor beam, travel, unidentified flying object - static const IconDataDuotone duotoneUfoBeam = const IconDataDuotone( - 0xe048, - secondary: const IconDataDuotone(0x10e048), - ); - - /// Brands UIkit icon - /// - /// https://fontawesome.com/icons/uikit?style=brands - static const IconData uikit = const IconDataBrands(0xf403); - - /// Brands Umbraco icon - /// - /// https://fontawesome.com/icons/umbraco?style=brands - static const IconData umbraco = const IconDataBrands(0xf8e8); - - /// Regular Umbrella icon - /// - /// https://fontawesome.com/icons/umbrella?style=regular - /// protection, rain, storm, wet - static const IconData umbrella = const IconDataRegular(0xf0e9); - - /// Solid Umbrella icon - /// - /// https://fontawesome.com/icons/umbrella?style=solid - /// protection, rain, storm, wet - static const IconData solidUmbrella = const IconDataSolid(0xf0e9); - - /// Light Umbrella icon - /// - /// https://fontawesome.com/icons/light_umbrella?style=light - /// protection, rain, storm, wet - static const IconData lightUmbrella = const IconDataLight(0xf0e9); - - /// Duotone Umbrella icon - /// - /// https://fontawesome.com/icons/duotone_umbrella?style=duotone - /// protection, rain, storm, wet - static const IconDataDuotone duotoneUmbrella = const IconDataDuotone( - 0xf0e9, - secondary: const IconDataDuotone(0x10f0e9), - ); - - /// Regular Umbrella Beach icon - /// - /// https://fontawesome.com/icons/umbrella-beach?style=regular - /// protection, recreation, sand, shade, summer, sun - static const IconData umbrellaBeach = const IconDataRegular(0xf5ca); - - /// Solid Umbrella Beach icon - /// - /// https://fontawesome.com/icons/umbrella-beach?style=solid - /// protection, recreation, sand, shade, summer, sun - static const IconData solidUmbrellaBeach = const IconDataSolid(0xf5ca); - - /// Light Umbrella Beach icon - /// - /// https://fontawesome.com/icons/light_umbrella-beach?style=light - /// protection, recreation, sand, shade, summer, sun - static const IconData lightUmbrellaBeach = const IconDataLight(0xf5ca); - - /// Duotone Umbrella Beach icon - /// - /// https://fontawesome.com/icons/duotone_umbrella-beach?style=duotone - /// protection, recreation, sand, shade, summer, sun - static const IconDataDuotone duotoneUmbrellaBeach = const IconDataDuotone( - 0xf5ca, - secondary: const IconDataDuotone(0x10f5ca), - ); - - /// Brands Uncharted Software icon - /// - /// https://fontawesome.com/icons/uncharted?style=brands - static const IconData uncharted = const IconDataBrands(0xe084); - - /// Regular Underline icon - /// - /// https://fontawesome.com/icons/underline?style=regular - /// edit, emphasis, format, text, writing - static const IconData underline = const IconDataRegular(0xf0cd); - - /// Solid Underline icon - /// - /// https://fontawesome.com/icons/underline?style=solid - /// edit, emphasis, format, text, writing - static const IconData solidUnderline = const IconDataSolid(0xf0cd); - - /// Light Underline icon - /// - /// https://fontawesome.com/icons/light_underline?style=light - /// edit, emphasis, format, text, writing - static const IconData lightUnderline = const IconDataLight(0xf0cd); - - /// Duotone Underline icon - /// - /// https://fontawesome.com/icons/duotone_underline?style=duotone - /// edit, emphasis, format, text, writing - static const IconDataDuotone duotoneUnderline = const IconDataDuotone( - 0xf0cd, - secondary: const IconDataDuotone(0x10f0cd), - ); - - /// Regular Undo icon - /// - /// https://fontawesome.com/icons/undo?style=regular - /// back, control z, exchange, oops, return, rotate, swap - static const IconData undo = const IconDataRegular(0xf0e2); - - /// Solid Undo icon - /// - /// https://fontawesome.com/icons/undo?style=solid - /// back, control z, exchange, oops, return, rotate, swap - static const IconData solidUndo = const IconDataSolid(0xf0e2); - - /// Light Undo icon - /// - /// https://fontawesome.com/icons/light_undo?style=light - /// back, control z, exchange, oops, return, rotate, swap - static const IconData lightUndo = const IconDataLight(0xf0e2); - - /// Duotone Undo icon - /// - /// https://fontawesome.com/icons/duotone_undo?style=duotone - /// back, control z, exchange, oops, return, rotate, swap - static const IconDataDuotone duotoneUndo = const IconDataDuotone( - 0xf0e2, - secondary: const IconDataDuotone(0x10f0e2), - ); - - /// Regular Alternate Undo icon - /// - /// https://fontawesome.com/icons/undo-alt?style=regular - /// back, control z, exchange, oops, return, swap - static const IconData undoAlt = const IconDataRegular(0xf2ea); - - /// Solid Alternate Undo icon - /// - /// https://fontawesome.com/icons/undo-alt?style=solid - /// back, control z, exchange, oops, return, swap - static const IconData solidUndoAlt = const IconDataSolid(0xf2ea); - - /// Light Alternate Undo icon - /// - /// https://fontawesome.com/icons/light_undo-alt?style=light - /// back, control z, exchange, oops, return, swap - static const IconData lightUndoAlt = const IconDataLight(0xf2ea); - - /// Duotone Alternate Undo icon - /// - /// https://fontawesome.com/icons/duotone_undo-alt?style=duotone - /// back, control z, exchange, oops, return, swap - static const IconDataDuotone duotoneUndoAlt = const IconDataDuotone( - 0xf2ea, - secondary: const IconDataDuotone(0x10f2ea), - ); - - /// Regular Unicorn icon - /// - /// https://fontawesome.com/icons/unicorn?style=regular - /// fantasy, fauna, horn, horse - static const IconData unicorn = const IconDataRegular(0xf727); - - /// Solid Unicorn icon - /// - /// https://fontawesome.com/icons/unicorn?style=solid - /// fantasy, fauna, horn, horse - static const IconData solidUnicorn = const IconDataSolid(0xf727); - - /// Light Unicorn icon - /// - /// https://fontawesome.com/icons/light_unicorn?style=light - /// fantasy, fauna, horn, horse - static const IconData lightUnicorn = const IconDataLight(0xf727); - - /// Duotone Unicorn icon - /// - /// https://fontawesome.com/icons/duotone_unicorn?style=duotone - /// fantasy, fauna, horn, horse - static const IconDataDuotone duotoneUnicorn = const IconDataDuotone( - 0xf727, - secondary: const IconDataDuotone(0x10f727), - ); - - /// Regular Union icon - /// - /// https://fontawesome.com/icons/union?style=regular - /// calculus, equation, function, math - static const IconData union = const IconDataRegular(0xf6a2); - - /// Solid Union icon - /// - /// https://fontawesome.com/icons/union?style=solid - /// calculus, equation, function, math - static const IconData solidUnion = const IconDataSolid(0xf6a2); - - /// Light Union icon - /// - /// https://fontawesome.com/icons/light_union?style=light - /// calculus, equation, function, math - static const IconData lightUnion = const IconDataLight(0xf6a2); - - /// Duotone Union icon - /// - /// https://fontawesome.com/icons/duotone_union?style=duotone - /// calculus, equation, function, math - static const IconDataDuotone duotoneUnion = const IconDataDuotone( - 0xf6a2, - secondary: const IconDataDuotone(0x10f6a2), - ); - - /// Brands Uniregistry icon - /// - /// https://fontawesome.com/icons/uniregistry?style=brands - static const IconData uniregistry = const IconDataBrands(0xf404); - - /// Brands Unity 3D icon - /// - /// https://fontawesome.com/icons/unity?style=brands - static const IconData unity = const IconDataBrands(0xe049); - - /// Regular Universal Access icon - /// - /// https://fontawesome.com/icons/universal-access?style=regular - /// accessibility, hearing, person, seeing, visual impairment - static const IconData universalAccess = const IconDataRegular(0xf29a); - - /// Solid Universal Access icon - /// - /// https://fontawesome.com/icons/universal-access?style=solid - /// accessibility, hearing, person, seeing, visual impairment - static const IconData solidUniversalAccess = const IconDataSolid(0xf29a); - - /// Light Universal Access icon - /// - /// https://fontawesome.com/icons/light_universal-access?style=light - /// accessibility, hearing, person, seeing, visual impairment - static const IconData lightUniversalAccess = const IconDataLight(0xf29a); - - /// Duotone Universal Access icon - /// - /// https://fontawesome.com/icons/duotone_universal-access?style=duotone - /// accessibility, hearing, person, seeing, visual impairment - static const IconDataDuotone duotoneUniversalAccess = const IconDataDuotone( - 0xf29a, - secondary: const IconDataDuotone(0x10f29a), - ); - - /// Regular University icon - /// - /// https://fontawesome.com/icons/university?style=regular - /// bank, building, college, higher education - students, institution - static const IconData university = const IconDataRegular(0xf19c); - - /// Solid University icon - /// - /// https://fontawesome.com/icons/university?style=solid - /// bank, building, college, higher education - students, institution - static const IconData solidUniversity = const IconDataSolid(0xf19c); - - /// Light University icon - /// - /// https://fontawesome.com/icons/light_university?style=light - /// bank, building, college, higher education - students, institution - static const IconData lightUniversity = const IconDataLight(0xf19c); - - /// Duotone University icon - /// - /// https://fontawesome.com/icons/duotone_university?style=duotone - /// bank, building, college, higher education - students, institution - static const IconDataDuotone duotoneUniversity = const IconDataDuotone( - 0xf19c, - secondary: const IconDataDuotone(0x10f19c), - ); - - /// Regular unlink icon - /// - /// https://fontawesome.com/icons/unlink?style=regular - /// attachment, chain, chain-broken, remove - static const IconData unlink = const IconDataRegular(0xf127); - - /// Solid unlink icon - /// - /// https://fontawesome.com/icons/unlink?style=solid - /// attachment, chain, chain-broken, remove - static const IconData solidUnlink = const IconDataSolid(0xf127); - - /// Light unlink icon - /// - /// https://fontawesome.com/icons/light_unlink?style=light - /// attachment, chain, chain-broken, remove - static const IconData lightUnlink = const IconDataLight(0xf127); - - /// Duotone unlink icon - /// - /// https://fontawesome.com/icons/duotone_unlink?style=duotone - /// attachment, chain, chain-broken, remove - static const IconDataDuotone duotoneUnlink = const IconDataDuotone( - 0xf127, - secondary: const IconDataDuotone(0x10f127), - ); - - /// Regular unlock icon - /// - /// https://fontawesome.com/icons/unlock?style=regular - /// admin, lock, password, private, protect - static const IconData unlock = const IconDataRegular(0xf09c); - - /// Solid unlock icon - /// - /// https://fontawesome.com/icons/unlock?style=solid - /// admin, lock, password, private, protect - static const IconData solidUnlock = const IconDataSolid(0xf09c); - - /// Light unlock icon - /// - /// https://fontawesome.com/icons/light_unlock?style=light - /// admin, lock, password, private, protect - static const IconData lightUnlock = const IconDataLight(0xf09c); - - /// Duotone unlock icon - /// - /// https://fontawesome.com/icons/duotone_unlock?style=duotone - /// admin, lock, password, private, protect - static const IconDataDuotone duotoneUnlock = const IconDataDuotone( - 0xf09c, - secondary: const IconDataDuotone(0x10f09c), - ); - - /// Regular Alternate Unlock icon - /// - /// https://fontawesome.com/icons/unlock-alt?style=regular - /// admin, lock, password, private, protect - static const IconData unlockAlt = const IconDataRegular(0xf13e); - - /// Solid Alternate Unlock icon - /// - /// https://fontawesome.com/icons/unlock-alt?style=solid - /// admin, lock, password, private, protect - static const IconData solidUnlockAlt = const IconDataSolid(0xf13e); - - /// Light Alternate Unlock icon - /// - /// https://fontawesome.com/icons/light_unlock-alt?style=light - /// admin, lock, password, private, protect - static const IconData lightUnlockAlt = const IconDataLight(0xf13e); - - /// Duotone Alternate Unlock icon - /// - /// https://fontawesome.com/icons/duotone_unlock-alt?style=duotone - /// admin, lock, password, private, protect - static const IconDataDuotone duotoneUnlockAlt = const IconDataDuotone( - 0xf13e, - secondary: const IconDataDuotone(0x10f13e), - ); - - /// Brands Unsplash icon - /// - /// https://fontawesome.com/icons/unsplash?style=brands - static const IconData unsplash = const IconDataBrands(0xe07c); - - /// Brands Untappd icon - /// - /// https://fontawesome.com/icons/untappd?style=brands - static const IconData untappd = const IconDataBrands(0xf405); - - /// Regular Upload icon - /// - /// https://fontawesome.com/icons/upload?style=regular - /// hard drive, import, publish - static const IconData upload = const IconDataRegular(0xf093); - - /// Solid Upload icon - /// - /// https://fontawesome.com/icons/upload?style=solid - /// hard drive, import, publish - static const IconData solidUpload = const IconDataSolid(0xf093); - - /// Light Upload icon - /// - /// https://fontawesome.com/icons/light_upload?style=light - /// hard drive, import, publish - static const IconData lightUpload = const IconDataLight(0xf093); - - /// Duotone Upload icon - /// - /// https://fontawesome.com/icons/duotone_upload?style=duotone - /// hard drive, import, publish - static const IconDataDuotone duotoneUpload = const IconDataDuotone( - 0xf093, - secondary: const IconDataDuotone(0x10f093), - ); - - /// Brands UPS icon - /// - /// https://fontawesome.com/icons/ups?style=brands - /// United Parcel Service, package, shipping - static const IconData ups = const IconDataBrands(0xf7e0); - - /// Brands USB icon - /// - /// https://fontawesome.com/icons/usb?style=brands - static const IconData usb = const IconDataBrands(0xf287); - - /// Regular USB Drive icon - /// - /// https://fontawesome.com/icons/usb-drive?style=regular - /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData usbDrive = const IconDataRegular(0xf8e9); - - /// Solid USB Drive icon - /// - /// https://fontawesome.com/icons/usb-drive?style=solid - /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData solidUsbDrive = const IconDataSolid(0xf8e9); - - /// Light USB Drive icon - /// - /// https://fontawesome.com/icons/light_usb-drive?style=light - /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconData lightUsbDrive = const IconDataLight(0xf8e9); - - /// Duotone USB Drive icon - /// - /// https://fontawesome.com/icons/duotone_usb-drive?style=duotone - /// access codes, device, flashdrive, goober, ssd, storage, thumbdrive - static const IconDataDuotone duotoneUsbDrive = const IconDataDuotone( - 0xf8e9, - secondary: const IconDataDuotone(0x10f8e9), - ); - - /// Regular US Dollar Circle icon - /// - /// https://fontawesome.com/icons/usd-circle?style=regular - /// $, currency, dollar-sign, money, price, usd - static const IconData usdCircle = const IconDataRegular(0xf2e8); - - /// Solid US Dollar Circle icon - /// - /// https://fontawesome.com/icons/usd-circle?style=solid - /// $, currency, dollar-sign, money, price, usd - static const IconData solidUsdCircle = const IconDataSolid(0xf2e8); - - /// Light US Dollar Circle icon - /// - /// https://fontawesome.com/icons/light_usd-circle?style=light - /// $, currency, dollar-sign, money, price, usd - static const IconData lightUsdCircle = const IconDataLight(0xf2e8); - - /// Duotone US Dollar Circle icon - /// - /// https://fontawesome.com/icons/duotone_usd-circle?style=duotone - /// $, currency, dollar-sign, money, price, usd - static const IconDataDuotone duotoneUsdCircle = const IconDataDuotone( - 0xf2e8, - secondary: const IconDataDuotone(0x10f2e8), - ); - - /// Regular US Dollar Square icon - /// - /// https://fontawesome.com/icons/usd-square?style=regular - /// $, dollar-sign, money, price, usd - static const IconData usdSquare = const IconDataRegular(0xf2e9); - - /// Solid US Dollar Square icon - /// - /// https://fontawesome.com/icons/usd-square?style=solid - /// $, dollar-sign, money, price, usd - static const IconData solidUsdSquare = const IconDataSolid(0xf2e9); - - /// Light US Dollar Square icon - /// - /// https://fontawesome.com/icons/light_usd-square?style=light - /// $, dollar-sign, money, price, usd - static const IconData lightUsdSquare = const IconDataLight(0xf2e9); - - /// Duotone US Dollar Square icon - /// - /// https://fontawesome.com/icons/duotone_usd-square?style=duotone - /// $, dollar-sign, money, price, usd - static const IconDataDuotone duotoneUsdSquare = const IconDataDuotone( - 0xf2e9, - secondary: const IconDataDuotone(0x10f2e9), - ); - - /// Regular User icon - /// - /// https://fontawesome.com/icons/user?style=regular - /// account, avatar, head, human, man, person, profile - static const IconData user = const IconDataRegular(0xf007); - - /// Solid User icon - /// - /// https://fontawesome.com/icons/user?style=solid - /// account, avatar, head, human, man, person, profile - static const IconData solidUser = const IconDataSolid(0xf007); - - /// Light User icon - /// - /// https://fontawesome.com/icons/light_user?style=light - /// account, avatar, head, human, man, person, profile - static const IconData lightUser = const IconDataLight(0xf007); - - /// Duotone User icon - /// - /// https://fontawesome.com/icons/duotone_user?style=duotone - /// account, avatar, head, human, man, person, profile - static const IconDataDuotone duotoneUser = const IconDataDuotone( - 0xf007, - secondary: const IconDataDuotone(0x10f007), - ); - - /// Regular User Alien icon - /// - /// https://fontawesome.com/icons/user-alien?style=regular - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData userAlien = const IconDataRegular(0xe04a); - - /// Solid User Alien icon - /// - /// https://fontawesome.com/icons/user-alien?style=solid - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData solidUserAlien = const IconDataSolid(0xe04a); - - /// Light User Alien icon - /// - /// https://fontawesome.com/icons/light_user-alien?style=light - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconData lightUserAlien = const IconDataLight(0xe04a); - - /// Duotone User Alien icon - /// - /// https://fontawesome.com/icons/duotone_user-alien?style=duotone - /// ET, extraterrestrial, humanoid, monster, space, strange, ufo - static const IconDataDuotone duotoneUserAlien = const IconDataDuotone( - 0xe04a, - secondary: const IconDataDuotone(0x10e04a), - ); - - /// Regular Alternate User icon - /// - /// https://fontawesome.com/icons/user-alt?style=regular - /// account, avatar, head, human, man, person, profile - static const IconData userAlt = const IconDataRegular(0xf406); - - /// Solid Alternate User icon - /// - /// https://fontawesome.com/icons/user-alt?style=solid - /// account, avatar, head, human, man, person, profile - static const IconData solidUserAlt = const IconDataSolid(0xf406); - - /// Light Alternate User icon - /// - /// https://fontawesome.com/icons/light_user-alt?style=light - /// account, avatar, head, human, man, person, profile - static const IconData lightUserAlt = const IconDataLight(0xf406); - - /// Duotone Alternate User icon - /// - /// https://fontawesome.com/icons/duotone_user-alt?style=duotone - /// account, avatar, head, human, man, person, profile - static const IconDataDuotone duotoneUserAlt = const IconDataDuotone( - 0xf406, - secondary: const IconDataDuotone(0x10f406), - ); - - /// Regular Alternate User Slash icon - /// - /// https://fontawesome.com/icons/user-alt-slash?style=regular - /// account, avatar, head, human, man, person, profile - static const IconData userAltSlash = const IconDataRegular(0xf4fa); - - /// Solid Alternate User Slash icon - /// - /// https://fontawesome.com/icons/user-alt-slash?style=solid - /// account, avatar, head, human, man, person, profile - static const IconData solidUserAltSlash = const IconDataSolid(0xf4fa); - - /// Light Alternate User Slash icon - /// - /// https://fontawesome.com/icons/light_user-alt-slash?style=light - /// account, avatar, head, human, man, person, profile - static const IconData lightUserAltSlash = const IconDataLight(0xf4fa); - - /// Duotone Alternate User Slash icon - /// - /// https://fontawesome.com/icons/duotone_user-alt-slash?style=duotone - /// account, avatar, head, human, man, person, profile - static const IconDataDuotone duotoneUserAltSlash = const IconDataDuotone( - 0xf4fa, - secondary: const IconDataDuotone(0x10f4fa), - ); - - /// Regular User Astronaut icon - /// - /// https://fontawesome.com/icons/user-astronaut?style=regular - /// avatar, clothing, cosmonaut, nasa, space, suit - static const IconData userAstronaut = const IconDataRegular(0xf4fb); - - /// Solid User Astronaut icon - /// - /// https://fontawesome.com/icons/user-astronaut?style=solid - /// avatar, clothing, cosmonaut, nasa, space, suit - static const IconData solidUserAstronaut = const IconDataSolid(0xf4fb); - - /// Light User Astronaut icon - /// - /// https://fontawesome.com/icons/light_user-astronaut?style=light - /// avatar, clothing, cosmonaut, nasa, space, suit - static const IconData lightUserAstronaut = const IconDataLight(0xf4fb); - - /// Duotone User Astronaut icon - /// - /// https://fontawesome.com/icons/duotone_user-astronaut?style=duotone - /// avatar, clothing, cosmonaut, nasa, space, suit - static const IconDataDuotone duotoneUserAstronaut = const IconDataDuotone( - 0xf4fb, - secondary: const IconDataDuotone(0x10f4fb), - ); - - /// Regular User Chart icon - /// - /// https://fontawesome.com/icons/user-chart?style=regular - /// chart, person, presentation, teacher - static const IconData userChart = const IconDataRegular(0xf6a3); - - /// Solid User Chart icon - /// - /// https://fontawesome.com/icons/user-chart?style=solid - /// chart, person, presentation, teacher - static const IconData solidUserChart = const IconDataSolid(0xf6a3); - - /// Light User Chart icon - /// - /// https://fontawesome.com/icons/light_user-chart?style=light - /// chart, person, presentation, teacher - static const IconData lightUserChart = const IconDataLight(0xf6a3); - - /// Duotone User Chart icon - /// - /// https://fontawesome.com/icons/duotone_user-chart?style=duotone - /// chart, person, presentation, teacher - static const IconDataDuotone duotoneUserChart = const IconDataDuotone( - 0xf6a3, - secondary: const IconDataDuotone(0x10f6a3), - ); - - /// Regular User Check icon - /// - /// https://fontawesome.com/icons/user-check?style=regular - /// accept, check, person, verified - static const IconData userCheck = const IconDataRegular(0xf4fc); - - /// Solid User Check icon - /// - /// https://fontawesome.com/icons/user-check?style=solid - /// accept, check, person, verified - static const IconData solidUserCheck = const IconDataSolid(0xf4fc); - - /// Light User Check icon - /// - /// https://fontawesome.com/icons/light_user-check?style=light - /// accept, check, person, verified - static const IconData lightUserCheck = const IconDataLight(0xf4fc); - - /// Duotone User Check icon - /// - /// https://fontawesome.com/icons/duotone_user-check?style=duotone - /// accept, check, person, verified - static const IconDataDuotone duotoneUserCheck = const IconDataDuotone( - 0xf4fc, - secondary: const IconDataDuotone(0x10f4fc), - ); - - /// Regular User Circle icon - /// - /// https://fontawesome.com/icons/user-circle?style=regular - /// account, avatar, head, human, man, person, profile - static const IconData userCircle = const IconDataRegular(0xf2bd); - - /// Solid User Circle icon - /// - /// https://fontawesome.com/icons/user-circle?style=solid - /// account, avatar, head, human, man, person, profile - static const IconData solidUserCircle = const IconDataSolid(0xf2bd); - - /// Light User Circle icon - /// - /// https://fontawesome.com/icons/light_user-circle?style=light - /// account, avatar, head, human, man, person, profile - static const IconData lightUserCircle = const IconDataLight(0xf2bd); - - /// Duotone User Circle icon - /// - /// https://fontawesome.com/icons/duotone_user-circle?style=duotone - /// account, avatar, head, human, man, person, profile - static const IconDataDuotone duotoneUserCircle = const IconDataDuotone( - 0xf2bd, - secondary: const IconDataDuotone(0x10f2bd), - ); - - /// Regular User Clock icon - /// - /// https://fontawesome.com/icons/user-clock?style=regular - /// alert, person, remind, time - static const IconData userClock = const IconDataRegular(0xf4fd); - - /// Solid User Clock icon - /// - /// https://fontawesome.com/icons/user-clock?style=solid - /// alert, person, remind, time - static const IconData solidUserClock = const IconDataSolid(0xf4fd); - - /// Light User Clock icon - /// - /// https://fontawesome.com/icons/light_user-clock?style=light - /// alert, person, remind, time - static const IconData lightUserClock = const IconDataLight(0xf4fd); - - /// Duotone User Clock icon - /// - /// https://fontawesome.com/icons/duotone_user-clock?style=duotone - /// alert, person, remind, time - static const IconDataDuotone duotoneUserClock = const IconDataDuotone( - 0xf4fd, - secondary: const IconDataDuotone(0x10f4fd), - ); - - /// Regular User Cog icon - /// - /// https://fontawesome.com/icons/user-cog?style=regular - /// admin, cog, person, settings - static const IconData userCog = const IconDataRegular(0xf4fe); - - /// Solid User Cog icon - /// - /// https://fontawesome.com/icons/user-cog?style=solid - /// admin, cog, person, settings - static const IconData solidUserCog = const IconDataSolid(0xf4fe); - - /// Light User Cog icon - /// - /// https://fontawesome.com/icons/light_user-cog?style=light - /// admin, cog, person, settings - static const IconData lightUserCog = const IconDataLight(0xf4fe); - - /// Duotone User Cog icon - /// - /// https://fontawesome.com/icons/duotone_user-cog?style=duotone - /// admin, cog, person, settings - static const IconDataDuotone duotoneUserCog = const IconDataDuotone( - 0xf4fe, - secondary: const IconDataDuotone(0x10f4fe), - ); - - /// 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, western, woody, wrangler - static const IconData userCowboy = const IconDataRegular(0xf8ea); - - /// Light User Cowboy icon - /// - /// https://fontawesome.com/icons/light_user-cowboy?style=light - /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, western, woody, wrangler - static const IconData lightUserCowboy = const IconDataLight(0xf8ea); - - /// 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, western, woody, wrangler - static const IconData solidUserCowboy = const IconDataSolid(0xf8ea); - - /// Duotone User Cowboy icon - /// - /// https://fontawesome.com/icons/duotone_user-cowboy?style=duotone - /// buckaroo, cowgirl, horse, jackeroo, jessie, old west, pardner, ranch, rancher, rodeo, the lone ranger, western, woody, wrangler - static const IconDataDuotone duotoneUserCowboy = const IconDataDuotone( - 0xf8ea, - secondary: const IconDataDuotone(0x10f8ea), - ); - - /// Regular User Crown icon - /// - /// https://fontawesome.com/icons/user-crown?style=regular - /// admin, avatar, person, special - static const IconData userCrown = const IconDataRegular(0xf6a4); - - /// Solid User Crown icon - /// - /// https://fontawesome.com/icons/user-crown?style=solid - /// admin, avatar, person, special - static const IconData solidUserCrown = const IconDataSolid(0xf6a4); - - /// Light User Crown icon - /// - /// https://fontawesome.com/icons/light_user-crown?style=light - /// admin, avatar, person, special - static const IconData lightUserCrown = const IconDataLight(0xf6a4); - - /// Duotone User Crown icon - /// - /// https://fontawesome.com/icons/duotone_user-crown?style=duotone - /// admin, avatar, person, special - static const IconDataDuotone duotoneUserCrown = const IconDataDuotone( - 0xf6a4, - secondary: const IconDataDuotone(0x10f6a4), - ); - - /// Regular User Edit icon - /// - /// https://fontawesome.com/icons/user-edit?style=regular - /// edit, pen, pencil, person, update, write - static const IconData userEdit = const IconDataRegular(0xf4ff); - - /// Solid User Edit icon - /// - /// https://fontawesome.com/icons/user-edit?style=solid - /// edit, pen, pencil, person, update, write - static const IconData solidUserEdit = const IconDataSolid(0xf4ff); - - /// Light User Edit icon - /// - /// https://fontawesome.com/icons/light_user-edit?style=light - /// edit, pen, pencil, person, update, write - static const IconData lightUserEdit = const IconDataLight(0xf4ff); - - /// Duotone User Edit icon - /// - /// https://fontawesome.com/icons/duotone_user-edit?style=duotone - /// edit, pen, pencil, person, update, write - static const IconDataDuotone duotoneUserEdit = const IconDataDuotone( - 0xf4ff, - secondary: const IconDataDuotone(0x10f4ff), - ); - - /// Regular User Friends icon - /// - /// https://fontawesome.com/icons/user-friends?style=regular - /// group, people, person, team, users - static const IconData userFriends = const IconDataRegular(0xf500); - - /// Solid User Friends icon - /// - /// https://fontawesome.com/icons/user-friends?style=solid - /// group, people, person, team, users - static const IconData solidUserFriends = const IconDataSolid(0xf500); - - /// Light User Friends icon - /// - /// https://fontawesome.com/icons/light_user-friends?style=light - /// group, people, person, team, users - static const IconData lightUserFriends = const IconDataLight(0xf500); - - /// Duotone User Friends icon - /// - /// https://fontawesome.com/icons/duotone_user-friends?style=duotone - /// group, people, person, team, users - static const IconDataDuotone duotoneUserFriends = const IconDataDuotone( - 0xf500, - secondary: const IconDataDuotone(0x10f500), - ); - - /// Regular User Graduate icon - /// - /// https://fontawesome.com/icons/user-graduate?style=regular - /// cap, clothing, commencement, gown, graduation, person, student - static const IconData userGraduate = const IconDataRegular(0xf501); - - /// Solid User Graduate icon - /// - /// https://fontawesome.com/icons/user-graduate?style=solid - /// cap, clothing, commencement, gown, graduation, person, student - static const IconData solidUserGraduate = const IconDataSolid(0xf501); - - /// Light User Graduate icon - /// - /// https://fontawesome.com/icons/light_user-graduate?style=light - /// cap, clothing, commencement, gown, graduation, person, student - static const IconData lightUserGraduate = const IconDataLight(0xf501); - - /// Duotone User Graduate icon - /// - /// https://fontawesome.com/icons/duotone_user-graduate?style=duotone - /// cap, clothing, commencement, gown, graduation, person, student - static const IconDataDuotone duotoneUserGraduate = const IconDataDuotone( - 0xf501, - secondary: const IconDataDuotone(0x10f501), - ); - - /// Regular Construction Worker icon - /// - /// https://fontawesome.com/icons/user-hard-hat?style=regular - /// construction, hardhat, helmet, safety - static const IconData userHardHat = const IconDataRegular(0xf82c); - - /// Solid Construction Worker icon - /// - /// https://fontawesome.com/icons/user-hard-hat?style=solid - /// construction, hardhat, helmet, safety - static const IconData solidUserHardHat = const IconDataSolid(0xf82c); - - /// Light Construction Worker icon - /// - /// https://fontawesome.com/icons/light_user-hard-hat?style=light - /// construction, hardhat, helmet, safety - static const IconData lightUserHardHat = const IconDataLight(0xf82c); - - /// Duotone Construction Worker icon - /// - /// https://fontawesome.com/icons/duotone_user-hard-hat?style=duotone - /// construction, hardhat, helmet, safety - static const IconDataDuotone duotoneUserHardHat = const IconDataDuotone( - 0xf82c, - secondary: const IconDataDuotone(0x10f82c), - ); - - /// Regular User Headset icon - /// - /// https://fontawesome.com/icons/user-headset?style=regular - /// gaming, headphones, help, person, support, telemarketer, telemarketing - static const IconData userHeadset = const IconDataRegular(0xf82d); - - /// Solid User Headset icon - /// - /// https://fontawesome.com/icons/user-headset?style=solid - /// gaming, headphones, help, person, support, telemarketer, telemarketing - static const IconData solidUserHeadset = const IconDataSolid(0xf82d); - - /// Light User Headset icon - /// - /// https://fontawesome.com/icons/light_user-headset?style=light - /// gaming, headphones, help, person, support, telemarketer, telemarketing - static const IconData lightUserHeadset = const IconDataLight(0xf82d); - - /// Duotone User Headset icon - /// - /// https://fontawesome.com/icons/duotone_user-headset?style=duotone - /// gaming, headphones, help, person, support, telemarketer, telemarketing - static const IconDataDuotone duotoneUserHeadset = const IconDataDuotone( - 0xf82d, - secondary: const IconDataDuotone(0x10f82d), - ); - - /// Regular User Injured icon - /// - /// https://fontawesome.com/icons/user-injured?style=regular - /// cast, injury, ouch, patient, person, sling - static const IconData userInjured = const IconDataRegular(0xf728); - - /// Solid User Injured icon - /// - /// https://fontawesome.com/icons/user-injured?style=solid - /// cast, injury, ouch, patient, person, sling - static const IconData solidUserInjured = const IconDataSolid(0xf728); - - /// Light User Injured icon - /// - /// https://fontawesome.com/icons/light_user-injured?style=light - /// cast, injury, ouch, patient, person, sling - static const IconData lightUserInjured = const IconDataLight(0xf728); - - /// Duotone User Injured icon - /// - /// https://fontawesome.com/icons/duotone_user-injured?style=duotone - /// cast, injury, ouch, patient, person, sling - static const IconDataDuotone duotoneUserInjured = const IconDataDuotone( - 0xf728, - secondary: const IconDataDuotone(0x10f728), - ); - - /// Regular User Lock icon - /// - /// https://fontawesome.com/icons/user-lock?style=regular - /// admin, lock, person, private, unlock - static const IconData userLock = const IconDataRegular(0xf502); - - /// Solid User Lock icon - /// - /// https://fontawesome.com/icons/user-lock?style=solid - /// admin, lock, person, private, unlock - static const IconData solidUserLock = const IconDataSolid(0xf502); - - /// Light User Lock icon - /// - /// https://fontawesome.com/icons/light_user-lock?style=light - /// admin, lock, person, private, unlock - static const IconData lightUserLock = const IconDataLight(0xf502); - - /// Duotone User Lock icon - /// - /// https://fontawesome.com/icons/duotone_user-lock?style=duotone - /// admin, lock, person, private, unlock - static const IconDataDuotone duotoneUserLock = const IconDataDuotone( - 0xf502, - secondary: const IconDataDuotone(0x10f502), - ); - - /// Regular Doctor icon - /// - /// https://fontawesome.com/icons/user-md?style=regular - /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon - static const IconData userMd = const IconDataRegular(0xf0f0); - - /// Solid Doctor icon - /// - /// https://fontawesome.com/icons/user-md?style=solid - /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon - static const IconData solidUserMd = const IconDataSolid(0xf0f0); - - /// Light Doctor icon - /// - /// https://fontawesome.com/icons/light_user-md?style=light - /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon - static const IconData lightUserMd = const IconDataLight(0xf0f0); - - /// Duotone Doctor icon - /// - /// https://fontawesome.com/icons/duotone_user-md?style=duotone - /// covid-19, job, medical, nurse, occupation, physician, profile, surgeon - static const IconDataDuotone duotoneUserMd = const IconDataDuotone( - 0xf0f0, - secondary: const IconDataDuotone(0x10f0f0), - ); - - /// Regular Chat with Doctor icon - /// - /// https://fontawesome.com/icons/user-md-chat?style=regular - /// advice, comment, diagnosis, opinion, prescription - static const IconData userMdChat = const IconDataRegular(0xf82e); - - /// Solid Chat with Doctor icon - /// - /// https://fontawesome.com/icons/user-md-chat?style=solid - /// advice, comment, diagnosis, opinion, prescription - static const IconData solidUserMdChat = const IconDataSolid(0xf82e); - - /// Light Chat with Doctor icon - /// - /// https://fontawesome.com/icons/light_user-md-chat?style=light - /// advice, comment, diagnosis, opinion, prescription - static const IconData lightUserMdChat = const IconDataLight(0xf82e); - - /// Duotone Chat with Doctor icon - /// - /// https://fontawesome.com/icons/duotone_user-md-chat?style=duotone - /// advice, comment, diagnosis, opinion, prescription - static const IconDataDuotone duotoneUserMdChat = const IconDataDuotone( - 0xf82e, - secondary: const IconDataDuotone(0x10f82e), - ); - - /// Regular User Minus icon - /// - /// https://fontawesome.com/icons/user-minus?style=regular - /// delete, negative, remove - static const IconData userMinus = const IconDataRegular(0xf503); - - /// Solid User Minus icon - /// - /// https://fontawesome.com/icons/user-minus?style=solid - /// delete, negative, remove - static const IconData solidUserMinus = const IconDataSolid(0xf503); - - /// Light User Minus icon - /// - /// https://fontawesome.com/icons/light_user-minus?style=light - /// delete, negative, remove - static const IconData lightUserMinus = const IconDataLight(0xf503); - - /// Duotone User Minus icon - /// - /// https://fontawesome.com/icons/duotone_user-minus?style=duotone - /// delete, negative, remove - static const IconDataDuotone duotoneUserMinus = const IconDataDuotone( - 0xf503, - secondary: const IconDataDuotone(0x10f503), - ); - - /// Regular User Music icon - /// - /// https://fontawesome.com/icons/user-music?style=regular - /// artist, music, musician, singer - static const IconData userMusic = const IconDataRegular(0xf8eb); - - /// Solid User Music icon - /// - /// https://fontawesome.com/icons/user-music?style=solid - /// artist, music, musician, singer - static const IconData solidUserMusic = const IconDataSolid(0xf8eb); - - /// Light User Music icon - /// - /// https://fontawesome.com/icons/light_user-music?style=light - /// artist, music, musician, singer - static const IconData lightUserMusic = const IconDataLight(0xf8eb); - - /// Duotone User Music icon - /// - /// https://fontawesome.com/icons/duotone_user-music?style=duotone - /// artist, music, musician, singer - static const IconDataDuotone duotoneUserMusic = const IconDataDuotone( - 0xf8eb, - secondary: const IconDataDuotone(0x10f8eb), - ); - - /// Regular User Ninja icon - /// - /// https://fontawesome.com/icons/user-ninja?style=regular - /// assassin, avatar, dangerous, deadly, sneaky - static const IconData userNinja = const IconDataRegular(0xf504); - - /// Solid User Ninja icon - /// - /// https://fontawesome.com/icons/user-ninja?style=solid - /// assassin, avatar, dangerous, deadly, sneaky - static const IconData solidUserNinja = const IconDataSolid(0xf504); - - /// Light User Ninja icon - /// - /// https://fontawesome.com/icons/light_user-ninja?style=light - /// assassin, avatar, dangerous, deadly, sneaky - static const IconData lightUserNinja = const IconDataLight(0xf504); - - /// Duotone User Ninja icon - /// - /// https://fontawesome.com/icons/duotone_user-ninja?style=duotone - /// assassin, avatar, dangerous, deadly, sneaky - static const IconDataDuotone duotoneUserNinja = const IconDataDuotone( - 0xf504, - secondary: const IconDataDuotone(0x10f504), - ); - - /// Regular Nurse icon - /// - /// https://fontawesome.com/icons/user-nurse?style=regular - /// covid-19, doctor, midwife, practitioner, surgeon - static const IconData userNurse = const IconDataRegular(0xf82f); - - /// Solid Nurse icon - /// - /// https://fontawesome.com/icons/user-nurse?style=solid - /// covid-19, doctor, midwife, practitioner, surgeon - static const IconData solidUserNurse = const IconDataSolid(0xf82f); - - /// Light Nurse icon - /// - /// https://fontawesome.com/icons/light_user-nurse?style=light - /// covid-19, doctor, midwife, practitioner, surgeon - static const IconData lightUserNurse = const IconDataLight(0xf82f); - - /// Duotone Nurse icon - /// - /// https://fontawesome.com/icons/duotone_user-nurse?style=duotone - /// covid-19, doctor, midwife, practitioner, surgeon - static const IconDataDuotone duotoneUserNurse = const IconDataDuotone( - 0xf82f, - secondary: const IconDataDuotone(0x10f82f), - ); - - /// Regular User Plus icon - /// - /// https://fontawesome.com/icons/user-plus?style=regular - /// add, avatar, positive, sign up, signup, team - static const IconData userPlus = const IconDataRegular(0xf234); - - /// Solid User Plus icon - /// - /// https://fontawesome.com/icons/user-plus?style=solid - /// add, avatar, positive, sign up, signup, team - static const IconData solidUserPlus = const IconDataSolid(0xf234); - - /// Light User Plus icon - /// - /// https://fontawesome.com/icons/light_user-plus?style=light - /// add, avatar, positive, sign up, signup, team - static const IconData lightUserPlus = const IconDataLight(0xf234); - - /// Duotone User Plus icon - /// - /// https://fontawesome.com/icons/duotone_user-plus?style=duotone - /// add, avatar, positive, sign up, signup, team - static const IconDataDuotone duotoneUserPlus = const IconDataDuotone( - 0xf234, - secondary: const IconDataDuotone(0x10f234), - ); - - /// Regular User Robot icon - /// - /// https://fontawesome.com/icons/user-robot?style=regular - /// android, automate, computer, cyborg, rosie - static const IconData userRobot = const IconDataRegular(0xe04b); - - /// Solid User Robot icon - /// - /// https://fontawesome.com/icons/user-robot?style=solid - /// android, automate, computer, cyborg, rosie - static const IconData solidUserRobot = const IconDataSolid(0xe04b); - - /// Light User Robot icon - /// - /// https://fontawesome.com/icons/light_user-robot?style=light - /// android, automate, computer, cyborg, rosie - static const IconData lightUserRobot = const IconDataLight(0xe04b); - - /// Duotone User Robot icon - /// - /// https://fontawesome.com/icons/duotone_user-robot?style=duotone - /// android, automate, computer, cyborg, rosie - static const IconDataDuotone duotoneUserRobot = const IconDataDuotone( - 0xe04b, - secondary: const IconDataDuotone(0x10e04b), - ); - - /// Regular User Secret icon - /// - /// https://fontawesome.com/icons/user-secret?style=regular - /// clothing, coat, hat, incognito, person, privacy, spy, whisper - static const IconData userSecret = const IconDataRegular(0xf21b); - - /// Solid User Secret icon - /// - /// https://fontawesome.com/icons/user-secret?style=solid - /// clothing, coat, hat, incognito, person, privacy, spy, whisper - static const IconData solidUserSecret = const IconDataSolid(0xf21b); - - /// Light User Secret icon - /// - /// https://fontawesome.com/icons/light_user-secret?style=light - /// clothing, coat, hat, incognito, person, privacy, spy, whisper - static const IconData lightUserSecret = const IconDataLight(0xf21b); - - /// Duotone User Secret icon - /// - /// https://fontawesome.com/icons/duotone_user-secret?style=duotone - /// clothing, coat, hat, incognito, person, privacy, spy, whisper - static const IconDataDuotone duotoneUserSecret = const IconDataDuotone( - 0xf21b, - secondary: const IconDataDuotone(0x10f21b), - ); - - /// Regular User Shield icon - /// - /// https://fontawesome.com/icons/user-shield?style=regular - /// admin, person, private, protect, safe - static const IconData userShield = const IconDataRegular(0xf505); - - /// Solid User Shield icon - /// - /// https://fontawesome.com/icons/user-shield?style=solid - /// admin, person, private, protect, safe - static const IconData solidUserShield = const IconDataSolid(0xf505); - - /// Light User Shield icon - /// - /// https://fontawesome.com/icons/light_user-shield?style=light - /// admin, person, private, protect, safe - static const IconData lightUserShield = const IconDataLight(0xf505); - - /// Duotone User Shield icon - /// - /// https://fontawesome.com/icons/duotone_user-shield?style=duotone - /// admin, person, private, protect, safe - static const IconDataDuotone duotoneUserShield = const IconDataDuotone( - 0xf505, - secondary: const IconDataDuotone(0x10f505), - ); - - /// Regular User Slash icon - /// - /// https://fontawesome.com/icons/user-slash?style=regular - /// ban, delete, remove - static const IconData userSlash = const IconDataRegular(0xf506); - - /// Solid User Slash icon - /// - /// https://fontawesome.com/icons/user-slash?style=solid - /// ban, delete, remove - static const IconData solidUserSlash = const IconDataSolid(0xf506); - - /// Light User Slash icon - /// - /// https://fontawesome.com/icons/light_user-slash?style=light - /// ban, delete, remove - static const IconData lightUserSlash = const IconDataLight(0xf506); - - /// Duotone User Slash icon - /// - /// https://fontawesome.com/icons/duotone_user-slash?style=duotone - /// ban, delete, remove - static const IconDataDuotone duotoneUserSlash = const IconDataDuotone( - 0xf506, - secondary: const IconDataDuotone(0x10f506), - ); - - /// Regular User Tag icon - /// - /// https://fontawesome.com/icons/user-tag?style=regular - /// avatar, discount, label, person, role, special - static const IconData userTag = const IconDataRegular(0xf507); - - /// Solid User Tag icon - /// - /// https://fontawesome.com/icons/user-tag?style=solid - /// avatar, discount, label, person, role, special - static const IconData solidUserTag = const IconDataSolid(0xf507); - - /// Light User Tag icon - /// - /// https://fontawesome.com/icons/light_user-tag?style=light - /// avatar, discount, label, person, role, special - static const IconData lightUserTag = const IconDataLight(0xf507); - - /// Duotone User Tag icon - /// - /// https://fontawesome.com/icons/duotone_user-tag?style=duotone - /// avatar, discount, label, person, role, special - static const IconDataDuotone duotoneUserTag = const IconDataDuotone( - 0xf507, - secondary: const IconDataDuotone(0x10f507), - ); - - /// Regular User Tie icon - /// - /// https://fontawesome.com/icons/user-tie?style=regular - /// avatar, business, clothing, formal, professional, suit - static const IconData userTie = const IconDataRegular(0xf508); - - /// Solid User Tie icon - /// - /// https://fontawesome.com/icons/user-tie?style=solid - /// avatar, business, clothing, formal, professional, suit - static const IconData solidUserTie = const IconDataSolid(0xf508); - - /// Light User Tie icon - /// - /// https://fontawesome.com/icons/light_user-tie?style=light - /// avatar, business, clothing, formal, professional, suit - static const IconData lightUserTie = const IconDataLight(0xf508); - - /// Duotone User Tie icon - /// - /// https://fontawesome.com/icons/duotone_user-tie?style=duotone - /// avatar, business, clothing, formal, professional, suit - static const IconDataDuotone duotoneUserTie = const IconDataDuotone( - 0xf508, - secondary: const IconDataDuotone(0x10f508), - ); - - /// Regular Remove User icon - /// - /// https://fontawesome.com/icons/user-times?style=regular - /// archive, delete, remove, x - static const IconData userTimes = const IconDataRegular(0xf235); - - /// Solid Remove User icon - /// - /// https://fontawesome.com/icons/user-times?style=solid - /// archive, delete, remove, x - static const IconData solidUserTimes = const IconDataSolid(0xf235); - - /// Light Remove User icon - /// - /// https://fontawesome.com/icons/light_user-times?style=light - /// archive, delete, remove, x - static const IconData lightUserTimes = const IconDataLight(0xf235); - - /// Duotone Remove User icon - /// - /// https://fontawesome.com/icons/duotone_user-times?style=duotone - /// archive, delete, remove, x - static const IconDataDuotone duotoneUserTimes = const IconDataDuotone( - 0xf235, - secondary: const IconDataDuotone(0x10f235), - ); - - /// Regular User Unlock icon - /// - /// https://fontawesome.com/icons/user-unlock?style=regular - /// admin, lock, person, private, unlock - static const IconData userUnlock = const IconDataRegular(0xe058); - - /// Light User Unlock icon - /// - /// https://fontawesome.com/icons/light_user-unlock?style=light - /// admin, lock, person, private, unlock - static const IconData lightUserUnlock = const IconDataLight(0xe058); - - /// Solid User Unlock icon - /// - /// https://fontawesome.com/icons/user-unlock?style=solid - /// admin, lock, person, private, unlock - static const IconData solidUserUnlock = const IconDataSolid(0xe058); - - /// Duotone User Unlock icon - /// - /// https://fontawesome.com/icons/duotone_user-unlock?style=duotone - /// admin, lock, person, private, unlock - static const IconDataDuotone duotoneUserUnlock = const IconDataDuotone( - 0xe058, - secondary: const IconDataDuotone(0x10e058), - ); - - /// Regular User Visor icon - /// - /// https://fontawesome.com/icons/user-visor?style=regular - /// geordi la forge, star trek - static const IconData userVisor = const IconDataRegular(0xe04c); - - /// Solid User Visor icon - /// - /// https://fontawesome.com/icons/user-visor?style=solid - /// geordi la forge, star trek - static const IconData solidUserVisor = const IconDataSolid(0xe04c); - - /// Light User Visor icon - /// - /// https://fontawesome.com/icons/light_user-visor?style=light - /// geordi la forge, star trek - static const IconData lightUserVisor = const IconDataLight(0xe04c); - - /// Duotone User Visor icon - /// - /// https://fontawesome.com/icons/duotone_user-visor?style=duotone - /// geordi la forge, star trek - static const IconDataDuotone duotoneUserVisor = const IconDataDuotone( - 0xe04c, - secondary: const IconDataDuotone(0x10e04c), - ); - - /// Regular Users icon - /// - /// https://fontawesome.com/icons/users?style=regular - /// friends, group, people, persons, profiles, team - static const IconData users = const IconDataRegular(0xf0c0); - - /// Solid Users icon - /// - /// https://fontawesome.com/icons/users?style=solid - /// friends, group, people, persons, profiles, team - static const IconData solidUsers = const IconDataSolid(0xf0c0); - - /// Light Users icon - /// - /// https://fontawesome.com/icons/light_users?style=light - /// friends, group, people, persons, profiles, team - static const IconData lightUsers = const IconDataLight(0xf0c0); - - /// Duotone Users icon - /// - /// https://fontawesome.com/icons/duotone_users?style=duotone - /// friends, group, people, persons, profiles, team - static const IconDataDuotone duotoneUsers = const IconDataDuotone( - 0xf0c0, - secondary: const IconDataDuotone(0x10f0c0), - ); - - /// Regular Users Class icon - /// - /// https://fontawesome.com/icons/users-class?style=regular - /// chalkboard, group, presentation, students, teachers, team - static const IconData usersClass = const IconDataRegular(0xf63d); - - /// Solid Users Class icon - /// - /// https://fontawesome.com/icons/users-class?style=solid - /// chalkboard, group, presentation, students, teachers, team - static const IconData solidUsersClass = const IconDataSolid(0xf63d); - - /// Light Users Class icon - /// - /// https://fontawesome.com/icons/light_users-class?style=light - /// chalkboard, group, presentation, students, teachers, team - static const IconData lightUsersClass = const IconDataLight(0xf63d); - - /// Duotone Users Class icon - /// - /// https://fontawesome.com/icons/duotone_users-class?style=duotone - /// chalkboard, group, presentation, students, teachers, team - static const IconDataDuotone duotoneUsersClass = const IconDataDuotone( - 0xf63d, - secondary: const IconDataDuotone(0x10f63d), - ); - - /// Regular Users Cog icon - /// - /// https://fontawesome.com/icons/users-cog?style=regular - /// admin, cog, group, person, settings, team - static const IconData usersCog = const IconDataRegular(0xf509); - - /// Solid Users Cog icon - /// - /// https://fontawesome.com/icons/users-cog?style=solid - /// admin, cog, group, person, settings, team - static const IconData solidUsersCog = const IconDataSolid(0xf509); - - /// Light Users Cog icon - /// - /// https://fontawesome.com/icons/light_users-cog?style=light - /// admin, cog, group, person, settings, team - static const IconData lightUsersCog = const IconDataLight(0xf509); - - /// Duotone Users Cog icon - /// - /// https://fontawesome.com/icons/duotone_users-cog?style=duotone - /// admin, cog, group, person, settings, team - static const IconDataDuotone duotoneUsersCog = const IconDataDuotone( - 0xf509, - secondary: const IconDataDuotone(0x10f509), - ); - - /// Regular Users Crown icon - /// - /// https://fontawesome.com/icons/users-crown?style=regular - /// admin, avatar, group, person, special, team - static const IconData usersCrown = const IconDataRegular(0xf6a5); - - /// Solid Users Crown icon - /// - /// https://fontawesome.com/icons/users-crown?style=solid - /// admin, avatar, group, person, special, team - static const IconData solidUsersCrown = const IconDataSolid(0xf6a5); - - /// Light Users Crown icon - /// - /// https://fontawesome.com/icons/light_users-crown?style=light - /// admin, avatar, group, person, special, team - static const IconData lightUsersCrown = const IconDataLight(0xf6a5); - - /// Duotone Users Crown icon - /// - /// https://fontawesome.com/icons/duotone_users-crown?style=duotone - /// admin, avatar, group, person, special, team - static const IconDataDuotone duotoneUsersCrown = const IconDataDuotone( - 0xf6a5, - secondary: const IconDataDuotone(0x10f6a5), - ); - - /// Regular Users with Medical Symbol icon - /// - /// https://fontawesome.com/icons/users-medical?style=regular - /// group, patients, physician, team - static const IconData usersMedical = const IconDataRegular(0xf830); - - /// Solid Users with Medical Symbol icon - /// - /// https://fontawesome.com/icons/users-medical?style=solid - /// group, patients, physician, team - static const IconData solidUsersMedical = const IconDataSolid(0xf830); - - /// Light Users with Medical Symbol icon - /// - /// https://fontawesome.com/icons/light_users-medical?style=light - /// group, patients, physician, team - static const IconData lightUsersMedical = const IconDataLight(0xf830); - - /// Duotone Users with Medical Symbol icon - /// - /// https://fontawesome.com/icons/duotone_users-medical?style=duotone - /// group, patients, physician, team - static const IconDataDuotone duotoneUsersMedical = const IconDataDuotone( - 0xf830, - secondary: const IconDataDuotone(0x10f830), - ); - - /// Regular Users Slash icon - /// - /// https://fontawesome.com/icons/users-slash?style=regular - /// disband, friends, group, people, persons, profiles, separate, team, ungroup - static const IconData usersSlash = const IconDataRegular(0xe073); - - /// Light Users Slash icon - /// - /// https://fontawesome.com/icons/light_users-slash?style=light - /// disband, friends, group, people, persons, profiles, separate, team, ungroup - static const IconData lightUsersSlash = const IconDataLight(0xe073); - - /// Solid Users Slash icon - /// - /// https://fontawesome.com/icons/users-slash?style=solid - /// disband, friends, group, people, persons, profiles, separate, team, ungroup - static const IconData solidUsersSlash = const IconDataSolid(0xe073); - - /// Duotone Users Slash icon - /// - /// https://fontawesome.com/icons/duotone_users-slash?style=duotone - /// disband, friends, group, people, persons, profiles, separate, team, ungroup - static const IconDataDuotone duotoneUsersSlash = const IconDataDuotone( - 0xe073, - secondary: const IconDataDuotone(0x10e073), - ); - - /// Brands United States Postal Service icon - /// - /// https://fontawesome.com/icons/usps?style=brands - /// american, package, shipping, usa - static const IconData usps = const IconDataBrands(0xf7e1); - - /// Brands us-Sunnah Foundation icon - /// - /// https://fontawesome.com/icons/ussunnah?style=brands - static const IconData ussunnah = const IconDataBrands(0xf407); - - /// Regular Utensil Fork icon - /// - /// https://fontawesome.com/icons/utensil-fork?style=regular - /// cutlery, dining, food, fork, silverware - static const IconData utensilFork = const IconDataRegular(0xf2e3); - - /// Solid Utensil Fork icon - /// - /// https://fontawesome.com/icons/utensil-fork?style=solid - /// cutlery, dining, food, fork, silverware - static const IconData solidUtensilFork = const IconDataSolid(0xf2e3); - - /// Light Utensil Fork icon - /// - /// https://fontawesome.com/icons/light_utensil-fork?style=light - /// cutlery, dining, food, fork, silverware - static const IconData lightUtensilFork = const IconDataLight(0xf2e3); - - /// Duotone Utensil Fork icon - /// - /// https://fontawesome.com/icons/duotone_utensil-fork?style=duotone - /// cutlery, dining, food, fork, silverware - static const IconDataDuotone duotoneUtensilFork = const IconDataDuotone( - 0xf2e3, - secondary: const IconDataDuotone(0x10f2e3), - ); - - /// Regular Utensil Knife icon - /// - /// https://fontawesome.com/icons/utensil-knife?style=regular - /// cut, cutlery, dining, silverware, tool - static const IconData utensilKnife = const IconDataRegular(0xf2e4); - - /// Solid Utensil Knife icon - /// - /// https://fontawesome.com/icons/utensil-knife?style=solid - /// cut, cutlery, dining, silverware, tool - static const IconData solidUtensilKnife = const IconDataSolid(0xf2e4); - - /// Light Utensil Knife icon - /// - /// https://fontawesome.com/icons/light_utensil-knife?style=light - /// cut, cutlery, dining, silverware, tool - static const IconData lightUtensilKnife = const IconDataLight(0xf2e4); - - /// Duotone Utensil Knife icon - /// - /// https://fontawesome.com/icons/duotone_utensil-knife?style=duotone - /// cut, cutlery, dining, silverware, tool - static const IconDataDuotone duotoneUtensilKnife = const IconDataDuotone( - 0xf2e4, - secondary: const IconDataDuotone(0x10f2e4), - ); - - /// Regular Utensil Spoon icon - /// - /// https://fontawesome.com/icons/utensil-spoon?style=regular - /// cutlery, dining, scoop, silverware, spoon - static const IconData utensilSpoon = const IconDataRegular(0xf2e5); - - /// Solid Utensil Spoon icon - /// - /// https://fontawesome.com/icons/utensil-spoon?style=solid - /// cutlery, dining, scoop, silverware, spoon - static const IconData solidUtensilSpoon = const IconDataSolid(0xf2e5); - - /// Light Utensil Spoon icon - /// - /// https://fontawesome.com/icons/light_utensil-spoon?style=light - /// cutlery, dining, scoop, silverware, spoon - static const IconData lightUtensilSpoon = const IconDataLight(0xf2e5); - - /// Duotone Utensil Spoon icon - /// - /// https://fontawesome.com/icons/duotone_utensil-spoon?style=duotone - /// cutlery, dining, scoop, silverware, spoon - static const IconDataDuotone duotoneUtensilSpoon = const IconDataDuotone( - 0xf2e5, - secondary: const IconDataDuotone(0x10f2e5), - ); - - /// Regular Utensils icon - /// - /// https://fontawesome.com/icons/utensils?style=regular - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData utensils = const IconDataRegular(0xf2e7); - - /// Solid Utensils icon - /// - /// https://fontawesome.com/icons/utensils?style=solid - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData solidUtensils = const IconDataSolid(0xf2e7); - - /// Light Utensils icon - /// - /// https://fontawesome.com/icons/light_utensils?style=light - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData lightUtensils = const IconDataLight(0xf2e7); - - /// Duotone Utensils icon - /// - /// https://fontawesome.com/icons/duotone_utensils?style=duotone - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconDataDuotone duotoneUtensils = const IconDataDuotone( - 0xf2e7, - secondary: const IconDataDuotone(0x10f2e7), - ); - - /// Regular Alternate Utensils icon - /// - /// https://fontawesome.com/icons/utensils-alt?style=regular - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData utensilsAlt = const IconDataRegular(0xf2e6); - - /// Solid Alternate Utensils icon - /// - /// https://fontawesome.com/icons/utensils-alt?style=solid - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData solidUtensilsAlt = const IconDataSolid(0xf2e6); - - /// Light Alternate Utensils icon - /// - /// https://fontawesome.com/icons/light_utensils-alt?style=light - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconData lightUtensilsAlt = const IconDataLight(0xf2e6); - - /// Duotone Alternate Utensils icon - /// - /// https://fontawesome.com/icons/duotone_utensils-alt?style=duotone - /// cutlery, dining, dinner, eat, food, fork, knife, restaurant - static const IconDataDuotone duotoneUtensilsAlt = const IconDataDuotone( - 0xf2e6, - secondary: const IconDataDuotone(0x10f2e6), - ); - - /// Brands Vaadin icon - /// - /// https://fontawesome.com/icons/vaadin?style=brands - static const IconData vaadin = const IconDataBrands(0xf408); - - /// Regular Vacuum icon - /// - /// https://fontawesome.com/icons/vacuum?style=regular - /// cleaning, dyson, floor, suck, suction - static const IconData vacuum = const IconDataRegular(0xe04d); - - /// Solid Vacuum icon - /// - /// https://fontawesome.com/icons/vacuum?style=solid - /// cleaning, dyson, floor, suck, suction - static const IconData solidVacuum = const IconDataSolid(0xe04d); - - /// Light Vacuum icon - /// - /// https://fontawesome.com/icons/light_vacuum?style=light - /// cleaning, dyson, floor, suck, suction - static const IconData lightVacuum = const IconDataLight(0xe04d); - - /// Duotone Vacuum icon - /// - /// https://fontawesome.com/icons/duotone_vacuum?style=duotone - /// cleaning, dyson, floor, suck, suction - static const IconDataDuotone duotoneVacuum = const IconDataDuotone( - 0xe04d, - secondary: const IconDataDuotone(0x10e04d), - ); - - /// Regular Robot Vacuum icon - /// - /// https://fontawesome.com/icons/vacuum-robot?style=regular - /// cleaning, floor, roomba, suck, suction - static const IconData vacuumRobot = const IconDataRegular(0xe04e); - - /// Solid Robot Vacuum icon - /// - /// https://fontawesome.com/icons/vacuum-robot?style=solid - /// cleaning, floor, roomba, suck, suction - static const IconData solidVacuumRobot = const IconDataSolid(0xe04e); - - /// Light Robot Vacuum icon - /// - /// https://fontawesome.com/icons/light_vacuum-robot?style=light - /// cleaning, floor, roomba, suck, suction - static const IconData lightVacuumRobot = const IconDataLight(0xe04e); - - /// Duotone Robot Vacuum icon - /// - /// https://fontawesome.com/icons/duotone_vacuum-robot?style=duotone - /// cleaning, floor, roomba, suck, suction - static const IconDataDuotone duotoneVacuumRobot = const IconDataDuotone( - 0xe04e, - secondary: const IconDataDuotone(0x10e04e), - ); - - /// Regular Value Absolute icon - /// - /// https://fontawesome.com/icons/value-absolute?style=regular - /// Math - static const IconData valueAbsolute = const IconDataRegular(0xf6a6); - - /// Solid Value Absolute icon - /// - /// https://fontawesome.com/icons/value-absolute?style=solid - /// Math - static const IconData solidValueAbsolute = const IconDataSolid(0xf6a6); - - /// Light Value Absolute icon - /// - /// https://fontawesome.com/icons/light_value-absolute?style=light - /// Math - static const IconData lightValueAbsolute = const IconDataLight(0xf6a6); - - /// Duotone Value Absolute icon - /// - /// https://fontawesome.com/icons/duotone_value-absolute?style=duotone - /// Math - static const IconDataDuotone duotoneValueAbsolute = const IconDataDuotone( - 0xf6a6, - secondary: const IconDataDuotone(0x10f6a6), - ); - - /// Regular Vector Square icon - /// - /// https://fontawesome.com/icons/vector-square?style=regular - /// anchors, lines, object, render, shape - static const IconData vectorSquare = const IconDataRegular(0xf5cb); - - /// Solid Vector Square icon - /// - /// https://fontawesome.com/icons/vector-square?style=solid - /// anchors, lines, object, render, shape - static const IconData solidVectorSquare = const IconDataSolid(0xf5cb); - - /// Light Vector Square icon - /// - /// https://fontawesome.com/icons/light_vector-square?style=light - /// anchors, lines, object, render, shape - static const IconData lightVectorSquare = const IconDataLight(0xf5cb); - - /// Duotone Vector Square icon - /// - /// https://fontawesome.com/icons/duotone_vector-square?style=duotone - /// anchors, lines, object, render, shape - static const IconDataDuotone duotoneVectorSquare = const IconDataDuotone( - 0xf5cb, - secondary: const IconDataDuotone(0x10f5cb), - ); - - /// Regular Venus icon - /// - /// https://fontawesome.com/icons/venus?style=regular - /// female - static const IconData venus = const IconDataRegular(0xf221); - - /// Solid Venus icon - /// - /// https://fontawesome.com/icons/venus?style=solid - /// female - static const IconData solidVenus = const IconDataSolid(0xf221); - - /// Light Venus icon - /// - /// https://fontawesome.com/icons/light_venus?style=light - /// female - static const IconData lightVenus = const IconDataLight(0xf221); - - /// Duotone Venus icon - /// - /// https://fontawesome.com/icons/duotone_venus?style=duotone - /// female - static const IconDataDuotone duotoneVenus = const IconDataDuotone( - 0xf221, - secondary: const IconDataDuotone(0x10f221), - ); - - /// Regular Venus Double icon - /// - /// https://fontawesome.com/icons/venus-double?style=regular - /// female - static const IconData venusDouble = const IconDataRegular(0xf226); - - /// Solid Venus Double icon - /// - /// https://fontawesome.com/icons/venus-double?style=solid - /// female - static const IconData solidVenusDouble = const IconDataSolid(0xf226); - - /// Light Venus Double icon - /// - /// https://fontawesome.com/icons/light_venus-double?style=light - /// female - static const IconData lightVenusDouble = const IconDataLight(0xf226); - - /// Duotone Venus Double icon - /// - /// https://fontawesome.com/icons/duotone_venus-double?style=duotone - /// female - static const IconDataDuotone duotoneVenusDouble = const IconDataDuotone( - 0xf226, - secondary: const IconDataDuotone(0x10f226), - ); - - /// Regular Venus Mars icon - /// - /// https://fontawesome.com/icons/venus-mars?style=regular - /// Gender - static const IconData venusMars = const IconDataRegular(0xf228); - - /// Solid Venus Mars icon - /// - /// https://fontawesome.com/icons/venus-mars?style=solid - /// Gender - static const IconData solidVenusMars = const IconDataSolid(0xf228); - - /// Light Venus Mars icon - /// - /// https://fontawesome.com/icons/light_venus-mars?style=light - /// Gender - static const IconData lightVenusMars = const IconDataLight(0xf228); - - /// Duotone Venus Mars icon - /// - /// https://fontawesome.com/icons/duotone_venus-mars?style=duotone - /// Gender - static const IconDataDuotone duotoneVenusMars = const IconDataDuotone( - 0xf228, - secondary: const IconDataDuotone(0x10f228), - ); - - /// Regular vest icon - /// - /// https://fontawesome.com/icons/vest?style=regular - /// biker, fashion, style - static const IconData vest = const IconDataRegular(0xe085); - - /// Solid vest icon - /// - /// https://fontawesome.com/icons/vest?style=solid - /// biker, fashion, style - static const IconData solidVest = const IconDataSolid(0xe085); - - /// Light vest icon - /// - /// https://fontawesome.com/icons/light_vest?style=light - /// biker, fashion, style - static const IconData lightVest = const IconDataLight(0xe085); - - /// Duotone vest icon - /// - /// https://fontawesome.com/icons/duotone_vest?style=duotone - /// biker, fashion, style - static const IconDataDuotone duotoneVest = const IconDataDuotone( - 0xe085, - secondary: const IconDataDuotone(0x10e085), - ); - - /// Regular vest-patches icon - /// - /// https://fontawesome.com/icons/vest-patches?style=regular - /// biker, fashion, style - static const IconData vestPatches = const IconDataRegular(0xe086); - - /// Solid vest-patches icon - /// - /// https://fontawesome.com/icons/vest-patches?style=solid - /// biker, fashion, style - static const IconData solidVestPatches = const IconDataSolid(0xe086); - - /// Light vest-patches icon - /// - /// https://fontawesome.com/icons/light_vest-patches?style=light - /// biker, fashion, style - static const IconData lightVestPatches = const IconDataLight(0xe086); - - /// Duotone vest-patches icon - /// - /// https://fontawesome.com/icons/duotone_vest-patches?style=duotone - /// biker, fashion, style - static const IconDataDuotone duotoneVestPatches = const IconDataDuotone( - 0xe086, - secondary: const IconDataDuotone(0x10e086), - ); - - /// Regular VHS icon - /// - /// https://fontawesome.com/icons/vhs?style=regular - /// betamax, cassette, rental, retro, tape, video, vintage - static const IconData vhs = const IconDataRegular(0xf8ec); - - /// Solid VHS icon - /// - /// https://fontawesome.com/icons/vhs?style=solid - /// betamax, cassette, rental, retro, tape, video, vintage - static const IconData solidVhs = const IconDataSolid(0xf8ec); - - /// Light VHS icon - /// - /// https://fontawesome.com/icons/light_vhs?style=light - /// betamax, cassette, rental, retro, tape, video, vintage - static const IconData lightVhs = const IconDataLight(0xf8ec); - - /// Duotone VHS icon - /// - /// https://fontawesome.com/icons/duotone_vhs?style=duotone - /// betamax, cassette, rental, retro, tape, video, vintage - static const IconDataDuotone duotoneVhs = const IconDataDuotone( - 0xf8ec, - secondary: const IconDataDuotone(0x10f8ec), - ); - - /// Brands Viacoin icon - /// - /// https://fontawesome.com/icons/viacoin?style=brands - static const IconData viacoin = const IconDataBrands(0xf237); - - /// Brands Viadeo icon - /// - /// https://fontawesome.com/icons/viadeo?style=brands - static const IconData viadeo = const IconDataBrands(0xf2a9); - - /// Brands Viadeo Square icon - /// - /// https://fontawesome.com/icons/viadeo-square?style=brands - static const IconData viadeoSquare = const IconDataBrands(0xf2aa); - - /// Regular Vial icon - /// - /// https://fontawesome.com/icons/vial?style=regular - /// experiment, lab, sample, science, test, test tube - static const IconData vial = const IconDataRegular(0xf492); - - /// Solid Vial icon - /// - /// https://fontawesome.com/icons/vial?style=solid - /// experiment, lab, sample, science, test, test tube - static const IconData solidVial = const IconDataSolid(0xf492); - - /// Light Vial icon - /// - /// https://fontawesome.com/icons/light_vial?style=light - /// experiment, lab, sample, science, test, test tube - static const IconData lightVial = const IconDataLight(0xf492); - - /// Duotone Vial icon - /// - /// https://fontawesome.com/icons/duotone_vial?style=duotone - /// experiment, lab, sample, science, test, test tube - static const IconDataDuotone duotoneVial = const IconDataDuotone( - 0xf492, - secondary: const IconDataDuotone(0x10f492), - ); - - /// Regular Vials icon - /// - /// https://fontawesome.com/icons/vials?style=regular - /// experiment, lab, sample, science, test, test tube - static const IconData vials = const IconDataRegular(0xf493); - - /// Solid Vials icon - /// - /// https://fontawesome.com/icons/vials?style=solid - /// experiment, lab, sample, science, test, test tube - static const IconData solidVials = const IconDataSolid(0xf493); - - /// Light Vials icon - /// - /// https://fontawesome.com/icons/light_vials?style=light - /// experiment, lab, sample, science, test, test tube - static const IconData lightVials = const IconDataLight(0xf493); - - /// Duotone Vials icon - /// - /// https://fontawesome.com/icons/duotone_vials?style=duotone - /// experiment, lab, sample, science, test, test tube - static const IconDataDuotone duotoneVials = const IconDataDuotone( - 0xf493, - secondary: const IconDataDuotone(0x10f493), - ); - - /// Brands Viber icon - /// - /// https://fontawesome.com/icons/viber?style=brands - static const IconData viber = const IconDataBrands(0xf409); - - /// Regular Video icon - /// - /// https://fontawesome.com/icons/video?style=regular - /// camera, film, movie, record, video-camera - static const IconData video = const IconDataRegular(0xf03d); - - /// Solid Video icon - /// - /// https://fontawesome.com/icons/video?style=solid - /// camera, film, movie, record, video-camera - static const IconData solidVideo = const IconDataSolid(0xf03d); - - /// Light Video icon - /// - /// https://fontawesome.com/icons/light_video?style=light - /// camera, film, movie, record, video-camera - static const IconData lightVideo = const IconDataLight(0xf03d); - - /// Duotone Video icon - /// - /// https://fontawesome.com/icons/duotone_video?style=duotone - /// camera, film, movie, record, video-camera - static const IconDataDuotone duotoneVideo = const IconDataDuotone( - 0xf03d, - secondary: const IconDataDuotone(0x10f03d), - ); - - /// Regular Video Plus icon - /// - /// https://fontawesome.com/icons/video-plus?style=regular - /// add, create, film, new, positive, record, video - static const IconData videoPlus = const IconDataRegular(0xf4e1); - - /// Solid Video Plus icon - /// - /// https://fontawesome.com/icons/video-plus?style=solid - /// add, create, film, new, positive, record, video - static const IconData solidVideoPlus = const IconDataSolid(0xf4e1); - - /// Light Video Plus icon - /// - /// https://fontawesome.com/icons/light_video-plus?style=light - /// add, create, film, new, positive, record, video - static const IconData lightVideoPlus = const IconDataLight(0xf4e1); - - /// Duotone Video Plus icon - /// - /// https://fontawesome.com/icons/duotone_video-plus?style=duotone - /// add, create, film, new, positive, record, video - static const IconDataDuotone duotoneVideoPlus = const IconDataDuotone( - 0xf4e1, - secondary: const IconDataDuotone(0x10f4e1), - ); - - /// Regular Video Slash icon - /// - /// https://fontawesome.com/icons/video-slash?style=regular - /// add, create, film, new, positive, record, video - static const IconData videoSlash = const IconDataRegular(0xf4e2); - - /// Solid Video Slash icon - /// - /// https://fontawesome.com/icons/video-slash?style=solid - /// add, create, film, new, positive, record, video - static const IconData solidVideoSlash = const IconDataSolid(0xf4e2); - - /// Light Video Slash icon - /// - /// https://fontawesome.com/icons/light_video-slash?style=light - /// add, create, film, new, positive, record, video - static const IconData lightVideoSlash = const IconDataLight(0xf4e2); - - /// Duotone Video Slash icon - /// - /// https://fontawesome.com/icons/duotone_video-slash?style=duotone - /// add, create, film, new, positive, record, video - static const IconDataDuotone duotoneVideoSlash = const IconDataDuotone( - 0xf4e2, - secondary: const IconDataDuotone(0x10f4e2), - ); - - /// Regular Vihara icon - /// - /// https://fontawesome.com/icons/vihara?style=regular - /// buddhism, buddhist, building, monastery - static const IconData vihara = const IconDataRegular(0xf6a7); - - /// Solid Vihara icon - /// - /// https://fontawesome.com/icons/vihara?style=solid - /// buddhism, buddhist, building, monastery - static const IconData solidVihara = const IconDataSolid(0xf6a7); - - /// Light Vihara icon - /// - /// https://fontawesome.com/icons/light_vihara?style=light - /// buddhism, buddhist, building, monastery - static const IconData lightVihara = const IconDataLight(0xf6a7); - - /// Duotone Vihara icon - /// - /// https://fontawesome.com/icons/duotone_vihara?style=duotone - /// buddhism, buddhist, building, monastery - static const IconDataDuotone duotoneVihara = const IconDataDuotone( - 0xf6a7, - secondary: const IconDataDuotone(0x10f6a7), - ); - - /// Brands Vimeo icon - /// - /// https://fontawesome.com/icons/vimeo?style=brands - static const IconData vimeo = const IconDataBrands(0xf40a); - - /// Brands Vimeo Square icon - /// - /// https://fontawesome.com/icons/vimeo-square?style=brands - static const IconData vimeoSquare = const IconDataBrands(0xf194); - - /// Brands Vimeo icon - /// - /// https://fontawesome.com/icons/vimeo-v?style=brands - /// vimeo - static const IconData vimeoV = const IconDataBrands(0xf27d); - - /// Brands Vine icon - /// - /// https://fontawesome.com/icons/vine?style=brands - static const IconData vine = const IconDataBrands(0xf1ca); - - /// Regular Violin icon - /// - /// https://fontawesome.com/icons/violin?style=regular - /// bow, cello, fiddle, instrument, music, orchestra, string - static const IconData violin = const IconDataRegular(0xf8ed); - - /// Solid Violin icon - /// - /// https://fontawesome.com/icons/violin?style=solid - /// bow, cello, fiddle, instrument, music, orchestra, string - static const IconData solidViolin = const IconDataSolid(0xf8ed); - - /// Light Violin icon - /// - /// https://fontawesome.com/icons/light_violin?style=light - /// bow, cello, fiddle, instrument, music, orchestra, string - static const IconData lightViolin = const IconDataLight(0xf8ed); - - /// Duotone Violin icon - /// - /// https://fontawesome.com/icons/duotone_violin?style=duotone - /// bow, cello, fiddle, instrument, music, orchestra, string - static const IconDataDuotone duotoneViolin = const IconDataDuotone( - 0xf8ed, - secondary: const IconDataDuotone(0x10f8ed), - ); - - /// Regular Virus icon - /// - /// https://fontawesome.com/icons/virus?style=regular - /// bug, covid-19, flu, health, sick, viral - static const IconData virus = const IconDataRegular(0xe074); - - /// Light Virus icon - /// - /// https://fontawesome.com/icons/light_virus?style=light - /// bug, covid-19, flu, health, sick, viral - static const IconData lightVirus = const IconDataLight(0xe074); - - /// Solid Virus icon - /// - /// https://fontawesome.com/icons/virus?style=solid - /// bug, covid-19, flu, health, sick, viral - static const IconData solidVirus = const IconDataSolid(0xe074); - - /// Duotone Virus icon - /// - /// https://fontawesome.com/icons/duotone_virus?style=duotone - /// bug, covid-19, flu, health, sick, viral - static const IconDataDuotone duotoneVirus = const IconDataDuotone( - 0xe074, - secondary: const IconDataDuotone(0x10e074), - ); - - /// Regular Virus Slash icon - /// - /// https://fontawesome.com/icons/virus-slash?style=regular - /// bug, covid-19, cure, eliminate, flu, health, sick, viral - static const IconData virusSlash = const IconDataRegular(0xe075); - - /// Light Virus Slash icon - /// - /// https://fontawesome.com/icons/light_virus-slash?style=light - /// bug, covid-19, cure, eliminate, flu, health, sick, viral - static const IconData lightVirusSlash = const IconDataLight(0xe075); - - /// Solid Virus Slash icon - /// - /// https://fontawesome.com/icons/virus-slash?style=solid - /// bug, covid-19, cure, eliminate, flu, health, sick, viral - static const IconData solidVirusSlash = const IconDataSolid(0xe075); - - /// Duotone Virus Slash icon - /// - /// https://fontawesome.com/icons/duotone_virus-slash?style=duotone - /// bug, covid-19, cure, eliminate, flu, health, sick, viral - static const IconDataDuotone duotoneVirusSlash = const IconDataDuotone( - 0xe075, - secondary: const IconDataDuotone(0x10e075), - ); - - /// Regular Viruses icon - /// - /// https://fontawesome.com/icons/viruses?style=regular - /// bugs, covid-19, flu, health, multiply, sick, spread, viral - static const IconData viruses = const IconDataRegular(0xe076); - - /// Light Viruses icon - /// - /// https://fontawesome.com/icons/light_viruses?style=light - /// bugs, covid-19, flu, health, multiply, sick, spread, viral - static const IconData lightViruses = const IconDataLight(0xe076); - - /// Solid Viruses icon - /// - /// https://fontawesome.com/icons/viruses?style=solid - /// bugs, covid-19, flu, health, multiply, sick, spread, viral - static const IconData solidViruses = const IconDataSolid(0xe076); - - /// Duotone Viruses icon - /// - /// https://fontawesome.com/icons/duotone_viruses?style=duotone - /// bugs, covid-19, flu, health, multiply, sick, spread, viral - static const IconDataDuotone duotoneViruses = const IconDataDuotone( - 0xe076, - secondary: const IconDataDuotone(0x10e076), - ); - - /// Brands VK icon - /// - /// https://fontawesome.com/icons/vk?style=brands - static const IconData vk = const IconDataBrands(0xf189); - - /// Brands VNV icon - /// - /// https://fontawesome.com/icons/vnv?style=brands - static const IconData vnv = const IconDataBrands(0xf40b); - - /// Regular Voicemail icon - /// - /// https://fontawesome.com/icons/voicemail?style=regular - /// answer, inbox, message, phone - static const IconData voicemail = const IconDataRegular(0xf897); - - /// Solid Voicemail icon - /// - /// https://fontawesome.com/icons/voicemail?style=solid - /// answer, inbox, message, phone - static const IconData solidVoicemail = const IconDataSolid(0xf897); - - /// Light Voicemail icon - /// - /// https://fontawesome.com/icons/light_voicemail?style=light - /// answer, inbox, message, phone - static const IconData lightVoicemail = const IconDataLight(0xf897); - - /// Duotone Voicemail icon - /// - /// https://fontawesome.com/icons/duotone_voicemail?style=duotone - /// answer, inbox, message, phone - static const IconDataDuotone duotoneVoicemail = const IconDataDuotone( - 0xf897, - secondary: const IconDataDuotone(0x10f897), - ); - - /// Regular Volcano icon - /// - /// https://fontawesome.com/icons/volcano?style=regular - /// caldera, lava, magma, mountain, smoke - static const IconData volcano = const IconDataRegular(0xf770); - - /// Solid Volcano icon - /// - /// https://fontawesome.com/icons/volcano?style=solid - /// caldera, lava, magma, mountain, smoke - static const IconData solidVolcano = const IconDataSolid(0xf770); - - /// Light Volcano icon - /// - /// https://fontawesome.com/icons/light_volcano?style=light - /// caldera, lava, magma, mountain, smoke - static const IconData lightVolcano = const IconDataLight(0xf770); - - /// Duotone Volcano icon - /// - /// https://fontawesome.com/icons/duotone_volcano?style=duotone - /// caldera, lava, magma, mountain, smoke - static const IconDataDuotone duotoneVolcano = const IconDataDuotone( - 0xf770, - secondary: const IconDataDuotone(0x10f770), - ); - - /// Regular Volleyball Ball icon - /// - /// https://fontawesome.com/icons/volleyball-ball?style=regular - /// beach, olympics, sport - static const IconData volleyballBall = const IconDataRegular(0xf45f); - - /// Solid Volleyball Ball icon - /// - /// https://fontawesome.com/icons/volleyball-ball?style=solid - /// beach, olympics, sport - static const IconData solidVolleyballBall = const IconDataSolid(0xf45f); - - /// Light Volleyball Ball icon - /// - /// https://fontawesome.com/icons/light_volleyball-ball?style=light - /// beach, olympics, sport - static const IconData lightVolleyballBall = const IconDataLight(0xf45f); - - /// Duotone Volleyball Ball icon - /// - /// https://fontawesome.com/icons/duotone_volleyball-ball?style=duotone - /// beach, olympics, sport - static const IconDataDuotone duotoneVolleyballBall = const IconDataDuotone( - 0xf45f, - secondary: const IconDataDuotone(0x10f45f), - ); - - /// Regular Volume icon - /// - /// https://fontawesome.com/icons/volume?style=regular - /// audio, control, music, sound, speaker - static const IconData volume = const IconDataRegular(0xf6a8); - - /// Solid Volume icon - /// - /// https://fontawesome.com/icons/volume?style=solid - /// audio, control, music, sound, speaker - static const IconData solidVolume = const IconDataSolid(0xf6a8); - - /// Light Volume icon - /// - /// https://fontawesome.com/icons/light_volume?style=light - /// audio, control, music, sound, speaker - static const IconData lightVolume = const IconDataLight(0xf6a8); - - /// Duotone Volume icon - /// - /// https://fontawesome.com/icons/duotone_volume?style=duotone - /// audio, control, music, sound, speaker - static const IconDataDuotone duotoneVolume = const IconDataDuotone( - 0xf6a8, - secondary: const IconDataDuotone(0x10f6a8), - ); - - /// Regular Volume Down icon - /// - /// https://fontawesome.com/icons/volume-down?style=regular - /// audio, lower, music, quieter, sound, speaker - static const IconData volumeDown = const IconDataRegular(0xf027); - - /// Solid Volume Down icon - /// - /// https://fontawesome.com/icons/volume-down?style=solid - /// audio, lower, music, quieter, sound, speaker - static const IconData solidVolumeDown = const IconDataSolid(0xf027); - - /// Light Volume Down icon - /// - /// https://fontawesome.com/icons/light_volume-down?style=light - /// audio, lower, music, quieter, sound, speaker - static const IconData lightVolumeDown = const IconDataLight(0xf027); - - /// Duotone Volume Down icon - /// - /// https://fontawesome.com/icons/duotone_volume-down?style=duotone - /// audio, lower, music, quieter, sound, speaker - static const IconDataDuotone duotoneVolumeDown = const IconDataDuotone( - 0xf027, - secondary: const IconDataDuotone(0x10f027), - ); - - /// Regular Volume Mute icon - /// - /// https://fontawesome.com/icons/volume-mute?style=regular - /// audio, music, quiet, sound, speaker - static const IconData volumeMute = const IconDataRegular(0xf6a9); - - /// Solid Volume Mute icon - /// - /// https://fontawesome.com/icons/volume-mute?style=solid - /// audio, music, quiet, sound, speaker - static const IconData solidVolumeMute = const IconDataSolid(0xf6a9); - - /// Light Volume Mute icon - /// - /// https://fontawesome.com/icons/light_volume-mute?style=light - /// audio, music, quiet, sound, speaker - static const IconData lightVolumeMute = const IconDataLight(0xf6a9); - - /// Duotone Volume Mute icon - /// - /// https://fontawesome.com/icons/duotone_volume-mute?style=duotone - /// audio, music, quiet, sound, speaker - static const IconDataDuotone duotoneVolumeMute = const IconDataDuotone( - 0xf6a9, - secondary: const IconDataDuotone(0x10f6a9), - ); - - /// Regular Volume Off icon - /// - /// https://fontawesome.com/icons/volume-off?style=regular - /// audio, ban, music, mute, quiet, silent, sound - static const IconData volumeOff = const IconDataRegular(0xf026); - - /// Solid Volume Off icon - /// - /// https://fontawesome.com/icons/volume-off?style=solid - /// audio, ban, music, mute, quiet, silent, sound - static const IconData solidVolumeOff = const IconDataSolid(0xf026); - - /// Light Volume Off icon - /// - /// https://fontawesome.com/icons/light_volume-off?style=light - /// audio, ban, music, mute, quiet, silent, sound - static const IconData lightVolumeOff = const IconDataLight(0xf026); - - /// Duotone Volume Off icon - /// - /// https://fontawesome.com/icons/duotone_volume-off?style=duotone - /// audio, ban, music, mute, quiet, silent, sound - static const IconDataDuotone duotoneVolumeOff = const IconDataDuotone( - 0xf026, - secondary: const IconDataDuotone(0x10f026), - ); - - /// Regular Volume Slash icon - /// - /// https://fontawesome.com/icons/volume-slash?style=regular - /// audio, ban, music, mute, quiet, silent, sound - static const IconData volumeSlash = const IconDataRegular(0xf2e2); - - /// Solid Volume Slash icon - /// - /// https://fontawesome.com/icons/volume-slash?style=solid - /// audio, ban, music, mute, quiet, silent, sound - static const IconData solidVolumeSlash = const IconDataSolid(0xf2e2); - - /// Light Volume Slash icon - /// - /// https://fontawesome.com/icons/light_volume-slash?style=light - /// audio, ban, music, mute, quiet, silent, sound - static const IconData lightVolumeSlash = const IconDataLight(0xf2e2); - - /// Duotone Volume Slash icon - /// - /// https://fontawesome.com/icons/duotone_volume-slash?style=duotone - /// audio, ban, music, mute, quiet, silent, sound - static const IconDataDuotone duotoneVolumeSlash = const IconDataDuotone( - 0xf2e2, - secondary: const IconDataDuotone(0x10f2e2), - ); - - /// Regular Volume Up icon - /// - /// https://fontawesome.com/icons/volume-up?style=regular - /// audio, higher, louder, music, sound, speaker - static const IconData volumeUp = const IconDataRegular(0xf028); - - /// Solid Volume Up icon - /// - /// https://fontawesome.com/icons/volume-up?style=solid - /// audio, higher, louder, music, sound, speaker - static const IconData solidVolumeUp = const IconDataSolid(0xf028); - - /// Light Volume Up icon - /// - /// https://fontawesome.com/icons/light_volume-up?style=light - /// audio, higher, louder, music, sound, speaker - static const IconData lightVolumeUp = const IconDataLight(0xf028); - - /// Duotone Volume Up icon - /// - /// https://fontawesome.com/icons/duotone_volume-up?style=duotone - /// audio, higher, louder, music, sound, speaker - static const IconDataDuotone duotoneVolumeUp = const IconDataDuotone( - 0xf028, - secondary: const IconDataDuotone(0x10f028), - ); - - /// Regular Vote Nay icon - /// - /// https://fontawesome.com/icons/vote-nay?style=regular - /// cast, election, negative, no, politics, reject, voting - static const IconData voteNay = const IconDataRegular(0xf771); - - /// Solid Vote Nay icon - /// - /// https://fontawesome.com/icons/vote-nay?style=solid - /// cast, election, negative, no, politics, reject, voting - static const IconData solidVoteNay = const IconDataSolid(0xf771); - - /// Light Vote Nay icon - /// - /// https://fontawesome.com/icons/light_vote-nay?style=light - /// cast, election, negative, no, politics, reject, voting - static const IconData lightVoteNay = const IconDataLight(0xf771); - - /// Duotone Vote Nay icon - /// - /// https://fontawesome.com/icons/duotone_vote-nay?style=duotone - /// cast, election, negative, no, politics, reject, voting - static const IconDataDuotone duotoneVoteNay = const IconDataDuotone( - 0xf771, - secondary: const IconDataDuotone(0x10f771), - ); - - /// Regular Vote Yea icon - /// - /// https://fontawesome.com/icons/vote-yea?style=regular - /// accept, cast, election, politics, positive, yes - static const IconData voteYea = const IconDataRegular(0xf772); - - /// Solid Vote Yea icon - /// - /// https://fontawesome.com/icons/vote-yea?style=solid - /// accept, cast, election, politics, positive, yes - static const IconData solidVoteYea = const IconDataSolid(0xf772); - - /// Light Vote Yea icon - /// - /// https://fontawesome.com/icons/light_vote-yea?style=light - /// accept, cast, election, politics, positive, yes - static const IconData lightVoteYea = const IconDataLight(0xf772); - - /// Duotone Vote Yea icon - /// - /// https://fontawesome.com/icons/duotone_vote-yea?style=duotone - /// accept, cast, election, politics, positive, yes - static const IconDataDuotone duotoneVoteYea = const IconDataDuotone( - 0xf772, - secondary: const IconDataDuotone(0x10f772), - ); - - /// Regular Cardboard VR icon - /// - /// https://fontawesome.com/icons/vr-cardboard?style=regular - /// 3d, augment, google, reality, virtual - static const IconData vrCardboard = const IconDataRegular(0xf729); - - /// Solid Cardboard VR icon - /// - /// https://fontawesome.com/icons/vr-cardboard?style=solid - /// 3d, augment, google, reality, virtual - static const IconData solidVrCardboard = const IconDataSolid(0xf729); - - /// Light Cardboard VR icon - /// - /// https://fontawesome.com/icons/light_vr-cardboard?style=light - /// 3d, augment, google, reality, virtual - static const IconData lightVrCardboard = const IconDataLight(0xf729); - - /// Duotone Cardboard VR icon - /// - /// https://fontawesome.com/icons/duotone_vr-cardboard?style=duotone - /// 3d, augment, google, reality, virtual - static const IconDataDuotone duotoneVrCardboard = const IconDataDuotone( - 0xf729, - secondary: const IconDataDuotone(0x10f729), - ); - - /// Brands Vue.js icon - /// - /// https://fontawesome.com/icons/vuejs?style=brands - static const IconData vuejs = const IconDataBrands(0xf41f); - - /// Regular Covered Wagon icon - /// - /// https://fontawesome.com/icons/wagon-covered?style=regular - /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData wagonCovered = const IconDataRegular(0xf8ee); - - /// Light Covered Wagon icon - /// - /// https://fontawesome.com/icons/light_wagon-covered?style=light - /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData lightWagonCovered = const IconDataLight(0xf8ee); - - /// Solid Covered Wagon icon - /// - /// https://fontawesome.com/icons/wagon-covered?style=solid - /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconData solidWagonCovered = const IconDataSolid(0xf8ee); - - /// Duotone Covered Wagon icon - /// - /// https://fontawesome.com/icons/duotone_wagon-covered?style=duotone - /// contestoga, dysentery, oregon trail, stagecoach, vehicle, western, wheel - static const IconDataDuotone duotoneWagonCovered = const IconDataDuotone( - 0xf8ee, - secondary: const IconDataDuotone(0x10f8ee), - ); - - /// Regular Walker icon - /// - /// https://fontawesome.com/icons/walker?style=regular - /// accessibility, assistance, wheelchair - static const IconData walker = const IconDataRegular(0xf831); - - /// Solid Walker icon - /// - /// https://fontawesome.com/icons/walker?style=solid - /// accessibility, assistance, wheelchair - static const IconData solidWalker = const IconDataSolid(0xf831); - - /// Light Walker icon - /// - /// https://fontawesome.com/icons/light_walker?style=light - /// accessibility, assistance, wheelchair - static const IconData lightWalker = const IconDataLight(0xf831); - - /// Duotone Walker icon - /// - /// https://fontawesome.com/icons/duotone_walker?style=duotone - /// accessibility, assistance, wheelchair - static const IconDataDuotone duotoneWalker = const IconDataDuotone( - 0xf831, - secondary: const IconDataDuotone(0x10f831), - ); - - /// 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 = const IconDataRegular(0xf8ef); - - /// 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 = const IconDataSolid(0xf8ef); - - /// Light Walkie Talkie icon - /// - /// https://fontawesome.com/icons/light_walkie-talkie?style=light - /// communication, copy, intercom, over, portable, radio, two way radio - static const IconData lightWalkieTalkie = const IconDataLight(0xf8ef); - - /// Duotone Walkie Talkie icon - /// - /// https://fontawesome.com/icons/duotone_walkie-talkie?style=duotone - /// communication, copy, intercom, over, portable, radio, two way radio - static const IconDataDuotone duotoneWalkieTalkie = const IconDataDuotone( - 0xf8ef, - secondary: const IconDataDuotone(0x10f8ef), - ); - - /// Regular Walking icon - /// - /// https://fontawesome.com/icons/walking?style=regular - /// exercise, health, pedometer, person, steps - static const IconData walking = const IconDataRegular(0xf554); - - /// Solid Walking icon - /// - /// https://fontawesome.com/icons/walking?style=solid - /// exercise, health, pedometer, person, steps - static const IconData solidWalking = const IconDataSolid(0xf554); - - /// Light Walking icon - /// - /// https://fontawesome.com/icons/light_walking?style=light - /// exercise, health, pedometer, person, steps - static const IconData lightWalking = const IconDataLight(0xf554); - - /// Duotone Walking icon - /// - /// https://fontawesome.com/icons/duotone_walking?style=duotone - /// exercise, health, pedometer, person, steps - static const IconDataDuotone duotoneWalking = const IconDataDuotone( - 0xf554, - secondary: const IconDataDuotone(0x10f554), - ); - - /// Regular Wallet icon - /// - /// https://fontawesome.com/icons/wallet?style=regular - /// billfold, cash, currency, money - static const IconData wallet = const IconDataRegular(0xf555); - - /// Solid Wallet icon - /// - /// https://fontawesome.com/icons/wallet?style=solid - /// billfold, cash, currency, money - static const IconData solidWallet = const IconDataSolid(0xf555); - - /// Light Wallet icon - /// - /// https://fontawesome.com/icons/light_wallet?style=light - /// billfold, cash, currency, money - static const IconData lightWallet = const IconDataLight(0xf555); - - /// Duotone Wallet icon - /// - /// https://fontawesome.com/icons/duotone_wallet?style=duotone - /// billfold, cash, currency, money - static const IconDataDuotone duotoneWallet = const IconDataDuotone( - 0xf555, - secondary: const IconDataDuotone(0x10f555), - ); - - /// Regular Wand icon - /// - /// https://fontawesome.com/icons/wand?style=regular - /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData wand = const IconDataRegular(0xf72a); - - /// Solid Wand icon - /// - /// https://fontawesome.com/icons/wand?style=solid - /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData solidWand = const IconDataSolid(0xf72a); - - /// Light Wand icon - /// - /// https://fontawesome.com/icons/light_wand?style=light - /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconData lightWand = const IconDataLight(0xf72a); - - /// Duotone Wand icon - /// - /// https://fontawesome.com/icons/duotone_wand?style=duotone - /// Dungeons & Dragons, d&d, dnd, fantasy, halloween, holiday, magic, weapon - static const IconDataDuotone duotoneWand = const IconDataDuotone( - 0xf72a, - secondary: const IconDataDuotone(0x10f72a), - ); - - /// Regular Wand Magic icon - /// - /// https://fontawesome.com/icons/wand-magic?style=regular - /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData wandMagic = const IconDataRegular(0xf72b); - - /// Solid Wand Magic icon - /// - /// https://fontawesome.com/icons/wand-magic?style=solid - /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData solidWandMagic = const IconDataSolid(0xf72b); - - /// Light Wand Magic icon - /// - /// https://fontawesome.com/icons/light_wand-magic?style=light - /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconData lightWandMagic = const IconDataLight(0xf72b); - - /// Duotone Wand Magic icon - /// - /// https://fontawesome.com/icons/duotone_wand-magic?style=duotone - /// autocomplete, automatic, fantasy, halloween, holiday, magic, weapon, witch, wizard - static const IconDataDuotone duotoneWandMagic = const IconDataDuotone( - 0xf72b, - secondary: const IconDataDuotone(0x10f72b), - ); - - /// Regular Warehouse icon - /// - /// https://fontawesome.com/icons/warehouse?style=regular - /// building, capacity, garage, inventory, storage - static const IconData warehouse = const IconDataRegular(0xf494); - - /// Solid Warehouse icon - /// - /// https://fontawesome.com/icons/warehouse?style=solid - /// building, capacity, garage, inventory, storage - static const IconData solidWarehouse = const IconDataSolid(0xf494); - - /// Light Warehouse icon - /// - /// https://fontawesome.com/icons/light_warehouse?style=light - /// building, capacity, garage, inventory, storage - static const IconData lightWarehouse = const IconDataLight(0xf494); - - /// Duotone Warehouse icon - /// - /// https://fontawesome.com/icons/duotone_warehouse?style=duotone - /// building, capacity, garage, inventory, storage - static const IconDataDuotone duotoneWarehouse = const IconDataDuotone( - 0xf494, - secondary: const IconDataDuotone(0x10f494), - ); - - /// Regular Alternate Warehouse icon - /// - /// https://fontawesome.com/icons/warehouse-alt?style=regular - /// building, capacity, garage, inventory, storage - static const IconData warehouseAlt = const IconDataRegular(0xf495); - - /// Solid Alternate Warehouse icon - /// - /// https://fontawesome.com/icons/warehouse-alt?style=solid - /// building, capacity, garage, inventory, storage - static const IconData solidWarehouseAlt = const IconDataSolid(0xf495); - - /// Light Alternate Warehouse icon - /// - /// https://fontawesome.com/icons/light_warehouse-alt?style=light - /// building, capacity, garage, inventory, storage - static const IconData lightWarehouseAlt = const IconDataLight(0xf495); - - /// Duotone Alternate Warehouse icon - /// - /// https://fontawesome.com/icons/duotone_warehouse-alt?style=duotone - /// building, capacity, garage, inventory, storage - static const IconDataDuotone duotoneWarehouseAlt = const IconDataDuotone( - 0xf495, - secondary: const IconDataDuotone(0x10f495), - ); - - /// Regular Washer icon - /// - /// https://fontawesome.com/icons/washer?style=regular - /// clean, clothes, laundromat, laundry, washing machine - static const IconData washer = const IconDataRegular(0xf898); - - /// Solid Washer icon - /// - /// https://fontawesome.com/icons/washer?style=solid - /// clean, clothes, laundromat, laundry, washing machine - static const IconData solidWasher = const IconDataSolid(0xf898); - - /// Light Washer icon - /// - /// https://fontawesome.com/icons/light_washer?style=light - /// clean, clothes, laundromat, laundry, washing machine - static const IconData lightWasher = const IconDataLight(0xf898); - - /// Duotone Washer icon - /// - /// https://fontawesome.com/icons/duotone_washer?style=duotone - /// clean, clothes, laundromat, laundry, washing machine - static const IconDataDuotone duotoneWasher = const IconDataDuotone( - 0xf898, - secondary: const IconDataDuotone(0x10f898), - ); - - /// Regular Watch icon - /// - /// https://fontawesome.com/icons/watch?style=regular - /// alert, clock, time, wristwatch - static const IconData watch = const IconDataRegular(0xf2e1); - - /// Solid Watch icon - /// - /// https://fontawesome.com/icons/watch?style=solid - /// alert, clock, time, wristwatch - static const IconData solidWatch = const IconDataSolid(0xf2e1); - - /// Light Watch icon - /// - /// https://fontawesome.com/icons/light_watch?style=light - /// alert, clock, time, wristwatch - static const IconData lightWatch = const IconDataLight(0xf2e1); - - /// Duotone Watch icon - /// - /// https://fontawesome.com/icons/duotone_watch?style=duotone - /// alert, clock, time, wristwatch - static const IconDataDuotone duotoneWatch = const IconDataDuotone( - 0xf2e1, - secondary: const IconDataDuotone(0x10f2e1), - ); - - /// Regular Calculator Watch icon - /// - /// https://fontawesome.com/icons/watch-calculator?style=regular - /// casio, digital, math, time - static const IconData watchCalculator = const IconDataRegular(0xf8f0); - - /// Solid Calculator Watch icon - /// - /// https://fontawesome.com/icons/watch-calculator?style=solid - /// casio, digital, math, time - static const IconData solidWatchCalculator = const IconDataSolid(0xf8f0); - - /// Light Calculator Watch icon - /// - /// https://fontawesome.com/icons/light_watch-calculator?style=light - /// casio, digital, math, time - static const IconData lightWatchCalculator = const IconDataLight(0xf8f0); - - /// Duotone Calculator Watch icon - /// - /// https://fontawesome.com/icons/duotone_watch-calculator?style=duotone - /// casio, digital, math, time - static const IconDataDuotone duotoneWatchCalculator = const IconDataDuotone( - 0xf8f0, - secondary: const IconDataDuotone(0x10f8f0), - ); - - /// Regular Watch Fitness icon - /// - /// https://fontawesome.com/icons/watch-fitness?style=regular - /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData watchFitness = const IconDataRegular(0xf63e); - - /// Solid Watch Fitness icon - /// - /// https://fontawesome.com/icons/watch-fitness?style=solid - /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData solidWatchFitness = const IconDataSolid(0xf63e); - - /// Light Watch Fitness icon - /// - /// https://fontawesome.com/icons/light_watch-fitness?style=light - /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconData lightWatchFitness = const IconDataLight(0xf63e); - - /// Duotone Watch Fitness icon - /// - /// https://fontawesome.com/icons/duotone_watch-fitness?style=duotone - /// Fitbit, alert, apple watch, clock, pedometer, time, wristwatch - static const IconDataDuotone duotoneWatchFitness = const IconDataDuotone( - 0xf63e, - secondary: const IconDataDuotone(0x10f63e), - ); - - /// Brands Watchman Monitoring icon - /// - /// https://fontawesome.com/icons/watchman-monitoring?style=brands - static const IconData watchmanMonitoring = const IconDataBrands(0xe087); - - /// Regular Water icon - /// - /// https://fontawesome.com/icons/water?style=regular - /// lake, liquid, ocean, sea, swim, wet - static const IconData water = const IconDataRegular(0xf773); - - /// Solid Water icon - /// - /// https://fontawesome.com/icons/water?style=solid - /// lake, liquid, ocean, sea, swim, wet - static const IconData solidWater = const IconDataSolid(0xf773); - - /// Light Water icon - /// - /// https://fontawesome.com/icons/light_water?style=light - /// lake, liquid, ocean, sea, swim, wet - static const IconData lightWater = const IconDataLight(0xf773); - - /// Duotone Water icon - /// - /// https://fontawesome.com/icons/duotone_water?style=duotone - /// lake, liquid, ocean, sea, swim, wet - static const IconDataDuotone duotoneWater = const IconDataDuotone( - 0xf773, - secondary: const IconDataDuotone(0x10f773), - ); - - /// Regular Lower Water Level icon - /// - /// https://fontawesome.com/icons/water-lower?style=regular - /// flood, lake, liquid, ocean, recede, sea, swim, wet - static const IconData waterLower = const IconDataRegular(0xf774); - - /// Solid Lower Water Level icon - /// - /// https://fontawesome.com/icons/water-lower?style=solid - /// flood, lake, liquid, ocean, recede, sea, swim, wet - static const IconData solidWaterLower = const IconDataSolid(0xf774); - - /// Light Lower Water Level icon - /// - /// https://fontawesome.com/icons/light_water-lower?style=light - /// flood, lake, liquid, ocean, recede, sea, swim, wet - static const IconData lightWaterLower = const IconDataLight(0xf774); - - /// Duotone Lower Water Level icon - /// - /// https://fontawesome.com/icons/duotone_water-lower?style=duotone - /// flood, lake, liquid, ocean, recede, sea, swim, wet - static const IconDataDuotone duotoneWaterLower = const IconDataDuotone( - 0xf774, - secondary: const IconDataDuotone(0x10f774), - ); - - /// Regular Rising Water Level icon - /// - /// https://fontawesome.com/icons/water-rise?style=regular - /// flood, lake, liquid, ocean, sea, swim, wet - static const IconData waterRise = const IconDataRegular(0xf775); - - /// Solid Rising Water Level icon - /// - /// https://fontawesome.com/icons/water-rise?style=solid - /// flood, lake, liquid, ocean, sea, swim, wet - static const IconData solidWaterRise = const IconDataSolid(0xf775); - - /// Light Rising Water Level icon - /// - /// https://fontawesome.com/icons/light_water-rise?style=light - /// flood, lake, liquid, ocean, sea, swim, wet - static const IconData lightWaterRise = const IconDataLight(0xf775); - - /// Duotone Rising Water Level icon - /// - /// https://fontawesome.com/icons/duotone_water-rise?style=duotone - /// flood, lake, liquid, ocean, sea, swim, wet - static const IconDataDuotone duotoneWaterRise = const IconDataDuotone( - 0xf775, - secondary: const IconDataDuotone(0x10f775), - ); - - /// Regular Sine Wave icon - /// - /// https://fontawesome.com/icons/wave-sine?style=regular - /// frequency, pulse, signal - static const IconData waveSine = const IconDataRegular(0xf899); - - /// Solid Sine Wave icon - /// - /// https://fontawesome.com/icons/wave-sine?style=solid - /// frequency, pulse, signal - static const IconData solidWaveSine = const IconDataSolid(0xf899); - - /// Light Sine Wave icon - /// - /// https://fontawesome.com/icons/light_wave-sine?style=light - /// frequency, pulse, signal - static const IconData lightWaveSine = const IconDataLight(0xf899); - - /// Duotone Sine Wave icon - /// - /// https://fontawesome.com/icons/duotone_wave-sine?style=duotone - /// frequency, pulse, signal - static const IconDataDuotone duotoneWaveSine = const IconDataDuotone( - 0xf899, - secondary: const IconDataDuotone(0x10f899), - ); - - /// Regular Square Wave icon - /// - /// https://fontawesome.com/icons/wave-square?style=regular - /// frequency, pulse, signal - static const IconData waveSquare = const IconDataRegular(0xf83e); - - /// Light Square Wave icon - /// - /// https://fontawesome.com/icons/light_wave-square?style=light - /// frequency, pulse, signal - static const IconData lightWaveSquare = const IconDataLight(0xf83e); - - /// Solid Square Wave icon - /// - /// https://fontawesome.com/icons/wave-square?style=solid - /// frequency, pulse, signal - static const IconData solidWaveSquare = const IconDataSolid(0xf83e); - - /// Duotone Square Wave icon - /// - /// https://fontawesome.com/icons/duotone_wave-square?style=duotone - /// frequency, pulse, signal - static const IconDataDuotone duotoneWaveSquare = const IconDataDuotone( - 0xf83e, - secondary: const IconDataDuotone(0x10f83e), - ); - - /// Regular Triangle Wave icon - /// - /// https://fontawesome.com/icons/wave-triangle?style=regular - /// frequency, pulse, signal - static const IconData waveTriangle = const IconDataRegular(0xf89a); - - /// Solid Triangle Wave icon - /// - /// https://fontawesome.com/icons/wave-triangle?style=solid - /// frequency, pulse, signal - static const IconData solidWaveTriangle = const IconDataSolid(0xf89a); - - /// Light Triangle Wave icon - /// - /// https://fontawesome.com/icons/light_wave-triangle?style=light - /// frequency, pulse, signal - static const IconData lightWaveTriangle = const IconDataLight(0xf89a); - - /// Duotone Triangle Wave icon - /// - /// https://fontawesome.com/icons/duotone_wave-triangle?style=duotone - /// frequency, pulse, signal - static const IconDataDuotone duotoneWaveTriangle = const IconDataDuotone( - 0xf89a, - secondary: const IconDataDuotone(0x10f89a), - ); - - /// Regular Waveform icon - /// - /// https://fontawesome.com/icons/waveform?style=regular - /// amplitude, sound, soundwave - static const IconData waveform = const IconDataRegular(0xf8f1); - - /// Solid Waveform icon - /// - /// https://fontawesome.com/icons/waveform?style=solid - /// amplitude, sound, soundwave - static const IconData solidWaveform = const IconDataSolid(0xf8f1); - - /// Light Waveform icon - /// - /// https://fontawesome.com/icons/light_waveform?style=light - /// amplitude, sound, soundwave - static const IconData lightWaveform = const IconDataLight(0xf8f1); - - /// Duotone Waveform icon - /// - /// https://fontawesome.com/icons/duotone_waveform?style=duotone - /// amplitude, sound, soundwave - static const IconDataDuotone duotoneWaveform = const IconDataDuotone( - 0xf8f1, - secondary: const IconDataDuotone(0x10f8f1), - ); - - /// Regular Waveform Path icon - /// - /// https://fontawesome.com/icons/waveform-path?style=regular - /// amplitude, sound, soundwave - static const IconData waveformPath = const IconDataRegular(0xf8f2); - - /// Solid Waveform Path icon - /// - /// https://fontawesome.com/icons/waveform-path?style=solid - /// amplitude, sound, soundwave - static const IconData solidWaveformPath = const IconDataSolid(0xf8f2); - - /// Light Waveform Path icon - /// - /// https://fontawesome.com/icons/light_waveform-path?style=light - /// amplitude, sound, soundwave - static const IconData lightWaveformPath = const IconDataLight(0xf8f2); - - /// Duotone Waveform Path icon - /// - /// https://fontawesome.com/icons/duotone_waveform-path?style=duotone - /// amplitude, sound, soundwave - static const IconDataDuotone duotoneWaveformPath = const IconDataDuotone( - 0xf8f2, - secondary: const IconDataDuotone(0x10f8f2), - ); - - /// Brands Waze icon - /// - /// https://fontawesome.com/icons/waze?style=brands - static const IconData waze = const IconDataBrands(0xf83f); - - /// Regular Webcam icon - /// - /// https://fontawesome.com/icons/webcam?style=regular - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData webcam = const IconDataRegular(0xf832); - - /// Solid Webcam icon - /// - /// https://fontawesome.com/icons/webcam?style=solid - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData solidWebcam = const IconDataSolid(0xf832); - - /// Light Webcam icon - /// - /// https://fontawesome.com/icons/light_webcam?style=light - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData lightWebcam = const IconDataLight(0xf832); - - /// Duotone Webcam icon - /// - /// https://fontawesome.com/icons/duotone_webcam?style=duotone - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconDataDuotone duotoneWebcam = const IconDataDuotone( - 0xf832, - secondary: const IconDataDuotone(0x10f832), - ); - - /// Regular Webcam Slash icon - /// - /// https://fontawesome.com/icons/webcam-slash?style=regular - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData webcamSlash = const IconDataRegular(0xf833); - - /// Solid Webcam Slash icon - /// - /// https://fontawesome.com/icons/webcam-slash?style=solid - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData solidWebcamSlash = const IconDataSolid(0xf833); - - /// Light Webcam Slash icon - /// - /// https://fontawesome.com/icons/light_webcam-slash?style=light - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconData lightWebcamSlash = const IconDataLight(0xf833); - - /// Duotone Webcam Slash icon - /// - /// https://fontawesome.com/icons/duotone_webcam-slash?style=duotone - /// chat, conference call, facetime, podcast, video, videoconferencing, youtube - static const IconDataDuotone duotoneWebcamSlash = const IconDataDuotone( - 0xf833, - secondary: const IconDataDuotone(0x10f833), - ); - - /// Brands Weebly icon - /// - /// https://fontawesome.com/icons/weebly?style=brands - static const IconData weebly = const IconDataBrands(0xf5cc); - - /// Brands Weibo icon - /// - /// https://fontawesome.com/icons/weibo?style=brands - static const IconData weibo = const IconDataBrands(0xf18a); - - /// Regular Weight icon - /// - /// https://fontawesome.com/icons/weight?style=regular - /// health, measurement, scale, weight - static const IconData weight = const IconDataRegular(0xf496); - - /// Solid Weight icon - /// - /// https://fontawesome.com/icons/weight?style=solid - /// health, measurement, scale, weight - static const IconData solidWeight = const IconDataSolid(0xf496); - - /// Light Weight icon - /// - /// https://fontawesome.com/icons/light_weight?style=light - /// health, measurement, scale, weight - static const IconData lightWeight = const IconDataLight(0xf496); - - /// Duotone Weight icon - /// - /// https://fontawesome.com/icons/duotone_weight?style=duotone - /// health, measurement, scale, weight - static const IconDataDuotone duotoneWeight = const IconDataDuotone( - 0xf496, - secondary: const IconDataDuotone(0x10f496), - ); - - /// Regular Hanging Weight icon - /// - /// https://fontawesome.com/icons/weight-hanging?style=regular - /// anvil, heavy, measurement - static const IconData weightHanging = const IconDataRegular(0xf5cd); - - /// Solid Hanging Weight icon - /// - /// https://fontawesome.com/icons/weight-hanging?style=solid - /// anvil, heavy, measurement - static const IconData solidWeightHanging = const IconDataSolid(0xf5cd); - - /// Light Hanging Weight icon - /// - /// https://fontawesome.com/icons/light_weight-hanging?style=light - /// anvil, heavy, measurement - static const IconData lightWeightHanging = const IconDataLight(0xf5cd); - - /// Duotone Hanging Weight icon - /// - /// https://fontawesome.com/icons/duotone_weight-hanging?style=duotone - /// anvil, heavy, measurement - static const IconDataDuotone duotoneWeightHanging = const IconDataDuotone( - 0xf5cd, - secondary: const IconDataDuotone(0x10f5cd), - ); - - /// Brands Weixin (WeChat) icon - /// - /// https://fontawesome.com/icons/weixin?style=brands - static const IconData weixin = const IconDataBrands(0xf1d7); - - /// Regular Whale icon - /// - /// https://fontawesome.com/icons/whale?style=regular - /// fauna, mammal, swimming - static const IconData whale = const IconDataRegular(0xf72c); - - /// Solid Whale icon - /// - /// https://fontawesome.com/icons/whale?style=solid - /// fauna, mammal, swimming - static const IconData solidWhale = const IconDataSolid(0xf72c); - - /// Light Whale icon - /// - /// https://fontawesome.com/icons/light_whale?style=light - /// fauna, mammal, swimming - static const IconData lightWhale = const IconDataLight(0xf72c); - - /// Duotone Whale icon - /// - /// https://fontawesome.com/icons/duotone_whale?style=duotone - /// fauna, mammal, swimming - static const IconDataDuotone duotoneWhale = const IconDataDuotone( - 0xf72c, - secondary: const IconDataDuotone(0x10f72c), - ); - - /// Brands What's App icon - /// - /// https://fontawesome.com/icons/whatsapp?style=brands - static const IconData whatsapp = const IconDataBrands(0xf232); - - /// Brands What's App Square icon - /// - /// https://fontawesome.com/icons/whatsapp-square?style=brands - static const IconData whatsappSquare = const IconDataBrands(0xf40c); - - /// Regular Wheat icon - /// - /// https://fontawesome.com/icons/wheat?style=regular - /// argriculture, fall, farming, grain, seasonal - static const IconData wheat = const IconDataRegular(0xf72d); - - /// Solid Wheat icon - /// - /// https://fontawesome.com/icons/wheat?style=solid - /// argriculture, fall, farming, grain, seasonal - static const IconData solidWheat = const IconDataSolid(0xf72d); - - /// Light Wheat icon - /// - /// https://fontawesome.com/icons/light_wheat?style=light - /// argriculture, fall, farming, grain, seasonal - static const IconData lightWheat = const IconDataLight(0xf72d); - - /// Duotone Wheat icon - /// - /// https://fontawesome.com/icons/duotone_wheat?style=duotone - /// argriculture, fall, farming, grain, seasonal - static const IconDataDuotone duotoneWheat = const IconDataDuotone( - 0xf72d, - secondary: const IconDataDuotone(0x10f72d), - ); - - /// Regular Wheelchair icon - /// - /// https://fontawesome.com/icons/wheelchair?style=regular - /// accessible, handicap, person - static const IconData wheelchair = const IconDataRegular(0xf193); - - /// Solid Wheelchair icon - /// - /// https://fontawesome.com/icons/wheelchair?style=solid - /// accessible, handicap, person - static const IconData solidWheelchair = const IconDataSolid(0xf193); - - /// Light Wheelchair icon - /// - /// https://fontawesome.com/icons/light_wheelchair?style=light - /// accessible, handicap, person - static const IconData lightWheelchair = const IconDataLight(0xf193); - - /// Duotone Wheelchair icon - /// - /// https://fontawesome.com/icons/duotone_wheelchair?style=duotone - /// accessible, handicap, person - static const IconDataDuotone duotoneWheelchair = const IconDataDuotone( - 0xf193, - secondary: const IconDataDuotone(0x10f193), - ); - - /// Regular Whistle icon - /// - /// https://fontawesome.com/icons/whistle?style=regular - /// alert, single, sound, toot - static const IconData whistle = const IconDataRegular(0xf460); - - /// Solid Whistle icon - /// - /// https://fontawesome.com/icons/whistle?style=solid - /// alert, single, sound, toot - static const IconData solidWhistle = const IconDataSolid(0xf460); - - /// Light Whistle icon - /// - /// https://fontawesome.com/icons/light_whistle?style=light - /// alert, single, sound, toot - static const IconData lightWhistle = const IconDataLight(0xf460); - - /// Duotone Whistle icon - /// - /// https://fontawesome.com/icons/duotone_whistle?style=duotone - /// alert, single, sound, toot - static const IconDataDuotone duotoneWhistle = const IconDataDuotone( - 0xf460, - secondary: const IconDataDuotone(0x10f460), - ); - - /// Brands WHMCS icon - /// - /// https://fontawesome.com/icons/whmcs?style=brands - static const IconData whmcs = const IconDataBrands(0xf40d); - - /// Regular WiFi icon - /// - /// https://fontawesome.com/icons/wifi?style=regular - /// connection, hotspot, internet, network, wireless - static const IconData wifi = const IconDataRegular(0xf1eb); - - /// Solid WiFi icon - /// - /// https://fontawesome.com/icons/wifi?style=solid - /// connection, hotspot, internet, network, wireless - static const IconData solidWifi = const IconDataSolid(0xf1eb); - - /// Light WiFi icon - /// - /// https://fontawesome.com/icons/light_wifi?style=light - /// connection, hotspot, internet, network, wireless - static const IconData lightWifi = const IconDataLight(0xf1eb); - - /// Duotone WiFi icon - /// - /// https://fontawesome.com/icons/duotone_wifi?style=duotone - /// connection, hotspot, internet, network, wireless - static const IconDataDuotone duotoneWifi = const IconDataDuotone( - 0xf1eb, - secondary: const IconDataDuotone(0x10f1eb), - ); - - /// Regular Wifi 1 icon - /// - /// https://fontawesome.com/icons/wifi-1?style=regular - /// connection, hotspot, internet, network, weak, wireless - static const IconData wifi1 = const IconDataRegular(0xf6aa); - - /// Solid Wifi 1 icon - /// - /// https://fontawesome.com/icons/wifi-1?style=solid - /// connection, hotspot, internet, network, weak, wireless - static const IconData solidWifi1 = const IconDataSolid(0xf6aa); - - /// Light Wifi 1 icon - /// - /// https://fontawesome.com/icons/light_wifi-1?style=light - /// connection, hotspot, internet, network, weak, wireless - static const IconData lightWifi1 = const IconDataLight(0xf6aa); - - /// Duotone Wifi 1 icon - /// - /// https://fontawesome.com/icons/duotone_wifi-1?style=duotone - /// connection, hotspot, internet, network, weak, wireless - static const IconDataDuotone duotoneWifi1 = const IconDataDuotone( - 0xf6aa, - secondary: const IconDataDuotone(0x10f6aa), - ); - - /// Regular Wifi 2 icon - /// - /// https://fontawesome.com/icons/wifi-2?style=regular - /// average, connection, hotspot, internet, network, wireless - static const IconData wifi2 = const IconDataRegular(0xf6ab); - - /// Solid Wifi 2 icon - /// - /// https://fontawesome.com/icons/wifi-2?style=solid - /// average, connection, hotspot, internet, network, wireless - static const IconData solidWifi2 = const IconDataSolid(0xf6ab); - - /// Light Wifi 2 icon - /// - /// https://fontawesome.com/icons/light_wifi-2?style=light - /// average, connection, hotspot, internet, network, wireless - static const IconData lightWifi2 = const IconDataLight(0xf6ab); - - /// Duotone Wifi 2 icon - /// - /// https://fontawesome.com/icons/duotone_wifi-2?style=duotone - /// average, connection, hotspot, internet, network, wireless - static const IconDataDuotone duotoneWifi2 = const IconDataDuotone( - 0xf6ab, - secondary: const IconDataDuotone(0x10f6ab), - ); - - /// Regular Wifi Slash icon - /// - /// https://fontawesome.com/icons/wifi-slash?style=regular - /// ban, broken, connection, disabled, hotspot, internet, network, unavailable, wireless - static const IconData wifiSlash = const IconDataRegular(0xf6ac); - - /// Solid Wifi Slash icon - /// - /// https://fontawesome.com/icons/wifi-slash?style=solid - /// ban, broken, connection, disabled, hotspot, internet, network, unavailable, wireless - static const IconData solidWifiSlash = const IconDataSolid(0xf6ac); - - /// Light Wifi Slash icon - /// - /// https://fontawesome.com/icons/light_wifi-slash?style=light - /// ban, broken, connection, disabled, hotspot, internet, network, unavailable, wireless - static const IconData lightWifiSlash = const IconDataLight(0xf6ac); - - /// Duotone Wifi Slash icon - /// - /// https://fontawesome.com/icons/duotone_wifi-slash?style=duotone - /// ban, broken, connection, disabled, hotspot, internet, network, unavailable, wireless - static const IconDataDuotone duotoneWifiSlash = const IconDataDuotone( - 0xf6ac, - secondary: const IconDataDuotone(0x10f6ac), - ); - - /// Brands Wikipedia W icon - /// - /// https://fontawesome.com/icons/wikipedia-w?style=brands - static const IconData wikipediaW = const IconDataBrands(0xf266); - - /// Regular Wind icon - /// - /// https://fontawesome.com/icons/wind?style=regular - /// air, blow, breeze, fall, seasonal, weather - static const IconData wind = const IconDataRegular(0xf72e); - - /// Solid Wind icon - /// - /// https://fontawesome.com/icons/wind?style=solid - /// air, blow, breeze, fall, seasonal, weather - static const IconData solidWind = const IconDataSolid(0xf72e); - - /// Light Wind icon - /// - /// https://fontawesome.com/icons/light_wind?style=light - /// air, blow, breeze, fall, seasonal, weather - static const IconData lightWind = const IconDataLight(0xf72e); - - /// Duotone Wind icon - /// - /// https://fontawesome.com/icons/duotone_wind?style=duotone - /// air, blow, breeze, fall, seasonal, weather - static const IconDataDuotone duotoneWind = const IconDataDuotone( - 0xf72e, - secondary: const IconDataDuotone(0x10f72e), - ); - - /// Regular Wind Turbine icon - /// - /// https://fontawesome.com/icons/wind-turbine?style=regular - /// electricity, energy, generator, renewable, wind power, windmill - static const IconData windTurbine = const IconDataRegular(0xf89b); - - /// Solid Wind Turbine icon - /// - /// https://fontawesome.com/icons/wind-turbine?style=solid - /// electricity, energy, generator, renewable, wind power, windmill - static const IconData solidWindTurbine = const IconDataSolid(0xf89b); - - /// Light Wind Turbine icon - /// - /// https://fontawesome.com/icons/light_wind-turbine?style=light - /// electricity, energy, generator, renewable, wind power, windmill - static const IconData lightWindTurbine = const IconDataLight(0xf89b); - - /// Duotone Wind Turbine icon - /// - /// https://fontawesome.com/icons/duotone_wind-turbine?style=duotone - /// electricity, energy, generator, renewable, wind power, windmill - static const IconDataDuotone duotoneWindTurbine = const IconDataDuotone( - 0xf89b, - secondary: const IconDataDuotone(0x10f89b), - ); - - /// Regular Wind Warning icon - /// - /// https://fontawesome.com/icons/wind-warning?style=regular - /// air, alert, blow, breeze, fall, hurricane, seasonal, tornado, weather - static const IconData windWarning = const IconDataRegular(0xf776); - - /// Solid Wind Warning icon - /// - /// https://fontawesome.com/icons/wind-warning?style=solid - /// air, alert, blow, breeze, fall, hurricane, seasonal, tornado, weather - static const IconData solidWindWarning = const IconDataSolid(0xf776); - - /// Light Wind Warning icon - /// - /// https://fontawesome.com/icons/light_wind-warning?style=light - /// air, alert, blow, breeze, fall, hurricane, seasonal, tornado, weather - static const IconData lightWindWarning = const IconDataLight(0xf776); - - /// Duotone Wind Warning icon - /// - /// https://fontawesome.com/icons/duotone_wind-warning?style=duotone - /// air, alert, blow, breeze, fall, hurricane, seasonal, tornado, weather - static const IconDataDuotone duotoneWindWarning = const IconDataDuotone( - 0xf776, - secondary: const IconDataDuotone(0x10f776), - ); - - /// Regular Window icon - /// - /// https://fontawesome.com/icons/window?style=regular - /// browser, computer, development - static const IconData window = const IconDataRegular(0xf40e); - - /// Solid Window icon - /// - /// https://fontawesome.com/icons/window?style=solid - /// browser, computer, development - static const IconData solidWindow = const IconDataSolid(0xf40e); - - /// Light Window icon - /// - /// https://fontawesome.com/icons/light_window?style=light - /// browser, computer, development - static const IconData lightWindow = const IconDataLight(0xf40e); - - /// Duotone Window icon - /// - /// https://fontawesome.com/icons/duotone_window?style=duotone - /// browser, computer, development - static const IconDataDuotone duotoneWindow = const IconDataDuotone( - 0xf40e, - secondary: const IconDataDuotone(0x10f40e), - ); - - /// Regular Alternate Window icon - /// - /// https://fontawesome.com/icons/window-alt?style=regular - /// browser, computer, development - static const IconData windowAlt = const IconDataRegular(0xf40f); - - /// Solid Alternate Window icon - /// - /// https://fontawesome.com/icons/window-alt?style=solid - /// browser, computer, development - static const IconData solidWindowAlt = const IconDataSolid(0xf40f); - - /// Light Alternate Window icon - /// - /// https://fontawesome.com/icons/light_window-alt?style=light - /// browser, computer, development - static const IconData lightWindowAlt = const IconDataLight(0xf40f); - - /// Duotone Alternate Window icon - /// - /// https://fontawesome.com/icons/duotone_window-alt?style=duotone - /// browser, computer, development - static const IconDataDuotone duotoneWindowAlt = const IconDataDuotone( - 0xf40f, - secondary: const IconDataDuotone(0x10f40f), - ); - - /// Regular Window Close icon - /// - /// https://fontawesome.com/icons/window-close?style=regular - /// browser, cancel, computer, development - static const IconData windowClose = const IconDataRegular(0xf410); - - /// Solid Window Close icon - /// - /// https://fontawesome.com/icons/window-close?style=solid - /// browser, cancel, computer, development - static const IconData solidWindowClose = const IconDataSolid(0xf410); - - /// Light Window Close icon - /// - /// https://fontawesome.com/icons/light_window-close?style=light - /// browser, cancel, computer, development - static const IconData lightWindowClose = const IconDataLight(0xf410); - - /// Duotone Window Close icon - /// - /// https://fontawesome.com/icons/duotone_window-close?style=duotone - /// browser, cancel, computer, development - static const IconDataDuotone duotoneWindowClose = const IconDataDuotone( - 0xf410, - secondary: const IconDataDuotone(0x10f410), - ); - - /// Regular House Window icon - /// - /// https://fontawesome.com/icons/window-frame?style=regular - /// door, glass, pane, view, window - static const IconData windowFrame = const IconDataRegular(0xe04f); - - /// Solid House Window icon - /// - /// https://fontawesome.com/icons/window-frame?style=solid - /// door, glass, pane, view, window - static const IconData solidWindowFrame = const IconDataSolid(0xe04f); - - /// Light House Window icon - /// - /// https://fontawesome.com/icons/light_window-frame?style=light - /// door, glass, pane, view, window - static const IconData lightWindowFrame = const IconDataLight(0xe04f); - - /// Duotone House Window icon - /// - /// https://fontawesome.com/icons/duotone_window-frame?style=duotone - /// door, glass, pane, view, window - static const IconDataDuotone duotoneWindowFrame = const IconDataDuotone( - 0xe04f, - secondary: const IconDataDuotone(0x10e04f), - ); - - /// Regular House Window Open icon - /// - /// https://fontawesome.com/icons/window-frame-open?style=regular - /// door, glass, pane, view, window - static const IconData windowFrameOpen = const IconDataRegular(0xe050); - - /// Solid House Window Open icon - /// - /// https://fontawesome.com/icons/window-frame-open?style=solid - /// door, glass, pane, view, window - static const IconData solidWindowFrameOpen = const IconDataSolid(0xe050); - - /// Light House Window Open icon - /// - /// https://fontawesome.com/icons/light_window-frame-open?style=light - /// door, glass, pane, view, window - static const IconData lightWindowFrameOpen = const IconDataLight(0xe050); - - /// Duotone House Window Open icon - /// - /// https://fontawesome.com/icons/duotone_window-frame-open?style=duotone - /// door, glass, pane, view, window - static const IconDataDuotone duotoneWindowFrameOpen = const IconDataDuotone( - 0xe050, - secondary: const IconDataDuotone(0x10e050), - ); - - /// Regular Window Maximize icon - /// - /// https://fontawesome.com/icons/window-maximize?style=regular - /// browser, computer, development, expand - static const IconData windowMaximize = const IconDataRegular(0xf2d0); - - /// Solid Window Maximize icon - /// - /// https://fontawesome.com/icons/window-maximize?style=solid - /// browser, computer, development, expand - static const IconData solidWindowMaximize = const IconDataSolid(0xf2d0); - - /// Light Window Maximize icon - /// - /// https://fontawesome.com/icons/light_window-maximize?style=light - /// browser, computer, development, expand - static const IconData lightWindowMaximize = const IconDataLight(0xf2d0); - - /// Duotone Window Maximize icon - /// - /// https://fontawesome.com/icons/duotone_window-maximize?style=duotone - /// browser, computer, development, expand - static const IconDataDuotone duotoneWindowMaximize = const IconDataDuotone( - 0xf2d0, - secondary: const IconDataDuotone(0x10f2d0), - ); - - /// Regular Window Minimize icon - /// - /// https://fontawesome.com/icons/window-minimize?style=regular - /// browser, collapse, computer, development - static const IconData windowMinimize = const IconDataRegular(0xf2d1); - - /// Solid Window Minimize icon - /// - /// https://fontawesome.com/icons/window-minimize?style=solid - /// browser, collapse, computer, development - static const IconData solidWindowMinimize = const IconDataSolid(0xf2d1); - - /// Light Window Minimize icon - /// - /// https://fontawesome.com/icons/light_window-minimize?style=light - /// browser, collapse, computer, development - static const IconData lightWindowMinimize = const IconDataLight(0xf2d1); - - /// Duotone Window Minimize icon - /// - /// https://fontawesome.com/icons/duotone_window-minimize?style=duotone - /// browser, collapse, computer, development - static const IconDataDuotone duotoneWindowMinimize = const IconDataDuotone( - 0xf2d1, - secondary: const IconDataDuotone(0x10f2d1), - ); - - /// Regular Window Restore icon - /// - /// https://fontawesome.com/icons/window-restore?style=regular - /// browser, computer, development - static const IconData windowRestore = const IconDataRegular(0xf2d2); - - /// Solid Window Restore icon - /// - /// https://fontawesome.com/icons/window-restore?style=solid - /// browser, computer, development - static const IconData solidWindowRestore = const IconDataSolid(0xf2d2); - - /// Light Window Restore icon - /// - /// https://fontawesome.com/icons/light_window-restore?style=light - /// browser, computer, development - static const IconData lightWindowRestore = const IconDataLight(0xf2d2); - - /// Duotone Window Restore icon - /// - /// https://fontawesome.com/icons/duotone_window-restore?style=duotone - /// browser, computer, development - static const IconDataDuotone duotoneWindowRestore = const IconDataDuotone( - 0xf2d2, - secondary: const IconDataDuotone(0x10f2d2), - ); - - /// Brands Windows icon - /// - /// https://fontawesome.com/icons/windows?style=brands - /// microsoft, operating system, os - static const IconData windows = const IconDataBrands(0xf17a); - - /// Regular Windsock icon - /// - /// https://fontawesome.com/icons/windsock?style=regular - /// air, blow, breeze, fall, seasonal, weather - static const IconData windsock = const IconDataRegular(0xf777); - - /// Solid Windsock icon - /// - /// https://fontawesome.com/icons/windsock?style=solid - /// air, blow, breeze, fall, seasonal, weather - static const IconData solidWindsock = const IconDataSolid(0xf777); - - /// Light Windsock icon - /// - /// https://fontawesome.com/icons/light_windsock?style=light - /// air, blow, breeze, fall, seasonal, weather - static const IconData lightWindsock = const IconDataLight(0xf777); - - /// Duotone Windsock icon - /// - /// https://fontawesome.com/icons/duotone_windsock?style=duotone - /// air, blow, breeze, fall, seasonal, weather - static const IconDataDuotone duotoneWindsock = const IconDataDuotone( - 0xf777, - secondary: const IconDataDuotone(0x10f777), - ); - - /// Regular Wine Bottle icon - /// - /// https://fontawesome.com/icons/wine-bottle?style=regular - /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData wineBottle = const IconDataRegular(0xf72f); - - /// Solid Wine Bottle icon - /// - /// https://fontawesome.com/icons/wine-bottle?style=solid - /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData solidWineBottle = const IconDataSolid(0xf72f); - - /// Light Wine Bottle icon - /// - /// https://fontawesome.com/icons/light_wine-bottle?style=light - /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconData lightWineBottle = const IconDataLight(0xf72f); - - /// Duotone Wine Bottle icon - /// - /// https://fontawesome.com/icons/duotone_wine-bottle?style=duotone - /// alcohol, beverage, cabernet, drink, glass, grapes, merlot, sauvignon - static const IconDataDuotone duotoneWineBottle = const IconDataDuotone( - 0xf72f, - secondary: const IconDataDuotone(0x10f72f), - ); - - /// Regular Wine Glass icon - /// - /// https://fontawesome.com/icons/wine-glass?style=regular - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData wineGlass = const IconDataRegular(0xf4e3); - - /// Solid Wine Glass icon - /// - /// https://fontawesome.com/icons/wine-glass?style=solid - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData solidWineGlass = const IconDataSolid(0xf4e3); - - /// Light Wine Glass icon - /// - /// https://fontawesome.com/icons/light_wine-glass?style=light - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData lightWineGlass = const IconDataLight(0xf4e3); - - /// Duotone Wine Glass icon - /// - /// https://fontawesome.com/icons/duotone_wine-glass?style=duotone - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconDataDuotone duotoneWineGlass = const IconDataDuotone( - 0xf4e3, - secondary: const IconDataDuotone(0x10f4e3), - ); - - /// Regular Alternate Wine Glas icon - /// - /// https://fontawesome.com/icons/wine-glass-alt?style=regular - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData wineGlassAlt = const IconDataRegular(0xf5ce); - - /// Solid Alternate Wine Glas icon - /// - /// https://fontawesome.com/icons/wine-glass-alt?style=solid - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData solidWineGlassAlt = const IconDataSolid(0xf5ce); - - /// Light Alternate Wine Glas icon - /// - /// https://fontawesome.com/icons/light_wine-glass-alt?style=light - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconData lightWineGlassAlt = const IconDataLight(0xf5ce); - - /// Duotone Alternate Wine Glas icon - /// - /// https://fontawesome.com/icons/duotone_wine-glass-alt?style=duotone - /// alcohol, beverage, cabernet, drink, grapes, merlot, sauvignon - static const IconDataDuotone duotoneWineGlassAlt = const IconDataDuotone( - 0xf5ce, - secondary: const IconDataDuotone(0x10f5ce), - ); - - /// Brands Wix icon - /// - /// https://fontawesome.com/icons/wix?style=brands - static const IconData wix = const IconDataBrands(0xf5cf); - - /// 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 = const IconDataBrands(0xf730); - - /// Brands Wodu icon - /// - /// https://fontawesome.com/icons/wodu?style=brands - static const IconData wodu = const IconDataBrands(0xe088); - - /// Brands Wolf Pack Battalion icon - /// - /// https://fontawesome.com/icons/wolf-pack-battalion?style=brands - static const IconData wolfPackBattalion = const IconDataBrands(0xf514); - - /// Regular Won Sign icon - /// - /// https://fontawesome.com/icons/won-sign?style=regular - /// currency, krw, money - static const IconData wonSign = const IconDataRegular(0xf159); - - /// Solid Won Sign icon - /// - /// https://fontawesome.com/icons/won-sign?style=solid - /// currency, krw, money - static const IconData solidWonSign = const IconDataSolid(0xf159); - - /// Light Won Sign icon - /// - /// https://fontawesome.com/icons/light_won-sign?style=light - /// currency, krw, money - static const IconData lightWonSign = const IconDataLight(0xf159); - - /// Duotone Won Sign icon - /// - /// https://fontawesome.com/icons/duotone_won-sign?style=duotone - /// currency, krw, money - static const IconDataDuotone duotoneWonSign = const IconDataDuotone( - 0xf159, - secondary: const IconDataDuotone(0x10f159), - ); - - /// Brands WordPress Logo icon - /// - /// https://fontawesome.com/icons/wordpress?style=brands - static const IconData wordpress = const IconDataBrands(0xf19a); - - /// Brands Wordpress Simple icon - /// - /// https://fontawesome.com/icons/wordpress-simple?style=brands - static const IconData wordpressSimple = const IconDataBrands(0xf411); - - /// Brands WPBeginner icon - /// - /// https://fontawesome.com/icons/wpbeginner?style=brands - static const IconData wpbeginner = const IconDataBrands(0xf297); - - /// Brands WPExplorer icon - /// - /// https://fontawesome.com/icons/wpexplorer?style=brands - static const IconData wpexplorer = const IconDataBrands(0xf2de); - - /// Brands WPForms icon - /// - /// https://fontawesome.com/icons/wpforms?style=brands - static const IconData wpforms = const IconDataBrands(0xf298); - - /// Brands wpressr icon - /// - /// https://fontawesome.com/icons/wpressr?style=brands - /// rendact - static const IconData wpressr = const IconDataBrands(0xf3e4); - - /// Regular Wreath icon - /// - /// https://fontawesome.com/icons/wreath?style=regular - /// christmas, decoration, door, holiday, welcome, xmas - static const IconData wreath = const IconDataRegular(0xf7e2); - - /// Solid Wreath icon - /// - /// https://fontawesome.com/icons/wreath?style=solid - /// christmas, decoration, door, holiday, welcome, xmas - static const IconData solidWreath = const IconDataSolid(0xf7e2); - - /// Light Wreath icon - /// - /// https://fontawesome.com/icons/light_wreath?style=light - /// christmas, decoration, door, holiday, welcome, xmas - static const IconData lightWreath = const IconDataLight(0xf7e2); - - /// Duotone Wreath icon - /// - /// https://fontawesome.com/icons/duotone_wreath?style=duotone - /// christmas, decoration, door, holiday, welcome, xmas - static const IconDataDuotone duotoneWreath = const IconDataDuotone( - 0xf7e2, - secondary: const IconDataDuotone(0x10f7e2), - ); - - /// Regular Wrench icon - /// - /// https://fontawesome.com/icons/wrench?style=regular - /// construction, fix, mechanic, plumbing, settings, spanner, tool, update - static const IconData wrench = const IconDataRegular(0xf0ad); - - /// Solid Wrench icon - /// - /// https://fontawesome.com/icons/wrench?style=solid - /// construction, fix, mechanic, plumbing, settings, spanner, tool, update - static const IconData solidWrench = const IconDataSolid(0xf0ad); - - /// Light Wrench icon - /// - /// https://fontawesome.com/icons/light_wrench?style=light - /// construction, fix, mechanic, plumbing, settings, spanner, tool, update - static const IconData lightWrench = const IconDataLight(0xf0ad); - - /// Duotone Wrench icon - /// - /// https://fontawesome.com/icons/duotone_wrench?style=duotone - /// construction, fix, mechanic, plumbing, settings, spanner, tool, update - static const IconDataDuotone duotoneWrench = const IconDataDuotone( - 0xf0ad, - secondary: const IconDataDuotone(0x10f0ad), - ); - - /// Regular X-Ray icon - /// - /// https://fontawesome.com/icons/x-ray?style=regular - /// health, medical, radiological images, radiology, skeleton - static const IconData xRay = const IconDataRegular(0xf497); - - /// Solid X-Ray icon - /// - /// https://fontawesome.com/icons/x-ray?style=solid - /// health, medical, radiological images, radiology, skeleton - static const IconData solidXRay = const IconDataSolid(0xf497); - - /// Light X-Ray icon - /// - /// https://fontawesome.com/icons/light_x-ray?style=light - /// health, medical, radiological images, radiology, skeleton - static const IconData lightXRay = const IconDataLight(0xf497); - - /// Duotone X-Ray icon - /// - /// https://fontawesome.com/icons/duotone_x-ray?style=duotone - /// health, medical, radiological images, radiology, skeleton - static const IconDataDuotone duotoneXRay = const IconDataDuotone( - 0xf497, - secondary: const IconDataDuotone(0x10f497), - ); - - /// Brands Xbox icon - /// - /// https://fontawesome.com/icons/xbox?style=brands - static const IconData xbox = const IconDataBrands(0xf412); - - /// Brands Xing icon - /// - /// https://fontawesome.com/icons/xing?style=brands - static const IconData xing = const IconDataBrands(0xf168); - - /// Brands Xing Square icon - /// - /// https://fontawesome.com/icons/xing-square?style=brands - static const IconData xingSquare = const IconDataBrands(0xf169); - - /// Brands Y Combinator icon - /// - /// https://fontawesome.com/icons/y-combinator?style=brands - static const IconData yCombinator = const IconDataBrands(0xf23b); - - /// Brands Yahoo Logo icon - /// - /// https://fontawesome.com/icons/yahoo?style=brands - static const IconData yahoo = const IconDataBrands(0xf19e); - - /// Brands Yammer icon - /// - /// https://fontawesome.com/icons/yammer?style=brands - static const IconData yammer = const IconDataBrands(0xf840); - - /// Brands Yandex icon - /// - /// https://fontawesome.com/icons/yandex?style=brands - static const IconData yandex = const IconDataBrands(0xf413); - - /// Brands Yandex International icon - /// - /// https://fontawesome.com/icons/yandex-international?style=brands - static const IconData yandexInternational = const IconDataBrands(0xf414); - - /// Brands Yarn icon - /// - /// https://fontawesome.com/icons/yarn?style=brands - static const IconData yarn = const IconDataBrands(0xf7e3); - - /// Brands Yelp icon - /// - /// https://fontawesome.com/icons/yelp?style=brands - static const IconData yelp = const IconDataBrands(0xf1e9); - - /// Regular Yen Sign icon - /// - /// https://fontawesome.com/icons/yen-sign?style=regular - /// currency, jpy, money - static const IconData yenSign = const IconDataRegular(0xf157); - - /// Solid Yen Sign icon - /// - /// https://fontawesome.com/icons/yen-sign?style=solid - /// currency, jpy, money - static const IconData solidYenSign = const IconDataSolid(0xf157); - - /// Light Yen Sign icon - /// - /// https://fontawesome.com/icons/light_yen-sign?style=light - /// currency, jpy, money - static const IconData lightYenSign = const IconDataLight(0xf157); - - /// Duotone Yen Sign icon - /// - /// https://fontawesome.com/icons/duotone_yen-sign?style=duotone - /// currency, jpy, money - static const IconDataDuotone duotoneYenSign = const IconDataDuotone( - 0xf157, - secondary: const IconDataDuotone(0x10f157), - ); - - /// Regular Yin Yang icon - /// - /// https://fontawesome.com/icons/yin-yang?style=regular - /// daoism, opposites, taoism - static const IconData yinYang = const IconDataRegular(0xf6ad); - - /// Solid Yin Yang icon - /// - /// https://fontawesome.com/icons/yin-yang?style=solid - /// daoism, opposites, taoism - static const IconData solidYinYang = const IconDataSolid(0xf6ad); - - /// Light Yin Yang icon - /// - /// https://fontawesome.com/icons/light_yin-yang?style=light - /// daoism, opposites, taoism - static const IconData lightYinYang = const IconDataLight(0xf6ad); - - /// Duotone Yin Yang icon - /// - /// https://fontawesome.com/icons/duotone_yin-yang?style=duotone - /// daoism, opposites, taoism - static const IconDataDuotone duotoneYinYang = const IconDataDuotone( - 0xf6ad, - secondary: const IconDataDuotone(0x10f6ad), - ); - - /// Brands Yoast icon - /// - /// https://fontawesome.com/icons/yoast?style=brands - static const IconData yoast = const IconDataBrands(0xf2b1); - - /// Brands YouTube icon - /// - /// https://fontawesome.com/icons/youtube?style=brands - /// film, video, youtube-play, youtube-square - static const IconData youtube = const IconDataBrands(0xf167); - - /// Brands YouTube Square icon - /// - /// https://fontawesome.com/icons/youtube-square?style=brands - static const IconData youtubeSquare = const IconDataBrands(0xf431); - - /// Brands Zhihu icon - /// - /// https://fontawesome.com/icons/zhihu?style=brands - static const IconData zhihu = const IconDataBrands(0xf63f); -} diff --git a/vendor/font_awesome_flutter/lib/fonts/fa-brands-400.ttf.gpg b/vendor/font_awesome_flutter/lib/fonts/fa-brands-400.ttf.gpg deleted file mode 100644 index 9548d835..00000000 Binary files a/vendor/font_awesome_flutter/lib/fonts/fa-brands-400.ttf.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/fonts/fa-duotone-900.ttf.gpg b/vendor/font_awesome_flutter/lib/fonts/fa-duotone-900.ttf.gpg deleted file mode 100644 index 19430def..00000000 Binary files a/vendor/font_awesome_flutter/lib/fonts/fa-duotone-900.ttf.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/fonts/fa-light-300.ttf.gpg b/vendor/font_awesome_flutter/lib/fonts/fa-light-300.ttf.gpg deleted file mode 100644 index 3296efa5..00000000 Binary files a/vendor/font_awesome_flutter/lib/fonts/fa-light-300.ttf.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/fonts/fa-regular-400.ttf.gpg b/vendor/font_awesome_flutter/lib/fonts/fa-regular-400.ttf.gpg deleted file mode 100644 index c031f34a..00000000 Binary files a/vendor/font_awesome_flutter/lib/fonts/fa-regular-400.ttf.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/fonts/fa-solid-900.ttf.gpg b/vendor/font_awesome_flutter/lib/fonts/fa-solid-900.ttf.gpg deleted file mode 100644 index b03dde76..00000000 Binary files a/vendor/font_awesome_flutter/lib/fonts/fa-solid-900.ttf.gpg and /dev/null differ diff --git a/vendor/font_awesome_flutter/lib/src/fa_duotone_icon.dart b/vendor/font_awesome_flutter/lib/src/fa_duotone_icon.dart deleted file mode 100644 index e668abeb..00000000 --- a/vendor/font_awesome_flutter/lib/src/fa_duotone_icon.dart +++ /dev/null @@ -1,71 +0,0 @@ -import 'package:flutter/widgets.dart'; -import 'package:font_awesome_flutter/src/fa_icon.dart'; -import 'package:font_awesome_flutter/src/icon_data.dart'; - -/// Special icon style which can have two colors -class FaDuotoneIcon extends StatelessWidget { - /// The icon to display. The available icons are described in - /// [FontAwesomeIcons]. Applicable icons start with "duotone". - final IconDataDuotone icon; - - /// The font size of the icon. - /// - /// Defaults to the current [IconTheme] size, if any. If there is no - /// [IconTheme], or it does not specify an explicit size, then it defaults to - /// 24.0. - /// - /// If this [FaIcon] is being placed inside an [IconButton], then use - /// [IconButton.iconSize] instead, so that the [IconButton] can make the - /// splash area the appropriate size as well. The [IconButton] uses an - /// [IconTheme] to pass down the size to the [FaIcon]. - final double? size; - - /// Color used for the icon's main body - final Color? primaryColor; - - /// Color used for the icon's accents - final Color? secondaryColor; - - /// Semantic label for the icon. - /// - /// Announced in accessibility modes (e.g TalkBack/VoiceOver). - /// This label does not show in the UI. - /// - /// See also: - /// - /// * [Semantics.label], which is set to [semanticLabel] in the underlying - /// [Semantics] widget. - final String? semanticLabel; - - const FaDuotoneIcon( - this.icon, { - Key? key, - this.size, - this.primaryColor, - this.secondaryColor, - this.semanticLabel, - }) : super(key: key); - - @override - Widget build(BuildContext context) { - return Semantics( - label: semanticLabel, - child: Stack( - children: [ - FaIcon( - icon, - size: size, - color: primaryColor, - key: Key("primaryGlyph"), - ), - FaIcon( - icon.secondary, - size: size, - color: secondaryColor, - key: Key("secondaryGlyph"), - ), - ], - ), - ); - } -} diff --git a/vendor/font_awesome_flutter/lib/src/fa_icon.dart b/vendor/font_awesome_flutter/lib/src/fa_icon.dart deleted file mode 100644 index 05bf6490..00000000 --- a/vendor/font_awesome_flutter/lib/src/fa_icon.dart +++ /dev/null @@ -1,148 +0,0 @@ -import 'package:flutter/foundation.dart'; -import 'package:flutter/widgets.dart'; -import 'package:font_awesome_flutter/font_awesome_flutter.dart'; - -/// Creates an Icon Widget that works for non-material Icons, such as the -/// Font Awesome Icons. -/// -/// The default `Icon` Widget from the Material package assumes all Icons are -/// square in size and wraps all Icons in a square SizedBox Widget. Icons from -/// the FontAwesome package are often wider than they are tall, which causes -/// alignment and cutoff issues. -/// -/// This Widget does not wrap the icons in a fixed square box, which allows the -/// icons to render based on their size. -class FaIcon extends StatelessWidget { - /// Creates an icon. - /// - /// The [size] and [color] default to the value given by the current [IconTheme]. - const FaIcon( - this.icon, { - Key? key, - this.size, - this.color, - this.semanticLabel, - this.textDirection, - }) : assert(icon != null), - super(key: key); - - /// The icon to display. The available icons are described in - /// [FontAwesomeIcons]. - final IconData? icon; - - /// The font size of the icon. - /// - /// Defaults to the current [IconTheme] size, if any. If there is no - /// [IconTheme], or it does not specify an explicit size, then it defaults to - /// 24.0. - /// - /// If this [FaIcon] is being placed inside an [IconButton], then use - /// [IconButton.iconSize] instead, so that the [IconButton] can make the - /// splash area the appropriate size as well. The [IconButton] uses an - /// [IconTheme] to pass down the size to the [FaIcon]. - final double? size; - - /// The color to use when drawing the icon. - /// - /// Defaults to the current [IconTheme] color, if any. - /// - /// The given color will be adjusted by the opacity of the current - /// [IconTheme], if any. - final Color? color; - - /// Semantic label for the icon. - /// - /// Announced in accessibility modes (e.g TalkBack/VoiceOver). - /// This label does not show in the UI. - /// - /// See also: - /// - /// * [Semantics.label], which is set to [semanticLabel] in the underlying - /// [Semantics] widget. - final String? semanticLabel; - - /// The text direction to use for rendering the icon. - /// - /// If this is null, the ambient [Directionality] is used instead. - /// - /// Some icons follow the reading direction. For example, "back" buttons point - /// left in left-to-right environments and right in right-to-left - /// environments. Such icons have their [IconData.matchTextDirection] field - /// set to true, and the [FaIcon] widget uses the [textDirection] to determine - /// the orientation in which to draw the icon. - /// - /// This property has no effect if the [icon]'s [IconData.matchTextDirection] - /// field is false, but for consistency a text direction value must always be - /// specified, either directly using this property or using [Directionality]. - final TextDirection? textDirection; - - @override - Widget build(BuildContext context) { - assert(this.textDirection != null || debugCheckHasDirectionality(context)); - final TextDirection textDirection = - this.textDirection ?? Directionality.of(context); - - final IconThemeData iconTheme = IconTheme.of(context); - - final double? iconSize = size ?? iconTheme.size; - - if (icon == null) { - return Semantics( - label: semanticLabel, - child: SizedBox(width: iconSize, height: iconSize), - ); - } - - final double iconOpacity = iconTheme.opacity ?? 1.0; - Color iconColor = color ?? iconTheme.color!; - if (iconOpacity != 1.0) - iconColor = iconColor.withOpacity(iconColor.opacity * iconOpacity); - - Widget iconWidget = RichText( - overflow: TextOverflow.visible, // Never clip. - textDirection: - textDirection, // Since we already fetched it for the assert... - text: TextSpan( - text: String.fromCharCode(icon!.codePoint), - style: TextStyle( - inherit: false, - color: iconColor, - fontSize: iconSize, - fontFamily: icon!.fontFamily, - package: icon!.fontPackage, - ), - ), - ); - - if (icon!.matchTextDirection) { - switch (textDirection) { - case TextDirection.rtl: - iconWidget = Transform( - transform: Matrix4.identity()..scale(-1.0, 1.0, 1.0), - alignment: Alignment.center, - transformHitTests: false, - child: iconWidget, - ); - break; - case TextDirection.ltr: - break; - } - } - - return Semantics( - label: semanticLabel, - child: ExcludeSemantics( - child: iconWidget, - ), - ); - } - - @override - void debugFillProperties(DiagnosticPropertiesBuilder properties) { - super.debugFillProperties(properties); - properties.add( - IconDataProperty('icon', icon, ifNull: '', showName: false)); - properties.add(DoubleProperty('size', size, defaultValue: null)); - properties.add(ColorProperty('color', color, defaultValue: null)); - } -} diff --git a/vendor/font_awesome_flutter/lib/src/icon_data.dart b/vendor/font_awesome_flutter/lib/src/icon_data.dart deleted file mode 100644 index b3db4296..00000000 --- a/vendor/font_awesome_flutter/lib/src/icon_data.dart +++ /dev/null @@ -1,85 +0,0 @@ -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', - ); -} diff --git a/vendor/font_awesome_flutter/pubspec.yaml b/vendor/font_awesome_flutter/pubspec.yaml deleted file mode 100755 index a4e21e5c..00000000 --- a/vendor/font_awesome_flutter/pubspec.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: font_awesome_flutter -description: The Font Awesome Icon pack available as Flutter Icons. Provides 1500 additional icons to use in your apps. -maintainer: Michael Spiss (@michaelspiss) -homepage: https://github.com/fluttercommunity/font_awesome_flutter -version: 9.0.0 - -environment: - sdk: ">=2.12.0 <3.0.0" - -dependencies: - flutter: - sdk: flutter - -dev_dependencies: - recase: ^4.0.0-nullsafety - flutter_test: - sdk: flutter - version: ^2.0.0 - -flutter: - fonts: - - family: FontAwesomeBrands - fonts: - - asset: lib/fonts/fa-brands-400.ttf - weight: 400 - - family: FontAwesomeRegular - fonts: - - asset: lib/fonts/fa-regular-400.ttf - weight: 400 - - family: FontAwesomeSolid - fonts: - - asset: lib/fonts/fa-solid-900.ttf - weight: 900 -# Uncomment the following lines to support pro icons - - family: FontAwesomeLight - fonts: - - asset: lib/fonts/fa-light-300.ttf - weight: 300 -# Leave commented out if you don't own duotone icons - - family: FontAwesomeDuotone - fonts: - - asset: lib/fonts/fa-duotone-900.ttf - weight: 900 -# Thin style is available in font awesome pro 6 and beyond -# Leave commented out if you don't own version 6 - - family: FontAwesomeThin - fonts: - - asset: lib/fonts/fa-thin-100.ttf - weight: 100 diff --git a/vendor/font_awesome_flutter/tool/generate_example.dart b/vendor/font_awesome_flutter/tool/generate_example.dart deleted file mode 100644 index b8e1a537..00000000 --- a/vendor/font_awesome_flutter/tool/generate_example.dart +++ /dev/null @@ -1,87 +0,0 @@ -import 'dart:convert'; -import 'dart:io'; - -import 'package:recase/recase.dart'; - -const Map nameAdjustments = { - "500px": "fiveHundredPx", - "360-degrees": "threeHundredSixtyDegrees", - "1": "one", - "2": "two", - "3": "three", - "4": "four", - "5": "five", - "6": "six", - "7": "seven", - "8": "eight", - "9": "nine", - "0": "zero", -}; - -void main(List arguments) { - var file = new File(arguments.first); - - if (!file.existsSync()) { - print('Cannot find the file "${arguments.first}".'); - } - - var content = file.readAsStringSync(); - Map icons = json.decode(content); - - Map iconDefinitions = {}; - - for (String iconName in icons.keys) { - var icon = icons[iconName]; - - // At least one icon does not have a glyph in the font files. This property - // is marked with "private": true in icons.json - if ((icon as Map).containsKey('private') && - icon['private']) continue; - - List styles = (icon['styles'] as List).cast(); - - if (styles.length > 1) { - if (styles.contains('regular')) { - styles.remove('regular'); - iconDefinitions[iconName] = generateExampleIcon(iconName); - } - - for (String style in styles) { - String name = '${style}_$iconName'; - iconDefinitions[name] = generateExampleIcon(name); - } - } else { - iconDefinitions[iconName] = generateExampleIcon(iconName); - } - } - - List generatedOutput = [ - '', - "import 'package:font_awesome_flutter/font_awesome_flutter.dart';", - "import 'package:font_awesome_flutter_example/example_icon.dart';", - '', - '// THIS FILE IS AUTOMATICALLY GENERATED!', - '', - 'final icons = [', - ]; - - generatedOutput.addAll(iconDefinitions.values); - - generatedOutput.add('];'); - - File output = new File('example/lib/icons.dart'); - output.writeAsStringSync(generatedOutput.join('\n')); -} - -String generateExampleIcon(String iconName) { - if (nameAdjustments.containsKey(iconName)) { - iconName = nameAdjustments[iconName]!; - } - - iconName = new ReCase(iconName).camelCase; - if (iconName.contains('duotone')) { - return " ExampleIcon(null, FontAwesomeIcons.$iconName, '$iconName'),"; - } else { - return " ExampleIcon(FontAwesomeIcons.$iconName, null, '$iconName'),"; - } -} diff --git a/vendor/font_awesome_flutter/tool/generate_font.dart b/vendor/font_awesome_flutter/tool/generate_font.dart deleted file mode 100644 index 8513e8a7..00000000 --- a/vendor/font_awesome_flutter/tool/generate_font.dart +++ /dev/null @@ -1,204 +0,0 @@ -import 'dart:convert'; -import 'dart:io'; - -import 'package:recase/recase.dart'; -import 'package:version/version.dart'; - -const Map nameAdjustments = { - "500px": "fiveHundredPx", - "360-degrees": "threeHundredSixtyDegrees", - "1": "one", - "2": "two", - "3": "three", - "4": "four", - "5": "five", - "6": "six", - "7": "seven", - "8": "eight", - "9": "nine", - "0": "zero", -}; - -void main(List arguments) { - var file = new File(arguments.first); - - if (!file.existsSync()) { - print('Cannot find the file "${arguments.first}".'); - } - - var content = file.readAsStringSync(); - Map icons = json.decode(content); - - Map iconDefinitions = {}; - - bool hasDuotone = false; - - // figure out current version - Version highestVersion = Version.parse("0.0.0"); - - for (String iconName in icons.keys) { - var icon = icons[iconName]; - - // At least one icon does not have a glyph in the font files. This property - // is marked with "private": true in icons.json - if ((icon as Map).containsKey('private') && - icon['private']) continue; - - // compute highest version - var changes = (icon["changes"] as List); - - List versions = changes.map((v) { - // since font awesome does not adhere to semver standards - var partsCount = v.split(".").length; - if (partsCount == 1) { - return v + ".0.0"; - } else if (partsCount == 2) { - return v + ".0"; - } else if (partsCount == 3) { - return v; - } else { - return "0.0.0"; - } - }).map((v) { - try { - return Version.parse(v); - } on FormatException { - return Version.parse("0.0.0"); - } - }).toList(growable: true) - ..add(highestVersion) - ..sort(); - - highestVersion = versions.last; - - var unicode = icon['unicode']; - List styles = (icon['styles'] as List).cast(); - - if (styles.length > 1) { - if (styles.contains('regular')) { - styles.remove('regular'); - iconDefinitions[iconName] = generateIconDefinition( - iconName, - 'regular', - unicode, - icon["search"]["terms"], - icon["label"], - ); - } - - if (styles.contains('duotone')) { - hasDuotone = true; - } - - for (String style in styles) { - String name = '${style}_$iconName'; - iconDefinitions[name] = generateIconDefinition( - name, - style, - unicode, - icon["search"]["terms"], - icon["label"], - ); - } - } else { - iconDefinitions[iconName] = generateIconDefinition( - iconName, - styles.first, - unicode, - icon["search"]["terms"], - icon["label"], - ); - } - } - - List generatedOutput = [ - 'library font_awesome_flutter;', - '', - "import 'package:flutter/widgets.dart';", - "import 'package:font_awesome_flutter/src/icon_data.dart';", - "export 'package:font_awesome_flutter/src/fa_icon.dart';", - "export 'package:font_awesome_flutter/src/icon_data.dart';", - "export 'package:font_awesome_flutter/src/fa_duotone_icon.dart';", - ]; - - if (hasDuotone) { - generatedOutput - .add("export 'package:font_awesome_flutter/src/fa_duotone_icon.dart';"); - } - - generatedOutput.addAll([ - '', - '// THIS FILE IS AUTOMATICALLY GENERATED!', - '', - '/// Icons based on font awesome $highestVersion', - 'class FontAwesomeIcons {', - ]); - - generatedOutput.addAll(iconDefinitions.values); - - generatedOutput.add('}'); - - File output = new File('lib/font_awesome_flutter.dart'); - output.writeAsStringSync(generatedOutput.join('\n')); -} - -String generateIconDocumentation( - String iconName, String style, List searchTerms, String iconLabel) { - searchTerms = searchTerms; - var searchTermsString = searchTerms.toString(); - searchTermsString = - searchTermsString.substring(1, searchTermsString.length - 1); - - iconName = iconName.replaceFirst("solid_", ""); - - var doc = '/// ${style.sentenceCase} $iconLabel icon\n' - '///\n' - '/// https://fontawesome.com/icons/$iconName?style=$style'; - - if (searchTermsString.length != 0) { - doc += '\n/// $searchTermsString'; - } - - return doc; -} - -String generateIconDefinition(String iconName, String style, String unicode, - List searchTerms, String iconLabel) { - if (style == 'duotone') { - return generateDuotoneIconDefinition( - iconName, unicode, searchTerms, iconLabel); - } - - String doc = - generateIconDocumentation(iconName, style, searchTerms, iconLabel); - - iconName = normalizeIconName(iconName); - String iconDataSource = styleToDataSource(style); - - return '$doc\nstatic const IconData $iconName = const $iconDataSource(0x$unicode);'; -} - -String generateDuotoneIconDefinition(String iconName, String primaryUnicode, - List searchTerms, String iconLabel) { - String doc = - generateIconDocumentation(iconName, "duotone", searchTerms, iconLabel); - - iconName = normalizeIconName(iconName); - String secondaryUnicode = (int.parse(primaryUnicode, radix: 16) + 0x100000) - .toRadixString(16) - .toString(); - - return '$doc\nstatic const IconDataDuotone $iconName = const IconDataDuotone(0x$primaryUnicode, secondary: const IconDataDuotone(0x$secondaryUnicode),);'; -} - -String normalizeIconName(String iconName) { - iconName = nameAdjustments[iconName] ?? iconName; - - return new ReCase(iconName).camelCase; -} - -String styleToDataSource(String style) { - style = '${style[0].toUpperCase()}${style.substring(1)}'; - - return 'IconData$style'; -} diff --git a/vendor/font_awesome_flutter/tool/update.bat b/vendor/font_awesome_flutter/tool/update.bat deleted file mode 100644 index e43c6e57..00000000 --- a/vendor/font_awesome_flutter/tool/update.bat +++ /dev/null @@ -1,25 +0,0 @@ -@echo off - -if exist icons.json ( - echo Custom icons.json found, using local data only. - - dart .\tool\generate_font.dart .\icons.json - dart .\tool\generate_example.dart .\icons.json -) else ( - echo Updating free icons to newest version. - pushd lib\fonts - - powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-brands-400.ttf', 'fa-brands-400.ttf')" - powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-regular-400.ttf', 'fa-regular-400.ttf')" - powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-solid-900.ttf', 'fa-solid-900.ttf')" - - popd - powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/metadata/icons.json', 'icons.json')" - - dart .\tool\generate_font.dart .\icons.json - dart .\tool\generate_example.dart .\icons.json - del "icons.json" /f /q -) - -dartfmt -w .\lib\font_awesome_flutter.dart & ^ -dartfmt -w .\example\lib\icons.dart diff --git a/vendor/font_awesome_flutter/tool/update.sh b/vendor/font_awesome_flutter/tool/update.sh deleted file mode 100755 index ceafccde..00000000 --- a/vendor/font_awesome_flutter/tool/update.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash -if [ -e ./icons.json ]; -then -echo "Custom icons.json found, using local data only." - -dart ./tool/generate_font.dart ./icons.json -dart ./tool/generate_example.dart ./icons.json -dartfmt -w ./lib/font_awesome_flutter.dart -dartfmt -w ./example/lib/icons.dart - -else -echo "Updating icons to newest version." -pushd lib/fonts/ - -curl -O -L "https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-brands-400.ttf" -curl -O -L "https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-regular-400.ttf" -curl -O -L "https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/webfonts/fa-solid-900.ttf" - -popd - -curl -o /tmp/icons.json "https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/metadata/icons.json" - -dart ./tool/generate_font.dart /tmp/icons.json -dart ./tool/generate_example.dart /tmp/icons.json -dartfmt -w ./lib/font_awesome_flutter.dart -dartfmt -w ./example/lib/icons.dart - -rm /tmp/icons.json -fi