From 73a6f675222db69abe30e28db8ce61c7836d0cd6 Mon Sep 17 00:00:00 2001 From: qixu01 Date: Thu, 21 Apr 2022 10:16:34 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=B7=BB=E5=8A=A0flutter=5Fversion=5F2.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flutter_version/flutter_2_8_0/.gitignore | 76 + flutter_version/flutter_2_8_0/.metadata | 10 + .../flutter_2_8_0/analysis_options.yaml | 13 + flutter_version/flutter_2_8_0/autoImport | 20 + .../flutter_2_8_0/lib/fair_version.dart | 11 + .../flutter_2_8_0/lib/src/fair_utf8.dart | 14 + .../flutter_2_8_0/lib/src/part/c.part.dart | 21 + .../flutter_2_8_0/lib/src/part/w.part.dart | 9 + .../flutter_2_8_0/lib/src/widgets/$$a.dart | 70 + .../flutter_2_8_0/lib/src/widgets/$$c.dart | 1614 ++++ .../flutter_2_8_0/lib/src/widgets/$$m.dart | 8362 +++++++++++++++++ .../flutter_2_8_0/lib/src/widgets/$$p.dart | 435 + .../flutter_2_8_0/lib/src/widgets/$$r.dart | 155 + .../flutter_2_8_0/lib/src/widgets/$$w.dart | 3344 +++++++ .../flutter_2_8_0/lib/src/widgets/all.dart | 19 + .../flutter_2_8_0/lib/src/widgets/module.dart | 11 + .../flutter_2_8_0/lib/src/widgets/utils.dart | 16 + .../lib/src/widgets/version.dart | 490 + flutter_version/flutter_2_8_0/pubspec.yaml | 55 + 19 files changed, 14745 insertions(+) create mode 100644 flutter_version/flutter_2_8_0/.gitignore create mode 100644 flutter_version/flutter_2_8_0/.metadata create mode 100644 flutter_version/flutter_2_8_0/analysis_options.yaml create mode 100755 flutter_version/flutter_2_8_0/autoImport create mode 100644 flutter_version/flutter_2_8_0/lib/fair_version.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/fair_utf8.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/part/c.part.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/part/w.part.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/all.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/module.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/utils.dart create mode 100644 flutter_version/flutter_2_8_0/lib/src/widgets/version.dart create mode 100644 flutter_version/flutter_2_8_0/pubspec.yaml diff --git a/flutter_version/flutter_2_8_0/.gitignore b/flutter_version/flutter_2_8_0/.gitignore new file mode 100644 index 00000000..2924fa7f --- /dev/null +++ b/flutter_version/flutter_2_8_0/.gitignore @@ -0,0 +1,76 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +build/ + +# Android related +**/android/**/gradle-wrapper.jar +**/android/.gradle +**/android/captures/ +**/android/gradlew +**/android/gradlew.bat +**/android/local.properties +**/android/**/GeneratedPluginRegistrant.java + +# iOS/XCode related +**/ios/**/*.mode1v3 +**/ios/**/*.mode2v3 +**/ios/**/*.moved-aside +**/ios/**/*.pbxuser +**/ios/**/*.perspectivev3 +**/ios/**/*sync/ +**/ios/**/.sconsign.dblite +**/ios/**/.tags* +**/ios/**/.vagrant/ +**/ios/**/DerivedData/ +**/ios/**/Icon? +**/ios/**/Pods/ +**/ios/**/.symlinks/ +**/ios/**/profile +**/ios/**/xcuserdata +**/ios/.generated/ +**/ios/Flutter/App.framework +**/ios/Flutter/Flutter.framework +**/ios/Flutter/Flutter.podspec +**/ios/Flutter/Generated.xcconfig +**/ios/Flutter/app.flx +**/ios/Flutter/app.zip +**/ios/Flutter/flutter_assets/ +**/ios/Flutter/flutter_export_environment.sh +**/ios/ServiceDefinitions.json +**/ios/Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!**/ios/**/default.mode1v3 +!**/ios/**/default.mode2v3 +!**/ios/**/default.pbxuser +!**/ios/**/default.perspectivev3 +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages +pubspec.lock \ No newline at end of file diff --git a/flutter_version/flutter_2_8_0/.metadata b/flutter_version/flutter_2_8_0/.metadata new file mode 100644 index 00000000..f3c928ea --- /dev/null +++ b/flutter_version/flutter_2_8_0/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: fba99f6cf9a14512e461e3122c8ddfaa25394e89 + channel: unknown + +project_type: package diff --git a/flutter_version/flutter_2_8_0/analysis_options.yaml b/flutter_version/flutter_2_8_0/analysis_options.yaml new file mode 100644 index 00000000..b0bd2e34 --- /dev/null +++ b/flutter_version/flutter_2_8_0/analysis_options.yaml @@ -0,0 +1,13 @@ +# Defines a default set of lint rules enforced for +# projects at Google. For details and rationale, +# see https://github.com/dart-lang/pedantic#enabled-lints. +include: package:pedantic/analysis_options.yaml + +linter: + rules: + lowercase_with_underscores: false + prefer_single_quotes: false + deprecated_member_use: false +analyzer: + exclude: + - lib/src/widgets/all.dart \ No newline at end of file diff --git a/flutter_version/flutter_2_8_0/autoImport b/flutter_version/flutter_2_8_0/autoImport new file mode 100755 index 00000000..bf3ec8c8 --- /dev/null +++ b/flutter_version/flutter_2_8_0/autoImport @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +################################################################## +## +## Import package +## +## +## Author: Chaobin Wu +## Email : chaobinwu89@gmail.com +## +################################################################# +die() { + echo "$*" + exit 1 +} +# fix import of $$p.dart +sed -i '' '11 i\ +import "dart:math" as math;' "lib/src/widgets/\$\$p.dart" +# fix import of $$w.dart +sed -i '' '14 i\ +part "../part/w.part.dart";' "lib/src/widgets/\$\$w.dart" \ No newline at end of file diff --git a/flutter_version/flutter_2_8_0/lib/fair_version.dart b/flutter_version/flutter_2_8_0/lib/fair_version.dart new file mode 100644 index 00000000..94a65cfd --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/fair_version.dart @@ -0,0 +1,11 @@ +/* + * Copyright (C) 2005-present, 58.com. All rights reserved. + * Use of this source code is governed by a BSD type license that can be + * found in the LICENSE file. + */ + +export 'src/widgets/all.dart'; +export 'src/widgets/version.dart'; +export 'src/widgets/utils.dart'; +export 'src/widgets/module.dart'; +export 'src/fair_utf8.dart'; diff --git a/flutter_version/flutter_2_8_0/lib/src/fair_utf8.dart b/flutter_version/flutter_2_8_0/lib/src/fair_utf8.dart new file mode 100644 index 00000000..3391dfab --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/fair_utf8.dart @@ -0,0 +1,14 @@ +import 'dart:ffi'; +import 'package:ffi/ffi.dart'; + +class FairUtf8 { + + static String fromUtf8(Pointer data) { + return data.toDartString(); + } + + static dynamic toUtf8(String data) { + return data.toNativeUtf8(); + } + +} \ No newline at end of file diff --git a/flutter_version/flutter_2_8_0/lib/src/part/c.part.dart b/flutter_version/flutter_2_8_0/lib/src/part/c.part.dart new file mode 100644 index 00000000..8f019a30 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/part/c.part.dart @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2005-present, 58.com. All rights reserved. + * Use of this source code is governed by a BSD type license that can be + * found in the LICENSE file. + */ + + +import 'package:flutter/cupertino.dart'; + +const defaultThickness = CupertinoScrollbar.defaultThickness; +const defaultThicknessWhileDragging = + CupertinoScrollbar.defaultThicknessWhileDragging; +const defaultRadius = CupertinoScrollbar.defaultRadius; +const defaultRadiusWhileDragging = + CupertinoScrollbar.defaultRadiusWhileDragging; +const EdgeInsetsDirectional _kDefaultInsetGroupedRowsMargin = +EdgeInsetsDirectional.fromSTEB(20.0, 0.0, 20.0, 10.0); +const TextStyle _kDefaultPlaceholderStyle = TextStyle( + fontWeight: FontWeight.w400, + color: CupertinoColors.placeholderText, +); diff --git a/flutter_version/flutter_2_8_0/lib/src/part/w.part.dart b/flutter_version/flutter_2_8_0/lib/src/part/w.part.dart new file mode 100644 index 00000000..09d5f70b --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/part/w.part.dart @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2005-present, 58.com. All rights reserved. + * Use of this source code is governed by a BSD type license that can be + * found in the LICENSE file. + */ +part of '../widgets/\$\$w.dart'; +// int _kDefaultSemanticIndexCallback(Widget _, int localIndex) => localIndex; +const Duration _kScrollbarFadeDuration = Duration(milliseconds: 300); +const Duration _kScrollbarTimeToFade = Duration(milliseconds: 600); \ No newline at end of file diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart new file mode 100644 index 00000000..e7c7449f --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart @@ -0,0 +1,70 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/material.dart'; + +import '../../fair_version.dart'; + +var p = () => { + 'AnimationStatus': { + 'values': AnimationStatus.values, + 'dismissed': AnimationStatus.dismissed, + 'forward': AnimationStatus.forward, + 'reverse': AnimationStatus.reverse, + 'completed': AnimationStatus.completed, + }, + 'CatmullRomCurve.validateControlPoints': (props) => + CatmullRomCurve.validateControlPoints( + props['pa'][0], + tension: props['tension']?.toDouble() ?? 0.0, + reasons: as(props['reasons']), + ), + 'Curves': { + 'linear': Curves.linear, + 'decelerate': Curves.decelerate, + 'fastLinearToSlowEaseIn': Curves.fastLinearToSlowEaseIn, + 'ease': Curves.ease, + 'easeIn': Curves.easeIn, + 'easeInToLinear': Curves.easeInToLinear, + 'easeInSine': Curves.easeInSine, + 'easeInQuad': Curves.easeInQuad, + 'easeInCubic': Curves.easeInCubic, + 'easeInQuart': Curves.easeInQuart, + 'easeInQuint': Curves.easeInQuint, + 'easeInExpo': Curves.easeInExpo, + 'easeInCirc': Curves.easeInCirc, + 'easeInBack': Curves.easeInBack, + 'easeOut': Curves.easeOut, + 'linearToEaseOut': Curves.linearToEaseOut, + 'easeOutSine': Curves.easeOutSine, + 'easeOutQuad': Curves.easeOutQuad, + 'easeOutCubic': Curves.easeOutCubic, + 'easeOutQuart': Curves.easeOutQuart, + 'easeOutQuint': Curves.easeOutQuint, + 'easeOutExpo': Curves.easeOutExpo, + 'easeOutCirc': Curves.easeOutCirc, + 'easeOutBack': Curves.easeOutBack, + 'easeInOut': Curves.easeInOut, + 'easeInOutSine': Curves.easeInOutSine, + 'easeInOutQuad': Curves.easeInOutQuad, + 'easeInOutCubic': Curves.easeInOutCubic, + 'easeInOutCubicEmphasized': Curves.easeInOutCubicEmphasized, + 'easeInOutQuart': Curves.easeInOutQuart, + 'easeInOutQuint': Curves.easeInOutQuint, + 'easeInOutExpo': Curves.easeInOutExpo, + 'easeInOutCirc': Curves.easeInOutCirc, + 'easeInOutBack': Curves.easeInOutBack, + 'fastOutSlowIn': Curves.fastOutSlowIn, + 'slowMiddle': Curves.slowMiddle, + 'bounceIn': Curves.bounceIn, + 'bounceOut': Curves.bounceOut, + 'bounceInOut': Curves.bounceInOut, + 'elasticIn': Curves.elasticIn, + 'elasticOut': Curves.elasticOut, + 'elasticInOut': Curves.elasticInOut, + }, + 'AnimationBehavior': { + 'values': AnimationBehavior.values, + 'normal': AnimationBehavior.normal, + 'preserve': AnimationBehavior.preserve, + }, + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart new file mode 100644 index 00000000..f64bdd0c --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart @@ -0,0 +1,1614 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/cupertino.dart'; +import 'package:flutter/gestures.dart'; +import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; + +// Value inspected from Xcode 11 & iOS 13.0 Simulator. +const BorderSide _kDefaultRoundedBorderSide = BorderSide( + color: CupertinoDynamicColor.withBrightness( + color: Color(0x33000000), + darkColor: Color(0x33FFFFFF), + ), + style: BorderStyle.solid, + width: 0.0, +); +const Border _kDefaultRoundedBorder = Border( + top: _kDefaultRoundedBorderSide, + bottom: _kDefaultRoundedBorderSide, + left: _kDefaultRoundedBorderSide, + right: _kDefaultRoundedBorderSide, +); + +const BoxDecoration _kDefaultRoundedBorderDecoration = BoxDecoration( + color: CupertinoDynamicColor.withBrightness( + color: CupertinoColors.white, + darkColor: CupertinoColors.black, + ), + border: _kDefaultRoundedBorder, + borderRadius: BorderRadius.all(Radius.circular(5.0)), +); + +const double _defaultRefreshTriggerPullDistance = 100.0; +const double _defaultRefreshIndicatorExtent = 60.0; +var buildRefreshIndicator = CupertinoSliverRefreshControl.buildRefreshIndicator; +var p = () => { + 'OverlayVisibilityMode': { + 'values': OverlayVisibilityMode.values, + 'never': OverlayVisibilityMode.never, + 'editing': OverlayVisibilityMode.editing, + 'notEditing': OverlayVisibilityMode.notEditing, + 'always': OverlayVisibilityMode.always, + }, + 'CupertinoColors': { + 'activeBlue': CupertinoColors.activeBlue, + 'activeGreen': CupertinoColors.activeGreen, + 'activeOrange': CupertinoColors.activeOrange, + 'white': CupertinoColors.white, + 'black': CupertinoColors.black, + 'lightBackgroundGray': CupertinoColors.lightBackgroundGray, + 'extraLightBackgroundGray': CupertinoColors.extraLightBackgroundGray, + 'darkBackgroundGray': CupertinoColors.darkBackgroundGray, + 'inactiveGray': CupertinoColors.inactiveGray, + 'destructiveRed': CupertinoColors.destructiveRed, + 'systemBlue': CupertinoColors.systemBlue, + 'systemGreen': CupertinoColors.systemGreen, + 'systemIndigo': CupertinoColors.systemIndigo, + 'systemOrange': CupertinoColors.systemOrange, + 'systemPink': CupertinoColors.systemPink, + 'systemPurple': CupertinoColors.systemPurple, + 'systemRed': CupertinoColors.systemRed, + 'systemTeal': CupertinoColors.systemTeal, + 'systemYellow': CupertinoColors.systemYellow, + 'systemGrey': CupertinoColors.systemGrey, + 'systemGrey2': CupertinoColors.systemGrey2, + 'systemGrey3': CupertinoColors.systemGrey3, + 'systemGrey4': CupertinoColors.systemGrey4, + 'systemGrey5': CupertinoColors.systemGrey5, + 'systemGrey6': CupertinoColors.systemGrey6, + 'label': CupertinoColors.label, + 'secondaryLabel': CupertinoColors.secondaryLabel, + 'tertiaryLabel': CupertinoColors.tertiaryLabel, + 'quaternaryLabel': CupertinoColors.quaternaryLabel, + 'systemFill': CupertinoColors.systemFill, + 'secondarySystemFill': CupertinoColors.secondarySystemFill, + 'tertiarySystemFill': CupertinoColors.tertiarySystemFill, + 'quaternarySystemFill': CupertinoColors.quaternarySystemFill, + 'placeholderText': CupertinoColors.placeholderText, + 'systemBackground': CupertinoColors.systemBackground, + 'secondarySystemBackground': CupertinoColors.secondarySystemBackground, + 'tertiarySystemBackground': CupertinoColors.tertiarySystemBackground, + 'systemGroupedBackground': CupertinoColors.systemGroupedBackground, + 'secondarySystemGroupedBackground': + CupertinoColors.secondarySystemGroupedBackground, + 'tertiarySystemGroupedBackground': + CupertinoColors.tertiarySystemGroupedBackground, + 'separator': CupertinoColors.separator, + 'opaqueSeparator': CupertinoColors.opaqueSeparator, + 'link': CupertinoColors.link, + }, + 'CupertinoDynamicColor.resolve': (props) => CupertinoDynamicColor.resolve( + props['pa'][0], + props['pa'][1], + ), + 'CupertinoDynamicColor.maybeResolve': (props) => + CupertinoDynamicColor.maybeResolve( + props['pa'][0], + props['pa'][1], + ), + 'CupertinoDatePickerMode': { + 'values': CupertinoDatePickerMode.values, + 'time': CupertinoDatePickerMode.time, + 'date': CupertinoDatePickerMode.date, + 'dateAndTime': CupertinoDatePickerMode.dateAndTime, + }, + 'CupertinoTimerPickerMode': { + 'values': CupertinoTimerPickerMode.values, + 'hm': CupertinoTimerPickerMode.hm, + 'ms': CupertinoTimerPickerMode.ms, + 'hms': CupertinoTimerPickerMode.hms, + }, + 'CupertinoSliverRefreshControl.buildRefreshIndicator': (props) => + CupertinoSliverRefreshControl.buildRefreshIndicator( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + props['pa'][3]?.toDouble(), + props['pa'][4]?.toDouble(), + ), + 'RefreshIndicatorMode': { + 'values': RefreshIndicatorMode.values, + 'inactive': RefreshIndicatorMode.inactive, + 'drag': RefreshIndicatorMode.drag, + 'armed': RefreshIndicatorMode.armed, + 'refresh': RefreshIndicatorMode.refresh, + 'done': RefreshIndicatorMode.done, + }, + 'CupertinoThumbPainter': { + 'radius': CupertinoThumbPainter.radius, + 'extension': CupertinoThumbPainter.extension, + }, + 'CupertinoUserInterfaceLevel': (props) => CupertinoUserInterfaceLevel( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'CupertinoUserInterfaceLevel.of': (props) => + CupertinoUserInterfaceLevel.of( + props['pa'][0], + ), + 'CupertinoUserInterfaceLevel.maybeOf': (props) => + CupertinoUserInterfaceLevel.maybeOf( + props['pa'][0], + ), + 'CupertinoUserInterfaceLevelData': { + 'values': CupertinoUserInterfaceLevelData.values, + 'base': CupertinoUserInterfaceLevelData.base, + 'elevated': CupertinoUserInterfaceLevelData.elevated, + }, + 'CupertinoScrollbar': { + 'defaultThickness': CupertinoScrollbar.defaultThickness, + 'defaultThicknessWhileDragging': + CupertinoScrollbar.defaultThicknessWhileDragging, + 'defaultRadius': CupertinoScrollbar.defaultRadius, + 'defaultRadiusWhileDragging': + CupertinoScrollbar.defaultRadiusWhileDragging, + }, + 'CupertinoApp.createCupertinoHeroController': (props) => + CupertinoApp.createCupertinoHeroController(), + 'CupertinoIcons': { + 'iconFont': CupertinoIcons.iconFont, + 'iconFontPackage': CupertinoIcons.iconFontPackage, + 'left_chevron': CupertinoIcons.left_chevron, + 'right_chevron': CupertinoIcons.right_chevron, + 'share': CupertinoIcons.share, + 'share_solid': CupertinoIcons.share_solid, + 'book': CupertinoIcons.book, + 'book_solid': CupertinoIcons.book_solid, + 'bookmark': CupertinoIcons.bookmark, + 'bookmark_solid': CupertinoIcons.bookmark_solid, + 'info': CupertinoIcons.info, + 'reply': CupertinoIcons.reply, + 'conversation_bubble': CupertinoIcons.conversation_bubble, + 'profile_circled': CupertinoIcons.profile_circled, + 'plus_circled': CupertinoIcons.plus_circled, + 'minus_circled': CupertinoIcons.minus_circled, + 'flag': CupertinoIcons.flag, + 'search': CupertinoIcons.search, + 'check_mark': CupertinoIcons.check_mark, + 'check_mark_circled': CupertinoIcons.check_mark_circled, + 'check_mark_circled_solid': CupertinoIcons.check_mark_circled_solid, + 'circle': CupertinoIcons.circle, + 'circle_filled': CupertinoIcons.circle_filled, + 'back': CupertinoIcons.back, + 'forward': CupertinoIcons.forward, + 'home': CupertinoIcons.home, + 'shopping_cart': CupertinoIcons.shopping_cart, + 'ellipsis': CupertinoIcons.ellipsis, + 'phone': CupertinoIcons.phone, + 'phone_solid': CupertinoIcons.phone_solid, + 'down_arrow': CupertinoIcons.down_arrow, + 'up_arrow': CupertinoIcons.up_arrow, + 'battery_charging': CupertinoIcons.battery_charging, + 'battery_empty': CupertinoIcons.battery_empty, + 'battery_full': CupertinoIcons.battery_full, + 'battery_75_percent': CupertinoIcons.battery_75_percent, + 'battery_25_percent': CupertinoIcons.battery_25_percent, + 'bluetooth': CupertinoIcons.bluetooth, + 'restart': CupertinoIcons.restart, + 'reply_all': CupertinoIcons.reply_all, + 'reply_thick_solid': CupertinoIcons.reply_thick_solid, + 'share_up': CupertinoIcons.share_up, + 'shuffle': CupertinoIcons.shuffle, + 'shuffle_medium': CupertinoIcons.shuffle_medium, + 'shuffle_thick': CupertinoIcons.shuffle_thick, + 'photo_camera': CupertinoIcons.photo_camera, + 'photo_camera_solid': CupertinoIcons.photo_camera_solid, + 'video_camera': CupertinoIcons.video_camera, + 'video_camera_solid': CupertinoIcons.video_camera_solid, + 'switch_camera': CupertinoIcons.switch_camera, + 'switch_camera_solid': CupertinoIcons.switch_camera_solid, + 'collections': CupertinoIcons.collections, + 'collections_solid': CupertinoIcons.collections_solid, + 'folder': CupertinoIcons.folder, + 'folder_solid': CupertinoIcons.folder_solid, + 'folder_open': CupertinoIcons.folder_open, + 'delete': CupertinoIcons.delete, + 'delete_solid': CupertinoIcons.delete_solid, + 'delete_simple': CupertinoIcons.delete_simple, + 'pen': CupertinoIcons.pen, + 'pencil': CupertinoIcons.pencil, + 'create': CupertinoIcons.create, + 'create_solid': CupertinoIcons.create_solid, + 'refresh': CupertinoIcons.refresh, + 'refresh_circled': CupertinoIcons.refresh_circled, + 'refresh_circled_solid': CupertinoIcons.refresh_circled_solid, + 'refresh_thin': CupertinoIcons.refresh_thin, + 'refresh_thick': CupertinoIcons.refresh_thick, + 'refresh_bold': CupertinoIcons.refresh_bold, + 'clear_thick': CupertinoIcons.clear_thick, + 'clear_thick_circled': CupertinoIcons.clear_thick_circled, + 'clear': CupertinoIcons.clear, + 'clear_circled': CupertinoIcons.clear_circled, + 'clear_circled_solid': CupertinoIcons.clear_circled_solid, + 'add': CupertinoIcons.add, + 'add_circled': CupertinoIcons.add_circled, + 'add_circled_solid': CupertinoIcons.add_circled_solid, + 'gear': CupertinoIcons.gear, + 'gear_solid': CupertinoIcons.gear_solid, + 'gear_big': CupertinoIcons.gear_big, + 'settings': CupertinoIcons.settings, + 'settings_solid': CupertinoIcons.settings_solid, + 'music_note': CupertinoIcons.music_note, + 'double_music_note': CupertinoIcons.double_music_note, + 'play_arrow': CupertinoIcons.play_arrow, + 'play_arrow_solid': CupertinoIcons.play_arrow_solid, + 'pause': CupertinoIcons.pause, + 'pause_solid': CupertinoIcons.pause_solid, + 'loop': CupertinoIcons.loop, + 'loop_thick': CupertinoIcons.loop_thick, + 'volume_down': CupertinoIcons.volume_down, + 'volume_mute': CupertinoIcons.volume_mute, + 'volume_off': CupertinoIcons.volume_off, + 'volume_up': CupertinoIcons.volume_up, + 'fullscreen': CupertinoIcons.fullscreen, + 'fullscreen_exit': CupertinoIcons.fullscreen_exit, + 'mic_off': CupertinoIcons.mic_off, + 'mic': CupertinoIcons.mic, + 'mic_solid': CupertinoIcons.mic_solid, + 'clock': CupertinoIcons.clock, + 'clock_solid': CupertinoIcons.clock_solid, + 'time': CupertinoIcons.time, + 'time_solid': CupertinoIcons.time_solid, + 'padlock': CupertinoIcons.padlock, + 'padlock_solid': CupertinoIcons.padlock_solid, + 'eye': CupertinoIcons.eye, + 'eye_solid': CupertinoIcons.eye_solid, + 'person': CupertinoIcons.person, + 'person_solid': CupertinoIcons.person_solid, + 'person_add': CupertinoIcons.person_add, + 'person_add_solid': CupertinoIcons.person_add_solid, + 'group': CupertinoIcons.group, + 'group_solid': CupertinoIcons.group_solid, + 'mail': CupertinoIcons.mail, + 'mail_solid': CupertinoIcons.mail_solid, + 'location': CupertinoIcons.location, + 'location_solid': CupertinoIcons.location_solid, + 'tag': CupertinoIcons.tag, + 'tag_solid': CupertinoIcons.tag_solid, + 'tags': CupertinoIcons.tags, + 'tags_solid': CupertinoIcons.tags_solid, + 'bus': CupertinoIcons.bus, + 'car': CupertinoIcons.car, + 'car_detailed': CupertinoIcons.car_detailed, + 'train_style_one': CupertinoIcons.train_style_one, + 'train_style_two': CupertinoIcons.train_style_two, + 'paw': CupertinoIcons.paw, + 'paw_solid': CupertinoIcons.paw_solid, + 'game_controller': CupertinoIcons.game_controller, + 'game_controller_solid': CupertinoIcons.game_controller_solid, + 'lab_flask': CupertinoIcons.lab_flask, + 'lab_flask_solid': CupertinoIcons.lab_flask_solid, + 'heart': CupertinoIcons.heart, + 'heart_solid': CupertinoIcons.heart_solid, + 'bell': CupertinoIcons.bell, + 'bell_solid': CupertinoIcons.bell_solid, + 'news': CupertinoIcons.news, + 'news_solid': CupertinoIcons.news_solid, + 'brightness': CupertinoIcons.brightness, + 'brightness_solid': CupertinoIcons.brightness_solid, + 'airplane': CupertinoIcons.airplane, + 'alarm': CupertinoIcons.alarm, + 'alarm_fill': CupertinoIcons.alarm_fill, + 'alt': CupertinoIcons.alt, + 'ant': CupertinoIcons.ant, + 'ant_circle': CupertinoIcons.ant_circle, + 'ant_circle_fill': CupertinoIcons.ant_circle_fill, + 'ant_fill': CupertinoIcons.ant_fill, + 'antenna_radiowaves_left_right': + CupertinoIcons.antenna_radiowaves_left_right, + 'app': CupertinoIcons.app, + 'app_badge': CupertinoIcons.app_badge, + 'app_badge_fill': CupertinoIcons.app_badge_fill, + 'app_fill': CupertinoIcons.app_fill, + 'archivebox': CupertinoIcons.archivebox, + 'archivebox_fill': CupertinoIcons.archivebox_fill, + 'arrow_2_circlepath': CupertinoIcons.arrow_2_circlepath, + 'arrow_2_circlepath_circle': CupertinoIcons.arrow_2_circlepath_circle, + 'arrow_2_circlepath_circle_fill': + CupertinoIcons.arrow_2_circlepath_circle_fill, + 'arrow_2_squarepath': CupertinoIcons.arrow_2_squarepath, + 'arrow_3_trianglepath': CupertinoIcons.arrow_3_trianglepath, + 'arrow_branch': CupertinoIcons.arrow_branch, + 'arrow_clockwise': CupertinoIcons.arrow_clockwise, + 'arrow_clockwise_circle': CupertinoIcons.arrow_clockwise_circle, + 'arrow_clockwise_circle_fill': + CupertinoIcons.arrow_clockwise_circle_fill, + 'arrow_counterclockwise': CupertinoIcons.arrow_counterclockwise, + 'arrow_counterclockwise_circle': + CupertinoIcons.arrow_counterclockwise_circle, + 'arrow_counterclockwise_circle_fill': + CupertinoIcons.arrow_counterclockwise_circle_fill, + 'arrow_down': CupertinoIcons.arrow_down, + 'arrow_down_circle': CupertinoIcons.arrow_down_circle, + 'arrow_down_circle_fill': CupertinoIcons.arrow_down_circle_fill, + 'arrow_down_doc': CupertinoIcons.arrow_down_doc, + 'arrow_down_doc_fill': CupertinoIcons.arrow_down_doc_fill, + 'arrow_down_left': CupertinoIcons.arrow_down_left, + 'arrow_down_left_circle': CupertinoIcons.arrow_down_left_circle, + 'arrow_down_left_circle_fill': + CupertinoIcons.arrow_down_left_circle_fill, + 'arrow_down_left_square': CupertinoIcons.arrow_down_left_square, + 'arrow_down_left_square_fill': + CupertinoIcons.arrow_down_left_square_fill, + 'arrow_down_right': CupertinoIcons.arrow_down_right, + 'arrow_down_right_arrow_up_left': + CupertinoIcons.arrow_down_right_arrow_up_left, + 'arrow_down_right_circle': CupertinoIcons.arrow_down_right_circle, + 'arrow_down_right_circle_fill': + CupertinoIcons.arrow_down_right_circle_fill, + 'arrow_down_right_square': CupertinoIcons.arrow_down_right_square, + 'arrow_down_right_square_fill': + CupertinoIcons.arrow_down_right_square_fill, + 'arrow_down_square': CupertinoIcons.arrow_down_square, + 'arrow_down_square_fill': CupertinoIcons.arrow_down_square_fill, + 'arrow_down_to_line': CupertinoIcons.arrow_down_to_line, + 'arrow_down_to_line_alt': CupertinoIcons.arrow_down_to_line_alt, + 'arrow_left': CupertinoIcons.arrow_left, + 'arrow_left_circle': CupertinoIcons.arrow_left_circle, + 'arrow_left_circle_fill': CupertinoIcons.arrow_left_circle_fill, + 'arrow_left_right': CupertinoIcons.arrow_left_right, + 'arrow_left_right_circle': CupertinoIcons.arrow_left_right_circle, + 'arrow_left_right_circle_fill': + CupertinoIcons.arrow_left_right_circle_fill, + 'arrow_left_right_square': CupertinoIcons.arrow_left_right_square, + 'arrow_left_right_square_fill': + CupertinoIcons.arrow_left_right_square_fill, + 'arrow_left_square': CupertinoIcons.arrow_left_square, + 'arrow_left_square_fill': CupertinoIcons.arrow_left_square_fill, + 'arrow_left_to_line': CupertinoIcons.arrow_left_to_line, + 'arrow_left_to_line_alt': CupertinoIcons.arrow_left_to_line_alt, + 'arrow_merge': CupertinoIcons.arrow_merge, + 'arrow_right': CupertinoIcons.arrow_right, + 'arrow_right_arrow_left': CupertinoIcons.arrow_right_arrow_left, + 'arrow_right_arrow_left_circle': + CupertinoIcons.arrow_right_arrow_left_circle, + 'arrow_right_arrow_left_circle_fill': + CupertinoIcons.arrow_right_arrow_left_circle_fill, + 'arrow_right_arrow_left_square': + CupertinoIcons.arrow_right_arrow_left_square, + 'arrow_right_arrow_left_square_fill': + CupertinoIcons.arrow_right_arrow_left_square_fill, + 'arrow_right_circle': CupertinoIcons.arrow_right_circle, + 'arrow_right_circle_fill': CupertinoIcons.arrow_right_circle_fill, + 'arrow_right_square': CupertinoIcons.arrow_right_square, + 'arrow_right_square_fill': CupertinoIcons.arrow_right_square_fill, + 'arrow_right_to_line': CupertinoIcons.arrow_right_to_line, + 'arrow_right_to_line_alt': CupertinoIcons.arrow_right_to_line_alt, + 'arrow_swap': CupertinoIcons.arrow_swap, + 'arrow_turn_down_left': CupertinoIcons.arrow_turn_down_left, + 'arrow_turn_down_right': CupertinoIcons.arrow_turn_down_right, + 'arrow_turn_left_down': CupertinoIcons.arrow_turn_left_down, + 'arrow_turn_left_up': CupertinoIcons.arrow_turn_left_up, + 'arrow_turn_right_down': CupertinoIcons.arrow_turn_right_down, + 'arrow_turn_right_up': CupertinoIcons.arrow_turn_right_up, + 'arrow_turn_up_left': CupertinoIcons.arrow_turn_up_left, + 'arrow_turn_up_right': CupertinoIcons.arrow_turn_up_right, + 'arrow_up': CupertinoIcons.arrow_up, + 'arrow_up_arrow_down': CupertinoIcons.arrow_up_arrow_down, + 'arrow_up_arrow_down_circle': CupertinoIcons.arrow_up_arrow_down_circle, + 'arrow_up_arrow_down_circle_fill': + CupertinoIcons.arrow_up_arrow_down_circle_fill, + 'arrow_up_arrow_down_square': CupertinoIcons.arrow_up_arrow_down_square, + 'arrow_up_arrow_down_square_fill': + CupertinoIcons.arrow_up_arrow_down_square_fill, + 'arrow_up_bin': CupertinoIcons.arrow_up_bin, + 'arrow_up_bin_fill': CupertinoIcons.arrow_up_bin_fill, + 'arrow_up_circle': CupertinoIcons.arrow_up_circle, + 'arrow_up_circle_fill': CupertinoIcons.arrow_up_circle_fill, + 'arrow_up_doc': CupertinoIcons.arrow_up_doc, + 'arrow_up_doc_fill': CupertinoIcons.arrow_up_doc_fill, + 'arrow_up_down': CupertinoIcons.arrow_up_down, + 'arrow_up_down_circle': CupertinoIcons.arrow_up_down_circle, + 'arrow_up_down_circle_fill': CupertinoIcons.arrow_up_down_circle_fill, + 'arrow_up_down_square': CupertinoIcons.arrow_up_down_square, + 'arrow_up_down_square_fill': CupertinoIcons.arrow_up_down_square_fill, + 'arrow_up_left': CupertinoIcons.arrow_up_left, + 'arrow_up_left_arrow_down_right': + CupertinoIcons.arrow_up_left_arrow_down_right, + 'arrow_up_left_circle': CupertinoIcons.arrow_up_left_circle, + 'arrow_up_left_circle_fill': CupertinoIcons.arrow_up_left_circle_fill, + 'arrow_up_left_square': CupertinoIcons.arrow_up_left_square, + 'arrow_up_left_square_fill': CupertinoIcons.arrow_up_left_square_fill, + 'arrow_up_right': CupertinoIcons.arrow_up_right, + 'arrow_up_right_circle': CupertinoIcons.arrow_up_right_circle, + 'arrow_up_right_circle_fill': CupertinoIcons.arrow_up_right_circle_fill, + 'arrow_up_right_diamond': CupertinoIcons.arrow_up_right_diamond, + 'arrow_up_right_diamond_fill': + CupertinoIcons.arrow_up_right_diamond_fill, + 'arrow_up_right_square': CupertinoIcons.arrow_up_right_square, + 'arrow_up_right_square_fill': CupertinoIcons.arrow_up_right_square_fill, + 'arrow_up_square': CupertinoIcons.arrow_up_square, + 'arrow_up_square_fill': CupertinoIcons.arrow_up_square_fill, + 'arrow_up_to_line': CupertinoIcons.arrow_up_to_line, + 'arrow_up_to_line_alt': CupertinoIcons.arrow_up_to_line_alt, + 'arrow_uturn_down': CupertinoIcons.arrow_uturn_down, + 'arrow_uturn_down_circle': CupertinoIcons.arrow_uturn_down_circle, + 'arrow_uturn_down_circle_fill': + CupertinoIcons.arrow_uturn_down_circle_fill, + 'arrow_uturn_down_square': CupertinoIcons.arrow_uturn_down_square, + 'arrow_uturn_down_square_fill': + CupertinoIcons.arrow_uturn_down_square_fill, + 'arrow_uturn_left': CupertinoIcons.arrow_uturn_left, + 'arrow_uturn_left_circle': CupertinoIcons.arrow_uturn_left_circle, + 'arrow_uturn_left_circle_fill': + CupertinoIcons.arrow_uturn_left_circle_fill, + 'arrow_uturn_left_square': CupertinoIcons.arrow_uturn_left_square, + 'arrow_uturn_left_square_fill': + CupertinoIcons.arrow_uturn_left_square_fill, + 'arrow_uturn_right': CupertinoIcons.arrow_uturn_right, + 'arrow_uturn_right_circle': CupertinoIcons.arrow_uturn_right_circle, + 'arrow_uturn_right_circle_fill': + CupertinoIcons.arrow_uturn_right_circle_fill, + 'arrow_uturn_right_square': CupertinoIcons.arrow_uturn_right_square, + 'arrow_uturn_right_square_fill': + CupertinoIcons.arrow_uturn_right_square_fill, + 'arrow_uturn_up': CupertinoIcons.arrow_uturn_up, + 'arrow_uturn_up_circle': CupertinoIcons.arrow_uturn_up_circle, + 'arrow_uturn_up_circle_fill': CupertinoIcons.arrow_uturn_up_circle_fill, + 'arrow_uturn_up_square': CupertinoIcons.arrow_uturn_up_square, + 'arrow_uturn_up_square_fill': CupertinoIcons.arrow_uturn_up_square_fill, + 'arrowshape_turn_up_left': CupertinoIcons.arrowshape_turn_up_left, + 'arrowshape_turn_up_left_2': CupertinoIcons.arrowshape_turn_up_left_2, + 'arrowshape_turn_up_left_2_fill': + CupertinoIcons.arrowshape_turn_up_left_2_fill, + 'arrowshape_turn_up_left_circle': + CupertinoIcons.arrowshape_turn_up_left_circle, + 'arrowshape_turn_up_left_circle_fill': + CupertinoIcons.arrowshape_turn_up_left_circle_fill, + 'arrowshape_turn_up_left_fill': + CupertinoIcons.arrowshape_turn_up_left_fill, + 'arrowshape_turn_up_right': CupertinoIcons.arrowshape_turn_up_right, + 'arrowshape_turn_up_right_circle': + CupertinoIcons.arrowshape_turn_up_right_circle, + 'arrowshape_turn_up_right_circle_fill': + CupertinoIcons.arrowshape_turn_up_right_circle_fill, + 'arrowshape_turn_up_right_fill': + CupertinoIcons.arrowshape_turn_up_right_fill, + 'arrowtriangle_down': CupertinoIcons.arrowtriangle_down, + 'arrowtriangle_down_circle': CupertinoIcons.arrowtriangle_down_circle, + 'arrowtriangle_down_circle_fill': + CupertinoIcons.arrowtriangle_down_circle_fill, + 'arrowtriangle_down_fill': CupertinoIcons.arrowtriangle_down_fill, + 'arrowtriangle_down_square': CupertinoIcons.arrowtriangle_down_square, + 'arrowtriangle_down_square_fill': + CupertinoIcons.arrowtriangle_down_square_fill, + 'arrowtriangle_left': CupertinoIcons.arrowtriangle_left, + 'arrowtriangle_left_circle': CupertinoIcons.arrowtriangle_left_circle, + 'arrowtriangle_left_circle_fill': + CupertinoIcons.arrowtriangle_left_circle_fill, + 'arrowtriangle_left_fill': CupertinoIcons.arrowtriangle_left_fill, + 'arrowtriangle_left_square': CupertinoIcons.arrowtriangle_left_square, + 'arrowtriangle_left_square_fill': + CupertinoIcons.arrowtriangle_left_square_fill, + 'arrowtriangle_right': CupertinoIcons.arrowtriangle_right, + 'arrowtriangle_right_circle': CupertinoIcons.arrowtriangle_right_circle, + 'arrowtriangle_right_circle_fill': + CupertinoIcons.arrowtriangle_right_circle_fill, + 'arrowtriangle_right_fill': CupertinoIcons.arrowtriangle_right_fill, + 'arrowtriangle_right_square': CupertinoIcons.arrowtriangle_right_square, + 'arrowtriangle_right_square_fill': + CupertinoIcons.arrowtriangle_right_square_fill, + 'arrowtriangle_up': CupertinoIcons.arrowtriangle_up, + 'arrowtriangle_up_circle': CupertinoIcons.arrowtriangle_up_circle, + 'arrowtriangle_up_circle_fill': + CupertinoIcons.arrowtriangle_up_circle_fill, + 'arrowtriangle_up_fill': CupertinoIcons.arrowtriangle_up_fill, + 'arrowtriangle_up_square': CupertinoIcons.arrowtriangle_up_square, + 'arrowtriangle_up_square_fill': + CupertinoIcons.arrowtriangle_up_square_fill, + 'asterisk_circle': CupertinoIcons.asterisk_circle, + 'asterisk_circle_fill': CupertinoIcons.asterisk_circle_fill, + 'at': CupertinoIcons.at, + 'at_badge_minus': CupertinoIcons.at_badge_minus, + 'at_badge_plus': CupertinoIcons.at_badge_plus, + 'at_circle': CupertinoIcons.at_circle, + 'at_circle_fill': CupertinoIcons.at_circle_fill, + 'backward': CupertinoIcons.backward, + 'backward_end': CupertinoIcons.backward_end, + 'backward_end_alt': CupertinoIcons.backward_end_alt, + 'backward_end_alt_fill': CupertinoIcons.backward_end_alt_fill, + 'backward_end_fill': CupertinoIcons.backward_end_fill, + 'backward_fill': CupertinoIcons.backward_fill, + 'badge_plus_radiowaves_right': + CupertinoIcons.badge_plus_radiowaves_right, + 'bag': CupertinoIcons.bag, + 'bag_badge_minus': CupertinoIcons.bag_badge_minus, + 'bag_badge_plus': CupertinoIcons.bag_badge_plus, + 'bag_fill': CupertinoIcons.bag_fill, + 'bag_fill_badge_minus': CupertinoIcons.bag_fill_badge_minus, + 'bag_fill_badge_plus': CupertinoIcons.bag_fill_badge_plus, + 'bandage': CupertinoIcons.bandage, + 'bandage_fill': CupertinoIcons.bandage_fill, + 'barcode': CupertinoIcons.barcode, + 'barcode_viewfinder': CupertinoIcons.barcode_viewfinder, + 'bars': CupertinoIcons.bars, + 'battery_0': CupertinoIcons.battery_0, + 'battery_100': CupertinoIcons.battery_100, + 'battery_25': CupertinoIcons.battery_25, + 'bed_double': CupertinoIcons.bed_double, + 'bed_double_fill': CupertinoIcons.bed_double_fill, + 'bell_circle': CupertinoIcons.bell_circle, + 'bell_circle_fill': CupertinoIcons.bell_circle_fill, + 'bell_fill': CupertinoIcons.bell_fill, + 'bell_slash': CupertinoIcons.bell_slash, + 'bell_slash_fill': CupertinoIcons.bell_slash_fill, + 'bin_xmark': CupertinoIcons.bin_xmark, + 'bin_xmark_fill': CupertinoIcons.bin_xmark_fill, + 'bitcoin': CupertinoIcons.bitcoin, + 'bitcoin_circle': CupertinoIcons.bitcoin_circle, + 'bitcoin_circle_fill': CupertinoIcons.bitcoin_circle_fill, + 'bold': CupertinoIcons.bold, + 'bold_italic_underline': CupertinoIcons.bold_italic_underline, + 'bold_underline': CupertinoIcons.bold_underline, + 'bolt': CupertinoIcons.bolt, + 'bolt_badge_a': CupertinoIcons.bolt_badge_a, + 'bolt_badge_a_fill': CupertinoIcons.bolt_badge_a_fill, + 'bolt_circle': CupertinoIcons.bolt_circle, + 'bolt_circle_fill': CupertinoIcons.bolt_circle_fill, + 'bolt_fill': CupertinoIcons.bolt_fill, + 'bolt_horizontal': CupertinoIcons.bolt_horizontal, + 'bolt_horizontal_circle': CupertinoIcons.bolt_horizontal_circle, + 'bolt_horizontal_circle_fill': + CupertinoIcons.bolt_horizontal_circle_fill, + 'bolt_horizontal_fill': CupertinoIcons.bolt_horizontal_fill, + 'bolt_slash': CupertinoIcons.bolt_slash, + 'bolt_slash_fill': CupertinoIcons.bolt_slash_fill, + 'book_circle': CupertinoIcons.book_circle, + 'book_circle_fill': CupertinoIcons.book_circle_fill, + 'book_fill': CupertinoIcons.book_fill, + 'bookmark_fill': CupertinoIcons.bookmark_fill, + 'briefcase': CupertinoIcons.briefcase, + 'briefcase_fill': CupertinoIcons.briefcase_fill, + 'bubble_left': CupertinoIcons.bubble_left, + 'bubble_left_bubble_right': CupertinoIcons.bubble_left_bubble_right, + 'bubble_left_bubble_right_fill': + CupertinoIcons.bubble_left_bubble_right_fill, + 'bubble_left_fill': CupertinoIcons.bubble_left_fill, + 'bubble_middle_bottom': CupertinoIcons.bubble_middle_bottom, + 'bubble_middle_bottom_fill': CupertinoIcons.bubble_middle_bottom_fill, + 'bubble_middle_top': CupertinoIcons.bubble_middle_top, + 'bubble_middle_top_fill': CupertinoIcons.bubble_middle_top_fill, + 'bubble_right': CupertinoIcons.bubble_right, + 'bubble_right_fill': CupertinoIcons.bubble_right_fill, + 'building_2_fill': CupertinoIcons.building_2_fill, + 'burn': CupertinoIcons.burn, + 'burst': CupertinoIcons.burst, + 'burst_fill': CupertinoIcons.burst_fill, + 'calendar': CupertinoIcons.calendar, + 'calendar_badge_minus': CupertinoIcons.calendar_badge_minus, + 'calendar_badge_plus': CupertinoIcons.calendar_badge_plus, + 'calendar_circle': CupertinoIcons.calendar_circle, + 'calendar_circle_fill': CupertinoIcons.calendar_circle_fill, + 'calendar_today': CupertinoIcons.calendar_today, + 'camera': CupertinoIcons.camera, + 'camera_circle': CupertinoIcons.camera_circle, + 'camera_circle_fill': CupertinoIcons.camera_circle_fill, + 'camera_fill': CupertinoIcons.camera_fill, + 'camera_on_rectangle': CupertinoIcons.camera_on_rectangle, + 'camera_on_rectangle_fill': CupertinoIcons.camera_on_rectangle_fill, + 'camera_rotate': CupertinoIcons.camera_rotate, + 'camera_rotate_fill': CupertinoIcons.camera_rotate_fill, + 'camera_viewfinder': CupertinoIcons.camera_viewfinder, + 'capslock': CupertinoIcons.capslock, + 'capslock_fill': CupertinoIcons.capslock_fill, + 'capsule': CupertinoIcons.capsule, + 'capsule_fill': CupertinoIcons.capsule_fill, + 'captions_bubble': CupertinoIcons.captions_bubble, + 'captions_bubble_fill': CupertinoIcons.captions_bubble_fill, + 'car_fill': CupertinoIcons.car_fill, + 'cart': CupertinoIcons.cart, + 'cart_badge_minus': CupertinoIcons.cart_badge_minus, + 'cart_badge_plus': CupertinoIcons.cart_badge_plus, + 'cart_fill': CupertinoIcons.cart_fill, + 'cart_fill_badge_minus': CupertinoIcons.cart_fill_badge_minus, + 'cart_fill_badge_plus': CupertinoIcons.cart_fill_badge_plus, + 'chart_bar': CupertinoIcons.chart_bar, + 'chart_bar_alt_fill': CupertinoIcons.chart_bar_alt_fill, + 'chart_bar_circle': CupertinoIcons.chart_bar_circle, + 'chart_bar_circle_fill': CupertinoIcons.chart_bar_circle_fill, + 'chart_bar_fill': CupertinoIcons.chart_bar_fill, + 'chart_bar_square': CupertinoIcons.chart_bar_square, + 'chart_bar_square_fill': CupertinoIcons.chart_bar_square_fill, + 'chart_pie': CupertinoIcons.chart_pie, + 'chart_pie_fill': CupertinoIcons.chart_pie_fill, + 'chat_bubble': CupertinoIcons.chat_bubble, + 'chat_bubble_2': CupertinoIcons.chat_bubble_2, + 'chat_bubble_2_fill': CupertinoIcons.chat_bubble_2_fill, + 'chat_bubble_fill': CupertinoIcons.chat_bubble_fill, + 'chat_bubble_text': CupertinoIcons.chat_bubble_text, + 'chat_bubble_text_fill': CupertinoIcons.chat_bubble_text_fill, + 'checkmark': CupertinoIcons.checkmark, + 'checkmark_alt': CupertinoIcons.checkmark_alt, + 'checkmark_alt_circle': CupertinoIcons.checkmark_alt_circle, + 'checkmark_alt_circle_fill': CupertinoIcons.checkmark_alt_circle_fill, + 'checkmark_circle': CupertinoIcons.checkmark_circle, + 'checkmark_circle_fill': CupertinoIcons.checkmark_circle_fill, + 'checkmark_rectangle': CupertinoIcons.checkmark_rectangle, + 'checkmark_rectangle_fill': CupertinoIcons.checkmark_rectangle_fill, + 'checkmark_seal': CupertinoIcons.checkmark_seal, + 'checkmark_seal_fill': CupertinoIcons.checkmark_seal_fill, + 'checkmark_shield': CupertinoIcons.checkmark_shield, + 'checkmark_shield_fill': CupertinoIcons.checkmark_shield_fill, + 'checkmark_square': CupertinoIcons.checkmark_square, + 'checkmark_square_fill': CupertinoIcons.checkmark_square_fill, + 'chevron_back': CupertinoIcons.chevron_back, + 'chevron_compact_down': CupertinoIcons.chevron_compact_down, + 'chevron_compact_left': CupertinoIcons.chevron_compact_left, + 'chevron_compact_right': CupertinoIcons.chevron_compact_right, + 'chevron_compact_up': CupertinoIcons.chevron_compact_up, + 'chevron_down': CupertinoIcons.chevron_down, + 'chevron_down_circle': CupertinoIcons.chevron_down_circle, + 'chevron_down_circle_fill': CupertinoIcons.chevron_down_circle_fill, + 'chevron_down_square': CupertinoIcons.chevron_down_square, + 'chevron_down_square_fill': CupertinoIcons.chevron_down_square_fill, + 'chevron_forward': CupertinoIcons.chevron_forward, + 'chevron_left': CupertinoIcons.chevron_left, + 'chevron_left_2': CupertinoIcons.chevron_left_2, + 'chevron_left_circle': CupertinoIcons.chevron_left_circle, + 'chevron_left_circle_fill': CupertinoIcons.chevron_left_circle_fill, + 'chevron_left_slash_chevron_right': + CupertinoIcons.chevron_left_slash_chevron_right, + 'chevron_left_square': CupertinoIcons.chevron_left_square, + 'chevron_left_square_fill': CupertinoIcons.chevron_left_square_fill, + 'chevron_right': CupertinoIcons.chevron_right, + 'chevron_right_2': CupertinoIcons.chevron_right_2, + 'chevron_right_circle': CupertinoIcons.chevron_right_circle, + 'chevron_right_circle_fill': CupertinoIcons.chevron_right_circle_fill, + 'chevron_right_square': CupertinoIcons.chevron_right_square, + 'chevron_right_square_fill': CupertinoIcons.chevron_right_square_fill, + 'chevron_up': CupertinoIcons.chevron_up, + 'chevron_up_chevron_down': CupertinoIcons.chevron_up_chevron_down, + 'chevron_up_circle': CupertinoIcons.chevron_up_circle, + 'chevron_up_circle_fill': CupertinoIcons.chevron_up_circle_fill, + 'chevron_up_square': CupertinoIcons.chevron_up_square, + 'chevron_up_square_fill': CupertinoIcons.chevron_up_square_fill, + 'circle_bottomthird_split': CupertinoIcons.circle_bottomthird_split, + 'circle_fill': CupertinoIcons.circle_fill, + 'circle_grid_3x3': CupertinoIcons.circle_grid_3x3, + 'circle_grid_3x3_fill': CupertinoIcons.circle_grid_3x3_fill, + 'circle_grid_hex': CupertinoIcons.circle_grid_hex, + 'circle_grid_hex_fill': CupertinoIcons.circle_grid_hex_fill, + 'circle_lefthalf_fill': CupertinoIcons.circle_lefthalf_fill, + 'circle_righthalf_fill': CupertinoIcons.circle_righthalf_fill, + 'clear_fill': CupertinoIcons.clear_fill, + 'clock_fill': CupertinoIcons.clock_fill, + 'cloud': CupertinoIcons.cloud, + 'cloud_bolt': CupertinoIcons.cloud_bolt, + 'cloud_bolt_fill': CupertinoIcons.cloud_bolt_fill, + 'cloud_bolt_rain': CupertinoIcons.cloud_bolt_rain, + 'cloud_bolt_rain_fill': CupertinoIcons.cloud_bolt_rain_fill, + 'cloud_download': CupertinoIcons.cloud_download, + 'cloud_download_fill': CupertinoIcons.cloud_download_fill, + 'cloud_drizzle': CupertinoIcons.cloud_drizzle, + 'cloud_drizzle_fill': CupertinoIcons.cloud_drizzle_fill, + 'cloud_fill': CupertinoIcons.cloud_fill, + 'cloud_fog': CupertinoIcons.cloud_fog, + 'cloud_fog_fill': CupertinoIcons.cloud_fog_fill, + 'cloud_hail': CupertinoIcons.cloud_hail, + 'cloud_hail_fill': CupertinoIcons.cloud_hail_fill, + 'cloud_heavyrain': CupertinoIcons.cloud_heavyrain, + 'cloud_heavyrain_fill': CupertinoIcons.cloud_heavyrain_fill, + 'cloud_moon': CupertinoIcons.cloud_moon, + 'cloud_moon_bolt': CupertinoIcons.cloud_moon_bolt, + 'cloud_moon_bolt_fill': CupertinoIcons.cloud_moon_bolt_fill, + 'cloud_moon_fill': CupertinoIcons.cloud_moon_fill, + 'cloud_moon_rain': CupertinoIcons.cloud_moon_rain, + 'cloud_moon_rain_fill': CupertinoIcons.cloud_moon_rain_fill, + 'cloud_rain': CupertinoIcons.cloud_rain, + 'cloud_rain_fill': CupertinoIcons.cloud_rain_fill, + 'cloud_sleet': CupertinoIcons.cloud_sleet, + 'cloud_sleet_fill': CupertinoIcons.cloud_sleet_fill, + 'cloud_snow': CupertinoIcons.cloud_snow, + 'cloud_snow_fill': CupertinoIcons.cloud_snow_fill, + 'cloud_sun': CupertinoIcons.cloud_sun, + 'cloud_sun_bolt': CupertinoIcons.cloud_sun_bolt, + 'cloud_sun_bolt_fill': CupertinoIcons.cloud_sun_bolt_fill, + 'cloud_sun_fill': CupertinoIcons.cloud_sun_fill, + 'cloud_sun_rain': CupertinoIcons.cloud_sun_rain, + 'cloud_sun_rain_fill': CupertinoIcons.cloud_sun_rain_fill, + 'cloud_upload': CupertinoIcons.cloud_upload, + 'cloud_upload_fill': CupertinoIcons.cloud_upload_fill, + 'color_filter': CupertinoIcons.color_filter, + 'color_filter_fill': CupertinoIcons.color_filter_fill, + 'command': CupertinoIcons.command, + 'compass': CupertinoIcons.compass, + 'compass_fill': CupertinoIcons.compass_fill, + 'control': CupertinoIcons.control, + 'creditcard': CupertinoIcons.creditcard, + 'creditcard_fill': CupertinoIcons.creditcard_fill, + 'crop': CupertinoIcons.crop, + 'crop_rotate': CupertinoIcons.crop_rotate, + 'cube': CupertinoIcons.cube, + 'cube_box': CupertinoIcons.cube_box, + 'cube_box_fill': CupertinoIcons.cube_box_fill, + 'cube_fill': CupertinoIcons.cube_fill, + 'cursor_rays': CupertinoIcons.cursor_rays, + 'decrease_indent': CupertinoIcons.decrease_indent, + 'decrease_quotelevel': CupertinoIcons.decrease_quotelevel, + 'delete_left': CupertinoIcons.delete_left, + 'delete_left_fill': CupertinoIcons.delete_left_fill, + 'delete_right': CupertinoIcons.delete_right, + 'delete_right_fill': CupertinoIcons.delete_right_fill, + 'desktopcomputer': CupertinoIcons.desktopcomputer, + 'device_desktop': CupertinoIcons.device_desktop, + 'device_laptop': CupertinoIcons.device_laptop, + 'device_phone_landscape': CupertinoIcons.device_phone_landscape, + 'device_phone_portrait': CupertinoIcons.device_phone_portrait, + 'dial': CupertinoIcons.dial, + 'dial_fill': CupertinoIcons.dial_fill, + 'divide': CupertinoIcons.divide, + 'divide_circle': CupertinoIcons.divide_circle, + 'divide_circle_fill': CupertinoIcons.divide_circle_fill, + 'divide_square': CupertinoIcons.divide_square, + 'divide_square_fill': CupertinoIcons.divide_square_fill, + 'doc': CupertinoIcons.doc, + 'doc_append': CupertinoIcons.doc_append, + 'doc_chart': CupertinoIcons.doc_chart, + 'doc_chart_fill': CupertinoIcons.doc_chart_fill, + 'doc_checkmark': CupertinoIcons.doc_checkmark, + 'doc_checkmark_fill': CupertinoIcons.doc_checkmark_fill, + 'doc_circle': CupertinoIcons.doc_circle, + 'doc_circle_fill': CupertinoIcons.doc_circle_fill, + 'doc_fill': CupertinoIcons.doc_fill, + 'doc_on_clipboard': CupertinoIcons.doc_on_clipboard, + 'doc_on_clipboard_fill': CupertinoIcons.doc_on_clipboard_fill, + 'doc_on_doc': CupertinoIcons.doc_on_doc, + 'doc_on_doc_fill': CupertinoIcons.doc_on_doc_fill, + 'doc_person': CupertinoIcons.doc_person, + 'doc_person_fill': CupertinoIcons.doc_person_fill, + 'doc_plaintext': CupertinoIcons.doc_plaintext, + 'doc_richtext': CupertinoIcons.doc_richtext, + 'doc_text': CupertinoIcons.doc_text, + 'doc_text_fill': CupertinoIcons.doc_text_fill, + 'doc_text_search': CupertinoIcons.doc_text_search, + 'doc_text_viewfinder': CupertinoIcons.doc_text_viewfinder, + 'dot_radiowaves_left_right': CupertinoIcons.dot_radiowaves_left_right, + 'dot_radiowaves_right': CupertinoIcons.dot_radiowaves_right, + 'dot_square': CupertinoIcons.dot_square, + 'dot_square_fill': CupertinoIcons.dot_square_fill, + 'download_circle': CupertinoIcons.download_circle, + 'download_circle_fill': CupertinoIcons.download_circle_fill, + 'drop': CupertinoIcons.drop, + 'drop_fill': CupertinoIcons.drop_fill, + 'drop_triangle': CupertinoIcons.drop_triangle, + 'drop_triangle_fill': CupertinoIcons.drop_triangle_fill, + 'ear': CupertinoIcons.ear, + 'eject': CupertinoIcons.eject, + 'eject_fill': CupertinoIcons.eject_fill, + 'ellipses_bubble': CupertinoIcons.ellipses_bubble, + 'ellipses_bubble_fill': CupertinoIcons.ellipses_bubble_fill, + 'ellipsis_circle': CupertinoIcons.ellipsis_circle, + 'ellipsis_circle_fill': CupertinoIcons.ellipsis_circle_fill, + 'ellipsis_vertical': CupertinoIcons.ellipsis_vertical, + 'ellipsis_vertical_circle': CupertinoIcons.ellipsis_vertical_circle, + 'ellipsis_vertical_circle_fill': + CupertinoIcons.ellipsis_vertical_circle_fill, + 'envelope': CupertinoIcons.envelope, + 'envelope_badge': CupertinoIcons.envelope_badge, + 'envelope_badge_fill': CupertinoIcons.envelope_badge_fill, + 'envelope_circle': CupertinoIcons.envelope_circle, + 'envelope_circle_fill': CupertinoIcons.envelope_circle_fill, + 'envelope_fill': CupertinoIcons.envelope_fill, + 'envelope_open': CupertinoIcons.envelope_open, + 'envelope_open_fill': CupertinoIcons.envelope_open_fill, + 'equal': CupertinoIcons.equal, + 'equal_circle': CupertinoIcons.equal_circle, + 'equal_circle_fill': CupertinoIcons.equal_circle_fill, + 'equal_square': CupertinoIcons.equal_square, + 'equal_square_fill': CupertinoIcons.equal_square_fill, + 'escape': CupertinoIcons.escape, + 'exclamationmark': CupertinoIcons.exclamationmark, + 'exclamationmark_bubble': CupertinoIcons.exclamationmark_bubble, + 'exclamationmark_bubble_fill': + CupertinoIcons.exclamationmark_bubble_fill, + 'exclamationmark_circle': CupertinoIcons.exclamationmark_circle, + 'exclamationmark_circle_fill': + CupertinoIcons.exclamationmark_circle_fill, + 'exclamationmark_octagon': CupertinoIcons.exclamationmark_octagon, + 'exclamationmark_octagon_fill': + CupertinoIcons.exclamationmark_octagon_fill, + 'exclamationmark_shield': CupertinoIcons.exclamationmark_shield, + 'exclamationmark_shield_fill': + CupertinoIcons.exclamationmark_shield_fill, + 'exclamationmark_square': CupertinoIcons.exclamationmark_square, + 'exclamationmark_square_fill': + CupertinoIcons.exclamationmark_square_fill, + 'exclamationmark_triangle': CupertinoIcons.exclamationmark_triangle, + 'exclamationmark_triangle_fill': + CupertinoIcons.exclamationmark_triangle_fill, + 'eye_fill': CupertinoIcons.eye_fill, + 'eye_slash': CupertinoIcons.eye_slash, + 'eye_slash_fill': CupertinoIcons.eye_slash_fill, + 'eyedropper': CupertinoIcons.eyedropper, + 'eyedropper_full': CupertinoIcons.eyedropper_full, + 'eyedropper_halffull': CupertinoIcons.eyedropper_halffull, + 'eyeglasses': CupertinoIcons.eyeglasses, + 'f_cursive': CupertinoIcons.f_cursive, + 'f_cursive_circle': CupertinoIcons.f_cursive_circle, + 'f_cursive_circle_fill': CupertinoIcons.f_cursive_circle_fill, + 'film': CupertinoIcons.film, + 'film_fill': CupertinoIcons.film_fill, + 'flag_circle': CupertinoIcons.flag_circle, + 'flag_circle_fill': CupertinoIcons.flag_circle_fill, + 'flag_fill': CupertinoIcons.flag_fill, + 'flag_slash': CupertinoIcons.flag_slash, + 'flag_slash_fill': CupertinoIcons.flag_slash_fill, + 'flame': CupertinoIcons.flame, + 'flame_fill': CupertinoIcons.flame_fill, + 'floppy_disk': CupertinoIcons.floppy_disk, + 'flowchart': CupertinoIcons.flowchart, + 'flowchart_fill': CupertinoIcons.flowchart_fill, + 'folder_badge_minus': CupertinoIcons.folder_badge_minus, + 'folder_badge_person_crop': CupertinoIcons.folder_badge_person_crop, + 'folder_badge_plus': CupertinoIcons.folder_badge_plus, + 'folder_circle': CupertinoIcons.folder_circle, + 'folder_circle_fill': CupertinoIcons.folder_circle_fill, + 'folder_fill': CupertinoIcons.folder_fill, + 'folder_fill_badge_minus': CupertinoIcons.folder_fill_badge_minus, + 'folder_fill_badge_person_crop': + CupertinoIcons.folder_fill_badge_person_crop, + 'folder_fill_badge_plus': CupertinoIcons.folder_fill_badge_plus, + 'forward_end': CupertinoIcons.forward_end, + 'forward_end_alt': CupertinoIcons.forward_end_alt, + 'forward_end_alt_fill': CupertinoIcons.forward_end_alt_fill, + 'forward_end_fill': CupertinoIcons.forward_end_fill, + 'forward_fill': CupertinoIcons.forward_fill, + 'function': CupertinoIcons.function, + 'fx': CupertinoIcons.fx, + 'gamecontroller': CupertinoIcons.gamecontroller, + 'gamecontroller_alt_fill': CupertinoIcons.gamecontroller_alt_fill, + 'gamecontroller_fill': CupertinoIcons.gamecontroller_fill, + 'gauge': CupertinoIcons.gauge, + 'gauge_badge_minus': CupertinoIcons.gauge_badge_minus, + 'gauge_badge_plus': CupertinoIcons.gauge_badge_plus, + 'gear_alt': CupertinoIcons.gear_alt, + 'gear_alt_fill': CupertinoIcons.gear_alt_fill, + 'gift': CupertinoIcons.gift, + 'gift_alt': CupertinoIcons.gift_alt, + 'gift_alt_fill': CupertinoIcons.gift_alt_fill, + 'gift_fill': CupertinoIcons.gift_fill, + 'globe': CupertinoIcons.globe, + 'gobackward': CupertinoIcons.gobackward, + 'gobackward_10': CupertinoIcons.gobackward_10, + 'gobackward_15': CupertinoIcons.gobackward_15, + 'gobackward_30': CupertinoIcons.gobackward_30, + 'gobackward_45': CupertinoIcons.gobackward_45, + 'gobackward_60': CupertinoIcons.gobackward_60, + 'gobackward_75': CupertinoIcons.gobackward_75, + 'gobackward_90': CupertinoIcons.gobackward_90, + 'gobackward_minus': CupertinoIcons.gobackward_minus, + 'goforward': CupertinoIcons.goforward, + 'goforward_10': CupertinoIcons.goforward_10, + 'goforward_15': CupertinoIcons.goforward_15, + 'goforward_30': CupertinoIcons.goforward_30, + 'goforward_45': CupertinoIcons.goforward_45, + 'goforward_60': CupertinoIcons.goforward_60, + 'goforward_75': CupertinoIcons.goforward_75, + 'goforward_90': CupertinoIcons.goforward_90, + 'goforward_plus': CupertinoIcons.goforward_plus, + 'graph_circle': CupertinoIcons.graph_circle, + 'graph_circle_fill': CupertinoIcons.graph_circle_fill, + 'graph_square': CupertinoIcons.graph_square, + 'graph_square_fill': CupertinoIcons.graph_square_fill, + 'greaterthan': CupertinoIcons.greaterthan, + 'greaterthan_circle': CupertinoIcons.greaterthan_circle, + 'greaterthan_circle_fill': CupertinoIcons.greaterthan_circle_fill, + 'greaterthan_square': CupertinoIcons.greaterthan_square, + 'greaterthan_square_fill': CupertinoIcons.greaterthan_square_fill, + 'grid': CupertinoIcons.grid, + 'grid_circle': CupertinoIcons.grid_circle, + 'grid_circle_fill': CupertinoIcons.grid_circle_fill, + 'guitars': CupertinoIcons.guitars, + 'hammer': CupertinoIcons.hammer, + 'hammer_fill': CupertinoIcons.hammer_fill, + 'hand_draw': CupertinoIcons.hand_draw, + 'hand_draw_fill': CupertinoIcons.hand_draw_fill, + 'hand_point_left': CupertinoIcons.hand_point_left, + 'hand_point_left_fill': CupertinoIcons.hand_point_left_fill, + 'hand_point_right': CupertinoIcons.hand_point_right, + 'hand_point_right_fill': CupertinoIcons.hand_point_right_fill, + 'hand_raised': CupertinoIcons.hand_raised, + 'hand_raised_fill': CupertinoIcons.hand_raised_fill, + 'hand_raised_slash': CupertinoIcons.hand_raised_slash, + 'hand_raised_slash_fill': CupertinoIcons.hand_raised_slash_fill, + 'hand_thumbsdown': CupertinoIcons.hand_thumbsdown, + 'hand_thumbsdown_fill': CupertinoIcons.hand_thumbsdown_fill, + 'hand_thumbsup': CupertinoIcons.hand_thumbsup, + 'hand_thumbsup_fill': CupertinoIcons.hand_thumbsup_fill, + 'hare': CupertinoIcons.hare, + 'hare_fill': CupertinoIcons.hare_fill, + 'headphones': CupertinoIcons.headphones, + 'heart_circle': CupertinoIcons.heart_circle, + 'heart_circle_fill': CupertinoIcons.heart_circle_fill, + 'heart_fill': CupertinoIcons.heart_fill, + 'heart_slash': CupertinoIcons.heart_slash, + 'heart_slash_circle': CupertinoIcons.heart_slash_circle, + 'heart_slash_circle_fill': CupertinoIcons.heart_slash_circle_fill, + 'heart_slash_fill': CupertinoIcons.heart_slash_fill, + 'helm': CupertinoIcons.helm, + 'hexagon': CupertinoIcons.hexagon, + 'hexagon_fill': CupertinoIcons.hexagon_fill, + 'hifispeaker': CupertinoIcons.hifispeaker, + 'hifispeaker_fill': CupertinoIcons.hifispeaker_fill, + 'hourglass': CupertinoIcons.hourglass, + 'hourglass_bottomhalf_fill': CupertinoIcons.hourglass_bottomhalf_fill, + 'hourglass_tophalf_fill': CupertinoIcons.hourglass_tophalf_fill, + 'house': CupertinoIcons.house, + 'house_alt': CupertinoIcons.house_alt, + 'house_alt_fill': CupertinoIcons.house_alt_fill, + 'house_fill': CupertinoIcons.house_fill, + 'hurricane': CupertinoIcons.hurricane, + 'increase_indent': CupertinoIcons.increase_indent, + 'increase_quotelevel': CupertinoIcons.increase_quotelevel, + 'infinite': CupertinoIcons.infinite, + 'info_circle': CupertinoIcons.info_circle, + 'info_circle_fill': CupertinoIcons.info_circle_fill, + 'italic': CupertinoIcons.italic, + 'keyboard': CupertinoIcons.keyboard, + 'keyboard_chevron_compact_down': + CupertinoIcons.keyboard_chevron_compact_down, + 'largecircle_fill_circle': CupertinoIcons.largecircle_fill_circle, + 'lasso': CupertinoIcons.lasso, + 'layers': CupertinoIcons.layers, + 'layers_alt': CupertinoIcons.layers_alt, + 'layers_alt_fill': CupertinoIcons.layers_alt_fill, + 'layers_fill': CupertinoIcons.layers_fill, + 'leaf_arrow_circlepath': CupertinoIcons.leaf_arrow_circlepath, + 'lessthan': CupertinoIcons.lessthan, + 'lessthan_circle': CupertinoIcons.lessthan_circle, + 'lessthan_circle_fill': CupertinoIcons.lessthan_circle_fill, + 'lessthan_square': CupertinoIcons.lessthan_square, + 'lessthan_square_fill': CupertinoIcons.lessthan_square_fill, + 'light_max': CupertinoIcons.light_max, + 'light_min': CupertinoIcons.light_min, + 'lightbulb': CupertinoIcons.lightbulb, + 'lightbulb_fill': CupertinoIcons.lightbulb_fill, + 'lightbulb_slash': CupertinoIcons.lightbulb_slash, + 'lightbulb_slash_fill': CupertinoIcons.lightbulb_slash_fill, + 'line_horizontal_3': CupertinoIcons.line_horizontal_3, + 'line_horizontal_3_decrease': CupertinoIcons.line_horizontal_3_decrease, + 'line_horizontal_3_decrease_circle': + CupertinoIcons.line_horizontal_3_decrease_circle, + 'line_horizontal_3_decrease_circle_fill': + CupertinoIcons.line_horizontal_3_decrease_circle_fill, + 'link': CupertinoIcons.link, + 'link_circle': CupertinoIcons.link_circle, + 'link_circle_fill': CupertinoIcons.link_circle_fill, + 'list_bullet': CupertinoIcons.list_bullet, + 'list_bullet_below_rectangle': + CupertinoIcons.list_bullet_below_rectangle, + 'list_bullet_indent': CupertinoIcons.list_bullet_indent, + 'list_dash': CupertinoIcons.list_dash, + 'list_number': CupertinoIcons.list_number, + 'list_number_rtl': CupertinoIcons.list_number_rtl, + 'location_circle': CupertinoIcons.location_circle, + 'location_circle_fill': CupertinoIcons.location_circle_fill, + 'location_fill': CupertinoIcons.location_fill, + 'location_north': CupertinoIcons.location_north, + 'location_north_fill': CupertinoIcons.location_north_fill, + 'location_north_line': CupertinoIcons.location_north_line, + 'location_north_line_fill': CupertinoIcons.location_north_line_fill, + 'location_slash': CupertinoIcons.location_slash, + 'location_slash_fill': CupertinoIcons.location_slash_fill, + 'lock': CupertinoIcons.lock, + 'lock_circle': CupertinoIcons.lock_circle, + 'lock_circle_fill': CupertinoIcons.lock_circle_fill, + 'lock_fill': CupertinoIcons.lock_fill, + 'lock_open': CupertinoIcons.lock_open, + 'lock_open_fill': CupertinoIcons.lock_open_fill, + 'lock_rotation': CupertinoIcons.lock_rotation, + 'lock_rotation_open': CupertinoIcons.lock_rotation_open, + 'lock_shield': CupertinoIcons.lock_shield, + 'lock_shield_fill': CupertinoIcons.lock_shield_fill, + 'lock_slash': CupertinoIcons.lock_slash, + 'lock_slash_fill': CupertinoIcons.lock_slash_fill, + 'macwindow': CupertinoIcons.macwindow, + 'map': CupertinoIcons.map, + 'map_fill': CupertinoIcons.map_fill, + 'map_pin': CupertinoIcons.map_pin, + 'map_pin_ellipse': CupertinoIcons.map_pin_ellipse, + 'map_pin_slash': CupertinoIcons.map_pin_slash, + 'memories': CupertinoIcons.memories, + 'memories_badge_minus': CupertinoIcons.memories_badge_minus, + 'memories_badge_plus': CupertinoIcons.memories_badge_plus, + 'metronome': CupertinoIcons.metronome, + 'mic_circle': CupertinoIcons.mic_circle, + 'mic_circle_fill': CupertinoIcons.mic_circle_fill, + 'mic_fill': CupertinoIcons.mic_fill, + 'mic_slash': CupertinoIcons.mic_slash, + 'mic_slash_fill': CupertinoIcons.mic_slash_fill, + 'minus': CupertinoIcons.minus, + 'minus_circle': CupertinoIcons.minus_circle, + 'minus_circle_fill': CupertinoIcons.minus_circle_fill, + 'minus_rectangle': CupertinoIcons.minus_rectangle, + 'minus_rectangle_fill': CupertinoIcons.minus_rectangle_fill, + 'minus_slash_plus': CupertinoIcons.minus_slash_plus, + 'minus_square': CupertinoIcons.minus_square, + 'minus_square_fill': CupertinoIcons.minus_square_fill, + 'money_dollar': CupertinoIcons.money_dollar, + 'money_dollar_circle': CupertinoIcons.money_dollar_circle, + 'money_dollar_circle_fill': CupertinoIcons.money_dollar_circle_fill, + 'money_euro': CupertinoIcons.money_euro, + 'money_euro_circle': CupertinoIcons.money_euro_circle, + 'money_euro_circle_fill': CupertinoIcons.money_euro_circle_fill, + 'money_pound': CupertinoIcons.money_pound, + 'money_pound_circle': CupertinoIcons.money_pound_circle, + 'money_pound_circle_fill': CupertinoIcons.money_pound_circle_fill, + 'money_rubl': CupertinoIcons.money_rubl, + 'money_rubl_circle': CupertinoIcons.money_rubl_circle, + 'money_rubl_circle_fill': CupertinoIcons.money_rubl_circle_fill, + 'money_yen': CupertinoIcons.money_yen, + 'money_yen_circle': CupertinoIcons.money_yen_circle, + 'money_yen_circle_fill': CupertinoIcons.money_yen_circle_fill, + 'moon': CupertinoIcons.moon, + 'moon_circle': CupertinoIcons.moon_circle, + 'moon_circle_fill': CupertinoIcons.moon_circle_fill, + 'moon_fill': CupertinoIcons.moon_fill, + 'moon_stars': CupertinoIcons.moon_stars, + 'moon_stars_fill': CupertinoIcons.moon_stars_fill, + 'moon_zzz': CupertinoIcons.moon_zzz, + 'moon_zzz_fill': CupertinoIcons.moon_zzz_fill, + 'move': CupertinoIcons.move, + 'multiply': CupertinoIcons.multiply, + 'multiply_circle': CupertinoIcons.multiply_circle, + 'multiply_circle_fill': CupertinoIcons.multiply_circle_fill, + 'multiply_square': CupertinoIcons.multiply_square, + 'multiply_square_fill': CupertinoIcons.multiply_square_fill, + 'music_albums': CupertinoIcons.music_albums, + 'music_albums_fill': CupertinoIcons.music_albums_fill, + 'music_house': CupertinoIcons.music_house, + 'music_house_fill': CupertinoIcons.music_house_fill, + 'music_mic': CupertinoIcons.music_mic, + 'music_note_2': CupertinoIcons.music_note_2, + 'music_note_list': CupertinoIcons.music_note_list, + 'nosign': CupertinoIcons.nosign, + 'number': CupertinoIcons.number, + 'number_circle': CupertinoIcons.number_circle, + 'number_circle_fill': CupertinoIcons.number_circle_fill, + 'number_square': CupertinoIcons.number_square, + 'number_square_fill': CupertinoIcons.number_square_fill, + 'option': CupertinoIcons.option, + 'paintbrush': CupertinoIcons.paintbrush, + 'paintbrush_fill': CupertinoIcons.paintbrush_fill, + 'pano': CupertinoIcons.pano, + 'pano_fill': CupertinoIcons.pano_fill, + 'paperclip': CupertinoIcons.paperclip, + 'paperplane': CupertinoIcons.paperplane, + 'paperplane_fill': CupertinoIcons.paperplane_fill, + 'paragraph': CupertinoIcons.paragraph, + 'pause_circle': CupertinoIcons.pause_circle, + 'pause_circle_fill': CupertinoIcons.pause_circle_fill, + 'pause_fill': CupertinoIcons.pause_fill, + 'pause_rectangle': CupertinoIcons.pause_rectangle, + 'pause_rectangle_fill': CupertinoIcons.pause_rectangle_fill, + 'pencil_circle': CupertinoIcons.pencil_circle, + 'pencil_circle_fill': CupertinoIcons.pencil_circle_fill, + 'pencil_ellipsis_rectangle': CupertinoIcons.pencil_ellipsis_rectangle, + 'pencil_outline': CupertinoIcons.pencil_outline, + 'pencil_slash': CupertinoIcons.pencil_slash, + 'percent': CupertinoIcons.percent, + 'person_2': CupertinoIcons.person_2, + 'person_2_alt': CupertinoIcons.person_2_alt, + 'person_2_fill': CupertinoIcons.person_2_fill, + 'person_2_square_stack': CupertinoIcons.person_2_square_stack, + 'person_2_square_stack_fill': CupertinoIcons.person_2_square_stack_fill, + 'person_3': CupertinoIcons.person_3, + 'person_3_fill': CupertinoIcons.person_3_fill, + 'person_alt': CupertinoIcons.person_alt, + 'person_alt_circle': CupertinoIcons.person_alt_circle, + 'person_alt_circle_fill': CupertinoIcons.person_alt_circle_fill, + 'person_badge_minus': CupertinoIcons.person_badge_minus, + 'person_badge_minus_fill': CupertinoIcons.person_badge_minus_fill, + 'person_badge_plus': CupertinoIcons.person_badge_plus, + 'person_badge_plus_fill': CupertinoIcons.person_badge_plus_fill, + 'person_circle': CupertinoIcons.person_circle, + 'person_circle_fill': CupertinoIcons.person_circle_fill, + 'person_crop_circle': CupertinoIcons.person_crop_circle, + 'person_crop_circle_badge_checkmark': + CupertinoIcons.person_crop_circle_badge_checkmark, + 'person_crop_circle_badge_exclam': + CupertinoIcons.person_crop_circle_badge_exclam, + 'person_crop_circle_badge_minus': + CupertinoIcons.person_crop_circle_badge_minus, + 'person_crop_circle_badge_plus': + CupertinoIcons.person_crop_circle_badge_plus, + 'person_crop_circle_badge_xmark': + CupertinoIcons.person_crop_circle_badge_xmark, + 'person_crop_circle_fill': CupertinoIcons.person_crop_circle_fill, + 'person_crop_circle_fill_badge_checkmark': + CupertinoIcons.person_crop_circle_fill_badge_checkmark, + 'person_crop_circle_fill_badge_exclam': + CupertinoIcons.person_crop_circle_fill_badge_exclam, + 'person_crop_circle_fill_badge_minus': + CupertinoIcons.person_crop_circle_fill_badge_minus, + 'person_crop_circle_fill_badge_plus': + CupertinoIcons.person_crop_circle_fill_badge_plus, + 'person_crop_circle_fill_badge_xmark': + CupertinoIcons.person_crop_circle_fill_badge_xmark, + 'person_crop_rectangle': CupertinoIcons.person_crop_rectangle, + 'person_crop_rectangle_fill': CupertinoIcons.person_crop_rectangle_fill, + 'person_crop_square': CupertinoIcons.person_crop_square, + 'person_crop_square_fill': CupertinoIcons.person_crop_square_fill, + 'person_fill': CupertinoIcons.person_fill, + 'personalhotspot': CupertinoIcons.personalhotspot, + 'perspective': CupertinoIcons.perspective, + 'phone_arrow_down_left': CupertinoIcons.phone_arrow_down_left, + 'phone_arrow_right': CupertinoIcons.phone_arrow_right, + 'phone_arrow_up_right': CupertinoIcons.phone_arrow_up_right, + 'phone_badge_plus': CupertinoIcons.phone_badge_plus, + 'phone_circle': CupertinoIcons.phone_circle, + 'phone_circle_fill': CupertinoIcons.phone_circle_fill, + 'phone_down': CupertinoIcons.phone_down, + 'phone_down_circle': CupertinoIcons.phone_down_circle, + 'phone_down_circle_fill': CupertinoIcons.phone_down_circle_fill, + 'phone_down_fill': CupertinoIcons.phone_down_fill, + 'phone_fill': CupertinoIcons.phone_fill, + 'phone_fill_arrow_down_left': CupertinoIcons.phone_fill_arrow_down_left, + 'phone_fill_arrow_right': CupertinoIcons.phone_fill_arrow_right, + 'phone_fill_arrow_up_right': CupertinoIcons.phone_fill_arrow_up_right, + 'phone_fill_badge_plus': CupertinoIcons.phone_fill_badge_plus, + 'photo': CupertinoIcons.photo, + 'photo_fill': CupertinoIcons.photo_fill, + 'photo_fill_on_rectangle_fill': + CupertinoIcons.photo_fill_on_rectangle_fill, + 'photo_on_rectangle': CupertinoIcons.photo_on_rectangle, + 'piano': CupertinoIcons.piano, + 'pin': CupertinoIcons.pin, + 'pin_fill': CupertinoIcons.pin_fill, + 'pin_slash': CupertinoIcons.pin_slash, + 'pin_slash_fill': CupertinoIcons.pin_slash_fill, + 'placemark': CupertinoIcons.placemark, + 'placemark_fill': CupertinoIcons.placemark_fill, + 'play': CupertinoIcons.play, + 'play_circle': CupertinoIcons.play_circle, + 'play_circle_fill': CupertinoIcons.play_circle_fill, + 'play_fill': CupertinoIcons.play_fill, + 'play_rectangle': CupertinoIcons.play_rectangle, + 'play_rectangle_fill': CupertinoIcons.play_rectangle_fill, + 'playpause': CupertinoIcons.playpause, + 'playpause_fill': CupertinoIcons.playpause_fill, + 'plus': CupertinoIcons.plus, + 'plus_app': CupertinoIcons.plus_app, + 'plus_app_fill': CupertinoIcons.plus_app_fill, + 'plus_bubble': CupertinoIcons.plus_bubble, + 'plus_bubble_fill': CupertinoIcons.plus_bubble_fill, + 'plus_circle': CupertinoIcons.plus_circle, + 'plus_circle_fill': CupertinoIcons.plus_circle_fill, + 'plus_rectangle': CupertinoIcons.plus_rectangle, + 'plus_rectangle_fill': CupertinoIcons.plus_rectangle_fill, + 'plus_rectangle_fill_on_rectangle_fill': + CupertinoIcons.plus_rectangle_fill_on_rectangle_fill, + 'plus_rectangle_on_rectangle': + CupertinoIcons.plus_rectangle_on_rectangle, + 'plus_slash_minus': CupertinoIcons.plus_slash_minus, + 'plus_square': CupertinoIcons.plus_square, + 'plus_square_fill': CupertinoIcons.plus_square_fill, + 'plus_square_fill_on_square_fill': + CupertinoIcons.plus_square_fill_on_square_fill, + 'plus_square_on_square': CupertinoIcons.plus_square_on_square, + 'plusminus': CupertinoIcons.plusminus, + 'plusminus_circle': CupertinoIcons.plusminus_circle, + 'plusminus_circle_fill': CupertinoIcons.plusminus_circle_fill, + 'power': CupertinoIcons.power, + 'printer': CupertinoIcons.printer, + 'printer_fill': CupertinoIcons.printer_fill, + 'projective': CupertinoIcons.projective, + 'purchased': CupertinoIcons.purchased, + 'purchased_circle': CupertinoIcons.purchased_circle, + 'purchased_circle_fill': CupertinoIcons.purchased_circle_fill, + 'qrcode': CupertinoIcons.qrcode, + 'qrcode_viewfinder': CupertinoIcons.qrcode_viewfinder, + 'question': CupertinoIcons.question, + 'question_circle': CupertinoIcons.question_circle, + 'question_circle_fill': CupertinoIcons.question_circle_fill, + 'question_diamond': CupertinoIcons.question_diamond, + 'question_diamond_fill': CupertinoIcons.question_diamond_fill, + 'question_square': CupertinoIcons.question_square, + 'question_square_fill': CupertinoIcons.question_square_fill, + 'quote_bubble': CupertinoIcons.quote_bubble, + 'quote_bubble_fill': CupertinoIcons.quote_bubble_fill, + 'radiowaves_left': CupertinoIcons.radiowaves_left, + 'radiowaves_right': CupertinoIcons.radiowaves_right, + 'rays': CupertinoIcons.rays, + 'recordingtape': CupertinoIcons.recordingtape, + 'rectangle': CupertinoIcons.rectangle, + 'rectangle_3_offgrid': CupertinoIcons.rectangle_3_offgrid, + 'rectangle_3_offgrid_fill': CupertinoIcons.rectangle_3_offgrid_fill, + 'rectangle_arrow_up_right_arrow_down_left': + CupertinoIcons.rectangle_arrow_up_right_arrow_down_left, + 'rectangle_arrow_up_right_arrow_down_left_slash': + CupertinoIcons.rectangle_arrow_up_right_arrow_down_left_slash, + 'rectangle_badge_checkmark': CupertinoIcons.rectangle_badge_checkmark, + 'rectangle_badge_xmark': CupertinoIcons.rectangle_badge_xmark, + 'rectangle_compress_vertical': + CupertinoIcons.rectangle_compress_vertical, + 'rectangle_dock': CupertinoIcons.rectangle_dock, + 'rectangle_expand_vertical': CupertinoIcons.rectangle_expand_vertical, + 'rectangle_fill': CupertinoIcons.rectangle_fill, + 'rectangle_fill_badge_checkmark': + CupertinoIcons.rectangle_fill_badge_checkmark, + 'rectangle_fill_badge_xmark': CupertinoIcons.rectangle_fill_badge_xmark, + 'rectangle_fill_on_rectangle_angled_fill': + CupertinoIcons.rectangle_fill_on_rectangle_angled_fill, + 'rectangle_fill_on_rectangle_fill': + CupertinoIcons.rectangle_fill_on_rectangle_fill, + 'rectangle_grid_1x2': CupertinoIcons.rectangle_grid_1x2, + 'rectangle_grid_1x2_fill': CupertinoIcons.rectangle_grid_1x2_fill, + 'rectangle_grid_2x2': CupertinoIcons.rectangle_grid_2x2, + 'rectangle_grid_2x2_fill': CupertinoIcons.rectangle_grid_2x2_fill, + 'rectangle_grid_3x2': CupertinoIcons.rectangle_grid_3x2, + 'rectangle_grid_3x2_fill': CupertinoIcons.rectangle_grid_3x2_fill, + 'rectangle_on_rectangle': CupertinoIcons.rectangle_on_rectangle, + 'rectangle_on_rectangle_angled': + CupertinoIcons.rectangle_on_rectangle_angled, + 'rectangle_paperclip': CupertinoIcons.rectangle_paperclip, + 'rectangle_split_3x1': CupertinoIcons.rectangle_split_3x1, + 'rectangle_split_3x1_fill': CupertinoIcons.rectangle_split_3x1_fill, + 'rectangle_split_3x3': CupertinoIcons.rectangle_split_3x3, + 'rectangle_split_3x3_fill': CupertinoIcons.rectangle_split_3x3_fill, + 'rectangle_stack': CupertinoIcons.rectangle_stack, + 'rectangle_stack_badge_minus': + CupertinoIcons.rectangle_stack_badge_minus, + 'rectangle_stack_badge_person_crop': + CupertinoIcons.rectangle_stack_badge_person_crop, + 'rectangle_stack_badge_plus': CupertinoIcons.rectangle_stack_badge_plus, + 'rectangle_stack_fill': CupertinoIcons.rectangle_stack_fill, + 'rectangle_stack_fill_badge_minus': + CupertinoIcons.rectangle_stack_fill_badge_minus, + 'rectangle_stack_fill_badge_person_crop': + CupertinoIcons.rectangle_stack_fill_badge_person_crop, + 'rectangle_stack_fill_badge_plus': + CupertinoIcons.rectangle_stack_fill_badge_plus, + 'rectangle_stack_person_crop': + CupertinoIcons.rectangle_stack_person_crop, + 'rectangle_stack_person_crop_fill': + CupertinoIcons.rectangle_stack_person_crop_fill, + 'repeat': CupertinoIcons.repeat, + 'repeat_1': CupertinoIcons.repeat_1, + 'resize': CupertinoIcons.resize, + 'resize_h': CupertinoIcons.resize_h, + 'resize_v': CupertinoIcons.resize_v, + 'return_icon': CupertinoIcons.return_icon, + 'rhombus': CupertinoIcons.rhombus, + 'rhombus_fill': CupertinoIcons.rhombus_fill, + 'rocket': CupertinoIcons.rocket, + 'rocket_fill': CupertinoIcons.rocket_fill, + 'rosette': CupertinoIcons.rosette, + 'rotate_left': CupertinoIcons.rotate_left, + 'rotate_left_fill': CupertinoIcons.rotate_left_fill, + 'rotate_right': CupertinoIcons.rotate_right, + 'rotate_right_fill': CupertinoIcons.rotate_right_fill, + 'scissors': CupertinoIcons.scissors, + 'scissors_alt': CupertinoIcons.scissors_alt, + 'scope': CupertinoIcons.scope, + 'scribble': CupertinoIcons.scribble, + 'search_circle': CupertinoIcons.search_circle, + 'search_circle_fill': CupertinoIcons.search_circle_fill, + 'selection_pin_in_out': CupertinoIcons.selection_pin_in_out, + 'shield': CupertinoIcons.shield, + 'shield_fill': CupertinoIcons.shield_fill, + 'shield_lefthalf_fill': CupertinoIcons.shield_lefthalf_fill, + 'shield_slash': CupertinoIcons.shield_slash, + 'shield_slash_fill': CupertinoIcons.shield_slash_fill, + 'shift': CupertinoIcons.shift, + 'shift_fill': CupertinoIcons.shift_fill, + 'sidebar_left': CupertinoIcons.sidebar_left, + 'sidebar_right': CupertinoIcons.sidebar_right, + 'signature': CupertinoIcons.signature, + 'skew': CupertinoIcons.skew, + 'slash_circle': CupertinoIcons.slash_circle, + 'slash_circle_fill': CupertinoIcons.slash_circle_fill, + 'slider_horizontal_3': CupertinoIcons.slider_horizontal_3, + 'slider_horizontal_below_rectangle': + CupertinoIcons.slider_horizontal_below_rectangle, + 'slowmo': CupertinoIcons.slowmo, + 'smallcircle_circle': CupertinoIcons.smallcircle_circle, + 'smallcircle_circle_fill': CupertinoIcons.smallcircle_circle_fill, + 'smallcircle_fill_circle': CupertinoIcons.smallcircle_fill_circle, + 'smallcircle_fill_circle_fill': + CupertinoIcons.smallcircle_fill_circle_fill, + 'smiley': CupertinoIcons.smiley, + 'smiley_fill': CupertinoIcons.smiley_fill, + 'smoke': CupertinoIcons.smoke, + 'smoke_fill': CupertinoIcons.smoke_fill, + 'snow': CupertinoIcons.snow, + 'sort_down': CupertinoIcons.sort_down, + 'sort_down_circle': CupertinoIcons.sort_down_circle, + 'sort_down_circle_fill': CupertinoIcons.sort_down_circle_fill, + 'sort_up': CupertinoIcons.sort_up, + 'sort_up_circle': CupertinoIcons.sort_up_circle, + 'sort_up_circle_fill': CupertinoIcons.sort_up_circle_fill, + 'sparkles': CupertinoIcons.sparkles, + 'speaker': CupertinoIcons.speaker, + 'speaker_1': CupertinoIcons.speaker_1, + 'speaker_1_fill': CupertinoIcons.speaker_1_fill, + 'speaker_2': CupertinoIcons.speaker_2, + 'speaker_2_fill': CupertinoIcons.speaker_2_fill, + 'speaker_3': CupertinoIcons.speaker_3, + 'speaker_3_fill': CupertinoIcons.speaker_3_fill, + 'speaker_fill': CupertinoIcons.speaker_fill, + 'speaker_slash': CupertinoIcons.speaker_slash, + 'speaker_slash_fill': CupertinoIcons.speaker_slash_fill, + 'speaker_slash_fill_rtl': CupertinoIcons.speaker_slash_fill_rtl, + 'speaker_slash_rtl': CupertinoIcons.speaker_slash_rtl, + 'speaker_zzz': CupertinoIcons.speaker_zzz, + 'speaker_zzz_fill': CupertinoIcons.speaker_zzz_fill, + 'speaker_zzz_fill_rtl': CupertinoIcons.speaker_zzz_fill_rtl, + 'speaker_zzz_rtl': CupertinoIcons.speaker_zzz_rtl, + 'speedometer': CupertinoIcons.speedometer, + 'sportscourt': CupertinoIcons.sportscourt, + 'sportscourt_fill': CupertinoIcons.sportscourt_fill, + 'square': CupertinoIcons.square, + 'square_arrow_down': CupertinoIcons.square_arrow_down, + 'square_arrow_down_fill': CupertinoIcons.square_arrow_down_fill, + 'square_arrow_down_on_square': + CupertinoIcons.square_arrow_down_on_square, + 'square_arrow_down_on_square_fill': + CupertinoIcons.square_arrow_down_on_square_fill, + 'square_arrow_left': CupertinoIcons.square_arrow_left, + 'square_arrow_left_fill': CupertinoIcons.square_arrow_left_fill, + 'square_arrow_right': CupertinoIcons.square_arrow_right, + 'square_arrow_right_fill': CupertinoIcons.square_arrow_right_fill, + 'square_arrow_up': CupertinoIcons.square_arrow_up, + 'square_arrow_up_fill': CupertinoIcons.square_arrow_up_fill, + 'square_arrow_up_on_square': CupertinoIcons.square_arrow_up_on_square, + 'square_arrow_up_on_square_fill': + CupertinoIcons.square_arrow_up_on_square_fill, + 'square_favorites': CupertinoIcons.square_favorites, + 'square_favorites_alt': CupertinoIcons.square_favorites_alt, + 'square_favorites_alt_fill': CupertinoIcons.square_favorites_alt_fill, + 'square_favorites_fill': CupertinoIcons.square_favorites_fill, + 'square_fill': CupertinoIcons.square_fill, + 'square_fill_line_vertical_square': + CupertinoIcons.square_fill_line_vertical_square, + 'square_fill_line_vertical_square_fill': + CupertinoIcons.square_fill_line_vertical_square_fill, + 'square_fill_on_circle_fill': CupertinoIcons.square_fill_on_circle_fill, + 'square_fill_on_square_fill': CupertinoIcons.square_fill_on_square_fill, + 'square_grid_2x2': CupertinoIcons.square_grid_2x2, + 'square_grid_2x2_fill': CupertinoIcons.square_grid_2x2_fill, + 'square_grid_3x2': CupertinoIcons.square_grid_3x2, + 'square_grid_3x2_fill': CupertinoIcons.square_grid_3x2_fill, + 'square_grid_4x3_fill': CupertinoIcons.square_grid_4x3_fill, + 'square_lefthalf_fill': CupertinoIcons.square_lefthalf_fill, + 'square_line_vertical_square': + CupertinoIcons.square_line_vertical_square, + 'square_line_vertical_square_fill': + CupertinoIcons.square_line_vertical_square_fill, + 'square_list': CupertinoIcons.square_list, + 'square_list_fill': CupertinoIcons.square_list_fill, + 'square_on_circle': CupertinoIcons.square_on_circle, + 'square_on_square': CupertinoIcons.square_on_square, + 'square_pencil': CupertinoIcons.square_pencil, + 'square_pencil_fill': CupertinoIcons.square_pencil_fill, + 'square_righthalf_fill': CupertinoIcons.square_righthalf_fill, + 'square_split_1x2': CupertinoIcons.square_split_1x2, + 'square_split_1x2_fill': CupertinoIcons.square_split_1x2_fill, + 'square_split_2x1': CupertinoIcons.square_split_2x1, + 'square_split_2x1_fill': CupertinoIcons.square_split_2x1_fill, + 'square_split_2x2': CupertinoIcons.square_split_2x2, + 'square_split_2x2_fill': CupertinoIcons.square_split_2x2_fill, + 'square_stack': CupertinoIcons.square_stack, + 'square_stack_3d_down_dottedline': + CupertinoIcons.square_stack_3d_down_dottedline, + 'square_stack_3d_down_right': CupertinoIcons.square_stack_3d_down_right, + 'square_stack_3d_down_right_fill': + CupertinoIcons.square_stack_3d_down_right_fill, + 'square_stack_3d_up': CupertinoIcons.square_stack_3d_up, + 'square_stack_3d_up_fill': CupertinoIcons.square_stack_3d_up_fill, + 'square_stack_3d_up_slash': CupertinoIcons.square_stack_3d_up_slash, + 'square_stack_3d_up_slash_fill': + CupertinoIcons.square_stack_3d_up_slash_fill, + 'square_stack_fill': CupertinoIcons.square_stack_fill, + 'squares_below_rectangle': CupertinoIcons.squares_below_rectangle, + 'star': CupertinoIcons.star, + 'star_circle': CupertinoIcons.star_circle, + 'star_circle_fill': CupertinoIcons.star_circle_fill, + 'star_fill': CupertinoIcons.star_fill, + 'star_lefthalf_fill': CupertinoIcons.star_lefthalf_fill, + 'star_slash': CupertinoIcons.star_slash, + 'star_slash_fill': CupertinoIcons.star_slash_fill, + 'staroflife': CupertinoIcons.staroflife, + 'staroflife_fill': CupertinoIcons.staroflife_fill, + 'stop': CupertinoIcons.stop, + 'stop_circle': CupertinoIcons.stop_circle, + 'stop_circle_fill': CupertinoIcons.stop_circle_fill, + 'stop_fill': CupertinoIcons.stop_fill, + 'stopwatch': CupertinoIcons.stopwatch, + 'stopwatch_fill': CupertinoIcons.stopwatch_fill, + 'strikethrough': CupertinoIcons.strikethrough, + 'suit_club': CupertinoIcons.suit_club, + 'suit_club_fill': CupertinoIcons.suit_club_fill, + 'suit_diamond': CupertinoIcons.suit_diamond, + 'suit_diamond_fill': CupertinoIcons.suit_diamond_fill, + 'suit_heart': CupertinoIcons.suit_heart, + 'suit_heart_fill': CupertinoIcons.suit_heart_fill, + 'suit_spade': CupertinoIcons.suit_spade, + 'suit_spade_fill': CupertinoIcons.suit_spade_fill, + 'sum': CupertinoIcons.sum, + 'sun_dust': CupertinoIcons.sun_dust, + 'sun_dust_fill': CupertinoIcons.sun_dust_fill, + 'sun_haze': CupertinoIcons.sun_haze, + 'sun_haze_fill': CupertinoIcons.sun_haze_fill, + 'sun_max': CupertinoIcons.sun_max, + 'sun_max_fill': CupertinoIcons.sun_max_fill, + 'sun_min': CupertinoIcons.sun_min, + 'sun_min_fill': CupertinoIcons.sun_min_fill, + 'sunrise': CupertinoIcons.sunrise, + 'sunrise_fill': CupertinoIcons.sunrise_fill, + 'sunset': CupertinoIcons.sunset, + 'sunset_fill': CupertinoIcons.sunset_fill, + 't_bubble': CupertinoIcons.t_bubble, + 't_bubble_fill': CupertinoIcons.t_bubble_fill, + 'table': CupertinoIcons.table, + 'table_badge_more': CupertinoIcons.table_badge_more, + 'table_badge_more_fill': CupertinoIcons.table_badge_more_fill, + 'table_fill': CupertinoIcons.table_fill, + 'tag_circle': CupertinoIcons.tag_circle, + 'tag_circle_fill': CupertinoIcons.tag_circle_fill, + 'tag_fill': CupertinoIcons.tag_fill, + 'text_aligncenter': CupertinoIcons.text_aligncenter, + 'text_alignleft': CupertinoIcons.text_alignleft, + 'text_alignright': CupertinoIcons.text_alignright, + 'text_append': CupertinoIcons.text_append, + 'text_badge_checkmark': CupertinoIcons.text_badge_checkmark, + 'text_badge_minus': CupertinoIcons.text_badge_minus, + 'text_badge_plus': CupertinoIcons.text_badge_plus, + 'text_badge_star': CupertinoIcons.text_badge_star, + 'text_badge_xmark': CupertinoIcons.text_badge_xmark, + 'text_bubble': CupertinoIcons.text_bubble, + 'text_bubble_fill': CupertinoIcons.text_bubble_fill, + 'text_cursor': CupertinoIcons.text_cursor, + 'text_insert': CupertinoIcons.text_insert, + 'text_justify': CupertinoIcons.text_justify, + 'text_justifyleft': CupertinoIcons.text_justifyleft, + 'text_justifyright': CupertinoIcons.text_justifyright, + 'text_quote': CupertinoIcons.text_quote, + 'textbox': CupertinoIcons.textbox, + 'textformat': CupertinoIcons.textformat, + 'textformat_123': CupertinoIcons.textformat_123, + 'textformat_abc': CupertinoIcons.textformat_abc, + 'textformat_abc_dottedunderline': + CupertinoIcons.textformat_abc_dottedunderline, + 'textformat_alt': CupertinoIcons.textformat_alt, + 'textformat_size': CupertinoIcons.textformat_size, + 'textformat_subscript': CupertinoIcons.textformat_subscript, + 'textformat_superscript': CupertinoIcons.textformat_superscript, + 'thermometer': CupertinoIcons.thermometer, + 'thermometer_snowflake': CupertinoIcons.thermometer_snowflake, + 'thermometer_sun': CupertinoIcons.thermometer_sun, + 'ticket': CupertinoIcons.ticket, + 'ticket_fill': CupertinoIcons.ticket_fill, + 'tickets': CupertinoIcons.tickets, + 'tickets_fill': CupertinoIcons.tickets_fill, + 'timelapse': CupertinoIcons.timelapse, + 'timer': CupertinoIcons.timer, + 'timer_fill': CupertinoIcons.timer_fill, + 'today': CupertinoIcons.today, + 'today_fill': CupertinoIcons.today_fill, + 'tornado': CupertinoIcons.tornado, + 'tortoise': CupertinoIcons.tortoise, + 'tortoise_fill': CupertinoIcons.tortoise_fill, + 'tram_fill': CupertinoIcons.tram_fill, + 'trash': CupertinoIcons.trash, + 'trash_circle': CupertinoIcons.trash_circle, + 'trash_circle_fill': CupertinoIcons.trash_circle_fill, + 'trash_fill': CupertinoIcons.trash_fill, + 'trash_slash': CupertinoIcons.trash_slash, + 'trash_slash_fill': CupertinoIcons.trash_slash_fill, + 'tray': CupertinoIcons.tray, + 'tray_2': CupertinoIcons.tray_2, + 'tray_2_fill': CupertinoIcons.tray_2_fill, + 'tray_arrow_down': CupertinoIcons.tray_arrow_down, + 'tray_arrow_down_fill': CupertinoIcons.tray_arrow_down_fill, + 'tray_arrow_up': CupertinoIcons.tray_arrow_up, + 'tray_arrow_up_fill': CupertinoIcons.tray_arrow_up_fill, + 'tray_fill': CupertinoIcons.tray_fill, + 'tray_full': CupertinoIcons.tray_full, + 'tray_full_fill': CupertinoIcons.tray_full_fill, + 'tree': CupertinoIcons.tree, + 'triangle': CupertinoIcons.triangle, + 'triangle_fill': CupertinoIcons.triangle_fill, + 'triangle_lefthalf_fill': CupertinoIcons.triangle_lefthalf_fill, + 'triangle_righthalf_fill': CupertinoIcons.triangle_righthalf_fill, + 'tropicalstorm': CupertinoIcons.tropicalstorm, + 'tuningfork': CupertinoIcons.tuningfork, + 'tv': CupertinoIcons.tv, + 'tv_circle': CupertinoIcons.tv_circle, + 'tv_circle_fill': CupertinoIcons.tv_circle_fill, + 'tv_fill': CupertinoIcons.tv_fill, + 'tv_music_note': CupertinoIcons.tv_music_note, + 'tv_music_note_fill': CupertinoIcons.tv_music_note_fill, + 'uiwindow_split_2x1': CupertinoIcons.uiwindow_split_2x1, + 'umbrella': CupertinoIcons.umbrella, + 'umbrella_fill': CupertinoIcons.umbrella_fill, + 'underline': CupertinoIcons.underline, + 'upload_circle': CupertinoIcons.upload_circle, + 'upload_circle_fill': CupertinoIcons.upload_circle_fill, + 'videocam': CupertinoIcons.videocam, + 'videocam_circle': CupertinoIcons.videocam_circle, + 'videocam_circle_fill': CupertinoIcons.videocam_circle_fill, + 'videocam_fill': CupertinoIcons.videocam_fill, + 'view_2d': CupertinoIcons.view_2d, + 'view_3d': CupertinoIcons.view_3d, + 'viewfinder': CupertinoIcons.viewfinder, + 'viewfinder_circle': CupertinoIcons.viewfinder_circle, + 'viewfinder_circle_fill': CupertinoIcons.viewfinder_circle_fill, + 'wand_rays': CupertinoIcons.wand_rays, + 'wand_rays_inverse': CupertinoIcons.wand_rays_inverse, + 'wand_stars': CupertinoIcons.wand_stars, + 'wand_stars_inverse': CupertinoIcons.wand_stars_inverse, + 'waveform': CupertinoIcons.waveform, + 'waveform_circle': CupertinoIcons.waveform_circle, + 'waveform_circle_fill': CupertinoIcons.waveform_circle_fill, + 'waveform_path': CupertinoIcons.waveform_path, + 'waveform_path_badge_minus': CupertinoIcons.waveform_path_badge_minus, + 'waveform_path_badge_plus': CupertinoIcons.waveform_path_badge_plus, + 'waveform_path_ecg': CupertinoIcons.waveform_path_ecg, + 'wifi': CupertinoIcons.wifi, + 'wifi_exclamationmark': CupertinoIcons.wifi_exclamationmark, + 'wifi_slash': CupertinoIcons.wifi_slash, + 'wind': CupertinoIcons.wind, + 'wind_snow': CupertinoIcons.wind_snow, + 'wrench': CupertinoIcons.wrench, + 'wrench_fill': CupertinoIcons.wrench_fill, + 'xmark': CupertinoIcons.xmark, + 'xmark_circle': CupertinoIcons.xmark_circle, + 'xmark_circle_fill': CupertinoIcons.xmark_circle_fill, + 'xmark_octagon': CupertinoIcons.xmark_octagon, + 'xmark_octagon_fill': CupertinoIcons.xmark_octagon_fill, + 'xmark_rectangle': CupertinoIcons.xmark_rectangle, + 'xmark_rectangle_fill': CupertinoIcons.xmark_rectangle_fill, + 'xmark_seal': CupertinoIcons.xmark_seal, + 'xmark_seal_fill': CupertinoIcons.xmark_seal_fill, + 'xmark_shield': CupertinoIcons.xmark_shield, + 'xmark_shield_fill': CupertinoIcons.xmark_shield_fill, + 'xmark_square': CupertinoIcons.xmark_square, + 'xmark_square_fill': CupertinoIcons.xmark_square_fill, + 'zoom_in': CupertinoIcons.zoom_in, + 'zoom_out': CupertinoIcons.zoom_out, + 'zzz': CupertinoIcons.zzz, + }, + 'CupertinoTheme.of': (props) => CupertinoTheme.of( + props['pa'][0], + ), + 'CupertinoTheme.brightnessOf': (props) => CupertinoTheme.brightnessOf( + props['pa'][0], + ), + 'CupertinoTheme.maybeBrightnessOf': (props) => + CupertinoTheme.maybeBrightnessOf( + props['pa'][0], + ), + 'DefaultCupertinoLocalizations': { + 'delegate': DefaultCupertinoLocalizations.delegate, + }, + 'DefaultCupertinoLocalizations.load': (props) => + DefaultCupertinoLocalizations.load( + props['pa'][0], + ), + 'DatePickerDateTimeOrder': { + 'values': DatePickerDateTimeOrder.values, + 'date_time_dayPeriod': DatePickerDateTimeOrder.date_time_dayPeriod, + 'date_dayPeriod_time': DatePickerDateTimeOrder.date_dayPeriod_time, + 'time_dayPeriod_date': DatePickerDateTimeOrder.time_dayPeriod_date, + 'dayPeriod_time_date': DatePickerDateTimeOrder.dayPeriod_time_date, + }, + 'DatePickerDateOrder': { + 'values': DatePickerDateOrder.values, + 'dmy': DatePickerDateOrder.dmy, + 'mdy': DatePickerDateOrder.mdy, + 'ymd': DatePickerDateOrder.ymd, + 'ydm': DatePickerDateOrder.ydm, + }, + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart new file mode 100644 index 00000000..da99824e --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart @@ -0,0 +1,8362 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/material.dart'; +import 'package:flutter/gestures.dart'; +import 'package:flutter/gestures.dart'; +import 'package:flutter/gestures.dart'; +import 'package:flutter/gestures.dart'; +import 'package:flutter/gestures.dart'; +import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; + +const int defaultRowsPerPage = 10; +const Color _kColor = Color(0xA0B71C1C); +const double _kHeight = 12.0; // height of banner +const TextStyle _kTextStyle = TextStyle( + color: Color(0xFFFFFFFF), + fontSize: _kHeight * 0.85, + fontWeight: FontWeight.w900, + height: 1.0, +); + +const Duration _snackBarDisplayDuration = Duration(milliseconds: 4000); +var p = () => { + 'SnackBarThemeData.lerp': (props) => SnackBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SnackBarBehavior': { + 'values': SnackBarBehavior.values, + 'fixed': SnackBarBehavior.fixed, + 'floating': SnackBarBehavior.floating, + }, + 'DefaultTabController.of': (props) => DefaultTabController.of( + props['pa'][0], + ), + 'TextButtonThemeData.lerp': (props) => TextButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextButtonTheme.of': (props) => TextButtonTheme.of( + props['pa'][0], + ), + 'ProgressIndicatorThemeData.lerp': (props) => + ProgressIndicatorThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ProgressIndicatorTheme.of': (props) => ProgressIndicatorTheme.of( + props['pa'][0], + ), + 'Material': { + 'defaultSplashRadius': Material.defaultSplashRadius, + }, + 'Material.of': (props) => Material.of( + props['pa'][0], + ), + 'MaterialType': { + 'values': MaterialType.values, + 'canvas': MaterialType.canvas, + 'card': MaterialType.card, + 'circle': MaterialType.circle, + 'button': MaterialType.button, + 'transparency': MaterialType.transparency, + }, + 'TextTheme.lerp': (props) => TextTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'InkRipple': { + 'splashFactory': InkRipple.splashFactory, + }, + 'ElevatedButtonThemeData.lerp': (props) => ElevatedButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ElevatedButtonTheme.of': (props) => ElevatedButtonTheme.of( + props['pa'][0], + ), + 'MaterialBannerThemeData.lerp': (props) => MaterialBannerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialBannerTheme.of': (props) => MaterialBannerTheme.of( + props['pa'][0], + ), + 'ScaffoldMessenger.of': (props) => ScaffoldMessenger.of( + props['pa'][0], + ), + 'ScaffoldMessenger.maybeOf': (props) => ScaffoldMessenger.maybeOf( + props['pa'][0], + ), + 'Scaffold.of': (props) => Scaffold.of( + props['pa'][0], + ), + 'Scaffold.maybeOf': (props) => Scaffold.maybeOf( + props['pa'][0], + ), + 'Scaffold.geometryOf': (props) => Scaffold.geometryOf( + props['pa'][0], + ), + 'Scaffold.hasDrawer': (props) => Scaffold.hasDrawer( + props['pa'][0], + registerForUpdates: props['registerForUpdates'] ?? true, + ), + 'Feedback.forTap': (props) => Feedback.forTap( + props['pa'][0], + ), + 'Feedback.wrapForTap': (props) => Feedback.wrapForTap( + props['pa'][0], + props['pa'][1], + ), + 'Feedback.forLongPress': (props) => Feedback.forLongPress( + props['pa'][0], + ), + 'Feedback.wrapForLongPress': (props) => Feedback.wrapForLongPress( + props['pa'][0], + props['pa'][1], + ), + 'SwitchThemeData.lerp': (props) => SwitchThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SwitchTheme.of': (props) => SwitchTheme.of( + props['pa'][0], + ), + 'ToggleButtonsThemeData.lerp': (props) => ToggleButtonsThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ToggleButtonsTheme.of': (props) => ToggleButtonsTheme.of( + props['pa'][0], + ), + 'PaginatedDataTable': { + 'defaultRowsPerPage': PaginatedDataTable.defaultRowsPerPage, + }, + 'Theme.of': (props) => Theme.of( + props['pa'][0], + ), + 'ButtonBarThemeData.lerp': (props) => ButtonBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ButtonBarTheme.of': (props) => ButtonBarTheme.of( + props['pa'][0], + ), + 'InkSplash': { + 'splashFactory': InkSplash.splashFactory, + }, + 'Icons': { + 'ten_k': Icons.ten_k, + 'ten_k_sharp': Icons.ten_k_sharp, + 'ten_k_rounded': Icons.ten_k_rounded, + 'ten_k_outlined': Icons.ten_k_outlined, + 'ten_mp': Icons.ten_mp, + 'ten_mp_sharp': Icons.ten_mp_sharp, + 'ten_mp_rounded': Icons.ten_mp_rounded, + 'ten_mp_outlined': Icons.ten_mp_outlined, + 'eleven_mp': Icons.eleven_mp, + 'eleven_mp_sharp': Icons.eleven_mp_sharp, + 'eleven_mp_rounded': Icons.eleven_mp_rounded, + 'eleven_mp_outlined': Icons.eleven_mp_outlined, + 'twelve_mp': Icons.twelve_mp, + 'twelve_mp_sharp': Icons.twelve_mp_sharp, + 'twelve_mp_rounded': Icons.twelve_mp_rounded, + 'twelve_mp_outlined': Icons.twelve_mp_outlined, + 'thirteen_mp': Icons.thirteen_mp, + 'thirteen_mp_sharp': Icons.thirteen_mp_sharp, + 'thirteen_mp_rounded': Icons.thirteen_mp_rounded, + 'thirteen_mp_outlined': Icons.thirteen_mp_outlined, + 'fourteen_mp': Icons.fourteen_mp, + 'fourteen_mp_sharp': Icons.fourteen_mp_sharp, + 'fourteen_mp_rounded': Icons.fourteen_mp_rounded, + 'fourteen_mp_outlined': Icons.fourteen_mp_outlined, + 'fifteen_mp': Icons.fifteen_mp, + 'fifteen_mp_sharp': Icons.fifteen_mp_sharp, + 'fifteen_mp_rounded': Icons.fifteen_mp_rounded, + 'fifteen_mp_outlined': Icons.fifteen_mp_outlined, + 'sixteen_mp': Icons.sixteen_mp, + 'sixteen_mp_sharp': Icons.sixteen_mp_sharp, + 'sixteen_mp_rounded': Icons.sixteen_mp_rounded, + 'sixteen_mp_outlined': Icons.sixteen_mp_outlined, + 'seventeen_mp': Icons.seventeen_mp, + 'seventeen_mp_sharp': Icons.seventeen_mp_sharp, + 'seventeen_mp_rounded': Icons.seventeen_mp_rounded, + 'seventeen_mp_outlined': Icons.seventeen_mp_outlined, + 'eighteen_mp': Icons.eighteen_mp, + 'eighteen_mp_sharp': Icons.eighteen_mp_sharp, + 'eighteen_mp_rounded': Icons.eighteen_mp_rounded, + 'eighteen_mp_outlined': Icons.eighteen_mp_outlined, + 'nineteen_mp': Icons.nineteen_mp, + 'nineteen_mp_sharp': Icons.nineteen_mp_sharp, + 'nineteen_mp_rounded': Icons.nineteen_mp_rounded, + 'nineteen_mp_outlined': Icons.nineteen_mp_outlined, + 'one_k': Icons.one_k, + 'one_k_sharp': Icons.one_k_sharp, + 'one_k_rounded': Icons.one_k_rounded, + 'one_k_outlined': Icons.one_k_outlined, + 'one_k_plus': Icons.one_k_plus, + 'one_k_plus_sharp': Icons.one_k_plus_sharp, + 'one_k_plus_rounded': Icons.one_k_plus_rounded, + 'one_k_plus_outlined': Icons.one_k_plus_outlined, + 'one_x_mobiledata': Icons.one_x_mobiledata, + 'one_x_mobiledata_sharp': Icons.one_x_mobiledata_sharp, + 'one_x_mobiledata_rounded': Icons.one_x_mobiledata_rounded, + 'one_x_mobiledata_outlined': Icons.one_x_mobiledata_outlined, + 'twenty_mp': Icons.twenty_mp, + 'twenty_mp_sharp': Icons.twenty_mp_sharp, + 'twenty_mp_rounded': Icons.twenty_mp_rounded, + 'twenty_mp_outlined': Icons.twenty_mp_outlined, + 'twenty_one_mp': Icons.twenty_one_mp, + 'twenty_one_mp_sharp': Icons.twenty_one_mp_sharp, + 'twenty_one_mp_rounded': Icons.twenty_one_mp_rounded, + 'twenty_one_mp_outlined': Icons.twenty_one_mp_outlined, + 'twenty_two_mp': Icons.twenty_two_mp, + 'twenty_two_mp_sharp': Icons.twenty_two_mp_sharp, + 'twenty_two_mp_rounded': Icons.twenty_two_mp_rounded, + 'twenty_two_mp_outlined': Icons.twenty_two_mp_outlined, + 'twenty_three_mp': Icons.twenty_three_mp, + 'twenty_three_mp_sharp': Icons.twenty_three_mp_sharp, + 'twenty_three_mp_rounded': Icons.twenty_three_mp_rounded, + 'twenty_three_mp_outlined': Icons.twenty_three_mp_outlined, + 'twenty_four_mp': Icons.twenty_four_mp, + 'twenty_four_mp_sharp': Icons.twenty_four_mp_sharp, + 'twenty_four_mp_rounded': Icons.twenty_four_mp_rounded, + 'twenty_four_mp_outlined': Icons.twenty_four_mp_outlined, + 'two_k': Icons.two_k, + 'two_k_sharp': Icons.two_k_sharp, + 'two_k_rounded': Icons.two_k_rounded, + 'two_k_outlined': Icons.two_k_outlined, + 'two_k_plus': Icons.two_k_plus, + 'two_k_plus_sharp': Icons.two_k_plus_sharp, + 'two_k_plus_rounded': Icons.two_k_plus_rounded, + 'two_k_plus_outlined': Icons.two_k_plus_outlined, + 'two_mp': Icons.two_mp, + 'two_mp_sharp': Icons.two_mp_sharp, + 'two_mp_rounded': Icons.two_mp_rounded, + 'two_mp_outlined': Icons.two_mp_outlined, + 'thirty_fps': Icons.thirty_fps, + 'thirty_fps_sharp': Icons.thirty_fps_sharp, + 'thirty_fps_rounded': Icons.thirty_fps_rounded, + 'thirty_fps_outlined': Icons.thirty_fps_outlined, + 'thirty_fps_select': Icons.thirty_fps_select, + 'thirty_fps_select_sharp': Icons.thirty_fps_select_sharp, + 'thirty_fps_select_rounded': Icons.thirty_fps_select_rounded, + 'thirty_fps_select_outlined': Icons.thirty_fps_select_outlined, + 'threesixty': Icons.threesixty, + 'threesixty_sharp': Icons.threesixty_sharp, + 'threesixty_rounded': Icons.threesixty_rounded, + 'threesixty_outlined': Icons.threesixty_outlined, + 'threed_rotation': Icons.threed_rotation, + 'threed_rotation_sharp': Icons.threed_rotation_sharp, + 'threed_rotation_rounded': Icons.threed_rotation_rounded, + 'threed_rotation_outlined': Icons.threed_rotation_outlined, + 'three_g_mobiledata': Icons.three_g_mobiledata, + 'three_g_mobiledata_sharp': Icons.three_g_mobiledata_sharp, + 'three_g_mobiledata_rounded': Icons.three_g_mobiledata_rounded, + 'three_g_mobiledata_outlined': Icons.three_g_mobiledata_outlined, + 'three_k': Icons.three_k, + 'three_k_sharp': Icons.three_k_sharp, + 'three_k_rounded': Icons.three_k_rounded, + 'three_k_outlined': Icons.three_k_outlined, + 'three_k_plus': Icons.three_k_plus, + 'three_k_plus_sharp': Icons.three_k_plus_sharp, + 'three_k_plus_rounded': Icons.three_k_plus_rounded, + 'three_k_plus_outlined': Icons.three_k_plus_outlined, + 'three_mp': Icons.three_mp, + 'three_mp_sharp': Icons.three_mp_sharp, + 'three_mp_rounded': Icons.three_mp_rounded, + 'three_mp_outlined': Icons.three_mp_outlined, + 'three_p': Icons.three_p, + 'three_p_sharp': Icons.three_p_sharp, + 'three_p_rounded': Icons.three_p_rounded, + 'three_p_outlined': Icons.three_p_outlined, + 'four_g_mobiledata': Icons.four_g_mobiledata, + 'four_g_mobiledata_sharp': Icons.four_g_mobiledata_sharp, + 'four_g_mobiledata_rounded': Icons.four_g_mobiledata_rounded, + 'four_g_mobiledata_outlined': Icons.four_g_mobiledata_outlined, + 'four_g_plus_mobiledata': Icons.four_g_plus_mobiledata, + 'four_g_plus_mobiledata_sharp': Icons.four_g_plus_mobiledata_sharp, + 'four_g_plus_mobiledata_rounded': Icons.four_g_plus_mobiledata_rounded, + 'four_g_plus_mobiledata_outlined': + Icons.four_g_plus_mobiledata_outlined, + 'four_k': Icons.four_k, + 'four_k_sharp': Icons.four_k_sharp, + 'four_k_rounded': Icons.four_k_rounded, + 'four_k_outlined': Icons.four_k_outlined, + 'four_k_plus': Icons.four_k_plus, + 'four_k_plus_sharp': Icons.four_k_plus_sharp, + 'four_k_plus_rounded': Icons.four_k_plus_rounded, + 'four_k_plus_outlined': Icons.four_k_plus_outlined, + 'four_mp': Icons.four_mp, + 'four_mp_sharp': Icons.four_mp_sharp, + 'four_mp_rounded': Icons.four_mp_rounded, + 'four_mp_outlined': Icons.four_mp_outlined, + 'five_g': Icons.five_g, + 'five_g_sharp': Icons.five_g_sharp, + 'five_g_rounded': Icons.five_g_rounded, + 'five_g_outlined': Icons.five_g_outlined, + 'five_k': Icons.five_k, + 'five_k_sharp': Icons.five_k_sharp, + 'five_k_rounded': Icons.five_k_rounded, + 'five_k_outlined': Icons.five_k_outlined, + 'five_k_plus': Icons.five_k_plus, + 'five_k_plus_sharp': Icons.five_k_plus_sharp, + 'five_k_plus_rounded': Icons.five_k_plus_rounded, + 'five_k_plus_outlined': Icons.five_k_plus_outlined, + 'five_mp': Icons.five_mp, + 'five_mp_sharp': Icons.five_mp_sharp, + 'five_mp_rounded': Icons.five_mp_rounded, + 'five_mp_outlined': Icons.five_mp_outlined, + 'sixty_fps': Icons.sixty_fps, + 'sixty_fps_sharp': Icons.sixty_fps_sharp, + 'sixty_fps_rounded': Icons.sixty_fps_rounded, + 'sixty_fps_outlined': Icons.sixty_fps_outlined, + 'sixty_fps_select': Icons.sixty_fps_select, + 'sixty_fps_select_sharp': Icons.sixty_fps_select_sharp, + 'sixty_fps_select_rounded': Icons.sixty_fps_select_rounded, + 'sixty_fps_select_outlined': Icons.sixty_fps_select_outlined, + 'six__ft_apart': Icons.six__ft_apart, + 'six__ft_apart_sharp': Icons.six__ft_apart_sharp, + 'six__ft_apart_rounded': Icons.six__ft_apart_rounded, + 'six__ft_apart_outlined': Icons.six__ft_apart_outlined, + 'six_k': Icons.six_k, + 'six_k_sharp': Icons.six_k_sharp, + 'six_k_rounded': Icons.six_k_rounded, + 'six_k_outlined': Icons.six_k_outlined, + 'six_k_plus': Icons.six_k_plus, + 'six_k_plus_sharp': Icons.six_k_plus_sharp, + 'six_k_plus_rounded': Icons.six_k_plus_rounded, + 'six_k_plus_outlined': Icons.six_k_plus_outlined, + 'six_mp': Icons.six_mp, + 'six_mp_sharp': Icons.six_mp_sharp, + 'six_mp_rounded': Icons.six_mp_rounded, + 'six_mp_outlined': Icons.six_mp_outlined, + 'seven_k': Icons.seven_k, + 'seven_k_sharp': Icons.seven_k_sharp, + 'seven_k_rounded': Icons.seven_k_rounded, + 'seven_k_outlined': Icons.seven_k_outlined, + 'seven_k_plus': Icons.seven_k_plus, + 'seven_k_plus_sharp': Icons.seven_k_plus_sharp, + 'seven_k_plus_rounded': Icons.seven_k_plus_rounded, + 'seven_k_plus_outlined': Icons.seven_k_plus_outlined, + 'seven_mp': Icons.seven_mp, + 'seven_mp_sharp': Icons.seven_mp_sharp, + 'seven_mp_rounded': Icons.seven_mp_rounded, + 'seven_mp_outlined': Icons.seven_mp_outlined, + 'eight_k': Icons.eight_k, + 'eight_k_sharp': Icons.eight_k_sharp, + 'eight_k_rounded': Icons.eight_k_rounded, + 'eight_k_outlined': Icons.eight_k_outlined, + 'eight_k_plus': Icons.eight_k_plus, + 'eight_k_plus_sharp': Icons.eight_k_plus_sharp, + 'eight_k_plus_rounded': Icons.eight_k_plus_rounded, + 'eight_k_plus_outlined': Icons.eight_k_plus_outlined, + 'eight_mp': Icons.eight_mp, + 'eight_mp_sharp': Icons.eight_mp_sharp, + 'eight_mp_rounded': Icons.eight_mp_rounded, + 'eight_mp_outlined': Icons.eight_mp_outlined, + 'nine_k': Icons.nine_k, + 'nine_k_sharp': Icons.nine_k_sharp, + 'nine_k_rounded': Icons.nine_k_rounded, + 'nine_k_outlined': Icons.nine_k_outlined, + 'nine_k_plus': Icons.nine_k_plus, + 'nine_k_plus_sharp': Icons.nine_k_plus_sharp, + 'nine_k_plus_rounded': Icons.nine_k_plus_rounded, + 'nine_k_plus_outlined': Icons.nine_k_plus_outlined, + 'nine_mp': Icons.nine_mp, + 'nine_mp_sharp': Icons.nine_mp_sharp, + 'nine_mp_rounded': Icons.nine_mp_rounded, + 'nine_mp_outlined': Icons.nine_mp_outlined, + 'ac_unit': Icons.ac_unit, + 'ac_unit_sharp': Icons.ac_unit_sharp, + 'ac_unit_rounded': Icons.ac_unit_rounded, + 'ac_unit_outlined': Icons.ac_unit_outlined, + 'access_alarm': Icons.access_alarm, + 'access_alarm_sharp': Icons.access_alarm_sharp, + 'access_alarm_rounded': Icons.access_alarm_rounded, + 'access_alarm_outlined': Icons.access_alarm_outlined, + 'access_alarms': Icons.access_alarms, + 'access_alarms_sharp': Icons.access_alarms_sharp, + 'access_alarms_rounded': Icons.access_alarms_rounded, + 'access_alarms_outlined': Icons.access_alarms_outlined, + 'access_time': Icons.access_time, + 'access_time_sharp': Icons.access_time_sharp, + 'access_time_rounded': Icons.access_time_rounded, + 'access_time_outlined': Icons.access_time_outlined, + 'access_time_filled': Icons.access_time_filled, + 'access_time_filled_sharp': Icons.access_time_filled_sharp, + 'access_time_filled_rounded': Icons.access_time_filled_rounded, + 'access_time_filled_outlined': Icons.access_time_filled_outlined, + 'accessibility': Icons.accessibility, + 'accessibility_sharp': Icons.accessibility_sharp, + 'accessibility_rounded': Icons.accessibility_rounded, + 'accessibility_outlined': Icons.accessibility_outlined, + 'accessibility_new': Icons.accessibility_new, + 'accessibility_new_sharp': Icons.accessibility_new_sharp, + 'accessibility_new_rounded': Icons.accessibility_new_rounded, + 'accessibility_new_outlined': Icons.accessibility_new_outlined, + 'accessible': Icons.accessible, + 'accessible_sharp': Icons.accessible_sharp, + 'accessible_rounded': Icons.accessible_rounded, + 'accessible_outlined': Icons.accessible_outlined, + 'accessible_forward': Icons.accessible_forward, + 'accessible_forward_sharp': Icons.accessible_forward_sharp, + 'accessible_forward_rounded': Icons.accessible_forward_rounded, + 'accessible_forward_outlined': Icons.accessible_forward_outlined, + 'account_balance': Icons.account_balance, + 'account_balance_sharp': Icons.account_balance_sharp, + 'account_balance_rounded': Icons.account_balance_rounded, + 'account_balance_outlined': Icons.account_balance_outlined, + 'account_balance_wallet': Icons.account_balance_wallet, + 'account_balance_wallet_sharp': Icons.account_balance_wallet_sharp, + 'account_balance_wallet_rounded': Icons.account_balance_wallet_rounded, + 'account_balance_wallet_outlined': + Icons.account_balance_wallet_outlined, + 'account_box': Icons.account_box, + 'account_box_sharp': Icons.account_box_sharp, + 'account_box_rounded': Icons.account_box_rounded, + 'account_box_outlined': Icons.account_box_outlined, + 'account_circle': Icons.account_circle, + 'account_circle_sharp': Icons.account_circle_sharp, + 'account_circle_rounded': Icons.account_circle_rounded, + 'account_circle_outlined': Icons.account_circle_outlined, + 'account_tree': Icons.account_tree, + 'account_tree_sharp': Icons.account_tree_sharp, + 'account_tree_rounded': Icons.account_tree_rounded, + 'account_tree_outlined': Icons.account_tree_outlined, + 'ad_units': Icons.ad_units, + 'ad_units_sharp': Icons.ad_units_sharp, + 'ad_units_rounded': Icons.ad_units_rounded, + 'ad_units_outlined': Icons.ad_units_outlined, + 'adb': Icons.adb, + 'adb_sharp': Icons.adb_sharp, + 'adb_rounded': Icons.adb_rounded, + 'adb_outlined': Icons.adb_outlined, + 'add': Icons.add, + 'add_sharp': Icons.add_sharp, + 'add_rounded': Icons.add_rounded, + 'add_outlined': Icons.add_outlined, + 'add_a_photo': Icons.add_a_photo, + 'add_a_photo_sharp': Icons.add_a_photo_sharp, + 'add_a_photo_rounded': Icons.add_a_photo_rounded, + 'add_a_photo_outlined': Icons.add_a_photo_outlined, + 'add_alarm': Icons.add_alarm, + 'add_alarm_sharp': Icons.add_alarm_sharp, + 'add_alarm_rounded': Icons.add_alarm_rounded, + 'add_alarm_outlined': Icons.add_alarm_outlined, + 'add_alert': Icons.add_alert, + 'add_alert_sharp': Icons.add_alert_sharp, + 'add_alert_rounded': Icons.add_alert_rounded, + 'add_alert_outlined': Icons.add_alert_outlined, + 'add_box': Icons.add_box, + 'add_box_sharp': Icons.add_box_sharp, + 'add_box_rounded': Icons.add_box_rounded, + 'add_box_outlined': Icons.add_box_outlined, + 'add_business': Icons.add_business, + 'add_business_sharp': Icons.add_business_sharp, + 'add_business_rounded': Icons.add_business_rounded, + 'add_business_outlined': Icons.add_business_outlined, + 'add_call': Icons.add_call, + 'add_chart': Icons.add_chart, + 'add_chart_sharp': Icons.add_chart_sharp, + 'add_chart_rounded': Icons.add_chart_rounded, + 'add_chart_outlined': Icons.add_chart_outlined, + 'add_circle': Icons.add_circle, + 'add_circle_sharp': Icons.add_circle_sharp, + 'add_circle_rounded': Icons.add_circle_rounded, + 'add_circle_outlined': Icons.add_circle_outlined, + 'add_circle_outline': Icons.add_circle_outline, + 'add_circle_outline_sharp': Icons.add_circle_outline_sharp, + 'add_circle_outline_rounded': Icons.add_circle_outline_rounded, + 'add_circle_outline_outlined': Icons.add_circle_outline_outlined, + 'add_comment': Icons.add_comment, + 'add_comment_sharp': Icons.add_comment_sharp, + 'add_comment_rounded': Icons.add_comment_rounded, + 'add_comment_outlined': Icons.add_comment_outlined, + 'add_ic_call': Icons.add_ic_call, + 'add_ic_call_sharp': Icons.add_ic_call_sharp, + 'add_ic_call_rounded': Icons.add_ic_call_rounded, + 'add_ic_call_outlined': Icons.add_ic_call_outlined, + 'add_link': Icons.add_link, + 'add_link_sharp': Icons.add_link_sharp, + 'add_link_rounded': Icons.add_link_rounded, + 'add_link_outlined': Icons.add_link_outlined, + 'add_location': Icons.add_location, + 'add_location_sharp': Icons.add_location_sharp, + 'add_location_rounded': Icons.add_location_rounded, + 'add_location_outlined': Icons.add_location_outlined, + 'add_location_alt': Icons.add_location_alt, + 'add_location_alt_sharp': Icons.add_location_alt_sharp, + 'add_location_alt_rounded': Icons.add_location_alt_rounded, + 'add_location_alt_outlined': Icons.add_location_alt_outlined, + 'add_moderator': Icons.add_moderator, + 'add_moderator_sharp': Icons.add_moderator_sharp, + 'add_moderator_rounded': Icons.add_moderator_rounded, + 'add_moderator_outlined': Icons.add_moderator_outlined, + 'add_photo_alternate': Icons.add_photo_alternate, + 'add_photo_alternate_sharp': Icons.add_photo_alternate_sharp, + 'add_photo_alternate_rounded': Icons.add_photo_alternate_rounded, + 'add_photo_alternate_outlined': Icons.add_photo_alternate_outlined, + 'add_reaction': Icons.add_reaction, + 'add_reaction_sharp': Icons.add_reaction_sharp, + 'add_reaction_rounded': Icons.add_reaction_rounded, + 'add_reaction_outlined': Icons.add_reaction_outlined, + 'add_road': Icons.add_road, + 'add_road_sharp': Icons.add_road_sharp, + 'add_road_rounded': Icons.add_road_rounded, + 'add_road_outlined': Icons.add_road_outlined, + 'add_shopping_cart': Icons.add_shopping_cart, + 'add_shopping_cart_sharp': Icons.add_shopping_cart_sharp, + 'add_shopping_cart_rounded': Icons.add_shopping_cart_rounded, + 'add_shopping_cart_outlined': Icons.add_shopping_cart_outlined, + 'add_task': Icons.add_task, + 'add_task_sharp': Icons.add_task_sharp, + 'add_task_rounded': Icons.add_task_rounded, + 'add_task_outlined': Icons.add_task_outlined, + 'add_to_drive': Icons.add_to_drive, + 'add_to_drive_sharp': Icons.add_to_drive_sharp, + 'add_to_drive_rounded': Icons.add_to_drive_rounded, + 'add_to_drive_outlined': Icons.add_to_drive_outlined, + 'add_to_home_screen': Icons.add_to_home_screen, + 'add_to_home_screen_sharp': Icons.add_to_home_screen_sharp, + 'add_to_home_screen_rounded': Icons.add_to_home_screen_rounded, + 'add_to_home_screen_outlined': Icons.add_to_home_screen_outlined, + 'add_to_photos': Icons.add_to_photos, + 'add_to_photos_sharp': Icons.add_to_photos_sharp, + 'add_to_photos_rounded': Icons.add_to_photos_rounded, + 'add_to_photos_outlined': Icons.add_to_photos_outlined, + 'add_to_queue': Icons.add_to_queue, + 'add_to_queue_sharp': Icons.add_to_queue_sharp, + 'add_to_queue_rounded': Icons.add_to_queue_rounded, + 'add_to_queue_outlined': Icons.add_to_queue_outlined, + 'addchart': Icons.addchart, + 'addchart_sharp': Icons.addchart_sharp, + 'addchart_rounded': Icons.addchart_rounded, + 'addchart_outlined': Icons.addchart_outlined, + 'adjust': Icons.adjust, + 'adjust_sharp': Icons.adjust_sharp, + 'adjust_rounded': Icons.adjust_rounded, + 'adjust_outlined': Icons.adjust_outlined, + 'admin_panel_settings': Icons.admin_panel_settings, + 'admin_panel_settings_sharp': Icons.admin_panel_settings_sharp, + 'admin_panel_settings_rounded': Icons.admin_panel_settings_rounded, + 'admin_panel_settings_outlined': Icons.admin_panel_settings_outlined, + 'agriculture': Icons.agriculture, + 'agriculture_sharp': Icons.agriculture_sharp, + 'agriculture_rounded': Icons.agriculture_rounded, + 'agriculture_outlined': Icons.agriculture_outlined, + 'air': Icons.air, + 'air_sharp': Icons.air_sharp, + 'air_rounded': Icons.air_rounded, + 'air_outlined': Icons.air_outlined, + 'airline_seat_flat': Icons.airline_seat_flat, + 'airline_seat_flat_sharp': Icons.airline_seat_flat_sharp, + 'airline_seat_flat_rounded': Icons.airline_seat_flat_rounded, + 'airline_seat_flat_outlined': Icons.airline_seat_flat_outlined, + 'airline_seat_flat_angled': Icons.airline_seat_flat_angled, + 'airline_seat_flat_angled_sharp': Icons.airline_seat_flat_angled_sharp, + 'airline_seat_flat_angled_rounded': + Icons.airline_seat_flat_angled_rounded, + 'airline_seat_flat_angled_outlined': + Icons.airline_seat_flat_angled_outlined, + 'airline_seat_individual_suite': Icons.airline_seat_individual_suite, + 'airline_seat_individual_suite_sharp': + Icons.airline_seat_individual_suite_sharp, + 'airline_seat_individual_suite_rounded': + Icons.airline_seat_individual_suite_rounded, + 'airline_seat_individual_suite_outlined': + Icons.airline_seat_individual_suite_outlined, + 'airline_seat_legroom_extra': Icons.airline_seat_legroom_extra, + 'airline_seat_legroom_extra_sharp': + Icons.airline_seat_legroom_extra_sharp, + 'airline_seat_legroom_extra_rounded': + Icons.airline_seat_legroom_extra_rounded, + 'airline_seat_legroom_extra_outlined': + Icons.airline_seat_legroom_extra_outlined, + 'airline_seat_legroom_normal': Icons.airline_seat_legroom_normal, + 'airline_seat_legroom_normal_sharp': + Icons.airline_seat_legroom_normal_sharp, + 'airline_seat_legroom_normal_rounded': + Icons.airline_seat_legroom_normal_rounded, + 'airline_seat_legroom_normal_outlined': + Icons.airline_seat_legroom_normal_outlined, + 'airline_seat_legroom_reduced': Icons.airline_seat_legroom_reduced, + 'airline_seat_legroom_reduced_sharp': + Icons.airline_seat_legroom_reduced_sharp, + 'airline_seat_legroom_reduced_rounded': + Icons.airline_seat_legroom_reduced_rounded, + 'airline_seat_legroom_reduced_outlined': + Icons.airline_seat_legroom_reduced_outlined, + 'airline_seat_recline_extra': Icons.airline_seat_recline_extra, + 'airline_seat_recline_extra_sharp': + Icons.airline_seat_recline_extra_sharp, + 'airline_seat_recline_extra_rounded': + Icons.airline_seat_recline_extra_rounded, + 'airline_seat_recline_extra_outlined': + Icons.airline_seat_recline_extra_outlined, + 'airline_seat_recline_normal': Icons.airline_seat_recline_normal, + 'airline_seat_recline_normal_sharp': + Icons.airline_seat_recline_normal_sharp, + 'airline_seat_recline_normal_rounded': + Icons.airline_seat_recline_normal_rounded, + 'airline_seat_recline_normal_outlined': + Icons.airline_seat_recline_normal_outlined, + 'airplane_ticket': Icons.airplane_ticket, + 'airplane_ticket_sharp': Icons.airplane_ticket_sharp, + 'airplane_ticket_rounded': Icons.airplane_ticket_rounded, + 'airplane_ticket_outlined': Icons.airplane_ticket_outlined, + 'airplanemode_active': Icons.airplanemode_active, + 'airplanemode_active_sharp': Icons.airplanemode_active_sharp, + 'airplanemode_active_rounded': Icons.airplanemode_active_rounded, + 'airplanemode_active_outlined': Icons.airplanemode_active_outlined, + 'airplanemode_inactive': Icons.airplanemode_inactive, + 'airplanemode_inactive_sharp': Icons.airplanemode_inactive_sharp, + 'airplanemode_inactive_rounded': Icons.airplanemode_inactive_rounded, + 'airplanemode_inactive_outlined': Icons.airplanemode_inactive_outlined, + 'airplanemode_off': Icons.airplanemode_off, + 'airplanemode_off_sharp': Icons.airplanemode_off_sharp, + 'airplanemode_off_rounded': Icons.airplanemode_off_rounded, + 'airplanemode_off_outlined': Icons.airplanemode_off_outlined, + 'airplanemode_on': Icons.airplanemode_on, + 'airplanemode_on_sharp': Icons.airplanemode_on_sharp, + 'airplanemode_on_rounded': Icons.airplanemode_on_rounded, + 'airplanemode_on_outlined': Icons.airplanemode_on_outlined, + 'airplay': Icons.airplay, + 'airplay_sharp': Icons.airplay_sharp, + 'airplay_rounded': Icons.airplay_rounded, + 'airplay_outlined': Icons.airplay_outlined, + 'airport_shuttle': Icons.airport_shuttle, + 'airport_shuttle_sharp': Icons.airport_shuttle_sharp, + 'airport_shuttle_rounded': Icons.airport_shuttle_rounded, + 'airport_shuttle_outlined': Icons.airport_shuttle_outlined, + 'alarm': Icons.alarm, + 'alarm_sharp': Icons.alarm_sharp, + 'alarm_rounded': Icons.alarm_rounded, + 'alarm_outlined': Icons.alarm_outlined, + 'alarm_add': Icons.alarm_add, + 'alarm_add_sharp': Icons.alarm_add_sharp, + 'alarm_add_rounded': Icons.alarm_add_rounded, + 'alarm_add_outlined': Icons.alarm_add_outlined, + 'alarm_off': Icons.alarm_off, + 'alarm_off_sharp': Icons.alarm_off_sharp, + 'alarm_off_rounded': Icons.alarm_off_rounded, + 'alarm_off_outlined': Icons.alarm_off_outlined, + 'alarm_on': Icons.alarm_on, + 'alarm_on_sharp': Icons.alarm_on_sharp, + 'alarm_on_rounded': Icons.alarm_on_rounded, + 'alarm_on_outlined': Icons.alarm_on_outlined, + 'album': Icons.album, + 'album_sharp': Icons.album_sharp, + 'album_rounded': Icons.album_rounded, + 'album_outlined': Icons.album_outlined, + 'align_horizontal_center': Icons.align_horizontal_center, + 'align_horizontal_center_sharp': Icons.align_horizontal_center_sharp, + 'align_horizontal_center_rounded': + Icons.align_horizontal_center_rounded, + 'align_horizontal_center_outlined': + Icons.align_horizontal_center_outlined, + 'align_horizontal_left': Icons.align_horizontal_left, + 'align_horizontal_left_sharp': Icons.align_horizontal_left_sharp, + 'align_horizontal_left_rounded': Icons.align_horizontal_left_rounded, + 'align_horizontal_left_outlined': Icons.align_horizontal_left_outlined, + 'align_horizontal_right': Icons.align_horizontal_right, + 'align_horizontal_right_sharp': Icons.align_horizontal_right_sharp, + 'align_horizontal_right_rounded': Icons.align_horizontal_right_rounded, + 'align_horizontal_right_outlined': + Icons.align_horizontal_right_outlined, + 'align_vertical_bottom': Icons.align_vertical_bottom, + 'align_vertical_bottom_sharp': Icons.align_vertical_bottom_sharp, + 'align_vertical_bottom_rounded': Icons.align_vertical_bottom_rounded, + 'align_vertical_bottom_outlined': Icons.align_vertical_bottom_outlined, + 'align_vertical_center': Icons.align_vertical_center, + 'align_vertical_center_sharp': Icons.align_vertical_center_sharp, + 'align_vertical_center_rounded': Icons.align_vertical_center_rounded, + 'align_vertical_center_outlined': Icons.align_vertical_center_outlined, + 'align_vertical_top': Icons.align_vertical_top, + 'align_vertical_top_sharp': Icons.align_vertical_top_sharp, + 'align_vertical_top_rounded': Icons.align_vertical_top_rounded, + 'align_vertical_top_outlined': Icons.align_vertical_top_outlined, + 'all_inbox': Icons.all_inbox, + 'all_inbox_sharp': Icons.all_inbox_sharp, + 'all_inbox_rounded': Icons.all_inbox_rounded, + 'all_inbox_outlined': Icons.all_inbox_outlined, + 'all_inclusive': Icons.all_inclusive, + 'all_inclusive_sharp': Icons.all_inclusive_sharp, + 'all_inclusive_rounded': Icons.all_inclusive_rounded, + 'all_inclusive_outlined': Icons.all_inclusive_outlined, + 'all_out': Icons.all_out, + 'all_out_sharp': Icons.all_out_sharp, + 'all_out_rounded': Icons.all_out_rounded, + 'all_out_outlined': Icons.all_out_outlined, + 'alt_route': Icons.alt_route, + 'alt_route_sharp': Icons.alt_route_sharp, + 'alt_route_rounded': Icons.alt_route_rounded, + 'alt_route_outlined': Icons.alt_route_outlined, + 'alternate_email': Icons.alternate_email, + 'alternate_email_sharp': Icons.alternate_email_sharp, + 'alternate_email_rounded': Icons.alternate_email_rounded, + 'alternate_email_outlined': Icons.alternate_email_outlined, + 'amp_stories': Icons.amp_stories, + 'amp_stories_sharp': Icons.amp_stories_sharp, + 'amp_stories_rounded': Icons.amp_stories_rounded, + 'amp_stories_outlined': Icons.amp_stories_outlined, + 'analytics': Icons.analytics, + 'analytics_sharp': Icons.analytics_sharp, + 'analytics_rounded': Icons.analytics_rounded, + 'analytics_outlined': Icons.analytics_outlined, + 'anchor': Icons.anchor, + 'anchor_sharp': Icons.anchor_sharp, + 'anchor_rounded': Icons.anchor_rounded, + 'anchor_outlined': Icons.anchor_outlined, + 'android': Icons.android, + 'android_sharp': Icons.android_sharp, + 'android_rounded': Icons.android_rounded, + 'android_outlined': Icons.android_outlined, + 'animation': Icons.animation, + 'animation_sharp': Icons.animation_sharp, + 'animation_rounded': Icons.animation_rounded, + 'animation_outlined': Icons.animation_outlined, + 'announcement': Icons.announcement, + 'announcement_sharp': Icons.announcement_sharp, + 'announcement_rounded': Icons.announcement_rounded, + 'announcement_outlined': Icons.announcement_outlined, + 'aod': Icons.aod, + 'aod_sharp': Icons.aod_sharp, + 'aod_rounded': Icons.aod_rounded, + 'aod_outlined': Icons.aod_outlined, + 'apartment': Icons.apartment, + 'apartment_sharp': Icons.apartment_sharp, + 'apartment_rounded': Icons.apartment_rounded, + 'apartment_outlined': Icons.apartment_outlined, + 'api': Icons.api, + 'api_sharp': Icons.api_sharp, + 'api_rounded': Icons.api_rounded, + 'api_outlined': Icons.api_outlined, + 'app_blocking': Icons.app_blocking, + 'app_blocking_sharp': Icons.app_blocking_sharp, + 'app_blocking_rounded': Icons.app_blocking_rounded, + 'app_blocking_outlined': Icons.app_blocking_outlined, + 'app_registration': Icons.app_registration, + 'app_registration_sharp': Icons.app_registration_sharp, + 'app_registration_rounded': Icons.app_registration_rounded, + 'app_registration_outlined': Icons.app_registration_outlined, + 'app_settings_alt': Icons.app_settings_alt, + 'app_settings_alt_sharp': Icons.app_settings_alt_sharp, + 'app_settings_alt_rounded': Icons.app_settings_alt_rounded, + 'app_settings_alt_outlined': Icons.app_settings_alt_outlined, + 'approval': Icons.approval, + 'approval_sharp': Icons.approval_sharp, + 'approval_rounded': Icons.approval_rounded, + 'approval_outlined': Icons.approval_outlined, + 'apps': Icons.apps, + 'apps_sharp': Icons.apps_sharp, + 'apps_rounded': Icons.apps_rounded, + 'apps_outlined': Icons.apps_outlined, + 'architecture': Icons.architecture, + 'architecture_sharp': Icons.architecture_sharp, + 'architecture_rounded': Icons.architecture_rounded, + 'architecture_outlined': Icons.architecture_outlined, + 'archive': Icons.archive, + 'archive_sharp': Icons.archive_sharp, + 'archive_rounded': Icons.archive_rounded, + 'archive_outlined': Icons.archive_outlined, + 'arrow_back': Icons.arrow_back, + 'arrow_back_sharp': Icons.arrow_back_sharp, + 'arrow_back_rounded': Icons.arrow_back_rounded, + 'arrow_back_outlined': Icons.arrow_back_outlined, + 'arrow_back_ios': Icons.arrow_back_ios, + 'arrow_back_ios_sharp': Icons.arrow_back_ios_sharp, + 'arrow_back_ios_rounded': Icons.arrow_back_ios_rounded, + 'arrow_back_ios_outlined': Icons.arrow_back_ios_outlined, + 'arrow_back_ios_new': Icons.arrow_back_ios_new, + 'arrow_back_ios_new_sharp': Icons.arrow_back_ios_new_sharp, + 'arrow_back_ios_new_rounded': Icons.arrow_back_ios_new_rounded, + 'arrow_back_ios_new_outlined': Icons.arrow_back_ios_new_outlined, + 'arrow_circle_down': Icons.arrow_circle_down, + 'arrow_circle_down_sharp': Icons.arrow_circle_down_sharp, + 'arrow_circle_down_rounded': Icons.arrow_circle_down_rounded, + 'arrow_circle_down_outlined': Icons.arrow_circle_down_outlined, + 'arrow_circle_up': Icons.arrow_circle_up, + 'arrow_circle_up_sharp': Icons.arrow_circle_up_sharp, + 'arrow_circle_up_rounded': Icons.arrow_circle_up_rounded, + 'arrow_circle_up_outlined': Icons.arrow_circle_up_outlined, + 'arrow_downward': Icons.arrow_downward, + 'arrow_downward_sharp': Icons.arrow_downward_sharp, + 'arrow_downward_rounded': Icons.arrow_downward_rounded, + 'arrow_downward_outlined': Icons.arrow_downward_outlined, + 'arrow_drop_down': Icons.arrow_drop_down, + 'arrow_drop_down_sharp': Icons.arrow_drop_down_sharp, + 'arrow_drop_down_rounded': Icons.arrow_drop_down_rounded, + 'arrow_drop_down_outlined': Icons.arrow_drop_down_outlined, + 'arrow_drop_down_circle': Icons.arrow_drop_down_circle, + 'arrow_drop_down_circle_sharp': Icons.arrow_drop_down_circle_sharp, + 'arrow_drop_down_circle_rounded': Icons.arrow_drop_down_circle_rounded, + 'arrow_drop_down_circle_outlined': + Icons.arrow_drop_down_circle_outlined, + 'arrow_drop_up': Icons.arrow_drop_up, + 'arrow_drop_up_sharp': Icons.arrow_drop_up_sharp, + 'arrow_drop_up_rounded': Icons.arrow_drop_up_rounded, + 'arrow_drop_up_outlined': Icons.arrow_drop_up_outlined, + 'arrow_forward': Icons.arrow_forward, + 'arrow_forward_sharp': Icons.arrow_forward_sharp, + 'arrow_forward_rounded': Icons.arrow_forward_rounded, + 'arrow_forward_outlined': Icons.arrow_forward_outlined, + 'arrow_forward_ios': Icons.arrow_forward_ios, + 'arrow_forward_ios_sharp': Icons.arrow_forward_ios_sharp, + 'arrow_forward_ios_rounded': Icons.arrow_forward_ios_rounded, + 'arrow_forward_ios_outlined': Icons.arrow_forward_ios_outlined, + 'arrow_left': Icons.arrow_left, + 'arrow_left_sharp': Icons.arrow_left_sharp, + 'arrow_left_rounded': Icons.arrow_left_rounded, + 'arrow_left_outlined': Icons.arrow_left_outlined, + 'arrow_right': Icons.arrow_right, + 'arrow_right_sharp': Icons.arrow_right_sharp, + 'arrow_right_rounded': Icons.arrow_right_rounded, + 'arrow_right_outlined': Icons.arrow_right_outlined, + 'arrow_right_alt': Icons.arrow_right_alt, + 'arrow_right_alt_sharp': Icons.arrow_right_alt_sharp, + 'arrow_right_alt_rounded': Icons.arrow_right_alt_rounded, + 'arrow_right_alt_outlined': Icons.arrow_right_alt_outlined, + 'arrow_upward': Icons.arrow_upward, + 'arrow_upward_sharp': Icons.arrow_upward_sharp, + 'arrow_upward_rounded': Icons.arrow_upward_rounded, + 'arrow_upward_outlined': Icons.arrow_upward_outlined, + 'art_track': Icons.art_track, + 'art_track_sharp': Icons.art_track_sharp, + 'art_track_rounded': Icons.art_track_rounded, + 'art_track_outlined': Icons.art_track_outlined, + 'article': Icons.article, + 'article_sharp': Icons.article_sharp, + 'article_rounded': Icons.article_rounded, + 'article_outlined': Icons.article_outlined, + 'aspect_ratio': Icons.aspect_ratio, + 'aspect_ratio_sharp': Icons.aspect_ratio_sharp, + 'aspect_ratio_rounded': Icons.aspect_ratio_rounded, + 'aspect_ratio_outlined': Icons.aspect_ratio_outlined, + 'assessment': Icons.assessment, + 'assessment_sharp': Icons.assessment_sharp, + 'assessment_rounded': Icons.assessment_rounded, + 'assessment_outlined': Icons.assessment_outlined, + 'assignment': Icons.assignment, + 'assignment_sharp': Icons.assignment_sharp, + 'assignment_rounded': Icons.assignment_rounded, + 'assignment_outlined': Icons.assignment_outlined, + 'assignment_ind': Icons.assignment_ind, + 'assignment_ind_sharp': Icons.assignment_ind_sharp, + 'assignment_ind_rounded': Icons.assignment_ind_rounded, + 'assignment_ind_outlined': Icons.assignment_ind_outlined, + 'assignment_late': Icons.assignment_late, + 'assignment_late_sharp': Icons.assignment_late_sharp, + 'assignment_late_rounded': Icons.assignment_late_rounded, + 'assignment_late_outlined': Icons.assignment_late_outlined, + 'assignment_return': Icons.assignment_return, + 'assignment_return_sharp': Icons.assignment_return_sharp, + 'assignment_return_rounded': Icons.assignment_return_rounded, + 'assignment_return_outlined': Icons.assignment_return_outlined, + 'assignment_returned': Icons.assignment_returned, + 'assignment_returned_sharp': Icons.assignment_returned_sharp, + 'assignment_returned_rounded': Icons.assignment_returned_rounded, + 'assignment_returned_outlined': Icons.assignment_returned_outlined, + 'assignment_turned_in': Icons.assignment_turned_in, + 'assignment_turned_in_sharp': Icons.assignment_turned_in_sharp, + 'assignment_turned_in_rounded': Icons.assignment_turned_in_rounded, + 'assignment_turned_in_outlined': Icons.assignment_turned_in_outlined, + 'assistant': Icons.assistant, + 'assistant_sharp': Icons.assistant_sharp, + 'assistant_rounded': Icons.assistant_rounded, + 'assistant_outlined': Icons.assistant_outlined, + 'assistant_direction': Icons.assistant_direction, + 'assistant_direction_sharp': Icons.assistant_direction_sharp, + 'assistant_direction_rounded': Icons.assistant_direction_rounded, + 'assistant_direction_outlined': Icons.assistant_direction_outlined, + 'assistant_navigation': Icons.assistant_navigation, + 'assistant_photo': Icons.assistant_photo, + 'assistant_photo_sharp': Icons.assistant_photo_sharp, + 'assistant_photo_rounded': Icons.assistant_photo_rounded, + 'assistant_photo_outlined': Icons.assistant_photo_outlined, + 'atm': Icons.atm, + 'atm_sharp': Icons.atm_sharp, + 'atm_rounded': Icons.atm_rounded, + 'atm_outlined': Icons.atm_outlined, + 'attach_email': Icons.attach_email, + 'attach_email_sharp': Icons.attach_email_sharp, + 'attach_email_rounded': Icons.attach_email_rounded, + 'attach_email_outlined': Icons.attach_email_outlined, + 'attach_file': Icons.attach_file, + 'attach_file_sharp': Icons.attach_file_sharp, + 'attach_file_rounded': Icons.attach_file_rounded, + 'attach_file_outlined': Icons.attach_file_outlined, + 'attach_money': Icons.attach_money, + 'attach_money_sharp': Icons.attach_money_sharp, + 'attach_money_rounded': Icons.attach_money_rounded, + 'attach_money_outlined': Icons.attach_money_outlined, + 'attachment': Icons.attachment, + 'attachment_sharp': Icons.attachment_sharp, + 'attachment_rounded': Icons.attachment_rounded, + 'attachment_outlined': Icons.attachment_outlined, + 'attractions': Icons.attractions, + 'attractions_sharp': Icons.attractions_sharp, + 'attractions_rounded': Icons.attractions_rounded, + 'attractions_outlined': Icons.attractions_outlined, + 'attribution': Icons.attribution, + 'attribution_sharp': Icons.attribution_sharp, + 'attribution_rounded': Icons.attribution_rounded, + 'attribution_outlined': Icons.attribution_outlined, + 'audiotrack': Icons.audiotrack, + 'audiotrack_sharp': Icons.audiotrack_sharp, + 'audiotrack_rounded': Icons.audiotrack_rounded, + 'audiotrack_outlined': Icons.audiotrack_outlined, + 'auto_awesome': Icons.auto_awesome, + 'auto_awesome_sharp': Icons.auto_awesome_sharp, + 'auto_awesome_rounded': Icons.auto_awesome_rounded, + 'auto_awesome_outlined': Icons.auto_awesome_outlined, + 'auto_awesome_mosaic': Icons.auto_awesome_mosaic, + 'auto_awesome_mosaic_sharp': Icons.auto_awesome_mosaic_sharp, + 'auto_awesome_mosaic_rounded': Icons.auto_awesome_mosaic_rounded, + 'auto_awesome_mosaic_outlined': Icons.auto_awesome_mosaic_outlined, + 'auto_awesome_motion': Icons.auto_awesome_motion, + 'auto_awesome_motion_sharp': Icons.auto_awesome_motion_sharp, + 'auto_awesome_motion_rounded': Icons.auto_awesome_motion_rounded, + 'auto_awesome_motion_outlined': Icons.auto_awesome_motion_outlined, + 'auto_delete': Icons.auto_delete, + 'auto_delete_sharp': Icons.auto_delete_sharp, + 'auto_delete_rounded': Icons.auto_delete_rounded, + 'auto_delete_outlined': Icons.auto_delete_outlined, + 'auto_fix_high': Icons.auto_fix_high, + 'auto_fix_high_sharp': Icons.auto_fix_high_sharp, + 'auto_fix_high_rounded': Icons.auto_fix_high_rounded, + 'auto_fix_high_outlined': Icons.auto_fix_high_outlined, + 'auto_fix_normal': Icons.auto_fix_normal, + 'auto_fix_normal_sharp': Icons.auto_fix_normal_sharp, + 'auto_fix_normal_rounded': Icons.auto_fix_normal_rounded, + 'auto_fix_normal_outlined': Icons.auto_fix_normal_outlined, + 'auto_fix_off': Icons.auto_fix_off, + 'auto_fix_off_sharp': Icons.auto_fix_off_sharp, + 'auto_fix_off_rounded': Icons.auto_fix_off_rounded, + 'auto_fix_off_outlined': Icons.auto_fix_off_outlined, + 'auto_graph': Icons.auto_graph, + 'auto_graph_sharp': Icons.auto_graph_sharp, + 'auto_graph_rounded': Icons.auto_graph_rounded, + 'auto_graph_outlined': Icons.auto_graph_outlined, + 'auto_stories': Icons.auto_stories, + 'auto_stories_sharp': Icons.auto_stories_sharp, + 'auto_stories_rounded': Icons.auto_stories_rounded, + 'auto_stories_outlined': Icons.auto_stories_outlined, + 'autofps_select': Icons.autofps_select, + 'autofps_select_sharp': Icons.autofps_select_sharp, + 'autofps_select_rounded': Icons.autofps_select_rounded, + 'autofps_select_outlined': Icons.autofps_select_outlined, + 'autorenew': Icons.autorenew, + 'autorenew_sharp': Icons.autorenew_sharp, + 'autorenew_rounded': Icons.autorenew_rounded, + 'autorenew_outlined': Icons.autorenew_outlined, + 'av_timer': Icons.av_timer, + 'av_timer_sharp': Icons.av_timer_sharp, + 'av_timer_rounded': Icons.av_timer_rounded, + 'av_timer_outlined': Icons.av_timer_outlined, + 'baby_changing_station': Icons.baby_changing_station, + 'baby_changing_station_sharp': Icons.baby_changing_station_sharp, + 'baby_changing_station_rounded': Icons.baby_changing_station_rounded, + 'baby_changing_station_outlined': Icons.baby_changing_station_outlined, + 'backpack': Icons.backpack, + 'backpack_sharp': Icons.backpack_sharp, + 'backpack_rounded': Icons.backpack_rounded, + 'backpack_outlined': Icons.backpack_outlined, + 'backspace': Icons.backspace, + 'backspace_sharp': Icons.backspace_sharp, + 'backspace_rounded': Icons.backspace_rounded, + 'backspace_outlined': Icons.backspace_outlined, + 'backup': Icons.backup, + 'backup_sharp': Icons.backup_sharp, + 'backup_rounded': Icons.backup_rounded, + 'backup_outlined': Icons.backup_outlined, + 'backup_table': Icons.backup_table, + 'backup_table_sharp': Icons.backup_table_sharp, + 'backup_table_rounded': Icons.backup_table_rounded, + 'backup_table_outlined': Icons.backup_table_outlined, + 'badge': Icons.badge, + 'badge_sharp': Icons.badge_sharp, + 'badge_rounded': Icons.badge_rounded, + 'badge_outlined': Icons.badge_outlined, + 'bakery_dining': Icons.bakery_dining, + 'bakery_dining_sharp': Icons.bakery_dining_sharp, + 'bakery_dining_rounded': Icons.bakery_dining_rounded, + 'bakery_dining_outlined': Icons.bakery_dining_outlined, + 'balcony': Icons.balcony, + 'balcony_sharp': Icons.balcony_sharp, + 'balcony_rounded': Icons.balcony_rounded, + 'balcony_outlined': Icons.balcony_outlined, + 'ballot': Icons.ballot, + 'ballot_sharp': Icons.ballot_sharp, + 'ballot_rounded': Icons.ballot_rounded, + 'ballot_outlined': Icons.ballot_outlined, + 'bar_chart': Icons.bar_chart, + 'bar_chart_sharp': Icons.bar_chart_sharp, + 'bar_chart_rounded': Icons.bar_chart_rounded, + 'bar_chart_outlined': Icons.bar_chart_outlined, + 'batch_prediction': Icons.batch_prediction, + 'batch_prediction_sharp': Icons.batch_prediction_sharp, + 'batch_prediction_rounded': Icons.batch_prediction_rounded, + 'batch_prediction_outlined': Icons.batch_prediction_outlined, + 'bathroom': Icons.bathroom, + 'bathroom_sharp': Icons.bathroom_sharp, + 'bathroom_rounded': Icons.bathroom_rounded, + 'bathroom_outlined': Icons.bathroom_outlined, + 'bathtub': Icons.bathtub, + 'bathtub_sharp': Icons.bathtub_sharp, + 'bathtub_rounded': Icons.bathtub_rounded, + 'bathtub_outlined': Icons.bathtub_outlined, + 'battery_alert': Icons.battery_alert, + 'battery_alert_sharp': Icons.battery_alert_sharp, + 'battery_alert_rounded': Icons.battery_alert_rounded, + 'battery_alert_outlined': Icons.battery_alert_outlined, + 'battery_charging_full': Icons.battery_charging_full, + 'battery_charging_full_sharp': Icons.battery_charging_full_sharp, + 'battery_charging_full_rounded': Icons.battery_charging_full_rounded, + 'battery_charging_full_outlined': Icons.battery_charging_full_outlined, + 'battery_full': Icons.battery_full, + 'battery_full_sharp': Icons.battery_full_sharp, + 'battery_full_rounded': Icons.battery_full_rounded, + 'battery_full_outlined': Icons.battery_full_outlined, + 'battery_saver': Icons.battery_saver, + 'battery_saver_sharp': Icons.battery_saver_sharp, + 'battery_saver_rounded': Icons.battery_saver_rounded, + 'battery_saver_outlined': Icons.battery_saver_outlined, + 'battery_std': Icons.battery_std, + 'battery_std_sharp': Icons.battery_std_sharp, + 'battery_std_rounded': Icons.battery_std_rounded, + 'battery_std_outlined': Icons.battery_std_outlined, + 'battery_unknown': Icons.battery_unknown, + 'battery_unknown_sharp': Icons.battery_unknown_sharp, + 'battery_unknown_rounded': Icons.battery_unknown_rounded, + 'battery_unknown_outlined': Icons.battery_unknown_outlined, + 'beach_access': Icons.beach_access, + 'beach_access_sharp': Icons.beach_access_sharp, + 'beach_access_rounded': Icons.beach_access_rounded, + 'beach_access_outlined': Icons.beach_access_outlined, + 'bed': Icons.bed, + 'bed_sharp': Icons.bed_sharp, + 'bed_rounded': Icons.bed_rounded, + 'bed_outlined': Icons.bed_outlined, + 'bedroom_baby': Icons.bedroom_baby, + 'bedroom_baby_sharp': Icons.bedroom_baby_sharp, + 'bedroom_baby_rounded': Icons.bedroom_baby_rounded, + 'bedroom_baby_outlined': Icons.bedroom_baby_outlined, + 'bedroom_child': Icons.bedroom_child, + 'bedroom_child_sharp': Icons.bedroom_child_sharp, + 'bedroom_child_rounded': Icons.bedroom_child_rounded, + 'bedroom_child_outlined': Icons.bedroom_child_outlined, + 'bedroom_parent': Icons.bedroom_parent, + 'bedroom_parent_sharp': Icons.bedroom_parent_sharp, + 'bedroom_parent_rounded': Icons.bedroom_parent_rounded, + 'bedroom_parent_outlined': Icons.bedroom_parent_outlined, + 'bedtime': Icons.bedtime, + 'bedtime_sharp': Icons.bedtime_sharp, + 'bedtime_rounded': Icons.bedtime_rounded, + 'bedtime_outlined': Icons.bedtime_outlined, + 'beenhere': Icons.beenhere, + 'beenhere_sharp': Icons.beenhere_sharp, + 'beenhere_rounded': Icons.beenhere_rounded, + 'beenhere_outlined': Icons.beenhere_outlined, + 'bento': Icons.bento, + 'bento_sharp': Icons.bento_sharp, + 'bento_rounded': Icons.bento_rounded, + 'bento_outlined': Icons.bento_outlined, + 'bike_scooter': Icons.bike_scooter, + 'bike_scooter_sharp': Icons.bike_scooter_sharp, + 'bike_scooter_rounded': Icons.bike_scooter_rounded, + 'bike_scooter_outlined': Icons.bike_scooter_outlined, + 'biotech': Icons.biotech, + 'biotech_sharp': Icons.biotech_sharp, + 'biotech_rounded': Icons.biotech_rounded, + 'biotech_outlined': Icons.biotech_outlined, + 'blender': Icons.blender, + 'blender_sharp': Icons.blender_sharp, + 'blender_rounded': Icons.blender_rounded, + 'blender_outlined': Icons.blender_outlined, + 'block': Icons.block, + 'block_sharp': Icons.block_sharp, + 'block_rounded': Icons.block_rounded, + 'block_outlined': Icons.block_outlined, + 'block_flipped': Icons.block_flipped, + 'bloodtype': Icons.bloodtype, + 'bloodtype_sharp': Icons.bloodtype_sharp, + 'bloodtype_rounded': Icons.bloodtype_rounded, + 'bloodtype_outlined': Icons.bloodtype_outlined, + 'bluetooth': Icons.bluetooth, + 'bluetooth_sharp': Icons.bluetooth_sharp, + 'bluetooth_rounded': Icons.bluetooth_rounded, + 'bluetooth_outlined': Icons.bluetooth_outlined, + 'bluetooth_audio': Icons.bluetooth_audio, + 'bluetooth_audio_sharp': Icons.bluetooth_audio_sharp, + 'bluetooth_audio_rounded': Icons.bluetooth_audio_rounded, + 'bluetooth_audio_outlined': Icons.bluetooth_audio_outlined, + 'bluetooth_connected': Icons.bluetooth_connected, + 'bluetooth_connected_sharp': Icons.bluetooth_connected_sharp, + 'bluetooth_connected_rounded': Icons.bluetooth_connected_rounded, + 'bluetooth_connected_outlined': Icons.bluetooth_connected_outlined, + 'bluetooth_disabled': Icons.bluetooth_disabled, + 'bluetooth_disabled_sharp': Icons.bluetooth_disabled_sharp, + 'bluetooth_disabled_rounded': Icons.bluetooth_disabled_rounded, + 'bluetooth_disabled_outlined': Icons.bluetooth_disabled_outlined, + 'bluetooth_drive': Icons.bluetooth_drive, + 'bluetooth_drive_sharp': Icons.bluetooth_drive_sharp, + 'bluetooth_drive_rounded': Icons.bluetooth_drive_rounded, + 'bluetooth_drive_outlined': Icons.bluetooth_drive_outlined, + 'bluetooth_searching': Icons.bluetooth_searching, + 'bluetooth_searching_sharp': Icons.bluetooth_searching_sharp, + 'bluetooth_searching_rounded': Icons.bluetooth_searching_rounded, + 'bluetooth_searching_outlined': Icons.bluetooth_searching_outlined, + 'blur_circular': Icons.blur_circular, + 'blur_circular_sharp': Icons.blur_circular_sharp, + 'blur_circular_rounded': Icons.blur_circular_rounded, + 'blur_circular_outlined': Icons.blur_circular_outlined, + 'blur_linear': Icons.blur_linear, + 'blur_linear_sharp': Icons.blur_linear_sharp, + 'blur_linear_rounded': Icons.blur_linear_rounded, + 'blur_linear_outlined': Icons.blur_linear_outlined, + 'blur_off': Icons.blur_off, + 'blur_off_sharp': Icons.blur_off_sharp, + 'blur_off_rounded': Icons.blur_off_rounded, + 'blur_off_outlined': Icons.blur_off_outlined, + 'blur_on': Icons.blur_on, + 'blur_on_sharp': Icons.blur_on_sharp, + 'blur_on_rounded': Icons.blur_on_rounded, + 'blur_on_outlined': Icons.blur_on_outlined, + 'bolt': Icons.bolt, + 'bolt_sharp': Icons.bolt_sharp, + 'bolt_rounded': Icons.bolt_rounded, + 'bolt_outlined': Icons.bolt_outlined, + 'book': Icons.book, + 'book_sharp': Icons.book_sharp, + 'book_rounded': Icons.book_rounded, + 'book_outlined': Icons.book_outlined, + 'book_online': Icons.book_online, + 'book_online_sharp': Icons.book_online_sharp, + 'book_online_rounded': Icons.book_online_rounded, + 'book_online_outlined': Icons.book_online_outlined, + 'bookmark': Icons.bookmark, + 'bookmark_sharp': Icons.bookmark_sharp, + 'bookmark_rounded': Icons.bookmark_rounded, + 'bookmark_outlined': Icons.bookmark_outlined, + 'bookmark_add': Icons.bookmark_add, + 'bookmark_add_sharp': Icons.bookmark_add_sharp, + 'bookmark_add_rounded': Icons.bookmark_add_rounded, + 'bookmark_add_outlined': Icons.bookmark_add_outlined, + 'bookmark_added': Icons.bookmark_added, + 'bookmark_added_sharp': Icons.bookmark_added_sharp, + 'bookmark_added_rounded': Icons.bookmark_added_rounded, + 'bookmark_added_outlined': Icons.bookmark_added_outlined, + 'bookmark_border': Icons.bookmark_border, + 'bookmark_border_sharp': Icons.bookmark_border_sharp, + 'bookmark_border_rounded': Icons.bookmark_border_rounded, + 'bookmark_border_outlined': Icons.bookmark_border_outlined, + 'bookmark_outline': Icons.bookmark_outline, + 'bookmark_outline_sharp': Icons.bookmark_outline_sharp, + 'bookmark_outline_rounded': Icons.bookmark_outline_rounded, + 'bookmark_outline_outlined': Icons.bookmark_outline_outlined, + 'bookmark_remove': Icons.bookmark_remove, + 'bookmark_remove_sharp': Icons.bookmark_remove_sharp, + 'bookmark_remove_rounded': Icons.bookmark_remove_rounded, + 'bookmark_remove_outlined': Icons.bookmark_remove_outlined, + 'bookmarks': Icons.bookmarks, + 'bookmarks_sharp': Icons.bookmarks_sharp, + 'bookmarks_rounded': Icons.bookmarks_rounded, + 'bookmarks_outlined': Icons.bookmarks_outlined, + 'border_all': Icons.border_all, + 'border_all_sharp': Icons.border_all_sharp, + 'border_all_rounded': Icons.border_all_rounded, + 'border_all_outlined': Icons.border_all_outlined, + 'border_bottom': Icons.border_bottom, + 'border_bottom_sharp': Icons.border_bottom_sharp, + 'border_bottom_rounded': Icons.border_bottom_rounded, + 'border_bottom_outlined': Icons.border_bottom_outlined, + 'border_clear': Icons.border_clear, + 'border_clear_sharp': Icons.border_clear_sharp, + 'border_clear_rounded': Icons.border_clear_rounded, + 'border_clear_outlined': Icons.border_clear_outlined, + 'border_color': Icons.border_color, + 'border_color_sharp': Icons.border_color_sharp, + 'border_color_rounded': Icons.border_color_rounded, + 'border_color_outlined': Icons.border_color_outlined, + 'border_horizontal': Icons.border_horizontal, + 'border_horizontal_sharp': Icons.border_horizontal_sharp, + 'border_horizontal_rounded': Icons.border_horizontal_rounded, + 'border_horizontal_outlined': Icons.border_horizontal_outlined, + 'border_inner': Icons.border_inner, + 'border_inner_sharp': Icons.border_inner_sharp, + 'border_inner_rounded': Icons.border_inner_rounded, + 'border_inner_outlined': Icons.border_inner_outlined, + 'border_left': Icons.border_left, + 'border_left_sharp': Icons.border_left_sharp, + 'border_left_rounded': Icons.border_left_rounded, + 'border_left_outlined': Icons.border_left_outlined, + 'border_outer': Icons.border_outer, + 'border_outer_sharp': Icons.border_outer_sharp, + 'border_outer_rounded': Icons.border_outer_rounded, + 'border_outer_outlined': Icons.border_outer_outlined, + 'border_right': Icons.border_right, + 'border_right_sharp': Icons.border_right_sharp, + 'border_right_rounded': Icons.border_right_rounded, + 'border_right_outlined': Icons.border_right_outlined, + 'border_style': Icons.border_style, + 'border_style_sharp': Icons.border_style_sharp, + 'border_style_rounded': Icons.border_style_rounded, + 'border_style_outlined': Icons.border_style_outlined, + 'border_top': Icons.border_top, + 'border_top_sharp': Icons.border_top_sharp, + 'border_top_rounded': Icons.border_top_rounded, + 'border_top_outlined': Icons.border_top_outlined, + 'border_vertical': Icons.border_vertical, + 'border_vertical_sharp': Icons.border_vertical_sharp, + 'border_vertical_rounded': Icons.border_vertical_rounded, + 'border_vertical_outlined': Icons.border_vertical_outlined, + 'branding_watermark': Icons.branding_watermark, + 'branding_watermark_sharp': Icons.branding_watermark_sharp, + 'branding_watermark_rounded': Icons.branding_watermark_rounded, + 'branding_watermark_outlined': Icons.branding_watermark_outlined, + 'breakfast_dining': Icons.breakfast_dining, + 'breakfast_dining_sharp': Icons.breakfast_dining_sharp, + 'breakfast_dining_rounded': Icons.breakfast_dining_rounded, + 'breakfast_dining_outlined': Icons.breakfast_dining_outlined, + 'brightness_1': Icons.brightness_1, + 'brightness_1_sharp': Icons.brightness_1_sharp, + 'brightness_1_rounded': Icons.brightness_1_rounded, + 'brightness_1_outlined': Icons.brightness_1_outlined, + 'brightness_2': Icons.brightness_2, + 'brightness_2_sharp': Icons.brightness_2_sharp, + 'brightness_2_rounded': Icons.brightness_2_rounded, + 'brightness_2_outlined': Icons.brightness_2_outlined, + 'brightness_3': Icons.brightness_3, + 'brightness_3_sharp': Icons.brightness_3_sharp, + 'brightness_3_rounded': Icons.brightness_3_rounded, + 'brightness_3_outlined': Icons.brightness_3_outlined, + 'brightness_4': Icons.brightness_4, + 'brightness_4_sharp': Icons.brightness_4_sharp, + 'brightness_4_rounded': Icons.brightness_4_rounded, + 'brightness_4_outlined': Icons.brightness_4_outlined, + 'brightness_5': Icons.brightness_5, + 'brightness_5_sharp': Icons.brightness_5_sharp, + 'brightness_5_rounded': Icons.brightness_5_rounded, + 'brightness_5_outlined': Icons.brightness_5_outlined, + 'brightness_6': Icons.brightness_6, + 'brightness_6_sharp': Icons.brightness_6_sharp, + 'brightness_6_rounded': Icons.brightness_6_rounded, + 'brightness_6_outlined': Icons.brightness_6_outlined, + 'brightness_7': Icons.brightness_7, + 'brightness_7_sharp': Icons.brightness_7_sharp, + 'brightness_7_rounded': Icons.brightness_7_rounded, + 'brightness_7_outlined': Icons.brightness_7_outlined, + 'brightness_auto': Icons.brightness_auto, + 'brightness_auto_sharp': Icons.brightness_auto_sharp, + 'brightness_auto_rounded': Icons.brightness_auto_rounded, + 'brightness_auto_outlined': Icons.brightness_auto_outlined, + 'brightness_high': Icons.brightness_high, + 'brightness_high_sharp': Icons.brightness_high_sharp, + 'brightness_high_rounded': Icons.brightness_high_rounded, + 'brightness_high_outlined': Icons.brightness_high_outlined, + 'brightness_low': Icons.brightness_low, + 'brightness_low_sharp': Icons.brightness_low_sharp, + 'brightness_low_rounded': Icons.brightness_low_rounded, + 'brightness_low_outlined': Icons.brightness_low_outlined, + 'brightness_medium': Icons.brightness_medium, + 'brightness_medium_sharp': Icons.brightness_medium_sharp, + 'brightness_medium_rounded': Icons.brightness_medium_rounded, + 'brightness_medium_outlined': Icons.brightness_medium_outlined, + 'broken_image': Icons.broken_image, + 'broken_image_sharp': Icons.broken_image_sharp, + 'broken_image_rounded': Icons.broken_image_rounded, + 'broken_image_outlined': Icons.broken_image_outlined, + 'browser_not_supported': Icons.browser_not_supported, + 'browser_not_supported_sharp': Icons.browser_not_supported_sharp, + 'browser_not_supported_rounded': Icons.browser_not_supported_rounded, + 'browser_not_supported_outlined': Icons.browser_not_supported_outlined, + 'brunch_dining': Icons.brunch_dining, + 'brunch_dining_sharp': Icons.brunch_dining_sharp, + 'brunch_dining_rounded': Icons.brunch_dining_rounded, + 'brunch_dining_outlined': Icons.brunch_dining_outlined, + 'brush': Icons.brush, + 'brush_sharp': Icons.brush_sharp, + 'brush_rounded': Icons.brush_rounded, + 'brush_outlined': Icons.brush_outlined, + 'bubble_chart': Icons.bubble_chart, + 'bubble_chart_sharp': Icons.bubble_chart_sharp, + 'bubble_chart_rounded': Icons.bubble_chart_rounded, + 'bubble_chart_outlined': Icons.bubble_chart_outlined, + 'bug_report': Icons.bug_report, + 'bug_report_sharp': Icons.bug_report_sharp, + 'bug_report_rounded': Icons.bug_report_rounded, + 'bug_report_outlined': Icons.bug_report_outlined, + 'build': Icons.build, + 'build_sharp': Icons.build_sharp, + 'build_rounded': Icons.build_rounded, + 'build_outlined': Icons.build_outlined, + 'build_circle': Icons.build_circle, + 'build_circle_sharp': Icons.build_circle_sharp, + 'build_circle_rounded': Icons.build_circle_rounded, + 'build_circle_outlined': Icons.build_circle_outlined, + 'bungalow': Icons.bungalow, + 'bungalow_sharp': Icons.bungalow_sharp, + 'bungalow_rounded': Icons.bungalow_rounded, + 'bungalow_outlined': Icons.bungalow_outlined, + 'burst_mode': Icons.burst_mode, + 'burst_mode_sharp': Icons.burst_mode_sharp, + 'burst_mode_rounded': Icons.burst_mode_rounded, + 'burst_mode_outlined': Icons.burst_mode_outlined, + 'bus_alert': Icons.bus_alert, + 'bus_alert_sharp': Icons.bus_alert_sharp, + 'bus_alert_rounded': Icons.bus_alert_rounded, + 'bus_alert_outlined': Icons.bus_alert_outlined, + 'business': Icons.business, + 'business_sharp': Icons.business_sharp, + 'business_rounded': Icons.business_rounded, + 'business_outlined': Icons.business_outlined, + 'business_center': Icons.business_center, + 'business_center_sharp': Icons.business_center_sharp, + 'business_center_rounded': Icons.business_center_rounded, + 'business_center_outlined': Icons.business_center_outlined, + 'cabin': Icons.cabin, + 'cabin_sharp': Icons.cabin_sharp, + 'cabin_rounded': Icons.cabin_rounded, + 'cabin_outlined': Icons.cabin_outlined, + 'cable': Icons.cable, + 'cable_sharp': Icons.cable_sharp, + 'cable_rounded': Icons.cable_rounded, + 'cable_outlined': Icons.cable_outlined, + 'cached': Icons.cached, + 'cached_sharp': Icons.cached_sharp, + 'cached_rounded': Icons.cached_rounded, + 'cached_outlined': Icons.cached_outlined, + 'cake': Icons.cake, + 'cake_sharp': Icons.cake_sharp, + 'cake_rounded': Icons.cake_rounded, + 'cake_outlined': Icons.cake_outlined, + 'calculate': Icons.calculate, + 'calculate_sharp': Icons.calculate_sharp, + 'calculate_rounded': Icons.calculate_rounded, + 'calculate_outlined': Icons.calculate_outlined, + 'calendar_today': Icons.calendar_today, + 'calendar_today_sharp': Icons.calendar_today_sharp, + 'calendar_today_rounded': Icons.calendar_today_rounded, + 'calendar_today_outlined': Icons.calendar_today_outlined, + 'calendar_view_day': Icons.calendar_view_day, + 'calendar_view_day_sharp': Icons.calendar_view_day_sharp, + 'calendar_view_day_rounded': Icons.calendar_view_day_rounded, + 'calendar_view_day_outlined': Icons.calendar_view_day_outlined, + 'calendar_view_month': Icons.calendar_view_month, + 'calendar_view_month_sharp': Icons.calendar_view_month_sharp, + 'calendar_view_month_rounded': Icons.calendar_view_month_rounded, + 'calendar_view_month_outlined': Icons.calendar_view_month_outlined, + 'calendar_view_week': Icons.calendar_view_week, + 'calendar_view_week_sharp': Icons.calendar_view_week_sharp, + 'calendar_view_week_rounded': Icons.calendar_view_week_rounded, + 'calendar_view_week_outlined': Icons.calendar_view_week_outlined, + 'call': Icons.call, + 'call_sharp': Icons.call_sharp, + 'call_rounded': Icons.call_rounded, + 'call_outlined': Icons.call_outlined, + 'call_end': Icons.call_end, + 'call_end_sharp': Icons.call_end_sharp, + 'call_end_rounded': Icons.call_end_rounded, + 'call_end_outlined': Icons.call_end_outlined, + 'call_made': Icons.call_made, + 'call_made_sharp': Icons.call_made_sharp, + 'call_made_rounded': Icons.call_made_rounded, + 'call_made_outlined': Icons.call_made_outlined, + 'call_merge': Icons.call_merge, + 'call_merge_sharp': Icons.call_merge_sharp, + 'call_merge_rounded': Icons.call_merge_rounded, + 'call_merge_outlined': Icons.call_merge_outlined, + 'call_missed': Icons.call_missed, + 'call_missed_sharp': Icons.call_missed_sharp, + 'call_missed_rounded': Icons.call_missed_rounded, + 'call_missed_outlined': Icons.call_missed_outlined, + 'call_missed_outgoing': Icons.call_missed_outgoing, + 'call_missed_outgoing_sharp': Icons.call_missed_outgoing_sharp, + 'call_missed_outgoing_rounded': Icons.call_missed_outgoing_rounded, + 'call_missed_outgoing_outlined': Icons.call_missed_outgoing_outlined, + 'call_received': Icons.call_received, + 'call_received_sharp': Icons.call_received_sharp, + 'call_received_rounded': Icons.call_received_rounded, + 'call_received_outlined': Icons.call_received_outlined, + 'call_split': Icons.call_split, + 'call_split_sharp': Icons.call_split_sharp, + 'call_split_rounded': Icons.call_split_rounded, + 'call_split_outlined': Icons.call_split_outlined, + 'call_to_action': Icons.call_to_action, + 'call_to_action_sharp': Icons.call_to_action_sharp, + 'call_to_action_rounded': Icons.call_to_action_rounded, + 'call_to_action_outlined': Icons.call_to_action_outlined, + 'camera': Icons.camera, + 'camera_sharp': Icons.camera_sharp, + 'camera_rounded': Icons.camera_rounded, + 'camera_outlined': Icons.camera_outlined, + 'camera_alt': Icons.camera_alt, + 'camera_alt_sharp': Icons.camera_alt_sharp, + 'camera_alt_rounded': Icons.camera_alt_rounded, + 'camera_alt_outlined': Icons.camera_alt_outlined, + 'camera_enhance': Icons.camera_enhance, + 'camera_enhance_sharp': Icons.camera_enhance_sharp, + 'camera_enhance_rounded': Icons.camera_enhance_rounded, + 'camera_enhance_outlined': Icons.camera_enhance_outlined, + 'camera_front': Icons.camera_front, + 'camera_front_sharp': Icons.camera_front_sharp, + 'camera_front_rounded': Icons.camera_front_rounded, + 'camera_front_outlined': Icons.camera_front_outlined, + 'camera_indoor': Icons.camera_indoor, + 'camera_indoor_sharp': Icons.camera_indoor_sharp, + 'camera_indoor_rounded': Icons.camera_indoor_rounded, + 'camera_indoor_outlined': Icons.camera_indoor_outlined, + 'camera_outdoor': Icons.camera_outdoor, + 'camera_outdoor_sharp': Icons.camera_outdoor_sharp, + 'camera_outdoor_rounded': Icons.camera_outdoor_rounded, + 'camera_outdoor_outlined': Icons.camera_outdoor_outlined, + 'camera_rear': Icons.camera_rear, + 'camera_rear_sharp': Icons.camera_rear_sharp, + 'camera_rear_rounded': Icons.camera_rear_rounded, + 'camera_rear_outlined': Icons.camera_rear_outlined, + 'camera_roll': Icons.camera_roll, + 'camera_roll_sharp': Icons.camera_roll_sharp, + 'camera_roll_rounded': Icons.camera_roll_rounded, + 'camera_roll_outlined': Icons.camera_roll_outlined, + 'cameraswitch': Icons.cameraswitch, + 'cameraswitch_sharp': Icons.cameraswitch_sharp, + 'cameraswitch_rounded': Icons.cameraswitch_rounded, + 'cameraswitch_outlined': Icons.cameraswitch_outlined, + 'campaign': Icons.campaign, + 'campaign_sharp': Icons.campaign_sharp, + 'campaign_rounded': Icons.campaign_rounded, + 'campaign_outlined': Icons.campaign_outlined, + 'cancel': Icons.cancel, + 'cancel_sharp': Icons.cancel_sharp, + 'cancel_rounded': Icons.cancel_rounded, + 'cancel_outlined': Icons.cancel_outlined, + 'cancel_presentation': Icons.cancel_presentation, + 'cancel_presentation_sharp': Icons.cancel_presentation_sharp, + 'cancel_presentation_rounded': Icons.cancel_presentation_rounded, + 'cancel_presentation_outlined': Icons.cancel_presentation_outlined, + 'cancel_schedule_send': Icons.cancel_schedule_send, + 'cancel_schedule_send_sharp': Icons.cancel_schedule_send_sharp, + 'cancel_schedule_send_rounded': Icons.cancel_schedule_send_rounded, + 'cancel_schedule_send_outlined': Icons.cancel_schedule_send_outlined, + 'car_rental': Icons.car_rental, + 'car_rental_sharp': Icons.car_rental_sharp, + 'car_rental_rounded': Icons.car_rental_rounded, + 'car_rental_outlined': Icons.car_rental_outlined, + 'car_repair': Icons.car_repair, + 'car_repair_sharp': Icons.car_repair_sharp, + 'car_repair_rounded': Icons.car_repair_rounded, + 'car_repair_outlined': Icons.car_repair_outlined, + 'card_giftcard': Icons.card_giftcard, + 'card_giftcard_sharp': Icons.card_giftcard_sharp, + 'card_giftcard_rounded': Icons.card_giftcard_rounded, + 'card_giftcard_outlined': Icons.card_giftcard_outlined, + 'card_membership': Icons.card_membership, + 'card_membership_sharp': Icons.card_membership_sharp, + 'card_membership_rounded': Icons.card_membership_rounded, + 'card_membership_outlined': Icons.card_membership_outlined, + 'card_travel': Icons.card_travel, + 'card_travel_sharp': Icons.card_travel_sharp, + 'card_travel_rounded': Icons.card_travel_rounded, + 'card_travel_outlined': Icons.card_travel_outlined, + 'carpenter': Icons.carpenter, + 'carpenter_sharp': Icons.carpenter_sharp, + 'carpenter_rounded': Icons.carpenter_rounded, + 'carpenter_outlined': Icons.carpenter_outlined, + 'cases': Icons.cases, + 'cases_sharp': Icons.cases_sharp, + 'cases_rounded': Icons.cases_rounded, + 'cases_outlined': Icons.cases_outlined, + 'casino': Icons.casino, + 'casino_sharp': Icons.casino_sharp, + 'casino_rounded': Icons.casino_rounded, + 'casino_outlined': Icons.casino_outlined, + 'cast': Icons.cast, + 'cast_sharp': Icons.cast_sharp, + 'cast_rounded': Icons.cast_rounded, + 'cast_outlined': Icons.cast_outlined, + 'cast_connected': Icons.cast_connected, + 'cast_connected_sharp': Icons.cast_connected_sharp, + 'cast_connected_rounded': Icons.cast_connected_rounded, + 'cast_connected_outlined': Icons.cast_connected_outlined, + 'cast_for_education': Icons.cast_for_education, + 'cast_for_education_sharp': Icons.cast_for_education_sharp, + 'cast_for_education_rounded': Icons.cast_for_education_rounded, + 'cast_for_education_outlined': Icons.cast_for_education_outlined, + 'catching_pokemon': Icons.catching_pokemon, + 'catching_pokemon_sharp': Icons.catching_pokemon_sharp, + 'catching_pokemon_rounded': Icons.catching_pokemon_rounded, + 'catching_pokemon_outlined': Icons.catching_pokemon_outlined, + 'category': Icons.category, + 'category_sharp': Icons.category_sharp, + 'category_rounded': Icons.category_rounded, + 'category_outlined': Icons.category_outlined, + 'celebration': Icons.celebration, + 'celebration_sharp': Icons.celebration_sharp, + 'celebration_rounded': Icons.celebration_rounded, + 'celebration_outlined': Icons.celebration_outlined, + 'cell_wifi': Icons.cell_wifi, + 'cell_wifi_sharp': Icons.cell_wifi_sharp, + 'cell_wifi_rounded': Icons.cell_wifi_rounded, + 'cell_wifi_outlined': Icons.cell_wifi_outlined, + 'center_focus_strong': Icons.center_focus_strong, + 'center_focus_strong_sharp': Icons.center_focus_strong_sharp, + 'center_focus_strong_rounded': Icons.center_focus_strong_rounded, + 'center_focus_strong_outlined': Icons.center_focus_strong_outlined, + 'center_focus_weak': Icons.center_focus_weak, + 'center_focus_weak_sharp': Icons.center_focus_weak_sharp, + 'center_focus_weak_rounded': Icons.center_focus_weak_rounded, + 'center_focus_weak_outlined': Icons.center_focus_weak_outlined, + 'chair': Icons.chair, + 'chair_sharp': Icons.chair_sharp, + 'chair_rounded': Icons.chair_rounded, + 'chair_outlined': Icons.chair_outlined, + 'chair_alt': Icons.chair_alt, + 'chair_alt_sharp': Icons.chair_alt_sharp, + 'chair_alt_rounded': Icons.chair_alt_rounded, + 'chair_alt_outlined': Icons.chair_alt_outlined, + 'chalet': Icons.chalet, + 'chalet_sharp': Icons.chalet_sharp, + 'chalet_rounded': Icons.chalet_rounded, + 'chalet_outlined': Icons.chalet_outlined, + 'change_circle': Icons.change_circle, + 'change_circle_sharp': Icons.change_circle_sharp, + 'change_circle_rounded': Icons.change_circle_rounded, + 'change_circle_outlined': Icons.change_circle_outlined, + 'change_history': Icons.change_history, + 'change_history_sharp': Icons.change_history_sharp, + 'change_history_rounded': Icons.change_history_rounded, + 'change_history_outlined': Icons.change_history_outlined, + 'charging_station': Icons.charging_station, + 'charging_station_sharp': Icons.charging_station_sharp, + 'charging_station_rounded': Icons.charging_station_rounded, + 'charging_station_outlined': Icons.charging_station_outlined, + 'chat': Icons.chat, + 'chat_sharp': Icons.chat_sharp, + 'chat_rounded': Icons.chat_rounded, + 'chat_outlined': Icons.chat_outlined, + 'chat_bubble': Icons.chat_bubble, + 'chat_bubble_sharp': Icons.chat_bubble_sharp, + 'chat_bubble_rounded': Icons.chat_bubble_rounded, + 'chat_bubble_outlined': Icons.chat_bubble_outlined, + 'chat_bubble_outline': Icons.chat_bubble_outline, + 'chat_bubble_outline_sharp': Icons.chat_bubble_outline_sharp, + 'chat_bubble_outline_rounded': Icons.chat_bubble_outline_rounded, + 'chat_bubble_outline_outlined': Icons.chat_bubble_outline_outlined, + 'check': Icons.check, + 'check_sharp': Icons.check_sharp, + 'check_rounded': Icons.check_rounded, + 'check_outlined': Icons.check_outlined, + 'check_box': Icons.check_box, + 'check_box_sharp': Icons.check_box_sharp, + 'check_box_rounded': Icons.check_box_rounded, + 'check_box_outlined': Icons.check_box_outlined, + 'check_box_outline_blank': Icons.check_box_outline_blank, + 'check_box_outline_blank_sharp': Icons.check_box_outline_blank_sharp, + 'check_box_outline_blank_rounded': + Icons.check_box_outline_blank_rounded, + 'check_box_outline_blank_outlined': + Icons.check_box_outline_blank_outlined, + 'check_circle': Icons.check_circle, + 'check_circle_sharp': Icons.check_circle_sharp, + 'check_circle_rounded': Icons.check_circle_rounded, + 'check_circle_outlined': Icons.check_circle_outlined, + 'check_circle_outline': Icons.check_circle_outline, + 'check_circle_outline_sharp': Icons.check_circle_outline_sharp, + 'check_circle_outline_rounded': Icons.check_circle_outline_rounded, + 'check_circle_outline_outlined': Icons.check_circle_outline_outlined, + 'checklist': Icons.checklist, + 'checklist_sharp': Icons.checklist_sharp, + 'checklist_rounded': Icons.checklist_rounded, + 'checklist_outlined': Icons.checklist_outlined, + 'checklist_rtl': Icons.checklist_rtl, + 'checklist_rtl_sharp': Icons.checklist_rtl_sharp, + 'checklist_rtl_rounded': Icons.checklist_rtl_rounded, + 'checklist_rtl_outlined': Icons.checklist_rtl_outlined, + 'checkroom': Icons.checkroom, + 'checkroom_sharp': Icons.checkroom_sharp, + 'checkroom_rounded': Icons.checkroom_rounded, + 'checkroom_outlined': Icons.checkroom_outlined, + 'chevron_left': Icons.chevron_left, + 'chevron_left_sharp': Icons.chevron_left_sharp, + 'chevron_left_rounded': Icons.chevron_left_rounded, + 'chevron_left_outlined': Icons.chevron_left_outlined, + 'chevron_right': Icons.chevron_right, + 'chevron_right_sharp': Icons.chevron_right_sharp, + 'chevron_right_rounded': Icons.chevron_right_rounded, + 'chevron_right_outlined': Icons.chevron_right_outlined, + 'child_care': Icons.child_care, + 'child_care_sharp': Icons.child_care_sharp, + 'child_care_rounded': Icons.child_care_rounded, + 'child_care_outlined': Icons.child_care_outlined, + 'child_friendly': Icons.child_friendly, + 'child_friendly_sharp': Icons.child_friendly_sharp, + 'child_friendly_rounded': Icons.child_friendly_rounded, + 'child_friendly_outlined': Icons.child_friendly_outlined, + 'chrome_reader_mode': Icons.chrome_reader_mode, + 'chrome_reader_mode_sharp': Icons.chrome_reader_mode_sharp, + 'chrome_reader_mode_rounded': Icons.chrome_reader_mode_rounded, + 'chrome_reader_mode_outlined': Icons.chrome_reader_mode_outlined, + 'circle': Icons.circle, + 'circle_sharp': Icons.circle_sharp, + 'circle_rounded': Icons.circle_rounded, + 'circle_outlined': Icons.circle_outlined, + 'circle_notifications': Icons.circle_notifications, + 'circle_notifications_sharp': Icons.circle_notifications_sharp, + 'circle_notifications_rounded': Icons.circle_notifications_rounded, + 'circle_notifications_outlined': Icons.circle_notifications_outlined, + 'class_': Icons.class_, + 'class__sharp': Icons.class__sharp, + 'class__rounded': Icons.class__rounded, + 'class__outlined': Icons.class__outlined, + 'clean_hands': Icons.clean_hands, + 'clean_hands_sharp': Icons.clean_hands_sharp, + 'clean_hands_rounded': Icons.clean_hands_rounded, + 'clean_hands_outlined': Icons.clean_hands_outlined, + 'cleaning_services': Icons.cleaning_services, + 'cleaning_services_sharp': Icons.cleaning_services_sharp, + 'cleaning_services_rounded': Icons.cleaning_services_rounded, + 'cleaning_services_outlined': Icons.cleaning_services_outlined, + 'clear': Icons.clear, + 'clear_sharp': Icons.clear_sharp, + 'clear_rounded': Icons.clear_rounded, + 'clear_outlined': Icons.clear_outlined, + 'clear_all': Icons.clear_all, + 'clear_all_sharp': Icons.clear_all_sharp, + 'clear_all_rounded': Icons.clear_all_rounded, + 'clear_all_outlined': Icons.clear_all_outlined, + 'close': Icons.close, + 'close_sharp': Icons.close_sharp, + 'close_rounded': Icons.close_rounded, + 'close_outlined': Icons.close_outlined, + 'close_fullscreen': Icons.close_fullscreen, + 'close_fullscreen_sharp': Icons.close_fullscreen_sharp, + 'close_fullscreen_rounded': Icons.close_fullscreen_rounded, + 'close_fullscreen_outlined': Icons.close_fullscreen_outlined, + 'closed_caption': Icons.closed_caption, + 'closed_caption_sharp': Icons.closed_caption_sharp, + 'closed_caption_rounded': Icons.closed_caption_rounded, + 'closed_caption_outlined': Icons.closed_caption_outlined, + 'closed_caption_disabled': Icons.closed_caption_disabled, + 'closed_caption_disabled_sharp': Icons.closed_caption_disabled_sharp, + 'closed_caption_disabled_rounded': + Icons.closed_caption_disabled_rounded, + 'closed_caption_disabled_outlined': + Icons.closed_caption_disabled_outlined, + 'closed_caption_off': Icons.closed_caption_off, + 'closed_caption_off_sharp': Icons.closed_caption_off_sharp, + 'closed_caption_off_rounded': Icons.closed_caption_off_rounded, + 'closed_caption_off_outlined': Icons.closed_caption_off_outlined, + 'cloud': Icons.cloud, + 'cloud_sharp': Icons.cloud_sharp, + 'cloud_rounded': Icons.cloud_rounded, + 'cloud_outlined': Icons.cloud_outlined, + 'cloud_circle': Icons.cloud_circle, + 'cloud_circle_sharp': Icons.cloud_circle_sharp, + 'cloud_circle_rounded': Icons.cloud_circle_rounded, + 'cloud_circle_outlined': Icons.cloud_circle_outlined, + 'cloud_done': Icons.cloud_done, + 'cloud_done_sharp': Icons.cloud_done_sharp, + 'cloud_done_rounded': Icons.cloud_done_rounded, + 'cloud_done_outlined': Icons.cloud_done_outlined, + 'cloud_download': Icons.cloud_download, + 'cloud_download_sharp': Icons.cloud_download_sharp, + 'cloud_download_rounded': Icons.cloud_download_rounded, + 'cloud_download_outlined': Icons.cloud_download_outlined, + 'cloud_off': Icons.cloud_off, + 'cloud_off_sharp': Icons.cloud_off_sharp, + 'cloud_off_rounded': Icons.cloud_off_rounded, + 'cloud_off_outlined': Icons.cloud_off_outlined, + 'cloud_queue': Icons.cloud_queue, + 'cloud_queue_sharp': Icons.cloud_queue_sharp, + 'cloud_queue_rounded': Icons.cloud_queue_rounded, + 'cloud_queue_outlined': Icons.cloud_queue_outlined, + 'cloud_upload': Icons.cloud_upload, + 'cloud_upload_sharp': Icons.cloud_upload_sharp, + 'cloud_upload_rounded': Icons.cloud_upload_rounded, + 'cloud_upload_outlined': Icons.cloud_upload_outlined, + 'code': Icons.code, + 'code_sharp': Icons.code_sharp, + 'code_rounded': Icons.code_rounded, + 'code_outlined': Icons.code_outlined, + 'code_off': Icons.code_off, + 'code_off_sharp': Icons.code_off_sharp, + 'code_off_rounded': Icons.code_off_rounded, + 'code_off_outlined': Icons.code_off_outlined, + 'coffee': Icons.coffee, + 'coffee_sharp': Icons.coffee_sharp, + 'coffee_rounded': Icons.coffee_rounded, + 'coffee_outlined': Icons.coffee_outlined, + 'coffee_maker': Icons.coffee_maker, + 'coffee_maker_sharp': Icons.coffee_maker_sharp, + 'coffee_maker_rounded': Icons.coffee_maker_rounded, + 'coffee_maker_outlined': Icons.coffee_maker_outlined, + 'collections': Icons.collections, + 'collections_sharp': Icons.collections_sharp, + 'collections_rounded': Icons.collections_rounded, + 'collections_outlined': Icons.collections_outlined, + 'collections_bookmark': Icons.collections_bookmark, + 'collections_bookmark_sharp': Icons.collections_bookmark_sharp, + 'collections_bookmark_rounded': Icons.collections_bookmark_rounded, + 'collections_bookmark_outlined': Icons.collections_bookmark_outlined, + 'color_lens': Icons.color_lens, + 'color_lens_sharp': Icons.color_lens_sharp, + 'color_lens_rounded': Icons.color_lens_rounded, + 'color_lens_outlined': Icons.color_lens_outlined, + 'colorize': Icons.colorize, + 'colorize_sharp': Icons.colorize_sharp, + 'colorize_rounded': Icons.colorize_rounded, + 'colorize_outlined': Icons.colorize_outlined, + 'comment': Icons.comment, + 'comment_sharp': Icons.comment_sharp, + 'comment_rounded': Icons.comment_rounded, + 'comment_outlined': Icons.comment_outlined, + 'comment_bank': Icons.comment_bank, + 'comment_bank_sharp': Icons.comment_bank_sharp, + 'comment_bank_rounded': Icons.comment_bank_rounded, + 'comment_bank_outlined': Icons.comment_bank_outlined, + 'commute': Icons.commute, + 'commute_sharp': Icons.commute_sharp, + 'commute_rounded': Icons.commute_rounded, + 'commute_outlined': Icons.commute_outlined, + 'compare': Icons.compare, + 'compare_sharp': Icons.compare_sharp, + 'compare_rounded': Icons.compare_rounded, + 'compare_outlined': Icons.compare_outlined, + 'compare_arrows': Icons.compare_arrows, + 'compare_arrows_sharp': Icons.compare_arrows_sharp, + 'compare_arrows_rounded': Icons.compare_arrows_rounded, + 'compare_arrows_outlined': Icons.compare_arrows_outlined, + 'compass_calibration': Icons.compass_calibration, + 'compass_calibration_sharp': Icons.compass_calibration_sharp, + 'compass_calibration_rounded': Icons.compass_calibration_rounded, + 'compass_calibration_outlined': Icons.compass_calibration_outlined, + 'compress': Icons.compress, + 'compress_sharp': Icons.compress_sharp, + 'compress_rounded': Icons.compress_rounded, + 'compress_outlined': Icons.compress_outlined, + 'computer': Icons.computer, + 'computer_sharp': Icons.computer_sharp, + 'computer_rounded': Icons.computer_rounded, + 'computer_outlined': Icons.computer_outlined, + 'confirmation_num': Icons.confirmation_num, + 'confirmation_num_sharp': Icons.confirmation_num_sharp, + 'confirmation_num_rounded': Icons.confirmation_num_rounded, + 'confirmation_num_outlined': Icons.confirmation_num_outlined, + 'confirmation_number': Icons.confirmation_number, + 'confirmation_number_sharp': Icons.confirmation_number_sharp, + 'confirmation_number_rounded': Icons.confirmation_number_rounded, + 'confirmation_number_outlined': Icons.confirmation_number_outlined, + 'connect_without_contact': Icons.connect_without_contact, + 'connect_without_contact_sharp': Icons.connect_without_contact_sharp, + 'connect_without_contact_rounded': + Icons.connect_without_contact_rounded, + 'connect_without_contact_outlined': + Icons.connect_without_contact_outlined, + 'connected_tv': Icons.connected_tv, + 'connected_tv_sharp': Icons.connected_tv_sharp, + 'connected_tv_rounded': Icons.connected_tv_rounded, + 'connected_tv_outlined': Icons.connected_tv_outlined, + 'construction': Icons.construction, + 'construction_sharp': Icons.construction_sharp, + 'construction_rounded': Icons.construction_rounded, + 'construction_outlined': Icons.construction_outlined, + 'contact_mail': Icons.contact_mail, + 'contact_mail_sharp': Icons.contact_mail_sharp, + 'contact_mail_rounded': Icons.contact_mail_rounded, + 'contact_mail_outlined': Icons.contact_mail_outlined, + 'contact_page': Icons.contact_page, + 'contact_page_sharp': Icons.contact_page_sharp, + 'contact_page_rounded': Icons.contact_page_rounded, + 'contact_page_outlined': Icons.contact_page_outlined, + 'contact_phone': Icons.contact_phone, + 'contact_phone_sharp': Icons.contact_phone_sharp, + 'contact_phone_rounded': Icons.contact_phone_rounded, + 'contact_phone_outlined': Icons.contact_phone_outlined, + 'contact_support': Icons.contact_support, + 'contact_support_sharp': Icons.contact_support_sharp, + 'contact_support_rounded': Icons.contact_support_rounded, + 'contact_support_outlined': Icons.contact_support_outlined, + 'contactless': Icons.contactless, + 'contactless_sharp': Icons.contactless_sharp, + 'contactless_rounded': Icons.contactless_rounded, + 'contactless_outlined': Icons.contactless_outlined, + 'contacts': Icons.contacts, + 'contacts_sharp': Icons.contacts_sharp, + 'contacts_rounded': Icons.contacts_rounded, + 'contacts_outlined': Icons.contacts_outlined, + 'content_copy': Icons.content_copy, + 'content_copy_sharp': Icons.content_copy_sharp, + 'content_copy_rounded': Icons.content_copy_rounded, + 'content_copy_outlined': Icons.content_copy_outlined, + 'content_cut': Icons.content_cut, + 'content_cut_sharp': Icons.content_cut_sharp, + 'content_cut_rounded': Icons.content_cut_rounded, + 'content_cut_outlined': Icons.content_cut_outlined, + 'content_paste': Icons.content_paste, + 'content_paste_sharp': Icons.content_paste_sharp, + 'content_paste_rounded': Icons.content_paste_rounded, + 'content_paste_outlined': Icons.content_paste_outlined, + 'content_paste_off': Icons.content_paste_off, + 'content_paste_off_sharp': Icons.content_paste_off_sharp, + 'content_paste_off_rounded': Icons.content_paste_off_rounded, + 'content_paste_off_outlined': Icons.content_paste_off_outlined, + 'control_camera': Icons.control_camera, + 'control_camera_sharp': Icons.control_camera_sharp, + 'control_camera_rounded': Icons.control_camera_rounded, + 'control_camera_outlined': Icons.control_camera_outlined, + 'control_point': Icons.control_point, + 'control_point_sharp': Icons.control_point_sharp, + 'control_point_rounded': Icons.control_point_rounded, + 'control_point_outlined': Icons.control_point_outlined, + 'control_point_duplicate': Icons.control_point_duplicate, + 'control_point_duplicate_sharp': Icons.control_point_duplicate_sharp, + 'control_point_duplicate_rounded': + Icons.control_point_duplicate_rounded, + 'control_point_duplicate_outlined': + Icons.control_point_duplicate_outlined, + 'copy': Icons.copy, + 'copy_sharp': Icons.copy_sharp, + 'copy_rounded': Icons.copy_rounded, + 'copy_outlined': Icons.copy_outlined, + 'copy_all': Icons.copy_all, + 'copy_all_sharp': Icons.copy_all_sharp, + 'copy_all_rounded': Icons.copy_all_rounded, + 'copy_all_outlined': Icons.copy_all_outlined, + 'copyright': Icons.copyright, + 'copyright_sharp': Icons.copyright_sharp, + 'copyright_rounded': Icons.copyright_rounded, + 'copyright_outlined': Icons.copyright_outlined, + 'coronavirus': Icons.coronavirus, + 'coronavirus_sharp': Icons.coronavirus_sharp, + 'coronavirus_rounded': Icons.coronavirus_rounded, + 'coronavirus_outlined': Icons.coronavirus_outlined, + 'corporate_fare': Icons.corporate_fare, + 'corporate_fare_sharp': Icons.corporate_fare_sharp, + 'corporate_fare_rounded': Icons.corporate_fare_rounded, + 'corporate_fare_outlined': Icons.corporate_fare_outlined, + 'cottage': Icons.cottage, + 'cottage_sharp': Icons.cottage_sharp, + 'cottage_rounded': Icons.cottage_rounded, + 'cottage_outlined': Icons.cottage_outlined, + 'countertops': Icons.countertops, + 'countertops_sharp': Icons.countertops_sharp, + 'countertops_rounded': Icons.countertops_rounded, + 'countertops_outlined': Icons.countertops_outlined, + 'create': Icons.create, + 'create_sharp': Icons.create_sharp, + 'create_rounded': Icons.create_rounded, + 'create_outlined': Icons.create_outlined, + 'create_new_folder': Icons.create_new_folder, + 'create_new_folder_sharp': Icons.create_new_folder_sharp, + 'create_new_folder_rounded': Icons.create_new_folder_rounded, + 'create_new_folder_outlined': Icons.create_new_folder_outlined, + 'credit_card': Icons.credit_card, + 'credit_card_sharp': Icons.credit_card_sharp, + 'credit_card_rounded': Icons.credit_card_rounded, + 'credit_card_outlined': Icons.credit_card_outlined, + 'credit_card_off': Icons.credit_card_off, + 'credit_card_off_sharp': Icons.credit_card_off_sharp, + 'credit_card_off_rounded': Icons.credit_card_off_rounded, + 'credit_card_off_outlined': Icons.credit_card_off_outlined, + 'credit_score': Icons.credit_score, + 'credit_score_sharp': Icons.credit_score_sharp, + 'credit_score_rounded': Icons.credit_score_rounded, + 'credit_score_outlined': Icons.credit_score_outlined, + 'crib': Icons.crib, + 'crib_sharp': Icons.crib_sharp, + 'crib_rounded': Icons.crib_rounded, + 'crib_outlined': Icons.crib_outlined, + 'crop': Icons.crop, + 'crop_sharp': Icons.crop_sharp, + 'crop_rounded': Icons.crop_rounded, + 'crop_outlined': Icons.crop_outlined, + 'crop_16_9': Icons.crop_16_9, + 'crop_16_9_sharp': Icons.crop_16_9_sharp, + 'crop_16_9_rounded': Icons.crop_16_9_rounded, + 'crop_16_9_outlined': Icons.crop_16_9_outlined, + 'crop_3_2': Icons.crop_3_2, + 'crop_3_2_sharp': Icons.crop_3_2_sharp, + 'crop_3_2_rounded': Icons.crop_3_2_rounded, + 'crop_3_2_outlined': Icons.crop_3_2_outlined, + 'crop_5_4': Icons.crop_5_4, + 'crop_5_4_sharp': Icons.crop_5_4_sharp, + 'crop_5_4_rounded': Icons.crop_5_4_rounded, + 'crop_5_4_outlined': Icons.crop_5_4_outlined, + 'crop_7_5': Icons.crop_7_5, + 'crop_7_5_sharp': Icons.crop_7_5_sharp, + 'crop_7_5_rounded': Icons.crop_7_5_rounded, + 'crop_7_5_outlined': Icons.crop_7_5_outlined, + 'crop_din': Icons.crop_din, + 'crop_din_sharp': Icons.crop_din_sharp, + 'crop_din_rounded': Icons.crop_din_rounded, + 'crop_din_outlined': Icons.crop_din_outlined, + 'crop_free': Icons.crop_free, + 'crop_free_sharp': Icons.crop_free_sharp, + 'crop_free_rounded': Icons.crop_free_rounded, + 'crop_free_outlined': Icons.crop_free_outlined, + 'crop_landscape': Icons.crop_landscape, + 'crop_landscape_sharp': Icons.crop_landscape_sharp, + 'crop_landscape_rounded': Icons.crop_landscape_rounded, + 'crop_landscape_outlined': Icons.crop_landscape_outlined, + 'crop_original': Icons.crop_original, + 'crop_original_sharp': Icons.crop_original_sharp, + 'crop_original_rounded': Icons.crop_original_rounded, + 'crop_original_outlined': Icons.crop_original_outlined, + 'crop_portrait': Icons.crop_portrait, + 'crop_portrait_sharp': Icons.crop_portrait_sharp, + 'crop_portrait_rounded': Icons.crop_portrait_rounded, + 'crop_portrait_outlined': Icons.crop_portrait_outlined, + 'crop_rotate': Icons.crop_rotate, + 'crop_rotate_sharp': Icons.crop_rotate_sharp, + 'crop_rotate_rounded': Icons.crop_rotate_rounded, + 'crop_rotate_outlined': Icons.crop_rotate_outlined, + 'crop_square': Icons.crop_square, + 'crop_square_sharp': Icons.crop_square_sharp, + 'crop_square_rounded': Icons.crop_square_rounded, + 'crop_square_outlined': Icons.crop_square_outlined, + 'cut': Icons.cut, + 'cut_sharp': Icons.cut_sharp, + 'cut_rounded': Icons.cut_rounded, + 'cut_outlined': Icons.cut_outlined, + 'dangerous': Icons.dangerous, + 'dangerous_sharp': Icons.dangerous_sharp, + 'dangerous_rounded': Icons.dangerous_rounded, + 'dangerous_outlined': Icons.dangerous_outlined, + 'dark_mode': Icons.dark_mode, + 'dark_mode_sharp': Icons.dark_mode_sharp, + 'dark_mode_rounded': Icons.dark_mode_rounded, + 'dark_mode_outlined': Icons.dark_mode_outlined, + 'dashboard': Icons.dashboard, + 'dashboard_sharp': Icons.dashboard_sharp, + 'dashboard_rounded': Icons.dashboard_rounded, + 'dashboard_outlined': Icons.dashboard_outlined, + 'dashboard_customize': Icons.dashboard_customize, + 'dashboard_customize_sharp': Icons.dashboard_customize_sharp, + 'dashboard_customize_rounded': Icons.dashboard_customize_rounded, + 'dashboard_customize_outlined': Icons.dashboard_customize_outlined, + 'data_saver_off': Icons.data_saver_off, + 'data_saver_off_sharp': Icons.data_saver_off_sharp, + 'data_saver_off_rounded': Icons.data_saver_off_rounded, + 'data_saver_off_outlined': Icons.data_saver_off_outlined, + 'data_saver_on': Icons.data_saver_on, + 'data_saver_on_sharp': Icons.data_saver_on_sharp, + 'data_saver_on_rounded': Icons.data_saver_on_rounded, + 'data_saver_on_outlined': Icons.data_saver_on_outlined, + 'data_usage': Icons.data_usage, + 'data_usage_sharp': Icons.data_usage_sharp, + 'data_usage_rounded': Icons.data_usage_rounded, + 'data_usage_outlined': Icons.data_usage_outlined, + 'date_range': Icons.date_range, + 'date_range_sharp': Icons.date_range_sharp, + 'date_range_rounded': Icons.date_range_rounded, + 'date_range_outlined': Icons.date_range_outlined, + 'deck': Icons.deck, + 'deck_sharp': Icons.deck_sharp, + 'deck_rounded': Icons.deck_rounded, + 'deck_outlined': Icons.deck_outlined, + 'dehaze': Icons.dehaze, + 'dehaze_sharp': Icons.dehaze_sharp, + 'dehaze_rounded': Icons.dehaze_rounded, + 'dehaze_outlined': Icons.dehaze_outlined, + 'delete': Icons.delete, + 'delete_sharp': Icons.delete_sharp, + 'delete_rounded': Icons.delete_rounded, + 'delete_outlined': Icons.delete_outlined, + 'delete_forever': Icons.delete_forever, + 'delete_forever_sharp': Icons.delete_forever_sharp, + 'delete_forever_rounded': Icons.delete_forever_rounded, + 'delete_forever_outlined': Icons.delete_forever_outlined, + 'delete_outline': Icons.delete_outline, + 'delete_outline_sharp': Icons.delete_outline_sharp, + 'delete_outline_rounded': Icons.delete_outline_rounded, + 'delete_outline_outlined': Icons.delete_outline_outlined, + 'delete_sweep': Icons.delete_sweep, + 'delete_sweep_sharp': Icons.delete_sweep_sharp, + 'delete_sweep_rounded': Icons.delete_sweep_rounded, + 'delete_sweep_outlined': Icons.delete_sweep_outlined, + 'delivery_dining': Icons.delivery_dining, + 'delivery_dining_sharp': Icons.delivery_dining_sharp, + 'delivery_dining_rounded': Icons.delivery_dining_rounded, + 'delivery_dining_outlined': Icons.delivery_dining_outlined, + 'departure_board': Icons.departure_board, + 'departure_board_sharp': Icons.departure_board_sharp, + 'departure_board_rounded': Icons.departure_board_rounded, + 'departure_board_outlined': Icons.departure_board_outlined, + 'description': Icons.description, + 'description_sharp': Icons.description_sharp, + 'description_rounded': Icons.description_rounded, + 'description_outlined': Icons.description_outlined, + 'design_services': Icons.design_services, + 'design_services_sharp': Icons.design_services_sharp, + 'design_services_rounded': Icons.design_services_rounded, + 'design_services_outlined': Icons.design_services_outlined, + 'desktop_access_disabled': Icons.desktop_access_disabled, + 'desktop_access_disabled_sharp': Icons.desktop_access_disabled_sharp, + 'desktop_access_disabled_rounded': + Icons.desktop_access_disabled_rounded, + 'desktop_access_disabled_outlined': + Icons.desktop_access_disabled_outlined, + 'desktop_mac': Icons.desktop_mac, + 'desktop_mac_sharp': Icons.desktop_mac_sharp, + 'desktop_mac_rounded': Icons.desktop_mac_rounded, + 'desktop_mac_outlined': Icons.desktop_mac_outlined, + 'desktop_windows': Icons.desktop_windows, + 'desktop_windows_sharp': Icons.desktop_windows_sharp, + 'desktop_windows_rounded': Icons.desktop_windows_rounded, + 'desktop_windows_outlined': Icons.desktop_windows_outlined, + 'details': Icons.details, + 'details_sharp': Icons.details_sharp, + 'details_rounded': Icons.details_rounded, + 'details_outlined': Icons.details_outlined, + 'developer_board': Icons.developer_board, + 'developer_board_sharp': Icons.developer_board_sharp, + 'developer_board_rounded': Icons.developer_board_rounded, + 'developer_board_outlined': Icons.developer_board_outlined, + 'developer_board_off': Icons.developer_board_off, + 'developer_board_off_sharp': Icons.developer_board_off_sharp, + 'developer_board_off_rounded': Icons.developer_board_off_rounded, + 'developer_board_off_outlined': Icons.developer_board_off_outlined, + 'developer_mode': Icons.developer_mode, + 'developer_mode_sharp': Icons.developer_mode_sharp, + 'developer_mode_rounded': Icons.developer_mode_rounded, + 'developer_mode_outlined': Icons.developer_mode_outlined, + 'device_hub': Icons.device_hub, + 'device_hub_sharp': Icons.device_hub_sharp, + 'device_hub_rounded': Icons.device_hub_rounded, + 'device_hub_outlined': Icons.device_hub_outlined, + 'device_thermostat': Icons.device_thermostat, + 'device_thermostat_sharp': Icons.device_thermostat_sharp, + 'device_thermostat_rounded': Icons.device_thermostat_rounded, + 'device_thermostat_outlined': Icons.device_thermostat_outlined, + 'device_unknown': Icons.device_unknown, + 'device_unknown_sharp': Icons.device_unknown_sharp, + 'device_unknown_rounded': Icons.device_unknown_rounded, + 'device_unknown_outlined': Icons.device_unknown_outlined, + 'devices': Icons.devices, + 'devices_sharp': Icons.devices_sharp, + 'devices_rounded': Icons.devices_rounded, + 'devices_outlined': Icons.devices_outlined, + 'devices_other': Icons.devices_other, + 'devices_other_sharp': Icons.devices_other_sharp, + 'devices_other_rounded': Icons.devices_other_rounded, + 'devices_other_outlined': Icons.devices_other_outlined, + 'dialer_sip': Icons.dialer_sip, + 'dialer_sip_sharp': Icons.dialer_sip_sharp, + 'dialer_sip_rounded': Icons.dialer_sip_rounded, + 'dialer_sip_outlined': Icons.dialer_sip_outlined, + 'dialpad': Icons.dialpad, + 'dialpad_sharp': Icons.dialpad_sharp, + 'dialpad_rounded': Icons.dialpad_rounded, + 'dialpad_outlined': Icons.dialpad_outlined, + 'dining': Icons.dining, + 'dining_sharp': Icons.dining_sharp, + 'dining_rounded': Icons.dining_rounded, + 'dining_outlined': Icons.dining_outlined, + 'dinner_dining': Icons.dinner_dining, + 'dinner_dining_sharp': Icons.dinner_dining_sharp, + 'dinner_dining_rounded': Icons.dinner_dining_rounded, + 'dinner_dining_outlined': Icons.dinner_dining_outlined, + 'directions': Icons.directions, + 'directions_sharp': Icons.directions_sharp, + 'directions_rounded': Icons.directions_rounded, + 'directions_outlined': Icons.directions_outlined, + 'directions_bike': Icons.directions_bike, + 'directions_bike_sharp': Icons.directions_bike_sharp, + 'directions_bike_rounded': Icons.directions_bike_rounded, + 'directions_bike_outlined': Icons.directions_bike_outlined, + 'directions_boat': Icons.directions_boat, + 'directions_boat_sharp': Icons.directions_boat_sharp, + 'directions_boat_rounded': Icons.directions_boat_rounded, + 'directions_boat_outlined': Icons.directions_boat_outlined, + 'directions_boat_filled': Icons.directions_boat_filled, + 'directions_boat_filled_sharp': Icons.directions_boat_filled_sharp, + 'directions_boat_filled_rounded': Icons.directions_boat_filled_rounded, + 'directions_boat_filled_outlined': + Icons.directions_boat_filled_outlined, + 'directions_bus': Icons.directions_bus, + 'directions_bus_sharp': Icons.directions_bus_sharp, + 'directions_bus_rounded': Icons.directions_bus_rounded, + 'directions_bus_outlined': Icons.directions_bus_outlined, + 'directions_bus_filled': Icons.directions_bus_filled, + 'directions_bus_filled_sharp': Icons.directions_bus_filled_sharp, + 'directions_bus_filled_rounded': Icons.directions_bus_filled_rounded, + 'directions_bus_filled_outlined': Icons.directions_bus_filled_outlined, + 'directions_car': Icons.directions_car, + 'directions_car_sharp': Icons.directions_car_sharp, + 'directions_car_rounded': Icons.directions_car_rounded, + 'directions_car_outlined': Icons.directions_car_outlined, + 'directions_car_filled': Icons.directions_car_filled, + 'directions_car_filled_sharp': Icons.directions_car_filled_sharp, + 'directions_car_filled_rounded': Icons.directions_car_filled_rounded, + 'directions_car_filled_outlined': Icons.directions_car_filled_outlined, + 'directions_ferry': Icons.directions_ferry, + 'directions_ferry_sharp': Icons.directions_ferry_sharp, + 'directions_ferry_rounded': Icons.directions_ferry_rounded, + 'directions_ferry_outlined': Icons.directions_ferry_outlined, + 'directions_off': Icons.directions_off, + 'directions_off_sharp': Icons.directions_off_sharp, + 'directions_off_rounded': Icons.directions_off_rounded, + 'directions_off_outlined': Icons.directions_off_outlined, + 'directions_railway': Icons.directions_railway, + 'directions_railway_sharp': Icons.directions_railway_sharp, + 'directions_railway_rounded': Icons.directions_railway_rounded, + 'directions_railway_outlined': Icons.directions_railway_outlined, + 'directions_railway_filled': Icons.directions_railway_filled, + 'directions_railway_filled_sharp': + Icons.directions_railway_filled_sharp, + 'directions_railway_filled_rounded': + Icons.directions_railway_filled_rounded, + 'directions_railway_filled_outlined': + Icons.directions_railway_filled_outlined, + 'directions_run': Icons.directions_run, + 'directions_run_sharp': Icons.directions_run_sharp, + 'directions_run_rounded': Icons.directions_run_rounded, + 'directions_run_outlined': Icons.directions_run_outlined, + 'directions_subway': Icons.directions_subway, + 'directions_subway_sharp': Icons.directions_subway_sharp, + 'directions_subway_rounded': Icons.directions_subway_rounded, + 'directions_subway_outlined': Icons.directions_subway_outlined, + 'directions_subway_filled': Icons.directions_subway_filled, + 'directions_subway_filled_sharp': Icons.directions_subway_filled_sharp, + 'directions_subway_filled_rounded': + Icons.directions_subway_filled_rounded, + 'directions_subway_filled_outlined': + Icons.directions_subway_filled_outlined, + 'directions_train': Icons.directions_train, + 'directions_train_sharp': Icons.directions_train_sharp, + 'directions_train_rounded': Icons.directions_train_rounded, + 'directions_train_outlined': Icons.directions_train_outlined, + 'directions_transit': Icons.directions_transit, + 'directions_transit_sharp': Icons.directions_transit_sharp, + 'directions_transit_rounded': Icons.directions_transit_rounded, + 'directions_transit_outlined': Icons.directions_transit_outlined, + 'directions_transit_filled': Icons.directions_transit_filled, + 'directions_transit_filled_sharp': + Icons.directions_transit_filled_sharp, + 'directions_transit_filled_rounded': + Icons.directions_transit_filled_rounded, + 'directions_transit_filled_outlined': + Icons.directions_transit_filled_outlined, + 'directions_walk': Icons.directions_walk, + 'directions_walk_sharp': Icons.directions_walk_sharp, + 'directions_walk_rounded': Icons.directions_walk_rounded, + 'directions_walk_outlined': Icons.directions_walk_outlined, + 'dirty_lens': Icons.dirty_lens, + 'dirty_lens_sharp': Icons.dirty_lens_sharp, + 'dirty_lens_rounded': Icons.dirty_lens_rounded, + 'dirty_lens_outlined': Icons.dirty_lens_outlined, + 'disabled_by_default': Icons.disabled_by_default, + 'disabled_by_default_sharp': Icons.disabled_by_default_sharp, + 'disabled_by_default_rounded': Icons.disabled_by_default_rounded, + 'disabled_by_default_outlined': Icons.disabled_by_default_outlined, + 'disc_full': Icons.disc_full, + 'disc_full_sharp': Icons.disc_full_sharp, + 'disc_full_rounded': Icons.disc_full_rounded, + 'disc_full_outlined': Icons.disc_full_outlined, + 'dnd_forwardslash': Icons.dnd_forwardslash, + 'dnd_forwardslash_sharp': Icons.dnd_forwardslash_sharp, + 'dnd_forwardslash_rounded': Icons.dnd_forwardslash_rounded, + 'dnd_forwardslash_outlined': Icons.dnd_forwardslash_outlined, + 'dns': Icons.dns, + 'dns_sharp': Icons.dns_sharp, + 'dns_rounded': Icons.dns_rounded, + 'dns_outlined': Icons.dns_outlined, + 'do_disturb': Icons.do_disturb, + 'do_disturb_sharp': Icons.do_disturb_sharp, + 'do_disturb_rounded': Icons.do_disturb_rounded, + 'do_disturb_outlined': Icons.do_disturb_outlined, + 'do_disturb_alt': Icons.do_disturb_alt, + 'do_disturb_alt_sharp': Icons.do_disturb_alt_sharp, + 'do_disturb_alt_rounded': Icons.do_disturb_alt_rounded, + 'do_disturb_alt_outlined': Icons.do_disturb_alt_outlined, + 'do_disturb_off': Icons.do_disturb_off, + 'do_disturb_off_sharp': Icons.do_disturb_off_sharp, + 'do_disturb_off_rounded': Icons.do_disturb_off_rounded, + 'do_disturb_off_outlined': Icons.do_disturb_off_outlined, + 'do_disturb_on': Icons.do_disturb_on, + 'do_disturb_on_sharp': Icons.do_disturb_on_sharp, + 'do_disturb_on_rounded': Icons.do_disturb_on_rounded, + 'do_disturb_on_outlined': Icons.do_disturb_on_outlined, + 'do_not_disturb': Icons.do_not_disturb, + 'do_not_disturb_sharp': Icons.do_not_disturb_sharp, + 'do_not_disturb_rounded': Icons.do_not_disturb_rounded, + 'do_not_disturb_outlined': Icons.do_not_disturb_outlined, + 'do_not_disturb_alt': Icons.do_not_disturb_alt, + 'do_not_disturb_alt_sharp': Icons.do_not_disturb_alt_sharp, + 'do_not_disturb_alt_rounded': Icons.do_not_disturb_alt_rounded, + 'do_not_disturb_alt_outlined': Icons.do_not_disturb_alt_outlined, + 'do_not_disturb_off': Icons.do_not_disturb_off, + 'do_not_disturb_off_sharp': Icons.do_not_disturb_off_sharp, + 'do_not_disturb_off_rounded': Icons.do_not_disturb_off_rounded, + 'do_not_disturb_off_outlined': Icons.do_not_disturb_off_outlined, + 'do_not_disturb_on': Icons.do_not_disturb_on, + 'do_not_disturb_on_sharp': Icons.do_not_disturb_on_sharp, + 'do_not_disturb_on_rounded': Icons.do_not_disturb_on_rounded, + 'do_not_disturb_on_outlined': Icons.do_not_disturb_on_outlined, + 'do_not_disturb_on_total_silence': + Icons.do_not_disturb_on_total_silence, + 'do_not_disturb_on_total_silence_sharp': + Icons.do_not_disturb_on_total_silence_sharp, + 'do_not_disturb_on_total_silence_rounded': + Icons.do_not_disturb_on_total_silence_rounded, + 'do_not_disturb_on_total_silence_outlined': + Icons.do_not_disturb_on_total_silence_outlined, + 'do_not_step': Icons.do_not_step, + 'do_not_step_sharp': Icons.do_not_step_sharp, + 'do_not_step_rounded': Icons.do_not_step_rounded, + 'do_not_step_outlined': Icons.do_not_step_outlined, + 'do_not_touch': Icons.do_not_touch, + 'do_not_touch_sharp': Icons.do_not_touch_sharp, + 'do_not_touch_rounded': Icons.do_not_touch_rounded, + 'do_not_touch_outlined': Icons.do_not_touch_outlined, + 'dock': Icons.dock, + 'dock_sharp': Icons.dock_sharp, + 'dock_rounded': Icons.dock_rounded, + 'dock_outlined': Icons.dock_outlined, + 'document_scanner': Icons.document_scanner, + 'document_scanner_sharp': Icons.document_scanner_sharp, + 'document_scanner_rounded': Icons.document_scanner_rounded, + 'document_scanner_outlined': Icons.document_scanner_outlined, + 'domain': Icons.domain, + 'domain_sharp': Icons.domain_sharp, + 'domain_rounded': Icons.domain_rounded, + 'domain_outlined': Icons.domain_outlined, + 'domain_disabled': Icons.domain_disabled, + 'domain_disabled_sharp': Icons.domain_disabled_sharp, + 'domain_disabled_rounded': Icons.domain_disabled_rounded, + 'domain_disabled_outlined': Icons.domain_disabled_outlined, + 'domain_verification': Icons.domain_verification, + 'domain_verification_sharp': Icons.domain_verification_sharp, + 'domain_verification_rounded': Icons.domain_verification_rounded, + 'domain_verification_outlined': Icons.domain_verification_outlined, + 'done': Icons.done, + 'done_sharp': Icons.done_sharp, + 'done_rounded': Icons.done_rounded, + 'done_outlined': Icons.done_outlined, + 'done_all': Icons.done_all, + 'done_all_sharp': Icons.done_all_sharp, + 'done_all_rounded': Icons.done_all_rounded, + 'done_all_outlined': Icons.done_all_outlined, + 'done_outline': Icons.done_outline, + 'done_outline_sharp': Icons.done_outline_sharp, + 'done_outline_rounded': Icons.done_outline_rounded, + 'done_outline_outlined': Icons.done_outline_outlined, + 'donut_large': Icons.donut_large, + 'donut_large_sharp': Icons.donut_large_sharp, + 'donut_large_rounded': Icons.donut_large_rounded, + 'donut_large_outlined': Icons.donut_large_outlined, + 'donut_small': Icons.donut_small, + 'donut_small_sharp': Icons.donut_small_sharp, + 'donut_small_rounded': Icons.donut_small_rounded, + 'donut_small_outlined': Icons.donut_small_outlined, + 'door_back_door': Icons.door_back_door, + 'door_back_door_sharp': Icons.door_back_door_sharp, + 'door_back_door_rounded': Icons.door_back_door_rounded, + 'door_back_door_outlined': Icons.door_back_door_outlined, + 'door_front_door': Icons.door_front_door, + 'door_front_door_sharp': Icons.door_front_door_sharp, + 'door_front_door_rounded': Icons.door_front_door_rounded, + 'door_front_door_outlined': Icons.door_front_door_outlined, + 'door_sliding': Icons.door_sliding, + 'door_sliding_sharp': Icons.door_sliding_sharp, + 'door_sliding_rounded': Icons.door_sliding_rounded, + 'door_sliding_outlined': Icons.door_sliding_outlined, + 'doorbell': Icons.doorbell, + 'doorbell_sharp': Icons.doorbell_sharp, + 'doorbell_rounded': Icons.doorbell_rounded, + 'doorbell_outlined': Icons.doorbell_outlined, + 'double_arrow': Icons.double_arrow, + 'double_arrow_sharp': Icons.double_arrow_sharp, + 'double_arrow_rounded': Icons.double_arrow_rounded, + 'double_arrow_outlined': Icons.double_arrow_outlined, + 'downhill_skiing': Icons.downhill_skiing, + 'downhill_skiing_sharp': Icons.downhill_skiing_sharp, + 'downhill_skiing_rounded': Icons.downhill_skiing_rounded, + 'downhill_skiing_outlined': Icons.downhill_skiing_outlined, + 'download': Icons.download, + 'download_sharp': Icons.download_sharp, + 'download_rounded': Icons.download_rounded, + 'download_outlined': Icons.download_outlined, + 'download_done': Icons.download_done, + 'download_done_sharp': Icons.download_done_sharp, + 'download_done_rounded': Icons.download_done_rounded, + 'download_done_outlined': Icons.download_done_outlined, + 'download_for_offline': Icons.download_for_offline, + 'download_for_offline_sharp': Icons.download_for_offline_sharp, + 'download_for_offline_rounded': Icons.download_for_offline_rounded, + 'download_for_offline_outlined': Icons.download_for_offline_outlined, + 'downloading': Icons.downloading, + 'downloading_sharp': Icons.downloading_sharp, + 'downloading_rounded': Icons.downloading_rounded, + 'downloading_outlined': Icons.downloading_outlined, + 'drafts': Icons.drafts, + 'drafts_sharp': Icons.drafts_sharp, + 'drafts_rounded': Icons.drafts_rounded, + 'drafts_outlined': Icons.drafts_outlined, + 'drag_handle': Icons.drag_handle, + 'drag_handle_sharp': Icons.drag_handle_sharp, + 'drag_handle_rounded': Icons.drag_handle_rounded, + 'drag_handle_outlined': Icons.drag_handle_outlined, + 'drag_indicator': Icons.drag_indicator, + 'drag_indicator_sharp': Icons.drag_indicator_sharp, + 'drag_indicator_rounded': Icons.drag_indicator_rounded, + 'drag_indicator_outlined': Icons.drag_indicator_outlined, + 'drive_eta': Icons.drive_eta, + 'drive_eta_sharp': Icons.drive_eta_sharp, + 'drive_eta_rounded': Icons.drive_eta_rounded, + 'drive_eta_outlined': Icons.drive_eta_outlined, + 'drive_file_move': Icons.drive_file_move, + 'drive_file_move_sharp': Icons.drive_file_move_sharp, + 'drive_file_move_rounded': Icons.drive_file_move_rounded, + 'drive_file_move_outlined': Icons.drive_file_move_outlined, + 'drive_file_move_outline': Icons.drive_file_move_outline, + 'drive_file_rename_outline': Icons.drive_file_rename_outline, + 'drive_file_rename_outline_sharp': + Icons.drive_file_rename_outline_sharp, + 'drive_file_rename_outline_rounded': + Icons.drive_file_rename_outline_rounded, + 'drive_file_rename_outline_outlined': + Icons.drive_file_rename_outline_outlined, + 'drive_folder_upload': Icons.drive_folder_upload, + 'drive_folder_upload_sharp': Icons.drive_folder_upload_sharp, + 'drive_folder_upload_rounded': Icons.drive_folder_upload_rounded, + 'drive_folder_upload_outlined': Icons.drive_folder_upload_outlined, + 'dry': Icons.dry, + 'dry_sharp': Icons.dry_sharp, + 'dry_rounded': Icons.dry_rounded, + 'dry_outlined': Icons.dry_outlined, + 'dry_cleaning': Icons.dry_cleaning, + 'dry_cleaning_sharp': Icons.dry_cleaning_sharp, + 'dry_cleaning_rounded': Icons.dry_cleaning_rounded, + 'dry_cleaning_outlined': Icons.dry_cleaning_outlined, + 'duo': Icons.duo, + 'duo_sharp': Icons.duo_sharp, + 'duo_rounded': Icons.duo_rounded, + 'duo_outlined': Icons.duo_outlined, + 'dvr': Icons.dvr, + 'dvr_sharp': Icons.dvr_sharp, + 'dvr_rounded': Icons.dvr_rounded, + 'dvr_outlined': Icons.dvr_outlined, + 'dynamic_feed': Icons.dynamic_feed, + 'dynamic_feed_sharp': Icons.dynamic_feed_sharp, + 'dynamic_feed_rounded': Icons.dynamic_feed_rounded, + 'dynamic_feed_outlined': Icons.dynamic_feed_outlined, + 'dynamic_form': Icons.dynamic_form, + 'dynamic_form_sharp': Icons.dynamic_form_sharp, + 'dynamic_form_rounded': Icons.dynamic_form_rounded, + 'dynamic_form_outlined': Icons.dynamic_form_outlined, + 'e_mobiledata': Icons.e_mobiledata, + 'e_mobiledata_sharp': Icons.e_mobiledata_sharp, + 'e_mobiledata_rounded': Icons.e_mobiledata_rounded, + 'e_mobiledata_outlined': Icons.e_mobiledata_outlined, + 'earbuds': Icons.earbuds, + 'earbuds_sharp': Icons.earbuds_sharp, + 'earbuds_rounded': Icons.earbuds_rounded, + 'earbuds_outlined': Icons.earbuds_outlined, + 'earbuds_battery': Icons.earbuds_battery, + 'earbuds_battery_sharp': Icons.earbuds_battery_sharp, + 'earbuds_battery_rounded': Icons.earbuds_battery_rounded, + 'earbuds_battery_outlined': Icons.earbuds_battery_outlined, + 'east': Icons.east, + 'east_sharp': Icons.east_sharp, + 'east_rounded': Icons.east_rounded, + 'east_outlined': Icons.east_outlined, + 'eco': Icons.eco, + 'eco_sharp': Icons.eco_sharp, + 'eco_rounded': Icons.eco_rounded, + 'eco_outlined': Icons.eco_outlined, + 'edgesensor_high': Icons.edgesensor_high, + 'edgesensor_high_sharp': Icons.edgesensor_high_sharp, + 'edgesensor_high_rounded': Icons.edgesensor_high_rounded, + 'edgesensor_high_outlined': Icons.edgesensor_high_outlined, + 'edgesensor_low': Icons.edgesensor_low, + 'edgesensor_low_sharp': Icons.edgesensor_low_sharp, + 'edgesensor_low_rounded': Icons.edgesensor_low_rounded, + 'edgesensor_low_outlined': Icons.edgesensor_low_outlined, + 'edit': Icons.edit, + 'edit_sharp': Icons.edit_sharp, + 'edit_rounded': Icons.edit_rounded, + 'edit_outlined': Icons.edit_outlined, + 'edit_attributes': Icons.edit_attributes, + 'edit_attributes_sharp': Icons.edit_attributes_sharp, + 'edit_attributes_rounded': Icons.edit_attributes_rounded, + 'edit_attributes_outlined': Icons.edit_attributes_outlined, + 'edit_location': Icons.edit_location, + 'edit_location_sharp': Icons.edit_location_sharp, + 'edit_location_rounded': Icons.edit_location_rounded, + 'edit_location_outlined': Icons.edit_location_outlined, + 'edit_location_alt': Icons.edit_location_alt, + 'edit_location_alt_sharp': Icons.edit_location_alt_sharp, + 'edit_location_alt_rounded': Icons.edit_location_alt_rounded, + 'edit_location_alt_outlined': Icons.edit_location_alt_outlined, + 'edit_notifications': Icons.edit_notifications, + 'edit_notifications_sharp': Icons.edit_notifications_sharp, + 'edit_notifications_rounded': Icons.edit_notifications_rounded, + 'edit_notifications_outlined': Icons.edit_notifications_outlined, + 'edit_off': Icons.edit_off, + 'edit_off_sharp': Icons.edit_off_sharp, + 'edit_off_rounded': Icons.edit_off_rounded, + 'edit_off_outlined': Icons.edit_off_outlined, + 'edit_road': Icons.edit_road, + 'edit_road_sharp': Icons.edit_road_sharp, + 'edit_road_rounded': Icons.edit_road_rounded, + 'edit_road_outlined': Icons.edit_road_outlined, + 'eject': Icons.eject, + 'eject_sharp': Icons.eject_sharp, + 'eject_rounded': Icons.eject_rounded, + 'eject_outlined': Icons.eject_outlined, + 'elderly': Icons.elderly, + 'elderly_sharp': Icons.elderly_sharp, + 'elderly_rounded': Icons.elderly_rounded, + 'elderly_outlined': Icons.elderly_outlined, + 'electric_bike': Icons.electric_bike, + 'electric_bike_sharp': Icons.electric_bike_sharp, + 'electric_bike_rounded': Icons.electric_bike_rounded, + 'electric_bike_outlined': Icons.electric_bike_outlined, + 'electric_car': Icons.electric_car, + 'electric_car_sharp': Icons.electric_car_sharp, + 'electric_car_rounded': Icons.electric_car_rounded, + 'electric_car_outlined': Icons.electric_car_outlined, + 'electric_moped': Icons.electric_moped, + 'electric_moped_sharp': Icons.electric_moped_sharp, + 'electric_moped_rounded': Icons.electric_moped_rounded, + 'electric_moped_outlined': Icons.electric_moped_outlined, + 'electric_rickshaw': Icons.electric_rickshaw, + 'electric_rickshaw_sharp': Icons.electric_rickshaw_sharp, + 'electric_rickshaw_rounded': Icons.electric_rickshaw_rounded, + 'electric_rickshaw_outlined': Icons.electric_rickshaw_outlined, + 'electric_scooter': Icons.electric_scooter, + 'electric_scooter_sharp': Icons.electric_scooter_sharp, + 'electric_scooter_rounded': Icons.electric_scooter_rounded, + 'electric_scooter_outlined': Icons.electric_scooter_outlined, + 'electrical_services': Icons.electrical_services, + 'electrical_services_sharp': Icons.electrical_services_sharp, + 'electrical_services_rounded': Icons.electrical_services_rounded, + 'electrical_services_outlined': Icons.electrical_services_outlined, + 'elevator': Icons.elevator, + 'elevator_sharp': Icons.elevator_sharp, + 'elevator_rounded': Icons.elevator_rounded, + 'elevator_outlined': Icons.elevator_outlined, + 'email': Icons.email, + 'email_sharp': Icons.email_sharp, + 'email_rounded': Icons.email_rounded, + 'email_outlined': Icons.email_outlined, + 'emoji_emotions': Icons.emoji_emotions, + 'emoji_emotions_sharp': Icons.emoji_emotions_sharp, + 'emoji_emotions_rounded': Icons.emoji_emotions_rounded, + 'emoji_emotions_outlined': Icons.emoji_emotions_outlined, + 'emoji_events': Icons.emoji_events, + 'emoji_events_sharp': Icons.emoji_events_sharp, + 'emoji_events_rounded': Icons.emoji_events_rounded, + 'emoji_events_outlined': Icons.emoji_events_outlined, + 'emoji_flags': Icons.emoji_flags, + 'emoji_flags_sharp': Icons.emoji_flags_sharp, + 'emoji_flags_rounded': Icons.emoji_flags_rounded, + 'emoji_flags_outlined': Icons.emoji_flags_outlined, + 'emoji_food_beverage': Icons.emoji_food_beverage, + 'emoji_food_beverage_sharp': Icons.emoji_food_beverage_sharp, + 'emoji_food_beverage_rounded': Icons.emoji_food_beverage_rounded, + 'emoji_food_beverage_outlined': Icons.emoji_food_beverage_outlined, + 'emoji_nature': Icons.emoji_nature, + 'emoji_nature_sharp': Icons.emoji_nature_sharp, + 'emoji_nature_rounded': Icons.emoji_nature_rounded, + 'emoji_nature_outlined': Icons.emoji_nature_outlined, + 'emoji_objects': Icons.emoji_objects, + 'emoji_objects_sharp': Icons.emoji_objects_sharp, + 'emoji_objects_rounded': Icons.emoji_objects_rounded, + 'emoji_objects_outlined': Icons.emoji_objects_outlined, + 'emoji_people': Icons.emoji_people, + 'emoji_people_sharp': Icons.emoji_people_sharp, + 'emoji_people_rounded': Icons.emoji_people_rounded, + 'emoji_people_outlined': Icons.emoji_people_outlined, + 'emoji_symbols': Icons.emoji_symbols, + 'emoji_symbols_sharp': Icons.emoji_symbols_sharp, + 'emoji_symbols_rounded': Icons.emoji_symbols_rounded, + 'emoji_symbols_outlined': Icons.emoji_symbols_outlined, + 'emoji_transportation': Icons.emoji_transportation, + 'emoji_transportation_sharp': Icons.emoji_transportation_sharp, + 'emoji_transportation_rounded': Icons.emoji_transportation_rounded, + 'emoji_transportation_outlined': Icons.emoji_transportation_outlined, + 'engineering': Icons.engineering, + 'engineering_sharp': Icons.engineering_sharp, + 'engineering_rounded': Icons.engineering_rounded, + 'engineering_outlined': Icons.engineering_outlined, + 'enhance_photo_translate': Icons.enhance_photo_translate, + 'enhance_photo_translate_sharp': Icons.enhance_photo_translate_sharp, + 'enhance_photo_translate_rounded': + Icons.enhance_photo_translate_rounded, + 'enhance_photo_translate_outlined': + Icons.enhance_photo_translate_outlined, + 'enhanced_encryption': Icons.enhanced_encryption, + 'enhanced_encryption_sharp': Icons.enhanced_encryption_sharp, + 'enhanced_encryption_rounded': Icons.enhanced_encryption_rounded, + 'enhanced_encryption_outlined': Icons.enhanced_encryption_outlined, + 'equalizer': Icons.equalizer, + 'equalizer_sharp': Icons.equalizer_sharp, + 'equalizer_rounded': Icons.equalizer_rounded, + 'equalizer_outlined': Icons.equalizer_outlined, + 'error': Icons.error, + 'error_sharp': Icons.error_sharp, + 'error_rounded': Icons.error_rounded, + 'error_outlined': Icons.error_outlined, + 'error_outline': Icons.error_outline, + 'error_outline_sharp': Icons.error_outline_sharp, + 'error_outline_rounded': Icons.error_outline_rounded, + 'error_outline_outlined': Icons.error_outline_outlined, + 'escalator': Icons.escalator, + 'escalator_sharp': Icons.escalator_sharp, + 'escalator_rounded': Icons.escalator_rounded, + 'escalator_outlined': Icons.escalator_outlined, + 'escalator_warning': Icons.escalator_warning, + 'escalator_warning_sharp': Icons.escalator_warning_sharp, + 'escalator_warning_rounded': Icons.escalator_warning_rounded, + 'escalator_warning_outlined': Icons.escalator_warning_outlined, + 'euro': Icons.euro, + 'euro_sharp': Icons.euro_sharp, + 'euro_rounded': Icons.euro_rounded, + 'euro_outlined': Icons.euro_outlined, + 'euro_symbol': Icons.euro_symbol, + 'euro_symbol_sharp': Icons.euro_symbol_sharp, + 'euro_symbol_rounded': Icons.euro_symbol_rounded, + 'euro_symbol_outlined': Icons.euro_symbol_outlined, + 'ev_station': Icons.ev_station, + 'ev_station_sharp': Icons.ev_station_sharp, + 'ev_station_rounded': Icons.ev_station_rounded, + 'ev_station_outlined': Icons.ev_station_outlined, + 'event': Icons.event, + 'event_sharp': Icons.event_sharp, + 'event_rounded': Icons.event_rounded, + 'event_outlined': Icons.event_outlined, + 'event_available': Icons.event_available, + 'event_available_sharp': Icons.event_available_sharp, + 'event_available_rounded': Icons.event_available_rounded, + 'event_available_outlined': Icons.event_available_outlined, + 'event_busy': Icons.event_busy, + 'event_busy_sharp': Icons.event_busy_sharp, + 'event_busy_rounded': Icons.event_busy_rounded, + 'event_busy_outlined': Icons.event_busy_outlined, + 'event_note': Icons.event_note, + 'event_note_sharp': Icons.event_note_sharp, + 'event_note_rounded': Icons.event_note_rounded, + 'event_note_outlined': Icons.event_note_outlined, + 'event_seat': Icons.event_seat, + 'event_seat_sharp': Icons.event_seat_sharp, + 'event_seat_rounded': Icons.event_seat_rounded, + 'event_seat_outlined': Icons.event_seat_outlined, + 'exit_to_app': Icons.exit_to_app, + 'exit_to_app_sharp': Icons.exit_to_app_sharp, + 'exit_to_app_rounded': Icons.exit_to_app_rounded, + 'exit_to_app_outlined': Icons.exit_to_app_outlined, + 'expand': Icons.expand, + 'expand_sharp': Icons.expand_sharp, + 'expand_rounded': Icons.expand_rounded, + 'expand_outlined': Icons.expand_outlined, + 'expand_less': Icons.expand_less, + 'expand_less_sharp': Icons.expand_less_sharp, + 'expand_less_rounded': Icons.expand_less_rounded, + 'expand_less_outlined': Icons.expand_less_outlined, + 'expand_more': Icons.expand_more, + 'expand_more_sharp': Icons.expand_more_sharp, + 'expand_more_rounded': Icons.expand_more_rounded, + 'expand_more_outlined': Icons.expand_more_outlined, + 'explicit': Icons.explicit, + 'explicit_sharp': Icons.explicit_sharp, + 'explicit_rounded': Icons.explicit_rounded, + 'explicit_outlined': Icons.explicit_outlined, + 'explore': Icons.explore, + 'explore_sharp': Icons.explore_sharp, + 'explore_rounded': Icons.explore_rounded, + 'explore_outlined': Icons.explore_outlined, + 'explore_off': Icons.explore_off, + 'explore_off_sharp': Icons.explore_off_sharp, + 'explore_off_rounded': Icons.explore_off_rounded, + 'explore_off_outlined': Icons.explore_off_outlined, + 'exposure': Icons.exposure, + 'exposure_sharp': Icons.exposure_sharp, + 'exposure_rounded': Icons.exposure_rounded, + 'exposure_outlined': Icons.exposure_outlined, + 'exposure_minus_1': Icons.exposure_minus_1, + 'exposure_minus_1_sharp': Icons.exposure_minus_1_sharp, + 'exposure_minus_1_rounded': Icons.exposure_minus_1_rounded, + 'exposure_minus_1_outlined': Icons.exposure_minus_1_outlined, + 'exposure_minus_2': Icons.exposure_minus_2, + 'exposure_minus_2_sharp': Icons.exposure_minus_2_sharp, + 'exposure_minus_2_rounded': Icons.exposure_minus_2_rounded, + 'exposure_minus_2_outlined': Icons.exposure_minus_2_outlined, + 'exposure_neg_1': Icons.exposure_neg_1, + 'exposure_neg_1_sharp': Icons.exposure_neg_1_sharp, + 'exposure_neg_1_rounded': Icons.exposure_neg_1_rounded, + 'exposure_neg_1_outlined': Icons.exposure_neg_1_outlined, + 'exposure_neg_2': Icons.exposure_neg_2, + 'exposure_neg_2_sharp': Icons.exposure_neg_2_sharp, + 'exposure_neg_2_rounded': Icons.exposure_neg_2_rounded, + 'exposure_neg_2_outlined': Icons.exposure_neg_2_outlined, + 'exposure_plus_1': Icons.exposure_plus_1, + 'exposure_plus_1_sharp': Icons.exposure_plus_1_sharp, + 'exposure_plus_1_rounded': Icons.exposure_plus_1_rounded, + 'exposure_plus_1_outlined': Icons.exposure_plus_1_outlined, + 'exposure_plus_2': Icons.exposure_plus_2, + 'exposure_plus_2_sharp': Icons.exposure_plus_2_sharp, + 'exposure_plus_2_rounded': Icons.exposure_plus_2_rounded, + 'exposure_plus_2_outlined': Icons.exposure_plus_2_outlined, + 'exposure_zero': Icons.exposure_zero, + 'exposure_zero_sharp': Icons.exposure_zero_sharp, + 'exposure_zero_rounded': Icons.exposure_zero_rounded, + 'exposure_zero_outlined': Icons.exposure_zero_outlined, + 'extension': Icons.extension, + 'extension_sharp': Icons.extension_sharp, + 'extension_rounded': Icons.extension_rounded, + 'extension_outlined': Icons.extension_outlined, + 'extension_off': Icons.extension_off, + 'extension_off_sharp': Icons.extension_off_sharp, + 'extension_off_rounded': Icons.extension_off_rounded, + 'extension_off_outlined': Icons.extension_off_outlined, + 'face': Icons.face, + 'face_sharp': Icons.face_sharp, + 'face_rounded': Icons.face_rounded, + 'face_outlined': Icons.face_outlined, + 'face_retouching_natural': Icons.face_retouching_natural, + 'face_retouching_natural_sharp': Icons.face_retouching_natural_sharp, + 'face_retouching_natural_rounded': + Icons.face_retouching_natural_rounded, + 'face_retouching_natural_outlined': + Icons.face_retouching_natural_outlined, + 'face_retouching_off': Icons.face_retouching_off, + 'face_retouching_off_sharp': Icons.face_retouching_off_sharp, + 'face_retouching_off_rounded': Icons.face_retouching_off_rounded, + 'face_retouching_off_outlined': Icons.face_retouching_off_outlined, + 'face_unlock_sharp': Icons.face_unlock_sharp, + 'face_unlock_rounded': Icons.face_unlock_rounded, + 'face_unlock_outlined': Icons.face_unlock_outlined, + 'facebook': Icons.facebook, + 'facebook_sharp': Icons.facebook_sharp, + 'facebook_rounded': Icons.facebook_rounded, + 'facebook_outlined': Icons.facebook_outlined, + 'fact_check': Icons.fact_check, + 'fact_check_sharp': Icons.fact_check_sharp, + 'fact_check_rounded': Icons.fact_check_rounded, + 'fact_check_outlined': Icons.fact_check_outlined, + 'family_restroom': Icons.family_restroom, + 'family_restroom_sharp': Icons.family_restroom_sharp, + 'family_restroom_rounded': Icons.family_restroom_rounded, + 'family_restroom_outlined': Icons.family_restroom_outlined, + 'fast_forward': Icons.fast_forward, + 'fast_forward_sharp': Icons.fast_forward_sharp, + 'fast_forward_rounded': Icons.fast_forward_rounded, + 'fast_forward_outlined': Icons.fast_forward_outlined, + 'fast_rewind': Icons.fast_rewind, + 'fast_rewind_sharp': Icons.fast_rewind_sharp, + 'fast_rewind_rounded': Icons.fast_rewind_rounded, + 'fast_rewind_outlined': Icons.fast_rewind_outlined, + 'fastfood': Icons.fastfood, + 'fastfood_sharp': Icons.fastfood_sharp, + 'fastfood_rounded': Icons.fastfood_rounded, + 'fastfood_outlined': Icons.fastfood_outlined, + 'favorite': Icons.favorite, + 'favorite_sharp': Icons.favorite_sharp, + 'favorite_rounded': Icons.favorite_rounded, + 'favorite_outlined': Icons.favorite_outlined, + 'favorite_border': Icons.favorite_border, + 'favorite_border_sharp': Icons.favorite_border_sharp, + 'favorite_border_rounded': Icons.favorite_border_rounded, + 'favorite_border_outlined': Icons.favorite_border_outlined, + 'favorite_outline': Icons.favorite_outline, + 'favorite_outline_sharp': Icons.favorite_outline_sharp, + 'favorite_outline_rounded': Icons.favorite_outline_rounded, + 'favorite_outline_outlined': Icons.favorite_outline_outlined, + 'featured_play_list': Icons.featured_play_list, + 'featured_play_list_sharp': Icons.featured_play_list_sharp, + 'featured_play_list_rounded': Icons.featured_play_list_rounded, + 'featured_play_list_outlined': Icons.featured_play_list_outlined, + 'featured_video': Icons.featured_video, + 'featured_video_sharp': Icons.featured_video_sharp, + 'featured_video_rounded': Icons.featured_video_rounded, + 'featured_video_outlined': Icons.featured_video_outlined, + 'feed': Icons.feed, + 'feed_sharp': Icons.feed_sharp, + 'feed_rounded': Icons.feed_rounded, + 'feed_outlined': Icons.feed_outlined, + 'feedback': Icons.feedback, + 'feedback_sharp': Icons.feedback_sharp, + 'feedback_rounded': Icons.feedback_rounded, + 'feedback_outlined': Icons.feedback_outlined, + 'female': Icons.female, + 'female_sharp': Icons.female_sharp, + 'female_rounded': Icons.female_rounded, + 'female_outlined': Icons.female_outlined, + 'fence': Icons.fence, + 'fence_sharp': Icons.fence_sharp, + 'fence_rounded': Icons.fence_rounded, + 'fence_outlined': Icons.fence_outlined, + 'festival': Icons.festival, + 'festival_sharp': Icons.festival_sharp, + 'festival_rounded': Icons.festival_rounded, + 'festival_outlined': Icons.festival_outlined, + 'fiber_dvr': Icons.fiber_dvr, + 'fiber_dvr_sharp': Icons.fiber_dvr_sharp, + 'fiber_dvr_rounded': Icons.fiber_dvr_rounded, + 'fiber_dvr_outlined': Icons.fiber_dvr_outlined, + 'fiber_manual_record': Icons.fiber_manual_record, + 'fiber_manual_record_sharp': Icons.fiber_manual_record_sharp, + 'fiber_manual_record_rounded': Icons.fiber_manual_record_rounded, + 'fiber_manual_record_outlined': Icons.fiber_manual_record_outlined, + 'fiber_new': Icons.fiber_new, + 'fiber_new_sharp': Icons.fiber_new_sharp, + 'fiber_new_rounded': Icons.fiber_new_rounded, + 'fiber_new_outlined': Icons.fiber_new_outlined, + 'fiber_pin': Icons.fiber_pin, + 'fiber_pin_sharp': Icons.fiber_pin_sharp, + 'fiber_pin_rounded': Icons.fiber_pin_rounded, + 'fiber_pin_outlined': Icons.fiber_pin_outlined, + 'fiber_smart_record': Icons.fiber_smart_record, + 'fiber_smart_record_sharp': Icons.fiber_smart_record_sharp, + 'fiber_smart_record_rounded': Icons.fiber_smart_record_rounded, + 'fiber_smart_record_outlined': Icons.fiber_smart_record_outlined, + 'file_copy': Icons.file_copy, + 'file_copy_sharp': Icons.file_copy_sharp, + 'file_copy_rounded': Icons.file_copy_rounded, + 'file_copy_outlined': Icons.file_copy_outlined, + 'file_download': Icons.file_download, + 'file_download_sharp': Icons.file_download_sharp, + 'file_download_rounded': Icons.file_download_rounded, + 'file_download_outlined': Icons.file_download_outlined, + 'file_download_done': Icons.file_download_done, + 'file_download_done_sharp': Icons.file_download_done_sharp, + 'file_download_done_rounded': Icons.file_download_done_rounded, + 'file_download_done_outlined': Icons.file_download_done_outlined, + 'file_download_off': Icons.file_download_off, + 'file_download_off_sharp': Icons.file_download_off_sharp, + 'file_download_off_rounded': Icons.file_download_off_rounded, + 'file_download_off_outlined': Icons.file_download_off_outlined, + 'file_present': Icons.file_present, + 'file_present_sharp': Icons.file_present_sharp, + 'file_present_rounded': Icons.file_present_rounded, + 'file_present_outlined': Icons.file_present_outlined, + 'file_upload': Icons.file_upload, + 'file_upload_sharp': Icons.file_upload_sharp, + 'file_upload_rounded': Icons.file_upload_rounded, + 'file_upload_outlined': Icons.file_upload_outlined, + 'filter': Icons.filter, + 'filter_sharp': Icons.filter_sharp, + 'filter_rounded': Icons.filter_rounded, + 'filter_outlined': Icons.filter_outlined, + 'filter_1': Icons.filter_1, + 'filter_1_sharp': Icons.filter_1_sharp, + 'filter_1_rounded': Icons.filter_1_rounded, + 'filter_1_outlined': Icons.filter_1_outlined, + 'filter_2': Icons.filter_2, + 'filter_2_sharp': Icons.filter_2_sharp, + 'filter_2_rounded': Icons.filter_2_rounded, + 'filter_2_outlined': Icons.filter_2_outlined, + 'filter_3': Icons.filter_3, + 'filter_3_sharp': Icons.filter_3_sharp, + 'filter_3_rounded': Icons.filter_3_rounded, + 'filter_3_outlined': Icons.filter_3_outlined, + 'filter_4': Icons.filter_4, + 'filter_4_sharp': Icons.filter_4_sharp, + 'filter_4_rounded': Icons.filter_4_rounded, + 'filter_4_outlined': Icons.filter_4_outlined, + 'filter_5': Icons.filter_5, + 'filter_5_sharp': Icons.filter_5_sharp, + 'filter_5_rounded': Icons.filter_5_rounded, + 'filter_5_outlined': Icons.filter_5_outlined, + 'filter_6': Icons.filter_6, + 'filter_6_sharp': Icons.filter_6_sharp, + 'filter_6_rounded': Icons.filter_6_rounded, + 'filter_6_outlined': Icons.filter_6_outlined, + 'filter_7': Icons.filter_7, + 'filter_7_sharp': Icons.filter_7_sharp, + 'filter_7_rounded': Icons.filter_7_rounded, + 'filter_7_outlined': Icons.filter_7_outlined, + 'filter_8': Icons.filter_8, + 'filter_8_sharp': Icons.filter_8_sharp, + 'filter_8_rounded': Icons.filter_8_rounded, + 'filter_8_outlined': Icons.filter_8_outlined, + 'filter_9': Icons.filter_9, + 'filter_9_sharp': Icons.filter_9_sharp, + 'filter_9_rounded': Icons.filter_9_rounded, + 'filter_9_outlined': Icons.filter_9_outlined, + 'filter_9_plus': Icons.filter_9_plus, + 'filter_9_plus_sharp': Icons.filter_9_plus_sharp, + 'filter_9_plus_rounded': Icons.filter_9_plus_rounded, + 'filter_9_plus_outlined': Icons.filter_9_plus_outlined, + 'filter_alt': Icons.filter_alt, + 'filter_alt_sharp': Icons.filter_alt_sharp, + 'filter_alt_rounded': Icons.filter_alt_rounded, + 'filter_alt_outlined': Icons.filter_alt_outlined, + 'filter_b_and_w': Icons.filter_b_and_w, + 'filter_b_and_w_sharp': Icons.filter_b_and_w_sharp, + 'filter_b_and_w_rounded': Icons.filter_b_and_w_rounded, + 'filter_b_and_w_outlined': Icons.filter_b_and_w_outlined, + 'filter_center_focus': Icons.filter_center_focus, + 'filter_center_focus_sharp': Icons.filter_center_focus_sharp, + 'filter_center_focus_rounded': Icons.filter_center_focus_rounded, + 'filter_center_focus_outlined': Icons.filter_center_focus_outlined, + 'filter_drama': Icons.filter_drama, + 'filter_drama_sharp': Icons.filter_drama_sharp, + 'filter_drama_rounded': Icons.filter_drama_rounded, + 'filter_drama_outlined': Icons.filter_drama_outlined, + 'filter_frames': Icons.filter_frames, + 'filter_frames_sharp': Icons.filter_frames_sharp, + 'filter_frames_rounded': Icons.filter_frames_rounded, + 'filter_frames_outlined': Icons.filter_frames_outlined, + 'filter_hdr': Icons.filter_hdr, + 'filter_hdr_sharp': Icons.filter_hdr_sharp, + 'filter_hdr_rounded': Icons.filter_hdr_rounded, + 'filter_hdr_outlined': Icons.filter_hdr_outlined, + 'filter_list': Icons.filter_list, + 'filter_list_sharp': Icons.filter_list_sharp, + 'filter_list_rounded': Icons.filter_list_rounded, + 'filter_list_outlined': Icons.filter_list_outlined, + 'filter_list_alt': Icons.filter_list_alt, + 'filter_none': Icons.filter_none, + 'filter_none_sharp': Icons.filter_none_sharp, + 'filter_none_rounded': Icons.filter_none_rounded, + 'filter_none_outlined': Icons.filter_none_outlined, + 'filter_tilt_shift': Icons.filter_tilt_shift, + 'filter_tilt_shift_sharp': Icons.filter_tilt_shift_sharp, + 'filter_tilt_shift_rounded': Icons.filter_tilt_shift_rounded, + 'filter_tilt_shift_outlined': Icons.filter_tilt_shift_outlined, + 'filter_vintage': Icons.filter_vintage, + 'filter_vintage_sharp': Icons.filter_vintage_sharp, + 'filter_vintage_rounded': Icons.filter_vintage_rounded, + 'filter_vintage_outlined': Icons.filter_vintage_outlined, + 'find_in_page': Icons.find_in_page, + 'find_in_page_sharp': Icons.find_in_page_sharp, + 'find_in_page_rounded': Icons.find_in_page_rounded, + 'find_in_page_outlined': Icons.find_in_page_outlined, + 'find_replace': Icons.find_replace, + 'find_replace_sharp': Icons.find_replace_sharp, + 'find_replace_rounded': Icons.find_replace_rounded, + 'find_replace_outlined': Icons.find_replace_outlined, + 'fingerprint': Icons.fingerprint, + 'fingerprint_sharp': Icons.fingerprint_sharp, + 'fingerprint_rounded': Icons.fingerprint_rounded, + 'fingerprint_outlined': Icons.fingerprint_outlined, + 'fire_extinguisher': Icons.fire_extinguisher, + 'fire_extinguisher_sharp': Icons.fire_extinguisher_sharp, + 'fire_extinguisher_rounded': Icons.fire_extinguisher_rounded, + 'fire_extinguisher_outlined': Icons.fire_extinguisher_outlined, + 'fire_hydrant': Icons.fire_hydrant, + 'fireplace': Icons.fireplace, + 'fireplace_sharp': Icons.fireplace_sharp, + 'fireplace_rounded': Icons.fireplace_rounded, + 'fireplace_outlined': Icons.fireplace_outlined, + 'first_page': Icons.first_page, + 'first_page_sharp': Icons.first_page_sharp, + 'first_page_rounded': Icons.first_page_rounded, + 'first_page_outlined': Icons.first_page_outlined, + 'fit_screen': Icons.fit_screen, + 'fit_screen_sharp': Icons.fit_screen_sharp, + 'fit_screen_rounded': Icons.fit_screen_rounded, + 'fit_screen_outlined': Icons.fit_screen_outlined, + 'fitness_center': Icons.fitness_center, + 'fitness_center_sharp': Icons.fitness_center_sharp, + 'fitness_center_rounded': Icons.fitness_center_rounded, + 'fitness_center_outlined': Icons.fitness_center_outlined, + 'flag': Icons.flag, + 'flag_sharp': Icons.flag_sharp, + 'flag_rounded': Icons.flag_rounded, + 'flag_outlined': Icons.flag_outlined, + 'flaky': Icons.flaky, + 'flaky_sharp': Icons.flaky_sharp, + 'flaky_rounded': Icons.flaky_rounded, + 'flaky_outlined': Icons.flaky_outlined, + 'flare': Icons.flare, + 'flare_sharp': Icons.flare_sharp, + 'flare_rounded': Icons.flare_rounded, + 'flare_outlined': Icons.flare_outlined, + 'flash_auto': Icons.flash_auto, + 'flash_auto_sharp': Icons.flash_auto_sharp, + 'flash_auto_rounded': Icons.flash_auto_rounded, + 'flash_auto_outlined': Icons.flash_auto_outlined, + 'flash_off': Icons.flash_off, + 'flash_off_sharp': Icons.flash_off_sharp, + 'flash_off_rounded': Icons.flash_off_rounded, + 'flash_off_outlined': Icons.flash_off_outlined, + 'flash_on': Icons.flash_on, + 'flash_on_sharp': Icons.flash_on_sharp, + 'flash_on_rounded': Icons.flash_on_rounded, + 'flash_on_outlined': Icons.flash_on_outlined, + 'flashlight_off': Icons.flashlight_off, + 'flashlight_off_sharp': Icons.flashlight_off_sharp, + 'flashlight_off_rounded': Icons.flashlight_off_rounded, + 'flashlight_off_outlined': Icons.flashlight_off_outlined, + 'flashlight_on': Icons.flashlight_on, + 'flashlight_on_sharp': Icons.flashlight_on_sharp, + 'flashlight_on_rounded': Icons.flashlight_on_rounded, + 'flashlight_on_outlined': Icons.flashlight_on_outlined, + 'flatware': Icons.flatware, + 'flatware_sharp': Icons.flatware_sharp, + 'flatware_rounded': Icons.flatware_rounded, + 'flatware_outlined': Icons.flatware_outlined, + 'flight': Icons.flight, + 'flight_sharp': Icons.flight_sharp, + 'flight_rounded': Icons.flight_rounded, + 'flight_outlined': Icons.flight_outlined, + 'flight_land': Icons.flight_land, + 'flight_land_sharp': Icons.flight_land_sharp, + 'flight_land_rounded': Icons.flight_land_rounded, + 'flight_land_outlined': Icons.flight_land_outlined, + 'flight_takeoff': Icons.flight_takeoff, + 'flight_takeoff_sharp': Icons.flight_takeoff_sharp, + 'flight_takeoff_rounded': Icons.flight_takeoff_rounded, + 'flight_takeoff_outlined': Icons.flight_takeoff_outlined, + 'flip': Icons.flip, + 'flip_sharp': Icons.flip_sharp, + 'flip_rounded': Icons.flip_rounded, + 'flip_outlined': Icons.flip_outlined, + 'flip_camera_android': Icons.flip_camera_android, + 'flip_camera_android_sharp': Icons.flip_camera_android_sharp, + 'flip_camera_android_rounded': Icons.flip_camera_android_rounded, + 'flip_camera_android_outlined': Icons.flip_camera_android_outlined, + 'flip_camera_ios': Icons.flip_camera_ios, + 'flip_camera_ios_sharp': Icons.flip_camera_ios_sharp, + 'flip_camera_ios_rounded': Icons.flip_camera_ios_rounded, + 'flip_camera_ios_outlined': Icons.flip_camera_ios_outlined, + 'flip_to_back': Icons.flip_to_back, + 'flip_to_back_sharp': Icons.flip_to_back_sharp, + 'flip_to_back_rounded': Icons.flip_to_back_rounded, + 'flip_to_back_outlined': Icons.flip_to_back_outlined, + 'flip_to_front': Icons.flip_to_front, + 'flip_to_front_sharp': Icons.flip_to_front_sharp, + 'flip_to_front_rounded': Icons.flip_to_front_rounded, + 'flip_to_front_outlined': Icons.flip_to_front_outlined, + 'flourescent': Icons.flourescent, + 'flourescent_sharp': Icons.flourescent_sharp, + 'flourescent_rounded': Icons.flourescent_rounded, + 'flourescent_outlined': Icons.flourescent_outlined, + 'flutter_dash': Icons.flutter_dash, + 'flutter_dash_sharp': Icons.flutter_dash_sharp, + 'flutter_dash_rounded': Icons.flutter_dash_rounded, + 'flutter_dash_outlined': Icons.flutter_dash_outlined, + 'fmd_bad': Icons.fmd_bad, + 'fmd_bad_sharp': Icons.fmd_bad_sharp, + 'fmd_bad_rounded': Icons.fmd_bad_rounded, + 'fmd_bad_outlined': Icons.fmd_bad_outlined, + 'fmd_good': Icons.fmd_good, + 'fmd_good_sharp': Icons.fmd_good_sharp, + 'fmd_good_rounded': Icons.fmd_good_rounded, + 'fmd_good_outlined': Icons.fmd_good_outlined, + 'folder': Icons.folder, + 'folder_sharp': Icons.folder_sharp, + 'folder_rounded': Icons.folder_rounded, + 'folder_outlined': Icons.folder_outlined, + 'folder_open': Icons.folder_open, + 'folder_open_sharp': Icons.folder_open_sharp, + 'folder_open_rounded': Icons.folder_open_rounded, + 'folder_open_outlined': Icons.folder_open_outlined, + 'folder_shared': Icons.folder_shared, + 'folder_shared_sharp': Icons.folder_shared_sharp, + 'folder_shared_rounded': Icons.folder_shared_rounded, + 'folder_shared_outlined': Icons.folder_shared_outlined, + 'folder_special': Icons.folder_special, + 'folder_special_sharp': Icons.folder_special_sharp, + 'folder_special_rounded': Icons.folder_special_rounded, + 'folder_special_outlined': Icons.folder_special_outlined, + 'follow_the_signs': Icons.follow_the_signs, + 'follow_the_signs_sharp': Icons.follow_the_signs_sharp, + 'follow_the_signs_rounded': Icons.follow_the_signs_rounded, + 'follow_the_signs_outlined': Icons.follow_the_signs_outlined, + 'font_download': Icons.font_download, + 'font_download_sharp': Icons.font_download_sharp, + 'font_download_rounded': Icons.font_download_rounded, + 'font_download_outlined': Icons.font_download_outlined, + 'font_download_off': Icons.font_download_off, + 'font_download_off_sharp': Icons.font_download_off_sharp, + 'font_download_off_rounded': Icons.font_download_off_rounded, + 'font_download_off_outlined': Icons.font_download_off_outlined, + 'food_bank': Icons.food_bank, + 'food_bank_sharp': Icons.food_bank_sharp, + 'food_bank_rounded': Icons.food_bank_rounded, + 'food_bank_outlined': Icons.food_bank_outlined, + 'format_align_center': Icons.format_align_center, + 'format_align_center_sharp': Icons.format_align_center_sharp, + 'format_align_center_rounded': Icons.format_align_center_rounded, + 'format_align_center_outlined': Icons.format_align_center_outlined, + 'format_align_justify': Icons.format_align_justify, + 'format_align_justify_sharp': Icons.format_align_justify_sharp, + 'format_align_justify_rounded': Icons.format_align_justify_rounded, + 'format_align_justify_outlined': Icons.format_align_justify_outlined, + 'format_align_left': Icons.format_align_left, + 'format_align_left_sharp': Icons.format_align_left_sharp, + 'format_align_left_rounded': Icons.format_align_left_rounded, + 'format_align_left_outlined': Icons.format_align_left_outlined, + 'format_align_right': Icons.format_align_right, + 'format_align_right_sharp': Icons.format_align_right_sharp, + 'format_align_right_rounded': Icons.format_align_right_rounded, + 'format_align_right_outlined': Icons.format_align_right_outlined, + 'format_bold': Icons.format_bold, + 'format_bold_sharp': Icons.format_bold_sharp, + 'format_bold_rounded': Icons.format_bold_rounded, + 'format_bold_outlined': Icons.format_bold_outlined, + 'format_clear': Icons.format_clear, + 'format_clear_sharp': Icons.format_clear_sharp, + 'format_clear_rounded': Icons.format_clear_rounded, + 'format_clear_outlined': Icons.format_clear_outlined, + 'format_color_fill': Icons.format_color_fill, + 'format_color_fill_sharp': Icons.format_color_fill_sharp, + 'format_color_fill_rounded': Icons.format_color_fill_rounded, + 'format_color_fill_outlined': Icons.format_color_fill_outlined, + 'format_color_reset': Icons.format_color_reset, + 'format_color_reset_sharp': Icons.format_color_reset_sharp, + 'format_color_reset_rounded': Icons.format_color_reset_rounded, + 'format_color_reset_outlined': Icons.format_color_reset_outlined, + 'format_color_text': Icons.format_color_text, + 'format_color_text_sharp': Icons.format_color_text_sharp, + 'format_color_text_rounded': Icons.format_color_text_rounded, + 'format_color_text_outlined': Icons.format_color_text_outlined, + 'format_indent_decrease': Icons.format_indent_decrease, + 'format_indent_decrease_sharp': Icons.format_indent_decrease_sharp, + 'format_indent_decrease_rounded': Icons.format_indent_decrease_rounded, + 'format_indent_decrease_outlined': + Icons.format_indent_decrease_outlined, + 'format_indent_increase': Icons.format_indent_increase, + 'format_indent_increase_sharp': Icons.format_indent_increase_sharp, + 'format_indent_increase_rounded': Icons.format_indent_increase_rounded, + 'format_indent_increase_outlined': + Icons.format_indent_increase_outlined, + 'format_italic': Icons.format_italic, + 'format_italic_sharp': Icons.format_italic_sharp, + 'format_italic_rounded': Icons.format_italic_rounded, + 'format_italic_outlined': Icons.format_italic_outlined, + 'format_line_spacing': Icons.format_line_spacing, + 'format_line_spacing_sharp': Icons.format_line_spacing_sharp, + 'format_line_spacing_rounded': Icons.format_line_spacing_rounded, + 'format_line_spacing_outlined': Icons.format_line_spacing_outlined, + 'format_list_bulleted': Icons.format_list_bulleted, + 'format_list_bulleted_sharp': Icons.format_list_bulleted_sharp, + 'format_list_bulleted_rounded': Icons.format_list_bulleted_rounded, + 'format_list_bulleted_outlined': Icons.format_list_bulleted_outlined, + 'format_list_numbered': Icons.format_list_numbered, + 'format_list_numbered_sharp': Icons.format_list_numbered_sharp, + 'format_list_numbered_rounded': Icons.format_list_numbered_rounded, + 'format_list_numbered_outlined': Icons.format_list_numbered_outlined, + 'format_list_numbered_rtl': Icons.format_list_numbered_rtl, + 'format_list_numbered_rtl_sharp': Icons.format_list_numbered_rtl_sharp, + 'format_list_numbered_rtl_rounded': + Icons.format_list_numbered_rtl_rounded, + 'format_list_numbered_rtl_outlined': + Icons.format_list_numbered_rtl_outlined, + 'format_paint': Icons.format_paint, + 'format_paint_sharp': Icons.format_paint_sharp, + 'format_paint_rounded': Icons.format_paint_rounded, + 'format_paint_outlined': Icons.format_paint_outlined, + 'format_quote': Icons.format_quote, + 'format_quote_sharp': Icons.format_quote_sharp, + 'format_quote_rounded': Icons.format_quote_rounded, + 'format_quote_outlined': Icons.format_quote_outlined, + 'format_shapes': Icons.format_shapes, + 'format_shapes_sharp': Icons.format_shapes_sharp, + 'format_shapes_rounded': Icons.format_shapes_rounded, + 'format_shapes_outlined': Icons.format_shapes_outlined, + 'format_size': Icons.format_size, + 'format_size_sharp': Icons.format_size_sharp, + 'format_size_rounded': Icons.format_size_rounded, + 'format_size_outlined': Icons.format_size_outlined, + 'format_strikethrough': Icons.format_strikethrough, + 'format_strikethrough_sharp': Icons.format_strikethrough_sharp, + 'format_strikethrough_rounded': Icons.format_strikethrough_rounded, + 'format_strikethrough_outlined': Icons.format_strikethrough_outlined, + 'format_textdirection_l_to_r': Icons.format_textdirection_l_to_r, + 'format_textdirection_l_to_r_sharp': + Icons.format_textdirection_l_to_r_sharp, + 'format_textdirection_l_to_r_rounded': + Icons.format_textdirection_l_to_r_rounded, + 'format_textdirection_l_to_r_outlined': + Icons.format_textdirection_l_to_r_outlined, + 'format_textdirection_r_to_l': Icons.format_textdirection_r_to_l, + 'format_textdirection_r_to_l_sharp': + Icons.format_textdirection_r_to_l_sharp, + 'format_textdirection_r_to_l_rounded': + Icons.format_textdirection_r_to_l_rounded, + 'format_textdirection_r_to_l_outlined': + Icons.format_textdirection_r_to_l_outlined, + 'format_underline': Icons.format_underline, + 'format_underline_sharp': Icons.format_underline_sharp, + 'format_underline_rounded': Icons.format_underline_rounded, + 'format_underline_outlined': Icons.format_underline_outlined, + 'format_underlined': Icons.format_underlined, + 'format_underlined_sharp': Icons.format_underlined_sharp, + 'format_underlined_rounded': Icons.format_underlined_rounded, + 'format_underlined_outlined': Icons.format_underlined_outlined, + 'forum': Icons.forum, + 'forum_sharp': Icons.forum_sharp, + 'forum_rounded': Icons.forum_rounded, + 'forum_outlined': Icons.forum_outlined, + 'forward': Icons.forward, + 'forward_sharp': Icons.forward_sharp, + 'forward_rounded': Icons.forward_rounded, + 'forward_outlined': Icons.forward_outlined, + 'forward_10': Icons.forward_10, + 'forward_10_sharp': Icons.forward_10_sharp, + 'forward_10_rounded': Icons.forward_10_rounded, + 'forward_10_outlined': Icons.forward_10_outlined, + 'forward_30': Icons.forward_30, + 'forward_30_sharp': Icons.forward_30_sharp, + 'forward_30_rounded': Icons.forward_30_rounded, + 'forward_30_outlined': Icons.forward_30_outlined, + 'forward_5': Icons.forward_5, + 'forward_5_sharp': Icons.forward_5_sharp, + 'forward_5_rounded': Icons.forward_5_rounded, + 'forward_5_outlined': Icons.forward_5_outlined, + 'forward_to_inbox': Icons.forward_to_inbox, + 'forward_to_inbox_sharp': Icons.forward_to_inbox_sharp, + 'forward_to_inbox_rounded': Icons.forward_to_inbox_rounded, + 'forward_to_inbox_outlined': Icons.forward_to_inbox_outlined, + 'foundation': Icons.foundation, + 'foundation_sharp': Icons.foundation_sharp, + 'foundation_rounded': Icons.foundation_rounded, + 'foundation_outlined': Icons.foundation_outlined, + 'free_breakfast': Icons.free_breakfast, + 'free_breakfast_sharp': Icons.free_breakfast_sharp, + 'free_breakfast_rounded': Icons.free_breakfast_rounded, + 'free_breakfast_outlined': Icons.free_breakfast_outlined, + 'fullscreen': Icons.fullscreen, + 'fullscreen_sharp': Icons.fullscreen_sharp, + 'fullscreen_rounded': Icons.fullscreen_rounded, + 'fullscreen_outlined': Icons.fullscreen_outlined, + 'fullscreen_exit': Icons.fullscreen_exit, + 'fullscreen_exit_sharp': Icons.fullscreen_exit_sharp, + 'fullscreen_exit_rounded': Icons.fullscreen_exit_rounded, + 'fullscreen_exit_outlined': Icons.fullscreen_exit_outlined, + 'functions': Icons.functions, + 'functions_sharp': Icons.functions_sharp, + 'functions_rounded': Icons.functions_rounded, + 'functions_outlined': Icons.functions_outlined, + 'g_mobiledata': Icons.g_mobiledata, + 'g_mobiledata_sharp': Icons.g_mobiledata_sharp, + 'g_mobiledata_rounded': Icons.g_mobiledata_rounded, + 'g_mobiledata_outlined': Icons.g_mobiledata_outlined, + 'g_translate': Icons.g_translate, + 'g_translate_sharp': Icons.g_translate_sharp, + 'g_translate_rounded': Icons.g_translate_rounded, + 'g_translate_outlined': Icons.g_translate_outlined, + 'gamepad': Icons.gamepad, + 'gamepad_sharp': Icons.gamepad_sharp, + 'gamepad_rounded': Icons.gamepad_rounded, + 'gamepad_outlined': Icons.gamepad_outlined, + 'games': Icons.games, + 'games_sharp': Icons.games_sharp, + 'games_rounded': Icons.games_rounded, + 'games_outlined': Icons.games_outlined, + 'garage': Icons.garage, + 'garage_sharp': Icons.garage_sharp, + 'garage_rounded': Icons.garage_rounded, + 'garage_outlined': Icons.garage_outlined, + 'gavel': Icons.gavel, + 'gavel_sharp': Icons.gavel_sharp, + 'gavel_rounded': Icons.gavel_rounded, + 'gavel_outlined': Icons.gavel_outlined, + 'gesture': Icons.gesture, + 'gesture_sharp': Icons.gesture_sharp, + 'gesture_rounded': Icons.gesture_rounded, + 'gesture_outlined': Icons.gesture_outlined, + 'get_app': Icons.get_app, + 'get_app_sharp': Icons.get_app_sharp, + 'get_app_rounded': Icons.get_app_rounded, + 'get_app_outlined': Icons.get_app_outlined, + 'gif': Icons.gif, + 'gif_sharp': Icons.gif_sharp, + 'gif_rounded': Icons.gif_rounded, + 'gif_outlined': Icons.gif_outlined, + 'gite': Icons.gite, + 'gite_sharp': Icons.gite_sharp, + 'gite_rounded': Icons.gite_rounded, + 'gite_outlined': Icons.gite_outlined, + 'golf_course': Icons.golf_course, + 'golf_course_sharp': Icons.golf_course_sharp, + 'golf_course_rounded': Icons.golf_course_rounded, + 'golf_course_outlined': Icons.golf_course_outlined, + 'gpp_bad': Icons.gpp_bad, + 'gpp_bad_sharp': Icons.gpp_bad_sharp, + 'gpp_bad_rounded': Icons.gpp_bad_rounded, + 'gpp_bad_outlined': Icons.gpp_bad_outlined, + 'gpp_good': Icons.gpp_good, + 'gpp_good_sharp': Icons.gpp_good_sharp, + 'gpp_good_rounded': Icons.gpp_good_rounded, + 'gpp_good_outlined': Icons.gpp_good_outlined, + 'gpp_maybe': Icons.gpp_maybe, + 'gpp_maybe_sharp': Icons.gpp_maybe_sharp, + 'gpp_maybe_rounded': Icons.gpp_maybe_rounded, + 'gpp_maybe_outlined': Icons.gpp_maybe_outlined, + 'gps_fixed': Icons.gps_fixed, + 'gps_fixed_sharp': Icons.gps_fixed_sharp, + 'gps_fixed_rounded': Icons.gps_fixed_rounded, + 'gps_fixed_outlined': Icons.gps_fixed_outlined, + 'gps_not_fixed': Icons.gps_not_fixed, + 'gps_not_fixed_sharp': Icons.gps_not_fixed_sharp, + 'gps_not_fixed_rounded': Icons.gps_not_fixed_rounded, + 'gps_not_fixed_outlined': Icons.gps_not_fixed_outlined, + 'gps_off': Icons.gps_off, + 'gps_off_sharp': Icons.gps_off_sharp, + 'gps_off_rounded': Icons.gps_off_rounded, + 'gps_off_outlined': Icons.gps_off_outlined, + 'grade': Icons.grade, + 'grade_sharp': Icons.grade_sharp, + 'grade_rounded': Icons.grade_rounded, + 'grade_outlined': Icons.grade_outlined, + 'gradient': Icons.gradient, + 'gradient_sharp': Icons.gradient_sharp, + 'gradient_rounded': Icons.gradient_rounded, + 'gradient_outlined': Icons.gradient_outlined, + 'grading': Icons.grading, + 'grading_sharp': Icons.grading_sharp, + 'grading_rounded': Icons.grading_rounded, + 'grading_outlined': Icons.grading_outlined, + 'grain': Icons.grain, + 'grain_sharp': Icons.grain_sharp, + 'grain_rounded': Icons.grain_rounded, + 'grain_outlined': Icons.grain_outlined, + 'graphic_eq': Icons.graphic_eq, + 'graphic_eq_sharp': Icons.graphic_eq_sharp, + 'graphic_eq_rounded': Icons.graphic_eq_rounded, + 'graphic_eq_outlined': Icons.graphic_eq_outlined, + 'grass': Icons.grass, + 'grass_sharp': Icons.grass_sharp, + 'grass_rounded': Icons.grass_rounded, + 'grass_outlined': Icons.grass_outlined, + 'grid_3x3': Icons.grid_3x3, + 'grid_3x3_sharp': Icons.grid_3x3_sharp, + 'grid_3x3_rounded': Icons.grid_3x3_rounded, + 'grid_3x3_outlined': Icons.grid_3x3_outlined, + 'grid_4x4': Icons.grid_4x4, + 'grid_4x4_sharp': Icons.grid_4x4_sharp, + 'grid_4x4_rounded': Icons.grid_4x4_rounded, + 'grid_4x4_outlined': Icons.grid_4x4_outlined, + 'grid_goldenratio': Icons.grid_goldenratio, + 'grid_goldenratio_sharp': Icons.grid_goldenratio_sharp, + 'grid_goldenratio_rounded': Icons.grid_goldenratio_rounded, + 'grid_goldenratio_outlined': Icons.grid_goldenratio_outlined, + 'grid_off': Icons.grid_off, + 'grid_off_sharp': Icons.grid_off_sharp, + 'grid_off_rounded': Icons.grid_off_rounded, + 'grid_off_outlined': Icons.grid_off_outlined, + 'grid_on': Icons.grid_on, + 'grid_on_sharp': Icons.grid_on_sharp, + 'grid_on_rounded': Icons.grid_on_rounded, + 'grid_on_outlined': Icons.grid_on_outlined, + 'grid_view': Icons.grid_view, + 'grid_view_sharp': Icons.grid_view_sharp, + 'grid_view_rounded': Icons.grid_view_rounded, + 'grid_view_outlined': Icons.grid_view_outlined, + 'group': Icons.group, + 'group_sharp': Icons.group_sharp, + 'group_rounded': Icons.group_rounded, + 'group_outlined': Icons.group_outlined, + 'group_add': Icons.group_add, + 'group_add_sharp': Icons.group_add_sharp, + 'group_add_rounded': Icons.group_add_rounded, + 'group_add_outlined': Icons.group_add_outlined, + 'group_work': Icons.group_work, + 'group_work_sharp': Icons.group_work_sharp, + 'group_work_rounded': Icons.group_work_rounded, + 'group_work_outlined': Icons.group_work_outlined, + 'groups': Icons.groups, + 'groups_sharp': Icons.groups_sharp, + 'groups_rounded': Icons.groups_rounded, + 'groups_outlined': Icons.groups_outlined, + 'h_mobiledata': Icons.h_mobiledata, + 'h_mobiledata_sharp': Icons.h_mobiledata_sharp, + 'h_mobiledata_rounded': Icons.h_mobiledata_rounded, + 'h_mobiledata_outlined': Icons.h_mobiledata_outlined, + 'h_plus_mobiledata': Icons.h_plus_mobiledata, + 'h_plus_mobiledata_sharp': Icons.h_plus_mobiledata_sharp, + 'h_plus_mobiledata_rounded': Icons.h_plus_mobiledata_rounded, + 'h_plus_mobiledata_outlined': Icons.h_plus_mobiledata_outlined, + 'hail': Icons.hail, + 'hail_sharp': Icons.hail_sharp, + 'hail_rounded': Icons.hail_rounded, + 'hail_outlined': Icons.hail_outlined, + 'handyman': Icons.handyman, + 'handyman_sharp': Icons.handyman_sharp, + 'handyman_rounded': Icons.handyman_rounded, + 'handyman_outlined': Icons.handyman_outlined, + 'hardware': Icons.hardware, + 'hardware_sharp': Icons.hardware_sharp, + 'hardware_rounded': Icons.hardware_rounded, + 'hardware_outlined': Icons.hardware_outlined, + 'hd': Icons.hd, + 'hd_sharp': Icons.hd_sharp, + 'hd_rounded': Icons.hd_rounded, + 'hd_outlined': Icons.hd_outlined, + 'hdr_auto': Icons.hdr_auto, + 'hdr_auto_sharp': Icons.hdr_auto_sharp, + 'hdr_auto_rounded': Icons.hdr_auto_rounded, + 'hdr_auto_outlined': Icons.hdr_auto_outlined, + 'hdr_auto_select': Icons.hdr_auto_select, + 'hdr_auto_select_sharp': Icons.hdr_auto_select_sharp, + 'hdr_auto_select_rounded': Icons.hdr_auto_select_rounded, + 'hdr_auto_select_outlined': Icons.hdr_auto_select_outlined, + 'hdr_enhanced_select': Icons.hdr_enhanced_select, + 'hdr_enhanced_select_sharp': Icons.hdr_enhanced_select_sharp, + 'hdr_enhanced_select_rounded': Icons.hdr_enhanced_select_rounded, + 'hdr_enhanced_select_outlined': Icons.hdr_enhanced_select_outlined, + 'hdr_off': Icons.hdr_off, + 'hdr_off_sharp': Icons.hdr_off_sharp, + 'hdr_off_rounded': Icons.hdr_off_rounded, + 'hdr_off_outlined': Icons.hdr_off_outlined, + 'hdr_off_select': Icons.hdr_off_select, + 'hdr_off_select_sharp': Icons.hdr_off_select_sharp, + 'hdr_off_select_rounded': Icons.hdr_off_select_rounded, + 'hdr_off_select_outlined': Icons.hdr_off_select_outlined, + 'hdr_on': Icons.hdr_on, + 'hdr_on_sharp': Icons.hdr_on_sharp, + 'hdr_on_rounded': Icons.hdr_on_rounded, + 'hdr_on_outlined': Icons.hdr_on_outlined, + 'hdr_on_select': Icons.hdr_on_select, + 'hdr_on_select_sharp': Icons.hdr_on_select_sharp, + 'hdr_on_select_rounded': Icons.hdr_on_select_rounded, + 'hdr_on_select_outlined': Icons.hdr_on_select_outlined, + 'hdr_plus': Icons.hdr_plus, + 'hdr_plus_sharp': Icons.hdr_plus_sharp, + 'hdr_plus_rounded': Icons.hdr_plus_rounded, + 'hdr_plus_outlined': Icons.hdr_plus_outlined, + 'hdr_strong': Icons.hdr_strong, + 'hdr_strong_sharp': Icons.hdr_strong_sharp, + 'hdr_strong_rounded': Icons.hdr_strong_rounded, + 'hdr_strong_outlined': Icons.hdr_strong_outlined, + 'hdr_weak': Icons.hdr_weak, + 'hdr_weak_sharp': Icons.hdr_weak_sharp, + 'hdr_weak_rounded': Icons.hdr_weak_rounded, + 'hdr_weak_outlined': Icons.hdr_weak_outlined, + 'headphones': Icons.headphones, + 'headphones_sharp': Icons.headphones_sharp, + 'headphones_rounded': Icons.headphones_rounded, + 'headphones_outlined': Icons.headphones_outlined, + 'headphones_battery': Icons.headphones_battery, + 'headphones_battery_sharp': Icons.headphones_battery_sharp, + 'headphones_battery_rounded': Icons.headphones_battery_rounded, + 'headphones_battery_outlined': Icons.headphones_battery_outlined, + 'headset': Icons.headset, + 'headset_sharp': Icons.headset_sharp, + 'headset_rounded': Icons.headset_rounded, + 'headset_outlined': Icons.headset_outlined, + 'headset_mic': Icons.headset_mic, + 'headset_mic_sharp': Icons.headset_mic_sharp, + 'headset_mic_rounded': Icons.headset_mic_rounded, + 'headset_mic_outlined': Icons.headset_mic_outlined, + 'headset_off': Icons.headset_off, + 'headset_off_sharp': Icons.headset_off_sharp, + 'headset_off_rounded': Icons.headset_off_rounded, + 'headset_off_outlined': Icons.headset_off_outlined, + 'healing': Icons.healing, + 'healing_sharp': Icons.healing_sharp, + 'healing_rounded': Icons.healing_rounded, + 'healing_outlined': Icons.healing_outlined, + 'health_and_safety': Icons.health_and_safety, + 'health_and_safety_sharp': Icons.health_and_safety_sharp, + 'health_and_safety_rounded': Icons.health_and_safety_rounded, + 'health_and_safety_outlined': Icons.health_and_safety_outlined, + 'hearing': Icons.hearing, + 'hearing_sharp': Icons.hearing_sharp, + 'hearing_rounded': Icons.hearing_rounded, + 'hearing_outlined': Icons.hearing_outlined, + 'hearing_disabled': Icons.hearing_disabled, + 'hearing_disabled_sharp': Icons.hearing_disabled_sharp, + 'hearing_disabled_rounded': Icons.hearing_disabled_rounded, + 'hearing_disabled_outlined': Icons.hearing_disabled_outlined, + 'height': Icons.height, + 'height_sharp': Icons.height_sharp, + 'height_rounded': Icons.height_rounded, + 'height_outlined': Icons.height_outlined, + 'help': Icons.help, + 'help_sharp': Icons.help_sharp, + 'help_rounded': Icons.help_rounded, + 'help_outlined': Icons.help_outlined, + 'help_center': Icons.help_center, + 'help_center_sharp': Icons.help_center_sharp, + 'help_center_rounded': Icons.help_center_rounded, + 'help_center_outlined': Icons.help_center_outlined, + 'help_outline': Icons.help_outline, + 'help_outline_sharp': Icons.help_outline_sharp, + 'help_outline_rounded': Icons.help_outline_rounded, + 'help_outline_outlined': Icons.help_outline_outlined, + 'hevc': Icons.hevc, + 'hevc_sharp': Icons.hevc_sharp, + 'hevc_rounded': Icons.hevc_rounded, + 'hevc_outlined': Icons.hevc_outlined, + 'hide_image': Icons.hide_image, + 'hide_image_sharp': Icons.hide_image_sharp, + 'hide_image_rounded': Icons.hide_image_rounded, + 'hide_image_outlined': Icons.hide_image_outlined, + 'hide_source': Icons.hide_source, + 'hide_source_sharp': Icons.hide_source_sharp, + 'hide_source_rounded': Icons.hide_source_rounded, + 'hide_source_outlined': Icons.hide_source_outlined, + 'high_quality': Icons.high_quality, + 'high_quality_sharp': Icons.high_quality_sharp, + 'high_quality_rounded': Icons.high_quality_rounded, + 'high_quality_outlined': Icons.high_quality_outlined, + 'highlight': Icons.highlight, + 'highlight_sharp': Icons.highlight_sharp, + 'highlight_rounded': Icons.highlight_rounded, + 'highlight_outlined': Icons.highlight_outlined, + 'highlight_alt': Icons.highlight_alt, + 'highlight_alt_sharp': Icons.highlight_alt_sharp, + 'highlight_alt_rounded': Icons.highlight_alt_rounded, + 'highlight_alt_outlined': Icons.highlight_alt_outlined, + 'highlight_off': Icons.highlight_off, + 'highlight_off_sharp': Icons.highlight_off_sharp, + 'highlight_off_rounded': Icons.highlight_off_rounded, + 'highlight_off_outlined': Icons.highlight_off_outlined, + 'highlight_remove': Icons.highlight_remove, + 'highlight_remove_sharp': Icons.highlight_remove_sharp, + 'highlight_remove_rounded': Icons.highlight_remove_rounded, + 'highlight_remove_outlined': Icons.highlight_remove_outlined, + 'hiking': Icons.hiking, + 'hiking_sharp': Icons.hiking_sharp, + 'hiking_rounded': Icons.hiking_rounded, + 'hiking_outlined': Icons.hiking_outlined, + 'history': Icons.history, + 'history_sharp': Icons.history_sharp, + 'history_rounded': Icons.history_rounded, + 'history_outlined': Icons.history_outlined, + 'history_edu': Icons.history_edu, + 'history_edu_sharp': Icons.history_edu_sharp, + 'history_edu_rounded': Icons.history_edu_rounded, + 'history_edu_outlined': Icons.history_edu_outlined, + 'history_toggle_off': Icons.history_toggle_off, + 'history_toggle_off_sharp': Icons.history_toggle_off_sharp, + 'history_toggle_off_rounded': Icons.history_toggle_off_rounded, + 'history_toggle_off_outlined': Icons.history_toggle_off_outlined, + 'holiday_village': Icons.holiday_village, + 'holiday_village_sharp': Icons.holiday_village_sharp, + 'holiday_village_rounded': Icons.holiday_village_rounded, + 'holiday_village_outlined': Icons.holiday_village_outlined, + 'home': Icons.home, + 'home_sharp': Icons.home_sharp, + 'home_rounded': Icons.home_rounded, + 'home_outlined': Icons.home_outlined, + 'home_filled': Icons.home_filled, + 'home_max': Icons.home_max, + 'home_max_sharp': Icons.home_max_sharp, + 'home_max_rounded': Icons.home_max_rounded, + 'home_max_outlined': Icons.home_max_outlined, + 'home_mini': Icons.home_mini, + 'home_mini_sharp': Icons.home_mini_sharp, + 'home_mini_rounded': Icons.home_mini_rounded, + 'home_mini_outlined': Icons.home_mini_outlined, + 'home_repair_service': Icons.home_repair_service, + 'home_repair_service_sharp': Icons.home_repair_service_sharp, + 'home_repair_service_rounded': Icons.home_repair_service_rounded, + 'home_repair_service_outlined': Icons.home_repair_service_outlined, + 'home_work': Icons.home_work, + 'home_work_sharp': Icons.home_work_sharp, + 'home_work_rounded': Icons.home_work_rounded, + 'home_work_outlined': Icons.home_work_outlined, + 'horizontal_distribute': Icons.horizontal_distribute, + 'horizontal_distribute_sharp': Icons.horizontal_distribute_sharp, + 'horizontal_distribute_rounded': Icons.horizontal_distribute_rounded, + 'horizontal_distribute_outlined': Icons.horizontal_distribute_outlined, + 'horizontal_rule': Icons.horizontal_rule, + 'horizontal_rule_sharp': Icons.horizontal_rule_sharp, + 'horizontal_rule_rounded': Icons.horizontal_rule_rounded, + 'horizontal_rule_outlined': Icons.horizontal_rule_outlined, + 'horizontal_split': Icons.horizontal_split, + 'horizontal_split_sharp': Icons.horizontal_split_sharp, + 'horizontal_split_rounded': Icons.horizontal_split_rounded, + 'horizontal_split_outlined': Icons.horizontal_split_outlined, + 'hot_tub': Icons.hot_tub, + 'hot_tub_sharp': Icons.hot_tub_sharp, + 'hot_tub_rounded': Icons.hot_tub_rounded, + 'hot_tub_outlined': Icons.hot_tub_outlined, + 'hotel': Icons.hotel, + 'hotel_sharp': Icons.hotel_sharp, + 'hotel_rounded': Icons.hotel_rounded, + 'hotel_outlined': Icons.hotel_outlined, + 'hourglass_bottom': Icons.hourglass_bottom, + 'hourglass_bottom_sharp': Icons.hourglass_bottom_sharp, + 'hourglass_bottom_rounded': Icons.hourglass_bottom_rounded, + 'hourglass_bottom_outlined': Icons.hourglass_bottom_outlined, + 'hourglass_disabled': Icons.hourglass_disabled, + 'hourglass_disabled_sharp': Icons.hourglass_disabled_sharp, + 'hourglass_disabled_rounded': Icons.hourglass_disabled_rounded, + 'hourglass_disabled_outlined': Icons.hourglass_disabled_outlined, + 'hourglass_empty': Icons.hourglass_empty, + 'hourglass_empty_sharp': Icons.hourglass_empty_sharp, + 'hourglass_empty_rounded': Icons.hourglass_empty_rounded, + 'hourglass_empty_outlined': Icons.hourglass_empty_outlined, + 'hourglass_full': Icons.hourglass_full, + 'hourglass_full_sharp': Icons.hourglass_full_sharp, + 'hourglass_full_rounded': Icons.hourglass_full_rounded, + 'hourglass_full_outlined': Icons.hourglass_full_outlined, + 'hourglass_top': Icons.hourglass_top, + 'hourglass_top_sharp': Icons.hourglass_top_sharp, + 'hourglass_top_rounded': Icons.hourglass_top_rounded, + 'hourglass_top_outlined': Icons.hourglass_top_outlined, + 'house': Icons.house, + 'house_sharp': Icons.house_sharp, + 'house_rounded': Icons.house_rounded, + 'house_outlined': Icons.house_outlined, + 'house_siding': Icons.house_siding, + 'house_siding_sharp': Icons.house_siding_sharp, + 'house_siding_rounded': Icons.house_siding_rounded, + 'house_siding_outlined': Icons.house_siding_outlined, + 'houseboat': Icons.houseboat, + 'houseboat_sharp': Icons.houseboat_sharp, + 'houseboat_rounded': Icons.houseboat_rounded, + 'houseboat_outlined': Icons.houseboat_outlined, + 'how_to_reg': Icons.how_to_reg, + 'how_to_reg_sharp': Icons.how_to_reg_sharp, + 'how_to_reg_rounded': Icons.how_to_reg_rounded, + 'how_to_reg_outlined': Icons.how_to_reg_outlined, + 'how_to_vote': Icons.how_to_vote, + 'how_to_vote_sharp': Icons.how_to_vote_sharp, + 'how_to_vote_rounded': Icons.how_to_vote_rounded, + 'how_to_vote_outlined': Icons.how_to_vote_outlined, + 'http': Icons.http, + 'http_sharp': Icons.http_sharp, + 'http_rounded': Icons.http_rounded, + 'http_outlined': Icons.http_outlined, + 'https': Icons.https, + 'https_sharp': Icons.https_sharp, + 'https_rounded': Icons.https_rounded, + 'https_outlined': Icons.https_outlined, + 'hvac': Icons.hvac, + 'hvac_sharp': Icons.hvac_sharp, + 'hvac_rounded': Icons.hvac_rounded, + 'hvac_outlined': Icons.hvac_outlined, + 'ice_skating': Icons.ice_skating, + 'ice_skating_sharp': Icons.ice_skating_sharp, + 'ice_skating_rounded': Icons.ice_skating_rounded, + 'ice_skating_outlined': Icons.ice_skating_outlined, + 'icecream': Icons.icecream, + 'icecream_sharp': Icons.icecream_sharp, + 'icecream_rounded': Icons.icecream_rounded, + 'icecream_outlined': Icons.icecream_outlined, + 'image': Icons.image, + 'image_sharp': Icons.image_sharp, + 'image_rounded': Icons.image_rounded, + 'image_outlined': Icons.image_outlined, + 'image_aspect_ratio': Icons.image_aspect_ratio, + 'image_aspect_ratio_sharp': Icons.image_aspect_ratio_sharp, + 'image_aspect_ratio_rounded': Icons.image_aspect_ratio_rounded, + 'image_aspect_ratio_outlined': Icons.image_aspect_ratio_outlined, + 'image_not_supported': Icons.image_not_supported, + 'image_not_supported_sharp': Icons.image_not_supported_sharp, + 'image_not_supported_rounded': Icons.image_not_supported_rounded, + 'image_not_supported_outlined': Icons.image_not_supported_outlined, + 'image_search': Icons.image_search, + 'image_search_sharp': Icons.image_search_sharp, + 'image_search_rounded': Icons.image_search_rounded, + 'image_search_outlined': Icons.image_search_outlined, + 'imagesearch_roller': Icons.imagesearch_roller, + 'imagesearch_roller_sharp': Icons.imagesearch_roller_sharp, + 'imagesearch_roller_rounded': Icons.imagesearch_roller_rounded, + 'imagesearch_roller_outlined': Icons.imagesearch_roller_outlined, + 'import_contacts': Icons.import_contacts, + 'import_contacts_sharp': Icons.import_contacts_sharp, + 'import_contacts_rounded': Icons.import_contacts_rounded, + 'import_contacts_outlined': Icons.import_contacts_outlined, + 'import_export': Icons.import_export, + 'import_export_sharp': Icons.import_export_sharp, + 'import_export_rounded': Icons.import_export_rounded, + 'import_export_outlined': Icons.import_export_outlined, + 'important_devices': Icons.important_devices, + 'important_devices_sharp': Icons.important_devices_sharp, + 'important_devices_rounded': Icons.important_devices_rounded, + 'important_devices_outlined': Icons.important_devices_outlined, + 'inbox': Icons.inbox, + 'inbox_sharp': Icons.inbox_sharp, + 'inbox_rounded': Icons.inbox_rounded, + 'inbox_outlined': Icons.inbox_outlined, + 'indeterminate_check_box': Icons.indeterminate_check_box, + 'indeterminate_check_box_sharp': Icons.indeterminate_check_box_sharp, + 'indeterminate_check_box_rounded': + Icons.indeterminate_check_box_rounded, + 'indeterminate_check_box_outlined': + Icons.indeterminate_check_box_outlined, + 'info': Icons.info, + 'info_sharp': Icons.info_sharp, + 'info_rounded': Icons.info_rounded, + 'info_outlined': Icons.info_outlined, + 'info_outline': Icons.info_outline, + 'info_outline_sharp': Icons.info_outline_sharp, + 'info_outline_rounded': Icons.info_outline_rounded, + 'input': Icons.input, + 'input_sharp': Icons.input_sharp, + 'input_rounded': Icons.input_rounded, + 'input_outlined': Icons.input_outlined, + 'insert_chart': Icons.insert_chart, + 'insert_chart_sharp': Icons.insert_chart_sharp, + 'insert_chart_rounded': Icons.insert_chart_rounded, + 'insert_chart_outlined': Icons.insert_chart_outlined, + 'insert_chart_outlined_sharp': Icons.insert_chart_outlined_sharp, + 'insert_chart_outlined_rounded': Icons.insert_chart_outlined_rounded, + 'insert_chart_outlined_outlined': Icons.insert_chart_outlined_outlined, + 'insert_comment': Icons.insert_comment, + 'insert_comment_sharp': Icons.insert_comment_sharp, + 'insert_comment_rounded': Icons.insert_comment_rounded, + 'insert_comment_outlined': Icons.insert_comment_outlined, + 'insert_drive_file': Icons.insert_drive_file, + 'insert_drive_file_sharp': Icons.insert_drive_file_sharp, + 'insert_drive_file_rounded': Icons.insert_drive_file_rounded, + 'insert_drive_file_outlined': Icons.insert_drive_file_outlined, + 'insert_emoticon': Icons.insert_emoticon, + 'insert_emoticon_sharp': Icons.insert_emoticon_sharp, + 'insert_emoticon_rounded': Icons.insert_emoticon_rounded, + 'insert_emoticon_outlined': Icons.insert_emoticon_outlined, + 'insert_invitation': Icons.insert_invitation, + 'insert_invitation_sharp': Icons.insert_invitation_sharp, + 'insert_invitation_rounded': Icons.insert_invitation_rounded, + 'insert_invitation_outlined': Icons.insert_invitation_outlined, + 'insert_link': Icons.insert_link, + 'insert_link_sharp': Icons.insert_link_sharp, + 'insert_link_rounded': Icons.insert_link_rounded, + 'insert_link_outlined': Icons.insert_link_outlined, + 'insert_photo': Icons.insert_photo, + 'insert_photo_sharp': Icons.insert_photo_sharp, + 'insert_photo_rounded': Icons.insert_photo_rounded, + 'insert_photo_outlined': Icons.insert_photo_outlined, + 'insights': Icons.insights, + 'insights_sharp': Icons.insights_sharp, + 'insights_rounded': Icons.insights_rounded, + 'insights_outlined': Icons.insights_outlined, + 'integration_instructions': Icons.integration_instructions, + 'integration_instructions_sharp': Icons.integration_instructions_sharp, + 'integration_instructions_rounded': + Icons.integration_instructions_rounded, + 'integration_instructions_outlined': + Icons.integration_instructions_outlined, + 'inventory': Icons.inventory, + 'inventory_sharp': Icons.inventory_sharp, + 'inventory_rounded': Icons.inventory_rounded, + 'inventory_outlined': Icons.inventory_outlined, + 'inventory_2': Icons.inventory_2, + 'inventory_2_sharp': Icons.inventory_2_sharp, + 'inventory_2_rounded': Icons.inventory_2_rounded, + 'inventory_2_outlined': Icons.inventory_2_outlined, + 'invert_colors': Icons.invert_colors, + 'invert_colors_sharp': Icons.invert_colors_sharp, + 'invert_colors_rounded': Icons.invert_colors_rounded, + 'invert_colors_outlined': Icons.invert_colors_outlined, + 'invert_colors_off': Icons.invert_colors_off, + 'invert_colors_off_sharp': Icons.invert_colors_off_sharp, + 'invert_colors_off_rounded': Icons.invert_colors_off_rounded, + 'invert_colors_off_outlined': Icons.invert_colors_off_outlined, + 'invert_colors_on': Icons.invert_colors_on, + 'invert_colors_on_sharp': Icons.invert_colors_on_sharp, + 'invert_colors_on_rounded': Icons.invert_colors_on_rounded, + 'invert_colors_on_outlined': Icons.invert_colors_on_outlined, + 'ios_share': Icons.ios_share, + 'ios_share_sharp': Icons.ios_share_sharp, + 'ios_share_rounded': Icons.ios_share_rounded, + 'ios_share_outlined': Icons.ios_share_outlined, + 'iron': Icons.iron, + 'iron_sharp': Icons.iron_sharp, + 'iron_rounded': Icons.iron_rounded, + 'iron_outlined': Icons.iron_outlined, + 'iso': Icons.iso, + 'iso_sharp': Icons.iso_sharp, + 'iso_rounded': Icons.iso_rounded, + 'iso_outlined': Icons.iso_outlined, + 'kayaking': Icons.kayaking, + 'kayaking_sharp': Icons.kayaking_sharp, + 'kayaking_rounded': Icons.kayaking_rounded, + 'kayaking_outlined': Icons.kayaking_outlined, + 'keyboard': Icons.keyboard, + 'keyboard_sharp': Icons.keyboard_sharp, + 'keyboard_rounded': Icons.keyboard_rounded, + 'keyboard_outlined': Icons.keyboard_outlined, + 'keyboard_alt': Icons.keyboard_alt, + 'keyboard_alt_sharp': Icons.keyboard_alt_sharp, + 'keyboard_alt_rounded': Icons.keyboard_alt_rounded, + 'keyboard_alt_outlined': Icons.keyboard_alt_outlined, + 'keyboard_arrow_down': Icons.keyboard_arrow_down, + 'keyboard_arrow_down_sharp': Icons.keyboard_arrow_down_sharp, + 'keyboard_arrow_down_rounded': Icons.keyboard_arrow_down_rounded, + 'keyboard_arrow_down_outlined': Icons.keyboard_arrow_down_outlined, + 'keyboard_arrow_left': Icons.keyboard_arrow_left, + 'keyboard_arrow_left_sharp': Icons.keyboard_arrow_left_sharp, + 'keyboard_arrow_left_rounded': Icons.keyboard_arrow_left_rounded, + 'keyboard_arrow_left_outlined': Icons.keyboard_arrow_left_outlined, + 'keyboard_arrow_right': Icons.keyboard_arrow_right, + 'keyboard_arrow_right_sharp': Icons.keyboard_arrow_right_sharp, + 'keyboard_arrow_right_rounded': Icons.keyboard_arrow_right_rounded, + 'keyboard_arrow_right_outlined': Icons.keyboard_arrow_right_outlined, + 'keyboard_arrow_up': Icons.keyboard_arrow_up, + 'keyboard_arrow_up_sharp': Icons.keyboard_arrow_up_sharp, + 'keyboard_arrow_up_rounded': Icons.keyboard_arrow_up_rounded, + 'keyboard_arrow_up_outlined': Icons.keyboard_arrow_up_outlined, + 'keyboard_backspace': Icons.keyboard_backspace, + 'keyboard_backspace_sharp': Icons.keyboard_backspace_sharp, + 'keyboard_backspace_rounded': Icons.keyboard_backspace_rounded, + 'keyboard_backspace_outlined': Icons.keyboard_backspace_outlined, + 'keyboard_capslock': Icons.keyboard_capslock, + 'keyboard_capslock_sharp': Icons.keyboard_capslock_sharp, + 'keyboard_capslock_rounded': Icons.keyboard_capslock_rounded, + 'keyboard_capslock_outlined': Icons.keyboard_capslock_outlined, + 'keyboard_control': Icons.keyboard_control, + 'keyboard_control_sharp': Icons.keyboard_control_sharp, + 'keyboard_control_rounded': Icons.keyboard_control_rounded, + 'keyboard_control_outlined': Icons.keyboard_control_outlined, + 'keyboard_hide': Icons.keyboard_hide, + 'keyboard_hide_sharp': Icons.keyboard_hide_sharp, + 'keyboard_hide_rounded': Icons.keyboard_hide_rounded, + 'keyboard_hide_outlined': Icons.keyboard_hide_outlined, + 'keyboard_return': Icons.keyboard_return, + 'keyboard_return_sharp': Icons.keyboard_return_sharp, + 'keyboard_return_rounded': Icons.keyboard_return_rounded, + 'keyboard_return_outlined': Icons.keyboard_return_outlined, + 'keyboard_tab': Icons.keyboard_tab, + 'keyboard_tab_sharp': Icons.keyboard_tab_sharp, + 'keyboard_tab_rounded': Icons.keyboard_tab_rounded, + 'keyboard_tab_outlined': Icons.keyboard_tab_outlined, + 'keyboard_voice': Icons.keyboard_voice, + 'keyboard_voice_sharp': Icons.keyboard_voice_sharp, + 'keyboard_voice_rounded': Icons.keyboard_voice_rounded, + 'keyboard_voice_outlined': Icons.keyboard_voice_outlined, + 'king_bed': Icons.king_bed, + 'king_bed_sharp': Icons.king_bed_sharp, + 'king_bed_rounded': Icons.king_bed_rounded, + 'king_bed_outlined': Icons.king_bed_outlined, + 'kitchen': Icons.kitchen, + 'kitchen_sharp': Icons.kitchen_sharp, + 'kitchen_rounded': Icons.kitchen_rounded, + 'kitchen_outlined': Icons.kitchen_outlined, + 'kitesurfing': Icons.kitesurfing, + 'kitesurfing_sharp': Icons.kitesurfing_sharp, + 'kitesurfing_rounded': Icons.kitesurfing_rounded, + 'kitesurfing_outlined': Icons.kitesurfing_outlined, + 'label': Icons.label, + 'label_sharp': Icons.label_sharp, + 'label_rounded': Icons.label_rounded, + 'label_outlined': Icons.label_outlined, + 'label_important': Icons.label_important, + 'label_important_sharp': Icons.label_important_sharp, + 'label_important_rounded': Icons.label_important_rounded, + 'label_important_outlined': Icons.label_important_outlined, + 'label_important_outline': Icons.label_important_outline, + 'label_important_outline_sharp': Icons.label_important_outline_sharp, + 'label_important_outline_rounded': + Icons.label_important_outline_rounded, + 'label_off': Icons.label_off, + 'label_off_sharp': Icons.label_off_sharp, + 'label_off_rounded': Icons.label_off_rounded, + 'label_off_outlined': Icons.label_off_outlined, + 'label_outline': Icons.label_outline, + 'label_outline_sharp': Icons.label_outline_sharp, + 'label_outline_rounded': Icons.label_outline_rounded, + 'landscape': Icons.landscape, + 'landscape_sharp': Icons.landscape_sharp, + 'landscape_rounded': Icons.landscape_rounded, + 'landscape_outlined': Icons.landscape_outlined, + 'language': Icons.language, + 'language_sharp': Icons.language_sharp, + 'language_rounded': Icons.language_rounded, + 'language_outlined': Icons.language_outlined, + 'laptop': Icons.laptop, + 'laptop_sharp': Icons.laptop_sharp, + 'laptop_rounded': Icons.laptop_rounded, + 'laptop_outlined': Icons.laptop_outlined, + 'laptop_chromebook': Icons.laptop_chromebook, + 'laptop_chromebook_sharp': Icons.laptop_chromebook_sharp, + 'laptop_chromebook_rounded': Icons.laptop_chromebook_rounded, + 'laptop_chromebook_outlined': Icons.laptop_chromebook_outlined, + 'laptop_mac': Icons.laptop_mac, + 'laptop_mac_sharp': Icons.laptop_mac_sharp, + 'laptop_mac_rounded': Icons.laptop_mac_rounded, + 'laptop_mac_outlined': Icons.laptop_mac_outlined, + 'laptop_windows': Icons.laptop_windows, + 'laptop_windows_sharp': Icons.laptop_windows_sharp, + 'laptop_windows_rounded': Icons.laptop_windows_rounded, + 'laptop_windows_outlined': Icons.laptop_windows_outlined, + 'last_page': Icons.last_page, + 'last_page_sharp': Icons.last_page_sharp, + 'last_page_rounded': Icons.last_page_rounded, + 'last_page_outlined': Icons.last_page_outlined, + 'launch': Icons.launch, + 'launch_sharp': Icons.launch_sharp, + 'launch_rounded': Icons.launch_rounded, + 'launch_outlined': Icons.launch_outlined, + 'layers': Icons.layers, + 'layers_sharp': Icons.layers_sharp, + 'layers_rounded': Icons.layers_rounded, + 'layers_outlined': Icons.layers_outlined, + 'layers_clear': Icons.layers_clear, + 'layers_clear_sharp': Icons.layers_clear_sharp, + 'layers_clear_rounded': Icons.layers_clear_rounded, + 'layers_clear_outlined': Icons.layers_clear_outlined, + 'leaderboard': Icons.leaderboard, + 'leaderboard_sharp': Icons.leaderboard_sharp, + 'leaderboard_rounded': Icons.leaderboard_rounded, + 'leaderboard_outlined': Icons.leaderboard_outlined, + 'leak_add': Icons.leak_add, + 'leak_add_sharp': Icons.leak_add_sharp, + 'leak_add_rounded': Icons.leak_add_rounded, + 'leak_add_outlined': Icons.leak_add_outlined, + 'leak_remove': Icons.leak_remove, + 'leak_remove_sharp': Icons.leak_remove_sharp, + 'leak_remove_rounded': Icons.leak_remove_rounded, + 'leak_remove_outlined': Icons.leak_remove_outlined, + 'leave_bags_at_home': Icons.leave_bags_at_home, + 'leave_bags_at_home_sharp': Icons.leave_bags_at_home_sharp, + 'leave_bags_at_home_rounded': Icons.leave_bags_at_home_rounded, + 'leave_bags_at_home_outlined': Icons.leave_bags_at_home_outlined, + 'legend_toggle': Icons.legend_toggle, + 'legend_toggle_sharp': Icons.legend_toggle_sharp, + 'legend_toggle_rounded': Icons.legend_toggle_rounded, + 'legend_toggle_outlined': Icons.legend_toggle_outlined, + 'lens': Icons.lens, + 'lens_sharp': Icons.lens_sharp, + 'lens_rounded': Icons.lens_rounded, + 'lens_outlined': Icons.lens_outlined, + 'lens_blur': Icons.lens_blur, + 'lens_blur_sharp': Icons.lens_blur_sharp, + 'lens_blur_rounded': Icons.lens_blur_rounded, + 'lens_blur_outlined': Icons.lens_blur_outlined, + 'library_add': Icons.library_add, + 'library_add_sharp': Icons.library_add_sharp, + 'library_add_rounded': Icons.library_add_rounded, + 'library_add_outlined': Icons.library_add_outlined, + 'library_add_check': Icons.library_add_check, + 'library_add_check_sharp': Icons.library_add_check_sharp, + 'library_add_check_rounded': Icons.library_add_check_rounded, + 'library_add_check_outlined': Icons.library_add_check_outlined, + 'library_books': Icons.library_books, + 'library_books_sharp': Icons.library_books_sharp, + 'library_books_rounded': Icons.library_books_rounded, + 'library_books_outlined': Icons.library_books_outlined, + 'library_music': Icons.library_music, + 'library_music_sharp': Icons.library_music_sharp, + 'library_music_rounded': Icons.library_music_rounded, + 'library_music_outlined': Icons.library_music_outlined, + 'light': Icons.light, + 'light_sharp': Icons.light_sharp, + 'light_rounded': Icons.light_rounded, + 'light_outlined': Icons.light_outlined, + 'light_mode': Icons.light_mode, + 'light_mode_sharp': Icons.light_mode_sharp, + 'light_mode_rounded': Icons.light_mode_rounded, + 'light_mode_outlined': Icons.light_mode_outlined, + 'lightbulb': Icons.lightbulb, + 'lightbulb_sharp': Icons.lightbulb_sharp, + 'lightbulb_rounded': Icons.lightbulb_rounded, + 'lightbulb_outlined': Icons.lightbulb_outlined, + 'lightbulb_outline': Icons.lightbulb_outline, + 'lightbulb_outline_sharp': Icons.lightbulb_outline_sharp, + 'lightbulb_outline_rounded': Icons.lightbulb_outline_rounded, + 'line_style': Icons.line_style, + 'line_style_sharp': Icons.line_style_sharp, + 'line_style_rounded': Icons.line_style_rounded, + 'line_style_outlined': Icons.line_style_outlined, + 'line_weight': Icons.line_weight, + 'line_weight_sharp': Icons.line_weight_sharp, + 'line_weight_rounded': Icons.line_weight_rounded, + 'line_weight_outlined': Icons.line_weight_outlined, + 'linear_scale': Icons.linear_scale, + 'linear_scale_sharp': Icons.linear_scale_sharp, + 'linear_scale_rounded': Icons.linear_scale_rounded, + 'linear_scale_outlined': Icons.linear_scale_outlined, + 'link': Icons.link, + 'link_sharp': Icons.link_sharp, + 'link_rounded': Icons.link_rounded, + 'link_outlined': Icons.link_outlined, + 'link_off': Icons.link_off, + 'link_off_sharp': Icons.link_off_sharp, + 'link_off_rounded': Icons.link_off_rounded, + 'link_off_outlined': Icons.link_off_outlined, + 'linked_camera': Icons.linked_camera, + 'linked_camera_sharp': Icons.linked_camera_sharp, + 'linked_camera_rounded': Icons.linked_camera_rounded, + 'linked_camera_outlined': Icons.linked_camera_outlined, + 'liquor': Icons.liquor, + 'liquor_sharp': Icons.liquor_sharp, + 'liquor_rounded': Icons.liquor_rounded, + 'liquor_outlined': Icons.liquor_outlined, + 'list': Icons.list, + 'list_sharp': Icons.list_sharp, + 'list_rounded': Icons.list_rounded, + 'list_outlined': Icons.list_outlined, + 'list_alt': Icons.list_alt, + 'list_alt_sharp': Icons.list_alt_sharp, + 'list_alt_rounded': Icons.list_alt_rounded, + 'list_alt_outlined': Icons.list_alt_outlined, + 'live_help': Icons.live_help, + 'live_help_sharp': Icons.live_help_sharp, + 'live_help_rounded': Icons.live_help_rounded, + 'live_help_outlined': Icons.live_help_outlined, + 'live_tv': Icons.live_tv, + 'live_tv_sharp': Icons.live_tv_sharp, + 'live_tv_rounded': Icons.live_tv_rounded, + 'live_tv_outlined': Icons.live_tv_outlined, + 'living': Icons.living, + 'living_sharp': Icons.living_sharp, + 'living_rounded': Icons.living_rounded, + 'living_outlined': Icons.living_outlined, + 'local_activity': Icons.local_activity, + 'local_activity_sharp': Icons.local_activity_sharp, + 'local_activity_rounded': Icons.local_activity_rounded, + 'local_activity_outlined': Icons.local_activity_outlined, + 'local_airport': Icons.local_airport, + 'local_airport_sharp': Icons.local_airport_sharp, + 'local_airport_rounded': Icons.local_airport_rounded, + 'local_airport_outlined': Icons.local_airport_outlined, + 'local_atm': Icons.local_atm, + 'local_atm_sharp': Icons.local_atm_sharp, + 'local_atm_rounded': Icons.local_atm_rounded, + 'local_atm_outlined': Icons.local_atm_outlined, + 'local_attraction': Icons.local_attraction, + 'local_attraction_sharp': Icons.local_attraction_sharp, + 'local_attraction_rounded': Icons.local_attraction_rounded, + 'local_attraction_outlined': Icons.local_attraction_outlined, + 'local_bar': Icons.local_bar, + 'local_bar_sharp': Icons.local_bar_sharp, + 'local_bar_rounded': Icons.local_bar_rounded, + 'local_bar_outlined': Icons.local_bar_outlined, + 'local_cafe': Icons.local_cafe, + 'local_cafe_sharp': Icons.local_cafe_sharp, + 'local_cafe_rounded': Icons.local_cafe_rounded, + 'local_cafe_outlined': Icons.local_cafe_outlined, + 'local_car_wash': Icons.local_car_wash, + 'local_car_wash_sharp': Icons.local_car_wash_sharp, + 'local_car_wash_rounded': Icons.local_car_wash_rounded, + 'local_car_wash_outlined': Icons.local_car_wash_outlined, + 'local_convenience_store': Icons.local_convenience_store, + 'local_convenience_store_sharp': Icons.local_convenience_store_sharp, + 'local_convenience_store_rounded': + Icons.local_convenience_store_rounded, + 'local_convenience_store_outlined': + Icons.local_convenience_store_outlined, + 'local_dining': Icons.local_dining, + 'local_dining_sharp': Icons.local_dining_sharp, + 'local_dining_rounded': Icons.local_dining_rounded, + 'local_dining_outlined': Icons.local_dining_outlined, + 'local_drink': Icons.local_drink, + 'local_drink_sharp': Icons.local_drink_sharp, + 'local_drink_rounded': Icons.local_drink_rounded, + 'local_drink_outlined': Icons.local_drink_outlined, + 'local_fire_department': Icons.local_fire_department, + 'local_fire_department_sharp': Icons.local_fire_department_sharp, + 'local_fire_department_rounded': Icons.local_fire_department_rounded, + 'local_fire_department_outlined': Icons.local_fire_department_outlined, + 'local_florist': Icons.local_florist, + 'local_florist_sharp': Icons.local_florist_sharp, + 'local_florist_rounded': Icons.local_florist_rounded, + 'local_florist_outlined': Icons.local_florist_outlined, + 'local_gas_station': Icons.local_gas_station, + 'local_gas_station_sharp': Icons.local_gas_station_sharp, + 'local_gas_station_rounded': Icons.local_gas_station_rounded, + 'local_gas_station_outlined': Icons.local_gas_station_outlined, + 'local_grocery_store': Icons.local_grocery_store, + 'local_grocery_store_sharp': Icons.local_grocery_store_sharp, + 'local_grocery_store_rounded': Icons.local_grocery_store_rounded, + 'local_grocery_store_outlined': Icons.local_grocery_store_outlined, + 'local_hospital': Icons.local_hospital, + 'local_hospital_sharp': Icons.local_hospital_sharp, + 'local_hospital_rounded': Icons.local_hospital_rounded, + 'local_hospital_outlined': Icons.local_hospital_outlined, + 'local_hotel': Icons.local_hotel, + 'local_hotel_sharp': Icons.local_hotel_sharp, + 'local_hotel_rounded': Icons.local_hotel_rounded, + 'local_hotel_outlined': Icons.local_hotel_outlined, + 'local_laundry_service': Icons.local_laundry_service, + 'local_laundry_service_sharp': Icons.local_laundry_service_sharp, + 'local_laundry_service_rounded': Icons.local_laundry_service_rounded, + 'local_laundry_service_outlined': Icons.local_laundry_service_outlined, + 'local_library': Icons.local_library, + 'local_library_sharp': Icons.local_library_sharp, + 'local_library_rounded': Icons.local_library_rounded, + 'local_library_outlined': Icons.local_library_outlined, + 'local_mall': Icons.local_mall, + 'local_mall_sharp': Icons.local_mall_sharp, + 'local_mall_rounded': Icons.local_mall_rounded, + 'local_mall_outlined': Icons.local_mall_outlined, + 'local_movies': Icons.local_movies, + 'local_movies_sharp': Icons.local_movies_sharp, + 'local_movies_rounded': Icons.local_movies_rounded, + 'local_movies_outlined': Icons.local_movies_outlined, + 'local_offer': Icons.local_offer, + 'local_offer_sharp': Icons.local_offer_sharp, + 'local_offer_rounded': Icons.local_offer_rounded, + 'local_offer_outlined': Icons.local_offer_outlined, + 'local_parking': Icons.local_parking, + 'local_parking_sharp': Icons.local_parking_sharp, + 'local_parking_rounded': Icons.local_parking_rounded, + 'local_parking_outlined': Icons.local_parking_outlined, + 'local_pharmacy': Icons.local_pharmacy, + 'local_pharmacy_sharp': Icons.local_pharmacy_sharp, + 'local_pharmacy_rounded': Icons.local_pharmacy_rounded, + 'local_pharmacy_outlined': Icons.local_pharmacy_outlined, + 'local_phone': Icons.local_phone, + 'local_phone_sharp': Icons.local_phone_sharp, + 'local_phone_rounded': Icons.local_phone_rounded, + 'local_phone_outlined': Icons.local_phone_outlined, + 'local_pizza': Icons.local_pizza, + 'local_pizza_sharp': Icons.local_pizza_sharp, + 'local_pizza_rounded': Icons.local_pizza_rounded, + 'local_pizza_outlined': Icons.local_pizza_outlined, + 'local_play': Icons.local_play, + 'local_play_sharp': Icons.local_play_sharp, + 'local_play_rounded': Icons.local_play_rounded, + 'local_play_outlined': Icons.local_play_outlined, + 'local_police': Icons.local_police, + 'local_police_sharp': Icons.local_police_sharp, + 'local_police_rounded': Icons.local_police_rounded, + 'local_police_outlined': Icons.local_police_outlined, + 'local_post_office': Icons.local_post_office, + 'local_post_office_sharp': Icons.local_post_office_sharp, + 'local_post_office_rounded': Icons.local_post_office_rounded, + 'local_post_office_outlined': Icons.local_post_office_outlined, + 'local_print_shop': Icons.local_print_shop, + 'local_print_shop_sharp': Icons.local_print_shop_sharp, + 'local_print_shop_rounded': Icons.local_print_shop_rounded, + 'local_print_shop_outlined': Icons.local_print_shop_outlined, + 'local_printshop': Icons.local_printshop, + 'local_printshop_sharp': Icons.local_printshop_sharp, + 'local_printshop_rounded': Icons.local_printshop_rounded, + 'local_printshop_outlined': Icons.local_printshop_outlined, + 'local_restaurant': Icons.local_restaurant, + 'local_restaurant_sharp': Icons.local_restaurant_sharp, + 'local_restaurant_rounded': Icons.local_restaurant_rounded, + 'local_restaurant_outlined': Icons.local_restaurant_outlined, + 'local_see': Icons.local_see, + 'local_see_sharp': Icons.local_see_sharp, + 'local_see_rounded': Icons.local_see_rounded, + 'local_see_outlined': Icons.local_see_outlined, + 'local_shipping': Icons.local_shipping, + 'local_shipping_sharp': Icons.local_shipping_sharp, + 'local_shipping_rounded': Icons.local_shipping_rounded, + 'local_shipping_outlined': Icons.local_shipping_outlined, + 'local_taxi': Icons.local_taxi, + 'local_taxi_sharp': Icons.local_taxi_sharp, + 'local_taxi_rounded': Icons.local_taxi_rounded, + 'local_taxi_outlined': Icons.local_taxi_outlined, + 'location_city': Icons.location_city, + 'location_city_sharp': Icons.location_city_sharp, + 'location_city_rounded': Icons.location_city_rounded, + 'location_city_outlined': Icons.location_city_outlined, + 'location_disabled': Icons.location_disabled, + 'location_disabled_sharp': Icons.location_disabled_sharp, + 'location_disabled_rounded': Icons.location_disabled_rounded, + 'location_disabled_outlined': Icons.location_disabled_outlined, + 'location_history': Icons.location_history, + 'location_history_sharp': Icons.location_history_sharp, + 'location_history_rounded': Icons.location_history_rounded, + 'location_history_outlined': Icons.location_history_outlined, + 'location_off': Icons.location_off, + 'location_off_sharp': Icons.location_off_sharp, + 'location_off_rounded': Icons.location_off_rounded, + 'location_off_outlined': Icons.location_off_outlined, + 'location_on': Icons.location_on, + 'location_on_sharp': Icons.location_on_sharp, + 'location_on_rounded': Icons.location_on_rounded, + 'location_on_outlined': Icons.location_on_outlined, + 'location_pin': Icons.location_pin, + 'location_searching': Icons.location_searching, + 'location_searching_sharp': Icons.location_searching_sharp, + 'location_searching_rounded': Icons.location_searching_rounded, + 'location_searching_outlined': Icons.location_searching_outlined, + 'lock': Icons.lock, + 'lock_sharp': Icons.lock_sharp, + 'lock_rounded': Icons.lock_rounded, + 'lock_outlined': Icons.lock_outlined, + 'lock_clock': Icons.lock_clock, + 'lock_clock_sharp': Icons.lock_clock_sharp, + 'lock_clock_rounded': Icons.lock_clock_rounded, + 'lock_clock_outlined': Icons.lock_clock_outlined, + 'lock_open': Icons.lock_open, + 'lock_open_sharp': Icons.lock_open_sharp, + 'lock_open_rounded': Icons.lock_open_rounded, + 'lock_open_outlined': Icons.lock_open_outlined, + 'lock_outline': Icons.lock_outline, + 'lock_outline_sharp': Icons.lock_outline_sharp, + 'lock_outline_rounded': Icons.lock_outline_rounded, + 'login': Icons.login, + 'login_sharp': Icons.login_sharp, + 'login_rounded': Icons.login_rounded, + 'login_outlined': Icons.login_outlined, + 'logout': Icons.logout, + 'logout_sharp': Icons.logout_sharp, + 'logout_rounded': Icons.logout_rounded, + 'logout_outlined': Icons.logout_outlined, + 'looks': Icons.looks, + 'looks_sharp': Icons.looks_sharp, + 'looks_rounded': Icons.looks_rounded, + 'looks_outlined': Icons.looks_outlined, + 'looks_3': Icons.looks_3, + 'looks_3_sharp': Icons.looks_3_sharp, + 'looks_3_rounded': Icons.looks_3_rounded, + 'looks_3_outlined': Icons.looks_3_outlined, + 'looks_4': Icons.looks_4, + 'looks_4_sharp': Icons.looks_4_sharp, + 'looks_4_rounded': Icons.looks_4_rounded, + 'looks_4_outlined': Icons.looks_4_outlined, + 'looks_5': Icons.looks_5, + 'looks_5_sharp': Icons.looks_5_sharp, + 'looks_5_rounded': Icons.looks_5_rounded, + 'looks_5_outlined': Icons.looks_5_outlined, + 'looks_6': Icons.looks_6, + 'looks_6_sharp': Icons.looks_6_sharp, + 'looks_6_rounded': Icons.looks_6_rounded, + 'looks_6_outlined': Icons.looks_6_outlined, + 'looks_one': Icons.looks_one, + 'looks_one_sharp': Icons.looks_one_sharp, + 'looks_one_rounded': Icons.looks_one_rounded, + 'looks_one_outlined': Icons.looks_one_outlined, + 'looks_two': Icons.looks_two, + 'looks_two_sharp': Icons.looks_two_sharp, + 'looks_two_rounded': Icons.looks_two_rounded, + 'looks_two_outlined': Icons.looks_two_outlined, + 'loop': Icons.loop, + 'loop_sharp': Icons.loop_sharp, + 'loop_rounded': Icons.loop_rounded, + 'loop_outlined': Icons.loop_outlined, + 'loupe': Icons.loupe, + 'loupe_sharp': Icons.loupe_sharp, + 'loupe_rounded': Icons.loupe_rounded, + 'loupe_outlined': Icons.loupe_outlined, + 'low_priority': Icons.low_priority, + 'low_priority_sharp': Icons.low_priority_sharp, + 'low_priority_rounded': Icons.low_priority_rounded, + 'low_priority_outlined': Icons.low_priority_outlined, + 'loyalty': Icons.loyalty, + 'loyalty_sharp': Icons.loyalty_sharp, + 'loyalty_rounded': Icons.loyalty_rounded, + 'loyalty_outlined': Icons.loyalty_outlined, + 'lte_mobiledata': Icons.lte_mobiledata, + 'lte_mobiledata_sharp': Icons.lte_mobiledata_sharp, + 'lte_mobiledata_rounded': Icons.lte_mobiledata_rounded, + 'lte_mobiledata_outlined': Icons.lte_mobiledata_outlined, + 'lte_plus_mobiledata': Icons.lte_plus_mobiledata, + 'lte_plus_mobiledata_sharp': Icons.lte_plus_mobiledata_sharp, + 'lte_plus_mobiledata_rounded': Icons.lte_plus_mobiledata_rounded, + 'lte_plus_mobiledata_outlined': Icons.lte_plus_mobiledata_outlined, + 'luggage': Icons.luggage, + 'luggage_sharp': Icons.luggage_sharp, + 'luggage_rounded': Icons.luggage_rounded, + 'luggage_outlined': Icons.luggage_outlined, + 'lunch_dining': Icons.lunch_dining, + 'lunch_dining_sharp': Icons.lunch_dining_sharp, + 'lunch_dining_rounded': Icons.lunch_dining_rounded, + 'lunch_dining_outlined': Icons.lunch_dining_outlined, + 'mail': Icons.mail, + 'mail_sharp': Icons.mail_sharp, + 'mail_rounded': Icons.mail_rounded, + 'mail_outlined': Icons.mail_outlined, + 'mail_outline': Icons.mail_outline, + 'mail_outline_sharp': Icons.mail_outline_sharp, + 'mail_outline_rounded': Icons.mail_outline_rounded, + 'mail_outline_outlined': Icons.mail_outline_outlined, + 'male': Icons.male, + 'male_sharp': Icons.male_sharp, + 'male_rounded': Icons.male_rounded, + 'male_outlined': Icons.male_outlined, + 'manage_accounts': Icons.manage_accounts, + 'manage_accounts_sharp': Icons.manage_accounts_sharp, + 'manage_accounts_rounded': Icons.manage_accounts_rounded, + 'manage_accounts_outlined': Icons.manage_accounts_outlined, + 'manage_search': Icons.manage_search, + 'manage_search_sharp': Icons.manage_search_sharp, + 'manage_search_rounded': Icons.manage_search_rounded, + 'manage_search_outlined': Icons.manage_search_outlined, + 'map': Icons.map, + 'map_sharp': Icons.map_sharp, + 'map_rounded': Icons.map_rounded, + 'map_outlined': Icons.map_outlined, + 'maps_home_work': Icons.maps_home_work, + 'maps_home_work_sharp': Icons.maps_home_work_sharp, + 'maps_home_work_rounded': Icons.maps_home_work_rounded, + 'maps_home_work_outlined': Icons.maps_home_work_outlined, + 'maps_ugc': Icons.maps_ugc, + 'maps_ugc_sharp': Icons.maps_ugc_sharp, + 'maps_ugc_rounded': Icons.maps_ugc_rounded, + 'maps_ugc_outlined': Icons.maps_ugc_outlined, + 'margin': Icons.margin, + 'margin_sharp': Icons.margin_sharp, + 'margin_rounded': Icons.margin_rounded, + 'margin_outlined': Icons.margin_outlined, + 'mark_as_unread': Icons.mark_as_unread, + 'mark_as_unread_sharp': Icons.mark_as_unread_sharp, + 'mark_as_unread_rounded': Icons.mark_as_unread_rounded, + 'mark_as_unread_outlined': Icons.mark_as_unread_outlined, + 'mark_chat_read': Icons.mark_chat_read, + 'mark_chat_read_sharp': Icons.mark_chat_read_sharp, + 'mark_chat_read_rounded': Icons.mark_chat_read_rounded, + 'mark_chat_read_outlined': Icons.mark_chat_read_outlined, + 'mark_chat_unread': Icons.mark_chat_unread, + 'mark_chat_unread_sharp': Icons.mark_chat_unread_sharp, + 'mark_chat_unread_rounded': Icons.mark_chat_unread_rounded, + 'mark_chat_unread_outlined': Icons.mark_chat_unread_outlined, + 'mark_email_read': Icons.mark_email_read, + 'mark_email_read_sharp': Icons.mark_email_read_sharp, + 'mark_email_read_rounded': Icons.mark_email_read_rounded, + 'mark_email_read_outlined': Icons.mark_email_read_outlined, + 'mark_email_unread': Icons.mark_email_unread, + 'mark_email_unread_sharp': Icons.mark_email_unread_sharp, + 'mark_email_unread_rounded': Icons.mark_email_unread_rounded, + 'mark_email_unread_outlined': Icons.mark_email_unread_outlined, + 'markunread': Icons.markunread, + 'markunread_sharp': Icons.markunread_sharp, + 'markunread_rounded': Icons.markunread_rounded, + 'markunread_outlined': Icons.markunread_outlined, + 'markunread_mailbox': Icons.markunread_mailbox, + 'markunread_mailbox_sharp': Icons.markunread_mailbox_sharp, + 'markunread_mailbox_rounded': Icons.markunread_mailbox_rounded, + 'markunread_mailbox_outlined': Icons.markunread_mailbox_outlined, + 'masks': Icons.masks, + 'masks_sharp': Icons.masks_sharp, + 'masks_rounded': Icons.masks_rounded, + 'masks_outlined': Icons.masks_outlined, + 'maximize': Icons.maximize, + 'maximize_sharp': Icons.maximize_sharp, + 'maximize_rounded': Icons.maximize_rounded, + 'maximize_outlined': Icons.maximize_outlined, + 'media_bluetooth_off': Icons.media_bluetooth_off, + 'media_bluetooth_off_sharp': Icons.media_bluetooth_off_sharp, + 'media_bluetooth_off_rounded': Icons.media_bluetooth_off_rounded, + 'media_bluetooth_off_outlined': Icons.media_bluetooth_off_outlined, + 'media_bluetooth_on': Icons.media_bluetooth_on, + 'media_bluetooth_on_sharp': Icons.media_bluetooth_on_sharp, + 'media_bluetooth_on_rounded': Icons.media_bluetooth_on_rounded, + 'media_bluetooth_on_outlined': Icons.media_bluetooth_on_outlined, + 'mediation': Icons.mediation, + 'mediation_sharp': Icons.mediation_sharp, + 'mediation_rounded': Icons.mediation_rounded, + 'mediation_outlined': Icons.mediation_outlined, + 'medical_services': Icons.medical_services, + 'medical_services_sharp': Icons.medical_services_sharp, + 'medical_services_rounded': Icons.medical_services_rounded, + 'medical_services_outlined': Icons.medical_services_outlined, + 'medication': Icons.medication, + 'medication_sharp': Icons.medication_sharp, + 'medication_rounded': Icons.medication_rounded, + 'medication_outlined': Icons.medication_outlined, + 'meeting_room': Icons.meeting_room, + 'meeting_room_sharp': Icons.meeting_room_sharp, + 'meeting_room_rounded': Icons.meeting_room_rounded, + 'meeting_room_outlined': Icons.meeting_room_outlined, + 'memory': Icons.memory, + 'memory_sharp': Icons.memory_sharp, + 'memory_rounded': Icons.memory_rounded, + 'memory_outlined': Icons.memory_outlined, + 'menu': Icons.menu, + 'menu_sharp': Icons.menu_sharp, + 'menu_rounded': Icons.menu_rounded, + 'menu_outlined': Icons.menu_outlined, + 'menu_book': Icons.menu_book, + 'menu_book_sharp': Icons.menu_book_sharp, + 'menu_book_rounded': Icons.menu_book_rounded, + 'menu_book_outlined': Icons.menu_book_outlined, + 'menu_open': Icons.menu_open, + 'menu_open_sharp': Icons.menu_open_sharp, + 'menu_open_rounded': Icons.menu_open_rounded, + 'menu_open_outlined': Icons.menu_open_outlined, + 'merge_type': Icons.merge_type, + 'merge_type_sharp': Icons.merge_type_sharp, + 'merge_type_rounded': Icons.merge_type_rounded, + 'merge_type_outlined': Icons.merge_type_outlined, + 'message': Icons.message, + 'message_sharp': Icons.message_sharp, + 'message_rounded': Icons.message_rounded, + 'message_outlined': Icons.message_outlined, + 'messenger': Icons.messenger, + 'messenger_sharp': Icons.messenger_sharp, + 'messenger_rounded': Icons.messenger_rounded, + 'messenger_outlined': Icons.messenger_outlined, + 'messenger_outline': Icons.messenger_outline, + 'messenger_outline_sharp': Icons.messenger_outline_sharp, + 'messenger_outline_rounded': Icons.messenger_outline_rounded, + 'messenger_outline_outlined': Icons.messenger_outline_outlined, + 'mic': Icons.mic, + 'mic_sharp': Icons.mic_sharp, + 'mic_rounded': Icons.mic_rounded, + 'mic_outlined': Icons.mic_outlined, + 'mic_external_off': Icons.mic_external_off, + 'mic_external_off_sharp': Icons.mic_external_off_sharp, + 'mic_external_off_rounded': Icons.mic_external_off_rounded, + 'mic_external_off_outlined': Icons.mic_external_off_outlined, + 'mic_external_on': Icons.mic_external_on, + 'mic_external_on_sharp': Icons.mic_external_on_sharp, + 'mic_external_on_rounded': Icons.mic_external_on_rounded, + 'mic_external_on_outlined': Icons.mic_external_on_outlined, + 'mic_none': Icons.mic_none, + 'mic_none_sharp': Icons.mic_none_sharp, + 'mic_none_rounded': Icons.mic_none_rounded, + 'mic_none_outlined': Icons.mic_none_outlined, + 'mic_off': Icons.mic_off, + 'mic_off_sharp': Icons.mic_off_sharp, + 'mic_off_rounded': Icons.mic_off_rounded, + 'mic_off_outlined': Icons.mic_off_outlined, + 'microwave': Icons.microwave, + 'microwave_sharp': Icons.microwave_sharp, + 'microwave_rounded': Icons.microwave_rounded, + 'microwave_outlined': Icons.microwave_outlined, + 'military_tech': Icons.military_tech, + 'military_tech_sharp': Icons.military_tech_sharp, + 'military_tech_rounded': Icons.military_tech_rounded, + 'military_tech_outlined': Icons.military_tech_outlined, + 'minimize': Icons.minimize, + 'minimize_sharp': Icons.minimize_sharp, + 'minimize_rounded': Icons.minimize_rounded, + 'minimize_outlined': Icons.minimize_outlined, + 'miscellaneous_services': Icons.miscellaneous_services, + 'miscellaneous_services_sharp': Icons.miscellaneous_services_sharp, + 'miscellaneous_services_rounded': Icons.miscellaneous_services_rounded, + 'miscellaneous_services_outlined': + Icons.miscellaneous_services_outlined, + 'missed_video_call': Icons.missed_video_call, + 'missed_video_call_sharp': Icons.missed_video_call_sharp, + 'missed_video_call_rounded': Icons.missed_video_call_rounded, + 'missed_video_call_outlined': Icons.missed_video_call_outlined, + 'mms': Icons.mms, + 'mms_sharp': Icons.mms_sharp, + 'mms_rounded': Icons.mms_rounded, + 'mms_outlined': Icons.mms_outlined, + 'mobile_friendly': Icons.mobile_friendly, + 'mobile_friendly_sharp': Icons.mobile_friendly_sharp, + 'mobile_friendly_rounded': Icons.mobile_friendly_rounded, + 'mobile_friendly_outlined': Icons.mobile_friendly_outlined, + 'mobile_off': Icons.mobile_off, + 'mobile_off_sharp': Icons.mobile_off_sharp, + 'mobile_off_rounded': Icons.mobile_off_rounded, + 'mobile_off_outlined': Icons.mobile_off_outlined, + 'mobile_screen_share': Icons.mobile_screen_share, + 'mobile_screen_share_sharp': Icons.mobile_screen_share_sharp, + 'mobile_screen_share_rounded': Icons.mobile_screen_share_rounded, + 'mobile_screen_share_outlined': Icons.mobile_screen_share_outlined, + 'mobiledata_off': Icons.mobiledata_off, + 'mobiledata_off_sharp': Icons.mobiledata_off_sharp, + 'mobiledata_off_rounded': Icons.mobiledata_off_rounded, + 'mobiledata_off_outlined': Icons.mobiledata_off_outlined, + 'mode': Icons.mode, + 'mode_sharp': Icons.mode_sharp, + 'mode_rounded': Icons.mode_rounded, + 'mode_outlined': Icons.mode_outlined, + 'mode_comment': Icons.mode_comment, + 'mode_comment_sharp': Icons.mode_comment_sharp, + 'mode_comment_rounded': Icons.mode_comment_rounded, + 'mode_comment_outlined': Icons.mode_comment_outlined, + 'mode_edit': Icons.mode_edit, + 'mode_edit_sharp': Icons.mode_edit_sharp, + 'mode_edit_rounded': Icons.mode_edit_rounded, + 'mode_edit_outlined': Icons.mode_edit_outlined, + 'mode_edit_outline': Icons.mode_edit_outline, + 'mode_edit_outline_sharp': Icons.mode_edit_outline_sharp, + 'mode_edit_outline_rounded': Icons.mode_edit_outline_rounded, + 'mode_edit_outline_outlined': Icons.mode_edit_outline_outlined, + 'mode_night': Icons.mode_night, + 'mode_night_sharp': Icons.mode_night_sharp, + 'mode_night_rounded': Icons.mode_night_rounded, + 'mode_night_outlined': Icons.mode_night_outlined, + 'mode_standby': Icons.mode_standby, + 'mode_standby_sharp': Icons.mode_standby_sharp, + 'mode_standby_rounded': Icons.mode_standby_rounded, + 'mode_standby_outlined': Icons.mode_standby_outlined, + 'model_training': Icons.model_training, + 'model_training_sharp': Icons.model_training_sharp, + 'model_training_rounded': Icons.model_training_rounded, + 'model_training_outlined': Icons.model_training_outlined, + 'monetization_on': Icons.monetization_on, + 'monetization_on_sharp': Icons.monetization_on_sharp, + 'monetization_on_rounded': Icons.monetization_on_rounded, + 'monetization_on_outlined': Icons.monetization_on_outlined, + 'money': Icons.money, + 'money_sharp': Icons.money_sharp, + 'money_rounded': Icons.money_rounded, + 'money_outlined': Icons.money_outlined, + 'money_off': Icons.money_off, + 'money_off_sharp': Icons.money_off_sharp, + 'money_off_rounded': Icons.money_off_rounded, + 'money_off_outlined': Icons.money_off_outlined, + 'money_off_csred': Icons.money_off_csred, + 'money_off_csred_sharp': Icons.money_off_csred_sharp, + 'money_off_csred_rounded': Icons.money_off_csred_rounded, + 'money_off_csred_outlined': Icons.money_off_csred_outlined, + 'monitor': Icons.monitor, + 'monitor_sharp': Icons.monitor_sharp, + 'monitor_rounded': Icons.monitor_rounded, + 'monitor_outlined': Icons.monitor_outlined, + 'monitor_weight': Icons.monitor_weight, + 'monitor_weight_sharp': Icons.monitor_weight_sharp, + 'monitor_weight_rounded': Icons.monitor_weight_rounded, + 'monitor_weight_outlined': Icons.monitor_weight_outlined, + 'monochrome_photos': Icons.monochrome_photos, + 'monochrome_photos_sharp': Icons.monochrome_photos_sharp, + 'monochrome_photos_rounded': Icons.monochrome_photos_rounded, + 'monochrome_photos_outlined': Icons.monochrome_photos_outlined, + 'mood': Icons.mood, + 'mood_sharp': Icons.mood_sharp, + 'mood_rounded': Icons.mood_rounded, + 'mood_outlined': Icons.mood_outlined, + 'mood_bad': Icons.mood_bad, + 'mood_bad_sharp': Icons.mood_bad_sharp, + 'mood_bad_rounded': Icons.mood_bad_rounded, + 'mood_bad_outlined': Icons.mood_bad_outlined, + 'moped': Icons.moped, + 'moped_sharp': Icons.moped_sharp, + 'moped_rounded': Icons.moped_rounded, + 'moped_outlined': Icons.moped_outlined, + 'more': Icons.more, + 'more_sharp': Icons.more_sharp, + 'more_rounded': Icons.more_rounded, + 'more_outlined': Icons.more_outlined, + 'more_horiz': Icons.more_horiz, + 'more_horiz_sharp': Icons.more_horiz_sharp, + 'more_horiz_rounded': Icons.more_horiz_rounded, + 'more_horiz_outlined': Icons.more_horiz_outlined, + 'more_time': Icons.more_time, + 'more_time_sharp': Icons.more_time_sharp, + 'more_time_rounded': Icons.more_time_rounded, + 'more_time_outlined': Icons.more_time_outlined, + 'more_vert': Icons.more_vert, + 'more_vert_sharp': Icons.more_vert_sharp, + 'more_vert_rounded': Icons.more_vert_rounded, + 'more_vert_outlined': Icons.more_vert_outlined, + 'motion_photos_auto': Icons.motion_photos_auto, + 'motion_photos_auto_sharp': Icons.motion_photos_auto_sharp, + 'motion_photos_auto_rounded': Icons.motion_photos_auto_rounded, + 'motion_photos_auto_outlined': Icons.motion_photos_auto_outlined, + 'motion_photos_off': Icons.motion_photos_off, + 'motion_photos_off_sharp': Icons.motion_photos_off_sharp, + 'motion_photos_off_rounded': Icons.motion_photos_off_rounded, + 'motion_photos_off_outlined': Icons.motion_photos_off_outlined, + 'motion_photos_on': Icons.motion_photos_on, + 'motion_photos_on_sharp': Icons.motion_photos_on_sharp, + 'motion_photos_on_rounded': Icons.motion_photos_on_rounded, + 'motion_photos_on_outlined': Icons.motion_photos_on_outlined, + 'motion_photos_pause': Icons.motion_photos_pause, + 'motion_photos_pause_sharp': Icons.motion_photos_pause_sharp, + 'motion_photos_pause_rounded': Icons.motion_photos_pause_rounded, + 'motion_photos_pause_outlined': Icons.motion_photos_pause_outlined, + 'motion_photos_paused': Icons.motion_photos_paused, + 'motion_photos_paused_sharp': Icons.motion_photos_paused_sharp, + 'motion_photos_paused_rounded': Icons.motion_photos_paused_rounded, + 'motion_photos_paused_outlined': Icons.motion_photos_paused_outlined, + 'motorcycle': Icons.motorcycle, + 'motorcycle_sharp': Icons.motorcycle_sharp, + 'motorcycle_rounded': Icons.motorcycle_rounded, + 'motorcycle_outlined': Icons.motorcycle_outlined, + 'mouse': Icons.mouse, + 'mouse_sharp': Icons.mouse_sharp, + 'mouse_rounded': Icons.mouse_rounded, + 'mouse_outlined': Icons.mouse_outlined, + 'move_to_inbox': Icons.move_to_inbox, + 'move_to_inbox_sharp': Icons.move_to_inbox_sharp, + 'move_to_inbox_rounded': Icons.move_to_inbox_rounded, + 'move_to_inbox_outlined': Icons.move_to_inbox_outlined, + 'movie': Icons.movie, + 'movie_sharp': Icons.movie_sharp, + 'movie_rounded': Icons.movie_rounded, + 'movie_outlined': Icons.movie_outlined, + 'movie_creation': Icons.movie_creation, + 'movie_creation_sharp': Icons.movie_creation_sharp, + 'movie_creation_rounded': Icons.movie_creation_rounded, + 'movie_creation_outlined': Icons.movie_creation_outlined, + 'movie_filter': Icons.movie_filter, + 'movie_filter_sharp': Icons.movie_filter_sharp, + 'movie_filter_rounded': Icons.movie_filter_rounded, + 'movie_filter_outlined': Icons.movie_filter_outlined, + 'moving': Icons.moving, + 'moving_sharp': Icons.moving_sharp, + 'moving_rounded': Icons.moving_rounded, + 'moving_outlined': Icons.moving_outlined, + 'mp': Icons.mp, + 'mp_sharp': Icons.mp_sharp, + 'mp_rounded': Icons.mp_rounded, + 'mp_outlined': Icons.mp_outlined, + 'multiline_chart': Icons.multiline_chart, + 'multiline_chart_sharp': Icons.multiline_chart_sharp, + 'multiline_chart_rounded': Icons.multiline_chart_rounded, + 'multiline_chart_outlined': Icons.multiline_chart_outlined, + 'multiple_stop': Icons.multiple_stop, + 'multiple_stop_sharp': Icons.multiple_stop_sharp, + 'multiple_stop_rounded': Icons.multiple_stop_rounded, + 'multiple_stop_outlined': Icons.multiple_stop_outlined, + 'multitrack_audio': Icons.multitrack_audio, + 'multitrack_audio_sharp': Icons.multitrack_audio_sharp, + 'multitrack_audio_rounded': Icons.multitrack_audio_rounded, + 'multitrack_audio_outlined': Icons.multitrack_audio_outlined, + 'museum': Icons.museum, + 'museum_sharp': Icons.museum_sharp, + 'museum_rounded': Icons.museum_rounded, + 'museum_outlined': Icons.museum_outlined, + 'music_note': Icons.music_note, + 'music_note_sharp': Icons.music_note_sharp, + 'music_note_rounded': Icons.music_note_rounded, + 'music_note_outlined': Icons.music_note_outlined, + 'music_off': Icons.music_off, + 'music_off_sharp': Icons.music_off_sharp, + 'music_off_rounded': Icons.music_off_rounded, + 'music_off_outlined': Icons.music_off_outlined, + 'music_video': Icons.music_video, + 'music_video_sharp': Icons.music_video_sharp, + 'music_video_rounded': Icons.music_video_rounded, + 'music_video_outlined': Icons.music_video_outlined, + 'my_library_add': Icons.my_library_add, + 'my_library_add_sharp': Icons.my_library_add_sharp, + 'my_library_add_rounded': Icons.my_library_add_rounded, + 'my_library_add_outlined': Icons.my_library_add_outlined, + 'my_library_books': Icons.my_library_books, + 'my_library_books_sharp': Icons.my_library_books_sharp, + 'my_library_books_rounded': Icons.my_library_books_rounded, + 'my_library_books_outlined': Icons.my_library_books_outlined, + 'my_library_music': Icons.my_library_music, + 'my_library_music_sharp': Icons.my_library_music_sharp, + 'my_library_music_rounded': Icons.my_library_music_rounded, + 'my_library_music_outlined': Icons.my_library_music_outlined, + 'my_location': Icons.my_location, + 'my_location_sharp': Icons.my_location_sharp, + 'my_location_rounded': Icons.my_location_rounded, + 'my_location_outlined': Icons.my_location_outlined, + 'nat': Icons.nat, + 'nat_sharp': Icons.nat_sharp, + 'nat_rounded': Icons.nat_rounded, + 'nat_outlined': Icons.nat_outlined, + 'nature': Icons.nature, + 'nature_sharp': Icons.nature_sharp, + 'nature_rounded': Icons.nature_rounded, + 'nature_outlined': Icons.nature_outlined, + 'nature_people': Icons.nature_people, + 'nature_people_sharp': Icons.nature_people_sharp, + 'nature_people_rounded': Icons.nature_people_rounded, + 'nature_people_outlined': Icons.nature_people_outlined, + 'navigate_before': Icons.navigate_before, + 'navigate_before_sharp': Icons.navigate_before_sharp, + 'navigate_before_rounded': Icons.navigate_before_rounded, + 'navigate_before_outlined': Icons.navigate_before_outlined, + 'navigate_next': Icons.navigate_next, + 'navigate_next_sharp': Icons.navigate_next_sharp, + 'navigate_next_rounded': Icons.navigate_next_rounded, + 'navigate_next_outlined': Icons.navigate_next_outlined, + 'navigation': Icons.navigation, + 'navigation_sharp': Icons.navigation_sharp, + 'navigation_rounded': Icons.navigation_rounded, + 'navigation_outlined': Icons.navigation_outlined, + 'near_me': Icons.near_me, + 'near_me_sharp': Icons.near_me_sharp, + 'near_me_rounded': Icons.near_me_rounded, + 'near_me_outlined': Icons.near_me_outlined, + 'near_me_disabled': Icons.near_me_disabled, + 'near_me_disabled_sharp': Icons.near_me_disabled_sharp, + 'near_me_disabled_rounded': Icons.near_me_disabled_rounded, + 'near_me_disabled_outlined': Icons.near_me_disabled_outlined, + 'nearby_error': Icons.nearby_error, + 'nearby_error_sharp': Icons.nearby_error_sharp, + 'nearby_error_rounded': Icons.nearby_error_rounded, + 'nearby_error_outlined': Icons.nearby_error_outlined, + 'nearby_off': Icons.nearby_off, + 'nearby_off_sharp': Icons.nearby_off_sharp, + 'nearby_off_rounded': Icons.nearby_off_rounded, + 'nearby_off_outlined': Icons.nearby_off_outlined, + 'network_cell': Icons.network_cell, + 'network_cell_sharp': Icons.network_cell_sharp, + 'network_cell_rounded': Icons.network_cell_rounded, + 'network_cell_outlined': Icons.network_cell_outlined, + 'network_check': Icons.network_check, + 'network_check_sharp': Icons.network_check_sharp, + 'network_check_rounded': Icons.network_check_rounded, + 'network_check_outlined': Icons.network_check_outlined, + 'network_locked': Icons.network_locked, + 'network_locked_sharp': Icons.network_locked_sharp, + 'network_locked_rounded': Icons.network_locked_rounded, + 'network_locked_outlined': Icons.network_locked_outlined, + 'network_wifi': Icons.network_wifi, + 'network_wifi_sharp': Icons.network_wifi_sharp, + 'network_wifi_rounded': Icons.network_wifi_rounded, + 'network_wifi_outlined': Icons.network_wifi_outlined, + 'new_label': Icons.new_label, + 'new_label_sharp': Icons.new_label_sharp, + 'new_label_rounded': Icons.new_label_rounded, + 'new_label_outlined': Icons.new_label_outlined, + 'new_releases': Icons.new_releases, + 'new_releases_sharp': Icons.new_releases_sharp, + 'new_releases_rounded': Icons.new_releases_rounded, + 'new_releases_outlined': Icons.new_releases_outlined, + 'next_plan': Icons.next_plan, + 'next_plan_sharp': Icons.next_plan_sharp, + 'next_plan_rounded': Icons.next_plan_rounded, + 'next_plan_outlined': Icons.next_plan_outlined, + 'next_week': Icons.next_week, + 'next_week_sharp': Icons.next_week_sharp, + 'next_week_rounded': Icons.next_week_rounded, + 'next_week_outlined': Icons.next_week_outlined, + 'nfc': Icons.nfc, + 'nfc_sharp': Icons.nfc_sharp, + 'nfc_rounded': Icons.nfc_rounded, + 'nfc_outlined': Icons.nfc_outlined, + 'night_shelter': Icons.night_shelter, + 'night_shelter_sharp': Icons.night_shelter_sharp, + 'night_shelter_rounded': Icons.night_shelter_rounded, + 'night_shelter_outlined': Icons.night_shelter_outlined, + 'nightlife': Icons.nightlife, + 'nightlife_sharp': Icons.nightlife_sharp, + 'nightlife_rounded': Icons.nightlife_rounded, + 'nightlife_outlined': Icons.nightlife_outlined, + 'nightlight': Icons.nightlight, + 'nightlight_sharp': Icons.nightlight_sharp, + 'nightlight_rounded': Icons.nightlight_rounded, + 'nightlight_outlined': Icons.nightlight_outlined, + 'nightlight_round': Icons.nightlight_round, + 'nightlight_round_sharp': Icons.nightlight_round_sharp, + 'nightlight_round_rounded': Icons.nightlight_round_rounded, + 'nightlight_round_outlined': Icons.nightlight_round_outlined, + 'nights_stay': Icons.nights_stay, + 'nights_stay_sharp': Icons.nights_stay_sharp, + 'nights_stay_rounded': Icons.nights_stay_rounded, + 'nights_stay_outlined': Icons.nights_stay_outlined, + 'no_accounts': Icons.no_accounts, + 'no_accounts_sharp': Icons.no_accounts_sharp, + 'no_accounts_rounded': Icons.no_accounts_rounded, + 'no_accounts_outlined': Icons.no_accounts_outlined, + 'no_backpack': Icons.no_backpack, + 'no_backpack_sharp': Icons.no_backpack_sharp, + 'no_backpack_rounded': Icons.no_backpack_rounded, + 'no_backpack_outlined': Icons.no_backpack_outlined, + 'no_cell': Icons.no_cell, + 'no_cell_sharp': Icons.no_cell_sharp, + 'no_cell_rounded': Icons.no_cell_rounded, + 'no_cell_outlined': Icons.no_cell_outlined, + 'no_drinks': Icons.no_drinks, + 'no_drinks_sharp': Icons.no_drinks_sharp, + 'no_drinks_rounded': Icons.no_drinks_rounded, + 'no_drinks_outlined': Icons.no_drinks_outlined, + 'no_encryption': Icons.no_encryption, + 'no_encryption_sharp': Icons.no_encryption_sharp, + 'no_encryption_rounded': Icons.no_encryption_rounded, + 'no_encryption_outlined': Icons.no_encryption_outlined, + 'no_encryption_gmailerrorred': Icons.no_encryption_gmailerrorred, + 'no_encryption_gmailerrorred_sharp': + Icons.no_encryption_gmailerrorred_sharp, + 'no_encryption_gmailerrorred_rounded': + Icons.no_encryption_gmailerrorred_rounded, + 'no_encryption_gmailerrorred_outlined': + Icons.no_encryption_gmailerrorred_outlined, + 'no_flash': Icons.no_flash, + 'no_flash_sharp': Icons.no_flash_sharp, + 'no_flash_rounded': Icons.no_flash_rounded, + 'no_flash_outlined': Icons.no_flash_outlined, + 'no_food': Icons.no_food, + 'no_food_sharp': Icons.no_food_sharp, + 'no_food_rounded': Icons.no_food_rounded, + 'no_food_outlined': Icons.no_food_outlined, + 'no_luggage': Icons.no_luggage, + 'no_luggage_sharp': Icons.no_luggage_sharp, + 'no_luggage_rounded': Icons.no_luggage_rounded, + 'no_luggage_outlined': Icons.no_luggage_outlined, + 'no_meals': Icons.no_meals, + 'no_meals_sharp': Icons.no_meals_sharp, + 'no_meals_rounded': Icons.no_meals_rounded, + 'no_meals_outlined': Icons.no_meals_outlined, + 'no_meals_ouline': Icons.no_meals_ouline, + 'no_meeting_room': Icons.no_meeting_room, + 'no_meeting_room_sharp': Icons.no_meeting_room_sharp, + 'no_meeting_room_rounded': Icons.no_meeting_room_rounded, + 'no_meeting_room_outlined': Icons.no_meeting_room_outlined, + 'no_photography': Icons.no_photography, + 'no_photography_sharp': Icons.no_photography_sharp, + 'no_photography_rounded': Icons.no_photography_rounded, + 'no_photography_outlined': Icons.no_photography_outlined, + 'no_sim': Icons.no_sim, + 'no_sim_sharp': Icons.no_sim_sharp, + 'no_sim_rounded': Icons.no_sim_rounded, + 'no_sim_outlined': Icons.no_sim_outlined, + 'no_stroller': Icons.no_stroller, + 'no_stroller_sharp': Icons.no_stroller_sharp, + 'no_stroller_rounded': Icons.no_stroller_rounded, + 'no_stroller_outlined': Icons.no_stroller_outlined, + 'no_transfer': Icons.no_transfer, + 'no_transfer_sharp': Icons.no_transfer_sharp, + 'no_transfer_rounded': Icons.no_transfer_rounded, + 'no_transfer_outlined': Icons.no_transfer_outlined, + 'nordic_walking': Icons.nordic_walking, + 'nordic_walking_sharp': Icons.nordic_walking_sharp, + 'nordic_walking_rounded': Icons.nordic_walking_rounded, + 'nordic_walking_outlined': Icons.nordic_walking_outlined, + 'north': Icons.north, + 'north_sharp': Icons.north_sharp, + 'north_rounded': Icons.north_rounded, + 'north_outlined': Icons.north_outlined, + 'north_east': Icons.north_east, + 'north_east_sharp': Icons.north_east_sharp, + 'north_east_rounded': Icons.north_east_rounded, + 'north_east_outlined': Icons.north_east_outlined, + 'north_west': Icons.north_west, + 'north_west_sharp': Icons.north_west_sharp, + 'north_west_rounded': Icons.north_west_rounded, + 'north_west_outlined': Icons.north_west_outlined, + 'not_accessible': Icons.not_accessible, + 'not_accessible_sharp': Icons.not_accessible_sharp, + 'not_accessible_rounded': Icons.not_accessible_rounded, + 'not_accessible_outlined': Icons.not_accessible_outlined, + 'not_interested': Icons.not_interested, + 'not_interested_sharp': Icons.not_interested_sharp, + 'not_interested_rounded': Icons.not_interested_rounded, + 'not_interested_outlined': Icons.not_interested_outlined, + 'not_listed_location': Icons.not_listed_location, + 'not_listed_location_sharp': Icons.not_listed_location_sharp, + 'not_listed_location_rounded': Icons.not_listed_location_rounded, + 'not_listed_location_outlined': Icons.not_listed_location_outlined, + 'not_started': Icons.not_started, + 'not_started_sharp': Icons.not_started_sharp, + 'not_started_rounded': Icons.not_started_rounded, + 'not_started_outlined': Icons.not_started_outlined, + 'note': Icons.note, + 'note_sharp': Icons.note_sharp, + 'note_rounded': Icons.note_rounded, + 'note_outlined': Icons.note_outlined, + 'note_add': Icons.note_add, + 'note_add_sharp': Icons.note_add_sharp, + 'note_add_rounded': Icons.note_add_rounded, + 'note_add_outlined': Icons.note_add_outlined, + 'note_alt': Icons.note_alt, + 'note_alt_sharp': Icons.note_alt_sharp, + 'note_alt_rounded': Icons.note_alt_rounded, + 'note_alt_outlined': Icons.note_alt_outlined, + 'notes': Icons.notes, + 'notes_sharp': Icons.notes_sharp, + 'notes_rounded': Icons.notes_rounded, + 'notes_outlined': Icons.notes_outlined, + 'notification_add': Icons.notification_add, + 'notification_add_sharp': Icons.notification_add_sharp, + 'notification_add_rounded': Icons.notification_add_rounded, + 'notification_add_outlined': Icons.notification_add_outlined, + 'notification_important': Icons.notification_important, + 'notification_important_sharp': Icons.notification_important_sharp, + 'notification_important_rounded': Icons.notification_important_rounded, + 'notification_important_outlined': + Icons.notification_important_outlined, + 'notifications': Icons.notifications, + 'notifications_sharp': Icons.notifications_sharp, + 'notifications_rounded': Icons.notifications_rounded, + 'notifications_outlined': Icons.notifications_outlined, + 'notifications_active': Icons.notifications_active, + 'notifications_active_sharp': Icons.notifications_active_sharp, + 'notifications_active_rounded': Icons.notifications_active_rounded, + 'notifications_active_outlined': Icons.notifications_active_outlined, + 'notifications_none': Icons.notifications_none, + 'notifications_none_sharp': Icons.notifications_none_sharp, + 'notifications_none_rounded': Icons.notifications_none_rounded, + 'notifications_none_outlined': Icons.notifications_none_outlined, + 'notifications_off': Icons.notifications_off, + 'notifications_off_sharp': Icons.notifications_off_sharp, + 'notifications_off_rounded': Icons.notifications_off_rounded, + 'notifications_off_outlined': Icons.notifications_off_outlined, + 'notifications_on': Icons.notifications_on, + 'notifications_on_sharp': Icons.notifications_on_sharp, + 'notifications_on_rounded': Icons.notifications_on_rounded, + 'notifications_on_outlined': Icons.notifications_on_outlined, + 'notifications_paused': Icons.notifications_paused, + 'notifications_paused_sharp': Icons.notifications_paused_sharp, + 'notifications_paused_rounded': Icons.notifications_paused_rounded, + 'notifications_paused_outlined': Icons.notifications_paused_outlined, + 'now_wallpaper': Icons.now_wallpaper, + 'now_wallpaper_sharp': Icons.now_wallpaper_sharp, + 'now_wallpaper_rounded': Icons.now_wallpaper_rounded, + 'now_wallpaper_outlined': Icons.now_wallpaper_outlined, + 'now_widgets': Icons.now_widgets, + 'now_widgets_sharp': Icons.now_widgets_sharp, + 'now_widgets_rounded': Icons.now_widgets_rounded, + 'now_widgets_outlined': Icons.now_widgets_outlined, + 'offline_bolt': Icons.offline_bolt, + 'offline_bolt_sharp': Icons.offline_bolt_sharp, + 'offline_bolt_rounded': Icons.offline_bolt_rounded, + 'offline_bolt_outlined': Icons.offline_bolt_outlined, + 'offline_pin': Icons.offline_pin, + 'offline_pin_sharp': Icons.offline_pin_sharp, + 'offline_pin_rounded': Icons.offline_pin_rounded, + 'offline_pin_outlined': Icons.offline_pin_outlined, + 'offline_share': Icons.offline_share, + 'offline_share_sharp': Icons.offline_share_sharp, + 'offline_share_rounded': Icons.offline_share_rounded, + 'offline_share_outlined': Icons.offline_share_outlined, + 'ondemand_video': Icons.ondemand_video, + 'ondemand_video_sharp': Icons.ondemand_video_sharp, + 'ondemand_video_rounded': Icons.ondemand_video_rounded, + 'ondemand_video_outlined': Icons.ondemand_video_outlined, + 'online_prediction': Icons.online_prediction, + 'online_prediction_sharp': Icons.online_prediction_sharp, + 'online_prediction_rounded': Icons.online_prediction_rounded, + 'online_prediction_outlined': Icons.online_prediction_outlined, + 'opacity': Icons.opacity, + 'opacity_sharp': Icons.opacity_sharp, + 'opacity_rounded': Icons.opacity_rounded, + 'opacity_outlined': Icons.opacity_outlined, + 'open_in_browser': Icons.open_in_browser, + 'open_in_browser_sharp': Icons.open_in_browser_sharp, + 'open_in_browser_rounded': Icons.open_in_browser_rounded, + 'open_in_browser_outlined': Icons.open_in_browser_outlined, + 'open_in_full': Icons.open_in_full, + 'open_in_full_sharp': Icons.open_in_full_sharp, + 'open_in_full_rounded': Icons.open_in_full_rounded, + 'open_in_full_outlined': Icons.open_in_full_outlined, + 'open_in_new': Icons.open_in_new, + 'open_in_new_sharp': Icons.open_in_new_sharp, + 'open_in_new_rounded': Icons.open_in_new_rounded, + 'open_in_new_outlined': Icons.open_in_new_outlined, + 'open_in_new_off': Icons.open_in_new_off, + 'open_in_new_off_sharp': Icons.open_in_new_off_sharp, + 'open_in_new_off_rounded': Icons.open_in_new_off_rounded, + 'open_in_new_off_outlined': Icons.open_in_new_off_outlined, + 'open_with': Icons.open_with, + 'open_with_sharp': Icons.open_with_sharp, + 'open_with_rounded': Icons.open_with_rounded, + 'open_with_outlined': Icons.open_with_outlined, + 'other_houses': Icons.other_houses, + 'other_houses_sharp': Icons.other_houses_sharp, + 'other_houses_rounded': Icons.other_houses_rounded, + 'other_houses_outlined': Icons.other_houses_outlined, + 'outbond': Icons.outbond, + 'outbond_sharp': Icons.outbond_sharp, + 'outbond_rounded': Icons.outbond_rounded, + 'outbond_outlined': Icons.outbond_outlined, + 'outbound': Icons.outbound, + 'outbound_sharp': Icons.outbound_sharp, + 'outbound_rounded': Icons.outbound_rounded, + 'outbound_outlined': Icons.outbound_outlined, + 'outbox': Icons.outbox, + 'outbox_sharp': Icons.outbox_sharp, + 'outbox_rounded': Icons.outbox_rounded, + 'outbox_outlined': Icons.outbox_outlined, + 'outdoor_grill': Icons.outdoor_grill, + 'outdoor_grill_sharp': Icons.outdoor_grill_sharp, + 'outdoor_grill_rounded': Icons.outdoor_grill_rounded, + 'outdoor_grill_outlined': Icons.outdoor_grill_outlined, + 'outgoing_mail': Icons.outgoing_mail, + 'outlet': Icons.outlet, + 'outlet_sharp': Icons.outlet_sharp, + 'outlet_rounded': Icons.outlet_rounded, + 'outlet_outlined': Icons.outlet_outlined, + 'outlined_flag': Icons.outlined_flag, + 'outlined_flag_sharp': Icons.outlined_flag_sharp, + 'outlined_flag_rounded': Icons.outlined_flag_rounded, + 'outlined_flag_outlined': Icons.outlined_flag_outlined, + 'padding': Icons.padding, + 'padding_sharp': Icons.padding_sharp, + 'padding_rounded': Icons.padding_rounded, + 'padding_outlined': Icons.padding_outlined, + 'pages': Icons.pages, + 'pages_sharp': Icons.pages_sharp, + 'pages_rounded': Icons.pages_rounded, + 'pages_outlined': Icons.pages_outlined, + 'pageview': Icons.pageview, + 'pageview_sharp': Icons.pageview_sharp, + 'pageview_rounded': Icons.pageview_rounded, + 'pageview_outlined': Icons.pageview_outlined, + 'paid': Icons.paid, + 'paid_sharp': Icons.paid_sharp, + 'paid_rounded': Icons.paid_rounded, + 'paid_outlined': Icons.paid_outlined, + 'palette': Icons.palette, + 'palette_sharp': Icons.palette_sharp, + 'palette_rounded': Icons.palette_rounded, + 'palette_outlined': Icons.palette_outlined, + 'pan_tool': Icons.pan_tool, + 'pan_tool_sharp': Icons.pan_tool_sharp, + 'pan_tool_rounded': Icons.pan_tool_rounded, + 'pan_tool_outlined': Icons.pan_tool_outlined, + 'panorama': Icons.panorama, + 'panorama_sharp': Icons.panorama_sharp, + 'panorama_rounded': Icons.panorama_rounded, + 'panorama_outlined': Icons.panorama_outlined, + 'panorama_fish_eye': Icons.panorama_fish_eye, + 'panorama_fish_eye_sharp': Icons.panorama_fish_eye_sharp, + 'panorama_fish_eye_rounded': Icons.panorama_fish_eye_rounded, + 'panorama_fish_eye_outlined': Icons.panorama_fish_eye_outlined, + 'panorama_fisheye': Icons.panorama_fisheye, + 'panorama_fisheye_sharp': Icons.panorama_fisheye_sharp, + 'panorama_fisheye_rounded': Icons.panorama_fisheye_rounded, + 'panorama_fisheye_outlined': Icons.panorama_fisheye_outlined, + 'panorama_horizontal': Icons.panorama_horizontal, + 'panorama_horizontal_sharp': Icons.panorama_horizontal_sharp, + 'panorama_horizontal_rounded': Icons.panorama_horizontal_rounded, + 'panorama_horizontal_outlined': Icons.panorama_horizontal_outlined, + 'panorama_horizontal_select': Icons.panorama_horizontal_select, + 'panorama_horizontal_select_sharp': + Icons.panorama_horizontal_select_sharp, + 'panorama_horizontal_select_rounded': + Icons.panorama_horizontal_select_rounded, + 'panorama_horizontal_select_outlined': + Icons.panorama_horizontal_select_outlined, + 'panorama_photosphere': Icons.panorama_photosphere, + 'panorama_photosphere_sharp': Icons.panorama_photosphere_sharp, + 'panorama_photosphere_rounded': Icons.panorama_photosphere_rounded, + 'panorama_photosphere_outlined': Icons.panorama_photosphere_outlined, + 'panorama_photosphere_select': Icons.panorama_photosphere_select, + 'panorama_photosphere_select_sharp': + Icons.panorama_photosphere_select_sharp, + 'panorama_photosphere_select_rounded': + Icons.panorama_photosphere_select_rounded, + 'panorama_photosphere_select_outlined': + Icons.panorama_photosphere_select_outlined, + 'panorama_vertical': Icons.panorama_vertical, + 'panorama_vertical_sharp': Icons.panorama_vertical_sharp, + 'panorama_vertical_rounded': Icons.panorama_vertical_rounded, + 'panorama_vertical_outlined': Icons.panorama_vertical_outlined, + 'panorama_vertical_select': Icons.panorama_vertical_select, + 'panorama_vertical_select_sharp': Icons.panorama_vertical_select_sharp, + 'panorama_vertical_select_rounded': + Icons.panorama_vertical_select_rounded, + 'panorama_vertical_select_outlined': + Icons.panorama_vertical_select_outlined, + 'panorama_wide_angle': Icons.panorama_wide_angle, + 'panorama_wide_angle_sharp': Icons.panorama_wide_angle_sharp, + 'panorama_wide_angle_rounded': Icons.panorama_wide_angle_rounded, + 'panorama_wide_angle_outlined': Icons.panorama_wide_angle_outlined, + 'panorama_wide_angle_select': Icons.panorama_wide_angle_select, + 'panorama_wide_angle_select_sharp': + Icons.panorama_wide_angle_select_sharp, + 'panorama_wide_angle_select_rounded': + Icons.panorama_wide_angle_select_rounded, + 'panorama_wide_angle_select_outlined': + Icons.panorama_wide_angle_select_outlined, + 'paragliding': Icons.paragliding, + 'paragliding_sharp': Icons.paragliding_sharp, + 'paragliding_rounded': Icons.paragliding_rounded, + 'paragliding_outlined': Icons.paragliding_outlined, + 'park': Icons.park, + 'park_sharp': Icons.park_sharp, + 'park_rounded': Icons.park_rounded, + 'park_outlined': Icons.park_outlined, + 'party_mode': Icons.party_mode, + 'party_mode_sharp': Icons.party_mode_sharp, + 'party_mode_rounded': Icons.party_mode_rounded, + 'party_mode_outlined': Icons.party_mode_outlined, + 'password': Icons.password, + 'password_sharp': Icons.password_sharp, + 'password_rounded': Icons.password_rounded, + 'password_outlined': Icons.password_outlined, + 'paste': Icons.paste, + 'paste_sharp': Icons.paste_sharp, + 'paste_rounded': Icons.paste_rounded, + 'paste_outlined': Icons.paste_outlined, + 'pattern': Icons.pattern, + 'pattern_sharp': Icons.pattern_sharp, + 'pattern_rounded': Icons.pattern_rounded, + 'pattern_outlined': Icons.pattern_outlined, + 'pause': Icons.pause, + 'pause_sharp': Icons.pause_sharp, + 'pause_rounded': Icons.pause_rounded, + 'pause_outlined': Icons.pause_outlined, + 'pause_circle': Icons.pause_circle, + 'pause_circle_sharp': Icons.pause_circle_sharp, + 'pause_circle_rounded': Icons.pause_circle_rounded, + 'pause_circle_outlined': Icons.pause_circle_outlined, + 'pause_circle_filled': Icons.pause_circle_filled, + 'pause_circle_filled_sharp': Icons.pause_circle_filled_sharp, + 'pause_circle_filled_rounded': Icons.pause_circle_filled_rounded, + 'pause_circle_filled_outlined': Icons.pause_circle_filled_outlined, + 'pause_circle_outline': Icons.pause_circle_outline, + 'pause_circle_outline_sharp': Icons.pause_circle_outline_sharp, + 'pause_circle_outline_rounded': Icons.pause_circle_outline_rounded, + 'pause_circle_outline_outlined': Icons.pause_circle_outline_outlined, + 'pause_presentation': Icons.pause_presentation, + 'pause_presentation_sharp': Icons.pause_presentation_sharp, + 'pause_presentation_rounded': Icons.pause_presentation_rounded, + 'pause_presentation_outlined': Icons.pause_presentation_outlined, + 'payment': Icons.payment, + 'payment_sharp': Icons.payment_sharp, + 'payment_rounded': Icons.payment_rounded, + 'payment_outlined': Icons.payment_outlined, + 'payments': Icons.payments, + 'payments_sharp': Icons.payments_sharp, + 'payments_rounded': Icons.payments_rounded, + 'payments_outlined': Icons.payments_outlined, + 'pedal_bike': Icons.pedal_bike, + 'pedal_bike_sharp': Icons.pedal_bike_sharp, + 'pedal_bike_rounded': Icons.pedal_bike_rounded, + 'pedal_bike_outlined': Icons.pedal_bike_outlined, + 'pending': Icons.pending, + 'pending_sharp': Icons.pending_sharp, + 'pending_rounded': Icons.pending_rounded, + 'pending_outlined': Icons.pending_outlined, + 'pending_actions': Icons.pending_actions, + 'pending_actions_sharp': Icons.pending_actions_sharp, + 'pending_actions_rounded': Icons.pending_actions_rounded, + 'pending_actions_outlined': Icons.pending_actions_outlined, + 'people': Icons.people, + 'people_sharp': Icons.people_sharp, + 'people_rounded': Icons.people_rounded, + 'people_outlined': Icons.people_outlined, + 'people_alt': Icons.people_alt, + 'people_alt_sharp': Icons.people_alt_sharp, + 'people_alt_rounded': Icons.people_alt_rounded, + 'people_alt_outlined': Icons.people_alt_outlined, + 'people_outline': Icons.people_outline, + 'people_outline_sharp': Icons.people_outline_sharp, + 'people_outline_rounded': Icons.people_outline_rounded, + 'people_outline_outlined': Icons.people_outline_outlined, + 'perm_camera_mic': Icons.perm_camera_mic, + 'perm_camera_mic_sharp': Icons.perm_camera_mic_sharp, + 'perm_camera_mic_rounded': Icons.perm_camera_mic_rounded, + 'perm_camera_mic_outlined': Icons.perm_camera_mic_outlined, + 'perm_contact_cal': Icons.perm_contact_cal, + 'perm_contact_cal_sharp': Icons.perm_contact_cal_sharp, + 'perm_contact_cal_rounded': Icons.perm_contact_cal_rounded, + 'perm_contact_cal_outlined': Icons.perm_contact_cal_outlined, + 'perm_contact_calendar': Icons.perm_contact_calendar, + 'perm_contact_calendar_sharp': Icons.perm_contact_calendar_sharp, + 'perm_contact_calendar_rounded': Icons.perm_contact_calendar_rounded, + 'perm_contact_calendar_outlined': Icons.perm_contact_calendar_outlined, + 'perm_data_setting': Icons.perm_data_setting, + 'perm_data_setting_sharp': Icons.perm_data_setting_sharp, + 'perm_data_setting_rounded': Icons.perm_data_setting_rounded, + 'perm_data_setting_outlined': Icons.perm_data_setting_outlined, + 'perm_device_info': Icons.perm_device_info, + 'perm_device_info_sharp': Icons.perm_device_info_sharp, + 'perm_device_info_rounded': Icons.perm_device_info_rounded, + 'perm_device_info_outlined': Icons.perm_device_info_outlined, + 'perm_device_information': Icons.perm_device_information, + 'perm_device_information_sharp': Icons.perm_device_information_sharp, + 'perm_device_information_rounded': + Icons.perm_device_information_rounded, + 'perm_device_information_outlined': + Icons.perm_device_information_outlined, + 'perm_identity': Icons.perm_identity, + 'perm_identity_sharp': Icons.perm_identity_sharp, + 'perm_identity_rounded': Icons.perm_identity_rounded, + 'perm_identity_outlined': Icons.perm_identity_outlined, + 'perm_media': Icons.perm_media, + 'perm_media_sharp': Icons.perm_media_sharp, + 'perm_media_rounded': Icons.perm_media_rounded, + 'perm_media_outlined': Icons.perm_media_outlined, + 'perm_phone_msg': Icons.perm_phone_msg, + 'perm_phone_msg_sharp': Icons.perm_phone_msg_sharp, + 'perm_phone_msg_rounded': Icons.perm_phone_msg_rounded, + 'perm_phone_msg_outlined': Icons.perm_phone_msg_outlined, + 'perm_scan_wifi': Icons.perm_scan_wifi, + 'perm_scan_wifi_sharp': Icons.perm_scan_wifi_sharp, + 'perm_scan_wifi_rounded': Icons.perm_scan_wifi_rounded, + 'perm_scan_wifi_outlined': Icons.perm_scan_wifi_outlined, + 'person': Icons.person, + 'person_sharp': Icons.person_sharp, + 'person_rounded': Icons.person_rounded, + 'person_outlined': Icons.person_outlined, + 'person_add': Icons.person_add, + 'person_add_sharp': Icons.person_add_sharp, + 'person_add_rounded': Icons.person_add_rounded, + 'person_add_outlined': Icons.person_add_outlined, + 'person_add_alt': Icons.person_add_alt, + 'person_add_alt_sharp': Icons.person_add_alt_sharp, + 'person_add_alt_rounded': Icons.person_add_alt_rounded, + 'person_add_alt_outlined': Icons.person_add_alt_outlined, + 'person_add_alt_1': Icons.person_add_alt_1, + 'person_add_alt_1_sharp': Icons.person_add_alt_1_sharp, + 'person_add_alt_1_rounded': Icons.person_add_alt_1_rounded, + 'person_add_alt_1_outlined': Icons.person_add_alt_1_outlined, + 'person_add_disabled': Icons.person_add_disabled, + 'person_add_disabled_sharp': Icons.person_add_disabled_sharp, + 'person_add_disabled_rounded': Icons.person_add_disabled_rounded, + 'person_add_disabled_outlined': Icons.person_add_disabled_outlined, + 'person_off': Icons.person_off, + 'person_off_sharp': Icons.person_off_sharp, + 'person_off_rounded': Icons.person_off_rounded, + 'person_off_outlined': Icons.person_off_outlined, + 'person_outline': Icons.person_outline, + 'person_outline_sharp': Icons.person_outline_sharp, + 'person_outline_rounded': Icons.person_outline_rounded, + 'person_outline_outlined': Icons.person_outline_outlined, + 'person_pin': Icons.person_pin, + 'person_pin_sharp': Icons.person_pin_sharp, + 'person_pin_rounded': Icons.person_pin_rounded, + 'person_pin_outlined': Icons.person_pin_outlined, + 'person_pin_circle': Icons.person_pin_circle, + 'person_pin_circle_sharp': Icons.person_pin_circle_sharp, + 'person_pin_circle_rounded': Icons.person_pin_circle_rounded, + 'person_pin_circle_outlined': Icons.person_pin_circle_outlined, + 'person_remove': Icons.person_remove, + 'person_remove_sharp': Icons.person_remove_sharp, + 'person_remove_rounded': Icons.person_remove_rounded, + 'person_remove_outlined': Icons.person_remove_outlined, + 'person_remove_alt_1': Icons.person_remove_alt_1, + 'person_remove_alt_1_sharp': Icons.person_remove_alt_1_sharp, + 'person_remove_alt_1_rounded': Icons.person_remove_alt_1_rounded, + 'person_remove_alt_1_outlined': Icons.person_remove_alt_1_outlined, + 'person_search': Icons.person_search, + 'person_search_sharp': Icons.person_search_sharp, + 'person_search_rounded': Icons.person_search_rounded, + 'person_search_outlined': Icons.person_search_outlined, + 'personal_injury': Icons.personal_injury, + 'personal_injury_sharp': Icons.personal_injury_sharp, + 'personal_injury_rounded': Icons.personal_injury_rounded, + 'personal_injury_outlined': Icons.personal_injury_outlined, + 'personal_video': Icons.personal_video, + 'personal_video_sharp': Icons.personal_video_sharp, + 'personal_video_rounded': Icons.personal_video_rounded, + 'personal_video_outlined': Icons.personal_video_outlined, + 'pest_control': Icons.pest_control, + 'pest_control_sharp': Icons.pest_control_sharp, + 'pest_control_rounded': Icons.pest_control_rounded, + 'pest_control_outlined': Icons.pest_control_outlined, + 'pest_control_rodent': Icons.pest_control_rodent, + 'pest_control_rodent_sharp': Icons.pest_control_rodent_sharp, + 'pest_control_rodent_rounded': Icons.pest_control_rodent_rounded, + 'pest_control_rodent_outlined': Icons.pest_control_rodent_outlined, + 'pets': Icons.pets, + 'pets_sharp': Icons.pets_sharp, + 'pets_rounded': Icons.pets_rounded, + 'pets_outlined': Icons.pets_outlined, + 'phone': Icons.phone, + 'phone_sharp': Icons.phone_sharp, + 'phone_rounded': Icons.phone_rounded, + 'phone_outlined': Icons.phone_outlined, + 'phone_android': Icons.phone_android, + 'phone_android_sharp': Icons.phone_android_sharp, + 'phone_android_rounded': Icons.phone_android_rounded, + 'phone_android_outlined': Icons.phone_android_outlined, + 'phone_bluetooth_speaker': Icons.phone_bluetooth_speaker, + 'phone_bluetooth_speaker_sharp': Icons.phone_bluetooth_speaker_sharp, + 'phone_bluetooth_speaker_rounded': + Icons.phone_bluetooth_speaker_rounded, + 'phone_bluetooth_speaker_outlined': + Icons.phone_bluetooth_speaker_outlined, + 'phone_callback': Icons.phone_callback, + 'phone_callback_sharp': Icons.phone_callback_sharp, + 'phone_callback_rounded': Icons.phone_callback_rounded, + 'phone_callback_outlined': Icons.phone_callback_outlined, + 'phone_disabled': Icons.phone_disabled, + 'phone_disabled_sharp': Icons.phone_disabled_sharp, + 'phone_disabled_rounded': Icons.phone_disabled_rounded, + 'phone_disabled_outlined': Icons.phone_disabled_outlined, + 'phone_enabled': Icons.phone_enabled, + 'phone_enabled_sharp': Icons.phone_enabled_sharp, + 'phone_enabled_rounded': Icons.phone_enabled_rounded, + 'phone_enabled_outlined': Icons.phone_enabled_outlined, + 'phone_forwarded': Icons.phone_forwarded, + 'phone_forwarded_sharp': Icons.phone_forwarded_sharp, + 'phone_forwarded_rounded': Icons.phone_forwarded_rounded, + 'phone_forwarded_outlined': Icons.phone_forwarded_outlined, + 'phone_in_talk': Icons.phone_in_talk, + 'phone_in_talk_sharp': Icons.phone_in_talk_sharp, + 'phone_in_talk_rounded': Icons.phone_in_talk_rounded, + 'phone_in_talk_outlined': Icons.phone_in_talk_outlined, + 'phone_iphone': Icons.phone_iphone, + 'phone_iphone_sharp': Icons.phone_iphone_sharp, + 'phone_iphone_rounded': Icons.phone_iphone_rounded, + 'phone_iphone_outlined': Icons.phone_iphone_outlined, + 'phone_locked': Icons.phone_locked, + 'phone_locked_sharp': Icons.phone_locked_sharp, + 'phone_locked_rounded': Icons.phone_locked_rounded, + 'phone_locked_outlined': Icons.phone_locked_outlined, + 'phone_missed': Icons.phone_missed, + 'phone_missed_sharp': Icons.phone_missed_sharp, + 'phone_missed_rounded': Icons.phone_missed_rounded, + 'phone_missed_outlined': Icons.phone_missed_outlined, + 'phone_paused': Icons.phone_paused, + 'phone_paused_sharp': Icons.phone_paused_sharp, + 'phone_paused_rounded': Icons.phone_paused_rounded, + 'phone_paused_outlined': Icons.phone_paused_outlined, + 'phonelink': Icons.phonelink, + 'phonelink_sharp': Icons.phonelink_sharp, + 'phonelink_rounded': Icons.phonelink_rounded, + 'phonelink_outlined': Icons.phonelink_outlined, + 'phonelink_erase': Icons.phonelink_erase, + 'phonelink_erase_sharp': Icons.phonelink_erase_sharp, + 'phonelink_erase_rounded': Icons.phonelink_erase_rounded, + 'phonelink_erase_outlined': Icons.phonelink_erase_outlined, + 'phonelink_lock': Icons.phonelink_lock, + 'phonelink_lock_sharp': Icons.phonelink_lock_sharp, + 'phonelink_lock_rounded': Icons.phonelink_lock_rounded, + 'phonelink_lock_outlined': Icons.phonelink_lock_outlined, + 'phonelink_off': Icons.phonelink_off, + 'phonelink_off_sharp': Icons.phonelink_off_sharp, + 'phonelink_off_rounded': Icons.phonelink_off_rounded, + 'phonelink_off_outlined': Icons.phonelink_off_outlined, + 'phonelink_ring': Icons.phonelink_ring, + 'phonelink_ring_sharp': Icons.phonelink_ring_sharp, + 'phonelink_ring_rounded': Icons.phonelink_ring_rounded, + 'phonelink_ring_outlined': Icons.phonelink_ring_outlined, + 'phonelink_setup': Icons.phonelink_setup, + 'phonelink_setup_sharp': Icons.phonelink_setup_sharp, + 'phonelink_setup_rounded': Icons.phonelink_setup_rounded, + 'phonelink_setup_outlined': Icons.phonelink_setup_outlined, + 'photo': Icons.photo, + 'photo_sharp': Icons.photo_sharp, + 'photo_rounded': Icons.photo_rounded, + 'photo_outlined': Icons.photo_outlined, + 'photo_album': Icons.photo_album, + 'photo_album_sharp': Icons.photo_album_sharp, + 'photo_album_rounded': Icons.photo_album_rounded, + 'photo_album_outlined': Icons.photo_album_outlined, + 'photo_camera': Icons.photo_camera, + 'photo_camera_sharp': Icons.photo_camera_sharp, + 'photo_camera_rounded': Icons.photo_camera_rounded, + 'photo_camera_outlined': Icons.photo_camera_outlined, + 'photo_camera_back': Icons.photo_camera_back, + 'photo_camera_back_sharp': Icons.photo_camera_back_sharp, + 'photo_camera_back_rounded': Icons.photo_camera_back_rounded, + 'photo_camera_back_outlined': Icons.photo_camera_back_outlined, + 'photo_camera_front': Icons.photo_camera_front, + 'photo_camera_front_sharp': Icons.photo_camera_front_sharp, + 'photo_camera_front_rounded': Icons.photo_camera_front_rounded, + 'photo_camera_front_outlined': Icons.photo_camera_front_outlined, + 'photo_filter': Icons.photo_filter, + 'photo_filter_sharp': Icons.photo_filter_sharp, + 'photo_filter_rounded': Icons.photo_filter_rounded, + 'photo_filter_outlined': Icons.photo_filter_outlined, + 'photo_library': Icons.photo_library, + 'photo_library_sharp': Icons.photo_library_sharp, + 'photo_library_rounded': Icons.photo_library_rounded, + 'photo_library_outlined': Icons.photo_library_outlined, + 'photo_size_select_actual': Icons.photo_size_select_actual, + 'photo_size_select_actual_sharp': Icons.photo_size_select_actual_sharp, + 'photo_size_select_actual_rounded': + Icons.photo_size_select_actual_rounded, + 'photo_size_select_actual_outlined': + Icons.photo_size_select_actual_outlined, + 'photo_size_select_large': Icons.photo_size_select_large, + 'photo_size_select_large_sharp': Icons.photo_size_select_large_sharp, + 'photo_size_select_large_rounded': + Icons.photo_size_select_large_rounded, + 'photo_size_select_large_outlined': + Icons.photo_size_select_large_outlined, + 'photo_size_select_small': Icons.photo_size_select_small, + 'photo_size_select_small_sharp': Icons.photo_size_select_small_sharp, + 'photo_size_select_small_rounded': + Icons.photo_size_select_small_rounded, + 'photo_size_select_small_outlined': + Icons.photo_size_select_small_outlined, + 'piano': Icons.piano, + 'piano_sharp': Icons.piano_sharp, + 'piano_rounded': Icons.piano_rounded, + 'piano_outlined': Icons.piano_outlined, + 'piano_off': Icons.piano_off, + 'piano_off_sharp': Icons.piano_off_sharp, + 'piano_off_rounded': Icons.piano_off_rounded, + 'piano_off_outlined': Icons.piano_off_outlined, + 'picture_as_pdf': Icons.picture_as_pdf, + 'picture_as_pdf_sharp': Icons.picture_as_pdf_sharp, + 'picture_as_pdf_rounded': Icons.picture_as_pdf_rounded, + 'picture_as_pdf_outlined': Icons.picture_as_pdf_outlined, + 'picture_in_picture': Icons.picture_in_picture, + 'picture_in_picture_sharp': Icons.picture_in_picture_sharp, + 'picture_in_picture_rounded': Icons.picture_in_picture_rounded, + 'picture_in_picture_outlined': Icons.picture_in_picture_outlined, + 'picture_in_picture_alt': Icons.picture_in_picture_alt, + 'picture_in_picture_alt_sharp': Icons.picture_in_picture_alt_sharp, + 'picture_in_picture_alt_rounded': Icons.picture_in_picture_alt_rounded, + 'picture_in_picture_alt_outlined': + Icons.picture_in_picture_alt_outlined, + 'pie_chart': Icons.pie_chart, + 'pie_chart_sharp': Icons.pie_chart_sharp, + 'pie_chart_rounded': Icons.pie_chart_rounded, + 'pie_chart_outlined': Icons.pie_chart_outlined, + 'pie_chart_outline': Icons.pie_chart_outline, + 'pie_chart_outline_sharp': Icons.pie_chart_outline_sharp, + 'pie_chart_outline_rounded': Icons.pie_chart_outline_rounded, + 'pie_chart_outline_outlined': Icons.pie_chart_outline_outlined, + 'pin': Icons.pin, + 'pin_sharp': Icons.pin_sharp, + 'pin_rounded': Icons.pin_rounded, + 'pin_outlined': Icons.pin_outlined, + 'pin_drop': Icons.pin_drop, + 'pin_drop_sharp': Icons.pin_drop_sharp, + 'pin_drop_rounded': Icons.pin_drop_rounded, + 'pin_drop_outlined': Icons.pin_drop_outlined, + 'pivot_table_chart': Icons.pivot_table_chart, + 'pivot_table_chart_sharp': Icons.pivot_table_chart_sharp, + 'pivot_table_chart_rounded': Icons.pivot_table_chart_rounded, + 'pivot_table_chart_outlined': Icons.pivot_table_chart_outlined, + 'place': Icons.place, + 'place_sharp': Icons.place_sharp, + 'place_rounded': Icons.place_rounded, + 'place_outlined': Icons.place_outlined, + 'plagiarism': Icons.plagiarism, + 'plagiarism_sharp': Icons.plagiarism_sharp, + 'plagiarism_rounded': Icons.plagiarism_rounded, + 'plagiarism_outlined': Icons.plagiarism_outlined, + 'play_arrow': Icons.play_arrow, + 'play_arrow_sharp': Icons.play_arrow_sharp, + 'play_arrow_rounded': Icons.play_arrow_rounded, + 'play_arrow_outlined': Icons.play_arrow_outlined, + 'play_circle': Icons.play_circle, + 'play_circle_sharp': Icons.play_circle_sharp, + 'play_circle_rounded': Icons.play_circle_rounded, + 'play_circle_outlined': Icons.play_circle_outlined, + 'play_circle_fill': Icons.play_circle_fill, + 'play_circle_fill_sharp': Icons.play_circle_fill_sharp, + 'play_circle_fill_rounded': Icons.play_circle_fill_rounded, + 'play_circle_fill_outlined': Icons.play_circle_fill_outlined, + 'play_circle_filled': Icons.play_circle_filled, + 'play_circle_filled_sharp': Icons.play_circle_filled_sharp, + 'play_circle_filled_rounded': Icons.play_circle_filled_rounded, + 'play_circle_filled_outlined': Icons.play_circle_filled_outlined, + 'play_circle_outline': Icons.play_circle_outline, + 'play_circle_outline_sharp': Icons.play_circle_outline_sharp, + 'play_circle_outline_rounded': Icons.play_circle_outline_rounded, + 'play_circle_outline_outlined': Icons.play_circle_outline_outlined, + 'play_disabled': Icons.play_disabled, + 'play_disabled_sharp': Icons.play_disabled_sharp, + 'play_disabled_rounded': Icons.play_disabled_rounded, + 'play_disabled_outlined': Icons.play_disabled_outlined, + 'play_for_work': Icons.play_for_work, + 'play_for_work_sharp': Icons.play_for_work_sharp, + 'play_for_work_rounded': Icons.play_for_work_rounded, + 'play_for_work_outlined': Icons.play_for_work_outlined, + 'play_lesson': Icons.play_lesson, + 'play_lesson_sharp': Icons.play_lesson_sharp, + 'play_lesson_rounded': Icons.play_lesson_rounded, + 'play_lesson_outlined': Icons.play_lesson_outlined, + 'playlist_add': Icons.playlist_add, + 'playlist_add_sharp': Icons.playlist_add_sharp, + 'playlist_add_rounded': Icons.playlist_add_rounded, + 'playlist_add_outlined': Icons.playlist_add_outlined, + 'playlist_add_check': Icons.playlist_add_check, + 'playlist_add_check_sharp': Icons.playlist_add_check_sharp, + 'playlist_add_check_rounded': Icons.playlist_add_check_rounded, + 'playlist_add_check_outlined': Icons.playlist_add_check_outlined, + 'playlist_play': Icons.playlist_play, + 'playlist_play_sharp': Icons.playlist_play_sharp, + 'playlist_play_rounded': Icons.playlist_play_rounded, + 'playlist_play_outlined': Icons.playlist_play_outlined, + 'plumbing': Icons.plumbing, + 'plumbing_sharp': Icons.plumbing_sharp, + 'plumbing_rounded': Icons.plumbing_rounded, + 'plumbing_outlined': Icons.plumbing_outlined, + 'plus_one': Icons.plus_one, + 'plus_one_sharp': Icons.plus_one_sharp, + 'plus_one_rounded': Icons.plus_one_rounded, + 'plus_one_outlined': Icons.plus_one_outlined, + 'podcasts': Icons.podcasts, + 'podcasts_sharp': Icons.podcasts_sharp, + 'podcasts_rounded': Icons.podcasts_rounded, + 'podcasts_outlined': Icons.podcasts_outlined, + 'point_of_sale': Icons.point_of_sale, + 'point_of_sale_sharp': Icons.point_of_sale_sharp, + 'point_of_sale_rounded': Icons.point_of_sale_rounded, + 'point_of_sale_outlined': Icons.point_of_sale_outlined, + 'policy': Icons.policy, + 'policy_sharp': Icons.policy_sharp, + 'policy_rounded': Icons.policy_rounded, + 'policy_outlined': Icons.policy_outlined, + 'poll': Icons.poll, + 'poll_sharp': Icons.poll_sharp, + 'poll_rounded': Icons.poll_rounded, + 'poll_outlined': Icons.poll_outlined, + 'polymer': Icons.polymer, + 'polymer_sharp': Icons.polymer_sharp, + 'polymer_rounded': Icons.polymer_rounded, + 'polymer_outlined': Icons.polymer_outlined, + 'pool': Icons.pool, + 'pool_sharp': Icons.pool_sharp, + 'pool_rounded': Icons.pool_rounded, + 'pool_outlined': Icons.pool_outlined, + 'portable_wifi_off': Icons.portable_wifi_off, + 'portable_wifi_off_sharp': Icons.portable_wifi_off_sharp, + 'portable_wifi_off_rounded': Icons.portable_wifi_off_rounded, + 'portable_wifi_off_outlined': Icons.portable_wifi_off_outlined, + 'portrait': Icons.portrait, + 'portrait_sharp': Icons.portrait_sharp, + 'portrait_rounded': Icons.portrait_rounded, + 'portrait_outlined': Icons.portrait_outlined, + 'post_add': Icons.post_add, + 'post_add_sharp': Icons.post_add_sharp, + 'post_add_rounded': Icons.post_add_rounded, + 'post_add_outlined': Icons.post_add_outlined, + 'power': Icons.power, + 'power_sharp': Icons.power_sharp, + 'power_rounded': Icons.power_rounded, + 'power_outlined': Icons.power_outlined, + 'power_input': Icons.power_input, + 'power_input_sharp': Icons.power_input_sharp, + 'power_input_rounded': Icons.power_input_rounded, + 'power_input_outlined': Icons.power_input_outlined, + 'power_off': Icons.power_off, + 'power_off_sharp': Icons.power_off_sharp, + 'power_off_rounded': Icons.power_off_rounded, + 'power_off_outlined': Icons.power_off_outlined, + 'power_settings_new': Icons.power_settings_new, + 'power_settings_new_sharp': Icons.power_settings_new_sharp, + 'power_settings_new_rounded': Icons.power_settings_new_rounded, + 'power_settings_new_outlined': Icons.power_settings_new_outlined, + 'precision_manufacturing': Icons.precision_manufacturing, + 'precision_manufacturing_sharp': Icons.precision_manufacturing_sharp, + 'precision_manufacturing_rounded': + Icons.precision_manufacturing_rounded, + 'precision_manufacturing_outlined': + Icons.precision_manufacturing_outlined, + 'pregnant_woman': Icons.pregnant_woman, + 'pregnant_woman_sharp': Icons.pregnant_woman_sharp, + 'pregnant_woman_rounded': Icons.pregnant_woman_rounded, + 'pregnant_woman_outlined': Icons.pregnant_woman_outlined, + 'present_to_all': Icons.present_to_all, + 'present_to_all_sharp': Icons.present_to_all_sharp, + 'present_to_all_rounded': Icons.present_to_all_rounded, + 'present_to_all_outlined': Icons.present_to_all_outlined, + 'preview': Icons.preview, + 'preview_sharp': Icons.preview_sharp, + 'preview_rounded': Icons.preview_rounded, + 'preview_outlined': Icons.preview_outlined, + 'price_change': Icons.price_change, + 'price_change_sharp': Icons.price_change_sharp, + 'price_change_rounded': Icons.price_change_rounded, + 'price_change_outlined': Icons.price_change_outlined, + 'price_check': Icons.price_check, + 'price_check_sharp': Icons.price_check_sharp, + 'price_check_rounded': Icons.price_check_rounded, + 'price_check_outlined': Icons.price_check_outlined, + 'print': Icons.print, + 'print_sharp': Icons.print_sharp, + 'print_rounded': Icons.print_rounded, + 'print_outlined': Icons.print_outlined, + 'print_disabled': Icons.print_disabled, + 'print_disabled_sharp': Icons.print_disabled_sharp, + 'print_disabled_rounded': Icons.print_disabled_rounded, + 'print_disabled_outlined': Icons.print_disabled_outlined, + 'priority_high': Icons.priority_high, + 'priority_high_sharp': Icons.priority_high_sharp, + 'priority_high_rounded': Icons.priority_high_rounded, + 'priority_high_outlined': Icons.priority_high_outlined, + 'privacy_tip': Icons.privacy_tip, + 'privacy_tip_sharp': Icons.privacy_tip_sharp, + 'privacy_tip_rounded': Icons.privacy_tip_rounded, + 'privacy_tip_outlined': Icons.privacy_tip_outlined, + 'production_quantity_limits': Icons.production_quantity_limits, + 'production_quantity_limits_sharp': + Icons.production_quantity_limits_sharp, + 'production_quantity_limits_rounded': + Icons.production_quantity_limits_rounded, + 'production_quantity_limits_outlined': + Icons.production_quantity_limits_outlined, + 'psychology': Icons.psychology, + 'psychology_sharp': Icons.psychology_sharp, + 'psychology_rounded': Icons.psychology_rounded, + 'psychology_outlined': Icons.psychology_outlined, + 'public': Icons.public, + 'public_sharp': Icons.public_sharp, + 'public_rounded': Icons.public_rounded, + 'public_outlined': Icons.public_outlined, + 'public_off': Icons.public_off, + 'public_off_sharp': Icons.public_off_sharp, + 'public_off_rounded': Icons.public_off_rounded, + 'public_off_outlined': Icons.public_off_outlined, + 'publish': Icons.publish, + 'publish_sharp': Icons.publish_sharp, + 'publish_rounded': Icons.publish_rounded, + 'publish_outlined': Icons.publish_outlined, + 'published_with_changes': Icons.published_with_changes, + 'published_with_changes_sharp': Icons.published_with_changes_sharp, + 'published_with_changes_rounded': Icons.published_with_changes_rounded, + 'published_with_changes_outlined': + Icons.published_with_changes_outlined, + 'push_pin': Icons.push_pin, + 'push_pin_sharp': Icons.push_pin_sharp, + 'push_pin_rounded': Icons.push_pin_rounded, + 'push_pin_outlined': Icons.push_pin_outlined, + 'qr_code': Icons.qr_code, + 'qr_code_sharp': Icons.qr_code_sharp, + 'qr_code_rounded': Icons.qr_code_rounded, + 'qr_code_outlined': Icons.qr_code_outlined, + 'qr_code_2': Icons.qr_code_2, + 'qr_code_2_sharp': Icons.qr_code_2_sharp, + 'qr_code_2_rounded': Icons.qr_code_2_rounded, + 'qr_code_2_outlined': Icons.qr_code_2_outlined, + 'qr_code_scanner': Icons.qr_code_scanner, + 'qr_code_scanner_sharp': Icons.qr_code_scanner_sharp, + 'qr_code_scanner_rounded': Icons.qr_code_scanner_rounded, + 'qr_code_scanner_outlined': Icons.qr_code_scanner_outlined, + 'query_builder': Icons.query_builder, + 'query_builder_sharp': Icons.query_builder_sharp, + 'query_builder_rounded': Icons.query_builder_rounded, + 'query_builder_outlined': Icons.query_builder_outlined, + 'query_stats': Icons.query_stats, + 'query_stats_sharp': Icons.query_stats_sharp, + 'query_stats_rounded': Icons.query_stats_rounded, + 'query_stats_outlined': Icons.query_stats_outlined, + 'question_answer': Icons.question_answer, + 'question_answer_sharp': Icons.question_answer_sharp, + 'question_answer_rounded': Icons.question_answer_rounded, + 'question_answer_outlined': Icons.question_answer_outlined, + 'queue': Icons.queue, + 'queue_sharp': Icons.queue_sharp, + 'queue_rounded': Icons.queue_rounded, + 'queue_outlined': Icons.queue_outlined, + 'queue_music': Icons.queue_music, + 'queue_music_sharp': Icons.queue_music_sharp, + 'queue_music_rounded': Icons.queue_music_rounded, + 'queue_music_outlined': Icons.queue_music_outlined, + 'queue_play_next': Icons.queue_play_next, + 'queue_play_next_sharp': Icons.queue_play_next_sharp, + 'queue_play_next_rounded': Icons.queue_play_next_rounded, + 'queue_play_next_outlined': Icons.queue_play_next_outlined, + 'quick_contacts_dialer': Icons.quick_contacts_dialer, + 'quick_contacts_dialer_sharp': Icons.quick_contacts_dialer_sharp, + 'quick_contacts_dialer_rounded': Icons.quick_contacts_dialer_rounded, + 'quick_contacts_dialer_outlined': Icons.quick_contacts_dialer_outlined, + 'quick_contacts_mail': Icons.quick_contacts_mail, + 'quick_contacts_mail_sharp': Icons.quick_contacts_mail_sharp, + 'quick_contacts_mail_rounded': Icons.quick_contacts_mail_rounded, + 'quick_contacts_mail_outlined': Icons.quick_contacts_mail_outlined, + 'quickreply': Icons.quickreply, + 'quickreply_sharp': Icons.quickreply_sharp, + 'quickreply_rounded': Icons.quickreply_rounded, + 'quickreply_outlined': Icons.quickreply_outlined, + 'quiz': Icons.quiz, + 'quiz_sharp': Icons.quiz_sharp, + 'quiz_rounded': Icons.quiz_rounded, + 'quiz_outlined': Icons.quiz_outlined, + 'r_mobiledata': Icons.r_mobiledata, + 'r_mobiledata_sharp': Icons.r_mobiledata_sharp, + 'r_mobiledata_rounded': Icons.r_mobiledata_rounded, + 'r_mobiledata_outlined': Icons.r_mobiledata_outlined, + 'radar': Icons.radar, + 'radar_sharp': Icons.radar_sharp, + 'radar_rounded': Icons.radar_rounded, + 'radar_outlined': Icons.radar_outlined, + 'radio': Icons.radio, + 'radio_sharp': Icons.radio_sharp, + 'radio_rounded': Icons.radio_rounded, + 'radio_outlined': Icons.radio_outlined, + 'radio_button_checked': Icons.radio_button_checked, + 'radio_button_checked_sharp': Icons.radio_button_checked_sharp, + 'radio_button_checked_rounded': Icons.radio_button_checked_rounded, + 'radio_button_checked_outlined': Icons.radio_button_checked_outlined, + 'radio_button_off': Icons.radio_button_off, + 'radio_button_off_sharp': Icons.radio_button_off_sharp, + 'radio_button_off_rounded': Icons.radio_button_off_rounded, + 'radio_button_off_outlined': Icons.radio_button_off_outlined, + 'radio_button_on': Icons.radio_button_on, + 'radio_button_on_sharp': Icons.radio_button_on_sharp, + 'radio_button_on_rounded': Icons.radio_button_on_rounded, + 'radio_button_on_outlined': Icons.radio_button_on_outlined, + 'radio_button_unchecked': Icons.radio_button_unchecked, + 'radio_button_unchecked_sharp': Icons.radio_button_unchecked_sharp, + 'radio_button_unchecked_rounded': Icons.radio_button_unchecked_rounded, + 'radio_button_unchecked_outlined': + Icons.radio_button_unchecked_outlined, + 'railway_alert': Icons.railway_alert, + 'railway_alert_sharp': Icons.railway_alert_sharp, + 'railway_alert_rounded': Icons.railway_alert_rounded, + 'railway_alert_outlined': Icons.railway_alert_outlined, + 'ramen_dining': Icons.ramen_dining, + 'ramen_dining_sharp': Icons.ramen_dining_sharp, + 'ramen_dining_rounded': Icons.ramen_dining_rounded, + 'ramen_dining_outlined': Icons.ramen_dining_outlined, + 'rate_review': Icons.rate_review, + 'rate_review_sharp': Icons.rate_review_sharp, + 'rate_review_rounded': Icons.rate_review_rounded, + 'rate_review_outlined': Icons.rate_review_outlined, + 'raw_off': Icons.raw_off, + 'raw_off_sharp': Icons.raw_off_sharp, + 'raw_off_rounded': Icons.raw_off_rounded, + 'raw_off_outlined': Icons.raw_off_outlined, + 'raw_on': Icons.raw_on, + 'raw_on_sharp': Icons.raw_on_sharp, + 'raw_on_rounded': Icons.raw_on_rounded, + 'raw_on_outlined': Icons.raw_on_outlined, + 'read_more': Icons.read_more, + 'read_more_sharp': Icons.read_more_sharp, + 'read_more_rounded': Icons.read_more_rounded, + 'read_more_outlined': Icons.read_more_outlined, + 'real_estate_agent': Icons.real_estate_agent, + 'real_estate_agent_sharp': Icons.real_estate_agent_sharp, + 'real_estate_agent_rounded': Icons.real_estate_agent_rounded, + 'real_estate_agent_outlined': Icons.real_estate_agent_outlined, + 'receipt': Icons.receipt, + 'receipt_sharp': Icons.receipt_sharp, + 'receipt_rounded': Icons.receipt_rounded, + 'receipt_outlined': Icons.receipt_outlined, + 'receipt_long': Icons.receipt_long, + 'receipt_long_sharp': Icons.receipt_long_sharp, + 'receipt_long_rounded': Icons.receipt_long_rounded, + 'receipt_long_outlined': Icons.receipt_long_outlined, + 'recent_actors': Icons.recent_actors, + 'recent_actors_sharp': Icons.recent_actors_sharp, + 'recent_actors_rounded': Icons.recent_actors_rounded, + 'recent_actors_outlined': Icons.recent_actors_outlined, + 'recommend': Icons.recommend, + 'recommend_sharp': Icons.recommend_sharp, + 'recommend_rounded': Icons.recommend_rounded, + 'recommend_outlined': Icons.recommend_outlined, + 'record_voice_over': Icons.record_voice_over, + 'record_voice_over_sharp': Icons.record_voice_over_sharp, + 'record_voice_over_rounded': Icons.record_voice_over_rounded, + 'record_voice_over_outlined': Icons.record_voice_over_outlined, + 'redeem': Icons.redeem, + 'redeem_sharp': Icons.redeem_sharp, + 'redeem_rounded': Icons.redeem_rounded, + 'redeem_outlined': Icons.redeem_outlined, + 'redo': Icons.redo, + 'redo_sharp': Icons.redo_sharp, + 'redo_rounded': Icons.redo_rounded, + 'redo_outlined': Icons.redo_outlined, + 'reduce_capacity': Icons.reduce_capacity, + 'reduce_capacity_sharp': Icons.reduce_capacity_sharp, + 'reduce_capacity_rounded': Icons.reduce_capacity_rounded, + 'reduce_capacity_outlined': Icons.reduce_capacity_outlined, + 'refresh': Icons.refresh, + 'refresh_sharp': Icons.refresh_sharp, + 'refresh_rounded': Icons.refresh_rounded, + 'refresh_outlined': Icons.refresh_outlined, + 'remember_me': Icons.remember_me, + 'remember_me_sharp': Icons.remember_me_sharp, + 'remember_me_rounded': Icons.remember_me_rounded, + 'remember_me_outlined': Icons.remember_me_outlined, + 'remove': Icons.remove, + 'remove_sharp': Icons.remove_sharp, + 'remove_rounded': Icons.remove_rounded, + 'remove_outlined': Icons.remove_outlined, + 'remove_circle': Icons.remove_circle, + 'remove_circle_sharp': Icons.remove_circle_sharp, + 'remove_circle_rounded': Icons.remove_circle_rounded, + 'remove_circle_outlined': Icons.remove_circle_outlined, + 'remove_circle_outline': Icons.remove_circle_outline, + 'remove_circle_outline_sharp': Icons.remove_circle_outline_sharp, + 'remove_circle_outline_rounded': Icons.remove_circle_outline_rounded, + 'remove_circle_outline_outlined': Icons.remove_circle_outline_outlined, + 'remove_done': Icons.remove_done, + 'remove_done_sharp': Icons.remove_done_sharp, + 'remove_done_rounded': Icons.remove_done_rounded, + 'remove_done_outlined': Icons.remove_done_outlined, + 'remove_from_queue': Icons.remove_from_queue, + 'remove_from_queue_sharp': Icons.remove_from_queue_sharp, + 'remove_from_queue_rounded': Icons.remove_from_queue_rounded, + 'remove_from_queue_outlined': Icons.remove_from_queue_outlined, + 'remove_moderator': Icons.remove_moderator, + 'remove_moderator_sharp': Icons.remove_moderator_sharp, + 'remove_moderator_rounded': Icons.remove_moderator_rounded, + 'remove_moderator_outlined': Icons.remove_moderator_outlined, + 'remove_red_eye': Icons.remove_red_eye, + 'remove_red_eye_sharp': Icons.remove_red_eye_sharp, + 'remove_red_eye_rounded': Icons.remove_red_eye_rounded, + 'remove_red_eye_outlined': Icons.remove_red_eye_outlined, + 'remove_shopping_cart': Icons.remove_shopping_cart, + 'remove_shopping_cart_sharp': Icons.remove_shopping_cart_sharp, + 'remove_shopping_cart_rounded': Icons.remove_shopping_cart_rounded, + 'remove_shopping_cart_outlined': Icons.remove_shopping_cart_outlined, + 'reorder': Icons.reorder, + 'reorder_sharp': Icons.reorder_sharp, + 'reorder_rounded': Icons.reorder_rounded, + 'reorder_outlined': Icons.reorder_outlined, + 'repeat': Icons.repeat, + 'repeat_sharp': Icons.repeat_sharp, + 'repeat_rounded': Icons.repeat_rounded, + 'repeat_outlined': Icons.repeat_outlined, + 'repeat_on': Icons.repeat_on, + 'repeat_on_sharp': Icons.repeat_on_sharp, + 'repeat_on_rounded': Icons.repeat_on_rounded, + 'repeat_on_outlined': Icons.repeat_on_outlined, + 'repeat_one': Icons.repeat_one, + 'repeat_one_sharp': Icons.repeat_one_sharp, + 'repeat_one_rounded': Icons.repeat_one_rounded, + 'repeat_one_outlined': Icons.repeat_one_outlined, + 'repeat_one_on': Icons.repeat_one_on, + 'repeat_one_on_sharp': Icons.repeat_one_on_sharp, + 'repeat_one_on_rounded': Icons.repeat_one_on_rounded, + 'repeat_one_on_outlined': Icons.repeat_one_on_outlined, + 'replay': Icons.replay, + 'replay_sharp': Icons.replay_sharp, + 'replay_rounded': Icons.replay_rounded, + 'replay_outlined': Icons.replay_outlined, + 'replay_10': Icons.replay_10, + 'replay_10_sharp': Icons.replay_10_sharp, + 'replay_10_rounded': Icons.replay_10_rounded, + 'replay_10_outlined': Icons.replay_10_outlined, + 'replay_30': Icons.replay_30, + 'replay_30_sharp': Icons.replay_30_sharp, + 'replay_30_rounded': Icons.replay_30_rounded, + 'replay_30_outlined': Icons.replay_30_outlined, + 'replay_5': Icons.replay_5, + 'replay_5_sharp': Icons.replay_5_sharp, + 'replay_5_rounded': Icons.replay_5_rounded, + 'replay_5_outlined': Icons.replay_5_outlined, + 'replay_circle_filled': Icons.replay_circle_filled, + 'replay_circle_filled_sharp': Icons.replay_circle_filled_sharp, + 'replay_circle_filled_rounded': Icons.replay_circle_filled_rounded, + 'replay_circle_filled_outlined': Icons.replay_circle_filled_outlined, + 'reply': Icons.reply, + 'reply_sharp': Icons.reply_sharp, + 'reply_rounded': Icons.reply_rounded, + 'reply_outlined': Icons.reply_outlined, + 'reply_all': Icons.reply_all, + 'reply_all_sharp': Icons.reply_all_sharp, + 'reply_all_rounded': Icons.reply_all_rounded, + 'reply_all_outlined': Icons.reply_all_outlined, + 'report': Icons.report, + 'report_sharp': Icons.report_sharp, + 'report_rounded': Icons.report_rounded, + 'report_outlined': Icons.report_outlined, + 'report_gmailerrorred': Icons.report_gmailerrorred, + 'report_gmailerrorred_sharp': Icons.report_gmailerrorred_sharp, + 'report_gmailerrorred_rounded': Icons.report_gmailerrorred_rounded, + 'report_gmailerrorred_outlined': Icons.report_gmailerrorred_outlined, + 'report_off': Icons.report_off, + 'report_off_sharp': Icons.report_off_sharp, + 'report_off_rounded': Icons.report_off_rounded, + 'report_off_outlined': Icons.report_off_outlined, + 'report_problem': Icons.report_problem, + 'report_problem_sharp': Icons.report_problem_sharp, + 'report_problem_rounded': Icons.report_problem_rounded, + 'report_problem_outlined': Icons.report_problem_outlined, + 'request_page': Icons.request_page, + 'request_page_sharp': Icons.request_page_sharp, + 'request_page_rounded': Icons.request_page_rounded, + 'request_page_outlined': Icons.request_page_outlined, + 'request_quote': Icons.request_quote, + 'request_quote_sharp': Icons.request_quote_sharp, + 'request_quote_rounded': Icons.request_quote_rounded, + 'request_quote_outlined': Icons.request_quote_outlined, + 'reset_tv': Icons.reset_tv, + 'reset_tv_sharp': Icons.reset_tv_sharp, + 'reset_tv_rounded': Icons.reset_tv_rounded, + 'reset_tv_outlined': Icons.reset_tv_outlined, + 'restart_alt': Icons.restart_alt, + 'restart_alt_sharp': Icons.restart_alt_sharp, + 'restart_alt_rounded': Icons.restart_alt_rounded, + 'restart_alt_outlined': Icons.restart_alt_outlined, + 'restaurant': Icons.restaurant, + 'restaurant_sharp': Icons.restaurant_sharp, + 'restaurant_rounded': Icons.restaurant_rounded, + 'restaurant_outlined': Icons.restaurant_outlined, + 'restaurant_menu': Icons.restaurant_menu, + 'restaurant_menu_sharp': Icons.restaurant_menu_sharp, + 'restaurant_menu_rounded': Icons.restaurant_menu_rounded, + 'restaurant_menu_outlined': Icons.restaurant_menu_outlined, + 'restore': Icons.restore, + 'restore_sharp': Icons.restore_sharp, + 'restore_rounded': Icons.restore_rounded, + 'restore_outlined': Icons.restore_outlined, + 'restore_from_trash': Icons.restore_from_trash, + 'restore_from_trash_sharp': Icons.restore_from_trash_sharp, + 'restore_from_trash_rounded': Icons.restore_from_trash_rounded, + 'restore_from_trash_outlined': Icons.restore_from_trash_outlined, + 'restore_page': Icons.restore_page, + 'restore_page_sharp': Icons.restore_page_sharp, + 'restore_page_rounded': Icons.restore_page_rounded, + 'restore_page_outlined': Icons.restore_page_outlined, + 'reviews': Icons.reviews, + 'reviews_sharp': Icons.reviews_sharp, + 'reviews_rounded': Icons.reviews_rounded, + 'reviews_outlined': Icons.reviews_outlined, + 'rice_bowl': Icons.rice_bowl, + 'rice_bowl_sharp': Icons.rice_bowl_sharp, + 'rice_bowl_rounded': Icons.rice_bowl_rounded, + 'rice_bowl_outlined': Icons.rice_bowl_outlined, + 'ring_volume': Icons.ring_volume, + 'ring_volume_sharp': Icons.ring_volume_sharp, + 'ring_volume_rounded': Icons.ring_volume_rounded, + 'ring_volume_outlined': Icons.ring_volume_outlined, + 'roofing': Icons.roofing, + 'roofing_sharp': Icons.roofing_sharp, + 'roofing_rounded': Icons.roofing_rounded, + 'roofing_outlined': Icons.roofing_outlined, + 'room': Icons.room, + 'room_sharp': Icons.room_sharp, + 'room_rounded': Icons.room_rounded, + 'room_outlined': Icons.room_outlined, + 'room_preferences': Icons.room_preferences, + 'room_preferences_sharp': Icons.room_preferences_sharp, + 'room_preferences_rounded': Icons.room_preferences_rounded, + 'room_preferences_outlined': Icons.room_preferences_outlined, + 'room_service': Icons.room_service, + 'room_service_sharp': Icons.room_service_sharp, + 'room_service_rounded': Icons.room_service_rounded, + 'room_service_outlined': Icons.room_service_outlined, + 'rotate_90_degrees_ccw': Icons.rotate_90_degrees_ccw, + 'rotate_90_degrees_ccw_sharp': Icons.rotate_90_degrees_ccw_sharp, + 'rotate_90_degrees_ccw_rounded': Icons.rotate_90_degrees_ccw_rounded, + 'rotate_90_degrees_ccw_outlined': Icons.rotate_90_degrees_ccw_outlined, + 'rotate_left': Icons.rotate_left, + 'rotate_left_sharp': Icons.rotate_left_sharp, + 'rotate_left_rounded': Icons.rotate_left_rounded, + 'rotate_left_outlined': Icons.rotate_left_outlined, + 'rotate_right': Icons.rotate_right, + 'rotate_right_sharp': Icons.rotate_right_sharp, + 'rotate_right_rounded': Icons.rotate_right_rounded, + 'rotate_right_outlined': Icons.rotate_right_outlined, + 'rounded_corner': Icons.rounded_corner, + 'rounded_corner_sharp': Icons.rounded_corner_sharp, + 'rounded_corner_rounded': Icons.rounded_corner_rounded, + 'rounded_corner_outlined': Icons.rounded_corner_outlined, + 'router': Icons.router, + 'router_sharp': Icons.router_sharp, + 'router_rounded': Icons.router_rounded, + 'router_outlined': Icons.router_outlined, + 'rowing': Icons.rowing, + 'rowing_sharp': Icons.rowing_sharp, + 'rowing_rounded': Icons.rowing_rounded, + 'rowing_outlined': Icons.rowing_outlined, + 'rss_feed': Icons.rss_feed, + 'rss_feed_sharp': Icons.rss_feed_sharp, + 'rss_feed_rounded': Icons.rss_feed_rounded, + 'rss_feed_outlined': Icons.rss_feed_outlined, + 'rsvp': Icons.rsvp, + 'rsvp_sharp': Icons.rsvp_sharp, + 'rsvp_rounded': Icons.rsvp_rounded, + 'rsvp_outlined': Icons.rsvp_outlined, + 'rtt': Icons.rtt, + 'rtt_sharp': Icons.rtt_sharp, + 'rtt_rounded': Icons.rtt_rounded, + 'rtt_outlined': Icons.rtt_outlined, + 'rule': Icons.rule, + 'rule_sharp': Icons.rule_sharp, + 'rule_rounded': Icons.rule_rounded, + 'rule_outlined': Icons.rule_outlined, + 'rule_folder': Icons.rule_folder, + 'rule_folder_sharp': Icons.rule_folder_sharp, + 'rule_folder_rounded': Icons.rule_folder_rounded, + 'rule_folder_outlined': Icons.rule_folder_outlined, + 'run_circle': Icons.run_circle, + 'run_circle_sharp': Icons.run_circle_sharp, + 'run_circle_rounded': Icons.run_circle_rounded, + 'run_circle_outlined': Icons.run_circle_outlined, + 'running_with_errors': Icons.running_with_errors, + 'running_with_errors_sharp': Icons.running_with_errors_sharp, + 'running_with_errors_rounded': Icons.running_with_errors_rounded, + 'running_with_errors_outlined': Icons.running_with_errors_outlined, + 'rv_hookup': Icons.rv_hookup, + 'rv_hookup_sharp': Icons.rv_hookup_sharp, + 'rv_hookup_rounded': Icons.rv_hookup_rounded, + 'rv_hookup_outlined': Icons.rv_hookup_outlined, + 'safety_divider': Icons.safety_divider, + 'safety_divider_sharp': Icons.safety_divider_sharp, + 'safety_divider_rounded': Icons.safety_divider_rounded, + 'safety_divider_outlined': Icons.safety_divider_outlined, + 'sailing': Icons.sailing, + 'sailing_sharp': Icons.sailing_sharp, + 'sailing_rounded': Icons.sailing_rounded, + 'sailing_outlined': Icons.sailing_outlined, + 'sanitizer': Icons.sanitizer, + 'sanitizer_sharp': Icons.sanitizer_sharp, + 'sanitizer_rounded': Icons.sanitizer_rounded, + 'sanitizer_outlined': Icons.sanitizer_outlined, + 'satellite': Icons.satellite, + 'satellite_sharp': Icons.satellite_sharp, + 'satellite_rounded': Icons.satellite_rounded, + 'satellite_outlined': Icons.satellite_outlined, + 'save': Icons.save, + 'save_sharp': Icons.save_sharp, + 'save_rounded': Icons.save_rounded, + 'save_outlined': Icons.save_outlined, + 'save_alt': Icons.save_alt, + 'save_alt_sharp': Icons.save_alt_sharp, + 'save_alt_rounded': Icons.save_alt_rounded, + 'save_alt_outlined': Icons.save_alt_outlined, + 'saved_search': Icons.saved_search, + 'saved_search_sharp': Icons.saved_search_sharp, + 'saved_search_rounded': Icons.saved_search_rounded, + 'saved_search_outlined': Icons.saved_search_outlined, + 'savings': Icons.savings, + 'savings_sharp': Icons.savings_sharp, + 'savings_rounded': Icons.savings_rounded, + 'savings_outlined': Icons.savings_outlined, + 'scanner': Icons.scanner, + 'scanner_sharp': Icons.scanner_sharp, + 'scanner_rounded': Icons.scanner_rounded, + 'scanner_outlined': Icons.scanner_outlined, + 'scatter_plot': Icons.scatter_plot, + 'scatter_plot_sharp': Icons.scatter_plot_sharp, + 'scatter_plot_rounded': Icons.scatter_plot_rounded, + 'scatter_plot_outlined': Icons.scatter_plot_outlined, + 'schedule': Icons.schedule, + 'schedule_sharp': Icons.schedule_sharp, + 'schedule_rounded': Icons.schedule_rounded, + 'schedule_outlined': Icons.schedule_outlined, + 'schedule_send': Icons.schedule_send, + 'schedule_send_sharp': Icons.schedule_send_sharp, + 'schedule_send_rounded': Icons.schedule_send_rounded, + 'schedule_send_outlined': Icons.schedule_send_outlined, + 'schema': Icons.schema, + 'schema_sharp': Icons.schema_sharp, + 'schema_rounded': Icons.schema_rounded, + 'schema_outlined': Icons.schema_outlined, + 'school': Icons.school, + 'school_sharp': Icons.school_sharp, + 'school_rounded': Icons.school_rounded, + 'school_outlined': Icons.school_outlined, + 'science': Icons.science, + 'science_sharp': Icons.science_sharp, + 'science_rounded': Icons.science_rounded, + 'science_outlined': Icons.science_outlined, + 'score': Icons.score, + 'score_sharp': Icons.score_sharp, + 'score_rounded': Icons.score_rounded, + 'score_outlined': Icons.score_outlined, + 'screen_lock_landscape': Icons.screen_lock_landscape, + 'screen_lock_landscape_sharp': Icons.screen_lock_landscape_sharp, + 'screen_lock_landscape_rounded': Icons.screen_lock_landscape_rounded, + 'screen_lock_landscape_outlined': Icons.screen_lock_landscape_outlined, + 'screen_lock_portrait': Icons.screen_lock_portrait, + 'screen_lock_portrait_sharp': Icons.screen_lock_portrait_sharp, + 'screen_lock_portrait_rounded': Icons.screen_lock_portrait_rounded, + 'screen_lock_portrait_outlined': Icons.screen_lock_portrait_outlined, + 'screen_lock_rotation': Icons.screen_lock_rotation, + 'screen_lock_rotation_sharp': Icons.screen_lock_rotation_sharp, + 'screen_lock_rotation_rounded': Icons.screen_lock_rotation_rounded, + 'screen_lock_rotation_outlined': Icons.screen_lock_rotation_outlined, + 'screen_rotation': Icons.screen_rotation, + 'screen_rotation_sharp': Icons.screen_rotation_sharp, + 'screen_rotation_rounded': Icons.screen_rotation_rounded, + 'screen_rotation_outlined': Icons.screen_rotation_outlined, + 'screen_search_desktop': Icons.screen_search_desktop, + 'screen_search_desktop_sharp': Icons.screen_search_desktop_sharp, + 'screen_search_desktop_rounded': Icons.screen_search_desktop_rounded, + 'screen_search_desktop_outlined': Icons.screen_search_desktop_outlined, + 'screen_share': Icons.screen_share, + 'screen_share_sharp': Icons.screen_share_sharp, + 'screen_share_rounded': Icons.screen_share_rounded, + 'screen_share_outlined': Icons.screen_share_outlined, + 'screenshot': Icons.screenshot, + 'screenshot_sharp': Icons.screenshot_sharp, + 'screenshot_rounded': Icons.screenshot_rounded, + 'screenshot_outlined': Icons.screenshot_outlined, + 'sd': Icons.sd, + 'sd_sharp': Icons.sd_sharp, + 'sd_rounded': Icons.sd_rounded, + 'sd_outlined': Icons.sd_outlined, + 'sd_card': Icons.sd_card, + 'sd_card_sharp': Icons.sd_card_sharp, + 'sd_card_rounded': Icons.sd_card_rounded, + 'sd_card_outlined': Icons.sd_card_outlined, + 'sd_card_alert': Icons.sd_card_alert, + 'sd_card_alert_sharp': Icons.sd_card_alert_sharp, + 'sd_card_alert_rounded': Icons.sd_card_alert_rounded, + 'sd_card_alert_outlined': Icons.sd_card_alert_outlined, + 'sd_storage': Icons.sd_storage, + 'sd_storage_sharp': Icons.sd_storage_sharp, + 'sd_storage_rounded': Icons.sd_storage_rounded, + 'sd_storage_outlined': Icons.sd_storage_outlined, + 'search': Icons.search, + 'search_sharp': Icons.search_sharp, + 'search_rounded': Icons.search_rounded, + 'search_outlined': Icons.search_outlined, + 'search_off': Icons.search_off, + 'search_off_sharp': Icons.search_off_sharp, + 'search_off_rounded': Icons.search_off_rounded, + 'search_off_outlined': Icons.search_off_outlined, + 'security': Icons.security, + 'security_sharp': Icons.security_sharp, + 'security_rounded': Icons.security_rounded, + 'security_outlined': Icons.security_outlined, + 'security_update': Icons.security_update, + 'security_update_sharp': Icons.security_update_sharp, + 'security_update_rounded': Icons.security_update_rounded, + 'security_update_outlined': Icons.security_update_outlined, + 'security_update_good': Icons.security_update_good, + 'security_update_good_sharp': Icons.security_update_good_sharp, + 'security_update_good_rounded': Icons.security_update_good_rounded, + 'security_update_good_outlined': Icons.security_update_good_outlined, + 'security_update_warning': Icons.security_update_warning, + 'security_update_warning_sharp': Icons.security_update_warning_sharp, + 'security_update_warning_rounded': + Icons.security_update_warning_rounded, + 'security_update_warning_outlined': + Icons.security_update_warning_outlined, + 'segment': Icons.segment, + 'segment_sharp': Icons.segment_sharp, + 'segment_rounded': Icons.segment_rounded, + 'segment_outlined': Icons.segment_outlined, + 'select_all': Icons.select_all, + 'select_all_sharp': Icons.select_all_sharp, + 'select_all_rounded': Icons.select_all_rounded, + 'select_all_outlined': Icons.select_all_outlined, + 'self_improvement': Icons.self_improvement, + 'self_improvement_sharp': Icons.self_improvement_sharp, + 'self_improvement_rounded': Icons.self_improvement_rounded, + 'self_improvement_outlined': Icons.self_improvement_outlined, + 'sell': Icons.sell, + 'sell_sharp': Icons.sell_sharp, + 'sell_rounded': Icons.sell_rounded, + 'sell_outlined': Icons.sell_outlined, + 'send': Icons.send, + 'send_sharp': Icons.send_sharp, + 'send_rounded': Icons.send_rounded, + 'send_outlined': Icons.send_outlined, + 'send_and_archive': Icons.send_and_archive, + 'send_and_archive_sharp': Icons.send_and_archive_sharp, + 'send_and_archive_rounded': Icons.send_and_archive_rounded, + 'send_and_archive_outlined': Icons.send_and_archive_outlined, + 'send_to_mobile': Icons.send_to_mobile, + 'send_to_mobile_sharp': Icons.send_to_mobile_sharp, + 'send_to_mobile_rounded': Icons.send_to_mobile_rounded, + 'send_to_mobile_outlined': Icons.send_to_mobile_outlined, + 'sensor_door': Icons.sensor_door, + 'sensor_door_sharp': Icons.sensor_door_sharp, + 'sensor_door_rounded': Icons.sensor_door_rounded, + 'sensor_door_outlined': Icons.sensor_door_outlined, + 'sensor_window': Icons.sensor_window, + 'sensor_window_sharp': Icons.sensor_window_sharp, + 'sensor_window_rounded': Icons.sensor_window_rounded, + 'sensor_window_outlined': Icons.sensor_window_outlined, + 'sensors': Icons.sensors, + 'sensors_sharp': Icons.sensors_sharp, + 'sensors_rounded': Icons.sensors_rounded, + 'sensors_outlined': Icons.sensors_outlined, + 'sensors_off': Icons.sensors_off, + 'sensors_off_sharp': Icons.sensors_off_sharp, + 'sensors_off_rounded': Icons.sensors_off_rounded, + 'sensors_off_outlined': Icons.sensors_off_outlined, + 'sentiment_dissatisfied': Icons.sentiment_dissatisfied, + 'sentiment_dissatisfied_sharp': Icons.sentiment_dissatisfied_sharp, + 'sentiment_dissatisfied_rounded': Icons.sentiment_dissatisfied_rounded, + 'sentiment_dissatisfied_outlined': + Icons.sentiment_dissatisfied_outlined, + 'sentiment_neutral': Icons.sentiment_neutral, + 'sentiment_neutral_sharp': Icons.sentiment_neutral_sharp, + 'sentiment_neutral_rounded': Icons.sentiment_neutral_rounded, + 'sentiment_neutral_outlined': Icons.sentiment_neutral_outlined, + 'sentiment_satisfied': Icons.sentiment_satisfied, + 'sentiment_satisfied_sharp': Icons.sentiment_satisfied_sharp, + 'sentiment_satisfied_rounded': Icons.sentiment_satisfied_rounded, + 'sentiment_satisfied_outlined': Icons.sentiment_satisfied_outlined, + 'sentiment_satisfied_alt': Icons.sentiment_satisfied_alt, + 'sentiment_satisfied_alt_sharp': Icons.sentiment_satisfied_alt_sharp, + 'sentiment_satisfied_alt_rounded': + Icons.sentiment_satisfied_alt_rounded, + 'sentiment_satisfied_alt_outlined': + Icons.sentiment_satisfied_alt_outlined, + 'sentiment_very_dissatisfied': Icons.sentiment_very_dissatisfied, + 'sentiment_very_dissatisfied_sharp': + Icons.sentiment_very_dissatisfied_sharp, + 'sentiment_very_dissatisfied_rounded': + Icons.sentiment_very_dissatisfied_rounded, + 'sentiment_very_dissatisfied_outlined': + Icons.sentiment_very_dissatisfied_outlined, + 'sentiment_very_satisfied': Icons.sentiment_very_satisfied, + 'sentiment_very_satisfied_sharp': Icons.sentiment_very_satisfied_sharp, + 'sentiment_very_satisfied_rounded': + Icons.sentiment_very_satisfied_rounded, + 'sentiment_very_satisfied_outlined': + Icons.sentiment_very_satisfied_outlined, + 'set_meal': Icons.set_meal, + 'set_meal_sharp': Icons.set_meal_sharp, + 'set_meal_rounded': Icons.set_meal_rounded, + 'set_meal_outlined': Icons.set_meal_outlined, + 'settings': Icons.settings, + 'settings_sharp': Icons.settings_sharp, + 'settings_rounded': Icons.settings_rounded, + 'settings_outlined': Icons.settings_outlined, + 'settings_accessibility': Icons.settings_accessibility, + 'settings_accessibility_sharp': Icons.settings_accessibility_sharp, + 'settings_accessibility_rounded': Icons.settings_accessibility_rounded, + 'settings_accessibility_outlined': + Icons.settings_accessibility_outlined, + 'settings_applications': Icons.settings_applications, + 'settings_applications_sharp': Icons.settings_applications_sharp, + 'settings_applications_rounded': Icons.settings_applications_rounded, + 'settings_applications_outlined': Icons.settings_applications_outlined, + 'settings_backup_restore': Icons.settings_backup_restore, + 'settings_backup_restore_sharp': Icons.settings_backup_restore_sharp, + 'settings_backup_restore_rounded': + Icons.settings_backup_restore_rounded, + 'settings_backup_restore_outlined': + Icons.settings_backup_restore_outlined, + 'settings_bluetooth': Icons.settings_bluetooth, + 'settings_bluetooth_sharp': Icons.settings_bluetooth_sharp, + 'settings_bluetooth_rounded': Icons.settings_bluetooth_rounded, + 'settings_bluetooth_outlined': Icons.settings_bluetooth_outlined, + 'settings_brightness': Icons.settings_brightness, + 'settings_brightness_sharp': Icons.settings_brightness_sharp, + 'settings_brightness_rounded': Icons.settings_brightness_rounded, + 'settings_brightness_outlined': Icons.settings_brightness_outlined, + 'settings_cell': Icons.settings_cell, + 'settings_cell_sharp': Icons.settings_cell_sharp, + 'settings_cell_rounded': Icons.settings_cell_rounded, + 'settings_cell_outlined': Icons.settings_cell_outlined, + 'settings_display': Icons.settings_display, + 'settings_display_sharp': Icons.settings_display_sharp, + 'settings_display_rounded': Icons.settings_display_rounded, + 'settings_display_outlined': Icons.settings_display_outlined, + 'settings_ethernet': Icons.settings_ethernet, + 'settings_ethernet_sharp': Icons.settings_ethernet_sharp, + 'settings_ethernet_rounded': Icons.settings_ethernet_rounded, + 'settings_ethernet_outlined': Icons.settings_ethernet_outlined, + 'settings_input_antenna': Icons.settings_input_antenna, + 'settings_input_antenna_sharp': Icons.settings_input_antenna_sharp, + 'settings_input_antenna_rounded': Icons.settings_input_antenna_rounded, + 'settings_input_antenna_outlined': + Icons.settings_input_antenna_outlined, + 'settings_input_component': Icons.settings_input_component, + 'settings_input_component_sharp': Icons.settings_input_component_sharp, + 'settings_input_component_rounded': + Icons.settings_input_component_rounded, + 'settings_input_component_outlined': + Icons.settings_input_component_outlined, + 'settings_input_composite': Icons.settings_input_composite, + 'settings_input_composite_sharp': Icons.settings_input_composite_sharp, + 'settings_input_composite_rounded': + Icons.settings_input_composite_rounded, + 'settings_input_composite_outlined': + Icons.settings_input_composite_outlined, + 'settings_input_hdmi': Icons.settings_input_hdmi, + 'settings_input_hdmi_sharp': Icons.settings_input_hdmi_sharp, + 'settings_input_hdmi_rounded': Icons.settings_input_hdmi_rounded, + 'settings_input_hdmi_outlined': Icons.settings_input_hdmi_outlined, + 'settings_input_svideo': Icons.settings_input_svideo, + 'settings_input_svideo_sharp': Icons.settings_input_svideo_sharp, + 'settings_input_svideo_rounded': Icons.settings_input_svideo_rounded, + 'settings_input_svideo_outlined': Icons.settings_input_svideo_outlined, + 'settings_overscan': Icons.settings_overscan, + 'settings_overscan_sharp': Icons.settings_overscan_sharp, + 'settings_overscan_rounded': Icons.settings_overscan_rounded, + 'settings_overscan_outlined': Icons.settings_overscan_outlined, + 'settings_phone': Icons.settings_phone, + 'settings_phone_sharp': Icons.settings_phone_sharp, + 'settings_phone_rounded': Icons.settings_phone_rounded, + 'settings_phone_outlined': Icons.settings_phone_outlined, + 'settings_power': Icons.settings_power, + 'settings_power_sharp': Icons.settings_power_sharp, + 'settings_power_rounded': Icons.settings_power_rounded, + 'settings_power_outlined': Icons.settings_power_outlined, + 'settings_remote': Icons.settings_remote, + 'settings_remote_sharp': Icons.settings_remote_sharp, + 'settings_remote_rounded': Icons.settings_remote_rounded, + 'settings_remote_outlined': Icons.settings_remote_outlined, + 'settings_suggest': Icons.settings_suggest, + 'settings_suggest_sharp': Icons.settings_suggest_sharp, + 'settings_suggest_rounded': Icons.settings_suggest_rounded, + 'settings_suggest_outlined': Icons.settings_suggest_outlined, + 'settings_system_daydream': Icons.settings_system_daydream, + 'settings_system_daydream_sharp': Icons.settings_system_daydream_sharp, + 'settings_system_daydream_rounded': + Icons.settings_system_daydream_rounded, + 'settings_system_daydream_outlined': + Icons.settings_system_daydream_outlined, + 'settings_voice': Icons.settings_voice, + 'settings_voice_sharp': Icons.settings_voice_sharp, + 'settings_voice_rounded': Icons.settings_voice_rounded, + 'settings_voice_outlined': Icons.settings_voice_outlined, + 'share': Icons.share, + 'share_sharp': Icons.share_sharp, + 'share_rounded': Icons.share_rounded, + 'share_outlined': Icons.share_outlined, + 'share_arrival_time': Icons.share_arrival_time, + 'share_arrival_time_sharp': Icons.share_arrival_time_sharp, + 'share_arrival_time_rounded': Icons.share_arrival_time_rounded, + 'share_arrival_time_outlined': Icons.share_arrival_time_outlined, + 'share_location': Icons.share_location, + 'share_location_sharp': Icons.share_location_sharp, + 'share_location_rounded': Icons.share_location_rounded, + 'share_location_outlined': Icons.share_location_outlined, + 'shield': Icons.shield, + 'shield_sharp': Icons.shield_sharp, + 'shield_rounded': Icons.shield_rounded, + 'shield_outlined': Icons.shield_outlined, + 'shop': Icons.shop, + 'shop_sharp': Icons.shop_sharp, + 'shop_rounded': Icons.shop_rounded, + 'shop_outlined': Icons.shop_outlined, + 'shop_2': Icons.shop_2, + 'shop_2_sharp': Icons.shop_2_sharp, + 'shop_2_rounded': Icons.shop_2_rounded, + 'shop_2_outlined': Icons.shop_2_outlined, + 'shop_two': Icons.shop_two, + 'shop_two_sharp': Icons.shop_two_sharp, + 'shop_two_rounded': Icons.shop_two_rounded, + 'shop_two_outlined': Icons.shop_two_outlined, + 'shopping_bag': Icons.shopping_bag, + 'shopping_bag_sharp': Icons.shopping_bag_sharp, + 'shopping_bag_rounded': Icons.shopping_bag_rounded, + 'shopping_bag_outlined': Icons.shopping_bag_outlined, + 'shopping_basket': Icons.shopping_basket, + 'shopping_basket_sharp': Icons.shopping_basket_sharp, + 'shopping_basket_rounded': Icons.shopping_basket_rounded, + 'shopping_basket_outlined': Icons.shopping_basket_outlined, + 'shopping_cart': Icons.shopping_cart, + 'shopping_cart_sharp': Icons.shopping_cart_sharp, + 'shopping_cart_rounded': Icons.shopping_cart_rounded, + 'shopping_cart_outlined': Icons.shopping_cart_outlined, + 'short_text': Icons.short_text, + 'short_text_sharp': Icons.short_text_sharp, + 'short_text_rounded': Icons.short_text_rounded, + 'short_text_outlined': Icons.short_text_outlined, + 'shortcut': Icons.shortcut, + 'shortcut_sharp': Icons.shortcut_sharp, + 'shortcut_rounded': Icons.shortcut_rounded, + 'shortcut_outlined': Icons.shortcut_outlined, + 'show_chart': Icons.show_chart, + 'show_chart_sharp': Icons.show_chart_sharp, + 'show_chart_rounded': Icons.show_chart_rounded, + 'show_chart_outlined': Icons.show_chart_outlined, + 'shower': Icons.shower, + 'shower_sharp': Icons.shower_sharp, + 'shower_rounded': Icons.shower_rounded, + 'shower_outlined': Icons.shower_outlined, + 'shuffle': Icons.shuffle, + 'shuffle_sharp': Icons.shuffle_sharp, + 'shuffle_rounded': Icons.shuffle_rounded, + 'shuffle_outlined': Icons.shuffle_outlined, + 'shuffle_on': Icons.shuffle_on, + 'shuffle_on_sharp': Icons.shuffle_on_sharp, + 'shuffle_on_rounded': Icons.shuffle_on_rounded, + 'shuffle_on_outlined': Icons.shuffle_on_outlined, + 'shutter_speed': Icons.shutter_speed, + 'shutter_speed_sharp': Icons.shutter_speed_sharp, + 'shutter_speed_rounded': Icons.shutter_speed_rounded, + 'shutter_speed_outlined': Icons.shutter_speed_outlined, + 'sick': Icons.sick, + 'sick_sharp': Icons.sick_sharp, + 'sick_rounded': Icons.sick_rounded, + 'sick_outlined': Icons.sick_outlined, + 'signal_cellular_0_bar': Icons.signal_cellular_0_bar, + 'signal_cellular_0_bar_sharp': Icons.signal_cellular_0_bar_sharp, + 'signal_cellular_0_bar_rounded': Icons.signal_cellular_0_bar_rounded, + 'signal_cellular_0_bar_outlined': Icons.signal_cellular_0_bar_outlined, + 'signal_cellular_4_bar': Icons.signal_cellular_4_bar, + 'signal_cellular_4_bar_sharp': Icons.signal_cellular_4_bar_sharp, + 'signal_cellular_4_bar_rounded': Icons.signal_cellular_4_bar_rounded, + 'signal_cellular_4_bar_outlined': Icons.signal_cellular_4_bar_outlined, + 'signal_cellular_alt': Icons.signal_cellular_alt, + 'signal_cellular_alt_sharp': Icons.signal_cellular_alt_sharp, + 'signal_cellular_alt_rounded': Icons.signal_cellular_alt_rounded, + 'signal_cellular_alt_outlined': Icons.signal_cellular_alt_outlined, + 'signal_cellular_connected_no_internet_0_bar': + Icons.signal_cellular_connected_no_internet_0_bar, + 'signal_cellular_connected_no_internet_0_bar_sharp': + Icons.signal_cellular_connected_no_internet_0_bar_sharp, + 'signal_cellular_connected_no_internet_0_bar_rounded': + Icons.signal_cellular_connected_no_internet_0_bar_rounded, + 'signal_cellular_connected_no_internet_0_bar_outlined': + Icons.signal_cellular_connected_no_internet_0_bar_outlined, + 'signal_cellular_connected_no_internet_4_bar': + Icons.signal_cellular_connected_no_internet_4_bar, + 'signal_cellular_connected_no_internet_4_bar_sharp': + Icons.signal_cellular_connected_no_internet_4_bar_sharp, + 'signal_cellular_connected_no_internet_4_bar_rounded': + Icons.signal_cellular_connected_no_internet_4_bar_rounded, + 'signal_cellular_connected_no_internet_4_bar_outlined': + Icons.signal_cellular_connected_no_internet_4_bar_outlined, + 'signal_cellular_no_sim': Icons.signal_cellular_no_sim, + 'signal_cellular_no_sim_sharp': Icons.signal_cellular_no_sim_sharp, + 'signal_cellular_no_sim_rounded': Icons.signal_cellular_no_sim_rounded, + 'signal_cellular_no_sim_outlined': + Icons.signal_cellular_no_sim_outlined, + 'signal_cellular_nodata': Icons.signal_cellular_nodata, + 'signal_cellular_nodata_sharp': Icons.signal_cellular_nodata_sharp, + 'signal_cellular_nodata_rounded': Icons.signal_cellular_nodata_rounded, + 'signal_cellular_nodata_outlined': + Icons.signal_cellular_nodata_outlined, + 'signal_cellular_null': Icons.signal_cellular_null, + 'signal_cellular_null_sharp': Icons.signal_cellular_null_sharp, + 'signal_cellular_null_rounded': Icons.signal_cellular_null_rounded, + 'signal_cellular_null_outlined': Icons.signal_cellular_null_outlined, + 'signal_cellular_off': Icons.signal_cellular_off, + 'signal_cellular_off_sharp': Icons.signal_cellular_off_sharp, + 'signal_cellular_off_rounded': Icons.signal_cellular_off_rounded, + 'signal_cellular_off_outlined': Icons.signal_cellular_off_outlined, + 'signal_wifi_0_bar': Icons.signal_wifi_0_bar, + 'signal_wifi_0_bar_sharp': Icons.signal_wifi_0_bar_sharp, + 'signal_wifi_0_bar_rounded': Icons.signal_wifi_0_bar_rounded, + 'signal_wifi_0_bar_outlined': Icons.signal_wifi_0_bar_outlined, + 'signal_wifi_4_bar': Icons.signal_wifi_4_bar, + 'signal_wifi_4_bar_sharp': Icons.signal_wifi_4_bar_sharp, + 'signal_wifi_4_bar_rounded': Icons.signal_wifi_4_bar_rounded, + 'signal_wifi_4_bar_outlined': Icons.signal_wifi_4_bar_outlined, + 'signal_wifi_4_bar_lock': Icons.signal_wifi_4_bar_lock, + 'signal_wifi_4_bar_lock_sharp': Icons.signal_wifi_4_bar_lock_sharp, + 'signal_wifi_4_bar_lock_rounded': Icons.signal_wifi_4_bar_lock_rounded, + 'signal_wifi_4_bar_lock_outlined': + Icons.signal_wifi_4_bar_lock_outlined, + 'signal_wifi_bad': Icons.signal_wifi_bad, + 'signal_wifi_bad_sharp': Icons.signal_wifi_bad_sharp, + 'signal_wifi_bad_rounded': Icons.signal_wifi_bad_rounded, + 'signal_wifi_bad_outlined': Icons.signal_wifi_bad_outlined, + 'signal_wifi_connected_no_internet_4': + Icons.signal_wifi_connected_no_internet_4, + 'signal_wifi_connected_no_internet_4_sharp': + Icons.signal_wifi_connected_no_internet_4_sharp, + 'signal_wifi_connected_no_internet_4_rounded': + Icons.signal_wifi_connected_no_internet_4_rounded, + 'signal_wifi_connected_no_internet_4_outlined': + Icons.signal_wifi_connected_no_internet_4_outlined, + 'signal_wifi_off': Icons.signal_wifi_off, + 'signal_wifi_off_sharp': Icons.signal_wifi_off_sharp, + 'signal_wifi_off_rounded': Icons.signal_wifi_off_rounded, + 'signal_wifi_off_outlined': Icons.signal_wifi_off_outlined, + 'signal_wifi_statusbar_4_bar': Icons.signal_wifi_statusbar_4_bar, + 'signal_wifi_statusbar_4_bar_sharp': + Icons.signal_wifi_statusbar_4_bar_sharp, + 'signal_wifi_statusbar_4_bar_rounded': + Icons.signal_wifi_statusbar_4_bar_rounded, + 'signal_wifi_statusbar_4_bar_outlined': + Icons.signal_wifi_statusbar_4_bar_outlined, + 'signal_wifi_statusbar_connected_no_internet_4': + Icons.signal_wifi_statusbar_connected_no_internet_4, + 'signal_wifi_statusbar_connected_no_internet_4_sharp': + Icons.signal_wifi_statusbar_connected_no_internet_4_sharp, + 'signal_wifi_statusbar_connected_no_internet_4_rounded': + Icons.signal_wifi_statusbar_connected_no_internet_4_rounded, + 'signal_wifi_statusbar_connected_no_internet_4_outlined': + Icons.signal_wifi_statusbar_connected_no_internet_4_outlined, + 'signal_wifi_statusbar_null': Icons.signal_wifi_statusbar_null, + 'signal_wifi_statusbar_null_sharp': + Icons.signal_wifi_statusbar_null_sharp, + 'signal_wifi_statusbar_null_rounded': + Icons.signal_wifi_statusbar_null_rounded, + 'signal_wifi_statusbar_null_outlined': + Icons.signal_wifi_statusbar_null_outlined, + 'sim_card': Icons.sim_card, + 'sim_card_sharp': Icons.sim_card_sharp, + 'sim_card_rounded': Icons.sim_card_rounded, + 'sim_card_outlined': Icons.sim_card_outlined, + 'sim_card_alert': Icons.sim_card_alert, + 'sim_card_alert_sharp': Icons.sim_card_alert_sharp, + 'sim_card_alert_rounded': Icons.sim_card_alert_rounded, + 'sim_card_alert_outlined': Icons.sim_card_alert_outlined, + 'sim_card_download': Icons.sim_card_download, + 'sim_card_download_sharp': Icons.sim_card_download_sharp, + 'sim_card_download_rounded': Icons.sim_card_download_rounded, + 'sim_card_download_outlined': Icons.sim_card_download_outlined, + 'single_bed': Icons.single_bed, + 'single_bed_sharp': Icons.single_bed_sharp, + 'single_bed_rounded': Icons.single_bed_rounded, + 'single_bed_outlined': Icons.single_bed_outlined, + 'sip': Icons.sip, + 'sip_sharp': Icons.sip_sharp, + 'sip_rounded': Icons.sip_rounded, + 'sip_outlined': Icons.sip_outlined, + 'skateboarding': Icons.skateboarding, + 'skateboarding_sharp': Icons.skateboarding_sharp, + 'skateboarding_rounded': Icons.skateboarding_rounded, + 'skateboarding_outlined': Icons.skateboarding_outlined, + 'skip_next': Icons.skip_next, + 'skip_next_sharp': Icons.skip_next_sharp, + 'skip_next_rounded': Icons.skip_next_rounded, + 'skip_next_outlined': Icons.skip_next_outlined, + 'skip_previous': Icons.skip_previous, + 'skip_previous_sharp': Icons.skip_previous_sharp, + 'skip_previous_rounded': Icons.skip_previous_rounded, + 'skip_previous_outlined': Icons.skip_previous_outlined, + 'sledding': Icons.sledding, + 'sledding_sharp': Icons.sledding_sharp, + 'sledding_rounded': Icons.sledding_rounded, + 'sledding_outlined': Icons.sledding_outlined, + 'slideshow': Icons.slideshow, + 'slideshow_sharp': Icons.slideshow_sharp, + 'slideshow_rounded': Icons.slideshow_rounded, + 'slideshow_outlined': Icons.slideshow_outlined, + 'slow_motion_video': Icons.slow_motion_video, + 'slow_motion_video_sharp': Icons.slow_motion_video_sharp, + 'slow_motion_video_rounded': Icons.slow_motion_video_rounded, + 'slow_motion_video_outlined': Icons.slow_motion_video_outlined, + 'smart_button': Icons.smart_button, + 'smart_button_sharp': Icons.smart_button_sharp, + 'smart_button_rounded': Icons.smart_button_rounded, + 'smart_button_outlined': Icons.smart_button_outlined, + 'smart_display': Icons.smart_display, + 'smart_display_sharp': Icons.smart_display_sharp, + 'smart_display_rounded': Icons.smart_display_rounded, + 'smart_display_outlined': Icons.smart_display_outlined, + 'smart_screen': Icons.smart_screen, + 'smart_screen_sharp': Icons.smart_screen_sharp, + 'smart_screen_rounded': Icons.smart_screen_rounded, + 'smart_screen_outlined': Icons.smart_screen_outlined, + 'smart_toy': Icons.smart_toy, + 'smart_toy_sharp': Icons.smart_toy_sharp, + 'smart_toy_rounded': Icons.smart_toy_rounded, + 'smart_toy_outlined': Icons.smart_toy_outlined, + 'smartphone': Icons.smartphone, + 'smartphone_sharp': Icons.smartphone_sharp, + 'smartphone_rounded': Icons.smartphone_rounded, + 'smartphone_outlined': Icons.smartphone_outlined, + 'smoke_free': Icons.smoke_free, + 'smoke_free_sharp': Icons.smoke_free_sharp, + 'smoke_free_rounded': Icons.smoke_free_rounded, + 'smoke_free_outlined': Icons.smoke_free_outlined, + 'smoking_rooms': Icons.smoking_rooms, + 'smoking_rooms_sharp': Icons.smoking_rooms_sharp, + 'smoking_rooms_rounded': Icons.smoking_rooms_rounded, + 'smoking_rooms_outlined': Icons.smoking_rooms_outlined, + 'sms': Icons.sms, + 'sms_sharp': Icons.sms_sharp, + 'sms_rounded': Icons.sms_rounded, + 'sms_outlined': Icons.sms_outlined, + 'sms_failed': Icons.sms_failed, + 'sms_failed_sharp': Icons.sms_failed_sharp, + 'sms_failed_rounded': Icons.sms_failed_rounded, + 'sms_failed_outlined': Icons.sms_failed_outlined, + 'snippet_folder': Icons.snippet_folder, + 'snippet_folder_sharp': Icons.snippet_folder_sharp, + 'snippet_folder_rounded': Icons.snippet_folder_rounded, + 'snippet_folder_outlined': Icons.snippet_folder_outlined, + 'snooze': Icons.snooze, + 'snooze_sharp': Icons.snooze_sharp, + 'snooze_rounded': Icons.snooze_rounded, + 'snooze_outlined': Icons.snooze_outlined, + 'snowboarding': Icons.snowboarding, + 'snowboarding_sharp': Icons.snowboarding_sharp, + 'snowboarding_rounded': Icons.snowboarding_rounded, + 'snowboarding_outlined': Icons.snowboarding_outlined, + 'snowmobile': Icons.snowmobile, + 'snowmobile_sharp': Icons.snowmobile_sharp, + 'snowmobile_rounded': Icons.snowmobile_rounded, + 'snowmobile_outlined': Icons.snowmobile_outlined, + 'snowshoeing': Icons.snowshoeing, + 'snowshoeing_sharp': Icons.snowshoeing_sharp, + 'snowshoeing_rounded': Icons.snowshoeing_rounded, + 'snowshoeing_outlined': Icons.snowshoeing_outlined, + 'soap': Icons.soap, + 'soap_sharp': Icons.soap_sharp, + 'soap_rounded': Icons.soap_rounded, + 'soap_outlined': Icons.soap_outlined, + 'social_distance': Icons.social_distance, + 'social_distance_sharp': Icons.social_distance_sharp, + 'social_distance_rounded': Icons.social_distance_rounded, + 'social_distance_outlined': Icons.social_distance_outlined, + 'sort': Icons.sort, + 'sort_sharp': Icons.sort_sharp, + 'sort_rounded': Icons.sort_rounded, + 'sort_outlined': Icons.sort_outlined, + 'sort_by_alpha': Icons.sort_by_alpha, + 'sort_by_alpha_sharp': Icons.sort_by_alpha_sharp, + 'sort_by_alpha_rounded': Icons.sort_by_alpha_rounded, + 'sort_by_alpha_outlined': Icons.sort_by_alpha_outlined, + 'source': Icons.source, + 'source_sharp': Icons.source_sharp, + 'source_rounded': Icons.source_rounded, + 'source_outlined': Icons.source_outlined, + 'south': Icons.south, + 'south_sharp': Icons.south_sharp, + 'south_rounded': Icons.south_rounded, + 'south_outlined': Icons.south_outlined, + 'south_east': Icons.south_east, + 'south_east_sharp': Icons.south_east_sharp, + 'south_east_rounded': Icons.south_east_rounded, + 'south_east_outlined': Icons.south_east_outlined, + 'south_west': Icons.south_west, + 'south_west_sharp': Icons.south_west_sharp, + 'south_west_rounded': Icons.south_west_rounded, + 'south_west_outlined': Icons.south_west_outlined, + 'spa': Icons.spa, + 'spa_sharp': Icons.spa_sharp, + 'spa_rounded': Icons.spa_rounded, + 'spa_outlined': Icons.spa_outlined, + 'space_bar': Icons.space_bar, + 'space_bar_sharp': Icons.space_bar_sharp, + 'space_bar_rounded': Icons.space_bar_rounded, + 'space_bar_outlined': Icons.space_bar_outlined, + 'space_dashboard': Icons.space_dashboard, + 'space_dashboard_sharp': Icons.space_dashboard_sharp, + 'space_dashboard_rounded': Icons.space_dashboard_rounded, + 'space_dashboard_outlined': Icons.space_dashboard_outlined, + 'speaker': Icons.speaker, + 'speaker_sharp': Icons.speaker_sharp, + 'speaker_rounded': Icons.speaker_rounded, + 'speaker_outlined': Icons.speaker_outlined, + 'speaker_group': Icons.speaker_group, + 'speaker_group_sharp': Icons.speaker_group_sharp, + 'speaker_group_rounded': Icons.speaker_group_rounded, + 'speaker_group_outlined': Icons.speaker_group_outlined, + 'speaker_notes': Icons.speaker_notes, + 'speaker_notes_sharp': Icons.speaker_notes_sharp, + 'speaker_notes_rounded': Icons.speaker_notes_rounded, + 'speaker_notes_outlined': Icons.speaker_notes_outlined, + 'speaker_notes_off': Icons.speaker_notes_off, + 'speaker_notes_off_sharp': Icons.speaker_notes_off_sharp, + 'speaker_notes_off_rounded': Icons.speaker_notes_off_rounded, + 'speaker_notes_off_outlined': Icons.speaker_notes_off_outlined, + 'speaker_phone': Icons.speaker_phone, + 'speaker_phone_sharp': Icons.speaker_phone_sharp, + 'speaker_phone_rounded': Icons.speaker_phone_rounded, + 'speaker_phone_outlined': Icons.speaker_phone_outlined, + 'speed': Icons.speed, + 'speed_sharp': Icons.speed_sharp, + 'speed_rounded': Icons.speed_rounded, + 'speed_outlined': Icons.speed_outlined, + 'spellcheck': Icons.spellcheck, + 'spellcheck_sharp': Icons.spellcheck_sharp, + 'spellcheck_rounded': Icons.spellcheck_rounded, + 'spellcheck_outlined': Icons.spellcheck_outlined, + 'splitscreen': Icons.splitscreen, + 'splitscreen_sharp': Icons.splitscreen_sharp, + 'splitscreen_rounded': Icons.splitscreen_rounded, + 'splitscreen_outlined': Icons.splitscreen_outlined, + 'sports': Icons.sports, + 'sports_sharp': Icons.sports_sharp, + 'sports_rounded': Icons.sports_rounded, + 'sports_outlined': Icons.sports_outlined, + 'sports_bar': Icons.sports_bar, + 'sports_bar_sharp': Icons.sports_bar_sharp, + 'sports_bar_rounded': Icons.sports_bar_rounded, + 'sports_bar_outlined': Icons.sports_bar_outlined, + 'sports_baseball': Icons.sports_baseball, + 'sports_baseball_sharp': Icons.sports_baseball_sharp, + 'sports_baseball_rounded': Icons.sports_baseball_rounded, + 'sports_baseball_outlined': Icons.sports_baseball_outlined, + 'sports_basketball': Icons.sports_basketball, + 'sports_basketball_sharp': Icons.sports_basketball_sharp, + 'sports_basketball_rounded': Icons.sports_basketball_rounded, + 'sports_basketball_outlined': Icons.sports_basketball_outlined, + 'sports_cricket': Icons.sports_cricket, + 'sports_cricket_sharp': Icons.sports_cricket_sharp, + 'sports_cricket_rounded': Icons.sports_cricket_rounded, + 'sports_cricket_outlined': Icons.sports_cricket_outlined, + 'sports_esports': Icons.sports_esports, + 'sports_esports_sharp': Icons.sports_esports_sharp, + 'sports_esports_rounded': Icons.sports_esports_rounded, + 'sports_esports_outlined': Icons.sports_esports_outlined, + 'sports_football': Icons.sports_football, + 'sports_football_sharp': Icons.sports_football_sharp, + 'sports_football_rounded': Icons.sports_football_rounded, + 'sports_football_outlined': Icons.sports_football_outlined, + 'sports_golf': Icons.sports_golf, + 'sports_golf_sharp': Icons.sports_golf_sharp, + 'sports_golf_rounded': Icons.sports_golf_rounded, + 'sports_golf_outlined': Icons.sports_golf_outlined, + 'sports_handball': Icons.sports_handball, + 'sports_handball_sharp': Icons.sports_handball_sharp, + 'sports_handball_rounded': Icons.sports_handball_rounded, + 'sports_handball_outlined': Icons.sports_handball_outlined, + 'sports_hockey': Icons.sports_hockey, + 'sports_hockey_sharp': Icons.sports_hockey_sharp, + 'sports_hockey_rounded': Icons.sports_hockey_rounded, + 'sports_hockey_outlined': Icons.sports_hockey_outlined, + 'sports_kabaddi': Icons.sports_kabaddi, + 'sports_kabaddi_sharp': Icons.sports_kabaddi_sharp, + 'sports_kabaddi_rounded': Icons.sports_kabaddi_rounded, + 'sports_kabaddi_outlined': Icons.sports_kabaddi_outlined, + 'sports_mma': Icons.sports_mma, + 'sports_mma_sharp': Icons.sports_mma_sharp, + 'sports_mma_rounded': Icons.sports_mma_rounded, + 'sports_mma_outlined': Icons.sports_mma_outlined, + 'sports_motorsports': Icons.sports_motorsports, + 'sports_motorsports_sharp': Icons.sports_motorsports_sharp, + 'sports_motorsports_rounded': Icons.sports_motorsports_rounded, + 'sports_motorsports_outlined': Icons.sports_motorsports_outlined, + 'sports_rugby': Icons.sports_rugby, + 'sports_rugby_sharp': Icons.sports_rugby_sharp, + 'sports_rugby_rounded': Icons.sports_rugby_rounded, + 'sports_rugby_outlined': Icons.sports_rugby_outlined, + 'sports_score': Icons.sports_score, + 'sports_score_sharp': Icons.sports_score_sharp, + 'sports_score_rounded': Icons.sports_score_rounded, + 'sports_score_outlined': Icons.sports_score_outlined, + 'sports_soccer': Icons.sports_soccer, + 'sports_soccer_sharp': Icons.sports_soccer_sharp, + 'sports_soccer_rounded': Icons.sports_soccer_rounded, + 'sports_soccer_outlined': Icons.sports_soccer_outlined, + 'sports_tennis': Icons.sports_tennis, + 'sports_tennis_sharp': Icons.sports_tennis_sharp, + 'sports_tennis_rounded': Icons.sports_tennis_rounded, + 'sports_tennis_outlined': Icons.sports_tennis_outlined, + 'sports_volleyball': Icons.sports_volleyball, + 'sports_volleyball_sharp': Icons.sports_volleyball_sharp, + 'sports_volleyball_rounded': Icons.sports_volleyball_rounded, + 'sports_volleyball_outlined': Icons.sports_volleyball_outlined, + 'square_foot': Icons.square_foot, + 'square_foot_sharp': Icons.square_foot_sharp, + 'square_foot_rounded': Icons.square_foot_rounded, + 'square_foot_outlined': Icons.square_foot_outlined, + 'stacked_bar_chart': Icons.stacked_bar_chart, + 'stacked_bar_chart_sharp': Icons.stacked_bar_chart_sharp, + 'stacked_bar_chart_rounded': Icons.stacked_bar_chart_rounded, + 'stacked_bar_chart_outlined': Icons.stacked_bar_chart_outlined, + 'stacked_line_chart': Icons.stacked_line_chart, + 'stacked_line_chart_sharp': Icons.stacked_line_chart_sharp, + 'stacked_line_chart_rounded': Icons.stacked_line_chart_rounded, + 'stacked_line_chart_outlined': Icons.stacked_line_chart_outlined, + 'stairs': Icons.stairs, + 'stairs_sharp': Icons.stairs_sharp, + 'stairs_rounded': Icons.stairs_rounded, + 'stairs_outlined': Icons.stairs_outlined, + 'star': Icons.star, + 'star_sharp': Icons.star_sharp, + 'star_rounded': Icons.star_rounded, + 'star_outlined': Icons.star_outlined, + 'star_border': Icons.star_border, + 'star_border_sharp': Icons.star_border_sharp, + 'star_border_rounded': Icons.star_border_rounded, + 'star_border_outlined': Icons.star_border_outlined, + 'star_border_purple500': Icons.star_border_purple500, + 'star_border_purple500_sharp': Icons.star_border_purple500_sharp, + 'star_border_purple500_rounded': Icons.star_border_purple500_rounded, + 'star_border_purple500_outlined': Icons.star_border_purple500_outlined, + 'star_half': Icons.star_half, + 'star_half_sharp': Icons.star_half_sharp, + 'star_half_rounded': Icons.star_half_rounded, + 'star_half_outlined': Icons.star_half_outlined, + 'star_outline': Icons.star_outline, + 'star_outline_sharp': Icons.star_outline_sharp, + 'star_outline_rounded': Icons.star_outline_rounded, + 'star_outline_outlined': Icons.star_outline_outlined, + 'star_purple500': Icons.star_purple500, + 'star_purple500_sharp': Icons.star_purple500_sharp, + 'star_purple500_rounded': Icons.star_purple500_rounded, + 'star_purple500_outlined': Icons.star_purple500_outlined, + 'star_rate': Icons.star_rate, + 'star_rate_sharp': Icons.star_rate_sharp, + 'star_rate_rounded': Icons.star_rate_rounded, + 'star_rate_outlined': Icons.star_rate_outlined, + 'stars': Icons.stars, + 'stars_sharp': Icons.stars_sharp, + 'stars_rounded': Icons.stars_rounded, + 'stars_outlined': Icons.stars_outlined, + 'stay_current_landscape': Icons.stay_current_landscape, + 'stay_current_landscape_sharp': Icons.stay_current_landscape_sharp, + 'stay_current_landscape_rounded': Icons.stay_current_landscape_rounded, + 'stay_current_landscape_outlined': + Icons.stay_current_landscape_outlined, + 'stay_current_portrait': Icons.stay_current_portrait, + 'stay_current_portrait_sharp': Icons.stay_current_portrait_sharp, + 'stay_current_portrait_rounded': Icons.stay_current_portrait_rounded, + 'stay_current_portrait_outlined': Icons.stay_current_portrait_outlined, + 'stay_primary_landscape': Icons.stay_primary_landscape, + 'stay_primary_landscape_sharp': Icons.stay_primary_landscape_sharp, + 'stay_primary_landscape_rounded': Icons.stay_primary_landscape_rounded, + 'stay_primary_landscape_outlined': + Icons.stay_primary_landscape_outlined, + 'stay_primary_portrait': Icons.stay_primary_portrait, + 'stay_primary_portrait_sharp': Icons.stay_primary_portrait_sharp, + 'stay_primary_portrait_rounded': Icons.stay_primary_portrait_rounded, + 'stay_primary_portrait_outlined': Icons.stay_primary_portrait_outlined, + 'sticky_note_2': Icons.sticky_note_2, + 'sticky_note_2_sharp': Icons.sticky_note_2_sharp, + 'sticky_note_2_rounded': Icons.sticky_note_2_rounded, + 'sticky_note_2_outlined': Icons.sticky_note_2_outlined, + 'stop': Icons.stop, + 'stop_sharp': Icons.stop_sharp, + 'stop_rounded': Icons.stop_rounded, + 'stop_outlined': Icons.stop_outlined, + 'stop_circle': Icons.stop_circle, + 'stop_circle_sharp': Icons.stop_circle_sharp, + 'stop_circle_rounded': Icons.stop_circle_rounded, + 'stop_circle_outlined': Icons.stop_circle_outlined, + 'stop_screen_share': Icons.stop_screen_share, + 'stop_screen_share_sharp': Icons.stop_screen_share_sharp, + 'stop_screen_share_rounded': Icons.stop_screen_share_rounded, + 'stop_screen_share_outlined': Icons.stop_screen_share_outlined, + 'storage': Icons.storage, + 'storage_sharp': Icons.storage_sharp, + 'storage_rounded': Icons.storage_rounded, + 'storage_outlined': Icons.storage_outlined, + 'store': Icons.store, + 'store_sharp': Icons.store_sharp, + 'store_rounded': Icons.store_rounded, + 'store_outlined': Icons.store_outlined, + 'store_mall_directory': Icons.store_mall_directory, + 'store_mall_directory_sharp': Icons.store_mall_directory_sharp, + 'store_mall_directory_rounded': Icons.store_mall_directory_rounded, + 'store_mall_directory_outlined': Icons.store_mall_directory_outlined, + 'storefront': Icons.storefront, + 'storefront_sharp': Icons.storefront_sharp, + 'storefront_rounded': Icons.storefront_rounded, + 'storefront_outlined': Icons.storefront_outlined, + 'storm': Icons.storm, + 'storm_sharp': Icons.storm_sharp, + 'storm_rounded': Icons.storm_rounded, + 'storm_outlined': Icons.storm_outlined, + 'straighten': Icons.straighten, + 'straighten_sharp': Icons.straighten_sharp, + 'straighten_rounded': Icons.straighten_rounded, + 'straighten_outlined': Icons.straighten_outlined, + 'stream': Icons.stream, + 'stream_sharp': Icons.stream_sharp, + 'stream_rounded': Icons.stream_rounded, + 'stream_outlined': Icons.stream_outlined, + 'streetview': Icons.streetview, + 'streetview_sharp': Icons.streetview_sharp, + 'streetview_rounded': Icons.streetview_rounded, + 'streetview_outlined': Icons.streetview_outlined, + 'strikethrough_s': Icons.strikethrough_s, + 'strikethrough_s_sharp': Icons.strikethrough_s_sharp, + 'strikethrough_s_rounded': Icons.strikethrough_s_rounded, + 'strikethrough_s_outlined': Icons.strikethrough_s_outlined, + 'stroller': Icons.stroller, + 'stroller_sharp': Icons.stroller_sharp, + 'stroller_rounded': Icons.stroller_rounded, + 'stroller_outlined': Icons.stroller_outlined, + 'style': Icons.style, + 'style_sharp': Icons.style_sharp, + 'style_rounded': Icons.style_rounded, + 'style_outlined': Icons.style_outlined, + 'subdirectory_arrow_left': Icons.subdirectory_arrow_left, + 'subdirectory_arrow_left_sharp': Icons.subdirectory_arrow_left_sharp, + 'subdirectory_arrow_left_rounded': + Icons.subdirectory_arrow_left_rounded, + 'subdirectory_arrow_left_outlined': + Icons.subdirectory_arrow_left_outlined, + 'subdirectory_arrow_right': Icons.subdirectory_arrow_right, + 'subdirectory_arrow_right_sharp': Icons.subdirectory_arrow_right_sharp, + 'subdirectory_arrow_right_rounded': + Icons.subdirectory_arrow_right_rounded, + 'subdirectory_arrow_right_outlined': + Icons.subdirectory_arrow_right_outlined, + 'subject': Icons.subject, + 'subject_sharp': Icons.subject_sharp, + 'subject_rounded': Icons.subject_rounded, + 'subject_outlined': Icons.subject_outlined, + 'subscript': Icons.subscript, + 'subscript_sharp': Icons.subscript_sharp, + 'subscript_rounded': Icons.subscript_rounded, + 'subscript_outlined': Icons.subscript_outlined, + 'subscriptions': Icons.subscriptions, + 'subscriptions_sharp': Icons.subscriptions_sharp, + 'subscriptions_rounded': Icons.subscriptions_rounded, + 'subscriptions_outlined': Icons.subscriptions_outlined, + 'subtitles': Icons.subtitles, + 'subtitles_sharp': Icons.subtitles_sharp, + 'subtitles_rounded': Icons.subtitles_rounded, + 'subtitles_outlined': Icons.subtitles_outlined, + 'subtitles_off': Icons.subtitles_off, + 'subtitles_off_sharp': Icons.subtitles_off_sharp, + 'subtitles_off_rounded': Icons.subtitles_off_rounded, + 'subtitles_off_outlined': Icons.subtitles_off_outlined, + 'subway': Icons.subway, + 'subway_sharp': Icons.subway_sharp, + 'subway_rounded': Icons.subway_rounded, + 'subway_outlined': Icons.subway_outlined, + 'summarize': Icons.summarize, + 'summarize_sharp': Icons.summarize_sharp, + 'summarize_rounded': Icons.summarize_rounded, + 'summarize_outlined': Icons.summarize_outlined, + 'superscript': Icons.superscript, + 'superscript_sharp': Icons.superscript_sharp, + 'superscript_rounded': Icons.superscript_rounded, + 'superscript_outlined': Icons.superscript_outlined, + 'supervised_user_circle': Icons.supervised_user_circle, + 'supervised_user_circle_sharp': Icons.supervised_user_circle_sharp, + 'supervised_user_circle_rounded': Icons.supervised_user_circle_rounded, + 'supervised_user_circle_outlined': + Icons.supervised_user_circle_outlined, + 'supervisor_account': Icons.supervisor_account, + 'supervisor_account_sharp': Icons.supervisor_account_sharp, + 'supervisor_account_rounded': Icons.supervisor_account_rounded, + 'supervisor_account_outlined': Icons.supervisor_account_outlined, + 'support': Icons.support, + 'support_sharp': Icons.support_sharp, + 'support_rounded': Icons.support_rounded, + 'support_outlined': Icons.support_outlined, + 'support_agent': Icons.support_agent, + 'support_agent_sharp': Icons.support_agent_sharp, + 'support_agent_rounded': Icons.support_agent_rounded, + 'support_agent_outlined': Icons.support_agent_outlined, + 'surfing': Icons.surfing, + 'surfing_sharp': Icons.surfing_sharp, + 'surfing_rounded': Icons.surfing_rounded, + 'surfing_outlined': Icons.surfing_outlined, + 'surround_sound': Icons.surround_sound, + 'surround_sound_sharp': Icons.surround_sound_sharp, + 'surround_sound_rounded': Icons.surround_sound_rounded, + 'surround_sound_outlined': Icons.surround_sound_outlined, + 'swap_calls': Icons.swap_calls, + 'swap_calls_sharp': Icons.swap_calls_sharp, + 'swap_calls_rounded': Icons.swap_calls_rounded, + 'swap_calls_outlined': Icons.swap_calls_outlined, + 'swap_horiz': Icons.swap_horiz, + 'swap_horiz_sharp': Icons.swap_horiz_sharp, + 'swap_horiz_rounded': Icons.swap_horiz_rounded, + 'swap_horiz_outlined': Icons.swap_horiz_outlined, + 'swap_horizontal_circle': Icons.swap_horizontal_circle, + 'swap_horizontal_circle_sharp': Icons.swap_horizontal_circle_sharp, + 'swap_horizontal_circle_rounded': Icons.swap_horizontal_circle_rounded, + 'swap_horizontal_circle_outlined': + Icons.swap_horizontal_circle_outlined, + 'swap_vert': Icons.swap_vert, + 'swap_vert_sharp': Icons.swap_vert_sharp, + 'swap_vert_rounded': Icons.swap_vert_rounded, + 'swap_vert_outlined': Icons.swap_vert_outlined, + 'swap_vert_circle': Icons.swap_vert_circle, + 'swap_vert_circle_sharp': Icons.swap_vert_circle_sharp, + 'swap_vert_circle_rounded': Icons.swap_vert_circle_rounded, + 'swap_vert_circle_outlined': Icons.swap_vert_circle_outlined, + 'swap_vertical_circle': Icons.swap_vertical_circle, + 'swap_vertical_circle_sharp': Icons.swap_vertical_circle_sharp, + 'swap_vertical_circle_rounded': Icons.swap_vertical_circle_rounded, + 'swap_vertical_circle_outlined': Icons.swap_vertical_circle_outlined, + 'swipe': Icons.swipe, + 'swipe_sharp': Icons.swipe_sharp, + 'swipe_rounded': Icons.swipe_rounded, + 'swipe_outlined': Icons.swipe_outlined, + 'switch_account': Icons.switch_account, + 'switch_account_sharp': Icons.switch_account_sharp, + 'switch_account_rounded': Icons.switch_account_rounded, + 'switch_account_outlined': Icons.switch_account_outlined, + 'switch_camera': Icons.switch_camera, + 'switch_camera_sharp': Icons.switch_camera_sharp, + 'switch_camera_rounded': Icons.switch_camera_rounded, + 'switch_camera_outlined': Icons.switch_camera_outlined, + 'switch_left': Icons.switch_left, + 'switch_left_sharp': Icons.switch_left_sharp, + 'switch_left_rounded': Icons.switch_left_rounded, + 'switch_left_outlined': Icons.switch_left_outlined, + 'switch_right': Icons.switch_right, + 'switch_right_sharp': Icons.switch_right_sharp, + 'switch_right_rounded': Icons.switch_right_rounded, + 'switch_right_outlined': Icons.switch_right_outlined, + 'switch_video': Icons.switch_video, + 'switch_video_sharp': Icons.switch_video_sharp, + 'switch_video_rounded': Icons.switch_video_rounded, + 'switch_video_outlined': Icons.switch_video_outlined, + 'sync': Icons.sync, + 'sync_sharp': Icons.sync_sharp, + 'sync_rounded': Icons.sync_rounded, + 'sync_outlined': Icons.sync_outlined, + 'sync_alt': Icons.sync_alt, + 'sync_alt_sharp': Icons.sync_alt_sharp, + 'sync_alt_rounded': Icons.sync_alt_rounded, + 'sync_alt_outlined': Icons.sync_alt_outlined, + 'sync_disabled': Icons.sync_disabled, + 'sync_disabled_sharp': Icons.sync_disabled_sharp, + 'sync_disabled_rounded': Icons.sync_disabled_rounded, + 'sync_disabled_outlined': Icons.sync_disabled_outlined, + 'sync_problem': Icons.sync_problem, + 'sync_problem_sharp': Icons.sync_problem_sharp, + 'sync_problem_rounded': Icons.sync_problem_rounded, + 'sync_problem_outlined': Icons.sync_problem_outlined, + 'system_security_update': Icons.system_security_update, + 'system_security_update_sharp': Icons.system_security_update_sharp, + 'system_security_update_rounded': Icons.system_security_update_rounded, + 'system_security_update_outlined': + Icons.system_security_update_outlined, + 'system_security_update_good': Icons.system_security_update_good, + 'system_security_update_good_sharp': + Icons.system_security_update_good_sharp, + 'system_security_update_good_rounded': + Icons.system_security_update_good_rounded, + 'system_security_update_good_outlined': + Icons.system_security_update_good_outlined, + 'system_security_update_warning': Icons.system_security_update_warning, + 'system_security_update_warning_sharp': + Icons.system_security_update_warning_sharp, + 'system_security_update_warning_rounded': + Icons.system_security_update_warning_rounded, + 'system_security_update_warning_outlined': + Icons.system_security_update_warning_outlined, + 'system_update': Icons.system_update, + 'system_update_sharp': Icons.system_update_sharp, + 'system_update_rounded': Icons.system_update_rounded, + 'system_update_outlined': Icons.system_update_outlined, + 'system_update_alt': Icons.system_update_alt, + 'system_update_alt_sharp': Icons.system_update_alt_sharp, + 'system_update_alt_rounded': Icons.system_update_alt_rounded, + 'system_update_alt_outlined': Icons.system_update_alt_outlined, + 'system_update_tv': Icons.system_update_tv, + 'system_update_tv_sharp': Icons.system_update_tv_sharp, + 'system_update_tv_rounded': Icons.system_update_tv_rounded, + 'system_update_tv_outlined': Icons.system_update_tv_outlined, + 'tab': Icons.tab, + 'tab_sharp': Icons.tab_sharp, + 'tab_rounded': Icons.tab_rounded, + 'tab_outlined': Icons.tab_outlined, + 'tab_unselected': Icons.tab_unselected, + 'tab_unselected_sharp': Icons.tab_unselected_sharp, + 'tab_unselected_rounded': Icons.tab_unselected_rounded, + 'tab_unselected_outlined': Icons.tab_unselected_outlined, + 'table_chart': Icons.table_chart, + 'table_chart_sharp': Icons.table_chart_sharp, + 'table_chart_rounded': Icons.table_chart_rounded, + 'table_chart_outlined': Icons.table_chart_outlined, + 'table_rows': Icons.table_rows, + 'table_rows_sharp': Icons.table_rows_sharp, + 'table_rows_rounded': Icons.table_rows_rounded, + 'table_rows_outlined': Icons.table_rows_outlined, + 'table_view': Icons.table_view, + 'table_view_sharp': Icons.table_view_sharp, + 'table_view_rounded': Icons.table_view_rounded, + 'table_view_outlined': Icons.table_view_outlined, + 'tablet': Icons.tablet, + 'tablet_sharp': Icons.tablet_sharp, + 'tablet_rounded': Icons.tablet_rounded, + 'tablet_outlined': Icons.tablet_outlined, + 'tablet_android': Icons.tablet_android, + 'tablet_android_sharp': Icons.tablet_android_sharp, + 'tablet_android_rounded': Icons.tablet_android_rounded, + 'tablet_android_outlined': Icons.tablet_android_outlined, + 'tablet_mac': Icons.tablet_mac, + 'tablet_mac_sharp': Icons.tablet_mac_sharp, + 'tablet_mac_rounded': Icons.tablet_mac_rounded, + 'tablet_mac_outlined': Icons.tablet_mac_outlined, + 'tag': Icons.tag, + 'tag_sharp': Icons.tag_sharp, + 'tag_rounded': Icons.tag_rounded, + 'tag_outlined': Icons.tag_outlined, + 'tag_faces': Icons.tag_faces, + 'tag_faces_sharp': Icons.tag_faces_sharp, + 'tag_faces_rounded': Icons.tag_faces_rounded, + 'tag_faces_outlined': Icons.tag_faces_outlined, + 'takeout_dining': Icons.takeout_dining, + 'takeout_dining_sharp': Icons.takeout_dining_sharp, + 'takeout_dining_rounded': Icons.takeout_dining_rounded, + 'takeout_dining_outlined': Icons.takeout_dining_outlined, + 'tap_and_play': Icons.tap_and_play, + 'tap_and_play_sharp': Icons.tap_and_play_sharp, + 'tap_and_play_rounded': Icons.tap_and_play_rounded, + 'tap_and_play_outlined': Icons.tap_and_play_outlined, + 'tapas': Icons.tapas, + 'tapas_sharp': Icons.tapas_sharp, + 'tapas_rounded': Icons.tapas_rounded, + 'tapas_outlined': Icons.tapas_outlined, + 'task': Icons.task, + 'task_sharp': Icons.task_sharp, + 'task_rounded': Icons.task_rounded, + 'task_outlined': Icons.task_outlined, + 'task_alt': Icons.task_alt, + 'task_alt_sharp': Icons.task_alt_sharp, + 'task_alt_rounded': Icons.task_alt_rounded, + 'task_alt_outlined': Icons.task_alt_outlined, + 'taxi_alert': Icons.taxi_alert, + 'taxi_alert_sharp': Icons.taxi_alert_sharp, + 'taxi_alert_rounded': Icons.taxi_alert_rounded, + 'taxi_alert_outlined': Icons.taxi_alert_outlined, + 'terrain': Icons.terrain, + 'terrain_sharp': Icons.terrain_sharp, + 'terrain_rounded': Icons.terrain_rounded, + 'terrain_outlined': Icons.terrain_outlined, + 'text_fields': Icons.text_fields, + 'text_fields_sharp': Icons.text_fields_sharp, + 'text_fields_rounded': Icons.text_fields_rounded, + 'text_fields_outlined': Icons.text_fields_outlined, + 'text_format': Icons.text_format, + 'text_format_sharp': Icons.text_format_sharp, + 'text_format_rounded': Icons.text_format_rounded, + 'text_format_outlined': Icons.text_format_outlined, + 'text_rotate_up': Icons.text_rotate_up, + 'text_rotate_up_sharp': Icons.text_rotate_up_sharp, + 'text_rotate_up_rounded': Icons.text_rotate_up_rounded, + 'text_rotate_up_outlined': Icons.text_rotate_up_outlined, + 'text_rotate_vertical': Icons.text_rotate_vertical, + 'text_rotate_vertical_sharp': Icons.text_rotate_vertical_sharp, + 'text_rotate_vertical_rounded': Icons.text_rotate_vertical_rounded, + 'text_rotate_vertical_outlined': Icons.text_rotate_vertical_outlined, + 'text_rotation_angledown': Icons.text_rotation_angledown, + 'text_rotation_angledown_sharp': Icons.text_rotation_angledown_sharp, + 'text_rotation_angledown_rounded': + Icons.text_rotation_angledown_rounded, + 'text_rotation_angledown_outlined': + Icons.text_rotation_angledown_outlined, + 'text_rotation_angleup': Icons.text_rotation_angleup, + 'text_rotation_angleup_sharp': Icons.text_rotation_angleup_sharp, + 'text_rotation_angleup_rounded': Icons.text_rotation_angleup_rounded, + 'text_rotation_angleup_outlined': Icons.text_rotation_angleup_outlined, + 'text_rotation_down': Icons.text_rotation_down, + 'text_rotation_down_sharp': Icons.text_rotation_down_sharp, + 'text_rotation_down_rounded': Icons.text_rotation_down_rounded, + 'text_rotation_down_outlined': Icons.text_rotation_down_outlined, + 'text_rotation_none': Icons.text_rotation_none, + 'text_rotation_none_sharp': Icons.text_rotation_none_sharp, + 'text_rotation_none_rounded': Icons.text_rotation_none_rounded, + 'text_rotation_none_outlined': Icons.text_rotation_none_outlined, + 'text_snippet': Icons.text_snippet, + 'text_snippet_sharp': Icons.text_snippet_sharp, + 'text_snippet_rounded': Icons.text_snippet_rounded, + 'text_snippet_outlined': Icons.text_snippet_outlined, + 'textsms': Icons.textsms, + 'textsms_sharp': Icons.textsms_sharp, + 'textsms_rounded': Icons.textsms_rounded, + 'textsms_outlined': Icons.textsms_outlined, + 'texture': Icons.texture, + 'texture_sharp': Icons.texture_sharp, + 'texture_rounded': Icons.texture_rounded, + 'texture_outlined': Icons.texture_outlined, + 'theater_comedy': Icons.theater_comedy, + 'theater_comedy_sharp': Icons.theater_comedy_sharp, + 'theater_comedy_rounded': Icons.theater_comedy_rounded, + 'theater_comedy_outlined': Icons.theater_comedy_outlined, + 'theaters': Icons.theaters, + 'theaters_sharp': Icons.theaters_sharp, + 'theaters_rounded': Icons.theaters_rounded, + 'theaters_outlined': Icons.theaters_outlined, + 'thermostat': Icons.thermostat, + 'thermostat_sharp': Icons.thermostat_sharp, + 'thermostat_rounded': Icons.thermostat_rounded, + 'thermostat_outlined': Icons.thermostat_outlined, + 'thermostat_auto': Icons.thermostat_auto, + 'thermostat_auto_sharp': Icons.thermostat_auto_sharp, + 'thermostat_auto_rounded': Icons.thermostat_auto_rounded, + 'thermostat_auto_outlined': Icons.thermostat_auto_outlined, + 'thumb_down': Icons.thumb_down, + 'thumb_down_sharp': Icons.thumb_down_sharp, + 'thumb_down_rounded': Icons.thumb_down_rounded, + 'thumb_down_outlined': Icons.thumb_down_outlined, + 'thumb_down_alt': Icons.thumb_down_alt, + 'thumb_down_alt_sharp': Icons.thumb_down_alt_sharp, + 'thumb_down_alt_rounded': Icons.thumb_down_alt_rounded, + 'thumb_down_alt_outlined': Icons.thumb_down_alt_outlined, + 'thumb_down_off_alt': Icons.thumb_down_off_alt, + 'thumb_down_off_alt_sharp': Icons.thumb_down_off_alt_sharp, + 'thumb_down_off_alt_rounded': Icons.thumb_down_off_alt_rounded, + 'thumb_down_off_alt_outlined': Icons.thumb_down_off_alt_outlined, + 'thumb_up': Icons.thumb_up, + 'thumb_up_sharp': Icons.thumb_up_sharp, + 'thumb_up_rounded': Icons.thumb_up_rounded, + 'thumb_up_outlined': Icons.thumb_up_outlined, + 'thumb_up_alt': Icons.thumb_up_alt, + 'thumb_up_alt_sharp': Icons.thumb_up_alt_sharp, + 'thumb_up_alt_rounded': Icons.thumb_up_alt_rounded, + 'thumb_up_alt_outlined': Icons.thumb_up_alt_outlined, + 'thumb_up_off_alt': Icons.thumb_up_off_alt, + 'thumb_up_off_alt_sharp': Icons.thumb_up_off_alt_sharp, + 'thumb_up_off_alt_rounded': Icons.thumb_up_off_alt_rounded, + 'thumb_up_off_alt_outlined': Icons.thumb_up_off_alt_outlined, + 'thumbs_up_down': Icons.thumbs_up_down, + 'thumbs_up_down_sharp': Icons.thumbs_up_down_sharp, + 'thumbs_up_down_rounded': Icons.thumbs_up_down_rounded, + 'thumbs_up_down_outlined': Icons.thumbs_up_down_outlined, + 'time_to_leave': Icons.time_to_leave, + 'time_to_leave_sharp': Icons.time_to_leave_sharp, + 'time_to_leave_rounded': Icons.time_to_leave_rounded, + 'time_to_leave_outlined': Icons.time_to_leave_outlined, + 'timelapse': Icons.timelapse, + 'timelapse_sharp': Icons.timelapse_sharp, + 'timelapse_rounded': Icons.timelapse_rounded, + 'timelapse_outlined': Icons.timelapse_outlined, + 'timeline': Icons.timeline, + 'timeline_sharp': Icons.timeline_sharp, + 'timeline_rounded': Icons.timeline_rounded, + 'timeline_outlined': Icons.timeline_outlined, + 'timer': Icons.timer, + 'timer_sharp': Icons.timer_sharp, + 'timer_rounded': Icons.timer_rounded, + 'timer_outlined': Icons.timer_outlined, + 'timer_10': Icons.timer_10, + 'timer_10_sharp': Icons.timer_10_sharp, + 'timer_10_rounded': Icons.timer_10_rounded, + 'timer_10_outlined': Icons.timer_10_outlined, + 'timer_10_select': Icons.timer_10_select, + 'timer_10_select_sharp': Icons.timer_10_select_sharp, + 'timer_10_select_rounded': Icons.timer_10_select_rounded, + 'timer_10_select_outlined': Icons.timer_10_select_outlined, + 'timer_3': Icons.timer_3, + 'timer_3_sharp': Icons.timer_3_sharp, + 'timer_3_rounded': Icons.timer_3_rounded, + 'timer_3_outlined': Icons.timer_3_outlined, + 'timer_3_select': Icons.timer_3_select, + 'timer_3_select_sharp': Icons.timer_3_select_sharp, + 'timer_3_select_rounded': Icons.timer_3_select_rounded, + 'timer_3_select_outlined': Icons.timer_3_select_outlined, + 'timer_off': Icons.timer_off, + 'timer_off_sharp': Icons.timer_off_sharp, + 'timer_off_rounded': Icons.timer_off_rounded, + 'timer_off_outlined': Icons.timer_off_outlined, + 'title': Icons.title, + 'title_sharp': Icons.title_sharp, + 'title_rounded': Icons.title_rounded, + 'title_outlined': Icons.title_outlined, + 'toc': Icons.toc, + 'toc_sharp': Icons.toc_sharp, + 'toc_rounded': Icons.toc_rounded, + 'toc_outlined': Icons.toc_outlined, + 'today': Icons.today, + 'today_sharp': Icons.today_sharp, + 'today_rounded': Icons.today_rounded, + 'today_outlined': Icons.today_outlined, + 'toggle_off': Icons.toggle_off, + 'toggle_off_sharp': Icons.toggle_off_sharp, + 'toggle_off_rounded': Icons.toggle_off_rounded, + 'toggle_off_outlined': Icons.toggle_off_outlined, + 'toggle_on': Icons.toggle_on, + 'toggle_on_sharp': Icons.toggle_on_sharp, + 'toggle_on_rounded': Icons.toggle_on_rounded, + 'toggle_on_outlined': Icons.toggle_on_outlined, + 'toll': Icons.toll, + 'toll_sharp': Icons.toll_sharp, + 'toll_rounded': Icons.toll_rounded, + 'toll_outlined': Icons.toll_outlined, + 'tonality': Icons.tonality, + 'tonality_sharp': Icons.tonality_sharp, + 'tonality_rounded': Icons.tonality_rounded, + 'tonality_outlined': Icons.tonality_outlined, + 'topic': Icons.topic, + 'topic_sharp': Icons.topic_sharp, + 'topic_rounded': Icons.topic_rounded, + 'topic_outlined': Icons.topic_outlined, + 'touch_app': Icons.touch_app, + 'touch_app_sharp': Icons.touch_app_sharp, + 'touch_app_rounded': Icons.touch_app_rounded, + 'touch_app_outlined': Icons.touch_app_outlined, + 'tour': Icons.tour, + 'tour_sharp': Icons.tour_sharp, + 'tour_rounded': Icons.tour_rounded, + 'tour_outlined': Icons.tour_outlined, + 'toys': Icons.toys, + 'toys_sharp': Icons.toys_sharp, + 'toys_rounded': Icons.toys_rounded, + 'toys_outlined': Icons.toys_outlined, + 'track_changes': Icons.track_changes, + 'track_changes_sharp': Icons.track_changes_sharp, + 'track_changes_rounded': Icons.track_changes_rounded, + 'track_changes_outlined': Icons.track_changes_outlined, + 'traffic': Icons.traffic, + 'traffic_sharp': Icons.traffic_sharp, + 'traffic_rounded': Icons.traffic_rounded, + 'traffic_outlined': Icons.traffic_outlined, + 'train': Icons.train, + 'train_sharp': Icons.train_sharp, + 'train_rounded': Icons.train_rounded, + 'train_outlined': Icons.train_outlined, + 'tram': Icons.tram, + 'tram_sharp': Icons.tram_sharp, + 'tram_rounded': Icons.tram_rounded, + 'tram_outlined': Icons.tram_outlined, + 'transfer_within_a_station': Icons.transfer_within_a_station, + 'transfer_within_a_station_sharp': + Icons.transfer_within_a_station_sharp, + 'transfer_within_a_station_rounded': + Icons.transfer_within_a_station_rounded, + 'transfer_within_a_station_outlined': + Icons.transfer_within_a_station_outlined, + 'transform': Icons.transform, + 'transform_sharp': Icons.transform_sharp, + 'transform_rounded': Icons.transform_rounded, + 'transform_outlined': Icons.transform_outlined, + 'transgender': Icons.transgender, + 'transgender_sharp': Icons.transgender_sharp, + 'transgender_rounded': Icons.transgender_rounded, + 'transgender_outlined': Icons.transgender_outlined, + 'transit_enterexit': Icons.transit_enterexit, + 'transit_enterexit_sharp': Icons.transit_enterexit_sharp, + 'transit_enterexit_rounded': Icons.transit_enterexit_rounded, + 'transit_enterexit_outlined': Icons.transit_enterexit_outlined, + 'translate': Icons.translate, + 'translate_sharp': Icons.translate_sharp, + 'translate_rounded': Icons.translate_rounded, + 'translate_outlined': Icons.translate_outlined, + 'travel_explore': Icons.travel_explore, + 'travel_explore_sharp': Icons.travel_explore_sharp, + 'travel_explore_rounded': Icons.travel_explore_rounded, + 'travel_explore_outlined': Icons.travel_explore_outlined, + 'trending_down': Icons.trending_down, + 'trending_down_sharp': Icons.trending_down_sharp, + 'trending_down_rounded': Icons.trending_down_rounded, + 'trending_down_outlined': Icons.trending_down_outlined, + 'trending_flat': Icons.trending_flat, + 'trending_flat_sharp': Icons.trending_flat_sharp, + 'trending_flat_rounded': Icons.trending_flat_rounded, + 'trending_flat_outlined': Icons.trending_flat_outlined, + 'trending_neutral': Icons.trending_neutral, + 'trending_neutral_sharp': Icons.trending_neutral_sharp, + 'trending_neutral_rounded': Icons.trending_neutral_rounded, + 'trending_neutral_outlined': Icons.trending_neutral_outlined, + 'trending_up': Icons.trending_up, + 'trending_up_sharp': Icons.trending_up_sharp, + 'trending_up_rounded': Icons.trending_up_rounded, + 'trending_up_outlined': Icons.trending_up_outlined, + 'trip_origin': Icons.trip_origin, + 'trip_origin_sharp': Icons.trip_origin_sharp, + 'trip_origin_rounded': Icons.trip_origin_rounded, + 'trip_origin_outlined': Icons.trip_origin_outlined, + 'try_sms_star': Icons.try_sms_star, + 'try_sms_star_sharp': Icons.try_sms_star_sharp, + 'try_sms_star_rounded': Icons.try_sms_star_rounded, + 'try_sms_star_outlined': Icons.try_sms_star_outlined, + 'tty': Icons.tty, + 'tty_sharp': Icons.tty_sharp, + 'tty_rounded': Icons.tty_rounded, + 'tty_outlined': Icons.tty_outlined, + 'tune': Icons.tune, + 'tune_sharp': Icons.tune_sharp, + 'tune_rounded': Icons.tune_rounded, + 'tune_outlined': Icons.tune_outlined, + 'tungsten': Icons.tungsten, + 'tungsten_sharp': Icons.tungsten_sharp, + 'tungsten_rounded': Icons.tungsten_rounded, + 'tungsten_outlined': Icons.tungsten_outlined, + 'turned_in': Icons.turned_in, + 'turned_in_sharp': Icons.turned_in_sharp, + 'turned_in_rounded': Icons.turned_in_rounded, + 'turned_in_outlined': Icons.turned_in_outlined, + 'turned_in_not': Icons.turned_in_not, + 'turned_in_not_sharp': Icons.turned_in_not_sharp, + 'turned_in_not_rounded': Icons.turned_in_not_rounded, + 'turned_in_not_outlined': Icons.turned_in_not_outlined, + 'tv': Icons.tv, + 'tv_sharp': Icons.tv_sharp, + 'tv_rounded': Icons.tv_rounded, + 'tv_outlined': Icons.tv_outlined, + 'tv_off': Icons.tv_off, + 'tv_off_sharp': Icons.tv_off_sharp, + 'tv_off_rounded': Icons.tv_off_rounded, + 'tv_off_outlined': Icons.tv_off_outlined, + 'two_wheeler': Icons.two_wheeler, + 'two_wheeler_sharp': Icons.two_wheeler_sharp, + 'two_wheeler_rounded': Icons.two_wheeler_rounded, + 'two_wheeler_outlined': Icons.two_wheeler_outlined, + 'umbrella': Icons.umbrella, + 'umbrella_sharp': Icons.umbrella_sharp, + 'umbrella_rounded': Icons.umbrella_rounded, + 'umbrella_outlined': Icons.umbrella_outlined, + 'unarchive': Icons.unarchive, + 'unarchive_sharp': Icons.unarchive_sharp, + 'unarchive_rounded': Icons.unarchive_rounded, + 'unarchive_outlined': Icons.unarchive_outlined, + 'undo': Icons.undo, + 'undo_sharp': Icons.undo_sharp, + 'undo_rounded': Icons.undo_rounded, + 'undo_outlined': Icons.undo_outlined, + 'unfold_less': Icons.unfold_less, + 'unfold_less_sharp': Icons.unfold_less_sharp, + 'unfold_less_rounded': Icons.unfold_less_rounded, + 'unfold_less_outlined': Icons.unfold_less_outlined, + 'unfold_more': Icons.unfold_more, + 'unfold_more_sharp': Icons.unfold_more_sharp, + 'unfold_more_rounded': Icons.unfold_more_rounded, + 'unfold_more_outlined': Icons.unfold_more_outlined, + 'unpublished': Icons.unpublished, + 'unpublished_sharp': Icons.unpublished_sharp, + 'unpublished_rounded': Icons.unpublished_rounded, + 'unpublished_outlined': Icons.unpublished_outlined, + 'unsubscribe': Icons.unsubscribe, + 'unsubscribe_sharp': Icons.unsubscribe_sharp, + 'unsubscribe_rounded': Icons.unsubscribe_rounded, + 'unsubscribe_outlined': Icons.unsubscribe_outlined, + 'upcoming': Icons.upcoming, + 'upcoming_sharp': Icons.upcoming_sharp, + 'upcoming_rounded': Icons.upcoming_rounded, + 'upcoming_outlined': Icons.upcoming_outlined, + 'update': Icons.update, + 'update_sharp': Icons.update_sharp, + 'update_rounded': Icons.update_rounded, + 'update_outlined': Icons.update_outlined, + 'update_disabled': Icons.update_disabled, + 'update_disabled_sharp': Icons.update_disabled_sharp, + 'update_disabled_rounded': Icons.update_disabled_rounded, + 'update_disabled_outlined': Icons.update_disabled_outlined, + 'upgrade': Icons.upgrade, + 'upgrade_sharp': Icons.upgrade_sharp, + 'upgrade_rounded': Icons.upgrade_rounded, + 'upgrade_outlined': Icons.upgrade_outlined, + 'upload': Icons.upload, + 'upload_sharp': Icons.upload_sharp, + 'upload_rounded': Icons.upload_rounded, + 'upload_outlined': Icons.upload_outlined, + 'upload_file': Icons.upload_file, + 'upload_file_sharp': Icons.upload_file_sharp, + 'upload_file_rounded': Icons.upload_file_rounded, + 'upload_file_outlined': Icons.upload_file_outlined, + 'usb': Icons.usb, + 'usb_sharp': Icons.usb_sharp, + 'usb_rounded': Icons.usb_rounded, + 'usb_outlined': Icons.usb_outlined, + 'usb_off': Icons.usb_off, + 'usb_off_sharp': Icons.usb_off_sharp, + 'usb_off_rounded': Icons.usb_off_rounded, + 'usb_off_outlined': Icons.usb_off_outlined, + 'verified': Icons.verified, + 'verified_sharp': Icons.verified_sharp, + 'verified_rounded': Icons.verified_rounded, + 'verified_outlined': Icons.verified_outlined, + 'verified_user': Icons.verified_user, + 'verified_user_sharp': Icons.verified_user_sharp, + 'verified_user_rounded': Icons.verified_user_rounded, + 'verified_user_outlined': Icons.verified_user_outlined, + 'vertical_align_bottom': Icons.vertical_align_bottom, + 'vertical_align_bottom_sharp': Icons.vertical_align_bottom_sharp, + 'vertical_align_bottom_rounded': Icons.vertical_align_bottom_rounded, + 'vertical_align_bottom_outlined': Icons.vertical_align_bottom_outlined, + 'vertical_align_center': Icons.vertical_align_center, + 'vertical_align_center_sharp': Icons.vertical_align_center_sharp, + 'vertical_align_center_rounded': Icons.vertical_align_center_rounded, + 'vertical_align_center_outlined': Icons.vertical_align_center_outlined, + 'vertical_align_top': Icons.vertical_align_top, + 'vertical_align_top_sharp': Icons.vertical_align_top_sharp, + 'vertical_align_top_rounded': Icons.vertical_align_top_rounded, + 'vertical_align_top_outlined': Icons.vertical_align_top_outlined, + 'vertical_distribute': Icons.vertical_distribute, + 'vertical_distribute_sharp': Icons.vertical_distribute_sharp, + 'vertical_distribute_rounded': Icons.vertical_distribute_rounded, + 'vertical_distribute_outlined': Icons.vertical_distribute_outlined, + 'vertical_split': Icons.vertical_split, + 'vertical_split_sharp': Icons.vertical_split_sharp, + 'vertical_split_rounded': Icons.vertical_split_rounded, + 'vertical_split_outlined': Icons.vertical_split_outlined, + 'vibration': Icons.vibration, + 'vibration_sharp': Icons.vibration_sharp, + 'vibration_rounded': Icons.vibration_rounded, + 'vibration_outlined': Icons.vibration_outlined, + 'video_call': Icons.video_call, + 'video_call_sharp': Icons.video_call_sharp, + 'video_call_rounded': Icons.video_call_rounded, + 'video_call_outlined': Icons.video_call_outlined, + 'video_camera_back': Icons.video_camera_back, + 'video_camera_back_sharp': Icons.video_camera_back_sharp, + 'video_camera_back_rounded': Icons.video_camera_back_rounded, + 'video_camera_back_outlined': Icons.video_camera_back_outlined, + 'video_camera_front': Icons.video_camera_front, + 'video_camera_front_sharp': Icons.video_camera_front_sharp, + 'video_camera_front_rounded': Icons.video_camera_front_rounded, + 'video_camera_front_outlined': Icons.video_camera_front_outlined, + 'video_collection': Icons.video_collection, + 'video_collection_sharp': Icons.video_collection_sharp, + 'video_collection_rounded': Icons.video_collection_rounded, + 'video_collection_outlined': Icons.video_collection_outlined, + 'video_label': Icons.video_label, + 'video_label_sharp': Icons.video_label_sharp, + 'video_label_rounded': Icons.video_label_rounded, + 'video_label_outlined': Icons.video_label_outlined, + 'video_library': Icons.video_library, + 'video_library_sharp': Icons.video_library_sharp, + 'video_library_rounded': Icons.video_library_rounded, + 'video_library_outlined': Icons.video_library_outlined, + 'video_settings': Icons.video_settings, + 'video_settings_sharp': Icons.video_settings_sharp, + 'video_settings_rounded': Icons.video_settings_rounded, + 'video_settings_outlined': Icons.video_settings_outlined, + 'video_stable': Icons.video_stable, + 'video_stable_sharp': Icons.video_stable_sharp, + 'video_stable_rounded': Icons.video_stable_rounded, + 'video_stable_outlined': Icons.video_stable_outlined, + 'videocam': Icons.videocam, + 'videocam_sharp': Icons.videocam_sharp, + 'videocam_rounded': Icons.videocam_rounded, + 'videocam_outlined': Icons.videocam_outlined, + 'videocam_off': Icons.videocam_off, + 'videocam_off_sharp': Icons.videocam_off_sharp, + 'videocam_off_rounded': Icons.videocam_off_rounded, + 'videocam_off_outlined': Icons.videocam_off_outlined, + 'videogame_asset': Icons.videogame_asset, + 'videogame_asset_sharp': Icons.videogame_asset_sharp, + 'videogame_asset_rounded': Icons.videogame_asset_rounded, + 'videogame_asset_outlined': Icons.videogame_asset_outlined, + 'videogame_asset_off': Icons.videogame_asset_off, + 'videogame_asset_off_sharp': Icons.videogame_asset_off_sharp, + 'videogame_asset_off_rounded': Icons.videogame_asset_off_rounded, + 'videogame_asset_off_outlined': Icons.videogame_asset_off_outlined, + 'view_agenda': Icons.view_agenda, + 'view_agenda_sharp': Icons.view_agenda_sharp, + 'view_agenda_rounded': Icons.view_agenda_rounded, + 'view_agenda_outlined': Icons.view_agenda_outlined, + 'view_array': Icons.view_array, + 'view_array_sharp': Icons.view_array_sharp, + 'view_array_rounded': Icons.view_array_rounded, + 'view_array_outlined': Icons.view_array_outlined, + 'view_carousel': Icons.view_carousel, + 'view_carousel_sharp': Icons.view_carousel_sharp, + 'view_carousel_rounded': Icons.view_carousel_rounded, + 'view_carousel_outlined': Icons.view_carousel_outlined, + 'view_column': Icons.view_column, + 'view_column_sharp': Icons.view_column_sharp, + 'view_column_rounded': Icons.view_column_rounded, + 'view_column_outlined': Icons.view_column_outlined, + 'view_comfortable': Icons.view_comfortable, + 'view_comfortable_sharp': Icons.view_comfortable_sharp, + 'view_comfortable_rounded': Icons.view_comfortable_rounded, + 'view_comfortable_outlined': Icons.view_comfortable_outlined, + 'view_comfy': Icons.view_comfy, + 'view_comfy_sharp': Icons.view_comfy_sharp, + 'view_comfy_rounded': Icons.view_comfy_rounded, + 'view_comfy_outlined': Icons.view_comfy_outlined, + 'view_compact': Icons.view_compact, + 'view_compact_sharp': Icons.view_compact_sharp, + 'view_compact_rounded': Icons.view_compact_rounded, + 'view_compact_outlined': Icons.view_compact_outlined, + 'view_day': Icons.view_day, + 'view_day_sharp': Icons.view_day_sharp, + 'view_day_rounded': Icons.view_day_rounded, + 'view_day_outlined': Icons.view_day_outlined, + 'view_headline': Icons.view_headline, + 'view_headline_sharp': Icons.view_headline_sharp, + 'view_headline_rounded': Icons.view_headline_rounded, + 'view_headline_outlined': Icons.view_headline_outlined, + 'view_in_ar': Icons.view_in_ar, + 'view_in_ar_sharp': Icons.view_in_ar_sharp, + 'view_in_ar_rounded': Icons.view_in_ar_rounded, + 'view_in_ar_outlined': Icons.view_in_ar_outlined, + 'view_list': Icons.view_list, + 'view_list_sharp': Icons.view_list_sharp, + 'view_list_rounded': Icons.view_list_rounded, + 'view_list_outlined': Icons.view_list_outlined, + 'view_module': Icons.view_module, + 'view_module_sharp': Icons.view_module_sharp, + 'view_module_rounded': Icons.view_module_rounded, + 'view_module_outlined': Icons.view_module_outlined, + 'view_quilt': Icons.view_quilt, + 'view_quilt_sharp': Icons.view_quilt_sharp, + 'view_quilt_rounded': Icons.view_quilt_rounded, + 'view_quilt_outlined': Icons.view_quilt_outlined, + 'view_sidebar': Icons.view_sidebar, + 'view_sidebar_sharp': Icons.view_sidebar_sharp, + 'view_sidebar_rounded': Icons.view_sidebar_rounded, + 'view_sidebar_outlined': Icons.view_sidebar_outlined, + 'view_stream': Icons.view_stream, + 'view_stream_sharp': Icons.view_stream_sharp, + 'view_stream_rounded': Icons.view_stream_rounded, + 'view_stream_outlined': Icons.view_stream_outlined, + 'view_week': Icons.view_week, + 'view_week_sharp': Icons.view_week_sharp, + 'view_week_rounded': Icons.view_week_rounded, + 'view_week_outlined': Icons.view_week_outlined, + 'vignette': Icons.vignette, + 'vignette_sharp': Icons.vignette_sharp, + 'vignette_rounded': Icons.vignette_rounded, + 'vignette_outlined': Icons.vignette_outlined, + 'villa': Icons.villa, + 'villa_sharp': Icons.villa_sharp, + 'villa_rounded': Icons.villa_rounded, + 'villa_outlined': Icons.villa_outlined, + 'visibility': Icons.visibility, + 'visibility_sharp': Icons.visibility_sharp, + 'visibility_rounded': Icons.visibility_rounded, + 'visibility_outlined': Icons.visibility_outlined, + 'visibility_off': Icons.visibility_off, + 'visibility_off_sharp': Icons.visibility_off_sharp, + 'visibility_off_rounded': Icons.visibility_off_rounded, + 'visibility_off_outlined': Icons.visibility_off_outlined, + 'voice_chat': Icons.voice_chat, + 'voice_chat_sharp': Icons.voice_chat_sharp, + 'voice_chat_rounded': Icons.voice_chat_rounded, + 'voice_chat_outlined': Icons.voice_chat_outlined, + 'voice_over_off': Icons.voice_over_off, + 'voice_over_off_sharp': Icons.voice_over_off_sharp, + 'voice_over_off_rounded': Icons.voice_over_off_rounded, + 'voice_over_off_outlined': Icons.voice_over_off_outlined, + 'voicemail': Icons.voicemail, + 'voicemail_sharp': Icons.voicemail_sharp, + 'voicemail_rounded': Icons.voicemail_rounded, + 'voicemail_outlined': Icons.voicemail_outlined, + 'volume_down': Icons.volume_down, + 'volume_down_sharp': Icons.volume_down_sharp, + 'volume_down_rounded': Icons.volume_down_rounded, + 'volume_down_outlined': Icons.volume_down_outlined, + 'volume_mute': Icons.volume_mute, + 'volume_mute_sharp': Icons.volume_mute_sharp, + 'volume_mute_rounded': Icons.volume_mute_rounded, + 'volume_mute_outlined': Icons.volume_mute_outlined, + 'volume_off': Icons.volume_off, + 'volume_off_sharp': Icons.volume_off_sharp, + 'volume_off_rounded': Icons.volume_off_rounded, + 'volume_off_outlined': Icons.volume_off_outlined, + 'volume_up': Icons.volume_up, + 'volume_up_sharp': Icons.volume_up_sharp, + 'volume_up_rounded': Icons.volume_up_rounded, + 'volume_up_outlined': Icons.volume_up_outlined, + 'volunteer_activism': Icons.volunteer_activism, + 'volunteer_activism_sharp': Icons.volunteer_activism_sharp, + 'volunteer_activism_rounded': Icons.volunteer_activism_rounded, + 'volunteer_activism_outlined': Icons.volunteer_activism_outlined, + 'vpn_key': Icons.vpn_key, + 'vpn_key_sharp': Icons.vpn_key_sharp, + 'vpn_key_rounded': Icons.vpn_key_rounded, + 'vpn_key_outlined': Icons.vpn_key_outlined, + 'vpn_lock': Icons.vpn_lock, + 'vpn_lock_sharp': Icons.vpn_lock_sharp, + 'vpn_lock_rounded': Icons.vpn_lock_rounded, + 'vpn_lock_outlined': Icons.vpn_lock_outlined, + 'vrpano': Icons.vrpano, + 'vrpano_sharp': Icons.vrpano_sharp, + 'vrpano_rounded': Icons.vrpano_rounded, + 'vrpano_outlined': Icons.vrpano_outlined, + 'wallet_giftcard': Icons.wallet_giftcard, + 'wallet_giftcard_sharp': Icons.wallet_giftcard_sharp, + 'wallet_giftcard_rounded': Icons.wallet_giftcard_rounded, + 'wallet_giftcard_outlined': Icons.wallet_giftcard_outlined, + 'wallet_membership': Icons.wallet_membership, + 'wallet_membership_sharp': Icons.wallet_membership_sharp, + 'wallet_membership_rounded': Icons.wallet_membership_rounded, + 'wallet_membership_outlined': Icons.wallet_membership_outlined, + 'wallet_travel': Icons.wallet_travel, + 'wallet_travel_sharp': Icons.wallet_travel_sharp, + 'wallet_travel_rounded': Icons.wallet_travel_rounded, + 'wallet_travel_outlined': Icons.wallet_travel_outlined, + 'wallpaper': Icons.wallpaper, + 'wallpaper_sharp': Icons.wallpaper_sharp, + 'wallpaper_rounded': Icons.wallpaper_rounded, + 'wallpaper_outlined': Icons.wallpaper_outlined, + 'warning': Icons.warning, + 'warning_sharp': Icons.warning_sharp, + 'warning_rounded': Icons.warning_rounded, + 'warning_outlined': Icons.warning_outlined, + 'warning_amber': Icons.warning_amber, + 'warning_amber_sharp': Icons.warning_amber_sharp, + 'warning_amber_rounded': Icons.warning_amber_rounded, + 'warning_amber_outlined': Icons.warning_amber_outlined, + 'wash': Icons.wash, + 'wash_sharp': Icons.wash_sharp, + 'wash_rounded': Icons.wash_rounded, + 'wash_outlined': Icons.wash_outlined, + 'watch': Icons.watch, + 'watch_sharp': Icons.watch_sharp, + 'watch_rounded': Icons.watch_rounded, + 'watch_outlined': Icons.watch_outlined, + 'watch_later': Icons.watch_later, + 'watch_later_sharp': Icons.watch_later_sharp, + 'watch_later_rounded': Icons.watch_later_rounded, + 'watch_later_outlined': Icons.watch_later_outlined, + 'water': Icons.water, + 'water_sharp': Icons.water_sharp, + 'water_rounded': Icons.water_rounded, + 'water_outlined': Icons.water_outlined, + 'water_damage': Icons.water_damage, + 'water_damage_sharp': Icons.water_damage_sharp, + 'water_damage_rounded': Icons.water_damage_rounded, + 'water_damage_outlined': Icons.water_damage_outlined, + 'waterfall_chart': Icons.waterfall_chart, + 'waterfall_chart_sharp': Icons.waterfall_chart_sharp, + 'waterfall_chart_rounded': Icons.waterfall_chart_rounded, + 'waterfall_chart_outlined': Icons.waterfall_chart_outlined, + 'waves': Icons.waves, + 'waves_sharp': Icons.waves_sharp, + 'waves_rounded': Icons.waves_rounded, + 'waves_outlined': Icons.waves_outlined, + 'wb_auto': Icons.wb_auto, + 'wb_auto_sharp': Icons.wb_auto_sharp, + 'wb_auto_rounded': Icons.wb_auto_rounded, + 'wb_auto_outlined': Icons.wb_auto_outlined, + 'wb_cloudy': Icons.wb_cloudy, + 'wb_cloudy_sharp': Icons.wb_cloudy_sharp, + 'wb_cloudy_rounded': Icons.wb_cloudy_rounded, + 'wb_cloudy_outlined': Icons.wb_cloudy_outlined, + 'wb_incandescent': Icons.wb_incandescent, + 'wb_incandescent_sharp': Icons.wb_incandescent_sharp, + 'wb_incandescent_rounded': Icons.wb_incandescent_rounded, + 'wb_incandescent_outlined': Icons.wb_incandescent_outlined, + 'wb_iridescent': Icons.wb_iridescent, + 'wb_iridescent_sharp': Icons.wb_iridescent_sharp, + 'wb_iridescent_rounded': Icons.wb_iridescent_rounded, + 'wb_iridescent_outlined': Icons.wb_iridescent_outlined, + 'wb_shade': Icons.wb_shade, + 'wb_shade_sharp': Icons.wb_shade_sharp, + 'wb_shade_rounded': Icons.wb_shade_rounded, + 'wb_shade_outlined': Icons.wb_shade_outlined, + 'wb_sunny': Icons.wb_sunny, + 'wb_sunny_sharp': Icons.wb_sunny_sharp, + 'wb_sunny_rounded': Icons.wb_sunny_rounded, + 'wb_sunny_outlined': Icons.wb_sunny_outlined, + 'wb_twighlight': Icons.wb_twighlight, + 'wb_twilight': Icons.wb_twilight, + 'wb_twilight_sharp': Icons.wb_twilight_sharp, + 'wb_twilight_rounded': Icons.wb_twilight_rounded, + 'wb_twilight_outlined': Icons.wb_twilight_outlined, + 'wc': Icons.wc, + 'wc_sharp': Icons.wc_sharp, + 'wc_rounded': Icons.wc_rounded, + 'wc_outlined': Icons.wc_outlined, + 'web': Icons.web, + 'web_sharp': Icons.web_sharp, + 'web_rounded': Icons.web_rounded, + 'web_outlined': Icons.web_outlined, + 'web_asset': Icons.web_asset, + 'web_asset_sharp': Icons.web_asset_sharp, + 'web_asset_rounded': Icons.web_asset_rounded, + 'web_asset_outlined': Icons.web_asset_outlined, + 'web_asset_off': Icons.web_asset_off, + 'web_asset_off_sharp': Icons.web_asset_off_sharp, + 'web_asset_off_rounded': Icons.web_asset_off_rounded, + 'web_asset_off_outlined': Icons.web_asset_off_outlined, + 'web_stories': Icons.web_stories, + 'weekend': Icons.weekend, + 'weekend_sharp': Icons.weekend_sharp, + 'weekend_rounded': Icons.weekend_rounded, + 'weekend_outlined': Icons.weekend_outlined, + 'west': Icons.west, + 'west_sharp': Icons.west_sharp, + 'west_rounded': Icons.west_rounded, + 'west_outlined': Icons.west_outlined, + 'whatshot': Icons.whatshot, + 'whatshot_sharp': Icons.whatshot_sharp, + 'whatshot_rounded': Icons.whatshot_rounded, + 'whatshot_outlined': Icons.whatshot_outlined, + 'wheelchair_pickup': Icons.wheelchair_pickup, + 'wheelchair_pickup_sharp': Icons.wheelchair_pickup_sharp, + 'wheelchair_pickup_rounded': Icons.wheelchair_pickup_rounded, + 'wheelchair_pickup_outlined': Icons.wheelchair_pickup_outlined, + 'where_to_vote': Icons.where_to_vote, + 'where_to_vote_sharp': Icons.where_to_vote_sharp, + 'where_to_vote_rounded': Icons.where_to_vote_rounded, + 'where_to_vote_outlined': Icons.where_to_vote_outlined, + 'widgets': Icons.widgets, + 'widgets_sharp': Icons.widgets_sharp, + 'widgets_rounded': Icons.widgets_rounded, + 'widgets_outlined': Icons.widgets_outlined, + 'wifi': Icons.wifi, + 'wifi_sharp': Icons.wifi_sharp, + 'wifi_rounded': Icons.wifi_rounded, + 'wifi_outlined': Icons.wifi_outlined, + 'wifi_calling': Icons.wifi_calling, + 'wifi_calling_sharp': Icons.wifi_calling_sharp, + 'wifi_calling_rounded': Icons.wifi_calling_rounded, + 'wifi_calling_outlined': Icons.wifi_calling_outlined, + 'wifi_calling_3': Icons.wifi_calling_3, + 'wifi_calling_3_sharp': Icons.wifi_calling_3_sharp, + 'wifi_calling_3_rounded': Icons.wifi_calling_3_rounded, + 'wifi_calling_3_outlined': Icons.wifi_calling_3_outlined, + 'wifi_lock': Icons.wifi_lock, + 'wifi_lock_sharp': Icons.wifi_lock_sharp, + 'wifi_lock_rounded': Icons.wifi_lock_rounded, + 'wifi_lock_outlined': Icons.wifi_lock_outlined, + 'wifi_off': Icons.wifi_off, + 'wifi_off_sharp': Icons.wifi_off_sharp, + 'wifi_off_rounded': Icons.wifi_off_rounded, + 'wifi_off_outlined': Icons.wifi_off_outlined, + 'wifi_protected_setup': Icons.wifi_protected_setup, + 'wifi_protected_setup_sharp': Icons.wifi_protected_setup_sharp, + 'wifi_protected_setup_rounded': Icons.wifi_protected_setup_rounded, + 'wifi_protected_setup_outlined': Icons.wifi_protected_setup_outlined, + 'wifi_tethering': Icons.wifi_tethering, + 'wifi_tethering_sharp': Icons.wifi_tethering_sharp, + 'wifi_tethering_rounded': Icons.wifi_tethering_rounded, + 'wifi_tethering_outlined': Icons.wifi_tethering_outlined, + 'wifi_tethering_error_rounded': Icons.wifi_tethering_error_rounded, + 'wifi_tethering_error_rounded_sharp': + Icons.wifi_tethering_error_rounded_sharp, + 'wifi_tethering_error_rounded_rounded': + Icons.wifi_tethering_error_rounded_rounded, + 'wifi_tethering_error_rounded_outlined': + Icons.wifi_tethering_error_rounded_outlined, + 'wifi_tethering_off': Icons.wifi_tethering_off, + 'wifi_tethering_off_sharp': Icons.wifi_tethering_off_sharp, + 'wifi_tethering_off_rounded': Icons.wifi_tethering_off_rounded, + 'wifi_tethering_off_outlined': Icons.wifi_tethering_off_outlined, + 'window': Icons.window, + 'window_sharp': Icons.window_sharp, + 'window_rounded': Icons.window_rounded, + 'window_outlined': Icons.window_outlined, + 'wine_bar': Icons.wine_bar, + 'wine_bar_sharp': Icons.wine_bar_sharp, + 'wine_bar_rounded': Icons.wine_bar_rounded, + 'wine_bar_outlined': Icons.wine_bar_outlined, + 'work': Icons.work, + 'work_sharp': Icons.work_sharp, + 'work_rounded': Icons.work_rounded, + 'work_outlined': Icons.work_outlined, + 'work_off': Icons.work_off, + 'work_off_sharp': Icons.work_off_sharp, + 'work_off_rounded': Icons.work_off_rounded, + 'work_off_outlined': Icons.work_off_outlined, + 'work_outline': Icons.work_outline, + 'work_outline_sharp': Icons.work_outline_sharp, + 'work_outline_rounded': Icons.work_outline_rounded, + 'work_outline_outlined': Icons.work_outline_outlined, + 'workspaces': Icons.workspaces, + 'workspaces_sharp': Icons.workspaces_sharp, + 'workspaces_rounded': Icons.workspaces_rounded, + 'workspaces_outlined': Icons.workspaces_outlined, + 'workspaces_filled': Icons.workspaces_filled, + 'workspaces_outline': Icons.workspaces_outline, + 'wrap_text': Icons.wrap_text, + 'wrap_text_sharp': Icons.wrap_text_sharp, + 'wrap_text_rounded': Icons.wrap_text_rounded, + 'wrap_text_outlined': Icons.wrap_text_outlined, + 'wrong_location': Icons.wrong_location, + 'wrong_location_sharp': Icons.wrong_location_sharp, + 'wrong_location_rounded': Icons.wrong_location_rounded, + 'wrong_location_outlined': Icons.wrong_location_outlined, + 'wysiwyg': Icons.wysiwyg, + 'wysiwyg_sharp': Icons.wysiwyg_sharp, + 'wysiwyg_rounded': Icons.wysiwyg_rounded, + 'wysiwyg_outlined': Icons.wysiwyg_outlined, + 'yard': Icons.yard, + 'yard_sharp': Icons.yard_sharp, + 'yard_rounded': Icons.yard_rounded, + 'yard_outlined': Icons.yard_outlined, + 'youtube_searched_for': Icons.youtube_searched_for, + 'youtube_searched_for_sharp': Icons.youtube_searched_for_sharp, + 'youtube_searched_for_rounded': Icons.youtube_searched_for_rounded, + 'youtube_searched_for_outlined': Icons.youtube_searched_for_outlined, + 'zoom_in': Icons.zoom_in, + 'zoom_in_sharp': Icons.zoom_in_sharp, + 'zoom_in_rounded': Icons.zoom_in_rounded, + 'zoom_in_outlined': Icons.zoom_in_outlined, + 'zoom_out': Icons.zoom_out, + 'zoom_out_sharp': Icons.zoom_out_sharp, + 'zoom_out_rounded': Icons.zoom_out_rounded, + 'zoom_out_outlined': Icons.zoom_out_outlined, + 'zoom_out_map': Icons.zoom_out_map, + 'zoom_out_map_sharp': Icons.zoom_out_map_sharp, + 'zoom_out_map_rounded': Icons.zoom_out_map_rounded, + 'zoom_out_map_outlined': Icons.zoom_out_map_outlined, + }, + 'MaterialApp.createMaterialHeroController': (props) => + MaterialApp.createMaterialHeroController(), + 'ThemeMode': { + 'values': ThemeMode.values, + 'system': ThemeMode.system, + 'light': ThemeMode.light, + 'dark': ThemeMode.dark, + }, + 'BottomNavigationBarType': { + 'values': BottomNavigationBarType.values, + 'fixed': BottomNavigationBarType.fixed, + 'shifting': BottomNavigationBarType.shifting, + }, + 'BottomNavigationBarLandscapeLayout': { + 'values': BottomNavigationBarLandscapeLayout.values, + 'spread': BottomNavigationBarLandscapeLayout.spread, + 'centered': BottomNavigationBarLandscapeLayout.centered, + 'linear': BottomNavigationBarLandscapeLayout.linear, + }, + 'ButtonStyle.lerp': (props) => ButtonStyle.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NavigationBarThemeData.lerp': (props) => NavigationBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NavigationBarTheme.of': (props) => NavigationBarTheme.of( + props['pa'][0], + ), + 'FlexibleSpaceBar.createSettings': (props) => + FlexibleSpaceBar.createSettings( + toolbarOpacity: props['toolbarOpacity']?.toDouble(), + minExtent: props['minExtent']?.toDouble(), + maxExtent: props['maxExtent']?.toDouble(), + isScrolledUnder: props['isScrolledUnder'], + currentExtent: props['currentExtent']?.toDouble(), + child: props['child'], + ), + 'CollapseMode': { + 'values': CollapseMode.values, + 'parallax': CollapseMode.parallax, + 'pin': CollapseMode.pin, + 'none': CollapseMode.none, + }, + 'StretchMode': { + 'values': StretchMode.values, + 'zoomBackground': StretchMode.zoomBackground, + 'blurBackground': StretchMode.blurBackground, + 'fadeTitle': StretchMode.fadeTitle, + }, + 'TextSelectionToolbarTextButton.getPadding': (props) => + TextSelectionToolbarTextButton.getPadding( + props['pa'][0], + props['pa'][1], + ), + 'ThemeData.localize': (props) => ThemeData.localize( + props['pa'][0], + props['pa'][1], + ), + 'ThemeData.estimateBrightnessForColor': (props) => + ThemeData.estimateBrightnessForColor( + props['pa'][0], + ), + 'ThemeData.lerp': (props) => ThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'VisualDensity': { + 'minimumDensity': VisualDensity.minimumDensity, + 'maximumDensity': VisualDensity.maximumDensity, + 'standard': VisualDensity.standard, + 'comfortable': VisualDensity.comfortable, + 'compact': VisualDensity.compact, + }, + 'VisualDensity.lerp': (props) => VisualDensity.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialTapTargetSize': { + 'values': MaterialTapTargetSize.values, + 'padded': MaterialTapTargetSize.padded, + 'shrinkWrap': MaterialTapTargetSize.shrinkWrap, + }, + 'DateUtils.dateOnly': (props) => DateUtils.dateOnly( + props['pa'][0], + ), + 'DateUtils.datesOnly': (props) => DateUtils.datesOnly( + props['pa'][0], + ), + 'DateUtils.isSameDay': (props) => DateUtils.isSameDay( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.isSameMonth': (props) => DateUtils.isSameMonth( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.monthDelta': (props) => DateUtils.monthDelta( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.addMonthsToMonthDate': (props) => + DateUtils.addMonthsToMonthDate( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.addDaysToDate': (props) => DateUtils.addDaysToDate( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.firstDayOffset': (props) => DateUtils.firstDayOffset( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'DateUtils.getDaysInMonth': (props) => DateUtils.getDaysInMonth( + props['pa'][0], + props['pa'][1], + ), + 'DatePickerEntryMode': { + 'values': DatePickerEntryMode.values, + 'calendar': DatePickerEntryMode.calendar, + 'input': DatePickerEntryMode.input, + 'calendarOnly': DatePickerEntryMode.calendarOnly, + 'inputOnly': DatePickerEntryMode.inputOnly, + }, + 'DatePickerMode': { + 'values': DatePickerMode.values, + 'day': DatePickerMode.day, + 'year': DatePickerMode.year, + }, + 'DrawerAlignment': { + 'values': DrawerAlignment.values, + 'start': DrawerAlignment.start, + 'end': DrawerAlignment.end, + }, + 'ChipTheme.of': (props) => ChipTheme.of( + props['pa'][0], + ), + 'ChipThemeData.lerp': (props) => ChipThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SliderTheme.of': (props) => SliderTheme.of( + props['pa'][0], + ), + 'SliderThemeData.lerp': (props) => SliderThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ShowValueIndicator': { + 'values': ShowValueIndicator.values, + 'onlyForDiscrete': ShowValueIndicator.onlyForDiscrete, + 'onlyForContinuous': ShowValueIndicator.onlyForContinuous, + 'always': ShowValueIndicator.always, + 'never': ShowValueIndicator.never, + }, + 'Thumb': { + 'values': Thumb.values, + 'start': Thumb.start, + 'end': Thumb.end, + }, + 'Divider.createBorderSide': (props) => Divider.createBorderSide( + props['pa'][0], + color: props['color'], + width: props['width']?.toDouble(), + ), + 'OutlinedButton.styleFrom': (props) => OutlinedButton.styleFrom( + primary: props['primary'], + onSurface: props['onSurface'], + backgroundColor: props['backgroundColor'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'Typography': { + 'blackMountainView': Typography.blackMountainView, + 'whiteMountainView': Typography.whiteMountainView, + 'blackRedmond': Typography.blackRedmond, + 'whiteRedmond': Typography.whiteRedmond, + 'blackHelsinki': Typography.blackHelsinki, + 'whiteHelsinki': Typography.whiteHelsinki, + 'blackCupertino': Typography.blackCupertino, + 'whiteCupertino': Typography.whiteCupertino, + 'blackRedwoodCity': Typography.blackRedwoodCity, + 'whiteRedwoodCity': Typography.whiteRedwoodCity, + 'englishLike2014': Typography.englishLike2014, + 'englishLike2018': Typography.englishLike2018, + 'dense2014': Typography.dense2014, + 'dense2018': Typography.dense2018, + 'tall2014': Typography.tall2014, + 'tall2018': Typography.tall2018, + }, + 'Typography.lerp': (props) => Typography.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ScriptCategory': { + 'values': ScriptCategory.values, + 'englishLike': ScriptCategory.englishLike, + 'dense': ScriptCategory.dense, + 'tall': ScriptCategory.tall, + }, + 'DefaultMaterialLocalizations': { + 'delegate': DefaultMaterialLocalizations.delegate, + }, + 'DefaultMaterialLocalizations.load': (props) => + DefaultMaterialLocalizations.load( + props['pa'][0], + ), + 'DataTableThemeData.lerp': (props) => DataTableThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DataTableTheme.of': (props) => DataTableTheme.of( + props['pa'][0], + ), + 'DividerThemeData.lerp': (props) => DividerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DividerTheme.of': (props) => DividerTheme.of( + props['pa'][0], + ), + 'BottomSheet.createAnimationController': (props) => + BottomSheet.createAnimationController( + props['pa'][0], + ), + 'ListTileThemeData.lerp': (props) => ListTileThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ListTileTheme.of': (props) => ListTileTheme.of( + props['pa'][0], + ), + 'ListTileTheme.merge': (props) => ListTileTheme.merge( + key: props['key'], + dense: props['dense'], + shape: props['shape'], + style: props['style'], + selectedColor: props['selectedColor'], + iconColor: props['iconColor'], + textColor: props['textColor'], + contentPadding: props['contentPadding'], + tileColor: props['tileColor'], + selectedTileColor: props['selectedTileColor'], + enableFeedback: props['enableFeedback'], + horizontalTitleGap: props['horizontalTitleGap']?.toDouble(), + minVerticalPadding: props['minVerticalPadding']?.toDouble(), + minLeadingWidth: props['minLeadingWidth']?.toDouble(), + child: props['child'], + ), + 'ListTile.divideTiles': (props) => ListTile.divideTiles( + context: props['context'], + tiles: props['tiles'], + color: props['color'], + ), + 'ListTileStyle': { + 'values': ListTileStyle.values, + 'list': ListTileStyle.list, + 'drawer': ListTileStyle.drawer, + }, + 'ListTileControlAffinity': { + 'values': ListTileControlAffinity.values, + 'leading': ListTileControlAffinity.leading, + 'trailing': ListTileControlAffinity.trailing, + 'platform': ListTileControlAffinity.platform, + }, + 'RefreshProgressIndicator': { + 'defaultStrokeWidth': RefreshProgressIndicator.defaultStrokeWidth, + }, + 'ButtonTheme.of': (props) => ButtonTheme.of( + props['pa'][0], + ), + 'ButtonTextTheme': { + 'values': ButtonTextTheme.values, + 'normal': ButtonTextTheme.normal, + 'accent': ButtonTextTheme.accent, + 'primary': ButtonTextTheme.primary, + }, + 'ButtonBarLayoutBehavior': { + 'values': ButtonBarLayoutBehavior.values, + 'constrained': ButtonBarLayoutBehavior.constrained, + 'padded': ButtonBarLayoutBehavior.padded, + }, + 'NoSplash': { + 'splashFactory': NoSplash.splashFactory, + }, + 'DropdownButtonHideUnderline.at': (props) => + DropdownButtonHideUnderline.at( + props['pa'][0], + ), + 'ElevatedButton.styleFrom': (props) => ElevatedButton.styleFrom( + primary: props['primary'], + onPrimary: props['onPrimary'], + onSurface: props['onSurface'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'Tooltip.dismissAllToolTips': (props) => Tooltip.dismissAllToolTips(), + 'BottomSheetThemeData.lerp': (props) => BottomSheetThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'CardTheme.of': (props) => CardTheme.of( + props['pa'][0], + ), + 'CardTheme.lerp': (props) => CardTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'FloatingActionButtonThemeData.lerp': (props) => + FloatingActionButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialState': { + 'values': MaterialState.values, + 'hovered': MaterialState.hovered, + 'focused': MaterialState.focused, + 'pressed': MaterialState.pressed, + 'dragged': MaterialState.dragged, + 'selected': MaterialState.selected, + 'scrolledUnder': MaterialState.scrolledUnder, + 'disabled': MaterialState.disabled, + 'error': MaterialState.error, + }, + 'DrawerThemeData.lerp': (props) => DrawerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DrawerTheme.of': (props) => DrawerTheme.of( + props['pa'][0], + ), + 'DialogTheme.of': (props) => DialogTheme.of( + props['pa'][0], + ), + 'DialogTheme.lerp': (props) => DialogTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialBanner.createAnimationController': (props) => + MaterialBanner.createAnimationController( + vsync: props['vsync'], + ), + 'MaterialBannerClosedReason': { + 'values': MaterialBannerClosedReason.values, + 'dismiss': MaterialBannerClosedReason.dismiss, + 'swipe': MaterialBannerClosedReason.swipe, + 'hide': MaterialBannerClosedReason.hide, + 'remove': MaterialBannerClosedReason.remove, + }, + 'AppBar.preferredHeightFor': (props) => AppBar.preferredHeightFor( + props['pa'][0], + props['pa'][1], + ), + 'ScrollbarThemeData.lerp': (props) => ScrollbarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ScrollbarTheme.of': (props) => ScrollbarTheme.of( + props['pa'][0], + ), + 'CheckboxThemeData.lerp': (props) => CheckboxThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'CheckboxTheme.of': (props) => CheckboxTheme.of( + props['pa'][0], + ), + 'TooltipVisibility.of': (props) => TooltipVisibility.of( + props['pa'][0], + ), + 'BottomNavigationBarThemeData.lerp': (props) => + BottomNavigationBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BottomNavigationBarTheme.of': (props) => BottomNavigationBarTheme.of( + props['pa'][0], + ), + 'TabBarIndicatorSize': { + 'values': TabBarIndicatorSize.values, + 'tab': TabBarIndicatorSize.tab, + 'label': TabBarIndicatorSize.label, + }, + 'RadioThemeData.lerp': (props) => RadioThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RadioTheme.of': (props) => RadioTheme.of( + props['pa'][0], + ), + 'StepState': { + 'values': StepState.values, + 'indexed': StepState.indexed, + 'editing': StepState.editing, + 'complete': StepState.complete, + 'disabled': StepState.disabled, + 'error': StepState.error, + }, + 'StepperType': { + 'values': StepperType.values, + 'vertical': StepperType.vertical, + 'horizontal': StepperType.horizontal, + }, + 'TimePickerEntryMode': { + 'values': TimePickerEntryMode.values, + 'dial': TimePickerEntryMode.dial, + 'input': TimePickerEntryMode.input, + }, + 'Checkbox': { + 'width': Checkbox.width, + }, + 'TextButton.styleFrom': (props) => TextButton.styleFrom( + primary: props['primary'], + onSurface: props['onSurface'], + backgroundColor: props['backgroundColor'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'TooltipThemeData.lerp': (props) => TooltipThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TooltipTheme.of': (props) => TooltipTheme.of( + props['pa'][0], + ), + 'TooltipTriggerMode': { + 'values': TooltipTriggerMode.values, + 'manual': TooltipTriggerMode.manual, + 'longPress': TooltipTriggerMode.longPress, + 'tap': TooltipTriggerMode.tap, + }, + 'NavigationRail.extendedAnimation': (props) => + NavigationRail.extendedAnimation( + props['pa'][0], + ), + 'NavigationRailLabelType': { + 'values': NavigationRailLabelType.values, + 'none': NavigationRailLabelType.none, + 'selected': NavigationRailLabelType.selected, + 'all': NavigationRailLabelType.all, + }, + 'DataCell': { + 'empty': DataCell.empty, + }, + 'PopupMenuThemeData.lerp': (props) => PopupMenuThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'PopupMenuTheme.of': (props) => PopupMenuTheme.of( + props['pa'][0], + ), + 'TimeOfDay': { + 'hoursPerDay': TimeOfDay.hoursPerDay, + 'hoursPerPeriod': TimeOfDay.hoursPerPeriod, + 'minutesPerHour': TimeOfDay.minutesPerHour, + }, + 'DayPeriod': { + 'values': DayPeriod.values, + 'am': DayPeriod.am, + 'pm': DayPeriod.pm, + }, + 'TimeOfDayFormat': { + 'values': TimeOfDayFormat.values, + 'HH_colon_mm': TimeOfDayFormat.HH_colon_mm, + 'HH_dot_mm': TimeOfDayFormat.HH_dot_mm, + 'frenchCanadian': TimeOfDayFormat.frenchCanadian, + 'H_colon_mm': TimeOfDayFormat.H_colon_mm, + 'h_colon_mm_space_a': TimeOfDayFormat.h_colon_mm_space_a, + 'a_space_h_colon_mm': TimeOfDayFormat.a_space_h_colon_mm, + }, + 'HourFormat': { + 'values': HourFormat.values, + 'HH': HourFormat.HH, + 'H': HourFormat.H, + 'h': HourFormat.h, + }, + 'ColorScheme.lerp': (props) => ColorScheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'InputDecorator.containerOf': (props) => InputDecorator.containerOf( + props['pa'][0], + ), + 'FloatingLabelBehavior': { + 'values': FloatingLabelBehavior.values, + 'never': FloatingLabelBehavior.never, + 'auto': FloatingLabelBehavior.auto, + 'always': FloatingLabelBehavior.always, + }, + 'SnackBar.createAnimationController': (props) => + SnackBar.createAnimationController( + vsync: props['vsync'], + ), + 'SnackBarClosedReason': { + 'values': SnackBarClosedReason.values, + 'action': SnackBarClosedReason.action, + 'dismiss': SnackBarClosedReason.dismiss, + 'swipe': SnackBarClosedReason.swipe, + 'hide': SnackBarClosedReason.hide, + 'remove': SnackBarClosedReason.remove, + 'timeout': SnackBarClosedReason.timeout, + }, + 'Colors': { + 'transparent': Colors.transparent, + 'black': Colors.black, + 'black87': Colors.black87, + 'black54': Colors.black54, + 'black45': Colors.black45, + 'black38': Colors.black38, + 'black26': Colors.black26, + 'black12': Colors.black12, + 'white': Colors.white, + 'white70': Colors.white70, + 'white60': Colors.white60, + 'white54': Colors.white54, + 'white38': Colors.white38, + 'white30': Colors.white30, + 'white24': Colors.white24, + 'white12': Colors.white12, + 'white10': Colors.white10, + 'red': Colors.red, + 'redAccent': Colors.redAccent, + 'pink': Colors.pink, + 'pinkAccent': Colors.pinkAccent, + 'purple': Colors.purple, + 'purpleAccent': Colors.purpleAccent, + 'deepPurple': Colors.deepPurple, + 'deepPurpleAccent': Colors.deepPurpleAccent, + 'indigo': Colors.indigo, + 'indigoAccent': Colors.indigoAccent, + 'blue': Colors.blue, + 'blueAccent': Colors.blueAccent, + 'lightBlue': Colors.lightBlue, + 'lightBlueAccent': Colors.lightBlueAccent, + 'cyan': Colors.cyan, + 'cyanAccent': Colors.cyanAccent, + 'teal': Colors.teal, + 'tealAccent': Colors.tealAccent, + 'green': Colors.green, + 'greenAccent': Colors.greenAccent, + 'lightGreen': Colors.lightGreen, + 'lightGreenAccent': Colors.lightGreenAccent, + 'lime': Colors.lime, + 'limeAccent': Colors.limeAccent, + 'yellow': Colors.yellow, + 'yellowAccent': Colors.yellowAccent, + 'amber': Colors.amber, + 'amberAccent': Colors.amberAccent, + 'orange': Colors.orange, + 'orangeAccent': Colors.orangeAccent, + 'deepOrange': Colors.deepOrange, + 'deepOrangeAccent': Colors.deepOrangeAccent, + 'brown': Colors.brown, + 'grey': Colors.grey, + 'blueGrey': Colors.blueGrey, + 'primaries': Colors.primaries, + 'accents': Colors.accents, + }, + 'AppBarTheme.of': (props) => AppBarTheme.of( + props['pa'][0], + ), + 'AppBarTheme.lerp': (props) => AppBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ElevationOverlay.applyOverlay': (props) => ElevationOverlay.applyOverlay( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ElevationOverlay.overlayColor': (props) => ElevationOverlay.overlayColor( + props['pa'][0], + props['pa'][1]?.toDouble(), + ), + 'ElevationOverlay.colorWithOverlay': (props) => + ElevationOverlay.colorWithOverlay( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'OutlinedButtonThemeData.lerp': (props) => OutlinedButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'OutlinedButtonTheme.of': (props) => OutlinedButtonTheme.of( + props['pa'][0], + ), + 'TabBarTheme.of': (props) => TabBarTheme.of( + props['pa'][0], + ), + 'TabBarTheme.lerp': (props) => TabBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BottomAppBarTheme.of': (props) => BottomAppBarTheme.of( + props['pa'][0], + ), + 'BottomAppBarTheme.lerp': (props) => BottomAppBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RefreshIndicatorTriggerMode': { + 'values': RefreshIndicatorTriggerMode.values, + 'anywhere': RefreshIndicatorTriggerMode.anywhere, + 'onEdge': RefreshIndicatorTriggerMode.onEdge, + }, + 'TextSelectionThemeData.lerp': (props) => TextSelectionThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextSelectionTheme.of': (props) => TextSelectionTheme.of( + props['pa'][0], + ), + 'TimePickerThemeData.lerp': (props) => TimePickerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TimePickerTheme.of': (props) => TimePickerTheme.of( + props['pa'][0], + ), + 'NavigationRailThemeData.lerp': (props) => NavigationRailThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NavigationRailTheme.of': (props) => NavigationRailTheme.of( + props['pa'][0], + ), + 'NavigationDestinationLabelBehavior': { + 'values': NavigationDestinationLabelBehavior.values, + 'alwaysShow': NavigationDestinationLabelBehavior.alwaysShow, + 'alwaysHide': NavigationDestinationLabelBehavior.alwaysHide, + 'onlyShowSelected': NavigationDestinationLabelBehavior.onlyShowSelected, + }, + 'TextField': { + 'noMaxLength': TextField.noMaxLength, + }, + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart new file mode 100644 index 00000000..9cbb5747 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart @@ -0,0 +1,435 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/material.dart'; + +import '../../fair_version.dart'; + +var p = () => { + 'FlutterLogoDecoration.lerp': (props) => FlutterLogoDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'FlutterLogoStyle': { + 'values': FlutterLogoStyle.values, + 'markOnly': FlutterLogoStyle.markOnly, + 'horizontal': FlutterLogoStyle.horizontal, + 'stacked': FlutterLogoStyle.stacked, + }, + 'StrutStyle': { + 'disabled': StrutStyle.disabled, + }, + 'BorderSide': { + 'none': BorderSide.none, + }, + 'BorderSide.merge': (props) => BorderSide.merge( + props['pa'][0], + props['pa'][1], + ), + 'BorderSide.canMerge': (props) => BorderSide.canMerge( + props['pa'][0], + props['pa'][1], + ), + 'BorderSide.lerp': (props) => BorderSide.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderStyle': { + 'values': BorderStyle.values, + 'none': BorderStyle.none, + 'solid': BorderStyle.solid, + }, + 'Border.merge': (props) => Border.merge( + props['pa'][0], + props['pa'][1], + ), + 'Border.lerp': (props) => Border.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderDirectional.merge': (props) => BorderDirectional.merge( + props['pa'][0], + props['pa'][1], + ), + 'BorderDirectional.lerp': (props) => BorderDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BoxShape': { + 'values': BoxShape.values, + 'rectangle': BoxShape.rectangle, + 'circle': BoxShape.circle, + }, + 'ImageConfiguration': { + 'empty': ImageConfiguration.empty, + }, + 'ResizeImage.resizeIfNeeded': (props) => ResizeImage.resizeIfNeeded( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'BoxShadow.lerp': (props) => BoxShadow.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BoxShadow.lerpList': (props) => BoxShadow.lerpList( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NetworkImage': (props) => NetworkImage( + props['pa'][0], + scale: props['scale']?.toDouble(), + headers: props['headers'], + ), + 'BorderRadius.all': (props) => BorderRadius.all( + props['pa'][0], + ), + 'BorderRadius.circular': (props) => BorderRadius.circular( + props['pa'][0]?.toDouble(), + ), + 'BorderRadius.vertical': (props) => BorderRadius.vertical( + top: props['top'] ?? Radius.zero, + bottom: props['bottom'] ?? Radius.zero, + ), + 'BorderRadius.horizontal': (props) => BorderRadius.horizontal( + left: props['left'] ?? Radius.zero, + right: props['right'] ?? Radius.zero, + ), + 'BorderRadius.only': (props) => BorderRadius.only( + topLeft: props['topLeft'], + topRight: props['topRight'], + bottomLeft: props['bottomLeft'], + bottomRight: props['bottomRight'], + ), + 'BorderRadius.zero': BorderRadius.zero, + 'BorderRadius.lerp': (props) => BorderRadius.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderRadiusDirectional.all': (props) => BorderRadiusDirectional.all( + props['pa'][0], + ), + 'BorderRadiusDirectional.circular': (props) => + BorderRadiusDirectional.circular( + props['pa'][0]?.toDouble(), + ), + 'BorderRadiusDirectional.vertical': (props) => + BorderRadiusDirectional.vertical( + top: props['top'] ?? Radius.zero, + bottom: props['bottom'] ?? Radius.zero, + ), + 'BorderRadiusDirectional.horizontal': (props) => + BorderRadiusDirectional.horizontal( + start: props['start'] ?? Radius.zero, + end: props['end'] ?? Radius.zero, + ), + 'BorderRadiusDirectional.only': (props) => BorderRadiusDirectional.only( + topStart: props['topStart'], + topEnd: props['topEnd'], + bottomStart: props['bottomStart'], + bottomEnd: props['bottomEnd'], + ), + 'BorderRadiusDirectional.zero': BorderRadiusDirectional.zero, + 'BorderRadiusDirectional.lerp': (props) => BorderRadiusDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'HSVColor.lerp': (props) => HSVColor.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'HSLColor.lerp': (props) => HSLColor.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextStyle': (props) => TextStyle( + inherit: props['inherit'], + color: props['color'], + backgroundColor: props['backgroundColor'], + fontSize: props['fontSize']?.toDouble(), + fontWeight: props['fontWeight'], + fontStyle: props['fontStyle'], + letterSpacing: props['letterSpacing']?.toDouble(), + wordSpacing: props['wordSpacing']?.toDouble(), + textBaseline: props['textBaseline'], + height: props['height']?.toDouble(), + leadingDistribution: props['leadingDistribution'], + locale: props['locale'], + foreground: props['foreground'], + background: props['background'], + shadows: as(props['shadows']), + fontFeatures: as(props['fontFeatures']), + decoration: props['decoration'], + decorationColor: props['decorationColor'], + decorationStyle: props['decorationStyle'], + decorationThickness: props['decorationThickness']?.toDouble(), + debugLabel: props['debugLabel'], + fontFamily: props['fontFamily'], + fontFamilyFallback: as(props['fontFamilyFallback']), + package: props['package'], + overflow: props['overflow'], + ), + 'TextStyle.lerp': (props) => TextStyle.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'LinearGradient.lerp': (props) => LinearGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RadialGradient.lerp': (props) => RadialGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SweepGradient.lerp': (props) => SweepGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Alignment': (props) => Alignment( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + ), + 'Alignment.topLeft': Alignment.topLeft, + 'Alignment.topCenter': Alignment.topCenter, + 'Alignment.topRight': Alignment.topRight, + 'Alignment.centerLeft': Alignment.centerLeft, + 'Alignment.center': Alignment.center, + 'Alignment.centerRight': Alignment.centerRight, + 'Alignment.bottomLeft': Alignment.bottomLeft, + 'Alignment.bottomCenter': Alignment.bottomCenter, + 'Alignment.bottomRight': Alignment.bottomRight, + 'Alignment.lerp': (props) => Alignment.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'AlignmentDirectional': { + 'topStart': AlignmentDirectional.topStart, + 'topCenter': AlignmentDirectional.topCenter, + 'topEnd': AlignmentDirectional.topEnd, + 'centerStart': AlignmentDirectional.centerStart, + 'center': AlignmentDirectional.center, + 'centerEnd': AlignmentDirectional.centerEnd, + 'bottomStart': AlignmentDirectional.bottomStart, + 'bottomCenter': AlignmentDirectional.bottomCenter, + 'bottomEnd': AlignmentDirectional.bottomEnd, + }, + 'AlignmentDirectional.lerp': (props) => AlignmentDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextAlignVertical': { + 'top': TextAlignVertical.top, + 'center': TextAlignVertical.center, + 'bottom': TextAlignVertical.bottom, + }, + 'EdgeInsets.fromLTRB': (props) => EdgeInsets.fromLTRB( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + props['pa'][2]?.toDouble(), + props['pa'][3]?.toDouble(), + ), + 'EdgeInsets.all': (props) => EdgeInsets.all( + props['pa'][0]?.toDouble(), + ), + 'EdgeInsets.only': (props) => EdgeInsets.only( + left: props['left']?.toDouble(), + top: props['top']?.toDouble(), + right: props['right']?.toDouble(), + bottom: props['bottom']?.toDouble(), + ), + 'EdgeInsets.symmetric': (props) => EdgeInsets.symmetric( + vertical: props['vertical']?.toDouble() ?? 0.0, + horizontal: props['horizontal']?.toDouble() ?? 0.0, + ), + 'EdgeInsets.fromWindowPadding': (props) => EdgeInsets.fromWindowPadding( + props['pa'][0], + props['pa'][1]?.toDouble(), + ), + 'EdgeInsets.zero': EdgeInsets.zero, + 'EdgeInsets.lerp': (props) => EdgeInsets.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'EdgeInsetsDirectional': { + 'zero': EdgeInsetsDirectional.zero, + }, + 'EdgeInsetsDirectional.lerp': (props) => EdgeInsetsDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RenderComparison': { + 'values': RenderComparison.values, + 'identical': RenderComparison.identical, + 'metadata': RenderComparison.metadata, + 'paint': RenderComparison.paint, + 'layout': RenderComparison.layout, + }, + 'Axis': { + 'values': Axis.values, + 'horizontal': Axis.horizontal, + 'vertical': Axis.vertical, + }, + 'VerticalDirection': { + 'values': VerticalDirection.values, + 'up': VerticalDirection.up, + 'down': VerticalDirection.down, + }, + 'AxisDirection': { + 'values': AxisDirection.values, + 'up': AxisDirection.up, + 'right': AxisDirection.right, + 'down': AxisDirection.down, + 'left': AxisDirection.left, + }, + 'BoxDecoration': (props) => BoxDecoration( + color: props['color'], + image: props['image'], + border: props['border'], + borderRadius: props['borderRadius'], + boxShadow: as(props['boxShadow']), + gradient: props['gradient'], + backgroundBlendMode: props['backgroundBlendMode'], + shape: props['shape'], + ), + 'BoxDecoration.lerp': (props) => BoxDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'InlineSpanSemanticsInformation': { + 'placeholder': InlineSpanSemanticsInformation.placeholder, + }, + 'FractionalOffset': (props) => FractionalOffset( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + ), + 'FractionalOffset.fromOffsetAndSize': (props) => + FractionalOffset.fromOffsetAndSize( + props['pa'][0], + props['pa'][1], + ), + 'FractionalOffset.fromOffsetAndRect': (props) => + FractionalOffset.fromOffsetAndRect( + props['pa'][0], + props['pa'][1], + ), + 'FractionalOffset.topLeft': FractionalOffset.topLeft, + 'FractionalOffset.topCenter': FractionalOffset.topCenter, + 'FractionalOffset.topRight': FractionalOffset.topRight, + 'FractionalOffset.centerLeft': FractionalOffset.centerLeft, + 'FractionalOffset.center': FractionalOffset.center, + 'FractionalOffset.centerRight': FractionalOffset.centerRight, + 'FractionalOffset.bottomLeft': FractionalOffset.bottomLeft, + 'FractionalOffset.bottomCenter': FractionalOffset.bottomCenter, + 'FractionalOffset.bottomRight': FractionalOffset.bottomRight, + 'FractionalOffset.lerp': (props) => FractionalOffset.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BoxFit': { + 'values': BoxFit.values, + 'fill': BoxFit.fill, + 'contain': BoxFit.contain, + 'cover': BoxFit.cover, + 'fitWidth': BoxFit.fitWidth, + 'fitHeight': BoxFit.fitHeight, + 'none': BoxFit.none, + 'scaleDown': BoxFit.scaleDown, + }, + 'MatrixUtils.getAsTranslation': (props) => MatrixUtils.getAsTranslation( + props['pa'][0], + ), + 'MatrixUtils.getAsScale': (props) => MatrixUtils.getAsScale( + props['pa'][0], + ), + 'MatrixUtils.matrixEquals': (props) => MatrixUtils.matrixEquals( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.isIdentity': (props) => MatrixUtils.isIdentity( + props['pa'][0], + ), + 'MatrixUtils.transformPoint': (props) => MatrixUtils.transformPoint( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.transformRect': (props) => MatrixUtils.transformRect( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.inverseTransformRect': (props) => + MatrixUtils.inverseTransformRect( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.createCylindricalProjectionTransform': (props) => + MatrixUtils.createCylindricalProjectionTransform( + radius: props['radius']?.toDouble(), + angle: props['angle']?.toDouble(), + perspective: props['perspective']?.toDouble() ?? 0.001, + orientation: props['orientation'] ?? Axis.vertical, + ), + 'MatrixUtils.forceToPoint': (props) => MatrixUtils.forceToPoint( + props['pa'][0], + ), + 'PlaceholderDimensions': { + 'empty': PlaceholderDimensions.empty, + }, + 'TextOverflow': { + 'values': TextOverflow.values, + 'clip': TextOverflow.clip, + 'fade': TextOverflow.fade, + 'ellipsis': TextOverflow.ellipsis, + 'visible': TextOverflow.visible, + }, + 'TextWidthBasis': { + 'values': TextWidthBasis.values, + 'parent': TextWidthBasis.parent, + 'longestLine': TextWidthBasis.longestLine, + }, + 'ShapeDecoration.lerp': (props) => ShapeDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DecorationImage': (props) => DecorationImage( + image: props['image'], + onError: props['onError'], + colorFilter: props['colorFilter'], + fit: props['fit'], + alignment: props['alignment'], + centerSlice: props['centerSlice'], + repeat: props['repeat'], + matchTextDirection: props['matchTextDirection'], + scale: props['scale']?.toDouble(), + opacity: props['opacity']?.toDouble(), + filterQuality: props['filterQuality'], + invertColors: props['invertColors'], + isAntiAlias: props['isAntiAlias'], + ), + 'ImageRepeat': { + 'values': ImageRepeat.values, + 'repeat': ImageRepeat.repeat, + 'repeatX': ImageRepeat.repeatX, + 'repeatY': ImageRepeat.repeatY, + 'noRepeat': ImageRepeat.noRepeat, + }, + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart new file mode 100644 index 00000000..3f9f4622 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart @@ -0,0 +1,155 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter/rendering.dart'; + +var p = () => { + 'WrapAlignment': { + 'values': WrapAlignment.values, + 'start': WrapAlignment.start, + 'end': WrapAlignment.end, + 'center': WrapAlignment.center, + 'spaceBetween': WrapAlignment.spaceBetween, + 'spaceAround': WrapAlignment.spaceAround, + 'spaceEvenly': WrapAlignment.spaceEvenly, + }, + 'WrapCrossAlignment': { + 'values': WrapCrossAlignment.values, + 'start': WrapCrossAlignment.start, + 'end': WrapCrossAlignment.end, + 'center': WrapCrossAlignment.center, + }, + 'BoxConstraints.lerp': (props) => BoxConstraints.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'PlatformViewHitTestBehavior': { + 'values': PlatformViewHitTestBehavior.values, + 'opaque': PlatformViewHitTestBehavior.opaque, + 'translucent': PlatformViewHitTestBehavior.translucent, + 'transparent': PlatformViewHitTestBehavior.transparent, + }, + 'RelativeRect': { + 'fill': RelativeRect.fill, + }, + 'RelativeRect.lerp': (props) => RelativeRect.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RenderStack.getIntrinsicDimension': (props) => + RenderStack.getIntrinsicDimension( + props['pa'][0], + props['pa'][1], + ), + 'RenderStack.layoutPositionedChild': (props) => + RenderStack.layoutPositionedChild( + props['pa'][0], + props['pa'][1], + props['pa'][2], + props['pa'][3], + ), + 'StackFit': { + 'values': StackFit.values, + 'loose': StackFit.loose, + 'expand': StackFit.expand, + 'passthrough': StackFit.passthrough, + }, + 'SliverGeometry': { + 'zero': SliverGeometry.zero, + }, + 'GrowthDirection': { + 'values': GrowthDirection.values, + 'forward': GrowthDirection.forward, + 'reverse': GrowthDirection.reverse, + }, + 'RenderViewport': { + 'useTwoPaneSemantics': RenderViewport.useTwoPaneSemantics, + 'excludeFromScrolling': RenderViewport.excludeFromScrolling, + }, + 'CacheExtentStyle': { + 'values': CacheExtentStyle.values, + 'pixel': CacheExtentStyle.pixel, + 'viewport': CacheExtentStyle.viewport, + }, + 'ChildLayoutHelper.dryLayoutChild': (props) => + ChildLayoutHelper.dryLayoutChild( + props['pa'][0], + props['pa'][1], + ), + 'ChildLayoutHelper.layoutChild': (props) => ChildLayoutHelper.layoutChild( + props['pa'][0], + props['pa'][1], + ), + 'TableCellVerticalAlignment': { + 'values': TableCellVerticalAlignment.values, + 'top': TableCellVerticalAlignment.top, + 'middle': TableCellVerticalAlignment.middle, + 'bottom': TableCellVerticalAlignment.bottom, + 'baseline': TableCellVerticalAlignment.baseline, + 'fill': TableCellVerticalAlignment.fill, + }, + 'FlexFit': { + 'values': FlexFit.values, + 'tight': FlexFit.tight, + 'loose': FlexFit.loose, + }, + 'MainAxisSize': { + 'values': MainAxisSize.values, + 'min': MainAxisSize.min, + 'max': MainAxisSize.max, + }, + 'MainAxisAlignment': { + 'values': MainAxisAlignment.values, + 'start': MainAxisAlignment.start, + 'end': MainAxisAlignment.end, + 'center': MainAxisAlignment.center, + 'spaceBetween': MainAxisAlignment.spaceBetween, + 'spaceAround': MainAxisAlignment.spaceAround, + 'spaceEvenly': MainAxisAlignment.spaceEvenly, + }, + 'CrossAxisAlignment': { + 'values': CrossAxisAlignment.values, + 'start': CrossAxisAlignment.start, + 'end': CrossAxisAlignment.end, + 'center': CrossAxisAlignment.center, + 'stretch': CrossAxisAlignment.stretch, + 'baseline': CrossAxisAlignment.baseline, + }, + 'PaintingContext.repaintCompositedChild': (props) => + PaintingContext.repaintCompositedChild( + props['pa'][0], + debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, + ), + 'PaintingContext.debugInstrumentRepaintCompositedChild': (props) => + PaintingContext.debugInstrumentRepaintCompositedChild( + props['pa'][0], + debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, + customContext: props['customContext'], + ), + 'ScrollDirection': { + 'values': ScrollDirection.values, + 'idle': ScrollDirection.idle, + 'forward': ScrollDirection.forward, + 'reverse': ScrollDirection.reverse, + }, + 'HitTestBehavior': { + 'values': HitTestBehavior.values, + 'deferToChild': HitTestBehavior.deferToChild, + 'opaque': HitTestBehavior.opaque, + 'translucent': HitTestBehavior.translucent, + }, + 'DecorationPosition': { + 'values': DecorationPosition.values, + 'background': DecorationPosition.background, + 'foreground': DecorationPosition.foreground, + }, + 'TableBorder.lerp': (props) => TableBorder.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart new file mode 100644 index 00000000..c7329049 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart @@ -0,0 +1,3344 @@ +// This file is generated by Fair, do not edit manually! + +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter/gestures.dart'; +import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; +import 'utils.dart'; + +const Color _kColor = Color(0xA0B71C1C); +const double _kHeight = 12.0; // height of banner +const TextStyle _kTextStyle = TextStyle( + color: Color(0xFFFFFFFF), + fontSize: _kHeight * 0.85, + fontWeight: FontWeight.w900, + height: 1.0, +); + +const double kMiddleSpacing = 16.0; +var p = () => { + 'RenderObjectToWidgetAdapter': (props) => RenderObjectToWidgetAdapter( + child: props['child'], + container: props['container'], + debugShortDescription: props['debugShortDescription'], + ), + 'WidgetsFlutterBinding.ensureInitialized': (props) => + WidgetsFlutterBinding.ensureInitialized(), + 'AnimatedSize': (props) => AnimatedSize( + key: props['key'], + child: props['child'], + alignment: props['alignment'], + curve: props['curve'], + duration: props['duration'], + reverseDuration: props['reverseDuration'], + vsync: props['vsync'], + clipBehavior: props['clipBehavior'], + ), + 'SliverFillViewport': (props) => SliverFillViewport( + key: props['key'], + delegate: props['delegate'], + viewportFraction: props['viewportFraction']?.toDouble(), + padEnds: props['padEnds'], + ), + 'SliverFillRemaining': (props) => SliverFillRemaining( + key: props['key'], + child: props['child'], + hasScrollBody: props['hasScrollBody'], + fillOverscroll: props['fillOverscroll'], + ), + 'DefaultWidgetsLocalizations': { + 'delegate': DefaultWidgetsLocalizations.delegate, + }, + 'DefaultWidgetsLocalizations.load': (props) => + DefaultWidgetsLocalizations.load( + props['pa'][0], + ), + 'Localizations': (props) => Localizations( + key: props['key'], + locale: props['locale'], + delegates: as(props['delegates'])!, + child: props['child'], + ), + 'Localizations.override': (props) => Localizations.override( + key: props['key'], + context: props['context'], + locale: props['locale'], + delegates: as(props['delegates']), + child: props['child'], + ), + 'Localizations.localeOf': (props) => Localizations.localeOf( + props['pa'][0], + ), + 'Localizations.maybeLocaleOf': (props) => Localizations.maybeLocaleOf( + props['pa'][0], + ), + 'Localizations.of': (props) => Localizations.of( + props['pa'][0], + props['pa'][1], + ), + 'CustomScrollView': (props) => CustomScrollView( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + scrollBehavior: props['scrollBehavior'], + shrinkWrap: props['shrinkWrap'] ?? false, + center: props['center'], + anchor: props['anchor']?.toDouble() ?? 0.0, + cacheExtent: props['cacheExtent']?.toDouble(), + slivers: as(props['slivers']) ?? const [], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ListView': (props) => ListView( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + children: as(props['children']) ?? const [], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ListView.builder': (props) => ListView.builder( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ListView.separated': (props) => ListView.separated( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + itemBuilder: props['itemBuilder'], + separatorBuilder: props['separatorBuilder'], + itemCount: props['itemCount'], + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ListView.custom': (props) => ListView.custom( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + childrenDelegate: props['childrenDelegate'], + cacheExtent: props['cacheExtent']?.toDouble(), + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'GridView': (props) => GridView( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + gridDelegate: props['gridDelegate'], + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + children: as(props['children']) ?? const [], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + ), + 'GridView.builder': (props) => GridView.builder( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + gridDelegate: props['gridDelegate'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'GridView.custom': (props) => GridView.custom( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + gridDelegate: props['gridDelegate'], + childrenDelegate: props['childrenDelegate'], + cacheExtent: props['cacheExtent']?.toDouble(), + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'GridView.count': (props) => GridView.count( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + crossAxisCount: props['crossAxisCount'], + mainAxisSpacing: props['mainAxisSpacing']?.toDouble() ?? 0.0, + crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, + childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + children: as(props['children']) ?? const [], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'GridView.extent': (props) => GridView.extent( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + padding: props['padding'], + maxCrossAxisExtent: props['maxCrossAxisExtent']?.toDouble(), + mainAxisSpacing: props['mainAxisSpacing']?.toDouble() ?? 0.0, + crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, + childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, + addAutomaticKeepAlives: props['addAutomaticKeepAlives'] ?? true, + addRepaintBoundaries: props['addRepaintBoundaries'] ?? true, + addSemanticIndexes: props['addSemanticIndexes'] ?? true, + cacheExtent: props['cacheExtent']?.toDouble(), + children: as(props['children']) ?? const [], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ScrollViewKeyboardDismissBehavior': { + 'values': ScrollViewKeyboardDismissBehavior.values, + 'manual': ScrollViewKeyboardDismissBehavior.manual, + 'onDrag': ScrollViewKeyboardDismissBehavior.onDrag, + }, + 'Spacer': (props) => Spacer( + key: props['key'], + flex: props['flex'], + ), + 'RawKeyboardListener': (props) => RawKeyboardListener( + key: props['key'], + focusNode: props['focusNode'], + autofocus: props['autofocus'], + includeSemantics: props['includeSemantics'], + onKey: props['onKey'], + child: props['child'], + ), + 'BouncingScrollSimulation': { + 'maxSpringTransferVelocity': + BouncingScrollSimulation.maxSpringTransferVelocity, + }, + 'Overlay': (props) => Overlay( + key: props['key'], + initialEntries: as(props['initialEntries']) ?? + const [], + clipBehavior: props['clipBehavior'], + ), + 'Overlay.of': (props) => Overlay.of( + props['pa'][0], + rootOverlay: props['rootOverlay'] ?? false, + debugRequiredFor: props['debugRequiredFor'], + ), + 'RawAutocomplete': (props) => RawAutocomplete( + key: props['key'], + optionsViewBuilder: props['optionsViewBuilder'], + optionsBuilder: props['optionsBuilder'], + displayStringForOption: props['displayStringForOption'], + fieldViewBuilder: props['fieldViewBuilder'], + focusNode: props['focusNode'], + onSelected: props['onSelected'], + textEditingController: props['textEditingController'], + initialValue: props['initialValue'], + ), + 'RawAutocomplete.onFieldSubmitted': (props) => + RawAutocomplete.onFieldSubmitted( + props['pa'][0], + ), + 'RawAutocomplete.defaultStringForOption': (props) => + RawAutocomplete.defaultStringForOption( + props['pa'][0], + ), + 'AutocompleteHighlightedOption': (props) => AutocompleteHighlightedOption( + key: props['key'], + highlightIndexNotifier: props['highlightIndexNotifier'], + child: props['child'], + ), + 'AutocompleteHighlightedOption.of': (props) => + AutocompleteHighlightedOption.of( + props['pa'][0], + ), + 'WidgetsApp': (props) => WidgetsApp( + key: props['key'], + navigatorKey: props['navigatorKey'], + onGenerateRoute: props['onGenerateRoute'], + onGenerateInitialRoutes: props['onGenerateInitialRoutes'], + onUnknownRoute: props['onUnknownRoute'], + navigatorObservers: + as(props['navigatorObservers']) ?? + const [], + initialRoute: props['initialRoute'], + pageRouteBuilder: props['pageRouteBuilder'], + home: props['home'], + routes: props['routes'], + builder: props['builder'], + title: props['title'], + onGenerateTitle: props['onGenerateTitle'], + textStyle: props['textStyle'], + color: props['color'], + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: props['supportedLocales'], + showPerformanceOverlay: props['showPerformanceOverlay'], + checkerboardRasterCacheImages: + props['checkerboardRasterCacheImages'], + checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'], + showSemanticsDebugger: props['showSemanticsDebugger'], + debugShowWidgetInspector: props['debugShowWidgetInspector'], + debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'], + inspectorSelectButtonBuilder: props['inspectorSelectButtonBuilder'], + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + useInheritedMediaQuery: props['useInheritedMediaQuery'], + ), + 'WidgetsApp.router': (props) => WidgetsApp.router( + key: props['key'], + routeInformationProvider: props['routeInformationProvider'], + routeInformationParser: props['routeInformationParser'], + routerDelegate: props['routerDelegate'], + backButtonDispatcher: props['backButtonDispatcher'], + builder: props['builder'], + title: props['title'], + onGenerateTitle: props['onGenerateTitle'], + textStyle: props['textStyle'], + color: props['color'], + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: props['supportedLocales'], + showPerformanceOverlay: props['showPerformanceOverlay'], + checkerboardRasterCacheImages: + props['checkerboardRasterCacheImages'], + checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'], + showSemanticsDebugger: props['showSemanticsDebugger'], + debugShowWidgetInspector: props['debugShowWidgetInspector'], + debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'], + inspectorSelectButtonBuilder: props['inspectorSelectButtonBuilder'], + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + useInheritedMediaQuery: props['useInheritedMediaQuery'], + ), + 'AndroidView': (props) => AndroidView( + key: props['key'], + viewType: props['viewType'], + onPlatformViewCreated: props['onPlatformViewCreated'], + hitTestBehavior: props['hitTestBehavior'], + layoutDirection: props['layoutDirection'], + gestureRecognizers: props['gestureRecognizers'], + creationParams: props['creationParams'], + creationParamsCodec: props['creationParamsCodec'], + clipBehavior: props['clipBehavior'], + ), + 'UiKitView': (props) => UiKitView( + key: props['key'], + viewType: props['viewType'], + onPlatformViewCreated: props['onPlatformViewCreated'], + hitTestBehavior: props['hitTestBehavior'], + layoutDirection: props['layoutDirection'], + creationParams: props['creationParams'], + creationParamsCodec: props['creationParamsCodec'], + gestureRecognizers: props['gestureRecognizers'], + ), + 'HtmlElementView': (props) => HtmlElementView( + key: props['key'], + viewType: props['viewType'], + onPlatformViewCreated: props['onPlatformViewCreated'], + ), + 'PlatformViewLink': (props) => PlatformViewLink( + key: props['key'], + surfaceFactory: props['surfaceFactory'], + onCreatePlatformView: props['onCreatePlatformView'], + viewType: props['viewType'], + ), + 'PlatformViewSurface': (props) => PlatformViewSurface( + key: props['key'], + controller: props['controller'], + hitTestBehavior: props['hitTestBehavior'], + gestureRecognizers: props['gestureRecognizers'], + ), + 'AndroidViewSurface': (props) => AndroidViewSurface( + key: props['key'], + controller: props['controller'], + hitTestBehavior: props['hitTestBehavior'], + gestureRecognizers: props['gestureRecognizers'], + ), + 'RawScrollbar': (props) => RawScrollbar( + key: props['key'], + child: props['child'], + controller: props['controller'], + isAlwaysShown: props['isAlwaysShown'], + shape: props['shape'], + radius: props['radius'], + thickness: props['thickness']?.toDouble(), + thumbColor: props['thumbColor'], + minThumbLength: props['minThumbLength']?.toDouble(), + minOverscrollLength: props['minOverscrollLength']?.toDouble(), + fadeDuration: props['fadeDuration'], + timeToFade: props['timeToFade'], + pressDuration: props['pressDuration'], + notificationPredicate: props['notificationPredicate'], + interactive: props['interactive'], + scrollbarOrientation: props['scrollbarOrientation'], + mainAxisMargin: props['mainAxisMargin']?.toDouble(), + crossAxisMargin: props['crossAxisMargin']?.toDouble(), + ), + 'ScrollbarOrientation': { + 'values': ScrollbarOrientation.values, + 'left': ScrollbarOrientation.left, + 'right': ScrollbarOrientation.right, + 'top': ScrollbarOrientation.top, + 'bottom': ScrollbarOrientation.bottom, + }, + 'SafeArea': (props) => SafeArea( + key: props['key'], + left: props['left'], + top: props['top'], + right: props['right'], + bottom: props['bottom'], + minimum: props['minimum'], + maintainBottomViewPadding: props['maintainBottomViewPadding'], + child: props['child'], + ), + 'SliverSafeArea': (props) => SliverSafeArea( + key: props['key'], + left: props['left'], + top: props['top'], + right: props['right'], + bottom: props['bottom'], + minimum: props['minimum'], + sliver: props['sliver'], + ), + 'WillPopScope': (props) => WillPopScope( + key: props['key'], + child: props['child'], + onWillPop: props['onWillPop'], + ), + 'Dismissible': (props) => Dismissible( + key: props['key'], + child: props['child'], + background: props['background'], + secondaryBackground: props['secondaryBackground'], + confirmDismiss: props['confirmDismiss'], + onResize: props['onResize'], + onUpdate: props['onUpdate'], + onDismissed: props['onDismissed'], + direction: props['direction'], + resizeDuration: props['resizeDuration'], + dismissThresholds: props['dismissThresholds'], + movementDuration: props['movementDuration'], + crossAxisEndOffset: props['crossAxisEndOffset']?.toDouble(), + dragStartBehavior: props['dragStartBehavior'], + behavior: props['behavior'], + ), + 'DismissDirection': { + 'values': DismissDirection.values, + 'vertical': DismissDirection.vertical, + 'horizontal': DismissDirection.horizontal, + 'endToStart': DismissDirection.endToStart, + 'startToEnd': DismissDirection.startToEnd, + 'up': DismissDirection.up, + 'down': DismissDirection.down, + 'none': DismissDirection.none, + }, + 'SliverList': (props) => SliverList( + key: props['key'], + delegate: props['delegate'], + ), + 'SliverFixedExtentList': (props) => SliverFixedExtentList( + key: props['key'], + delegate: props['delegate'], + itemExtent: props['itemExtent']?.toDouble(), + ), + 'SliverGrid': (props) => SliverGrid( + key: props['key'], + delegate: props['delegate'], + gridDelegate: props['gridDelegate'], + ), + 'SliverGrid.count': (props) => SliverGrid.count( + key: props['key'], + crossAxisCount: props['crossAxisCount'], + mainAxisSpacing: props['mainAxisSpacing']?.toDouble() ?? 0.0, + crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, + childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, + children: as(props['children']) ?? const [], + ), + 'SliverGrid.extent': (props) => SliverGrid.extent( + key: props['key'], + maxCrossAxisExtent: props['maxCrossAxisExtent']?.toDouble(), + mainAxisSpacing: props['mainAxisSpacing']?.toDouble() ?? 0.0, + crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, + childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, + children: as(props['children']) ?? const [], + ), + 'SliverOpacity': (props) => SliverOpacity( + key: props['key'], + opacity: props['opacity']?.toDouble(), + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + sliver: props['sliver'], + ), + 'SliverIgnorePointer': (props) => SliverIgnorePointer( + key: props['key'], + ignoring: props['ignoring'], + ignoringSemantics: props['ignoringSemantics'], + sliver: props['sliver'], + ), + 'SliverOffstage': (props) => SliverOffstage( + key: props['key'], + offstage: props['offstage'], + sliver: props['sliver'], + ), + 'KeepAlive': (props) => KeepAlive( + key: props['key'], + keepAlive: props['keepAlive'], + child: props['child'], + ), + 'ListWheelScrollView': (props) => ListWheelScrollView( + key: props['key'], + controller: props['controller'], + physics: props['physics'], + diameterRatio: props['diameterRatio']?.toDouble(), + perspective: props['perspective']?.toDouble(), + offAxisFraction: props['offAxisFraction']?.toDouble(), + useMagnifier: props['useMagnifier'], + magnification: props['magnification']?.toDouble(), + overAndUnderCenterOpacity: + props['overAndUnderCenterOpacity']?.toDouble(), + itemExtent: props['itemExtent']?.toDouble(), + squeeze: props['squeeze']?.toDouble(), + onSelectedItemChanged: props['onSelectedItemChanged'], + renderChildrenOutsideViewport: + props['renderChildrenOutsideViewport'], + clipBehavior: props['clipBehavior'], + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + children: as(props['children']) ?? const [], + ), + 'ListWheelScrollView.useDelegate': (props) => + ListWheelScrollView.useDelegate( + key: props['key'], + controller: props['controller'], + physics: props['physics'], + diameterRatio: props['diameterRatio']?.toDouble(), + perspective: props['perspective']?.toDouble(), + offAxisFraction: props['offAxisFraction']?.toDouble(), + useMagnifier: props['useMagnifier'], + magnification: props['magnification']?.toDouble(), + overAndUnderCenterOpacity: + props['overAndUnderCenterOpacity']?.toDouble(), + itemExtent: props['itemExtent']?.toDouble(), + squeeze: props['squeeze']?.toDouble(), + onSelectedItemChanged: props['onSelectedItemChanged'], + renderChildrenOutsideViewport: + props['renderChildrenOutsideViewport'], + clipBehavior: props['clipBehavior'], + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + childDelegate: props['childDelegate'], + ), + 'ListWheelViewport': (props) => ListWheelViewport( + key: props['key'], + diameterRatio: props['diameterRatio']?.toDouble(), + perspective: props['perspective']?.toDouble(), + offAxisFraction: props['offAxisFraction']?.toDouble(), + useMagnifier: props['useMagnifier'], + magnification: props['magnification']?.toDouble(), + overAndUnderCenterOpacity: + props['overAndUnderCenterOpacity']?.toDouble(), + itemExtent: props['itemExtent']?.toDouble(), + squeeze: props['squeeze']?.toDouble(), + renderChildrenOutsideViewport: + props['renderChildrenOutsideViewport'], + offset: props['offset'], + childDelegate: props['childDelegate'], + clipBehavior: props['clipBehavior'], + ), + 'ScrollDragController': { + 'momentumRetainStationaryDurationThreshold': + ScrollDragController.momentumRetainStationaryDurationThreshold, + 'momentumRetainVelocityThresholdFactor': + ScrollDragController.momentumRetainVelocityThresholdFactor, + 'motionStoppedDurationThreshold': + ScrollDragController.motionStoppedDurationThreshold, + }, + 'AutofillGroup': (props) => AutofillGroup( + key: props['key'], + child: props['child'], + onDisposeAction: props['onDisposeAction'], + ), + 'AutofillGroup.of': (props) => AutofillGroup.of( + props['pa'][0], + ), + 'AutofillContextAction': { + 'values': AutofillContextAction.values, + 'commit': AutofillContextAction.commit, + 'cancel': AutofillContextAction.cancel, + }, + 'AnimatedContainer': (props) => AnimatedContainer( + key: props['key'], + alignment: props['alignment'], + padding: props['padding'], + color: props['color'], + decoration: props['decoration'], + foregroundDecoration: props['foregroundDecoration'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + constraints: props['constraints'], + margin: props['margin'], + transform: props['transform'], + transformAlignment: props['transformAlignment'], + child: props['child'], + clipBehavior: props['clipBehavior'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPadding': (props) => AnimatedPadding( + key: props['key'], + padding: props['padding'], + child: props['child'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedAlign': (props) => AnimatedAlign( + key: props['key'], + alignment: props['alignment'], + child: props['child'], + heightFactor: props['heightFactor']?.toDouble(), + widthFactor: props['widthFactor']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositioned': (props) => AnimatedPositioned( + key: props['key'], + child: props['child'], + left: props['left']?.toDouble(), + top: props['top']?.toDouble(), + right: props['right']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositioned.fromRect': (props) => AnimatedPositioned.fromRect( + key: props['key'], + child: props['child'], + rect: props['rect'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositionedDirectional': (props) => AnimatedPositionedDirectional( + key: props['key'], + child: props['child'], + start: props['start']?.toDouble(), + top: props['top']?.toDouble(), + end: props['end']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedScale': (props) => AnimatedScale( + key: props['key'], + child: props['child'], + scale: props['scale']?.toDouble(), + alignment: props['alignment'], + filterQuality: props['filterQuality'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedRotation': (props) => AnimatedRotation( + key: props['key'], + child: props['child'], + turns: props['turns']?.toDouble(), + alignment: props['alignment'], + filterQuality: props['filterQuality'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedSlide': (props) => AnimatedSlide( + key: props['key'], + child: props['child'], + offset: props['offset'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedOpacity': (props) => AnimatedOpacity( + key: props['key'], + child: props['child'], + opacity: props['opacity']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + ), + 'SliverAnimatedOpacity': (props) => SliverAnimatedOpacity( + key: props['key'], + sliver: props['sliver'], + opacity: props['opacity']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + ), + 'AnimatedDefaultTextStyle': (props) => AnimatedDefaultTextStyle( + key: props['key'], + child: props['child'], + style: props['style'], + textAlign: props['textAlign'], + softWrap: props['softWrap'], + overflow: props['overflow'], + maxLines: props['maxLines'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPhysicalModel': (props) => AnimatedPhysicalModel( + key: props['key'], + child: props['child'], + shape: props['shape'], + clipBehavior: props['clipBehavior'], + borderRadius: props['borderRadius'], + elevation: props['elevation']?.toDouble(), + color: props['color'], + animateColor: props['animateColor'], + shadowColor: props['shadowColor'], + animateShadowColor: props['animateShadowColor'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'SingleChildScrollView': (props) => SingleChildScrollView( + key: props['key'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + padding: props['padding'], + primary: props['primary'], + physics: props['physics'], + controller: props['controller'], + child: props['child'], + dragStartBehavior: props['dragStartBehavior'], + clipBehavior: props['clipBehavior'], + restorationId: props['restorationId'], + keyboardDismissBehavior: props['keyboardDismissBehavior'], + ), + 'ModalBarrier': (props) => ModalBarrier( + key: props['key'], + color: props['color'], + dismissible: props['dismissible'], + semanticsLabel: props['semanticsLabel'], + barrierSemanticsDismissible: props['barrierSemanticsDismissible'], + ), + 'AnimatedModalBarrier': (props) => AnimatedModalBarrier( + key: props['key'], + color: props['color'], + dismissible: props['dismissible'], + semanticsLabel: props['semanticsLabel'], + barrierSemanticsDismissible: props['barrierSemanticsDismissible'], + ), + 'Focus': (props) => Focus( + key: props['key'], + child: props['child'], + focusNode: props['focusNode'], + autofocus: props['autofocus'], + onFocusChange: props['onFocusChange'], + onKeyEvent: props['onKeyEvent'], + onKey: props['onKey'], + canRequestFocus: props['canRequestFocus'], + skipTraversal: props['skipTraversal'], + descendantsAreFocusable: props['descendantsAreFocusable'], + includeSemantics: props['includeSemantics'], + debugLabel: props['debugLabel'], + ), + 'Focus.withExternalFocusNode': (props) => Focus.withExternalFocusNode( + key: props['key'], + child: props['child'], + focusNode: props['focusNode'], + autofocus: props['autofocus'], + onFocusChange: props['onFocusChange'], + includeSemantics: props['includeSemantics'], + ), + 'Focus.of': (props) => Focus.of( + props['pa'][0], + scopeOk: props['scopeOk'] ?? false, + ), + 'Focus.maybeOf': (props) => Focus.maybeOf( + props['pa'][0], + scopeOk: props['scopeOk'] ?? false, + ), + 'Focus.isAt': (props) => Focus.isAt( + props['pa'][0], + ), + 'FocusScope': (props) => FocusScope( + key: props['key'], + node: props['node'], + child: props['child'], + autofocus: props['autofocus'] ?? false, + onFocusChange: props['onFocusChange'], + canRequestFocus: props['canRequestFocus'], + skipTraversal: props['skipTraversal'], + onKeyEvent: props['onKeyEvent'], + onKey: props['onKey'], + debugLabel: props['debugLabel'], + ), + 'FocusScope.withExternalFocusNode': (props) => + FocusScope.withExternalFocusNode( + key: props['key'], + child: props['child'], + focusScopeNode: props['focusScopeNode'], + autofocus: props['autofocus'] ?? false, + onFocusChange: props['onFocusChange'], + ), + 'FocusScope.of': (props) => FocusScope.of( + props['pa'][0], + ), + 'ExcludeFocus': (props) => ExcludeFocus( + key: props['key'], + excluding: props['excluding'], + child: props['child'], + ), + 'FadeInImage': (props) => FadeInImage( + key: props['key'], + placeholder: props['placeholder'], + placeholderErrorBuilder: props['placeholderErrorBuilder'], + image: props['image'], + imageErrorBuilder: props['imageErrorBuilder'], + excludeFromSemantics: props['excludeFromSemantics'], + imageSemanticLabel: props['imageSemanticLabel'], + fadeOutDuration: props['fadeOutDuration'], + fadeOutCurve: props['fadeOutCurve'], + fadeInDuration: props['fadeInDuration'], + fadeInCurve: props['fadeInCurve'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + fit: props['fit'], + placeholderFit: props['placeholderFit'], + alignment: props['alignment'], + repeat: props['repeat'], + matchTextDirection: props['matchTextDirection'], + ), + 'FadeInImage.memoryNetwork': (props) => FadeInImage.memoryNetwork( + key: props['key'], + placeholder: props['placeholder'], + placeholderErrorBuilder: props['placeholderErrorBuilder'], + image: props['image'], + imageErrorBuilder: props['imageErrorBuilder'], + placeholderScale: props['placeholderScale']?.toDouble() ?? 1.0, + imageScale: props['imageScale']?.toDouble() ?? 1.0, + excludeFromSemantics: props['excludeFromSemantics'], + imageSemanticLabel: props['imageSemanticLabel'], + fadeOutDuration: props['fadeOutDuration'], + fadeOutCurve: props['fadeOutCurve'], + fadeInDuration: props['fadeInDuration'], + fadeInCurve: props['fadeInCurve'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + fit: props['fit'], + placeholderFit: props['placeholderFit'], + alignment: props['alignment'], + repeat: props['repeat'], + matchTextDirection: props['matchTextDirection'], + placeholderCacheWidth: props['placeholderCacheWidth'], + placeholderCacheHeight: props['placeholderCacheHeight'], + imageCacheWidth: props['imageCacheWidth'], + imageCacheHeight: props['imageCacheHeight'], + ), + 'FadeInImage.assetNetwork': (props) => FadeInImage.assetNetwork( + key: props['key'], + placeholder: props['placeholder'], + placeholderErrorBuilder: props['placeholderErrorBuilder'], + image: props['image'], + imageErrorBuilder: props['imageErrorBuilder'], + bundle: props['bundle'], + placeholderScale: props['placeholderScale']?.toDouble() ?? 1.0, + imageScale: props['imageScale']?.toDouble() ?? 1.0, + excludeFromSemantics: props['excludeFromSemantics'], + imageSemanticLabel: props['imageSemanticLabel'], + fadeOutDuration: props['fadeOutDuration'], + fadeOutCurve: props['fadeOutCurve'], + fadeInDuration: props['fadeInDuration'], + fadeInCurve: props['fadeInCurve'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + fit: props['fit'], + placeholderFit: props['placeholderFit'], + alignment: props['alignment'], + repeat: props['repeat'], + matchTextDirection: props['matchTextDirection'], + placeholderCacheWidth: props['placeholderCacheWidth'], + placeholderCacheHeight: props['placeholderCacheHeight'], + imageCacheWidth: props['imageCacheWidth'], + imageCacheHeight: props['imageCacheHeight'], + ), + 'OverflowBar': (props) => OverflowBar( + key: props['key'], + spacing: props['spacing']?.toDouble(), + alignment: props['alignment'], + overflowSpacing: props['overflowSpacing']?.toDouble(), + overflowAlignment: props['overflowAlignment'], + overflowDirection: props['overflowDirection'], + textDirection: props['textDirection'], + clipBehavior: props['clipBehavior'], + children: as(props['children']) ?? const [], + ), + 'OverflowBarAlignment': { + 'values': OverflowBarAlignment.values, + 'start': OverflowBarAlignment.start, + 'end': OverflowBarAlignment.end, + 'center': OverflowBarAlignment.center, + }, + 'AnimatedList': (props) => AnimatedList( + key: props['key'], + itemBuilder: props['itemBuilder'], + initialItemCount: props['initialItemCount'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'], + padding: props['padding'], + clipBehavior: props['clipBehavior'], + ), + 'AnimatedList.of': (props) => AnimatedList.of( + props['pa'][0], + ), + 'AnimatedList.maybeOf': (props) => AnimatedList.maybeOf( + props['pa'][0], + ), + 'SliverAnimatedList': (props) => SliverAnimatedList( + key: props['key'], + itemBuilder: props['itemBuilder'], + initialItemCount: props['initialItemCount'], + ), + 'SliverAnimatedList.of': (props) => SliverAnimatedList.of( + props['pa'][0], + ), + 'SliverAnimatedList.maybeOf': (props) => SliverAnimatedList.maybeOf( + props['pa'][0], + ), + 'RestorationScope': (props) => RestorationScope( + key: props['key'], + restorationId: props['restorationId'], + child: props['child'], + ), + 'RestorationScope.of': (props) => RestorationScope.of( + props['pa'][0], + ), + 'UnmanagedRestorationScope': (props) => UnmanagedRestorationScope( + key: props['key'], + bucket: props['bucket'], + child: props['child'], + ), + 'RootRestorationScope': (props) => RootRestorationScope( + key: props['key'], + restorationId: props['restorationId'], + child: props['child'], + ), + 'TickerMode': (props) => TickerMode( + key: props['key'], + enabled: props['enabled'], + child: props['child'], + ), + 'TickerMode.of': (props) => TickerMode.of( + props['pa'][0], + ), + 'TextSelectionOverlay': { + 'fadeDuration': TextSelectionOverlay.fadeDuration, + }, + 'TextSelectionGestureDetector': (props) => TextSelectionGestureDetector( + key: props['key'], + onTapDown: props['onTapDown'], + onForcePressStart: props['onForcePressStart'], + onForcePressEnd: props['onForcePressEnd'], + onSecondaryTap: props['onSecondaryTap'], + onSecondaryTapDown: props['onSecondaryTapDown'], + onSingleTapUp: props['onSingleTapUp'], + onSingleTapCancel: props['onSingleTapCancel'], + onSingleLongTapStart: props['onSingleLongTapStart'], + onSingleLongTapMoveUpdate: props['onSingleLongTapMoveUpdate'], + onSingleLongTapEnd: props['onSingleLongTapEnd'], + onDoubleTapDown: props['onDoubleTapDown'], + onDragSelectionStart: props['onDragSelectionStart'], + onDragSelectionUpdate: props['onDragSelectionUpdate'], + onDragSelectionEnd: props['onDragSelectionEnd'], + behavior: props['behavior'], + child: props['child'], + ), + 'TextSelectionHandleType': { + 'values': TextSelectionHandleType.values, + 'left': TextSelectionHandleType.left, + 'right': TextSelectionHandleType.right, + 'collapsed': TextSelectionHandleType.collapsed, + }, + 'ClipboardStatus': { + 'values': ClipboardStatus.values, + 'pasteable': ClipboardStatus.pasteable, + 'unknown': ClipboardStatus.unknown, + 'notPasteable': ClipboardStatus.notPasteable, + }, + 'SemanticsDebugger': (props) => SemanticsDebugger( + key: props['key'], + child: props['child'], + labelStyle: props['labelStyle'], + ), + 'IconTheme': (props) => IconTheme( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'IconTheme.merge': (props) => IconTheme.merge( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'IconTheme.of': (props) => IconTheme.of( + props['pa'][0], + ), + 'ScrollConfiguration': (props) => ScrollConfiguration( + key: props['key'], + behavior: props['behavior'], + child: props['child'], + ), + 'ScrollConfiguration.of': (props) => ScrollConfiguration.of( + props['pa'][0], + ), + 'AndroidOverscrollIndicator': { + 'values': AndroidOverscrollIndicator.values, + 'stretch': AndroidOverscrollIndicator.stretch, + 'glow': AndroidOverscrollIndicator.glow, + }, + 'ErrorWidget': (props) => ErrorWidget( + props['pa'][0], + ), + 'ErrorWidget.withDetails': (props) => ErrorWidget.withDetails( + message: props['message'], + error: props['error'], + ), + 'AutomaticKeepAlive': (props) => AutomaticKeepAlive( + key: props['key'], + child: props['child'], + ), + 'Viewport': (props) => Viewport( + key: props['key'], + axisDirection: props['axisDirection'], + crossAxisDirection: props['crossAxisDirection'], + anchor: props['anchor']?.toDouble(), + offset: props['offset'], + center: props['center'], + cacheExtent: props['cacheExtent']?.toDouble(), + cacheExtentStyle: props['cacheExtentStyle'], + clipBehavior: props['clipBehavior'], + slivers: as(props['slivers']) ?? const [], + ), + 'Viewport.getDefaultCrossAxisDirection': (props) => + Viewport.getDefaultCrossAxisDirection( + props['pa'][0], + props['pa'][1], + ), + 'ShrinkWrappingViewport': (props) => ShrinkWrappingViewport( + key: props['key'], + axisDirection: props['axisDirection'], + crossAxisDirection: props['crossAxisDirection'], + offset: props['offset'], + clipBehavior: props['clipBehavior'], + slivers: as(props['slivers']) ?? const [], + ), + 'SizeChangedLayoutNotifier': (props) => SizeChangedLayoutNotifier( + key: props['key'], + child: props['child'], + ), + 'Hero': (props) => Hero( + key: props['key'], + tag: props['tag'], + createRectTween: props['createRectTween'], + flightShuttleBuilder: props['flightShuttleBuilder'], + placeholderBuilder: props['placeholderBuilder'], + transitionOnUserGestures: props['transitionOnUserGestures'], + child: props['child'], + ), + 'HeroMode': (props) => HeroMode( + key: props['key'], + child: props['child'], + enabled: props['enabled'], + ), + 'HeroFlightDirection': { + 'values': HeroFlightDirection.values, + 'push': HeroFlightDirection.push, + 'pop': HeroFlightDirection.pop, + }, + 'GlowingOverscrollIndicator': (props) => GlowingOverscrollIndicator( + key: props['key'], + showLeading: props['showLeading'], + showTrailing: props['showTrailing'], + axisDirection: props['axisDirection'], + color: props['color'], + notificationPredicate: props['notificationPredicate'], + child: props['child'], + ), + 'StretchingOverscrollIndicator': (props) => StretchingOverscrollIndicator( + key: props['key'], + axisDirection: props['axisDirection'], + notificationPredicate: props['notificationPredicate'], + child: props['child'], + ), + 'Draggable': (props) => Draggable( + key: props['key'], + child: props['child'], + feedback: props['feedback'], + data: props['data'], + axis: props['axis'], + childWhenDragging: props['childWhenDragging'], + feedbackOffset: props['feedbackOffset'], + dragAnchor: props['dragAnchor'], + dragAnchorStrategy: props['dragAnchorStrategy'], + affinity: props['affinity'], + maxSimultaneousDrags: props['maxSimultaneousDrags'], + onDragStarted: props['onDragStarted'], + onDragUpdate: props['onDragUpdate'], + onDraggableCanceled: props['onDraggableCanceled'], + onDragEnd: props['onDragEnd'], + onDragCompleted: props['onDragCompleted'], + ignoringFeedbackSemantics: props['ignoringFeedbackSemantics'], + rootOverlay: props['rootOverlay'], + hitTestBehavior: props['hitTestBehavior'], + ), + 'LongPressDraggable': (props) => LongPressDraggable( + key: props['key'], + child: props['child'], + feedback: props['feedback'], + data: props['data'], + axis: props['axis'], + childWhenDragging: props['childWhenDragging'], + feedbackOffset: props['feedbackOffset'] ?? Offset.zero, + dragAnchor: props['dragAnchor'] ?? DragAnchor.child, + dragAnchorStrategy: props['dragAnchorStrategy'], + maxSimultaneousDrags: props['maxSimultaneousDrags'], + onDragStarted: props['onDragStarted'], + onDragUpdate: props['onDragUpdate'], + onDraggableCanceled: props['onDraggableCanceled'], + onDragEnd: props['onDragEnd'], + onDragCompleted: props['onDragCompleted'], + hapticFeedbackOnStart: props['hapticFeedbackOnStart'], + ignoringFeedbackSemantics: + props['ignoringFeedbackSemantics'] ?? true, + delay: props['delay'], + ), + 'DragTarget': (props) => DragTarget( + key: props['key'], + builder: props['builder'], + onWillAccept: props['onWillAccept'], + onAccept: props['onAccept'], + onAcceptWithDetails: props['onAcceptWithDetails'], + onLeave: props['onLeave'], + onMove: props['onMove'], + hitTestBehavior: props['hitTestBehavior'], + ), + 'SharedAppData': (props) => SharedAppData( + key: props['key'], + child: props['child'], + ), + 'SharedAppData.getValue': (props) => SharedAppData.getValue( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'SharedAppData.setValue': (props) => SharedAppData.setValue( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'ScrollNotificationObserver': (props) => ScrollNotificationObserver( + key: props['key'], + child: props['child'], + ), + 'ScrollNotificationObserver.of': (props) => ScrollNotificationObserver.of( + props['pa'][0], + ), + 'ImageFiltered': (props) => ImageFiltered( + key: props['key'], + imageFilter: props['imageFilter'], + child: props['child'], + ), + 'KeyboardListener': (props) => KeyboardListener( + key: props['key'], + focusNode: props['focusNode'], + autofocus: props['autofocus'], + includeSemantics: props['includeSemantics'], + onKeyEvent: props['onKeyEvent'], + child: props['child'], + ), + 'Shortcuts': (props) => Shortcuts( + key: props['key'], + manager: props['manager'], + shortcuts: props['shortcuts'], + child: props['child'], + debugLabel: props['debugLabel'], + ), + 'Shortcuts.of': (props) => Shortcuts.of( + props['pa'][0], + ), + 'Shortcuts.maybeOf': (props) => Shortcuts.maybeOf( + props['pa'][0], + ), + 'CallbackShortcuts': (props) => CallbackShortcuts( + key: props['key'], + bindings: props['bindings'], + child: props['child'], + ), + 'PageView': (props) => PageView( + key: props['key'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + controller: props['controller'], + physics: props['physics'], + pageSnapping: props['pageSnapping'], + onPageChanged: props['onPageChanged'], + children: as(props['children']) ?? const [], + dragStartBehavior: props['dragStartBehavior'], + allowImplicitScrolling: props['allowImplicitScrolling'], + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'], + scrollBehavior: props['scrollBehavior'], + padEnds: props['padEnds'], + ), + 'PageView.builder': (props) => PageView.builder( + key: props['key'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + controller: props['controller'], + physics: props['physics'], + pageSnapping: props['pageSnapping'], + onPageChanged: props['onPageChanged'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + dragStartBehavior: props['dragStartBehavior'], + allowImplicitScrolling: props['allowImplicitScrolling'], + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'], + scrollBehavior: props['scrollBehavior'], + padEnds: props['padEnds'], + ), + 'PageView.custom': (props) => PageView.custom( + key: props['key'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + controller: props['controller'], + physics: props['physics'], + pageSnapping: props['pageSnapping'], + onPageChanged: props['onPageChanged'], + childrenDelegate: props['childrenDelegate'], + dragStartBehavior: props['dragStartBehavior'], + allowImplicitScrolling: props['allowImplicitScrolling'], + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'], + scrollBehavior: props['scrollBehavior'], + padEnds: props['padEnds'], + ), + 'NotificationListener': (props) => NotificationListener( + key: props['key'], + child: props['child'], + onNotification: props['onNotification'], + ), + 'Banner': (props) => Banner( + key: props['key'], + child: props['child'], + message: props['message'], + textDirection: props['textDirection'], + location: props['location'], + layoutDirection: props['layoutDirection'], + color: props['color'], + textStyle: props['textStyle'], + ), + 'CheckedModeBanner': (props) => CheckedModeBanner( + key: props['key'], + child: props['child'], + ), + 'BannerLocation': { + 'values': BannerLocation.values, + 'topStart': BannerLocation.topStart, + 'topEnd': BannerLocation.topEnd, + 'bottomStart': BannerLocation.bottomStart, + 'bottomEnd': BannerLocation.bottomEnd, + }, + 'AnnotatedRegion': (props) => AnnotatedRegion( + key: props['key'], + child: props['child'], + value: props['value'], + sized: props['sized'], + ), + 'Visibility': (props) => Visibility( + key: props['key'], + child: props['child'], + replacement: props['replacement'], + visible: props['visible'], + maintainState: props['maintainState'], + maintainAnimation: props['maintainAnimation'], + maintainSize: props['maintainSize'], + maintainSemantics: props['maintainSemantics'], + maintainInteractivity: props['maintainInteractivity'], + ), + 'SliverVisibility': (props) => SliverVisibility( + key: props['key'], + sliver: props['sliver'], + replacementSliver: props['replacementSliver'], + visible: props['visible'], + maintainState: props['maintainState'], + maintainAnimation: props['maintainAnimation'], + maintainSize: props['maintainSize'], + maintainSemantics: props['maintainSemantics'], + maintainInteractivity: props['maintainInteractivity'], + ), + 'DualTransitionBuilder': (props) => DualTransitionBuilder( + key: props['key'], + animation: props['animation'], + forwardBuilder: props['forwardBuilder'], + reverseBuilder: props['reverseBuilder'], + child: props['child'], + ), + 'Table': (props) => Table( + key: props['key'], + children: as(props['children']) ?? const [], + columnWidths: props['columnWidths'], + defaultColumnWidth: props['defaultColumnWidth'], + textDirection: props['textDirection'], + border: props['border'], + defaultVerticalAlignment: props['defaultVerticalAlignment'], + textBaseline: props['textBaseline'], + ), + 'TableCell': (props) => TableCell( + key: props['key'], + verticalAlignment: props['verticalAlignment'], + child: props['child'], + ), + 'SliverPrototypeExtentList': (props) => SliverPrototypeExtentList( + key: props['key'], + delegate: props['delegate'], + prototypeItem: props['prototypeItem'], + ), + 'AnimatedSwitcher': (props) => AnimatedSwitcher( + key: props['key'], + child: props['child'], + duration: props['duration'], + reverseDuration: props['reverseDuration'], + switchInCurve: props['switchInCurve'], + switchOutCurve: props['switchOutCurve'], + transitionBuilder: props['transitionBuilder'], + ), + 'AnimatedSwitcher.defaultTransitionBuilder': (props) => + AnimatedSwitcher.defaultTransitionBuilder( + props['pa'][0], + props['pa'][1], + ), + 'AnimatedSwitcher.defaultLayoutBuilder': (props) => + AnimatedSwitcher.defaultLayoutBuilder( + props['pa'][0], + props['pa'][1], + ), + 'Title': (props) => Title( + key: props['key'], + title: props['title'], + color: props['color'], + child: props['child'], + ), + 'ColorFiltered': (props) => ColorFiltered( + colorFilter: props['colorFilter'], + child: props['child'], + key: props['key'], + ), + 'FocusTraversalOrder': (props) => FocusTraversalOrder( + key: props['key'], + order: props['order'], + child: props['child'], + ), + 'FocusTraversalOrder.of': (props) => FocusTraversalOrder.of( + props['pa'][0], + ), + 'FocusTraversalOrder.maybeOf': (props) => FocusTraversalOrder.maybeOf( + props['pa'][0], + ), + 'FocusTraversalGroup': (props) => FocusTraversalGroup( + key: props['key'], + policy: props['policy'], + descendantsAreFocusable: props['descendantsAreFocusable'], + child: props['child'], + ), + 'FocusTraversalGroup.of': (props) => FocusTraversalGroup.of( + props['pa'][0], + ), + 'FocusTraversalGroup.maybeOf': (props) => FocusTraversalGroup.maybeOf( + props['pa'][0], + ), + 'TraversalDirection': { + 'values': TraversalDirection.values, + 'up': TraversalDirection.up, + 'right': TraversalDirection.right, + 'down': TraversalDirection.down, + 'left': TraversalDirection.left, + }, + 'KeyEventResult': { + 'values': KeyEventResult.values, + 'handled': KeyEventResult.handled, + 'ignored': KeyEventResult.ignored, + 'skipRemainingHandlers': KeyEventResult.skipRemainingHandlers, + }, + 'UnfocusDisposition': { + 'values': UnfocusDisposition.values, + 'scope': UnfocusDisposition.scope, + 'previouslyFocusedChild': UnfocusDisposition.previouslyFocusedChild, + }, + 'FocusHighlightMode': { + 'values': FocusHighlightMode.values, + 'touch': FocusHighlightMode.touch, + 'traditional': FocusHighlightMode.traditional, + }, + 'FocusHighlightStrategy': { + 'values': FocusHighlightStrategy.values, + 'automatic': FocusHighlightStrategy.automatic, + 'alwaysTouch': FocusHighlightStrategy.alwaysTouch, + 'alwaysTraditional': FocusHighlightStrategy.alwaysTraditional, + }, + 'OrientationBuilder': (props) => OrientationBuilder( + key: props['key'], + builder: props['builder'], + ), + 'InteractiveViewer': (props) => InteractiveViewer( + key: props['key'], + clipBehavior: props['clipBehavior'], + alignPanAxis: props['alignPanAxis'], + boundaryMargin: props['boundaryMargin'], + constrained: props['constrained'], + maxScale: props['maxScale']?.toDouble(), + minScale: props['minScale']?.toDouble(), + onInteractionEnd: props['onInteractionEnd'], + onInteractionStart: props['onInteractionStart'], + onInteractionUpdate: props['onInteractionUpdate'], + panEnabled: props['panEnabled'], + scaleEnabled: props['scaleEnabled'], + transformationController: props['transformationController'], + child: props['child'], + ), + 'InteractiveViewer.builder': (props) => InteractiveViewer.builder( + key: props['key'], + clipBehavior: props['clipBehavior'], + alignPanAxis: props['alignPanAxis'], + boundaryMargin: props['boundaryMargin'], + maxScale: props['maxScale']?.toDouble(), + minScale: props['minScale']?.toDouble(), + onInteractionEnd: props['onInteractionEnd'], + onInteractionStart: props['onInteractionStart'], + onInteractionUpdate: props['onInteractionUpdate'], + panEnabled: props['panEnabled'], + scaleEnabled: props['scaleEnabled'], + transformationController: props['transformationController'], + builder: props['builder'], + ), + 'Scrollable': (props) => Scrollable( + key: props['key'], + axisDirection: props['axisDirection'], + controller: props['controller'], + physics: props['physics'], + viewportBuilder: props['viewportBuilder'], + incrementCalculator: props['incrementCalculator'], + excludeFromSemantics: props['excludeFromSemantics'], + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: props['dragStartBehavior'], + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + ), + 'Scrollable.of': (props) => Scrollable.of( + props['pa'][0], + ), + 'Scrollable.recommendDeferredLoadingForContext': (props) => + Scrollable.recommendDeferredLoadingForContext( + props['pa'][0], + ), + 'Scrollable.ensureVisible': (props) => Scrollable.ensureVisible( + props['pa'][0], + alignment: props['alignment']?.toDouble() ?? 0.0, + duration: props['duration'] ?? Duration.zero, + curve: props['curve'] ?? Curves.ease, + alignmentPolicy: props['alignmentPolicy'] ?? + ScrollPositionAlignmentPolicy.explicit, + ), + 'ScrollIncrementType': { + 'values': ScrollIncrementType.values, + 'line': ScrollIncrementType.line, + 'page': ScrollIncrementType.page, + }, + 'ScrollPositionAlignmentPolicy': { + 'values': ScrollPositionAlignmentPolicy.values, + 'explicit': ScrollPositionAlignmentPolicy.explicit, + 'keepVisibleAtEnd': ScrollPositionAlignmentPolicy.keepVisibleAtEnd, + 'keepVisibleAtStart': ScrollPositionAlignmentPolicy.keepVisibleAtStart, + }, + 'PrimaryScrollController': (props) => PrimaryScrollController( + key: props['key'], + controller: props['controller'], + child: props['child'], + ), + 'PrimaryScrollController.none': (props) => PrimaryScrollController.none( + key: props['key'], + child: props['child'], + ), + 'PrimaryScrollController.of': (props) => PrimaryScrollController.of( + props['pa'][0], + ), + 'LayoutBuilder': (props) => LayoutBuilder( + key: props['key'], + builder: props['builder'], + ), + 'Icon': (props) => Icon( + props['pa'][0], + key: props['key'], + size: props['size']?.toDouble(), + color: props['color'], + semanticLabel: props['semanticLabel'], + textDirection: props['textDirection'], + ), + 'Placeholder': (props) => Placeholder( + key: props['key'], + color: props['color'], + strokeWidth: props['strokeWidth']?.toDouble(), + fallbackWidth: props['fallbackWidth']?.toDouble(), + fallbackHeight: props['fallbackHeight']?.toDouble(), + ), + 'EditableText': (props) => EditableText( + key: props['key'], + controller: props['controller'], + focusNode: props['focusNode'], + readOnly: props['readOnly'], + obscuringCharacter: props['obscuringCharacter'], + obscureText: props['obscureText'], + autocorrect: props['autocorrect'], + smartDashesType: props['smartDashesType'], + smartQuotesType: props['smartQuotesType'], + enableSuggestions: props['enableSuggestions'], + style: props['style'], + strutStyle: props['strutStyle'], + cursorColor: props['cursorColor'], + backgroundCursorColor: props['backgroundCursorColor'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + locale: props['locale'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + minLines: props['minLines'], + expands: props['expands'], + forceLine: props['forceLine'], + textHeightBehavior: props['textHeightBehavior'], + textWidthBasis: props['textWidthBasis'], + autofocus: props['autofocus'], + showCursor: props['showCursor'], + showSelectionHandles: props['showSelectionHandles'], + selectionColor: props['selectionColor'], + selectionControls: props['selectionControls'], + keyboardType: props['keyboardType'], + textInputAction: props['textInputAction'], + textCapitalization: props['textCapitalization'], + onChanged: props['onChanged'], + onEditingComplete: props['onEditingComplete'], + onSubmitted: props['onSubmitted'], + onAppPrivateCommand: props['onAppPrivateCommand'], + onSelectionChanged: props['onSelectionChanged'], + onSelectionHandleTapped: props['onSelectionHandleTapped'], + inputFormatters: as(props['inputFormatters']), + mouseCursor: props['mouseCursor'], + rendererIgnoresPointer: props['rendererIgnoresPointer'], + cursorWidth: props['cursorWidth']?.toDouble(), + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'], + cursorOpacityAnimates: props['cursorOpacityAnimates'], + cursorOffset: props['cursorOffset'], + paintCursorAboveText: props['paintCursorAboveText'], + selectionHeightStyle: props['selectionHeightStyle'], + selectionWidthStyle: props['selectionWidthStyle'], + scrollPadding: props['scrollPadding'], + keyboardAppearance: props['keyboardAppearance'], + dragStartBehavior: props['dragStartBehavior'], + enableInteractiveSelection: props['enableInteractiveSelection'], + scrollController: props['scrollController'], + scrollPhysics: props['scrollPhysics'], + autocorrectionTextRectColor: props['autocorrectionTextRectColor'], + toolbarOptions: props['toolbarOptions'], + autofillHints: props['autofillHints'], + autofillClient: props['autofillClient'], + clipBehavior: props['clipBehavior'], + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + enableIMEPersonalizedLearning: + props['enableIMEPersonalizedLearning'], + ), + 'DecoratedBox': (props) => DecoratedBox( + key: props['key'], + decoration: props['decoration'], + position: props['position'], + child: props['child'], + ), + 'Container': (props) => Container( + key: props['key'], + alignment: props['alignment'], + padding: props['padding'], + color: props['color'], + decoration: props['decoration'], + foregroundDecoration: props['foregroundDecoration'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + constraints: props['constraints'], + margin: props['margin'], + transform: props['transform'], + transformAlignment: props['transformAlignment'], + child: props['child'], + clipBehavior: props['clipBehavior'], + ), + 'DraggableScrollableSheet': (props) => DraggableScrollableSheet( + key: props['key'], + initialChildSize: props['initialChildSize']?.toDouble(), + minChildSize: props['minChildSize']?.toDouble(), + maxChildSize: props['maxChildSize']?.toDouble(), + expand: props['expand'], + snap: props['snap'], + snapSizes: as(props['snapSizes']), + builder: props['builder'], + ), + 'DraggableScrollableActuator': (props) => DraggableScrollableActuator( + key: props['key'], + child: props['child'], + ), + 'DraggableScrollableActuator.reset': (props) => + DraggableScrollableActuator.reset( + props['pa'][0], + ), + 'MediaQuery': (props) => MediaQuery( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'MediaQuery.removePadding': (props) => MediaQuery.removePadding( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.removeViewInsets': (props) => MediaQuery.removeViewInsets( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.removeViewPadding': (props) => MediaQuery.removeViewPadding( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.fromWindow': (props) => MediaQuery.fromWindow( + key: props['key'], + child: props['child'], + ), + 'MediaQuery.of': (props) => MediaQuery.of( + props['pa'][0], + ), + 'MediaQuery.maybeOf': (props) => MediaQuery.maybeOf( + props['pa'][0], + ), + 'MediaQuery.textScaleFactorOf': (props) => MediaQuery.textScaleFactorOf( + props['pa'][0], + ), + 'MediaQuery.platformBrightnessOf': (props) => + MediaQuery.platformBrightnessOf( + props['pa'][0], + ), + 'MediaQuery.highContrastOf': (props) => MediaQuery.highContrastOf( + props['pa'][0], + ), + 'MediaQuery.boldTextOverride': (props) => MediaQuery.boldTextOverride( + props['pa'][0], + ), + 'Orientation': { + 'values': Orientation.values, + 'portrait': Orientation.portrait, + 'landscape': Orientation.landscape, + }, + 'NavigationMode': { + 'values': NavigationMode.values, + 'traditional': NavigationMode.traditional, + 'directional': NavigationMode.directional, + }, + 'AnimatedCrossFade': (props) => AnimatedCrossFade( + key: props['key'], + firstChild: props['firstChild'], + secondChild: props['secondChild'], + firstCurve: props['firstCurve'], + secondCurve: props['secondCurve'], + sizeCurve: props['sizeCurve'], + alignment: props['alignment'], + crossFadeState: props['crossFadeState'], + duration: props['duration'], + reverseDuration: props['reverseDuration'], + ), + 'AnimatedCrossFade.defaultLayoutBuilder': (props) => + AnimatedCrossFade.defaultLayoutBuilder( + props['pa'][0], + props['pa'][1], + props['pa'][2], + props['pa'][3], + ), + 'CrossFadeState': { + 'values': CrossFadeState.values, + 'showFirst': CrossFadeState.showFirst, + 'showSecond': CrossFadeState.showSecond, + }, + 'GridPaper': (props) => GridPaper( + key: props['key'], + color: props['color'], + interval: props['interval']?.toDouble(), + divisions: props['divisions'], + subdivisions: props['subdivisions'], + child: props['child'], + ), + 'TweenAnimationBuilder': (props) => TweenAnimationBuilder( + key: props['key'], + tween: props['tween'], + duration: props['duration'], + curve: props['curve'] ?? Curves.linear, + builder: props['builder'], + onEnd: props['onEnd'], + child: props['child'], + ), + 'DefaultTextEditingShortcuts': (props) => DefaultTextEditingShortcuts( + key: props['key'], + child: props['child'], + ), + 'SlideTransition': (props) => SlideTransition( + key: props['key'], + position: props['position'], + transformHitTests: props['transformHitTests'], + textDirection: props['textDirection'], + child: props['child'], + ), + 'ScaleTransition': (props) => ScaleTransition( + key: props['key'], + scale: props['scale'], + alignment: props['alignment'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'RotationTransition': (props) => RotationTransition( + key: props['key'], + turns: props['turns'], + alignment: props['alignment'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'SizeTransition': (props) => SizeTransition( + key: props['key'], + axis: props['axis'], + sizeFactor: props['sizeFactor'], + axisAlignment: props['axisAlignment']?.toDouble(), + child: props['child'], + ), + 'FadeTransition': (props) => FadeTransition( + key: props['key'], + opacity: props['opacity'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + child: props['child'], + ), + 'SliverFadeTransition': (props) => SliverFadeTransition( + key: props['key'], + opacity: props['opacity'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + sliver: props['sliver'], + ), + 'PositionedTransition': (props) => PositionedTransition( + key: props['key'], + rect: props['rect'], + child: props['child'], + ), + 'RelativePositionedTransition': (props) => RelativePositionedTransition( + key: props['key'], + rect: props['rect'], + size: props['size'], + child: props['child'], + ), + 'DecoratedBoxTransition': (props) => DecoratedBoxTransition( + key: props['key'], + decoration: props['decoration'], + position: props['position'], + child: props['child'], + ), + 'AlignTransition': (props) => AlignTransition( + key: props['key'], + alignment: props['alignment'], + child: props['child'], + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), + ), + 'DefaultTextStyleTransition': (props) => DefaultTextStyleTransition( + key: props['key'], + style: props['style'], + child: props['child'], + textAlign: props['textAlign'], + softWrap: props['softWrap'], + overflow: props['overflow'], + maxLines: props['maxLines'], + ), + 'AnimatedBuilder': (props) => AnimatedBuilder( + key: props['key'], + animation: props['animation'], + builder: props['builder'], + child: props['child'], + ), + 'SliverPersistentHeader': (props) => SliverPersistentHeader( + key: props['key'], + delegate: props['delegate'], + pinned: props['pinned'], + floating: props['floating'], + ), + 'PageStorage': (props) => PageStorage( + key: props['key'], + bucket: props['bucket'], + child: props['child'], + ), + 'PageStorage.of': (props) => PageStorage.of( + props['pa'][0], + ), + 'Router': (props) => Router( + key: props['key'], + routeInformationProvider: props['routeInformationProvider'], + routeInformationParser: props['routeInformationParser'], + routerDelegate: props['routerDelegate'], + backButtonDispatcher: props['backButtonDispatcher'], + restorationScopeId: props['restorationScopeId'], + ), + 'Router.of': (props) => Router.of( + props['pa'][0], + ), + 'Router.maybeOf': (props) => Router.maybeOf( + props['pa'][0], + ), + 'Router.navigate': (props) => Router.navigate( + props['pa'][0], + props['pa'][1], + ), + 'Router.neglect': (props) => Router.neglect( + props['pa'][0], + props['pa'][1], + ), + 'BackButtonListener': (props) => BackButtonListener( + key: props['key'], + child: props['child'], + onBackButtonPressed: props['onBackButtonPressed'], + ), + 'RouteInformationReportingType': { + 'values': RouteInformationReportingType.values, + 'none': RouteInformationReportingType.none, + 'neglect': RouteInformationReportingType.neglect, + 'navigate': RouteInformationReportingType.navigate, + }, + 'FocusTrap': (props) => FocusTrap( + focusScopeNode: props['focusScopeNode'], + child: props['child'], + key: props['key'], + ), + 'FocusTrapArea': (props) => FocusTrapArea( + focusNode: props['focusNode'], + key: props['key'], + child: props['child'], + ), + 'Directionality': (props) => Directionality( + key: props['key'], + textDirection: props['textDirection'], + child: props['child'], + ), + 'Directionality.of': (props) => Directionality.of( + props['pa'][0], + ), + 'Directionality.maybeOf': (props) => Directionality.maybeOf( + props['pa'][0], + ), + 'Opacity': (props) => Opacity( + key: props['key'], + opacity: props['opacity']?.toDouble(), + alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + child: props['child'], + ), + 'ShaderMask': (props) => ShaderMask( + key: props['key'], + shaderCallback: props['shaderCallback'], + blendMode: props['blendMode'], + child: props['child'], + ), + 'BackdropFilter': (props) => BackdropFilter( + key: props['key'], + filter: props['filter'], + child: props['child'], + blendMode: props['blendMode'], + ), + 'CustomPaint': (props) => CustomPaint( + key: props['key'], + painter: props['painter'], + foregroundPainter: props['foregroundPainter'], + size: props['size'], + isComplex: props['isComplex'], + willChange: props['willChange'], + child: props['child'], + ), + 'ClipRect': (props) => ClipRect( + key: props['key'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'], + child: props['child'], + ), + 'ClipRRect': (props) => ClipRRect( + key: props['key'], + borderRadius: props['borderRadius'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'], + child: props['child'], + ), + 'ClipOval': (props) => ClipOval( + key: props['key'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'], + child: props['child'], + ), + 'ClipPath': (props) => ClipPath( + key: props['key'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'], + child: props['child'], + ), + 'ClipPath.shape': (props) => ClipPath.shape( + key: props['key'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, + child: props['child'], + ), + 'PhysicalModel': (props) => PhysicalModel( + key: props['key'], + shape: props['shape'], + clipBehavior: props['clipBehavior'], + borderRadius: props['borderRadius'], + elevation: props['elevation']?.toDouble(), + color: props['color'], + shadowColor: props['shadowColor'], + child: props['child'], + ), + 'PhysicalShape': (props) => PhysicalShape( + key: props['key'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'], + elevation: props['elevation']?.toDouble(), + color: props['color'], + shadowColor: props['shadowColor'], + child: props['child'], + ), + 'Transform': (props) => Transform( + key: props['key'], + transform: props['transform'], + origin: props['origin'], + alignment: props['alignment'], + transformHitTests: props['transformHitTests'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'Transform.rotate': (props) => Transform.rotate( + key: props['key'], + angle: props['angle']?.toDouble(), + origin: props['origin'], + alignment: props['alignment'], + transformHitTests: props['transformHitTests'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'Transform.translate': (props) => Transform.translate( + key: props['key'], + offset: props['offset'], + transformHitTests: props['transformHitTests'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'Transform.scale': (props) => Transform.scale( + key: props['key'], + scale: props['scale']?.toDouble(), + origin: props['origin'], + alignment: props['alignment'], + transformHitTests: props['transformHitTests'], + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'CompositedTransformTarget': (props) => CompositedTransformTarget( + key: props['key'], + link: props['link'], + child: props['child'], + ), + 'CompositedTransformFollower': (props) => CompositedTransformFollower( + key: props['key'], + link: props['link'], + showWhenUnlinked: props['showWhenUnlinked'], + offset: props['offset'], + targetAnchor: props['targetAnchor'], + followerAnchor: props['followerAnchor'], + child: props['child'], + ), + 'FittedBox': (props) => FittedBox( + key: props['key'], + fit: props['fit'], + alignment: props['alignment'], + clipBehavior: props['clipBehavior'], + child: props['child'], + ), + 'FractionalTranslation': (props) => FractionalTranslation( + key: props['key'], + translation: props['translation'], + transformHitTests: props['transformHitTests'], + child: props['child'], + ), + 'RotatedBox': (props) => RotatedBox( + key: props['key'], + quarterTurns: props['quarterTurns'], + child: props['child'], + ), + 'Padding': (props) => Padding( + key: props['key'], + padding: props['padding'], + child: props['child'], + ), + 'Align': (props) => Align( + key: props['key'], + alignment: props['alignment'], + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), + child: props['child'], + ), + 'Center': (props) => Center( + key: props['key'], + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), + child: props['child'], + ), + 'CustomSingleChildLayout': (props) => CustomSingleChildLayout( + key: props['key'], + delegate: props['delegate'], + child: props['child'], + ), + 'LayoutId': (props) => LayoutId( + key: props['key'], + id: props['id'], + child: props['child'], + ), + 'CustomMultiChildLayout': (props) => CustomMultiChildLayout( + key: props['key'], + delegate: props['delegate'], + children: as(props['children']) ?? const [], + ), + 'SizedBox': (props) => SizedBox( + key: props['key'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'SizedBox.expand': (props) => SizedBox.expand( + key: props['key'], + child: props['child'], + ), + 'SizedBox.shrink': (props) => SizedBox.shrink( + key: props['key'], + child: props['child'], + ), + 'SizedBox.fromSize': (props) => SizedBox.fromSize( + key: props['key'], + child: props['child'], + size: props['size'], + ), + 'SizedBox.square': (props) => SizedBox.square( + key: props['key'], + child: props['child'], + dimension: props['dimension']?.toDouble(), + ), + 'ConstrainedBox': (props) => ConstrainedBox( + key: props['key'], + constraints: props['constraints'], + child: props['child'], + ), + 'ConstraintsTransformBox': (props) => ConstraintsTransformBox( + key: props['key'], + child: props['child'], + textDirection: props['textDirection'], + alignment: props['alignment'], + constraintsTransform: props['constraintsTransform'], + clipBehavior: props['clipBehavior'], + debugTransformType: props['debugTransformType'] ?? '', + ), + 'ConstraintsTransformBox.unmodified': (props) => + ConstraintsTransformBox.unmodified( + props['pa'][0], + ), + 'ConstraintsTransformBox.unconstrained': (props) => + ConstraintsTransformBox.unconstrained( + props['pa'][0], + ), + 'ConstraintsTransformBox.widthUnconstrained': (props) => + ConstraintsTransformBox.widthUnconstrained( + props['pa'][0], + ), + 'ConstraintsTransformBox.heightUnconstrained': (props) => + ConstraintsTransformBox.heightUnconstrained( + props['pa'][0], + ), + 'ConstraintsTransformBox.maxHeightUnconstrained': (props) => + ConstraintsTransformBox.maxHeightUnconstrained( + props['pa'][0], + ), + 'ConstraintsTransformBox.maxWidthUnconstrained': (props) => + ConstraintsTransformBox.maxWidthUnconstrained( + props['pa'][0], + ), + 'ConstraintsTransformBox.maxUnconstrained': (props) => + ConstraintsTransformBox.maxUnconstrained( + props['pa'][0], + ), + 'UnconstrainedBox': (props) => UnconstrainedBox( + key: props['key'], + child: props['child'], + textDirection: props['textDirection'], + alignment: props['alignment'], + constrainedAxis: props['constrainedAxis'], + clipBehavior: props['clipBehavior'], + ), + 'FractionallySizedBox': (props) => FractionallySizedBox( + key: props['key'], + alignment: props['alignment'], + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), + child: props['child'], + ), + 'LimitedBox': (props) => LimitedBox( + key: props['key'], + maxWidth: props['maxWidth']?.toDouble(), + maxHeight: props['maxHeight']?.toDouble(), + child: props['child'], + ), + 'OverflowBox': (props) => OverflowBox( + key: props['key'], + alignment: props['alignment'], + minWidth: props['minWidth']?.toDouble(), + maxWidth: props['maxWidth']?.toDouble(), + minHeight: props['minHeight']?.toDouble(), + maxHeight: props['maxHeight']?.toDouble(), + child: props['child'], + ), + 'SizedOverflowBox': (props) => SizedOverflowBox( + key: props['key'], + size: props['size'], + alignment: props['alignment'], + child: props['child'], + ), + 'Offstage': (props) => Offstage( + key: props['key'], + offstage: props['offstage'], + child: props['child'], + ), + 'AspectRatio': (props) => AspectRatio( + key: props['key'], + aspectRatio: props['aspectRatio']?.toDouble(), + child: props['child'], + ), + 'IntrinsicWidth': (props) => IntrinsicWidth( + key: props['key'], + stepWidth: props['stepWidth']?.toDouble(), + stepHeight: props['stepHeight']?.toDouble(), + child: props['child'], + ), + 'IntrinsicHeight': (props) => IntrinsicHeight( + key: props['key'], + child: props['child'], + ), + 'Baseline': (props) => Baseline( + key: props['key'], + baseline: props['baseline']?.toDouble(), + baselineType: props['baselineType'], + child: props['child'], + ), + 'SliverToBoxAdapter': (props) => SliverToBoxAdapter( + key: props['key'], + child: props['child'], + ), + 'SliverPadding': (props) => SliverPadding( + key: props['key'], + padding: props['padding'], + sliver: props['sliver'], + ), + 'ListBody': (props) => ListBody( + key: props['key'], + mainAxis: props['mainAxis'], + reverse: props['reverse'], + children: as(props['children']) ?? const [], + ), + 'Stack': (props) => Stack( + key: props['key'], + alignment: props['alignment'], + textDirection: props['textDirection'], + fit: props['fit'], + overflow: props['overflow'], + clipBehavior: props['clipBehavior'], + children: as(props['children']) ?? const [], + ), + 'IndexedStack': (props) => IndexedStack( + key: props['key'], + alignment: props['alignment'] ?? AlignmentDirectional.topStart, + textDirection: props['textDirection'], + sizing: props['sizing'] ?? StackFit.loose, + index: props['index'], + children: as(props['children']) ?? const [], + ), + 'Positioned': (props) => Positioned( + key: props['key'], + left: props['left']?.toDouble(), + top: props['top']?.toDouble(), + right: props['right']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'Positioned.fromRect': (props) => Positioned.fromRect( + key: props['key'], + rect: props['rect'], + child: props['child'], + ), + 'Positioned.fromRelativeRect': (props) => Positioned.fromRelativeRect( + key: props['key'], + rect: props['rect'], + child: props['child'], + ), + 'Positioned.fill': (props) => Positioned.fill( + key: props['key'], + left: props['left']?.toDouble(), + top: props['top']?.toDouble(), + right: props['right']?.toDouble(), + bottom: props['bottom']?.toDouble(), + child: props['child'], + ), + 'Positioned.directional': (props) => Positioned.directional( + key: props['key'], + textDirection: props['textDirection'], + start: props['start']?.toDouble(), + top: props['top']?.toDouble(), + end: props['end']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'PositionedDirectional': (props) => PositionedDirectional( + key: props['key'], + start: props['start']?.toDouble(), + top: props['top']?.toDouble(), + end: props['end']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'Flex': (props) => Flex( + key: props['key'], + direction: props['direction'], + mainAxisAlignment: props['mainAxisAlignment'], + mainAxisSize: props['mainAxisSize'], + crossAxisAlignment: props['crossAxisAlignment'], + textDirection: props['textDirection'], + verticalDirection: props['verticalDirection'], + textBaseline: props['textBaseline'], + clipBehavior: props['clipBehavior'], + children: as(props['children']) ?? const [], + ), + 'Row': (props) => Row( + key: props['key'], + mainAxisAlignment: + props['mainAxisAlignment'] ?? MainAxisAlignment.start, + mainAxisSize: props['mainAxisSize'] ?? MainAxisSize.max, + crossAxisAlignment: + props['crossAxisAlignment'] ?? CrossAxisAlignment.center, + textDirection: props['textDirection'], + verticalDirection: + props['verticalDirection'] ?? VerticalDirection.down, + textBaseline: props['textBaseline'], + children: as(props['children']) ?? const [], + ), + 'Column': (props) => Column( + key: props['key'], + mainAxisAlignment: + props['mainAxisAlignment'] ?? MainAxisAlignment.start, + mainAxisSize: props['mainAxisSize'] ?? MainAxisSize.max, + crossAxisAlignment: + props['crossAxisAlignment'] ?? CrossAxisAlignment.center, + textDirection: props['textDirection'], + verticalDirection: + props['verticalDirection'] ?? VerticalDirection.down, + textBaseline: props['textBaseline'], + children: as(props['children']) ?? const [], + ), + 'Flexible': (props) => Flexible( + key: props['key'], + flex: props['flex'], + fit: props['fit'], + child: props['child'], + ), + 'Expanded': (props) => Expanded( + key: props['key'], + flex: props['flex'] ?? 1, + child: props['child'], + ), + 'Wrap': (props) => Wrap( + key: props['key'], + direction: props['direction'], + alignment: props['alignment'], + spacing: props['spacing']?.toDouble(), + runAlignment: props['runAlignment'], + runSpacing: props['runSpacing']?.toDouble(), + crossAxisAlignment: props['crossAxisAlignment'], + textDirection: props['textDirection'], + verticalDirection: props['verticalDirection'], + clipBehavior: props['clipBehavior'], + children: as(props['children']) ?? const [], + ), + 'Flow': (props) => Flow( + key: props['key'], + delegate: props['delegate'], + children: as(props['children']) ?? const [], + clipBehavior: props['clipBehavior'], + ), + 'Flow.unwrapped': (props) => Flow.unwrapped( + key: props['key'], + delegate: props['delegate'], + children: as(props['children']) ?? const [], + clipBehavior: props['clipBehavior'], + ), + 'RichText': (props) => RichText( + key: props['key'], + text: props['text'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + softWrap: props['softWrap'], + overflow: props['overflow'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + locale: props['locale'], + strutStyle: props['strutStyle'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + ), + 'RawImage': (props) => RawImage( + key: props['key'], + image: props['image'], + debugImageLabel: props['debugImageLabel'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + scale: props['scale']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + invertColors: props['invertColors'], + filterQuality: props['filterQuality'], + isAntiAlias: props['isAntiAlias'], + ), + 'DefaultAssetBundle': (props) => DefaultAssetBundle( + key: props['key'], + bundle: props['bundle'], + child: props['child'], + ), + 'DefaultAssetBundle.of': (props) => DefaultAssetBundle.of( + props['pa'][0], + ), + 'WidgetToRenderBoxAdapter': (props) => WidgetToRenderBoxAdapter( + renderBox: props['renderBox'], + onBuild: props['onBuild'], + onUnmount: props['onUnmount'], + ), + 'Listener': (props) => Listener( + key: props['key'], + onPointerDown: props['onPointerDown'], + onPointerMove: props['onPointerMove'], + onPointerUp: props['onPointerUp'], + onPointerHover: props['onPointerHover'], + onPointerCancel: props['onPointerCancel'], + onPointerSignal: props['onPointerSignal'], + behavior: props['behavior'], + child: props['child'], + ), + 'MouseRegion': (props) => MouseRegion( + key: props['key'], + onEnter: props['onEnter'], + onExit: props['onExit'], + onHover: props['onHover'], + cursor: props['cursor'], + opaque: props['opaque'], + child: props['child'], + ), + 'RepaintBoundary': (props) => RepaintBoundary( + key: props['key'], + child: props['child'], + ), + 'RepaintBoundary.wrap': (props) => RepaintBoundary.wrap( + props['pa'][0], + props['pa'][1], + ), + 'RepaintBoundary.wrapAll': (props) => RepaintBoundary.wrapAll( + props['pa'][0], + ), + 'IgnorePointer': (props) => IgnorePointer( + key: props['key'], + ignoring: props['ignoring'], + ignoringSemantics: props['ignoringSemantics'], + child: props['child'], + ), + 'AbsorbPointer': (props) => AbsorbPointer( + key: props['key'], + absorbing: props['absorbing'], + child: props['child'], + ignoringSemantics: props['ignoringSemantics'], + ), + 'MetaData': (props) => MetaData( + key: props['key'], + metaData: props['metaData'], + behavior: props['behavior'], + child: props['child'], + ), + 'Semantics': (props) => Semantics( + key: props['key'], + child: props['child'], + container: props['container'] ?? false, + explicitChildNodes: props['explicitChildNodes'] ?? false, + excludeSemantics: props['excludeSemantics'] ?? false, + enabled: props['enabled'], + checked: props['checked'], + selected: props['selected'], + toggled: props['toggled'], + button: props['button'], + slider: props['slider'], + keyboardKey: props['keyboardKey'], + link: props['link'], + header: props['header'], + textField: props['textField'], + readOnly: props['readOnly'], + focusable: props['focusable'], + focused: props['focused'], + inMutuallyExclusiveGroup: props['inMutuallyExclusiveGroup'], + obscured: props['obscured'], + multiline: props['multiline'], + scopesRoute: props['scopesRoute'], + namesRoute: props['namesRoute'], + hidden: props['hidden'], + image: props['image'], + liveRegion: props['liveRegion'], + maxValueLength: props['maxValueLength'], + currentValueLength: props['currentValueLength'], + label: props['label'], + attributedLabel: props['attributedLabel'], + value: props['value'], + attributedValue: props['attributedValue'], + increasedValue: props['increasedValue'], + attributedIncreasedValue: props['attributedIncreasedValue'], + decreasedValue: props['decreasedValue'], + attributedDecreasedValue: props['attributedDecreasedValue'], + hint: props['hint'], + attributedHint: props['attributedHint'], + onTapHint: props['onTapHint'], + onLongPressHint: props['onLongPressHint'], + textDirection: props['textDirection'], + sortKey: props['sortKey'], + tagForChildren: props['tagForChildren'], + onTap: props['onTap'], + onLongPress: props['onLongPress'], + onScrollLeft: props['onScrollLeft'], + onScrollRight: props['onScrollRight'], + onScrollUp: props['onScrollUp'], + onScrollDown: props['onScrollDown'], + onIncrease: props['onIncrease'], + onDecrease: props['onDecrease'], + onCopy: props['onCopy'], + onCut: props['onCut'], + onPaste: props['onPaste'], + onDismiss: props['onDismiss'], + onMoveCursorForwardByCharacter: + props['onMoveCursorForwardByCharacter'], + onMoveCursorBackwardByCharacter: + props['onMoveCursorBackwardByCharacter'], + onSetSelection: props['onSetSelection'], + onSetText: props['onSetText'], + onDidGainAccessibilityFocus: props['onDidGainAccessibilityFocus'], + onDidLoseAccessibilityFocus: props['onDidLoseAccessibilityFocus'], + customSemanticsActions: props['customSemanticsActions'], + ), + 'Semantics.fromProperties': (props) => Semantics.fromProperties( + key: props['key'], + child: props['child'], + container: props['container'] ?? false, + explicitChildNodes: props['explicitChildNodes'] ?? false, + excludeSemantics: props['excludeSemantics'] ?? false, + properties: props['properties'], + ), + 'MergeSemantics': (props) => MergeSemantics( + key: props['key'], + child: props['child'], + ), + 'BlockSemantics': (props) => BlockSemantics( + key: props['key'], + blocking: props['blocking'], + child: props['child'], + ), + 'ExcludeSemantics': (props) => ExcludeSemantics( + key: props['key'], + excluding: props['excluding'], + child: props['child'], + ), + 'IndexedSemantics': (props) => IndexedSemantics( + key: props['key'], + index: props['index'], + child: props['child'], + ), + 'KeyedSubtree': (props) => KeyedSubtree( + key: props['key'], + child: props['child'], + ), + 'KeyedSubtree.wrap': (props) => KeyedSubtree.wrap( + props['pa'][0], + props['pa'][1], + ), + 'KeyedSubtree.ensureUniqueKeysForList': (props) => + KeyedSubtree.ensureUniqueKeysForList( + props['pa'][0], + baseIndex: props['baseIndex'] ?? 0, + ), + 'Builder': (props) => Builder( + key: props['key'], + builder: props['builder'], + ), + 'StatefulBuilder': (props) => StatefulBuilder( + key: props['key'], + builder: props['builder'], + ), + 'ColoredBox': (props) => ColoredBox( + color: props['color'], + child: props['child'], + key: props['key'], + ), + 'GestureDetector': (props) => GestureDetector( + key: props['key'], + child: props['child'], + onTapDown: props['onTapDown'], + onTapUp: props['onTapUp'], + onTap: props['onTap'], + onTapCancel: props['onTapCancel'], + onSecondaryTap: props['onSecondaryTap'], + onSecondaryTapDown: props['onSecondaryTapDown'], + onSecondaryTapUp: props['onSecondaryTapUp'], + onSecondaryTapCancel: props['onSecondaryTapCancel'], + onTertiaryTapDown: props['onTertiaryTapDown'], + onTertiaryTapUp: props['onTertiaryTapUp'], + onTertiaryTapCancel: props['onTertiaryTapCancel'], + onDoubleTapDown: props['onDoubleTapDown'], + onDoubleTap: props['onDoubleTap'], + onDoubleTapCancel: props['onDoubleTapCancel'], + onLongPressDown: props['onLongPressDown'], + onLongPressCancel: props['onLongPressCancel'], + onLongPress: props['onLongPress'], + onLongPressStart: props['onLongPressStart'], + onLongPressMoveUpdate: props['onLongPressMoveUpdate'], + onLongPressUp: props['onLongPressUp'], + onLongPressEnd: props['onLongPressEnd'], + onSecondaryLongPressDown: props['onSecondaryLongPressDown'], + onSecondaryLongPressCancel: props['onSecondaryLongPressCancel'], + onSecondaryLongPress: props['onSecondaryLongPress'], + onSecondaryLongPressStart: props['onSecondaryLongPressStart'], + onSecondaryLongPressMoveUpdate: + props['onSecondaryLongPressMoveUpdate'], + onSecondaryLongPressUp: props['onSecondaryLongPressUp'], + onSecondaryLongPressEnd: props['onSecondaryLongPressEnd'], + onTertiaryLongPressDown: props['onTertiaryLongPressDown'], + onTertiaryLongPressCancel: props['onTertiaryLongPressCancel'], + onTertiaryLongPress: props['onTertiaryLongPress'], + onTertiaryLongPressStart: props['onTertiaryLongPressStart'], + onTertiaryLongPressMoveUpdate: + props['onTertiaryLongPressMoveUpdate'], + onTertiaryLongPressUp: props['onTertiaryLongPressUp'], + onTertiaryLongPressEnd: props['onTertiaryLongPressEnd'], + onVerticalDragDown: props['onVerticalDragDown'], + onVerticalDragStart: props['onVerticalDragStart'], + onVerticalDragUpdate: props['onVerticalDragUpdate'], + onVerticalDragEnd: props['onVerticalDragEnd'], + onVerticalDragCancel: props['onVerticalDragCancel'], + onHorizontalDragDown: props['onHorizontalDragDown'], + onHorizontalDragStart: props['onHorizontalDragStart'], + onHorizontalDragUpdate: props['onHorizontalDragUpdate'], + onHorizontalDragEnd: props['onHorizontalDragEnd'], + onHorizontalDragCancel: props['onHorizontalDragCancel'], + onForcePressStart: props['onForcePressStart'], + onForcePressPeak: props['onForcePressPeak'], + onForcePressUpdate: props['onForcePressUpdate'], + onForcePressEnd: props['onForcePressEnd'], + onPanDown: props['onPanDown'], + onPanStart: props['onPanStart'], + onPanUpdate: props['onPanUpdate'], + onPanEnd: props['onPanEnd'], + onPanCancel: props['onPanCancel'], + onScaleStart: props['onScaleStart'], + onScaleUpdate: props['onScaleUpdate'], + onScaleEnd: props['onScaleEnd'], + behavior: props['behavior'], + excludeFromSemantics: props['excludeFromSemantics'], + dragStartBehavior: props['dragStartBehavior'], + ), + 'RawGestureDetector': (props) => RawGestureDetector( + key: props['key'], + child: props['child'], + gestures: props['gestures'], + behavior: props['behavior'], + excludeFromSemantics: props['excludeFromSemantics'], + semantics: props['semantics'], + ), + 'ValueListenableBuilder': (props) => ValueListenableBuilder( + key: props['key'], + valueListenable: props['valueListenable'], + builder: props['builder'], + child: props['child'], + ), + 'PreferredSize': (props) => PreferredSize( + key: props['key'], + child: props['child'], + preferredSize: props['preferredSize'], + ), + 'HeroControllerScope': (props) => HeroControllerScope( + key: props['key'], + controller: props['controller'], + child: props['child'], + ), + 'HeroControllerScope.none': (props) => HeroControllerScope.none( + key: props['key'], + child: props['child'], + ), + 'HeroControllerScope.of': (props) => HeroControllerScope.of( + props['pa'][0], + ), + 'Navigator': (props) => Navigator( + key: props['key'], + pages: as(props['pages']) ?? const >[], + onPopPage: props['onPopPage'], + initialRoute: props['initialRoute'], + onGenerateInitialRoutes: props['onGenerateInitialRoutes'], + onGenerateRoute: props['onGenerateRoute'], + onUnknownRoute: props['onUnknownRoute'], + transitionDelegate: props['transitionDelegate'], + reportsRouteUpdateToEngine: props['reportsRouteUpdateToEngine'], + observers: as(props['observers']) ?? + const [], + requestFocus: props['requestFocus'], + restorationScopeId: props['restorationScopeId'], + ), + 'Navigator.defaultRouteName': Navigator.defaultRouteName, + 'Navigator.pushNamed': (props) => Navigator.pushNamed( + props['pa'][0], + props['pa'][1], + arguments: props['arguments'], + ), + 'Navigator.restorablePushNamed': (props) => Navigator.restorablePushNamed( + props['pa'][0], + props['pa'][1], + arguments: props['arguments'], + ), + 'Navigator.pushReplacementNamed': (props) => + Navigator.pushReplacementNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.restorablePushReplacementNamed': (props) => + Navigator.restorablePushReplacementNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.popAndPushNamed': (props) => Navigator.popAndPushNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.restorablePopAndPushNamed': (props) => + Navigator.restorablePopAndPushNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.pushNamedAndRemoveUntil': (props) => + Navigator.pushNamedAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.restorablePushNamedAndRemoveUntil': (props) => + Navigator.restorablePushNamedAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.push': (props) => Navigator.push( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.restorablePush': (props) => Navigator.restorablePush( + props['pa'][0], + props['pa'][1], + arguments: props['arguments'], + ), + 'Navigator.pushReplacement': (props) => Navigator.pushReplacement( + props['pa'][0], + props['pa'][1], + result: props['result'], + ), + 'Navigator.restorablePushReplacement': (props) => + Navigator.restorablePushReplacement( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.pushAndRemoveUntil': (props) => Navigator.pushAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'Navigator.restorablePushAndRemoveUntil': (props) => + Navigator.restorablePushAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.replace': (props) => Navigator.replace( + props['pa'][0], + oldRoute: props['oldRoute'], + newRoute: props['newRoute'], + ), + 'Navigator.restorableReplace': (props) => Navigator.restorableReplace( + props['pa'][0], + oldRoute: props['oldRoute'], + newRouteBuilder: props['newRouteBuilder'], + arguments: props['arguments'], + ), + 'Navigator.replaceRouteBelow': (props) => Navigator.replaceRouteBelow( + props['pa'][0], + anchorRoute: props['anchorRoute'], + newRoute: props['newRoute'], + ), + 'Navigator.restorableReplaceRouteBelow': (props) => + Navigator.restorableReplaceRouteBelow( + props['pa'][0], + anchorRoute: props['anchorRoute'], + newRouteBuilder: props['newRouteBuilder'], + arguments: props['arguments'], + ), + 'Navigator.canPop': (props) => Navigator.canPop( + props['pa'][0], + ), + 'Navigator.maybePop': (props) => Navigator.maybePop( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.pop': (props) => Navigator.pop( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.popUntil': (props) => Navigator.popUntil( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.removeRoute': (props) => Navigator.removeRoute( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.removeRouteBelow': (props) => Navigator.removeRouteBelow( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.of': (props) => Navigator.of( + props['pa'][0], + rootNavigator: props['rootNavigator'] ?? false, + ), + 'Navigator.maybeOf': (props) => Navigator.maybeOf( + props['pa'][0], + rootNavigator: props['rootNavigator'] ?? false, + ), + 'Navigator.defaultGenerateInitialRoutes': (props) => + Navigator.defaultGenerateInitialRoutes( + props['pa'][0], + props['pa'][1], + ), + 'RoutePopDisposition': { + 'values': RoutePopDisposition.values, + 'pop': RoutePopDisposition.pop, + 'doNotPop': RoutePopDisposition.doNotPop, + 'bubble': RoutePopDisposition.bubble, + }, + 'SliverLayoutBuilder': (props) => SliverLayoutBuilder( + key: props['key'], + builder: props['builder'], + ), + 'ReorderableList': (props) => ReorderableList( + key: props['key'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + padding: props['padding'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'], + anchor: props['anchor']?.toDouble(), + cacheExtent: props['cacheExtent']?.toDouble(), + dragStartBehavior: props['dragStartBehavior'], + keyboardDismissBehavior: props['keyboardDismissBehavior'], + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'], + ), + 'ReorderableList.of': (props) => ReorderableList.of( + props['pa'][0], + ), + 'ReorderableList.maybeOf': (props) => ReorderableList.maybeOf( + props['pa'][0], + ), + 'SliverReorderableList': (props) => SliverReorderableList( + key: props['key'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + ), + 'SliverReorderableList.of': (props) => SliverReorderableList.of( + props['pa'][0], + ), + 'SliverReorderableList.maybeOf': (props) => SliverReorderableList.maybeOf( + props['pa'][0], + ), + 'ReorderableDragStartListener': (props) => ReorderableDragStartListener( + key: props['key'], + child: props['child'], + index: props['index'], + enabled: props['enabled'], + ), + 'ReorderableDelayedDragStartListener': (props) => + ReorderableDelayedDragStartListener( + key: props['key'], + child: props['child'], + index: props['index'], + enabled: props['enabled'] ?? true, + ), + 'DefaultTextEditingActions': (props) => DefaultTextEditingActions( + key: props['key'], + child: props['child'], + ), + 'NavigationToolbar': (props) => NavigationToolbar( + key: props['key'], + leading: props['leading'], + middle: props['middle'], + trailing: props['trailing'], + centerMiddle: props['centerMiddle'], + middleSpacing: props['middleSpacing']?.toDouble(), + ), + 'NavigationToolbar.kMiddleSpacing': NavigationToolbar.kMiddleSpacing, + 'NestedScrollView': (props) => NestedScrollView( + key: props['key'], + controller: props['controller'], + scrollDirection: props['scrollDirection'], + reverse: props['reverse'], + physics: props['physics'], + headerSliverBuilder: props['headerSliverBuilder'], + body: props['body'], + dragStartBehavior: props['dragStartBehavior'], + floatHeaderSlivers: props['floatHeaderSlivers'], + clipBehavior: props['clipBehavior'], + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + ), + 'NestedScrollView.sliverOverlapAbsorberHandleFor': (props) => + NestedScrollView.sliverOverlapAbsorberHandleFor( + props['pa'][0], + ), + 'SliverOverlapAbsorber': (props) => SliverOverlapAbsorber( + key: props['key'], + handle: props['handle'], + sliver: props['sliver'], + ), + 'SliverOverlapInjector': (props) => SliverOverlapInjector( + key: props['key'], + handle: props['handle'], + sliver: props['sliver'], + ), + 'NestedScrollViewViewport': (props) => NestedScrollViewViewport( + key: props['key'], + axisDirection: props['axisDirection'] ?? AxisDirection.down, + crossAxisDirection: props['crossAxisDirection'], + anchor: props['anchor']?.toDouble() ?? 0.0, + offset: props['offset'], + center: props['center'], + slivers: as(props['slivers']) ?? const [], + handle: props['handle'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'Texture': (props) => Texture( + key: props['key'], + textureId: props['textureId'], + freeze: props['freeze'], + filterQuality: props['filterQuality'], + ), + 'IconThemeData.lerp': (props) => IconThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Image': (props) => Image( + key: props['key'], + image: props['image'], + frameBuilder: props['frameBuilder'], + loadingBuilder: props['loadingBuilder'], + errorBuilder: props['errorBuilder'], + semanticLabel: props['semanticLabel'], + excludeFromSemantics: props['excludeFromSemantics'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + gaplessPlayback: props['gaplessPlayback'], + isAntiAlias: props['isAntiAlias'], + filterQuality: props['filterQuality'], + ), + 'Image.network': (props) => Image.network( + props['pa'][0], + key: props['key'], + scale: props['scale']?.toDouble() ?? 1.0, + frameBuilder: props['frameBuilder'], + loadingBuilder: props['loadingBuilder'], + errorBuilder: props['errorBuilder'], + semanticLabel: props['semanticLabel'], + excludeFromSemantics: props['excludeFromSemantics'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + gaplessPlayback: props['gaplessPlayback'], + filterQuality: props['filterQuality'], + isAntiAlias: props['isAntiAlias'], + headers: props['headers'], + cacheWidth: props['cacheWidth'], + cacheHeight: props['cacheHeight'], + ), + 'Image.file': (props) => Image.file( + props['pa'][0], + key: props['key'], + scale: props['scale']?.toDouble() ?? 1.0, + frameBuilder: props['frameBuilder'], + errorBuilder: props['errorBuilder'], + semanticLabel: props['semanticLabel'], + excludeFromSemantics: props['excludeFromSemantics'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + gaplessPlayback: props['gaplessPlayback'], + isAntiAlias: props['isAntiAlias'], + filterQuality: props['filterQuality'], + cacheWidth: props['cacheWidth'], + cacheHeight: props['cacheHeight'], + ), + 'Image.asset': (props) => Image.asset( + props['pa'][0], + key: props['key'], + bundle: props['bundle'], + frameBuilder: props['frameBuilder'], + errorBuilder: props['errorBuilder'], + semanticLabel: props['semanticLabel'], + excludeFromSemantics: props['excludeFromSemantics'], + scale: props['scale']?.toDouble() ?? 1.0, + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + gaplessPlayback: props['gaplessPlayback'], + isAntiAlias: props['isAntiAlias'], + package: props['package'], + filterQuality: props['filterQuality'], + cacheWidth: props['cacheWidth'], + cacheHeight: props['cacheHeight'], + ), + 'Image.memory': (props) => Image.memory( + props['pa'][0], + key: props['key'], + scale: props['scale']?.toDouble() ?? 1.0, + frameBuilder: props['frameBuilder'], + errorBuilder: props['errorBuilder'], + semanticLabel: props['semanticLabel'], + excludeFromSemantics: props['excludeFromSemantics'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + color: props['color'], + opacity: props['opacity'], + colorBlendMode: props['colorBlendMode'], + fit: props['fit'], + alignment: props['alignment'], + repeat: props['repeat'], + centerSlice: props['centerSlice'], + matchTextDirection: props['matchTextDirection'], + gaplessPlayback: props['gaplessPlayback'], + isAntiAlias: props['isAntiAlias'], + filterQuality: props['filterQuality'], + cacheWidth: props['cacheWidth'], + cacheHeight: props['cacheHeight'], + ), + 'Form': (props) => Form( + key: props['key'], + child: props['child'], + onWillPop: props['onWillPop'], + onChanged: props['onChanged'], + autovalidateMode: props['autovalidateMode'], + ), + 'Form.of': (props) => Form.of( + props['pa'][0], + ), + 'FormField': (props) => FormField( + key: props['key'], + builder: props['builder'], + onSaved: props['onSaved'], + validator: props['validator'], + initialValue: props['initialValue'], + enabled: props['enabled'], + autovalidateMode: props['autovalidateMode'], + restorationId: props['restorationId'], + ), + 'AutovalidateMode': { + 'values': AutovalidateMode.values, + 'disabled': AutovalidateMode.disabled, + 'always': AutovalidateMode.always, + 'onUserInteraction': AutovalidateMode.onUserInteraction, + }, + 'ActionListener': (props) => ActionListener( + key: props['key'], + listener: props['listener'], + action: props['action'], + child: props['child'], + ), + 'Actions': (props) => Actions( + key: props['key'], + dispatcher: props['dispatcher'], + actions: props['actions'], + child: props['child'], + ), + 'Actions.handler': (props) => Actions.handler( + props['pa'][0], + props['pa'][1] as T, + ), + 'Actions.find': (props) => Actions.find( + props['pa'][0], + intent: props['intent'] as T, + ), + 'Actions.maybeFind': (props) => Actions.maybeFind( + props['pa'][0], + intent: props['intent'] as T, + ), + 'Actions.of': (props) => Actions.of( + props['pa'][0], + ), + 'Actions.invoke': (props) => Actions.invoke( + props['pa'][0], + props['pa'][1] as T, + ), + 'Actions.maybeInvoke': (props) => Actions.maybeInvoke( + props['pa'][0], + props['pa'][1] as T, + ), + 'FocusableActionDetector': (props) => FocusableActionDetector( + key: props['key'], + enabled: props['enabled'], + focusNode: props['focusNode'], + autofocus: props['autofocus'], + descendantsAreFocusable: props['descendantsAreFocusable'], + shortcuts: props['shortcuts'], + actions: props['actions'], + onShowFocusHighlight: props['onShowFocusHighlight'], + onShowHoverHighlight: props['onShowHoverHighlight'], + onFocusChange: props['onFocusChange'], + mouseCursor: props['mouseCursor'], + child: props['child'], + ), + 'StreamBuilder': (props) => StreamBuilder( + key: props['key'], + initialData: props['initialData'], + stream: props['stream'], + builder: props['builder'], + ), + 'FutureBuilder': (props) => FutureBuilder( + key: props['key'], + future: props['future'], + initialData: props['initialData'], + builder: props['builder'], + ), + 'ConnectionState': { + 'values': ConnectionState.values, + 'none': ConnectionState.none, + 'waiting': ConnectionState.waiting, + 'active': ConnectionState.active, + 'done': ConnectionState.done, + }, + 'DefaultTextStyle': (props) => DefaultTextStyle( + key: props['key'], + style: props['style'], + textAlign: props['textAlign'], + softWrap: props['softWrap'], + overflow: props['overflow'], + maxLines: props['maxLines'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + child: props['child'], + ), + 'DefaultTextStyle.fallback': (props) => DefaultTextStyle.fallback( + key: props['key'], + ), + 'DefaultTextStyle.merge': (props) => DefaultTextStyle.merge( + key: props['key'], + style: props['style'], + textAlign: props['textAlign'], + softWrap: props['softWrap'], + overflow: props['overflow'], + maxLines: props['maxLines'], + textWidthBasis: props['textWidthBasis'], + child: props['child'], + ), + 'DefaultTextStyle.of': (props) => DefaultTextStyle.of( + props['pa'][0], + ), + 'DefaultTextHeightBehavior': (props) => DefaultTextHeightBehavior( + key: props['key'], + textHeightBehavior: props['textHeightBehavior'], + child: props['child'], + ), + 'DefaultTextHeightBehavior.of': (props) => DefaultTextHeightBehavior.of( + props['pa'][0], + ), + 'Text': (props) => Text( + props['pa'][0], + key: props['key'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + locale: props['locale'], + softWrap: props['softWrap'], + overflow: props['overflow'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + semanticsLabel: props['semanticsLabel'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + ), + 'Text.rich': (props) => Text.rich( + props['pa'][0], + key: props['key'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + locale: props['locale'], + softWrap: props['softWrap'], + overflow: props['overflow'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + semanticsLabel: props['semanticsLabel'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + ), + 'ImageIcon': (props) => ImageIcon( + props['pa'][0], + key: props['key'], + size: props['size']?.toDouble(), + color: props['color'], + semanticLabel: props['semanticLabel'], + ), + }; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/all.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/all.dart new file mode 100644 index 00000000..0df029fb --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/all.dart @@ -0,0 +1,19 @@ + // This file is generated by Fair, do not edit manually! + // Updated on 2022-04-20 20:07:28.059102 + + import '\$\$c.dart' as $0; +import '\$\$w.dart' as $1; +import '\$\$p.dart' as $2; +import '\$\$m.dart' as $3; +import '\$\$r.dart' as $4; +import '\$\$a.dart' as $5; + mixin $BindingImpl { + final provider = [ + +$0.p, +$1.p, +$2.p, +$3.p, +$4.p, +$5.p, +];} diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/module.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/module.dart new file mode 100644 index 00000000..9057119a --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/module.dart @@ -0,0 +1,11 @@ +/* + * Copyright (C) 2005-present, 58.com. All rights reserved. + * Use of this source code is governed by a BSD type license that can be + * found in the LICENSE file. + */ + +abstract class GeneratedModule { + Map components(); + + Map mapping(); +} diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/utils.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/utils.dart new file mode 100644 index 00000000..82e3ae70 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/utils.dart @@ -0,0 +1,16 @@ +/* + * Copyright (C) 2005-present, 58.com. All rights reserved. + * Use of this source code is governed by a BSD type license that can be + * found in the LICENSE file. + */ + +List? as(List? children) { + if (children == null) { + return null; + } + + if (children.isEmpty) { + return []; + } + return children.map((e) => e as T).toList(); +} diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart new file mode 100644 index 00000000..3d711ba6 --- /dev/null +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart @@ -0,0 +1,490 @@ + // This file is generated by Fair, do not edit manually! + // Updated on 2022-04-20 20:07:28.056617 + + const fairVersion = '0.0.1'; + const flutterVersion = '2.8.0'; + const dartVersion = '2.15.0'; + const widgetCount = 234; + const apiCount = 245; + const widgetNames = { + +'SingleChildScrollView': true, +'AnimatedContainer': true, +'AnimatedPadding': true, +'AnimatedAlign': true, +'AnimatedPositioned': true, +'AnimatedPositionedDirectional': true, +'AnimatedScale': true, +'AnimatedRotation': true, +'AnimatedSlide': true, +'AnimatedOpacity': true, +'SliverAnimatedOpacity': true, +'AnimatedDefaultTextStyle': true, +'AnimatedPhysicalModel': true, +'AnimatedCrossFade': true, +'CrossFadeState': false, +'GridPaper': true, +'TweenAnimationBuilder': true, +'DefaultTextEditingShortcuts': true, +'SlideTransition': true, +'ScaleTransition': true, +'RotationTransition': true, +'SizeTransition': true, +'FadeTransition': true, +'SliverFadeTransition': true, +'PositionedTransition': true, +'RelativePositionedTransition': true, +'DecoratedBoxTransition': true, +'AlignTransition': true, +'DefaultTextStyleTransition': true, +'AnimatedBuilder': true, +'SliverPersistentHeader': true, +'PageStorage': true, +'Router': true, +'BackButtonListener': true, +'RouteInformationReportingType': false, +'FocusTrap': true, +'FocusTrapArea': true, +'Directionality': true, +'Opacity': true, +'ShaderMask': true, +'BackdropFilter': true, +'CustomPaint': true, +'ClipRect': true, +'ClipRRect': true, +'ClipOval': true, +'ClipPath': true, +'PhysicalModel': true, +'PhysicalShape': true, +'Transform': true, +'CompositedTransformTarget': true, +'CompositedTransformFollower': true, +'FittedBox': true, +'FractionalTranslation': true, +'RotatedBox': true, +'Padding': true, +'Align': true, +'Center': true, +'CustomSingleChildLayout': true, +'LayoutId': true, +'CustomMultiChildLayout': true, +'SizedBox': true, +'ConstrainedBox': true, +'ConstraintsTransformBox': true, +'UnconstrainedBox': true, +'FractionallySizedBox': true, +'LimitedBox': true, +'OverflowBox': true, +'SizedOverflowBox': true, +'Offstage': true, +'AspectRatio': true, +'IntrinsicWidth': true, +'IntrinsicHeight': true, +'Baseline': true, +'SliverToBoxAdapter': true, +'SliverPadding': true, +'ListBody': true, +'Stack': true, +'IndexedStack': true, +'Positioned': true, +'PositionedDirectional': true, +'Flex': true, +'Row': true, +'Column': true, +'Flexible': true, +'Expanded': true, +'Wrap': true, +'Flow': true, +'RichText': true, +'RawImage': true, +'DefaultAssetBundle': true, +'WidgetToRenderBoxAdapter': true, +'Listener': true, +'MouseRegion': true, +'RepaintBoundary': true, +'IgnorePointer': true, +'AbsorbPointer': true, +'MetaData': true, +'Semantics': true, +'MergeSemantics': true, +'BlockSemantics': true, +'ExcludeSemantics': true, +'IndexedSemantics': true, +'KeyedSubtree': true, +'Builder': true, +'StatefulBuilder': true, +'ColoredBox': true, +'GestureDetector': true, +'RawGestureDetector': true, +'StreamBuilder': true, +'FutureBuilder': true, +'ConnectionState': false, +'DefaultTextStyle': true, +'DefaultTextHeightBehavior': true, +'Text': true, +'ActionListener': true, +'Actions': true, +'FocusableActionDetector': true, +'Form': true, +'FormField': true, +'AutovalidateMode': false, +'Image': true, +'IconThemeData': false, +'Texture': true, +'NestedScrollView': true, +'SliverOverlapAbsorber': true, +'SliverOverlapInjector': true, +'NestedScrollViewViewport': true, +'NavigationToolbar': true, +'DefaultTextEditingActions': true, +'ReorderableList': true, +'SliverReorderableList': true, +'ReorderableDragStartListener': true, +'ReorderableDelayedDragStartListener': true, +'SliverLayoutBuilder': true, +'HeroControllerScope': true, +'Navigator': true, +'RoutePopDisposition': false, +'PreferredSize': true, +'ValueListenableBuilder': true, +'MediaQuery': true, +'Orientation': false, +'NavigationMode': false, +'DraggableScrollableSheet': true, +'DraggableScrollableActuator': true, +'DecoratedBox': true, +'Container': true, +'EditableText': true, +'Placeholder': true, +'Icon': true, +'LayoutBuilder': true, +'PrimaryScrollController': true, +'ScrollPositionAlignmentPolicy': false, +'ImageIcon': true, +'Scrollable': true, +'ScrollIncrementType': false, +'OrientationBuilder': true, +'KeyEventResult': false, +'UnfocusDisposition': false, +'FocusHighlightMode': false, +'FocusHighlightStrategy': false, +'FocusTraversalOrder': true, +'FocusTraversalGroup': true, +'TraversalDirection': false, +'ColorFiltered': true, +'Title': true, +'AnimatedSwitcher': true, +'SliverPrototypeExtentList': true, +'Table': true, +'TableCell': true, +'DualTransitionBuilder': true, +'Visibility': true, +'SliverVisibility': true, +'AnnotatedRegion': true, +'Banner': true, +'CheckedModeBanner': true, +'BannerLocation': false, +'NotificationListener': true, +'PageView': true, +'Shortcuts': true, +'CallbackShortcuts': true, +'KeyboardListener': true, +'ImageFiltered': true, +'ScrollNotificationObserver': true, +'SharedAppData': true, +'Draggable': true, +'LongPressDraggable': true, +'DragTarget': true, +'GlowingOverscrollIndicator': true, +'StretchingOverscrollIndicator': true, +'Hero': true, +'HeroMode': true, +'HeroFlightDirection': false, +'SizeChangedLayoutNotifier': true, +'Viewport': true, +'ShrinkWrappingViewport': true, +'AutomaticKeepAlive': true, +'ErrorWidget': true, +'ScrollConfiguration': true, +'AndroidOverscrollIndicator': false, +'IconTheme': true, +'SemanticsDebugger': true, +'TextSelectionOverlay': false, +'TextSelectionGestureDetector': true, +'TextSelectionHandleType': false, +'ClipboardStatus': false, +'TickerMode': true, +'RestorationScope': true, +'UnmanagedRestorationScope': true, +'RootRestorationScope': true, +'AnimatedList': true, +'SliverAnimatedList': true, +'OverflowBar': true, +'OverflowBarAlignment': false, +'FadeInImage': true, +'Focus': true, +'FocusScope': true, +'ExcludeFocus': true, +'ModalBarrier': true, +'AnimatedModalBarrier': true, +'InteractiveViewer': true, +'AutofillGroup': true, +'AutofillContextAction': false, +'ScrollDragController': false, +'ListWheelScrollView': true, +'ListWheelViewport': true, +'SliverList': true, +'SliverFixedExtentList': true, +'SliverGrid': true, +'SliverOpacity': true, +'SliverIgnorePointer': true, +'SliverOffstage': true, +'KeepAlive': true, +'Dismissible': true, +'DismissDirection': false, +'WillPopScope': true, +'SafeArea': true, +'SliverSafeArea': true, +'RawScrollbar': true, +'ScrollbarOrientation': false, +'AndroidView': true, +'UiKitView': true, +'HtmlElementView': true, +'PlatformViewLink': true, +'PlatformViewSurface': true, +'AndroidViewSurface': true, +'WidgetsApp': true, +'RawAutocomplete': true, +'AutocompleteHighlightedOption': true, +'Overlay': true, +'BouncingScrollSimulation': false, +'RawKeyboardListener': true, +'Spacer': true, +'CustomScrollView': true, +'ListView': true, +'GridView': true, +'ScrollViewKeyboardDismissBehavior': false, +'DefaultWidgetsLocalizations': false, +'Localizations': true, +'SliverFillViewport': true, +'SliverFillRemaining': true, +'AnimatedSize': true, +'RenderObjectToWidgetAdapter': true, +'WidgetsFlutterBinding': false, +'BorderSide': false, +'BorderStyle': false, +'Border': false, +'BorderDirectional': false, +'BoxShape': false, +'ImageConfiguration': false, +'ResizeImage': false, +'BoxShadow': false, +'NetworkImage': false, +'BorderRadius': false, +'BorderRadiusDirectional': false, +'HSVColor': false, +'HSLColor': false, +'TextStyle': false, +'LinearGradient': false, +'RadialGradient': false, +'SweepGradient': false, +'Alignment': false, +'AlignmentDirectional': false, +'TextAlignVertical': false, +'FlutterLogoDecoration': false, +'FlutterLogoStyle': false, +'RenderComparison': false, +'Axis': false, +'VerticalDirection': false, +'AxisDirection': false, +'BoxDecoration': false, +'InlineSpanSemanticsInformation': false, +'FractionalOffset': false, +'BoxFit': false, +'MatrixUtils': false, +'PlaceholderDimensions': false, +'TextOverflow': false, +'TextWidthBasis': false, +'ShapeDecoration': false, +'EdgeInsets': false, +'EdgeInsetsDirectional': false, +'DecorationImage': false, +'ImageRepeat': false, +'StrutStyle': false, +'TextButtonThemeData': false, +'TextButtonTheme': false, +'ProgressIndicatorThemeData': false, +'ProgressIndicatorTheme': false, +'Material': false, +'MaterialType': false, +'TextTheme': false, +'InkRipple': false, +'ElevatedButtonThemeData': false, +'ElevatedButtonTheme': false, +'MaterialBannerThemeData': false, +'MaterialBannerTheme': false, +'ScaffoldMessenger': false, +'Scaffold': false, +'Feedback': false, +'SwitchThemeData': false, +'SwitchTheme': false, +'ToggleButtonsThemeData': false, +'ToggleButtonsTheme': false, +'TextSelectionToolbarTextButton': false, +'TextField': false, +'DrawerThemeData': false, +'DrawerTheme': false, +'NavigationDestinationLabelBehavior': false, +'NavigationRailThemeData': false, +'NavigationRailTheme': false, +'TimePickerThemeData': false, +'TimePickerTheme': false, +'TextSelectionThemeData': false, +'TextSelectionTheme': false, +'RefreshIndicatorTriggerMode': false, +'BottomAppBarTheme': false, +'TabBarTheme': false, +'OutlinedButtonThemeData': false, +'OutlinedButtonTheme': false, +'ElevationOverlay': false, +'AppBarTheme': false, +'Colors': false, +'SnackBar': false, +'SnackBarClosedReason': false, +'InputDecorator': false, +'FloatingLabelBehavior': false, +'ColorScheme': false, +'TimeOfDay': false, +'DayPeriod': false, +'TimeOfDayFormat': false, +'HourFormat': false, +'PopupMenuThemeData': false, +'PopupMenuTheme': false, +'DataCell': false, +'DefaultTabController': false, +'NavigationRail': false, +'NavigationRailLabelType': false, +'TooltipThemeData': false, +'TooltipTheme': false, +'TooltipTriggerMode': false, +'TextButton': false, +'Checkbox': false, +'TimePickerEntryMode': false, +'StepState': false, +'StepperType': false, +'RadioThemeData': false, +'RadioTheme': false, +'TabBarIndicatorSize': false, +'BottomNavigationBarThemeData': false, +'BottomNavigationBarTheme': false, +'TooltipVisibility': false, +'CheckboxThemeData': false, +'CheckboxTheme': false, +'ScrollbarThemeData': false, +'ScrollbarTheme': false, +'AppBar': false, +'MaterialBanner': false, +'MaterialBannerClosedReason': false, +'DialogTheme': false, +'PaginatedDataTable': false, +'MaterialState': false, +'FloatingActionButtonThemeData': false, +'CardTheme': false, +'BottomSheetThemeData': false, +'Tooltip': false, +'ElevatedButton': false, +'DropdownButtonHideUnderline': false, +'NoSplash': false, +'ButtonTheme': false, +'ButtonTextTheme': false, +'ButtonBarLayoutBehavior': false, +'RefreshProgressIndicator': false, +'ListTileThemeData': false, +'ListTileTheme': false, +'ListTile': false, +'ListTileStyle': false, +'ListTileControlAffinity': false, +'BottomSheet': false, +'DividerThemeData': false, +'DividerTheme': false, +'DataTableThemeData': false, +'DataTableTheme': false, +'DefaultMaterialLocalizations': false, +'Typography': false, +'ScriptCategory': false, +'OutlinedButton': false, +'Divider': false, +'SliderTheme': false, +'SliderThemeData': false, +'ShowValueIndicator': false, +'Thumb': false, +'ChipTheme': false, +'ChipThemeData': false, +'DrawerAlignment': false, +'DateUtils': false, +'DatePickerEntryMode': false, +'DatePickerMode': false, +'SnackBarThemeData': false, +'SnackBarBehavior': false, +'ThemeData': false, +'VisualDensity': false, +'MaterialTapTargetSize': false, +'FlexibleSpaceBar': false, +'CollapseMode': false, +'StretchMode': false, +'NavigationBarThemeData': false, +'NavigationBarTheme': false, +'ButtonStyle': false, +'BottomNavigationBarType': false, +'BottomNavigationBarLandscapeLayout': false, +'MaterialApp': false, +'ThemeMode': false, +'Icons': false, +'InkSplash': false, +'ButtonBarThemeData': false, +'ButtonBarTheme': false, +'Theme': false, +'OverlayVisibilityMode': false, +'CupertinoColors': false, +'CupertinoDynamicColor': false, +'CupertinoDatePickerMode': false, +'CupertinoTimerPickerMode': false, +'CupertinoSliverRefreshControl': false, +'RefreshIndicatorMode': false, +'CupertinoThumbPainter': false, +'CupertinoUserInterfaceLevel': true, +'CupertinoUserInterfaceLevelData': false, +'CupertinoScrollbar': false, +'CupertinoApp': false, +'CupertinoIcons': false, +'CupertinoTheme': false, +'DefaultCupertinoLocalizations': false, +'DatePickerDateTimeOrder': false, +'DatePickerDateOrder': false, +'WrapAlignment': false, +'WrapCrossAlignment': false, +'TableBorder': false, +'HitTestBehavior': false, +'DecorationPosition': false, +'ScrollDirection': false, +'PaintingContext': false, +'FlexFit': false, +'MainAxisSize': false, +'MainAxisAlignment': false, +'CrossAxisAlignment': false, +'TableCellVerticalAlignment': false, +'ChildLayoutHelper': false, +'RenderViewport': false, +'CacheExtentStyle': false, +'SliverGeometry': false, +'GrowthDirection': false, +'RelativeRect': false, +'RenderStack': false, +'StackFit': false, +'PlatformViewHitTestBehavior': false, +'BoxConstraints': false, +'AnimationBehavior': false, +'AnimationStatus': false, +'CatmullRomCurve': false, +'Curves': false, +}; diff --git a/flutter_version/flutter_2_8_0/pubspec.yaml b/flutter_version/flutter_2_8_0/pubspec.yaml new file mode 100644 index 00000000..da64c167 --- /dev/null +++ b/flutter_version/flutter_2_8_0/pubspec.yaml @@ -0,0 +1,55 @@ +name: fair_version +description: Fair binding for Flutter v2.5.0 +version: 0.2.0 +homepage: https://fair.58.com/ + +environment: + sdk: ">=2.12.0 <3.0.0" + + +dependencies: + flutter: + sdk: flutter + ffi: ^1.1.2 + +dev_dependencies: + flutter_test: + sdk: flutter + pedantic: ^1.11.1 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + +# To add assets to your package, add an assets section, like this: +# assets: +# - images/a_dot_burr.jpeg +# - images/a_dot_ham.jpeg +# +# For details regarding assets in packages, see +# https://flutter.dev/assets-and-images/#from-packages +# +# An image asset can refer to one or more resolution-specific "variants", see +# https://flutter.dev/assets-and-images/#resolution-aware. + +# To add custom fonts to your package, add a fonts section here, +# in this "flutter" section. Each entry in this list should have a +# "family" key with the font family name, and a "fonts" key with a +# list giving the asset and other descriptors for the font. For +# example: +# fonts: +# - family: Schyler +# fonts: +# - asset: fonts/Schyler-Regular.ttf +# - asset: fonts/Schyler-Italic.ttf +# style: italic +# - family: Trajan Pro +# fonts: +# - asset: fonts/TrajanPro.ttf +# - asset: fonts/TrajanPro_Bold.ttf +# weight: 700 +# +# For details regarding fonts in packages, see +# https://flutter.dev/custom-fonts/#from-packages From e193d2259ff539cb7106ba440b5e1d990da49186 Mon Sep 17 00:00:00 2001 From: qixu01 Date: Thu, 19 May 2022 09:45:21 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E9=80=82=E9=85=8Dflutter2.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flutter_2_8_0/lib/src/widgets/$$a.dart | 203 +- .../flutter_2_8_0/lib/src/widgets/$$c.dart | 3648 +-- .../flutter_2_8_0/lib/src/widgets/$$m.dart | 18588 +++++++++------- .../flutter_2_8_0/lib/src/widgets/$$p.dart | 862 +- .../flutter_2_8_0/lib/src/widgets/$$r.dart | 296 +- .../flutter_2_8_0/lib/src/widgets/$$w.dart | 4510 ++-- .../lib/src/widgets/version.dart | 1068 +- flutter_version/flutter_2_8_0/pubspec.yaml | 2 +- 8 files changed, 16205 insertions(+), 12972 deletions(-) diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart index e7c7449f..45f69f71 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$a.dart @@ -1,70 +1,143 @@ // This file is generated by Fair, do not edit manually! import 'package:flutter/material.dart'; - -import '../../fair_version.dart'; +import 'utils.dart'; var p = () => { - 'AnimationStatus': { - 'values': AnimationStatus.values, - 'dismissed': AnimationStatus.dismissed, - 'forward': AnimationStatus.forward, - 'reverse': AnimationStatus.reverse, - 'completed': AnimationStatus.completed, - }, - 'CatmullRomCurve.validateControlPoints': (props) => - CatmullRomCurve.validateControlPoints( - props['pa'][0], - tension: props['tension']?.toDouble() ?? 0.0, - reasons: as(props['reasons']), - ), - 'Curves': { - 'linear': Curves.linear, - 'decelerate': Curves.decelerate, - 'fastLinearToSlowEaseIn': Curves.fastLinearToSlowEaseIn, - 'ease': Curves.ease, - 'easeIn': Curves.easeIn, - 'easeInToLinear': Curves.easeInToLinear, - 'easeInSine': Curves.easeInSine, - 'easeInQuad': Curves.easeInQuad, - 'easeInCubic': Curves.easeInCubic, - 'easeInQuart': Curves.easeInQuart, - 'easeInQuint': Curves.easeInQuint, - 'easeInExpo': Curves.easeInExpo, - 'easeInCirc': Curves.easeInCirc, - 'easeInBack': Curves.easeInBack, - 'easeOut': Curves.easeOut, - 'linearToEaseOut': Curves.linearToEaseOut, - 'easeOutSine': Curves.easeOutSine, - 'easeOutQuad': Curves.easeOutQuad, - 'easeOutCubic': Curves.easeOutCubic, - 'easeOutQuart': Curves.easeOutQuart, - 'easeOutQuint': Curves.easeOutQuint, - 'easeOutExpo': Curves.easeOutExpo, - 'easeOutCirc': Curves.easeOutCirc, - 'easeOutBack': Curves.easeOutBack, - 'easeInOut': Curves.easeInOut, - 'easeInOutSine': Curves.easeInOutSine, - 'easeInOutQuad': Curves.easeInOutQuad, - 'easeInOutCubic': Curves.easeInOutCubic, - 'easeInOutCubicEmphasized': Curves.easeInOutCubicEmphasized, - 'easeInOutQuart': Curves.easeInOutQuart, - 'easeInOutQuint': Curves.easeInOutQuint, - 'easeInOutExpo': Curves.easeInOutExpo, - 'easeInOutCirc': Curves.easeInOutCirc, - 'easeInOutBack': Curves.easeInOutBack, - 'fastOutSlowIn': Curves.fastOutSlowIn, - 'slowMiddle': Curves.slowMiddle, - 'bounceIn': Curves.bounceIn, - 'bounceOut': Curves.bounceOut, - 'bounceInOut': Curves.bounceInOut, - 'elasticIn': Curves.elasticIn, - 'elasticOut': Curves.elasticOut, - 'elasticInOut': Curves.elasticInOut, - }, - 'AnimationBehavior': { - 'values': AnimationBehavior.values, - 'normal': AnimationBehavior.normal, - 'preserve': AnimationBehavior.preserve, - }, - }; + 'AnimationBehavior': { + 'values': AnimationBehavior.values, + 'normal': AnimationBehavior.normal, + 'preserve': AnimationBehavior.preserve, + }, + 'CatmullRomCurve.validateControlPoints': (props) => + CatmullRomCurve.validateControlPoints( + props['pa'][0], + tension: props['tension']?.toDouble() ?? 0.0, + reasons: as(props['reasons']), + ), + 'Curves': { + 'linear': Curves.linear, + 'decelerate': Curves.decelerate, + 'fastLinearToSlowEaseIn': Curves.fastLinearToSlowEaseIn, + 'ease': Curves.ease, + 'easeIn': Curves.easeIn, + 'easeInToLinear': Curves.easeInToLinear, + 'easeInSine': Curves.easeInSine, + 'easeInQuad': Curves.easeInQuad, + 'easeInCubic': Curves.easeInCubic, + 'easeInQuart': Curves.easeInQuart, + 'easeInQuint': Curves.easeInQuint, + 'easeInExpo': Curves.easeInExpo, + 'easeInCirc': Curves.easeInCirc, + 'easeInBack': Curves.easeInBack, + 'easeOut': Curves.easeOut, + 'linearToEaseOut': Curves.linearToEaseOut, + 'easeOutSine': Curves.easeOutSine, + 'easeOutQuad': Curves.easeOutQuad, + 'easeOutCubic': Curves.easeOutCubic, + 'easeOutQuart': Curves.easeOutQuart, + 'easeOutQuint': Curves.easeOutQuint, + 'easeOutExpo': Curves.easeOutExpo, + 'easeOutCirc': Curves.easeOutCirc, + 'easeOutBack': Curves.easeOutBack, + 'easeInOut': Curves.easeInOut, + 'easeInOutSine': Curves.easeInOutSine, + 'easeInOutQuad': Curves.easeInOutQuad, + 'easeInOutCubic': Curves.easeInOutCubic, + 'easeInOutCubicEmphasized': Curves.easeInOutCubicEmphasized, + 'easeInOutQuart': Curves.easeInOutQuart, + 'easeInOutQuint': Curves.easeInOutQuint, + 'easeInOutExpo': Curves.easeInOutExpo, + 'easeInOutCirc': Curves.easeInOutCirc, + 'easeInOutBack': Curves.easeInOutBack, + 'fastOutSlowIn': Curves.fastOutSlowIn, + 'slowMiddle': Curves.slowMiddle, + 'bounceIn': Curves.bounceIn, + 'bounceOut': Curves.bounceOut, + 'bounceInOut': Curves.bounceInOut, + 'elasticIn': Curves.elasticIn, + 'elasticOut': Curves.elasticOut, + 'elasticInOut': Curves.elasticInOut, + }, + 'AnimationStatus': { + 'values': AnimationStatus.values, + 'dismissed': AnimationStatus.dismissed, + 'forward': AnimationStatus.forward, + 'reverse': AnimationStatus.reverse, + 'completed': AnimationStatus.completed, + }, + 'FontWeight': { + 'w100': FontWeight.w100, + 'w200': FontWeight.w200, + 'w300': FontWeight.w300, + 'w400': FontWeight.w400, + 'w500': FontWeight.w500, + 'w600': FontWeight.w600, + 'w700': FontWeight.w700, + 'w800': FontWeight.w800, + 'w900': FontWeight.w900, + 'normal': FontWeight.normal, + 'bold': FontWeight.bold, + 'values': FontWeight.values, + }, + 'FontWeight.lerp': (props) => FontWeight.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextDecoration': { + 'none': TextDecoration.none, + 'underline': TextDecoration.underline, + 'overline': TextDecoration.overline, + 'lineThrough': TextDecoration.lineThrough, + }, + 'TextRange': { + 'empty': TextRange.empty, + }, + 'FontStyle': { + 'values': FontStyle.values, + 'normal': FontStyle.normal, + 'italic': FontStyle.italic, + }, + 'TextAlign': { + 'values': TextAlign.values, + 'left': TextAlign.left, + 'right': TextAlign.right, + 'center': TextAlign.center, + 'justify': TextAlign.justify, + 'start': TextAlign.start, + 'end': TextAlign.end, + }, + 'TextBaseline': { + 'values': TextBaseline.values, + 'alphabetic': TextBaseline.alphabetic, + 'ideographic': TextBaseline.ideographic, + }, + 'TextDecorationStyle': { + 'values': TextDecorationStyle.values, + 'solid': TextDecorationStyle.solid, + 'double': TextDecorationStyle.double, + 'dotted': TextDecorationStyle.dotted, + 'dashed': TextDecorationStyle.dashed, + 'wavy': TextDecorationStyle.wavy, + }, + 'TextDirection': { + 'values': TextDirection.values, + 'rtl': TextDirection.rtl, + 'ltr': TextDirection.ltr, + }, + 'TextAffinity': { + 'values': TextAffinity.values, + 'upstream': TextAffinity.upstream, + 'downstream': TextAffinity.downstream, + }, + 'PlaceholderAlignment': { + 'values': PlaceholderAlignment.values, + 'baseline': PlaceholderAlignment.baseline, + 'aboveBaseline': PlaceholderAlignment.aboveBaseline, + 'belowBaseline': PlaceholderAlignment.belowBaseline, + 'top': PlaceholderAlignment.top, + 'bottom': PlaceholderAlignment.bottom, + 'middle': PlaceholderAlignment.middle, + }, +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart index f64bdd0c..857fe8ad 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$c.dart @@ -3,7 +3,26 @@ import 'package:flutter/cupertino.dart'; import 'package:flutter/gestures.dart'; import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; +import 'utils.dart'; +const CupertinoDynamicColor _kThumbColor = CupertinoDynamicColor.withBrightness( + color: Color(0xFFFFFFFF), + darkColor: Color(0xFF636366), +); +const EdgeInsetsGeometry _kHorizontalItemPadding = EdgeInsets.symmetric(vertical: 2, horizontal: 3); +const double kMinInteractiveDimensionCupertino = 44.0; +const Color _kDefaultTabBarInactiveColor = CupertinoColors.inactiveGray; +const Color _kDefaultTabBarBorderColor = CupertinoDynamicColor.withBrightness( + color: Color(0x4C000000), + darkColor: Color(0x29000000), +); + +const double _defaultRefreshTriggerPullDistance = 100.0; +const double _defaultRefreshIndicatorExtent = 60.0; +var buildRefreshIndicator = CupertinoSliverRefreshControl.buildRefreshIndicator; +const double _kDefaultDiameterRatio = 1.07; +const double _kSqueeze = 1.45; +const double _kDefaultIndicatorRadius = 10.0; // Value inspected from Xcode 11 & iOS 13.0 Simulator. const BorderSide _kDefaultRoundedBorderSide = BorderSide( color: CupertinoDynamicColor.withBrightness( @@ -29,1586 +48,2051 @@ const BoxDecoration _kDefaultRoundedBorderDecoration = BoxDecoration( borderRadius: BorderRadius.all(Radius.circular(5.0)), ); -const double _defaultRefreshTriggerPullDistance = 100.0; -const double _defaultRefreshIndicatorExtent = 60.0; -var buildRefreshIndicator = CupertinoSliverRefreshControl.buildRefreshIndicator; +const Color _kDefaultNavBarBorderColor = Color(0x4D000000); +const Border _kDefaultNavBarBorder = Border( + bottom: BorderSide( + color: _kDefaultNavBarBorderColor, + width: 0.0, // One physical pixel. + style: BorderStyle.solid, + ), +); +const _defaultHeroTag = ""; var p = () => { - 'OverlayVisibilityMode': { - 'values': OverlayVisibilityMode.values, - 'never': OverlayVisibilityMode.never, - 'editing': OverlayVisibilityMode.editing, - 'notEditing': OverlayVisibilityMode.notEditing, - 'always': OverlayVisibilityMode.always, - }, - 'CupertinoColors': { - 'activeBlue': CupertinoColors.activeBlue, - 'activeGreen': CupertinoColors.activeGreen, - 'activeOrange': CupertinoColors.activeOrange, - 'white': CupertinoColors.white, - 'black': CupertinoColors.black, - 'lightBackgroundGray': CupertinoColors.lightBackgroundGray, - 'extraLightBackgroundGray': CupertinoColors.extraLightBackgroundGray, - 'darkBackgroundGray': CupertinoColors.darkBackgroundGray, - 'inactiveGray': CupertinoColors.inactiveGray, - 'destructiveRed': CupertinoColors.destructiveRed, - 'systemBlue': CupertinoColors.systemBlue, - 'systemGreen': CupertinoColors.systemGreen, - 'systemIndigo': CupertinoColors.systemIndigo, - 'systemOrange': CupertinoColors.systemOrange, - 'systemPink': CupertinoColors.systemPink, - 'systemPurple': CupertinoColors.systemPurple, - 'systemRed': CupertinoColors.systemRed, - 'systemTeal': CupertinoColors.systemTeal, - 'systemYellow': CupertinoColors.systemYellow, - 'systemGrey': CupertinoColors.systemGrey, - 'systemGrey2': CupertinoColors.systemGrey2, - 'systemGrey3': CupertinoColors.systemGrey3, - 'systemGrey4': CupertinoColors.systemGrey4, - 'systemGrey5': CupertinoColors.systemGrey5, - 'systemGrey6': CupertinoColors.systemGrey6, - 'label': CupertinoColors.label, - 'secondaryLabel': CupertinoColors.secondaryLabel, - 'tertiaryLabel': CupertinoColors.tertiaryLabel, - 'quaternaryLabel': CupertinoColors.quaternaryLabel, - 'systemFill': CupertinoColors.systemFill, - 'secondarySystemFill': CupertinoColors.secondarySystemFill, - 'tertiarySystemFill': CupertinoColors.tertiarySystemFill, - 'quaternarySystemFill': CupertinoColors.quaternarySystemFill, - 'placeholderText': CupertinoColors.placeholderText, - 'systemBackground': CupertinoColors.systemBackground, - 'secondarySystemBackground': CupertinoColors.secondarySystemBackground, - 'tertiarySystemBackground': CupertinoColors.tertiarySystemBackground, - 'systemGroupedBackground': CupertinoColors.systemGroupedBackground, - 'secondarySystemGroupedBackground': - CupertinoColors.secondarySystemGroupedBackground, - 'tertiarySystemGroupedBackground': - CupertinoColors.tertiarySystemGroupedBackground, - 'separator': CupertinoColors.separator, - 'opaqueSeparator': CupertinoColors.opaqueSeparator, - 'link': CupertinoColors.link, - }, - 'CupertinoDynamicColor.resolve': (props) => CupertinoDynamicColor.resolve( - props['pa'][0], - props['pa'][1], - ), - 'CupertinoDynamicColor.maybeResolve': (props) => - CupertinoDynamicColor.maybeResolve( - props['pa'][0], - props['pa'][1], - ), - 'CupertinoDatePickerMode': { - 'values': CupertinoDatePickerMode.values, - 'time': CupertinoDatePickerMode.time, - 'date': CupertinoDatePickerMode.date, - 'dateAndTime': CupertinoDatePickerMode.dateAndTime, - }, - 'CupertinoTimerPickerMode': { - 'values': CupertinoTimerPickerMode.values, - 'hm': CupertinoTimerPickerMode.hm, - 'ms': CupertinoTimerPickerMode.ms, - 'hms': CupertinoTimerPickerMode.hms, - }, - 'CupertinoSliverRefreshControl.buildRefreshIndicator': (props) => - CupertinoSliverRefreshControl.buildRefreshIndicator( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - props['pa'][3]?.toDouble(), - props['pa'][4]?.toDouble(), - ), - 'RefreshIndicatorMode': { - 'values': RefreshIndicatorMode.values, - 'inactive': RefreshIndicatorMode.inactive, - 'drag': RefreshIndicatorMode.drag, - 'armed': RefreshIndicatorMode.armed, - 'refresh': RefreshIndicatorMode.refresh, - 'done': RefreshIndicatorMode.done, - }, - 'CupertinoThumbPainter': { - 'radius': CupertinoThumbPainter.radius, - 'extension': CupertinoThumbPainter.extension, - }, - 'CupertinoUserInterfaceLevel': (props) => CupertinoUserInterfaceLevel( - key: props['key'], - data: props['data'], - child: props['child'], - ), - 'CupertinoUserInterfaceLevel.of': (props) => - CupertinoUserInterfaceLevel.of( - props['pa'][0], - ), - 'CupertinoUserInterfaceLevel.maybeOf': (props) => - CupertinoUserInterfaceLevel.maybeOf( - props['pa'][0], - ), - 'CupertinoUserInterfaceLevelData': { - 'values': CupertinoUserInterfaceLevelData.values, - 'base': CupertinoUserInterfaceLevelData.base, - 'elevated': CupertinoUserInterfaceLevelData.elevated, - }, - 'CupertinoScrollbar': { - 'defaultThickness': CupertinoScrollbar.defaultThickness, - 'defaultThicknessWhileDragging': - CupertinoScrollbar.defaultThicknessWhileDragging, - 'defaultRadius': CupertinoScrollbar.defaultRadius, - 'defaultRadiusWhileDragging': - CupertinoScrollbar.defaultRadiusWhileDragging, - }, - 'CupertinoApp.createCupertinoHeroController': (props) => - CupertinoApp.createCupertinoHeroController(), - 'CupertinoIcons': { - 'iconFont': CupertinoIcons.iconFont, - 'iconFontPackage': CupertinoIcons.iconFontPackage, - 'left_chevron': CupertinoIcons.left_chevron, - 'right_chevron': CupertinoIcons.right_chevron, - 'share': CupertinoIcons.share, - 'share_solid': CupertinoIcons.share_solid, - 'book': CupertinoIcons.book, - 'book_solid': CupertinoIcons.book_solid, - 'bookmark': CupertinoIcons.bookmark, - 'bookmark_solid': CupertinoIcons.bookmark_solid, - 'info': CupertinoIcons.info, - 'reply': CupertinoIcons.reply, - 'conversation_bubble': CupertinoIcons.conversation_bubble, - 'profile_circled': CupertinoIcons.profile_circled, - 'plus_circled': CupertinoIcons.plus_circled, - 'minus_circled': CupertinoIcons.minus_circled, - 'flag': CupertinoIcons.flag, - 'search': CupertinoIcons.search, - 'check_mark': CupertinoIcons.check_mark, - 'check_mark_circled': CupertinoIcons.check_mark_circled, - 'check_mark_circled_solid': CupertinoIcons.check_mark_circled_solid, - 'circle': CupertinoIcons.circle, - 'circle_filled': CupertinoIcons.circle_filled, - 'back': CupertinoIcons.back, - 'forward': CupertinoIcons.forward, - 'home': CupertinoIcons.home, - 'shopping_cart': CupertinoIcons.shopping_cart, - 'ellipsis': CupertinoIcons.ellipsis, - 'phone': CupertinoIcons.phone, - 'phone_solid': CupertinoIcons.phone_solid, - 'down_arrow': CupertinoIcons.down_arrow, - 'up_arrow': CupertinoIcons.up_arrow, - 'battery_charging': CupertinoIcons.battery_charging, - 'battery_empty': CupertinoIcons.battery_empty, - 'battery_full': CupertinoIcons.battery_full, - 'battery_75_percent': CupertinoIcons.battery_75_percent, - 'battery_25_percent': CupertinoIcons.battery_25_percent, - 'bluetooth': CupertinoIcons.bluetooth, - 'restart': CupertinoIcons.restart, - 'reply_all': CupertinoIcons.reply_all, - 'reply_thick_solid': CupertinoIcons.reply_thick_solid, - 'share_up': CupertinoIcons.share_up, - 'shuffle': CupertinoIcons.shuffle, - 'shuffle_medium': CupertinoIcons.shuffle_medium, - 'shuffle_thick': CupertinoIcons.shuffle_thick, - 'photo_camera': CupertinoIcons.photo_camera, - 'photo_camera_solid': CupertinoIcons.photo_camera_solid, - 'video_camera': CupertinoIcons.video_camera, - 'video_camera_solid': CupertinoIcons.video_camera_solid, - 'switch_camera': CupertinoIcons.switch_camera, - 'switch_camera_solid': CupertinoIcons.switch_camera_solid, - 'collections': CupertinoIcons.collections, - 'collections_solid': CupertinoIcons.collections_solid, - 'folder': CupertinoIcons.folder, - 'folder_solid': CupertinoIcons.folder_solid, - 'folder_open': CupertinoIcons.folder_open, - 'delete': CupertinoIcons.delete, - 'delete_solid': CupertinoIcons.delete_solid, - 'delete_simple': CupertinoIcons.delete_simple, - 'pen': CupertinoIcons.pen, - 'pencil': CupertinoIcons.pencil, - 'create': CupertinoIcons.create, - 'create_solid': CupertinoIcons.create_solid, - 'refresh': CupertinoIcons.refresh, - 'refresh_circled': CupertinoIcons.refresh_circled, - 'refresh_circled_solid': CupertinoIcons.refresh_circled_solid, - 'refresh_thin': CupertinoIcons.refresh_thin, - 'refresh_thick': CupertinoIcons.refresh_thick, - 'refresh_bold': CupertinoIcons.refresh_bold, - 'clear_thick': CupertinoIcons.clear_thick, - 'clear_thick_circled': CupertinoIcons.clear_thick_circled, - 'clear': CupertinoIcons.clear, - 'clear_circled': CupertinoIcons.clear_circled, - 'clear_circled_solid': CupertinoIcons.clear_circled_solid, - 'add': CupertinoIcons.add, - 'add_circled': CupertinoIcons.add_circled, - 'add_circled_solid': CupertinoIcons.add_circled_solid, - 'gear': CupertinoIcons.gear, - 'gear_solid': CupertinoIcons.gear_solid, - 'gear_big': CupertinoIcons.gear_big, - 'settings': CupertinoIcons.settings, - 'settings_solid': CupertinoIcons.settings_solid, - 'music_note': CupertinoIcons.music_note, - 'double_music_note': CupertinoIcons.double_music_note, - 'play_arrow': CupertinoIcons.play_arrow, - 'play_arrow_solid': CupertinoIcons.play_arrow_solid, - 'pause': CupertinoIcons.pause, - 'pause_solid': CupertinoIcons.pause_solid, - 'loop': CupertinoIcons.loop, - 'loop_thick': CupertinoIcons.loop_thick, - 'volume_down': CupertinoIcons.volume_down, - 'volume_mute': CupertinoIcons.volume_mute, - 'volume_off': CupertinoIcons.volume_off, - 'volume_up': CupertinoIcons.volume_up, - 'fullscreen': CupertinoIcons.fullscreen, - 'fullscreen_exit': CupertinoIcons.fullscreen_exit, - 'mic_off': CupertinoIcons.mic_off, - 'mic': CupertinoIcons.mic, - 'mic_solid': CupertinoIcons.mic_solid, - 'clock': CupertinoIcons.clock, - 'clock_solid': CupertinoIcons.clock_solid, - 'time': CupertinoIcons.time, - 'time_solid': CupertinoIcons.time_solid, - 'padlock': CupertinoIcons.padlock, - 'padlock_solid': CupertinoIcons.padlock_solid, - 'eye': CupertinoIcons.eye, - 'eye_solid': CupertinoIcons.eye_solid, - 'person': CupertinoIcons.person, - 'person_solid': CupertinoIcons.person_solid, - 'person_add': CupertinoIcons.person_add, - 'person_add_solid': CupertinoIcons.person_add_solid, - 'group': CupertinoIcons.group, - 'group_solid': CupertinoIcons.group_solid, - 'mail': CupertinoIcons.mail, - 'mail_solid': CupertinoIcons.mail_solid, - 'location': CupertinoIcons.location, - 'location_solid': CupertinoIcons.location_solid, - 'tag': CupertinoIcons.tag, - 'tag_solid': CupertinoIcons.tag_solid, - 'tags': CupertinoIcons.tags, - 'tags_solid': CupertinoIcons.tags_solid, - 'bus': CupertinoIcons.bus, - 'car': CupertinoIcons.car, - 'car_detailed': CupertinoIcons.car_detailed, - 'train_style_one': CupertinoIcons.train_style_one, - 'train_style_two': CupertinoIcons.train_style_two, - 'paw': CupertinoIcons.paw, - 'paw_solid': CupertinoIcons.paw_solid, - 'game_controller': CupertinoIcons.game_controller, - 'game_controller_solid': CupertinoIcons.game_controller_solid, - 'lab_flask': CupertinoIcons.lab_flask, - 'lab_flask_solid': CupertinoIcons.lab_flask_solid, - 'heart': CupertinoIcons.heart, - 'heart_solid': CupertinoIcons.heart_solid, - 'bell': CupertinoIcons.bell, - 'bell_solid': CupertinoIcons.bell_solid, - 'news': CupertinoIcons.news, - 'news_solid': CupertinoIcons.news_solid, - 'brightness': CupertinoIcons.brightness, - 'brightness_solid': CupertinoIcons.brightness_solid, - 'airplane': CupertinoIcons.airplane, - 'alarm': CupertinoIcons.alarm, - 'alarm_fill': CupertinoIcons.alarm_fill, - 'alt': CupertinoIcons.alt, - 'ant': CupertinoIcons.ant, - 'ant_circle': CupertinoIcons.ant_circle, - 'ant_circle_fill': CupertinoIcons.ant_circle_fill, - 'ant_fill': CupertinoIcons.ant_fill, - 'antenna_radiowaves_left_right': - CupertinoIcons.antenna_radiowaves_left_right, - 'app': CupertinoIcons.app, - 'app_badge': CupertinoIcons.app_badge, - 'app_badge_fill': CupertinoIcons.app_badge_fill, - 'app_fill': CupertinoIcons.app_fill, - 'archivebox': CupertinoIcons.archivebox, - 'archivebox_fill': CupertinoIcons.archivebox_fill, - 'arrow_2_circlepath': CupertinoIcons.arrow_2_circlepath, - 'arrow_2_circlepath_circle': CupertinoIcons.arrow_2_circlepath_circle, - 'arrow_2_circlepath_circle_fill': - CupertinoIcons.arrow_2_circlepath_circle_fill, - 'arrow_2_squarepath': CupertinoIcons.arrow_2_squarepath, - 'arrow_3_trianglepath': CupertinoIcons.arrow_3_trianglepath, - 'arrow_branch': CupertinoIcons.arrow_branch, - 'arrow_clockwise': CupertinoIcons.arrow_clockwise, - 'arrow_clockwise_circle': CupertinoIcons.arrow_clockwise_circle, - 'arrow_clockwise_circle_fill': - CupertinoIcons.arrow_clockwise_circle_fill, - 'arrow_counterclockwise': CupertinoIcons.arrow_counterclockwise, - 'arrow_counterclockwise_circle': - CupertinoIcons.arrow_counterclockwise_circle, - 'arrow_counterclockwise_circle_fill': - CupertinoIcons.arrow_counterclockwise_circle_fill, - 'arrow_down': CupertinoIcons.arrow_down, - 'arrow_down_circle': CupertinoIcons.arrow_down_circle, - 'arrow_down_circle_fill': CupertinoIcons.arrow_down_circle_fill, - 'arrow_down_doc': CupertinoIcons.arrow_down_doc, - 'arrow_down_doc_fill': CupertinoIcons.arrow_down_doc_fill, - 'arrow_down_left': CupertinoIcons.arrow_down_left, - 'arrow_down_left_circle': CupertinoIcons.arrow_down_left_circle, - 'arrow_down_left_circle_fill': - CupertinoIcons.arrow_down_left_circle_fill, - 'arrow_down_left_square': CupertinoIcons.arrow_down_left_square, - 'arrow_down_left_square_fill': - CupertinoIcons.arrow_down_left_square_fill, - 'arrow_down_right': CupertinoIcons.arrow_down_right, - 'arrow_down_right_arrow_up_left': - CupertinoIcons.arrow_down_right_arrow_up_left, - 'arrow_down_right_circle': CupertinoIcons.arrow_down_right_circle, - 'arrow_down_right_circle_fill': - CupertinoIcons.arrow_down_right_circle_fill, - 'arrow_down_right_square': CupertinoIcons.arrow_down_right_square, - 'arrow_down_right_square_fill': - CupertinoIcons.arrow_down_right_square_fill, - 'arrow_down_square': CupertinoIcons.arrow_down_square, - 'arrow_down_square_fill': CupertinoIcons.arrow_down_square_fill, - 'arrow_down_to_line': CupertinoIcons.arrow_down_to_line, - 'arrow_down_to_line_alt': CupertinoIcons.arrow_down_to_line_alt, - 'arrow_left': CupertinoIcons.arrow_left, - 'arrow_left_circle': CupertinoIcons.arrow_left_circle, - 'arrow_left_circle_fill': CupertinoIcons.arrow_left_circle_fill, - 'arrow_left_right': CupertinoIcons.arrow_left_right, - 'arrow_left_right_circle': CupertinoIcons.arrow_left_right_circle, - 'arrow_left_right_circle_fill': - CupertinoIcons.arrow_left_right_circle_fill, - 'arrow_left_right_square': CupertinoIcons.arrow_left_right_square, - 'arrow_left_right_square_fill': - CupertinoIcons.arrow_left_right_square_fill, - 'arrow_left_square': CupertinoIcons.arrow_left_square, - 'arrow_left_square_fill': CupertinoIcons.arrow_left_square_fill, - 'arrow_left_to_line': CupertinoIcons.arrow_left_to_line, - 'arrow_left_to_line_alt': CupertinoIcons.arrow_left_to_line_alt, - 'arrow_merge': CupertinoIcons.arrow_merge, - 'arrow_right': CupertinoIcons.arrow_right, - 'arrow_right_arrow_left': CupertinoIcons.arrow_right_arrow_left, - 'arrow_right_arrow_left_circle': - CupertinoIcons.arrow_right_arrow_left_circle, - 'arrow_right_arrow_left_circle_fill': - CupertinoIcons.arrow_right_arrow_left_circle_fill, - 'arrow_right_arrow_left_square': - CupertinoIcons.arrow_right_arrow_left_square, - 'arrow_right_arrow_left_square_fill': - CupertinoIcons.arrow_right_arrow_left_square_fill, - 'arrow_right_circle': CupertinoIcons.arrow_right_circle, - 'arrow_right_circle_fill': CupertinoIcons.arrow_right_circle_fill, - 'arrow_right_square': CupertinoIcons.arrow_right_square, - 'arrow_right_square_fill': CupertinoIcons.arrow_right_square_fill, - 'arrow_right_to_line': CupertinoIcons.arrow_right_to_line, - 'arrow_right_to_line_alt': CupertinoIcons.arrow_right_to_line_alt, - 'arrow_swap': CupertinoIcons.arrow_swap, - 'arrow_turn_down_left': CupertinoIcons.arrow_turn_down_left, - 'arrow_turn_down_right': CupertinoIcons.arrow_turn_down_right, - 'arrow_turn_left_down': CupertinoIcons.arrow_turn_left_down, - 'arrow_turn_left_up': CupertinoIcons.arrow_turn_left_up, - 'arrow_turn_right_down': CupertinoIcons.arrow_turn_right_down, - 'arrow_turn_right_up': CupertinoIcons.arrow_turn_right_up, - 'arrow_turn_up_left': CupertinoIcons.arrow_turn_up_left, - 'arrow_turn_up_right': CupertinoIcons.arrow_turn_up_right, - 'arrow_up': CupertinoIcons.arrow_up, - 'arrow_up_arrow_down': CupertinoIcons.arrow_up_arrow_down, - 'arrow_up_arrow_down_circle': CupertinoIcons.arrow_up_arrow_down_circle, - 'arrow_up_arrow_down_circle_fill': - CupertinoIcons.arrow_up_arrow_down_circle_fill, - 'arrow_up_arrow_down_square': CupertinoIcons.arrow_up_arrow_down_square, - 'arrow_up_arrow_down_square_fill': - CupertinoIcons.arrow_up_arrow_down_square_fill, - 'arrow_up_bin': CupertinoIcons.arrow_up_bin, - 'arrow_up_bin_fill': CupertinoIcons.arrow_up_bin_fill, - 'arrow_up_circle': CupertinoIcons.arrow_up_circle, - 'arrow_up_circle_fill': CupertinoIcons.arrow_up_circle_fill, - 'arrow_up_doc': CupertinoIcons.arrow_up_doc, - 'arrow_up_doc_fill': CupertinoIcons.arrow_up_doc_fill, - 'arrow_up_down': CupertinoIcons.arrow_up_down, - 'arrow_up_down_circle': CupertinoIcons.arrow_up_down_circle, - 'arrow_up_down_circle_fill': CupertinoIcons.arrow_up_down_circle_fill, - 'arrow_up_down_square': CupertinoIcons.arrow_up_down_square, - 'arrow_up_down_square_fill': CupertinoIcons.arrow_up_down_square_fill, - 'arrow_up_left': CupertinoIcons.arrow_up_left, - 'arrow_up_left_arrow_down_right': - CupertinoIcons.arrow_up_left_arrow_down_right, - 'arrow_up_left_circle': CupertinoIcons.arrow_up_left_circle, - 'arrow_up_left_circle_fill': CupertinoIcons.arrow_up_left_circle_fill, - 'arrow_up_left_square': CupertinoIcons.arrow_up_left_square, - 'arrow_up_left_square_fill': CupertinoIcons.arrow_up_left_square_fill, - 'arrow_up_right': CupertinoIcons.arrow_up_right, - 'arrow_up_right_circle': CupertinoIcons.arrow_up_right_circle, - 'arrow_up_right_circle_fill': CupertinoIcons.arrow_up_right_circle_fill, - 'arrow_up_right_diamond': CupertinoIcons.arrow_up_right_diamond, - 'arrow_up_right_diamond_fill': - CupertinoIcons.arrow_up_right_diamond_fill, - 'arrow_up_right_square': CupertinoIcons.arrow_up_right_square, - 'arrow_up_right_square_fill': CupertinoIcons.arrow_up_right_square_fill, - 'arrow_up_square': CupertinoIcons.arrow_up_square, - 'arrow_up_square_fill': CupertinoIcons.arrow_up_square_fill, - 'arrow_up_to_line': CupertinoIcons.arrow_up_to_line, - 'arrow_up_to_line_alt': CupertinoIcons.arrow_up_to_line_alt, - 'arrow_uturn_down': CupertinoIcons.arrow_uturn_down, - 'arrow_uturn_down_circle': CupertinoIcons.arrow_uturn_down_circle, - 'arrow_uturn_down_circle_fill': - CupertinoIcons.arrow_uturn_down_circle_fill, - 'arrow_uturn_down_square': CupertinoIcons.arrow_uturn_down_square, - 'arrow_uturn_down_square_fill': - CupertinoIcons.arrow_uturn_down_square_fill, - 'arrow_uturn_left': CupertinoIcons.arrow_uturn_left, - 'arrow_uturn_left_circle': CupertinoIcons.arrow_uturn_left_circle, - 'arrow_uturn_left_circle_fill': - CupertinoIcons.arrow_uturn_left_circle_fill, - 'arrow_uturn_left_square': CupertinoIcons.arrow_uturn_left_square, - 'arrow_uturn_left_square_fill': - CupertinoIcons.arrow_uturn_left_square_fill, - 'arrow_uturn_right': CupertinoIcons.arrow_uturn_right, - 'arrow_uturn_right_circle': CupertinoIcons.arrow_uturn_right_circle, - 'arrow_uturn_right_circle_fill': - CupertinoIcons.arrow_uturn_right_circle_fill, - 'arrow_uturn_right_square': CupertinoIcons.arrow_uturn_right_square, - 'arrow_uturn_right_square_fill': - CupertinoIcons.arrow_uturn_right_square_fill, - 'arrow_uturn_up': CupertinoIcons.arrow_uturn_up, - 'arrow_uturn_up_circle': CupertinoIcons.arrow_uturn_up_circle, - 'arrow_uturn_up_circle_fill': CupertinoIcons.arrow_uturn_up_circle_fill, - 'arrow_uturn_up_square': CupertinoIcons.arrow_uturn_up_square, - 'arrow_uturn_up_square_fill': CupertinoIcons.arrow_uturn_up_square_fill, - 'arrowshape_turn_up_left': CupertinoIcons.arrowshape_turn_up_left, - 'arrowshape_turn_up_left_2': CupertinoIcons.arrowshape_turn_up_left_2, - 'arrowshape_turn_up_left_2_fill': - CupertinoIcons.arrowshape_turn_up_left_2_fill, - 'arrowshape_turn_up_left_circle': - CupertinoIcons.arrowshape_turn_up_left_circle, - 'arrowshape_turn_up_left_circle_fill': - CupertinoIcons.arrowshape_turn_up_left_circle_fill, - 'arrowshape_turn_up_left_fill': - CupertinoIcons.arrowshape_turn_up_left_fill, - 'arrowshape_turn_up_right': CupertinoIcons.arrowshape_turn_up_right, - 'arrowshape_turn_up_right_circle': - CupertinoIcons.arrowshape_turn_up_right_circle, - 'arrowshape_turn_up_right_circle_fill': - CupertinoIcons.arrowshape_turn_up_right_circle_fill, - 'arrowshape_turn_up_right_fill': - CupertinoIcons.arrowshape_turn_up_right_fill, - 'arrowtriangle_down': CupertinoIcons.arrowtriangle_down, - 'arrowtriangle_down_circle': CupertinoIcons.arrowtriangle_down_circle, - 'arrowtriangle_down_circle_fill': - CupertinoIcons.arrowtriangle_down_circle_fill, - 'arrowtriangle_down_fill': CupertinoIcons.arrowtriangle_down_fill, - 'arrowtriangle_down_square': CupertinoIcons.arrowtriangle_down_square, - 'arrowtriangle_down_square_fill': - CupertinoIcons.arrowtriangle_down_square_fill, - 'arrowtriangle_left': CupertinoIcons.arrowtriangle_left, - 'arrowtriangle_left_circle': CupertinoIcons.arrowtriangle_left_circle, - 'arrowtriangle_left_circle_fill': - CupertinoIcons.arrowtriangle_left_circle_fill, - 'arrowtriangle_left_fill': CupertinoIcons.arrowtriangle_left_fill, - 'arrowtriangle_left_square': CupertinoIcons.arrowtriangle_left_square, - 'arrowtriangle_left_square_fill': - CupertinoIcons.arrowtriangle_left_square_fill, - 'arrowtriangle_right': CupertinoIcons.arrowtriangle_right, - 'arrowtriangle_right_circle': CupertinoIcons.arrowtriangle_right_circle, - 'arrowtriangle_right_circle_fill': - CupertinoIcons.arrowtriangle_right_circle_fill, - 'arrowtriangle_right_fill': CupertinoIcons.arrowtriangle_right_fill, - 'arrowtriangle_right_square': CupertinoIcons.arrowtriangle_right_square, - 'arrowtriangle_right_square_fill': - CupertinoIcons.arrowtriangle_right_square_fill, - 'arrowtriangle_up': CupertinoIcons.arrowtriangle_up, - 'arrowtriangle_up_circle': CupertinoIcons.arrowtriangle_up_circle, - 'arrowtriangle_up_circle_fill': - CupertinoIcons.arrowtriangle_up_circle_fill, - 'arrowtriangle_up_fill': CupertinoIcons.arrowtriangle_up_fill, - 'arrowtriangle_up_square': CupertinoIcons.arrowtriangle_up_square, - 'arrowtriangle_up_square_fill': - CupertinoIcons.arrowtriangle_up_square_fill, - 'asterisk_circle': CupertinoIcons.asterisk_circle, - 'asterisk_circle_fill': CupertinoIcons.asterisk_circle_fill, - 'at': CupertinoIcons.at, - 'at_badge_minus': CupertinoIcons.at_badge_minus, - 'at_badge_plus': CupertinoIcons.at_badge_plus, - 'at_circle': CupertinoIcons.at_circle, - 'at_circle_fill': CupertinoIcons.at_circle_fill, - 'backward': CupertinoIcons.backward, - 'backward_end': CupertinoIcons.backward_end, - 'backward_end_alt': CupertinoIcons.backward_end_alt, - 'backward_end_alt_fill': CupertinoIcons.backward_end_alt_fill, - 'backward_end_fill': CupertinoIcons.backward_end_fill, - 'backward_fill': CupertinoIcons.backward_fill, - 'badge_plus_radiowaves_right': - CupertinoIcons.badge_plus_radiowaves_right, - 'bag': CupertinoIcons.bag, - 'bag_badge_minus': CupertinoIcons.bag_badge_minus, - 'bag_badge_plus': CupertinoIcons.bag_badge_plus, - 'bag_fill': CupertinoIcons.bag_fill, - 'bag_fill_badge_minus': CupertinoIcons.bag_fill_badge_minus, - 'bag_fill_badge_plus': CupertinoIcons.bag_fill_badge_plus, - 'bandage': CupertinoIcons.bandage, - 'bandage_fill': CupertinoIcons.bandage_fill, - 'barcode': CupertinoIcons.barcode, - 'barcode_viewfinder': CupertinoIcons.barcode_viewfinder, - 'bars': CupertinoIcons.bars, - 'battery_0': CupertinoIcons.battery_0, - 'battery_100': CupertinoIcons.battery_100, - 'battery_25': CupertinoIcons.battery_25, - 'bed_double': CupertinoIcons.bed_double, - 'bed_double_fill': CupertinoIcons.bed_double_fill, - 'bell_circle': CupertinoIcons.bell_circle, - 'bell_circle_fill': CupertinoIcons.bell_circle_fill, - 'bell_fill': CupertinoIcons.bell_fill, - 'bell_slash': CupertinoIcons.bell_slash, - 'bell_slash_fill': CupertinoIcons.bell_slash_fill, - 'bin_xmark': CupertinoIcons.bin_xmark, - 'bin_xmark_fill': CupertinoIcons.bin_xmark_fill, - 'bitcoin': CupertinoIcons.bitcoin, - 'bitcoin_circle': CupertinoIcons.bitcoin_circle, - 'bitcoin_circle_fill': CupertinoIcons.bitcoin_circle_fill, - 'bold': CupertinoIcons.bold, - 'bold_italic_underline': CupertinoIcons.bold_italic_underline, - 'bold_underline': CupertinoIcons.bold_underline, - 'bolt': CupertinoIcons.bolt, - 'bolt_badge_a': CupertinoIcons.bolt_badge_a, - 'bolt_badge_a_fill': CupertinoIcons.bolt_badge_a_fill, - 'bolt_circle': CupertinoIcons.bolt_circle, - 'bolt_circle_fill': CupertinoIcons.bolt_circle_fill, - 'bolt_fill': CupertinoIcons.bolt_fill, - 'bolt_horizontal': CupertinoIcons.bolt_horizontal, - 'bolt_horizontal_circle': CupertinoIcons.bolt_horizontal_circle, - 'bolt_horizontal_circle_fill': - CupertinoIcons.bolt_horizontal_circle_fill, - 'bolt_horizontal_fill': CupertinoIcons.bolt_horizontal_fill, - 'bolt_slash': CupertinoIcons.bolt_slash, - 'bolt_slash_fill': CupertinoIcons.bolt_slash_fill, - 'book_circle': CupertinoIcons.book_circle, - 'book_circle_fill': CupertinoIcons.book_circle_fill, - 'book_fill': CupertinoIcons.book_fill, - 'bookmark_fill': CupertinoIcons.bookmark_fill, - 'briefcase': CupertinoIcons.briefcase, - 'briefcase_fill': CupertinoIcons.briefcase_fill, - 'bubble_left': CupertinoIcons.bubble_left, - 'bubble_left_bubble_right': CupertinoIcons.bubble_left_bubble_right, - 'bubble_left_bubble_right_fill': - CupertinoIcons.bubble_left_bubble_right_fill, - 'bubble_left_fill': CupertinoIcons.bubble_left_fill, - 'bubble_middle_bottom': CupertinoIcons.bubble_middle_bottom, - 'bubble_middle_bottom_fill': CupertinoIcons.bubble_middle_bottom_fill, - 'bubble_middle_top': CupertinoIcons.bubble_middle_top, - 'bubble_middle_top_fill': CupertinoIcons.bubble_middle_top_fill, - 'bubble_right': CupertinoIcons.bubble_right, - 'bubble_right_fill': CupertinoIcons.bubble_right_fill, - 'building_2_fill': CupertinoIcons.building_2_fill, - 'burn': CupertinoIcons.burn, - 'burst': CupertinoIcons.burst, - 'burst_fill': CupertinoIcons.burst_fill, - 'calendar': CupertinoIcons.calendar, - 'calendar_badge_minus': CupertinoIcons.calendar_badge_minus, - 'calendar_badge_plus': CupertinoIcons.calendar_badge_plus, - 'calendar_circle': CupertinoIcons.calendar_circle, - 'calendar_circle_fill': CupertinoIcons.calendar_circle_fill, - 'calendar_today': CupertinoIcons.calendar_today, - 'camera': CupertinoIcons.camera, - 'camera_circle': CupertinoIcons.camera_circle, - 'camera_circle_fill': CupertinoIcons.camera_circle_fill, - 'camera_fill': CupertinoIcons.camera_fill, - 'camera_on_rectangle': CupertinoIcons.camera_on_rectangle, - 'camera_on_rectangle_fill': CupertinoIcons.camera_on_rectangle_fill, - 'camera_rotate': CupertinoIcons.camera_rotate, - 'camera_rotate_fill': CupertinoIcons.camera_rotate_fill, - 'camera_viewfinder': CupertinoIcons.camera_viewfinder, - 'capslock': CupertinoIcons.capslock, - 'capslock_fill': CupertinoIcons.capslock_fill, - 'capsule': CupertinoIcons.capsule, - 'capsule_fill': CupertinoIcons.capsule_fill, - 'captions_bubble': CupertinoIcons.captions_bubble, - 'captions_bubble_fill': CupertinoIcons.captions_bubble_fill, - 'car_fill': CupertinoIcons.car_fill, - 'cart': CupertinoIcons.cart, - 'cart_badge_minus': CupertinoIcons.cart_badge_minus, - 'cart_badge_plus': CupertinoIcons.cart_badge_plus, - 'cart_fill': CupertinoIcons.cart_fill, - 'cart_fill_badge_minus': CupertinoIcons.cart_fill_badge_minus, - 'cart_fill_badge_plus': CupertinoIcons.cart_fill_badge_plus, - 'chart_bar': CupertinoIcons.chart_bar, - 'chart_bar_alt_fill': CupertinoIcons.chart_bar_alt_fill, - 'chart_bar_circle': CupertinoIcons.chart_bar_circle, - 'chart_bar_circle_fill': CupertinoIcons.chart_bar_circle_fill, - 'chart_bar_fill': CupertinoIcons.chart_bar_fill, - 'chart_bar_square': CupertinoIcons.chart_bar_square, - 'chart_bar_square_fill': CupertinoIcons.chart_bar_square_fill, - 'chart_pie': CupertinoIcons.chart_pie, - 'chart_pie_fill': CupertinoIcons.chart_pie_fill, - 'chat_bubble': CupertinoIcons.chat_bubble, - 'chat_bubble_2': CupertinoIcons.chat_bubble_2, - 'chat_bubble_2_fill': CupertinoIcons.chat_bubble_2_fill, - 'chat_bubble_fill': CupertinoIcons.chat_bubble_fill, - 'chat_bubble_text': CupertinoIcons.chat_bubble_text, - 'chat_bubble_text_fill': CupertinoIcons.chat_bubble_text_fill, - 'checkmark': CupertinoIcons.checkmark, - 'checkmark_alt': CupertinoIcons.checkmark_alt, - 'checkmark_alt_circle': CupertinoIcons.checkmark_alt_circle, - 'checkmark_alt_circle_fill': CupertinoIcons.checkmark_alt_circle_fill, - 'checkmark_circle': CupertinoIcons.checkmark_circle, - 'checkmark_circle_fill': CupertinoIcons.checkmark_circle_fill, - 'checkmark_rectangle': CupertinoIcons.checkmark_rectangle, - 'checkmark_rectangle_fill': CupertinoIcons.checkmark_rectangle_fill, - 'checkmark_seal': CupertinoIcons.checkmark_seal, - 'checkmark_seal_fill': CupertinoIcons.checkmark_seal_fill, - 'checkmark_shield': CupertinoIcons.checkmark_shield, - 'checkmark_shield_fill': CupertinoIcons.checkmark_shield_fill, - 'checkmark_square': CupertinoIcons.checkmark_square, - 'checkmark_square_fill': CupertinoIcons.checkmark_square_fill, - 'chevron_back': CupertinoIcons.chevron_back, - 'chevron_compact_down': CupertinoIcons.chevron_compact_down, - 'chevron_compact_left': CupertinoIcons.chevron_compact_left, - 'chevron_compact_right': CupertinoIcons.chevron_compact_right, - 'chevron_compact_up': CupertinoIcons.chevron_compact_up, - 'chevron_down': CupertinoIcons.chevron_down, - 'chevron_down_circle': CupertinoIcons.chevron_down_circle, - 'chevron_down_circle_fill': CupertinoIcons.chevron_down_circle_fill, - 'chevron_down_square': CupertinoIcons.chevron_down_square, - 'chevron_down_square_fill': CupertinoIcons.chevron_down_square_fill, - 'chevron_forward': CupertinoIcons.chevron_forward, - 'chevron_left': CupertinoIcons.chevron_left, - 'chevron_left_2': CupertinoIcons.chevron_left_2, - 'chevron_left_circle': CupertinoIcons.chevron_left_circle, - 'chevron_left_circle_fill': CupertinoIcons.chevron_left_circle_fill, - 'chevron_left_slash_chevron_right': - CupertinoIcons.chevron_left_slash_chevron_right, - 'chevron_left_square': CupertinoIcons.chevron_left_square, - 'chevron_left_square_fill': CupertinoIcons.chevron_left_square_fill, - 'chevron_right': CupertinoIcons.chevron_right, - 'chevron_right_2': CupertinoIcons.chevron_right_2, - 'chevron_right_circle': CupertinoIcons.chevron_right_circle, - 'chevron_right_circle_fill': CupertinoIcons.chevron_right_circle_fill, - 'chevron_right_square': CupertinoIcons.chevron_right_square, - 'chevron_right_square_fill': CupertinoIcons.chevron_right_square_fill, - 'chevron_up': CupertinoIcons.chevron_up, - 'chevron_up_chevron_down': CupertinoIcons.chevron_up_chevron_down, - 'chevron_up_circle': CupertinoIcons.chevron_up_circle, - 'chevron_up_circle_fill': CupertinoIcons.chevron_up_circle_fill, - 'chevron_up_square': CupertinoIcons.chevron_up_square, - 'chevron_up_square_fill': CupertinoIcons.chevron_up_square_fill, - 'circle_bottomthird_split': CupertinoIcons.circle_bottomthird_split, - 'circle_fill': CupertinoIcons.circle_fill, - 'circle_grid_3x3': CupertinoIcons.circle_grid_3x3, - 'circle_grid_3x3_fill': CupertinoIcons.circle_grid_3x3_fill, - 'circle_grid_hex': CupertinoIcons.circle_grid_hex, - 'circle_grid_hex_fill': CupertinoIcons.circle_grid_hex_fill, - 'circle_lefthalf_fill': CupertinoIcons.circle_lefthalf_fill, - 'circle_righthalf_fill': CupertinoIcons.circle_righthalf_fill, - 'clear_fill': CupertinoIcons.clear_fill, - 'clock_fill': CupertinoIcons.clock_fill, - 'cloud': CupertinoIcons.cloud, - 'cloud_bolt': CupertinoIcons.cloud_bolt, - 'cloud_bolt_fill': CupertinoIcons.cloud_bolt_fill, - 'cloud_bolt_rain': CupertinoIcons.cloud_bolt_rain, - 'cloud_bolt_rain_fill': CupertinoIcons.cloud_bolt_rain_fill, - 'cloud_download': CupertinoIcons.cloud_download, - 'cloud_download_fill': CupertinoIcons.cloud_download_fill, - 'cloud_drizzle': CupertinoIcons.cloud_drizzle, - 'cloud_drizzle_fill': CupertinoIcons.cloud_drizzle_fill, - 'cloud_fill': CupertinoIcons.cloud_fill, - 'cloud_fog': CupertinoIcons.cloud_fog, - 'cloud_fog_fill': CupertinoIcons.cloud_fog_fill, - 'cloud_hail': CupertinoIcons.cloud_hail, - 'cloud_hail_fill': CupertinoIcons.cloud_hail_fill, - 'cloud_heavyrain': CupertinoIcons.cloud_heavyrain, - 'cloud_heavyrain_fill': CupertinoIcons.cloud_heavyrain_fill, - 'cloud_moon': CupertinoIcons.cloud_moon, - 'cloud_moon_bolt': CupertinoIcons.cloud_moon_bolt, - 'cloud_moon_bolt_fill': CupertinoIcons.cloud_moon_bolt_fill, - 'cloud_moon_fill': CupertinoIcons.cloud_moon_fill, - 'cloud_moon_rain': CupertinoIcons.cloud_moon_rain, - 'cloud_moon_rain_fill': CupertinoIcons.cloud_moon_rain_fill, - 'cloud_rain': CupertinoIcons.cloud_rain, - 'cloud_rain_fill': CupertinoIcons.cloud_rain_fill, - 'cloud_sleet': CupertinoIcons.cloud_sleet, - 'cloud_sleet_fill': CupertinoIcons.cloud_sleet_fill, - 'cloud_snow': CupertinoIcons.cloud_snow, - 'cloud_snow_fill': CupertinoIcons.cloud_snow_fill, - 'cloud_sun': CupertinoIcons.cloud_sun, - 'cloud_sun_bolt': CupertinoIcons.cloud_sun_bolt, - 'cloud_sun_bolt_fill': CupertinoIcons.cloud_sun_bolt_fill, - 'cloud_sun_fill': CupertinoIcons.cloud_sun_fill, - 'cloud_sun_rain': CupertinoIcons.cloud_sun_rain, - 'cloud_sun_rain_fill': CupertinoIcons.cloud_sun_rain_fill, - 'cloud_upload': CupertinoIcons.cloud_upload, - 'cloud_upload_fill': CupertinoIcons.cloud_upload_fill, - 'color_filter': CupertinoIcons.color_filter, - 'color_filter_fill': CupertinoIcons.color_filter_fill, - 'command': CupertinoIcons.command, - 'compass': CupertinoIcons.compass, - 'compass_fill': CupertinoIcons.compass_fill, - 'control': CupertinoIcons.control, - 'creditcard': CupertinoIcons.creditcard, - 'creditcard_fill': CupertinoIcons.creditcard_fill, - 'crop': CupertinoIcons.crop, - 'crop_rotate': CupertinoIcons.crop_rotate, - 'cube': CupertinoIcons.cube, - 'cube_box': CupertinoIcons.cube_box, - 'cube_box_fill': CupertinoIcons.cube_box_fill, - 'cube_fill': CupertinoIcons.cube_fill, - 'cursor_rays': CupertinoIcons.cursor_rays, - 'decrease_indent': CupertinoIcons.decrease_indent, - 'decrease_quotelevel': CupertinoIcons.decrease_quotelevel, - 'delete_left': CupertinoIcons.delete_left, - 'delete_left_fill': CupertinoIcons.delete_left_fill, - 'delete_right': CupertinoIcons.delete_right, - 'delete_right_fill': CupertinoIcons.delete_right_fill, - 'desktopcomputer': CupertinoIcons.desktopcomputer, - 'device_desktop': CupertinoIcons.device_desktop, - 'device_laptop': CupertinoIcons.device_laptop, - 'device_phone_landscape': CupertinoIcons.device_phone_landscape, - 'device_phone_portrait': CupertinoIcons.device_phone_portrait, - 'dial': CupertinoIcons.dial, - 'dial_fill': CupertinoIcons.dial_fill, - 'divide': CupertinoIcons.divide, - 'divide_circle': CupertinoIcons.divide_circle, - 'divide_circle_fill': CupertinoIcons.divide_circle_fill, - 'divide_square': CupertinoIcons.divide_square, - 'divide_square_fill': CupertinoIcons.divide_square_fill, - 'doc': CupertinoIcons.doc, - 'doc_append': CupertinoIcons.doc_append, - 'doc_chart': CupertinoIcons.doc_chart, - 'doc_chart_fill': CupertinoIcons.doc_chart_fill, - 'doc_checkmark': CupertinoIcons.doc_checkmark, - 'doc_checkmark_fill': CupertinoIcons.doc_checkmark_fill, - 'doc_circle': CupertinoIcons.doc_circle, - 'doc_circle_fill': CupertinoIcons.doc_circle_fill, - 'doc_fill': CupertinoIcons.doc_fill, - 'doc_on_clipboard': CupertinoIcons.doc_on_clipboard, - 'doc_on_clipboard_fill': CupertinoIcons.doc_on_clipboard_fill, - 'doc_on_doc': CupertinoIcons.doc_on_doc, - 'doc_on_doc_fill': CupertinoIcons.doc_on_doc_fill, - 'doc_person': CupertinoIcons.doc_person, - 'doc_person_fill': CupertinoIcons.doc_person_fill, - 'doc_plaintext': CupertinoIcons.doc_plaintext, - 'doc_richtext': CupertinoIcons.doc_richtext, - 'doc_text': CupertinoIcons.doc_text, - 'doc_text_fill': CupertinoIcons.doc_text_fill, - 'doc_text_search': CupertinoIcons.doc_text_search, - 'doc_text_viewfinder': CupertinoIcons.doc_text_viewfinder, - 'dot_radiowaves_left_right': CupertinoIcons.dot_radiowaves_left_right, - 'dot_radiowaves_right': CupertinoIcons.dot_radiowaves_right, - 'dot_square': CupertinoIcons.dot_square, - 'dot_square_fill': CupertinoIcons.dot_square_fill, - 'download_circle': CupertinoIcons.download_circle, - 'download_circle_fill': CupertinoIcons.download_circle_fill, - 'drop': CupertinoIcons.drop, - 'drop_fill': CupertinoIcons.drop_fill, - 'drop_triangle': CupertinoIcons.drop_triangle, - 'drop_triangle_fill': CupertinoIcons.drop_triangle_fill, - 'ear': CupertinoIcons.ear, - 'eject': CupertinoIcons.eject, - 'eject_fill': CupertinoIcons.eject_fill, - 'ellipses_bubble': CupertinoIcons.ellipses_bubble, - 'ellipses_bubble_fill': CupertinoIcons.ellipses_bubble_fill, - 'ellipsis_circle': CupertinoIcons.ellipsis_circle, - 'ellipsis_circle_fill': CupertinoIcons.ellipsis_circle_fill, - 'ellipsis_vertical': CupertinoIcons.ellipsis_vertical, - 'ellipsis_vertical_circle': CupertinoIcons.ellipsis_vertical_circle, - 'ellipsis_vertical_circle_fill': - CupertinoIcons.ellipsis_vertical_circle_fill, - 'envelope': CupertinoIcons.envelope, - 'envelope_badge': CupertinoIcons.envelope_badge, - 'envelope_badge_fill': CupertinoIcons.envelope_badge_fill, - 'envelope_circle': CupertinoIcons.envelope_circle, - 'envelope_circle_fill': CupertinoIcons.envelope_circle_fill, - 'envelope_fill': CupertinoIcons.envelope_fill, - 'envelope_open': CupertinoIcons.envelope_open, - 'envelope_open_fill': CupertinoIcons.envelope_open_fill, - 'equal': CupertinoIcons.equal, - 'equal_circle': CupertinoIcons.equal_circle, - 'equal_circle_fill': CupertinoIcons.equal_circle_fill, - 'equal_square': CupertinoIcons.equal_square, - 'equal_square_fill': CupertinoIcons.equal_square_fill, - 'escape': CupertinoIcons.escape, - 'exclamationmark': CupertinoIcons.exclamationmark, - 'exclamationmark_bubble': CupertinoIcons.exclamationmark_bubble, - 'exclamationmark_bubble_fill': - CupertinoIcons.exclamationmark_bubble_fill, - 'exclamationmark_circle': CupertinoIcons.exclamationmark_circle, - 'exclamationmark_circle_fill': - CupertinoIcons.exclamationmark_circle_fill, - 'exclamationmark_octagon': CupertinoIcons.exclamationmark_octagon, - 'exclamationmark_octagon_fill': - CupertinoIcons.exclamationmark_octagon_fill, - 'exclamationmark_shield': CupertinoIcons.exclamationmark_shield, - 'exclamationmark_shield_fill': - CupertinoIcons.exclamationmark_shield_fill, - 'exclamationmark_square': CupertinoIcons.exclamationmark_square, - 'exclamationmark_square_fill': - CupertinoIcons.exclamationmark_square_fill, - 'exclamationmark_triangle': CupertinoIcons.exclamationmark_triangle, - 'exclamationmark_triangle_fill': - CupertinoIcons.exclamationmark_triangle_fill, - 'eye_fill': CupertinoIcons.eye_fill, - 'eye_slash': CupertinoIcons.eye_slash, - 'eye_slash_fill': CupertinoIcons.eye_slash_fill, - 'eyedropper': CupertinoIcons.eyedropper, - 'eyedropper_full': CupertinoIcons.eyedropper_full, - 'eyedropper_halffull': CupertinoIcons.eyedropper_halffull, - 'eyeglasses': CupertinoIcons.eyeglasses, - 'f_cursive': CupertinoIcons.f_cursive, - 'f_cursive_circle': CupertinoIcons.f_cursive_circle, - 'f_cursive_circle_fill': CupertinoIcons.f_cursive_circle_fill, - 'film': CupertinoIcons.film, - 'film_fill': CupertinoIcons.film_fill, - 'flag_circle': CupertinoIcons.flag_circle, - 'flag_circle_fill': CupertinoIcons.flag_circle_fill, - 'flag_fill': CupertinoIcons.flag_fill, - 'flag_slash': CupertinoIcons.flag_slash, - 'flag_slash_fill': CupertinoIcons.flag_slash_fill, - 'flame': CupertinoIcons.flame, - 'flame_fill': CupertinoIcons.flame_fill, - 'floppy_disk': CupertinoIcons.floppy_disk, - 'flowchart': CupertinoIcons.flowchart, - 'flowchart_fill': CupertinoIcons.flowchart_fill, - 'folder_badge_minus': CupertinoIcons.folder_badge_minus, - 'folder_badge_person_crop': CupertinoIcons.folder_badge_person_crop, - 'folder_badge_plus': CupertinoIcons.folder_badge_plus, - 'folder_circle': CupertinoIcons.folder_circle, - 'folder_circle_fill': CupertinoIcons.folder_circle_fill, - 'folder_fill': CupertinoIcons.folder_fill, - 'folder_fill_badge_minus': CupertinoIcons.folder_fill_badge_minus, - 'folder_fill_badge_person_crop': - CupertinoIcons.folder_fill_badge_person_crop, - 'folder_fill_badge_plus': CupertinoIcons.folder_fill_badge_plus, - 'forward_end': CupertinoIcons.forward_end, - 'forward_end_alt': CupertinoIcons.forward_end_alt, - 'forward_end_alt_fill': CupertinoIcons.forward_end_alt_fill, - 'forward_end_fill': CupertinoIcons.forward_end_fill, - 'forward_fill': CupertinoIcons.forward_fill, - 'function': CupertinoIcons.function, - 'fx': CupertinoIcons.fx, - 'gamecontroller': CupertinoIcons.gamecontroller, - 'gamecontroller_alt_fill': CupertinoIcons.gamecontroller_alt_fill, - 'gamecontroller_fill': CupertinoIcons.gamecontroller_fill, - 'gauge': CupertinoIcons.gauge, - 'gauge_badge_minus': CupertinoIcons.gauge_badge_minus, - 'gauge_badge_plus': CupertinoIcons.gauge_badge_plus, - 'gear_alt': CupertinoIcons.gear_alt, - 'gear_alt_fill': CupertinoIcons.gear_alt_fill, - 'gift': CupertinoIcons.gift, - 'gift_alt': CupertinoIcons.gift_alt, - 'gift_alt_fill': CupertinoIcons.gift_alt_fill, - 'gift_fill': CupertinoIcons.gift_fill, - 'globe': CupertinoIcons.globe, - 'gobackward': CupertinoIcons.gobackward, - 'gobackward_10': CupertinoIcons.gobackward_10, - 'gobackward_15': CupertinoIcons.gobackward_15, - 'gobackward_30': CupertinoIcons.gobackward_30, - 'gobackward_45': CupertinoIcons.gobackward_45, - 'gobackward_60': CupertinoIcons.gobackward_60, - 'gobackward_75': CupertinoIcons.gobackward_75, - 'gobackward_90': CupertinoIcons.gobackward_90, - 'gobackward_minus': CupertinoIcons.gobackward_minus, - 'goforward': CupertinoIcons.goforward, - 'goforward_10': CupertinoIcons.goforward_10, - 'goforward_15': CupertinoIcons.goforward_15, - 'goforward_30': CupertinoIcons.goforward_30, - 'goforward_45': CupertinoIcons.goforward_45, - 'goforward_60': CupertinoIcons.goforward_60, - 'goforward_75': CupertinoIcons.goforward_75, - 'goforward_90': CupertinoIcons.goforward_90, - 'goforward_plus': CupertinoIcons.goforward_plus, - 'graph_circle': CupertinoIcons.graph_circle, - 'graph_circle_fill': CupertinoIcons.graph_circle_fill, - 'graph_square': CupertinoIcons.graph_square, - 'graph_square_fill': CupertinoIcons.graph_square_fill, - 'greaterthan': CupertinoIcons.greaterthan, - 'greaterthan_circle': CupertinoIcons.greaterthan_circle, - 'greaterthan_circle_fill': CupertinoIcons.greaterthan_circle_fill, - 'greaterthan_square': CupertinoIcons.greaterthan_square, - 'greaterthan_square_fill': CupertinoIcons.greaterthan_square_fill, - 'grid': CupertinoIcons.grid, - 'grid_circle': CupertinoIcons.grid_circle, - 'grid_circle_fill': CupertinoIcons.grid_circle_fill, - 'guitars': CupertinoIcons.guitars, - 'hammer': CupertinoIcons.hammer, - 'hammer_fill': CupertinoIcons.hammer_fill, - 'hand_draw': CupertinoIcons.hand_draw, - 'hand_draw_fill': CupertinoIcons.hand_draw_fill, - 'hand_point_left': CupertinoIcons.hand_point_left, - 'hand_point_left_fill': CupertinoIcons.hand_point_left_fill, - 'hand_point_right': CupertinoIcons.hand_point_right, - 'hand_point_right_fill': CupertinoIcons.hand_point_right_fill, - 'hand_raised': CupertinoIcons.hand_raised, - 'hand_raised_fill': CupertinoIcons.hand_raised_fill, - 'hand_raised_slash': CupertinoIcons.hand_raised_slash, - 'hand_raised_slash_fill': CupertinoIcons.hand_raised_slash_fill, - 'hand_thumbsdown': CupertinoIcons.hand_thumbsdown, - 'hand_thumbsdown_fill': CupertinoIcons.hand_thumbsdown_fill, - 'hand_thumbsup': CupertinoIcons.hand_thumbsup, - 'hand_thumbsup_fill': CupertinoIcons.hand_thumbsup_fill, - 'hare': CupertinoIcons.hare, - 'hare_fill': CupertinoIcons.hare_fill, - 'headphones': CupertinoIcons.headphones, - 'heart_circle': CupertinoIcons.heart_circle, - 'heart_circle_fill': CupertinoIcons.heart_circle_fill, - 'heart_fill': CupertinoIcons.heart_fill, - 'heart_slash': CupertinoIcons.heart_slash, - 'heart_slash_circle': CupertinoIcons.heart_slash_circle, - 'heart_slash_circle_fill': CupertinoIcons.heart_slash_circle_fill, - 'heart_slash_fill': CupertinoIcons.heart_slash_fill, - 'helm': CupertinoIcons.helm, - 'hexagon': CupertinoIcons.hexagon, - 'hexagon_fill': CupertinoIcons.hexagon_fill, - 'hifispeaker': CupertinoIcons.hifispeaker, - 'hifispeaker_fill': CupertinoIcons.hifispeaker_fill, - 'hourglass': CupertinoIcons.hourglass, - 'hourglass_bottomhalf_fill': CupertinoIcons.hourglass_bottomhalf_fill, - 'hourglass_tophalf_fill': CupertinoIcons.hourglass_tophalf_fill, - 'house': CupertinoIcons.house, - 'house_alt': CupertinoIcons.house_alt, - 'house_alt_fill': CupertinoIcons.house_alt_fill, - 'house_fill': CupertinoIcons.house_fill, - 'hurricane': CupertinoIcons.hurricane, - 'increase_indent': CupertinoIcons.increase_indent, - 'increase_quotelevel': CupertinoIcons.increase_quotelevel, - 'infinite': CupertinoIcons.infinite, - 'info_circle': CupertinoIcons.info_circle, - 'info_circle_fill': CupertinoIcons.info_circle_fill, - 'italic': CupertinoIcons.italic, - 'keyboard': CupertinoIcons.keyboard, - 'keyboard_chevron_compact_down': - CupertinoIcons.keyboard_chevron_compact_down, - 'largecircle_fill_circle': CupertinoIcons.largecircle_fill_circle, - 'lasso': CupertinoIcons.lasso, - 'layers': CupertinoIcons.layers, - 'layers_alt': CupertinoIcons.layers_alt, - 'layers_alt_fill': CupertinoIcons.layers_alt_fill, - 'layers_fill': CupertinoIcons.layers_fill, - 'leaf_arrow_circlepath': CupertinoIcons.leaf_arrow_circlepath, - 'lessthan': CupertinoIcons.lessthan, - 'lessthan_circle': CupertinoIcons.lessthan_circle, - 'lessthan_circle_fill': CupertinoIcons.lessthan_circle_fill, - 'lessthan_square': CupertinoIcons.lessthan_square, - 'lessthan_square_fill': CupertinoIcons.lessthan_square_fill, - 'light_max': CupertinoIcons.light_max, - 'light_min': CupertinoIcons.light_min, - 'lightbulb': CupertinoIcons.lightbulb, - 'lightbulb_fill': CupertinoIcons.lightbulb_fill, - 'lightbulb_slash': CupertinoIcons.lightbulb_slash, - 'lightbulb_slash_fill': CupertinoIcons.lightbulb_slash_fill, - 'line_horizontal_3': CupertinoIcons.line_horizontal_3, - 'line_horizontal_3_decrease': CupertinoIcons.line_horizontal_3_decrease, - 'line_horizontal_3_decrease_circle': - CupertinoIcons.line_horizontal_3_decrease_circle, - 'line_horizontal_3_decrease_circle_fill': - CupertinoIcons.line_horizontal_3_decrease_circle_fill, - 'link': CupertinoIcons.link, - 'link_circle': CupertinoIcons.link_circle, - 'link_circle_fill': CupertinoIcons.link_circle_fill, - 'list_bullet': CupertinoIcons.list_bullet, - 'list_bullet_below_rectangle': - CupertinoIcons.list_bullet_below_rectangle, - 'list_bullet_indent': CupertinoIcons.list_bullet_indent, - 'list_dash': CupertinoIcons.list_dash, - 'list_number': CupertinoIcons.list_number, - 'list_number_rtl': CupertinoIcons.list_number_rtl, - 'location_circle': CupertinoIcons.location_circle, - 'location_circle_fill': CupertinoIcons.location_circle_fill, - 'location_fill': CupertinoIcons.location_fill, - 'location_north': CupertinoIcons.location_north, - 'location_north_fill': CupertinoIcons.location_north_fill, - 'location_north_line': CupertinoIcons.location_north_line, - 'location_north_line_fill': CupertinoIcons.location_north_line_fill, - 'location_slash': CupertinoIcons.location_slash, - 'location_slash_fill': CupertinoIcons.location_slash_fill, - 'lock': CupertinoIcons.lock, - 'lock_circle': CupertinoIcons.lock_circle, - 'lock_circle_fill': CupertinoIcons.lock_circle_fill, - 'lock_fill': CupertinoIcons.lock_fill, - 'lock_open': CupertinoIcons.lock_open, - 'lock_open_fill': CupertinoIcons.lock_open_fill, - 'lock_rotation': CupertinoIcons.lock_rotation, - 'lock_rotation_open': CupertinoIcons.lock_rotation_open, - 'lock_shield': CupertinoIcons.lock_shield, - 'lock_shield_fill': CupertinoIcons.lock_shield_fill, - 'lock_slash': CupertinoIcons.lock_slash, - 'lock_slash_fill': CupertinoIcons.lock_slash_fill, - 'macwindow': CupertinoIcons.macwindow, - 'map': CupertinoIcons.map, - 'map_fill': CupertinoIcons.map_fill, - 'map_pin': CupertinoIcons.map_pin, - 'map_pin_ellipse': CupertinoIcons.map_pin_ellipse, - 'map_pin_slash': CupertinoIcons.map_pin_slash, - 'memories': CupertinoIcons.memories, - 'memories_badge_minus': CupertinoIcons.memories_badge_minus, - 'memories_badge_plus': CupertinoIcons.memories_badge_plus, - 'metronome': CupertinoIcons.metronome, - 'mic_circle': CupertinoIcons.mic_circle, - 'mic_circle_fill': CupertinoIcons.mic_circle_fill, - 'mic_fill': CupertinoIcons.mic_fill, - 'mic_slash': CupertinoIcons.mic_slash, - 'mic_slash_fill': CupertinoIcons.mic_slash_fill, - 'minus': CupertinoIcons.minus, - 'minus_circle': CupertinoIcons.minus_circle, - 'minus_circle_fill': CupertinoIcons.minus_circle_fill, - 'minus_rectangle': CupertinoIcons.minus_rectangle, - 'minus_rectangle_fill': CupertinoIcons.minus_rectangle_fill, - 'minus_slash_plus': CupertinoIcons.minus_slash_plus, - 'minus_square': CupertinoIcons.minus_square, - 'minus_square_fill': CupertinoIcons.minus_square_fill, - 'money_dollar': CupertinoIcons.money_dollar, - 'money_dollar_circle': CupertinoIcons.money_dollar_circle, - 'money_dollar_circle_fill': CupertinoIcons.money_dollar_circle_fill, - 'money_euro': CupertinoIcons.money_euro, - 'money_euro_circle': CupertinoIcons.money_euro_circle, - 'money_euro_circle_fill': CupertinoIcons.money_euro_circle_fill, - 'money_pound': CupertinoIcons.money_pound, - 'money_pound_circle': CupertinoIcons.money_pound_circle, - 'money_pound_circle_fill': CupertinoIcons.money_pound_circle_fill, - 'money_rubl': CupertinoIcons.money_rubl, - 'money_rubl_circle': CupertinoIcons.money_rubl_circle, - 'money_rubl_circle_fill': CupertinoIcons.money_rubl_circle_fill, - 'money_yen': CupertinoIcons.money_yen, - 'money_yen_circle': CupertinoIcons.money_yen_circle, - 'money_yen_circle_fill': CupertinoIcons.money_yen_circle_fill, - 'moon': CupertinoIcons.moon, - 'moon_circle': CupertinoIcons.moon_circle, - 'moon_circle_fill': CupertinoIcons.moon_circle_fill, - 'moon_fill': CupertinoIcons.moon_fill, - 'moon_stars': CupertinoIcons.moon_stars, - 'moon_stars_fill': CupertinoIcons.moon_stars_fill, - 'moon_zzz': CupertinoIcons.moon_zzz, - 'moon_zzz_fill': CupertinoIcons.moon_zzz_fill, - 'move': CupertinoIcons.move, - 'multiply': CupertinoIcons.multiply, - 'multiply_circle': CupertinoIcons.multiply_circle, - 'multiply_circle_fill': CupertinoIcons.multiply_circle_fill, - 'multiply_square': CupertinoIcons.multiply_square, - 'multiply_square_fill': CupertinoIcons.multiply_square_fill, - 'music_albums': CupertinoIcons.music_albums, - 'music_albums_fill': CupertinoIcons.music_albums_fill, - 'music_house': CupertinoIcons.music_house, - 'music_house_fill': CupertinoIcons.music_house_fill, - 'music_mic': CupertinoIcons.music_mic, - 'music_note_2': CupertinoIcons.music_note_2, - 'music_note_list': CupertinoIcons.music_note_list, - 'nosign': CupertinoIcons.nosign, - 'number': CupertinoIcons.number, - 'number_circle': CupertinoIcons.number_circle, - 'number_circle_fill': CupertinoIcons.number_circle_fill, - 'number_square': CupertinoIcons.number_square, - 'number_square_fill': CupertinoIcons.number_square_fill, - 'option': CupertinoIcons.option, - 'paintbrush': CupertinoIcons.paintbrush, - 'paintbrush_fill': CupertinoIcons.paintbrush_fill, - 'pano': CupertinoIcons.pano, - 'pano_fill': CupertinoIcons.pano_fill, - 'paperclip': CupertinoIcons.paperclip, - 'paperplane': CupertinoIcons.paperplane, - 'paperplane_fill': CupertinoIcons.paperplane_fill, - 'paragraph': CupertinoIcons.paragraph, - 'pause_circle': CupertinoIcons.pause_circle, - 'pause_circle_fill': CupertinoIcons.pause_circle_fill, - 'pause_fill': CupertinoIcons.pause_fill, - 'pause_rectangle': CupertinoIcons.pause_rectangle, - 'pause_rectangle_fill': CupertinoIcons.pause_rectangle_fill, - 'pencil_circle': CupertinoIcons.pencil_circle, - 'pencil_circle_fill': CupertinoIcons.pencil_circle_fill, - 'pencil_ellipsis_rectangle': CupertinoIcons.pencil_ellipsis_rectangle, - 'pencil_outline': CupertinoIcons.pencil_outline, - 'pencil_slash': CupertinoIcons.pencil_slash, - 'percent': CupertinoIcons.percent, - 'person_2': CupertinoIcons.person_2, - 'person_2_alt': CupertinoIcons.person_2_alt, - 'person_2_fill': CupertinoIcons.person_2_fill, - 'person_2_square_stack': CupertinoIcons.person_2_square_stack, - 'person_2_square_stack_fill': CupertinoIcons.person_2_square_stack_fill, - 'person_3': CupertinoIcons.person_3, - 'person_3_fill': CupertinoIcons.person_3_fill, - 'person_alt': CupertinoIcons.person_alt, - 'person_alt_circle': CupertinoIcons.person_alt_circle, - 'person_alt_circle_fill': CupertinoIcons.person_alt_circle_fill, - 'person_badge_minus': CupertinoIcons.person_badge_minus, - 'person_badge_minus_fill': CupertinoIcons.person_badge_minus_fill, - 'person_badge_plus': CupertinoIcons.person_badge_plus, - 'person_badge_plus_fill': CupertinoIcons.person_badge_plus_fill, - 'person_circle': CupertinoIcons.person_circle, - 'person_circle_fill': CupertinoIcons.person_circle_fill, - 'person_crop_circle': CupertinoIcons.person_crop_circle, - 'person_crop_circle_badge_checkmark': - CupertinoIcons.person_crop_circle_badge_checkmark, - 'person_crop_circle_badge_exclam': - CupertinoIcons.person_crop_circle_badge_exclam, - 'person_crop_circle_badge_minus': - CupertinoIcons.person_crop_circle_badge_minus, - 'person_crop_circle_badge_plus': - CupertinoIcons.person_crop_circle_badge_plus, - 'person_crop_circle_badge_xmark': - CupertinoIcons.person_crop_circle_badge_xmark, - 'person_crop_circle_fill': CupertinoIcons.person_crop_circle_fill, - 'person_crop_circle_fill_badge_checkmark': - CupertinoIcons.person_crop_circle_fill_badge_checkmark, - 'person_crop_circle_fill_badge_exclam': - CupertinoIcons.person_crop_circle_fill_badge_exclam, - 'person_crop_circle_fill_badge_minus': - CupertinoIcons.person_crop_circle_fill_badge_minus, - 'person_crop_circle_fill_badge_plus': - CupertinoIcons.person_crop_circle_fill_badge_plus, - 'person_crop_circle_fill_badge_xmark': - CupertinoIcons.person_crop_circle_fill_badge_xmark, - 'person_crop_rectangle': CupertinoIcons.person_crop_rectangle, - 'person_crop_rectangle_fill': CupertinoIcons.person_crop_rectangle_fill, - 'person_crop_square': CupertinoIcons.person_crop_square, - 'person_crop_square_fill': CupertinoIcons.person_crop_square_fill, - 'person_fill': CupertinoIcons.person_fill, - 'personalhotspot': CupertinoIcons.personalhotspot, - 'perspective': CupertinoIcons.perspective, - 'phone_arrow_down_left': CupertinoIcons.phone_arrow_down_left, - 'phone_arrow_right': CupertinoIcons.phone_arrow_right, - 'phone_arrow_up_right': CupertinoIcons.phone_arrow_up_right, - 'phone_badge_plus': CupertinoIcons.phone_badge_plus, - 'phone_circle': CupertinoIcons.phone_circle, - 'phone_circle_fill': CupertinoIcons.phone_circle_fill, - 'phone_down': CupertinoIcons.phone_down, - 'phone_down_circle': CupertinoIcons.phone_down_circle, - 'phone_down_circle_fill': CupertinoIcons.phone_down_circle_fill, - 'phone_down_fill': CupertinoIcons.phone_down_fill, - 'phone_fill': CupertinoIcons.phone_fill, - 'phone_fill_arrow_down_left': CupertinoIcons.phone_fill_arrow_down_left, - 'phone_fill_arrow_right': CupertinoIcons.phone_fill_arrow_right, - 'phone_fill_arrow_up_right': CupertinoIcons.phone_fill_arrow_up_right, - 'phone_fill_badge_plus': CupertinoIcons.phone_fill_badge_plus, - 'photo': CupertinoIcons.photo, - 'photo_fill': CupertinoIcons.photo_fill, - 'photo_fill_on_rectangle_fill': - CupertinoIcons.photo_fill_on_rectangle_fill, - 'photo_on_rectangle': CupertinoIcons.photo_on_rectangle, - 'piano': CupertinoIcons.piano, - 'pin': CupertinoIcons.pin, - 'pin_fill': CupertinoIcons.pin_fill, - 'pin_slash': CupertinoIcons.pin_slash, - 'pin_slash_fill': CupertinoIcons.pin_slash_fill, - 'placemark': CupertinoIcons.placemark, - 'placemark_fill': CupertinoIcons.placemark_fill, - 'play': CupertinoIcons.play, - 'play_circle': CupertinoIcons.play_circle, - 'play_circle_fill': CupertinoIcons.play_circle_fill, - 'play_fill': CupertinoIcons.play_fill, - 'play_rectangle': CupertinoIcons.play_rectangle, - 'play_rectangle_fill': CupertinoIcons.play_rectangle_fill, - 'playpause': CupertinoIcons.playpause, - 'playpause_fill': CupertinoIcons.playpause_fill, - 'plus': CupertinoIcons.plus, - 'plus_app': CupertinoIcons.plus_app, - 'plus_app_fill': CupertinoIcons.plus_app_fill, - 'plus_bubble': CupertinoIcons.plus_bubble, - 'plus_bubble_fill': CupertinoIcons.plus_bubble_fill, - 'plus_circle': CupertinoIcons.plus_circle, - 'plus_circle_fill': CupertinoIcons.plus_circle_fill, - 'plus_rectangle': CupertinoIcons.plus_rectangle, - 'plus_rectangle_fill': CupertinoIcons.plus_rectangle_fill, - 'plus_rectangle_fill_on_rectangle_fill': - CupertinoIcons.plus_rectangle_fill_on_rectangle_fill, - 'plus_rectangle_on_rectangle': - CupertinoIcons.plus_rectangle_on_rectangle, - 'plus_slash_minus': CupertinoIcons.plus_slash_minus, - 'plus_square': CupertinoIcons.plus_square, - 'plus_square_fill': CupertinoIcons.plus_square_fill, - 'plus_square_fill_on_square_fill': - CupertinoIcons.plus_square_fill_on_square_fill, - 'plus_square_on_square': CupertinoIcons.plus_square_on_square, - 'plusminus': CupertinoIcons.plusminus, - 'plusminus_circle': CupertinoIcons.plusminus_circle, - 'plusminus_circle_fill': CupertinoIcons.plusminus_circle_fill, - 'power': CupertinoIcons.power, - 'printer': CupertinoIcons.printer, - 'printer_fill': CupertinoIcons.printer_fill, - 'projective': CupertinoIcons.projective, - 'purchased': CupertinoIcons.purchased, - 'purchased_circle': CupertinoIcons.purchased_circle, - 'purchased_circle_fill': CupertinoIcons.purchased_circle_fill, - 'qrcode': CupertinoIcons.qrcode, - 'qrcode_viewfinder': CupertinoIcons.qrcode_viewfinder, - 'question': CupertinoIcons.question, - 'question_circle': CupertinoIcons.question_circle, - 'question_circle_fill': CupertinoIcons.question_circle_fill, - 'question_diamond': CupertinoIcons.question_diamond, - 'question_diamond_fill': CupertinoIcons.question_diamond_fill, - 'question_square': CupertinoIcons.question_square, - 'question_square_fill': CupertinoIcons.question_square_fill, - 'quote_bubble': CupertinoIcons.quote_bubble, - 'quote_bubble_fill': CupertinoIcons.quote_bubble_fill, - 'radiowaves_left': CupertinoIcons.radiowaves_left, - 'radiowaves_right': CupertinoIcons.radiowaves_right, - 'rays': CupertinoIcons.rays, - 'recordingtape': CupertinoIcons.recordingtape, - 'rectangle': CupertinoIcons.rectangle, - 'rectangle_3_offgrid': CupertinoIcons.rectangle_3_offgrid, - 'rectangle_3_offgrid_fill': CupertinoIcons.rectangle_3_offgrid_fill, - 'rectangle_arrow_up_right_arrow_down_left': - CupertinoIcons.rectangle_arrow_up_right_arrow_down_left, - 'rectangle_arrow_up_right_arrow_down_left_slash': - CupertinoIcons.rectangle_arrow_up_right_arrow_down_left_slash, - 'rectangle_badge_checkmark': CupertinoIcons.rectangle_badge_checkmark, - 'rectangle_badge_xmark': CupertinoIcons.rectangle_badge_xmark, - 'rectangle_compress_vertical': - CupertinoIcons.rectangle_compress_vertical, - 'rectangle_dock': CupertinoIcons.rectangle_dock, - 'rectangle_expand_vertical': CupertinoIcons.rectangle_expand_vertical, - 'rectangle_fill': CupertinoIcons.rectangle_fill, - 'rectangle_fill_badge_checkmark': - CupertinoIcons.rectangle_fill_badge_checkmark, - 'rectangle_fill_badge_xmark': CupertinoIcons.rectangle_fill_badge_xmark, - 'rectangle_fill_on_rectangle_angled_fill': - CupertinoIcons.rectangle_fill_on_rectangle_angled_fill, - 'rectangle_fill_on_rectangle_fill': - CupertinoIcons.rectangle_fill_on_rectangle_fill, - 'rectangle_grid_1x2': CupertinoIcons.rectangle_grid_1x2, - 'rectangle_grid_1x2_fill': CupertinoIcons.rectangle_grid_1x2_fill, - 'rectangle_grid_2x2': CupertinoIcons.rectangle_grid_2x2, - 'rectangle_grid_2x2_fill': CupertinoIcons.rectangle_grid_2x2_fill, - 'rectangle_grid_3x2': CupertinoIcons.rectangle_grid_3x2, - 'rectangle_grid_3x2_fill': CupertinoIcons.rectangle_grid_3x2_fill, - 'rectangle_on_rectangle': CupertinoIcons.rectangle_on_rectangle, - 'rectangle_on_rectangle_angled': - CupertinoIcons.rectangle_on_rectangle_angled, - 'rectangle_paperclip': CupertinoIcons.rectangle_paperclip, - 'rectangle_split_3x1': CupertinoIcons.rectangle_split_3x1, - 'rectangle_split_3x1_fill': CupertinoIcons.rectangle_split_3x1_fill, - 'rectangle_split_3x3': CupertinoIcons.rectangle_split_3x3, - 'rectangle_split_3x3_fill': CupertinoIcons.rectangle_split_3x3_fill, - 'rectangle_stack': CupertinoIcons.rectangle_stack, - 'rectangle_stack_badge_minus': - CupertinoIcons.rectangle_stack_badge_minus, - 'rectangle_stack_badge_person_crop': - CupertinoIcons.rectangle_stack_badge_person_crop, - 'rectangle_stack_badge_plus': CupertinoIcons.rectangle_stack_badge_plus, - 'rectangle_stack_fill': CupertinoIcons.rectangle_stack_fill, - 'rectangle_stack_fill_badge_minus': - CupertinoIcons.rectangle_stack_fill_badge_minus, - 'rectangle_stack_fill_badge_person_crop': - CupertinoIcons.rectangle_stack_fill_badge_person_crop, - 'rectangle_stack_fill_badge_plus': - CupertinoIcons.rectangle_stack_fill_badge_plus, - 'rectangle_stack_person_crop': - CupertinoIcons.rectangle_stack_person_crop, - 'rectangle_stack_person_crop_fill': - CupertinoIcons.rectangle_stack_person_crop_fill, - 'repeat': CupertinoIcons.repeat, - 'repeat_1': CupertinoIcons.repeat_1, - 'resize': CupertinoIcons.resize, - 'resize_h': CupertinoIcons.resize_h, - 'resize_v': CupertinoIcons.resize_v, - 'return_icon': CupertinoIcons.return_icon, - 'rhombus': CupertinoIcons.rhombus, - 'rhombus_fill': CupertinoIcons.rhombus_fill, - 'rocket': CupertinoIcons.rocket, - 'rocket_fill': CupertinoIcons.rocket_fill, - 'rosette': CupertinoIcons.rosette, - 'rotate_left': CupertinoIcons.rotate_left, - 'rotate_left_fill': CupertinoIcons.rotate_left_fill, - 'rotate_right': CupertinoIcons.rotate_right, - 'rotate_right_fill': CupertinoIcons.rotate_right_fill, - 'scissors': CupertinoIcons.scissors, - 'scissors_alt': CupertinoIcons.scissors_alt, - 'scope': CupertinoIcons.scope, - 'scribble': CupertinoIcons.scribble, - 'search_circle': CupertinoIcons.search_circle, - 'search_circle_fill': CupertinoIcons.search_circle_fill, - 'selection_pin_in_out': CupertinoIcons.selection_pin_in_out, - 'shield': CupertinoIcons.shield, - 'shield_fill': CupertinoIcons.shield_fill, - 'shield_lefthalf_fill': CupertinoIcons.shield_lefthalf_fill, - 'shield_slash': CupertinoIcons.shield_slash, - 'shield_slash_fill': CupertinoIcons.shield_slash_fill, - 'shift': CupertinoIcons.shift, - 'shift_fill': CupertinoIcons.shift_fill, - 'sidebar_left': CupertinoIcons.sidebar_left, - 'sidebar_right': CupertinoIcons.sidebar_right, - 'signature': CupertinoIcons.signature, - 'skew': CupertinoIcons.skew, - 'slash_circle': CupertinoIcons.slash_circle, - 'slash_circle_fill': CupertinoIcons.slash_circle_fill, - 'slider_horizontal_3': CupertinoIcons.slider_horizontal_3, - 'slider_horizontal_below_rectangle': - CupertinoIcons.slider_horizontal_below_rectangle, - 'slowmo': CupertinoIcons.slowmo, - 'smallcircle_circle': CupertinoIcons.smallcircle_circle, - 'smallcircle_circle_fill': CupertinoIcons.smallcircle_circle_fill, - 'smallcircle_fill_circle': CupertinoIcons.smallcircle_fill_circle, - 'smallcircle_fill_circle_fill': - CupertinoIcons.smallcircle_fill_circle_fill, - 'smiley': CupertinoIcons.smiley, - 'smiley_fill': CupertinoIcons.smiley_fill, - 'smoke': CupertinoIcons.smoke, - 'smoke_fill': CupertinoIcons.smoke_fill, - 'snow': CupertinoIcons.snow, - 'sort_down': CupertinoIcons.sort_down, - 'sort_down_circle': CupertinoIcons.sort_down_circle, - 'sort_down_circle_fill': CupertinoIcons.sort_down_circle_fill, - 'sort_up': CupertinoIcons.sort_up, - 'sort_up_circle': CupertinoIcons.sort_up_circle, - 'sort_up_circle_fill': CupertinoIcons.sort_up_circle_fill, - 'sparkles': CupertinoIcons.sparkles, - 'speaker': CupertinoIcons.speaker, - 'speaker_1': CupertinoIcons.speaker_1, - 'speaker_1_fill': CupertinoIcons.speaker_1_fill, - 'speaker_2': CupertinoIcons.speaker_2, - 'speaker_2_fill': CupertinoIcons.speaker_2_fill, - 'speaker_3': CupertinoIcons.speaker_3, - 'speaker_3_fill': CupertinoIcons.speaker_3_fill, - 'speaker_fill': CupertinoIcons.speaker_fill, - 'speaker_slash': CupertinoIcons.speaker_slash, - 'speaker_slash_fill': CupertinoIcons.speaker_slash_fill, - 'speaker_slash_fill_rtl': CupertinoIcons.speaker_slash_fill_rtl, - 'speaker_slash_rtl': CupertinoIcons.speaker_slash_rtl, - 'speaker_zzz': CupertinoIcons.speaker_zzz, - 'speaker_zzz_fill': CupertinoIcons.speaker_zzz_fill, - 'speaker_zzz_fill_rtl': CupertinoIcons.speaker_zzz_fill_rtl, - 'speaker_zzz_rtl': CupertinoIcons.speaker_zzz_rtl, - 'speedometer': CupertinoIcons.speedometer, - 'sportscourt': CupertinoIcons.sportscourt, - 'sportscourt_fill': CupertinoIcons.sportscourt_fill, - 'square': CupertinoIcons.square, - 'square_arrow_down': CupertinoIcons.square_arrow_down, - 'square_arrow_down_fill': CupertinoIcons.square_arrow_down_fill, - 'square_arrow_down_on_square': - CupertinoIcons.square_arrow_down_on_square, - 'square_arrow_down_on_square_fill': - CupertinoIcons.square_arrow_down_on_square_fill, - 'square_arrow_left': CupertinoIcons.square_arrow_left, - 'square_arrow_left_fill': CupertinoIcons.square_arrow_left_fill, - 'square_arrow_right': CupertinoIcons.square_arrow_right, - 'square_arrow_right_fill': CupertinoIcons.square_arrow_right_fill, - 'square_arrow_up': CupertinoIcons.square_arrow_up, - 'square_arrow_up_fill': CupertinoIcons.square_arrow_up_fill, - 'square_arrow_up_on_square': CupertinoIcons.square_arrow_up_on_square, - 'square_arrow_up_on_square_fill': - CupertinoIcons.square_arrow_up_on_square_fill, - 'square_favorites': CupertinoIcons.square_favorites, - 'square_favorites_alt': CupertinoIcons.square_favorites_alt, - 'square_favorites_alt_fill': CupertinoIcons.square_favorites_alt_fill, - 'square_favorites_fill': CupertinoIcons.square_favorites_fill, - 'square_fill': CupertinoIcons.square_fill, - 'square_fill_line_vertical_square': - CupertinoIcons.square_fill_line_vertical_square, - 'square_fill_line_vertical_square_fill': - CupertinoIcons.square_fill_line_vertical_square_fill, - 'square_fill_on_circle_fill': CupertinoIcons.square_fill_on_circle_fill, - 'square_fill_on_square_fill': CupertinoIcons.square_fill_on_square_fill, - 'square_grid_2x2': CupertinoIcons.square_grid_2x2, - 'square_grid_2x2_fill': CupertinoIcons.square_grid_2x2_fill, - 'square_grid_3x2': CupertinoIcons.square_grid_3x2, - 'square_grid_3x2_fill': CupertinoIcons.square_grid_3x2_fill, - 'square_grid_4x3_fill': CupertinoIcons.square_grid_4x3_fill, - 'square_lefthalf_fill': CupertinoIcons.square_lefthalf_fill, - 'square_line_vertical_square': - CupertinoIcons.square_line_vertical_square, - 'square_line_vertical_square_fill': - CupertinoIcons.square_line_vertical_square_fill, - 'square_list': CupertinoIcons.square_list, - 'square_list_fill': CupertinoIcons.square_list_fill, - 'square_on_circle': CupertinoIcons.square_on_circle, - 'square_on_square': CupertinoIcons.square_on_square, - 'square_pencil': CupertinoIcons.square_pencil, - 'square_pencil_fill': CupertinoIcons.square_pencil_fill, - 'square_righthalf_fill': CupertinoIcons.square_righthalf_fill, - 'square_split_1x2': CupertinoIcons.square_split_1x2, - 'square_split_1x2_fill': CupertinoIcons.square_split_1x2_fill, - 'square_split_2x1': CupertinoIcons.square_split_2x1, - 'square_split_2x1_fill': CupertinoIcons.square_split_2x1_fill, - 'square_split_2x2': CupertinoIcons.square_split_2x2, - 'square_split_2x2_fill': CupertinoIcons.square_split_2x2_fill, - 'square_stack': CupertinoIcons.square_stack, - 'square_stack_3d_down_dottedline': - CupertinoIcons.square_stack_3d_down_dottedline, - 'square_stack_3d_down_right': CupertinoIcons.square_stack_3d_down_right, - 'square_stack_3d_down_right_fill': - CupertinoIcons.square_stack_3d_down_right_fill, - 'square_stack_3d_up': CupertinoIcons.square_stack_3d_up, - 'square_stack_3d_up_fill': CupertinoIcons.square_stack_3d_up_fill, - 'square_stack_3d_up_slash': CupertinoIcons.square_stack_3d_up_slash, - 'square_stack_3d_up_slash_fill': - CupertinoIcons.square_stack_3d_up_slash_fill, - 'square_stack_fill': CupertinoIcons.square_stack_fill, - 'squares_below_rectangle': CupertinoIcons.squares_below_rectangle, - 'star': CupertinoIcons.star, - 'star_circle': CupertinoIcons.star_circle, - 'star_circle_fill': CupertinoIcons.star_circle_fill, - 'star_fill': CupertinoIcons.star_fill, - 'star_lefthalf_fill': CupertinoIcons.star_lefthalf_fill, - 'star_slash': CupertinoIcons.star_slash, - 'star_slash_fill': CupertinoIcons.star_slash_fill, - 'staroflife': CupertinoIcons.staroflife, - 'staroflife_fill': CupertinoIcons.staroflife_fill, - 'stop': CupertinoIcons.stop, - 'stop_circle': CupertinoIcons.stop_circle, - 'stop_circle_fill': CupertinoIcons.stop_circle_fill, - 'stop_fill': CupertinoIcons.stop_fill, - 'stopwatch': CupertinoIcons.stopwatch, - 'stopwatch_fill': CupertinoIcons.stopwatch_fill, - 'strikethrough': CupertinoIcons.strikethrough, - 'suit_club': CupertinoIcons.suit_club, - 'suit_club_fill': CupertinoIcons.suit_club_fill, - 'suit_diamond': CupertinoIcons.suit_diamond, - 'suit_diamond_fill': CupertinoIcons.suit_diamond_fill, - 'suit_heart': CupertinoIcons.suit_heart, - 'suit_heart_fill': CupertinoIcons.suit_heart_fill, - 'suit_spade': CupertinoIcons.suit_spade, - 'suit_spade_fill': CupertinoIcons.suit_spade_fill, - 'sum': CupertinoIcons.sum, - 'sun_dust': CupertinoIcons.sun_dust, - 'sun_dust_fill': CupertinoIcons.sun_dust_fill, - 'sun_haze': CupertinoIcons.sun_haze, - 'sun_haze_fill': CupertinoIcons.sun_haze_fill, - 'sun_max': CupertinoIcons.sun_max, - 'sun_max_fill': CupertinoIcons.sun_max_fill, - 'sun_min': CupertinoIcons.sun_min, - 'sun_min_fill': CupertinoIcons.sun_min_fill, - 'sunrise': CupertinoIcons.sunrise, - 'sunrise_fill': CupertinoIcons.sunrise_fill, - 'sunset': CupertinoIcons.sunset, - 'sunset_fill': CupertinoIcons.sunset_fill, - 't_bubble': CupertinoIcons.t_bubble, - 't_bubble_fill': CupertinoIcons.t_bubble_fill, - 'table': CupertinoIcons.table, - 'table_badge_more': CupertinoIcons.table_badge_more, - 'table_badge_more_fill': CupertinoIcons.table_badge_more_fill, - 'table_fill': CupertinoIcons.table_fill, - 'tag_circle': CupertinoIcons.tag_circle, - 'tag_circle_fill': CupertinoIcons.tag_circle_fill, - 'tag_fill': CupertinoIcons.tag_fill, - 'text_aligncenter': CupertinoIcons.text_aligncenter, - 'text_alignleft': CupertinoIcons.text_alignleft, - 'text_alignright': CupertinoIcons.text_alignright, - 'text_append': CupertinoIcons.text_append, - 'text_badge_checkmark': CupertinoIcons.text_badge_checkmark, - 'text_badge_minus': CupertinoIcons.text_badge_minus, - 'text_badge_plus': CupertinoIcons.text_badge_plus, - 'text_badge_star': CupertinoIcons.text_badge_star, - 'text_badge_xmark': CupertinoIcons.text_badge_xmark, - 'text_bubble': CupertinoIcons.text_bubble, - 'text_bubble_fill': CupertinoIcons.text_bubble_fill, - 'text_cursor': CupertinoIcons.text_cursor, - 'text_insert': CupertinoIcons.text_insert, - 'text_justify': CupertinoIcons.text_justify, - 'text_justifyleft': CupertinoIcons.text_justifyleft, - 'text_justifyright': CupertinoIcons.text_justifyright, - 'text_quote': CupertinoIcons.text_quote, - 'textbox': CupertinoIcons.textbox, - 'textformat': CupertinoIcons.textformat, - 'textformat_123': CupertinoIcons.textformat_123, - 'textformat_abc': CupertinoIcons.textformat_abc, - 'textformat_abc_dottedunderline': - CupertinoIcons.textformat_abc_dottedunderline, - 'textformat_alt': CupertinoIcons.textformat_alt, - 'textformat_size': CupertinoIcons.textformat_size, - 'textformat_subscript': CupertinoIcons.textformat_subscript, - 'textformat_superscript': CupertinoIcons.textformat_superscript, - 'thermometer': CupertinoIcons.thermometer, - 'thermometer_snowflake': CupertinoIcons.thermometer_snowflake, - 'thermometer_sun': CupertinoIcons.thermometer_sun, - 'ticket': CupertinoIcons.ticket, - 'ticket_fill': CupertinoIcons.ticket_fill, - 'tickets': CupertinoIcons.tickets, - 'tickets_fill': CupertinoIcons.tickets_fill, - 'timelapse': CupertinoIcons.timelapse, - 'timer': CupertinoIcons.timer, - 'timer_fill': CupertinoIcons.timer_fill, - 'today': CupertinoIcons.today, - 'today_fill': CupertinoIcons.today_fill, - 'tornado': CupertinoIcons.tornado, - 'tortoise': CupertinoIcons.tortoise, - 'tortoise_fill': CupertinoIcons.tortoise_fill, - 'tram_fill': CupertinoIcons.tram_fill, - 'trash': CupertinoIcons.trash, - 'trash_circle': CupertinoIcons.trash_circle, - 'trash_circle_fill': CupertinoIcons.trash_circle_fill, - 'trash_fill': CupertinoIcons.trash_fill, - 'trash_slash': CupertinoIcons.trash_slash, - 'trash_slash_fill': CupertinoIcons.trash_slash_fill, - 'tray': CupertinoIcons.tray, - 'tray_2': CupertinoIcons.tray_2, - 'tray_2_fill': CupertinoIcons.tray_2_fill, - 'tray_arrow_down': CupertinoIcons.tray_arrow_down, - 'tray_arrow_down_fill': CupertinoIcons.tray_arrow_down_fill, - 'tray_arrow_up': CupertinoIcons.tray_arrow_up, - 'tray_arrow_up_fill': CupertinoIcons.tray_arrow_up_fill, - 'tray_fill': CupertinoIcons.tray_fill, - 'tray_full': CupertinoIcons.tray_full, - 'tray_full_fill': CupertinoIcons.tray_full_fill, - 'tree': CupertinoIcons.tree, - 'triangle': CupertinoIcons.triangle, - 'triangle_fill': CupertinoIcons.triangle_fill, - 'triangle_lefthalf_fill': CupertinoIcons.triangle_lefthalf_fill, - 'triangle_righthalf_fill': CupertinoIcons.triangle_righthalf_fill, - 'tropicalstorm': CupertinoIcons.tropicalstorm, - 'tuningfork': CupertinoIcons.tuningfork, - 'tv': CupertinoIcons.tv, - 'tv_circle': CupertinoIcons.tv_circle, - 'tv_circle_fill': CupertinoIcons.tv_circle_fill, - 'tv_fill': CupertinoIcons.tv_fill, - 'tv_music_note': CupertinoIcons.tv_music_note, - 'tv_music_note_fill': CupertinoIcons.tv_music_note_fill, - 'uiwindow_split_2x1': CupertinoIcons.uiwindow_split_2x1, - 'umbrella': CupertinoIcons.umbrella, - 'umbrella_fill': CupertinoIcons.umbrella_fill, - 'underline': CupertinoIcons.underline, - 'upload_circle': CupertinoIcons.upload_circle, - 'upload_circle_fill': CupertinoIcons.upload_circle_fill, - 'videocam': CupertinoIcons.videocam, - 'videocam_circle': CupertinoIcons.videocam_circle, - 'videocam_circle_fill': CupertinoIcons.videocam_circle_fill, - 'videocam_fill': CupertinoIcons.videocam_fill, - 'view_2d': CupertinoIcons.view_2d, - 'view_3d': CupertinoIcons.view_3d, - 'viewfinder': CupertinoIcons.viewfinder, - 'viewfinder_circle': CupertinoIcons.viewfinder_circle, - 'viewfinder_circle_fill': CupertinoIcons.viewfinder_circle_fill, - 'wand_rays': CupertinoIcons.wand_rays, - 'wand_rays_inverse': CupertinoIcons.wand_rays_inverse, - 'wand_stars': CupertinoIcons.wand_stars, - 'wand_stars_inverse': CupertinoIcons.wand_stars_inverse, - 'waveform': CupertinoIcons.waveform, - 'waveform_circle': CupertinoIcons.waveform_circle, - 'waveform_circle_fill': CupertinoIcons.waveform_circle_fill, - 'waveform_path': CupertinoIcons.waveform_path, - 'waveform_path_badge_minus': CupertinoIcons.waveform_path_badge_minus, - 'waveform_path_badge_plus': CupertinoIcons.waveform_path_badge_plus, - 'waveform_path_ecg': CupertinoIcons.waveform_path_ecg, - 'wifi': CupertinoIcons.wifi, - 'wifi_exclamationmark': CupertinoIcons.wifi_exclamationmark, - 'wifi_slash': CupertinoIcons.wifi_slash, - 'wind': CupertinoIcons.wind, - 'wind_snow': CupertinoIcons.wind_snow, - 'wrench': CupertinoIcons.wrench, - 'wrench_fill': CupertinoIcons.wrench_fill, - 'xmark': CupertinoIcons.xmark, - 'xmark_circle': CupertinoIcons.xmark_circle, - 'xmark_circle_fill': CupertinoIcons.xmark_circle_fill, - 'xmark_octagon': CupertinoIcons.xmark_octagon, - 'xmark_octagon_fill': CupertinoIcons.xmark_octagon_fill, - 'xmark_rectangle': CupertinoIcons.xmark_rectangle, - 'xmark_rectangle_fill': CupertinoIcons.xmark_rectangle_fill, - 'xmark_seal': CupertinoIcons.xmark_seal, - 'xmark_seal_fill': CupertinoIcons.xmark_seal_fill, - 'xmark_shield': CupertinoIcons.xmark_shield, - 'xmark_shield_fill': CupertinoIcons.xmark_shield_fill, - 'xmark_square': CupertinoIcons.xmark_square, - 'xmark_square_fill': CupertinoIcons.xmark_square_fill, - 'zoom_in': CupertinoIcons.zoom_in, - 'zoom_out': CupertinoIcons.zoom_out, - 'zzz': CupertinoIcons.zzz, - }, - 'CupertinoTheme.of': (props) => CupertinoTheme.of( - props['pa'][0], - ), - 'CupertinoTheme.brightnessOf': (props) => CupertinoTheme.brightnessOf( - props['pa'][0], - ), - 'CupertinoTheme.maybeBrightnessOf': (props) => - CupertinoTheme.maybeBrightnessOf( - props['pa'][0], - ), - 'DefaultCupertinoLocalizations': { - 'delegate': DefaultCupertinoLocalizations.delegate, - }, - 'DefaultCupertinoLocalizations.load': (props) => - DefaultCupertinoLocalizations.load( - props['pa'][0], - ), - 'DatePickerDateTimeOrder': { - 'values': DatePickerDateTimeOrder.values, - 'date_time_dayPeriod': DatePickerDateTimeOrder.date_time_dayPeriod, - 'date_dayPeriod_time': DatePickerDateTimeOrder.date_dayPeriod_time, - 'time_dayPeriod_date': DatePickerDateTimeOrder.time_dayPeriod_date, - 'dayPeriod_time_date': DatePickerDateTimeOrder.dayPeriod_time_date, - }, - 'DatePickerDateOrder': { - 'values': DatePickerDateOrder.values, - 'dmy': DatePickerDateOrder.dmy, - 'mdy': DatePickerDateOrder.mdy, - 'ymd': DatePickerDateOrder.ymd, - 'ydm': DatePickerDateOrder.ydm, - }, - }; + 'CupertinoTabScaffold': (props) => CupertinoTabScaffold( + key: props['key'], + tabBar: props['tabBar'], + tabBuilder: props['tabBuilder'], + controller: props['controller'], + backgroundColor: props['backgroundColor'], + resizeToAvoidBottomInset: props['resizeToAvoidBottomInset'] ?? true, + restorationId: props['restorationId'], + ), + 'CupertinoFormRow': (props) => CupertinoFormRow( + key: props['key'], + child: props['child'], + prefix: props['prefix'], + padding: props['padding'], + helper: props['helper'], + error: props['error'], + ), + 'CupertinoTextSelectionToolbar': (props) => CupertinoTextSelectionToolbar( + key: props['key'], + anchorAbove: props['anchorAbove'], + anchorBelow: props['anchorBelow'], + toolbarBuilder: props['toolbarBuilder'], + children: as(props['children'])!, // ?? _defaultToolbarBuilder, + ), + 'CupertinoTextSelectionToolbar#toolbarBuilder': (props) => ( + dynamic context, + dynamic anchor, + bool isAbove, + dynamic child, + ) { + return (props['block']) as dynamic; + }, + 'CupertinoTextSelectionToolbarButton': (props) => CupertinoTextSelectionToolbarButton( + key: props['key'], + onPressed: props['onPressed'], + child: props['child'], + ), + 'CupertinoTextSelectionToolbarButton.text': (props) => CupertinoTextSelectionToolbarButton.text( + key: props['key'], + onPressed: props['onPressed'], + text: props['text'], + ), + 'CupertinoSegmentedControl': (props) => CupertinoSegmentedControl( + key: props['key'], + children: props['children'], + onValueChanged: props['onValueChanged'], + groupValue: props['groupValue'], + unselectedColor: props['unselectedColor'], + selectedColor: props['selectedColor'], + borderColor: props['borderColor'], + pressedColor: props['pressedColor'], + padding: props['padding'], + ), + 'CupertinoColors': { + 'activeBlue': CupertinoColors.activeBlue, + 'activeGreen': CupertinoColors.activeGreen, + 'activeOrange': CupertinoColors.activeOrange, + 'white': CupertinoColors.white, + 'black': CupertinoColors.black, + 'lightBackgroundGray': CupertinoColors.lightBackgroundGray, + 'extraLightBackgroundGray': CupertinoColors.extraLightBackgroundGray, + 'darkBackgroundGray': CupertinoColors.darkBackgroundGray, + 'inactiveGray': CupertinoColors.inactiveGray, + 'destructiveRed': CupertinoColors.destructiveRed, + 'systemBlue': CupertinoColors.systemBlue, + 'systemGreen': CupertinoColors.systemGreen, + 'systemIndigo': CupertinoColors.systemIndigo, + 'systemOrange': CupertinoColors.systemOrange, + 'systemPink': CupertinoColors.systemPink, + 'systemPurple': CupertinoColors.systemPurple, + 'systemRed': CupertinoColors.systemRed, + 'systemTeal': CupertinoColors.systemTeal, + 'systemYellow': CupertinoColors.systemYellow, + 'systemGrey': CupertinoColors.systemGrey, + 'systemGrey2': CupertinoColors.systemGrey2, + 'systemGrey3': CupertinoColors.systemGrey3, + 'systemGrey4': CupertinoColors.systemGrey4, + 'systemGrey5': CupertinoColors.systemGrey5, + 'systemGrey6': CupertinoColors.systemGrey6, + 'label': CupertinoColors.label, + 'secondaryLabel': CupertinoColors.secondaryLabel, + 'tertiaryLabel': CupertinoColors.tertiaryLabel, + 'quaternaryLabel': CupertinoColors.quaternaryLabel, + 'systemFill': CupertinoColors.systemFill, + 'secondarySystemFill': CupertinoColors.secondarySystemFill, + 'tertiarySystemFill': CupertinoColors.tertiarySystemFill, + 'quaternarySystemFill': CupertinoColors.quaternarySystemFill, + 'placeholderText': CupertinoColors.placeholderText, + 'systemBackground': CupertinoColors.systemBackground, + 'secondarySystemBackground': CupertinoColors.secondarySystemBackground, + 'tertiarySystemBackground': CupertinoColors.tertiarySystemBackground, + 'systemGroupedBackground': CupertinoColors.systemGroupedBackground, + 'secondarySystemGroupedBackground': CupertinoColors.secondarySystemGroupedBackground, + 'tertiarySystemGroupedBackground': CupertinoColors.tertiarySystemGroupedBackground, + 'separator': CupertinoColors.separator, + 'opaqueSeparator': CupertinoColors.opaqueSeparator, + 'link': CupertinoColors.link, + }, + 'CupertinoDynamicColor.resolve': (props) => CupertinoDynamicColor.resolve( + props['pa'][0], + props['pa'][1], + ), + 'CupertinoDynamicColor.maybeResolve': (props) => CupertinoDynamicColor.maybeResolve( + props['pa'][0], + props['pa'][1], + ), + 'CupertinoSlidingSegmentedControl': (props) => CupertinoSlidingSegmentedControl( + key: props['key'], + children: props['children'], + onValueChanged: props['onValueChanged'], + groupValue: props['groupValue'], + thumbColor: props['thumbColor'] ?? _kThumbColor, + padding: props['padding'] ?? _kHorizontalItemPadding, + backgroundColor: props['backgroundColor'] ?? CupertinoColors.tertiarySystemFill, + ), + 'CupertinoSearchTextField': (props) => CupertinoSearchTextField( + key: props['key'], + controller: props['controller'], + onChanged: props['onChanged'], + onSubmitted: props['onSubmitted'], + style: props['style'], + placeholder: props['placeholder'], + placeholderStyle: props['placeholderStyle'], + decoration: props['decoration'], + backgroundColor: props['backgroundColor'], + borderRadius: props['borderRadius'], + padding: props['padding'] ?? const EdgeInsetsDirectional.fromSTEB(3.8, 8, 5, 8), + itemColor: props['itemColor'] ?? CupertinoColors.secondaryLabel, + itemSize: props['itemSize']?.toDouble() ?? 20.0, + prefixInsets: props['prefixInsets'] ?? const EdgeInsetsDirectional.fromSTEB(6, 0, 0, 4), + prefixIcon: props['prefixIcon'] ?? const Icon(CupertinoIcons.search), + suffixInsets: props['suffixInsets'] ?? const EdgeInsetsDirectional.fromSTEB(0, 0, 5, 2), + suffixIcon: props['suffixIcon'] ?? const Icon(CupertinoIcons.xmark_circle_fill), + suffixMode: props['suffixMode'] ?? OverlayVisibilityMode.editing, + onSuffixTap: props['onSuffixTap'], + restorationId: props['restorationId'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + onTap: props['onTap'], + autocorrect: props['autocorrect'] ?? true, + enabled: props['enabled'], + ), + 'CupertinoButton': (props) => CupertinoButton( + key: props['key'], + child: props['child'], + padding: props['padding'], + color: props['color'], + disabledColor: props['disabledColor'] ?? CupertinoColors.quaternarySystemFill, + minSize: props['minSize']?.toDouble() ?? kMinInteractiveDimensionCupertino, + pressedOpacity: props['pressedOpacity']?.toDouble() ?? 0.4, + borderRadius: props['borderRadius'] ?? const BorderRadius.all(Radius.circular(8.0)), + alignment: props['alignment'] ?? Alignment.center, + onPressed: props['onPressed'], + ), + 'CupertinoButton.filled': (props) => CupertinoButton.filled( + key: props['key'], + child: props['child'], + padding: props['padding'], + disabledColor: props['disabledColor'] ?? CupertinoColors.quaternarySystemFill, + minSize: props['minSize']?.toDouble() ?? kMinInteractiveDimensionCupertino, + pressedOpacity: props['pressedOpacity']?.toDouble() ?? 0.4, + borderRadius: props['borderRadius'] ?? const BorderRadius.all(Radius.circular(8.0)), + alignment: props['alignment'] ?? Alignment.center, + onPressed: props['onPressed'], + ), + 'CupertinoTabView': (props) => CupertinoTabView( + key: props['key'], + builder: props['builder'], + navigatorKey: props['navigatorKey'], + defaultTitle: props['defaultTitle'], + routes: props['routes'], + onGenerateRoute: props['onGenerateRoute'], + onUnknownRoute: props['onUnknownRoute'], + navigatorObservers: as(props['navigatorObservers']) ?? const [], + restorationScopeId: props['restorationScopeId'], + ), + 'CupertinoAlertDialog': (props) => CupertinoAlertDialog( + key: props['key'], + title: props['title'], + content: props['content'], + actions: as(props['actions']) ?? const [], + scrollController: props['scrollController'], + actionScrollController: props['actionScrollController'], + insetAnimationDuration: props['insetAnimationDuration'] ?? const Duration(milliseconds: 100), + insetAnimationCurve: props['insetAnimationCurve'] ?? Curves.decelerate, + ), + 'CupertinoPopupSurface': (props) => CupertinoPopupSurface( + key: props['key'], + isSurfacePainted: props['isSurfacePainted'] ?? true, + child: props['child'], + ), + 'CupertinoActionSheet': (props) => CupertinoActionSheet( + key: props['key'], + title: props['title'], + message: props['message'], + actions: as(props['actions']), + messageScrollController: props['messageScrollController'], + actionScrollController: props['actionScrollController'], + cancelButton: props['cancelButton'], + ), + 'CupertinoActionSheetAction': (props) => CupertinoActionSheetAction( + key: props['key'], + onPressed: props['onPressed'], + isDefaultAction: props['isDefaultAction'] ?? false, + isDestructiveAction: props['isDestructiveAction'] ?? false, + child: props['child'], + ), + 'CupertinoDialogAction': (props) => CupertinoDialogAction( + key: props['key'], + onPressed: props['onPressed'], + isDefaultAction: props['isDefaultAction'] ?? false, + isDestructiveAction: props['isDestructiveAction'] ?? false, + textStyle: props['textStyle'], + child: props['child'], + ), + 'CupertinoTabBar': (props) => CupertinoTabBar( + key: props['key'], + items: as(props['items'])!, + onTap: props['onTap'], + currentIndex: props['currentIndex'] ?? 0, + backgroundColor: props['backgroundColor'], + activeColor: props['activeColor'], + inactiveColor: props['inactiveColor'] ?? _kDefaultTabBarInactiveColor, + iconSize: props['iconSize']?.toDouble() ?? 30.0, + border: props['border'] ?? const Border(top: BorderSide(color: _kDefaultTabBarBorderColor, width: 0.0, style: BorderStyle.solid)), + ), + 'CupertinoDatePicker': (props) => CupertinoDatePicker( + key: props['key'], + mode: props['mode'] ?? CupertinoDatePickerMode.dateAndTime, + onDateTimeChanged: props['onDateTimeChanged'], + initialDateTime: props['initialDateTime'], + minimumDate: props['minimumDate'], + maximumDate: props['maximumDate'], + minimumYear: props['minimumYear'] ?? 1, + maximumYear: props['maximumYear'], + minuteInterval: props['minuteInterval'] ?? 1, + use24hFormat: props['use24hFormat'] ?? false, + dateOrder: props['dateOrder'], + backgroundColor: props['backgroundColor'], + ), + 'CupertinoTimerPicker': (props) => CupertinoTimerPicker( + key: props['key'], + mode: props['mode'] ?? CupertinoTimerPickerMode.hms, + initialTimerDuration: props['initialTimerDuration'] ?? Duration.zero, + minuteInterval: props['minuteInterval'] ?? 1, + secondInterval: props['secondInterval'] ?? 1, + alignment: props['alignment'] ?? Alignment.center, + backgroundColor: props['backgroundColor'], + onTimerDurationChanged: props['onTimerDurationChanged'], + ), + 'CupertinoDatePickerMode': { + 'values': CupertinoDatePickerMode.values, + 'time': CupertinoDatePickerMode.time, + 'date': CupertinoDatePickerMode.date, + 'dateAndTime': CupertinoDatePickerMode.dateAndTime, + }, + 'CupertinoTimerPickerMode': { + 'values': CupertinoTimerPickerMode.values, + 'hm': CupertinoTimerPickerMode.hm, + 'ms': CupertinoTimerPickerMode.ms, + 'hms': CupertinoTimerPickerMode.hms, + }, + 'CupertinoSliverRefreshControl': (props) => CupertinoSliverRefreshControl( + key: props['key'], + refreshTriggerPullDistance: props['refreshTriggerPullDistance']?.toDouble() ?? _defaultRefreshTriggerPullDistance, + refreshIndicatorExtent: props['refreshIndicatorExtent']?.toDouble() ?? _defaultRefreshIndicatorExtent, + builder: props['builder'] ?? buildRefreshIndicator, + onRefresh: props['onRefresh'], + ), + 'CupertinoSliverRefreshControl#builder': (props) => ( + dynamic context, + RefreshIndicatorMode refreshState, + double pulledExtent, + double refreshTriggerPullDistance, + double refreshIndicatorExtent, + ) { + return (props['block']) as dynamic; + }, + 'CupertinoSliverRefreshControl#onRefresh': (props) => () { + return (props['block']) as Future; + }, + 'CupertinoSliverRefreshControl.buildRefreshIndicator': (props) => CupertinoSliverRefreshControl.buildRefreshIndicator( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + props['pa'][3]?.toDouble(), + props['pa'][4]?.toDouble(), + ), + 'RefreshIndicatorMode': { + 'values': RefreshIndicatorMode.values, + 'inactive': RefreshIndicatorMode.inactive, + 'drag': RefreshIndicatorMode.drag, + 'armed': RefreshIndicatorMode.armed, + 'refresh': RefreshIndicatorMode.refresh, + 'done': RefreshIndicatorMode.done, + }, + 'CupertinoPicker': (props) => CupertinoPicker( + key: props['key'], + diameterRatio: props['diameterRatio']?.toDouble() ?? _kDefaultDiameterRatio, + backgroundColor: props['backgroundColor'], + offAxisFraction: props['offAxisFraction']?.toDouble() ?? 0.0, + useMagnifier: props['useMagnifier'] ?? false, + magnification: props['magnification']?.toDouble() ?? 1.0, + scrollController: props['scrollController'], + squeeze: props['squeeze']?.toDouble() ?? _kSqueeze, + itemExtent: props['itemExtent']?.toDouble(), + onSelectedItemChanged: props['onSelectedItemChanged'], + selectionOverlay: props['selectionOverlay'] ?? const CupertinoPickerDefaultSelectionOverlay(), + looping: props['looping'] ?? false, + children: as(props['children'])!, + ), + 'CupertinoPicker.builder': (props) => CupertinoPicker.builder( + key: props['key'], + diameterRatio: props['diameterRatio']?.toDouble() ?? _kDefaultDiameterRatio, + backgroundColor: props['backgroundColor'], + offAxisFraction: props['offAxisFraction']?.toDouble() ?? 0.0, + useMagnifier: props['useMagnifier'] ?? false, + magnification: props['magnification']?.toDouble() ?? 1.0, + scrollController: props['scrollController'], + squeeze: props['squeeze']?.toDouble() ?? _kSqueeze, + itemExtent: props['itemExtent']?.toDouble(), + onSelectedItemChanged: props['onSelectedItemChanged'], + itemBuilder: props['itemBuilder'], + childCount: props['childCount'], + selectionOverlay: props['selectionOverlay'] ?? const CupertinoPickerDefaultSelectionOverlay(), + ), + 'CupertinoPickerDefaultSelectionOverlay': (props) => CupertinoPickerDefaultSelectionOverlay( + key: props['key'], + background: props['background'] ?? CupertinoColors.tertiarySystemFill, + capLeftEdge: props['capLeftEdge'] ?? true, + capRightEdge: props['capRightEdge'] ?? true, + ), + 'CupertinoContextMenu': (props) => CupertinoContextMenu( + key: props['key'], + actions: as(props['actions'])!, + child: props['child'], + previewBuilder: props['previewBuilder'], + ), + 'CupertinoContextMenu#previewBuilder': (props) => ( + dynamic context, + dynamic animation, + dynamic child, + ) { + return (props['block']) as dynamic; + }, + 'CupertinoPageTransition': (props) => CupertinoPageTransition( + key: props['key'], + primaryRouteAnimation: props['primaryRouteAnimation'], + secondaryRouteAnimation: props['secondaryRouteAnimation'], + child: props['child'], + linearTransition: props['linearTransition'], + ), + 'CupertinoFullscreenDialogTransition': (props) => CupertinoFullscreenDialogTransition( + key: props['key'], + primaryRouteAnimation: props['primaryRouteAnimation'], + secondaryRouteAnimation: props['secondaryRouteAnimation'], + child: props['child'], + linearTransition: props['linearTransition'], + ), + 'CupertinoThumbPainter': { + 'radius': CupertinoThumbPainter.radius, + 'extension': CupertinoThumbPainter.extension, + }, + 'CupertinoActivityIndicator': (props) => CupertinoActivityIndicator( + key: props['key'], + animating: props['animating'] ?? true, + radius: props['radius']?.toDouble() ?? _kDefaultIndicatorRadius, + ), + 'CupertinoActivityIndicator.partiallyRevealed': (props) => CupertinoActivityIndicator.partiallyRevealed( + key: props['key'], + radius: props['radius']?.toDouble() ?? _kDefaultIndicatorRadius, + progress: props['progress']?.toDouble() ?? 1.0, + ), + 'CupertinoTextField': (props) => CupertinoTextField( + key: props['key'], + controller: props['controller'], + focusNode: props['focusNode'], + decoration: props['decoration'] ?? _kDefaultRoundedBorderDecoration, + padding: props['padding'] ?? const EdgeInsets.all(6.0), + placeholder: props['placeholder'], + placeholderStyle: props['placeholderStyle'] ?? const TextStyle(fontWeight: FontWeight.w400, color: CupertinoColors.placeholderText), + prefix: props['prefix'], + prefixMode: props['prefixMode'] ?? OverlayVisibilityMode.always, + suffix: props['suffix'], + suffixMode: props['suffixMode'] ?? OverlayVisibilityMode.always, + clearButtonMode: props['clearButtonMode'] ?? OverlayVisibilityMode.never, + keyboardType: props['keyboardType'], + textInputAction: props['textInputAction'], + textCapitalization: props['textCapitalization'] ?? TextCapitalization.none, + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'] ?? TextAlign.start, + textAlignVertical: props['textAlignVertical'], + textDirection: props['textDirection'], + readOnly: props['readOnly'] ?? false, + toolbarOptions: props['toolbarOptions'], + showCursor: props['showCursor'], + autofocus: props['autofocus'] ?? false, + obscuringCharacter: props['obscuringCharacter'] ?? '•', + obscureText: props['obscureText'] ?? false, + autocorrect: props['autocorrect'] ?? true, + smartDashesType: props['smartDashesType'], + smartQuotesType: props['smartQuotesType'], + enableSuggestions: props['enableSuggestions'] ?? true, + maxLines: props['maxLines'] ?? 1, + minLines: props['minLines'], + expands: props['expands'] ?? false, + maxLength: props['maxLength'], + maxLengthEnforced: props['maxLengthEnforced'] ?? true, + maxLengthEnforcement: props['maxLengthEnforcement'], + onChanged: props['onChanged'], + onEditingComplete: props['onEditingComplete'], + onSubmitted: props['onSubmitted'], + inputFormatters: as(props['inputFormatters']), + enabled: props['enabled'], + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'] ?? const Radius.circular(2.0), + cursorColor: props['cursorColor'], + selectionHeightStyle: props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + keyboardAppearance: props['keyboardAppearance'], + scrollPadding: props['scrollPadding'] ?? const EdgeInsets.all(20.0), + dragStartBehavior: props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: props['enableInteractiveSelection'] ?? true, + selectionControls: props['selectionControls'], + onTap: props['onTap'], + scrollController: props['scrollController'], + scrollPhysics: props['scrollPhysics'], + autofillHints: props['autofillHints'], + restorationId: props['restorationId'], + enableIMEPersonalizedLearning: props['enableIMEPersonalizedLearning'] ?? true, + ), + 'CupertinoTextField.borderless': (props) => CupertinoTextField.borderless( + key: props['key'], + controller: props['controller'], + focusNode: props['focusNode'], + decoration: props['decoration'] ?? _kDefaultRoundedBorderDecoration, + padding: props['padding'] ?? const EdgeInsets.all(6.0), + placeholder: props['placeholder'], + placeholderStyle: props['placeholderStyle'], + // ?? _kDefaultPlaceholderStyle, + prefix: props['prefix'], + prefixMode: props['prefixMode'] ?? OverlayVisibilityMode.always, + suffix: props['suffix'], + suffixMode: props['suffixMode'] ?? OverlayVisibilityMode.always, + clearButtonMode: props['clearButtonMode'] ?? OverlayVisibilityMode.never, + keyboardType: props['keyboardType'], + textInputAction: props['textInputAction'], + textCapitalization: props['textCapitalization'] ?? TextCapitalization.none, + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'] ?? TextAlign.start, + textAlignVertical: props['textAlignVertical'], + textDirection: props['textDirection'], + readOnly: props['readOnly'] ?? false, + toolbarOptions: props['toolbarOptions'], + showCursor: props['showCursor'], + autofocus: props['autofocus'] ?? false, + obscuringCharacter: props['obscuringCharacter'] ?? '•', + obscureText: props['obscureText'] ?? false, + autocorrect: props['autocorrect'] ?? true, + smartDashesType: props['smartDashesType'], + smartQuotesType: props['smartQuotesType'], + enableSuggestions: props['enableSuggestions'] ?? true, + maxLines: props['maxLines'] ?? 1, + minLines: props['minLines'], + expands: props['expands'] ?? false, + maxLength: props['maxLength'], + maxLengthEnforced: props['maxLengthEnforced'] ?? true, + maxLengthEnforcement: props['maxLengthEnforcement'], + onChanged: props['onChanged'], + onEditingComplete: props['onEditingComplete'], + onSubmitted: props['onSubmitted'], + inputFormatters: as(props['inputFormatters']), + enabled: props['enabled'], + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'] ?? const Radius.circular(2.0), + cursorColor: props['cursorColor'], + selectionHeightStyle: props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + keyboardAppearance: props['keyboardAppearance'], + scrollPadding: props['scrollPadding'] ?? const EdgeInsets.all(20.0), + dragStartBehavior: props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: props['enableInteractiveSelection'] ?? true, + selectionControls: props['selectionControls'], + onTap: props['onTap'], + scrollController: props['scrollController'], + scrollPhysics: props['scrollPhysics'], + autofillHints: props['autofillHints'], + restorationId: props['restorationId'], + enableIMEPersonalizedLearning: props['enableIMEPersonalizedLearning'] ?? true, + ), + 'OverlayVisibilityMode': { + 'values': OverlayVisibilityMode.values, + 'never': OverlayVisibilityMode.never, + 'editing': OverlayVisibilityMode.editing, + 'notEditing': OverlayVisibilityMode.notEditing, + 'always': OverlayVisibilityMode.always, + }, + 'CupertinoPageScaffold': (props) => CupertinoPageScaffold( + key: props['key'], + navigationBar: props['navigationBar'], + backgroundColor: props['backgroundColor'], + resizeToAvoidBottomInset: props['resizeToAvoidBottomInset'] ?? true, + child: props['child'], + ), + 'CupertinoUserInterfaceLevel': (props) => CupertinoUserInterfaceLevel( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'CupertinoUserInterfaceLevel.of': (props) => CupertinoUserInterfaceLevel.of( + props['pa'][0], + ), + 'CupertinoUserInterfaceLevel.maybeOf': (props) => CupertinoUserInterfaceLevel.maybeOf( + props['pa'][0], + ), + 'CupertinoUserInterfaceLevelData': { + 'values': CupertinoUserInterfaceLevelData.values, + 'base': CupertinoUserInterfaceLevelData.base, + 'elevated': CupertinoUserInterfaceLevelData.elevated, + }, + 'CupertinoFormSection': (props) => CupertinoFormSection( + key: props['key'], + header: props['header'], + footer: props['footer'], + margin: props['margin'] ?? EdgeInsets.zero, + backgroundColor: props['backgroundColor'] ?? CupertinoColors.systemGroupedBackground, + decoration: props['decoration'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + children: as(props['children'])!, + ), + 'CupertinoFormSection.insetGrouped': (props) => CupertinoFormSection.insetGrouped( + key: props['key'], + header: props['header'], + footer: props['footer'], + margin: props['margin'], + // ?? _kDefaultInsetGroupedRowsMargin, + backgroundColor: props['backgroundColor'] ?? CupertinoColors.systemGroupedBackground, + decoration: props['decoration'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + children: as(props['children'])!, + ), + 'CupertinoContextMenuAction': (props) => CupertinoContextMenuAction( + key: props['key'], + child: props['child'], + isDefaultAction: props['isDefaultAction'] ?? false, + isDestructiveAction: props['isDestructiveAction'] ?? false, + onPressed: props['onPressed'], + trailingIcon: props['trailingIcon'], + ), + 'CupertinoSwitch': (props) => CupertinoSwitch( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + activeColor: props['activeColor'], + trackColor: props['trackColor'], + thumbColor: props['thumbColor'], + dragStartBehavior: props['dragStartBehavior'] ?? DragStartBehavior.start, + ), + 'CupertinoScrollbar': { + 'defaultThickness': CupertinoScrollbar.defaultThickness, + 'defaultThicknessWhileDragging': CupertinoScrollbar.defaultThicknessWhileDragging, + 'defaultRadius': CupertinoScrollbar.defaultRadius, + 'defaultRadiusWhileDragging': CupertinoScrollbar.defaultRadiusWhileDragging, + }, + 'CupertinoApp': (props) => CupertinoApp( + key: props['key'], + navigatorKey: props['navigatorKey'], + home: props['home'], + theme: props['theme'], + routes: props['routes'] ?? const {}, + initialRoute: props['initialRoute'], + onGenerateRoute: props['onGenerateRoute'], + onGenerateInitialRoutes: props['onGenerateInitialRoutes'], + onUnknownRoute: props['onUnknownRoute'], + navigatorObservers: as(props['navigatorObservers']) ?? const [], + builder: props['builder'], + title: props['title'] ?? '', + onGenerateTitle: props['onGenerateTitle'], + color: props['color'], + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: props['supportedLocales'] ?? const [Locale('en', 'US')], + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, + checkerboardRasterCacheImages: props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'] ?? true, + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + scrollBehavior: props['scrollBehavior'], + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), + 'CupertinoApp.router': (props) => CupertinoApp.router( + key: props['key'], + routeInformationProvider: props['routeInformationProvider'], + routeInformationParser: props['routeInformationParser'], + routerDelegate: props['routerDelegate'], + backButtonDispatcher: props['backButtonDispatcher'], + theme: props['theme'], + builder: props['builder'], + title: props['title'] ?? '', + onGenerateTitle: props['onGenerateTitle'], + color: props['color'], + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: props['supportedLocales'] ?? const [Locale('en', 'US')], + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, + checkerboardRasterCacheImages: props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'] ?? true, + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + scrollBehavior: props['scrollBehavior'], + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), + 'CupertinoApp.createCupertinoHeroController': (props) => CupertinoApp.createCupertinoHeroController(), + 'CupertinoIcons': { + 'iconFont': CupertinoIcons.iconFont, + 'iconFontPackage': CupertinoIcons.iconFontPackage, + 'left_chevron': CupertinoIcons.left_chevron, + 'right_chevron': CupertinoIcons.right_chevron, + 'share': CupertinoIcons.share, + 'share_solid': CupertinoIcons.share_solid, + 'book': CupertinoIcons.book, + 'book_solid': CupertinoIcons.book_solid, + 'bookmark': CupertinoIcons.bookmark, + 'bookmark_solid': CupertinoIcons.bookmark_solid, + 'info': CupertinoIcons.info, + 'reply': CupertinoIcons.reply, + 'conversation_bubble': CupertinoIcons.conversation_bubble, + 'profile_circled': CupertinoIcons.profile_circled, + 'plus_circled': CupertinoIcons.plus_circled, + 'minus_circled': CupertinoIcons.minus_circled, + 'flag': CupertinoIcons.flag, + 'search': CupertinoIcons.search, + 'check_mark': CupertinoIcons.check_mark, + 'check_mark_circled': CupertinoIcons.check_mark_circled, + 'check_mark_circled_solid': CupertinoIcons.check_mark_circled_solid, + 'circle': CupertinoIcons.circle, + 'circle_filled': CupertinoIcons.circle_filled, + 'back': CupertinoIcons.back, + 'forward': CupertinoIcons.forward, + 'home': CupertinoIcons.home, + 'shopping_cart': CupertinoIcons.shopping_cart, + 'ellipsis': CupertinoIcons.ellipsis, + 'phone': CupertinoIcons.phone, + 'phone_solid': CupertinoIcons.phone_solid, + 'down_arrow': CupertinoIcons.down_arrow, + 'up_arrow': CupertinoIcons.up_arrow, + 'battery_charging': CupertinoIcons.battery_charging, + 'battery_empty': CupertinoIcons.battery_empty, + 'battery_full': CupertinoIcons.battery_full, + 'battery_75_percent': CupertinoIcons.battery_75_percent, + 'battery_25_percent': CupertinoIcons.battery_25_percent, + 'bluetooth': CupertinoIcons.bluetooth, + 'restart': CupertinoIcons.restart, + 'reply_all': CupertinoIcons.reply_all, + 'reply_thick_solid': CupertinoIcons.reply_thick_solid, + 'share_up': CupertinoIcons.share_up, + 'shuffle': CupertinoIcons.shuffle, + 'shuffle_medium': CupertinoIcons.shuffle_medium, + 'shuffle_thick': CupertinoIcons.shuffle_thick, + 'photo_camera': CupertinoIcons.photo_camera, + 'photo_camera_solid': CupertinoIcons.photo_camera_solid, + 'video_camera': CupertinoIcons.video_camera, + 'video_camera_solid': CupertinoIcons.video_camera_solid, + 'switch_camera': CupertinoIcons.switch_camera, + 'switch_camera_solid': CupertinoIcons.switch_camera_solid, + 'collections': CupertinoIcons.collections, + 'collections_solid': CupertinoIcons.collections_solid, + 'folder': CupertinoIcons.folder, + 'folder_solid': CupertinoIcons.folder_solid, + 'folder_open': CupertinoIcons.folder_open, + 'delete': CupertinoIcons.delete, + 'delete_solid': CupertinoIcons.delete_solid, + 'delete_simple': CupertinoIcons.delete_simple, + 'pen': CupertinoIcons.pen, + 'pencil': CupertinoIcons.pencil, + 'create': CupertinoIcons.create, + 'create_solid': CupertinoIcons.create_solid, + 'refresh': CupertinoIcons.refresh, + 'refresh_circled': CupertinoIcons.refresh_circled, + 'refresh_circled_solid': CupertinoIcons.refresh_circled_solid, + 'refresh_thin': CupertinoIcons.refresh_thin, + 'refresh_thick': CupertinoIcons.refresh_thick, + 'refresh_bold': CupertinoIcons.refresh_bold, + 'clear_thick': CupertinoIcons.clear_thick, + 'clear_thick_circled': CupertinoIcons.clear_thick_circled, + 'clear': CupertinoIcons.clear, + 'clear_circled': CupertinoIcons.clear_circled, + 'clear_circled_solid': CupertinoIcons.clear_circled_solid, + 'add': CupertinoIcons.add, + 'add_circled': CupertinoIcons.add_circled, + 'add_circled_solid': CupertinoIcons.add_circled_solid, + 'gear': CupertinoIcons.gear, + 'gear_solid': CupertinoIcons.gear_solid, + 'gear_big': CupertinoIcons.gear_big, + 'settings': CupertinoIcons.settings, + 'settings_solid': CupertinoIcons.settings_solid, + 'music_note': CupertinoIcons.music_note, + 'double_music_note': CupertinoIcons.double_music_note, + 'play_arrow': CupertinoIcons.play_arrow, + 'play_arrow_solid': CupertinoIcons.play_arrow_solid, + 'pause': CupertinoIcons.pause, + 'pause_solid': CupertinoIcons.pause_solid, + 'loop': CupertinoIcons.loop, + 'loop_thick': CupertinoIcons.loop_thick, + 'volume_down': CupertinoIcons.volume_down, + 'volume_mute': CupertinoIcons.volume_mute, + 'volume_off': CupertinoIcons.volume_off, + 'volume_up': CupertinoIcons.volume_up, + 'fullscreen': CupertinoIcons.fullscreen, + 'fullscreen_exit': CupertinoIcons.fullscreen_exit, + 'mic_off': CupertinoIcons.mic_off, + 'mic': CupertinoIcons.mic, + 'mic_solid': CupertinoIcons.mic_solid, + 'clock': CupertinoIcons.clock, + 'clock_solid': CupertinoIcons.clock_solid, + 'time': CupertinoIcons.time, + 'time_solid': CupertinoIcons.time_solid, + 'padlock': CupertinoIcons.padlock, + 'padlock_solid': CupertinoIcons.padlock_solid, + 'eye': CupertinoIcons.eye, + 'eye_solid': CupertinoIcons.eye_solid, + 'person': CupertinoIcons.person, + 'person_solid': CupertinoIcons.person_solid, + 'person_add': CupertinoIcons.person_add, + 'person_add_solid': CupertinoIcons.person_add_solid, + 'group': CupertinoIcons.group, + 'group_solid': CupertinoIcons.group_solid, + 'mail': CupertinoIcons.mail, + 'mail_solid': CupertinoIcons.mail_solid, + 'location': CupertinoIcons.location, + 'location_solid': CupertinoIcons.location_solid, + 'tag': CupertinoIcons.tag, + 'tag_solid': CupertinoIcons.tag_solid, + 'tags': CupertinoIcons.tags, + 'tags_solid': CupertinoIcons.tags_solid, + 'bus': CupertinoIcons.bus, + 'car': CupertinoIcons.car, + 'car_detailed': CupertinoIcons.car_detailed, + 'train_style_one': CupertinoIcons.train_style_one, + 'train_style_two': CupertinoIcons.train_style_two, + 'paw': CupertinoIcons.paw, + 'paw_solid': CupertinoIcons.paw_solid, + 'game_controller': CupertinoIcons.game_controller, + 'game_controller_solid': CupertinoIcons.game_controller_solid, + 'lab_flask': CupertinoIcons.lab_flask, + 'lab_flask_solid': CupertinoIcons.lab_flask_solid, + 'heart': CupertinoIcons.heart, + 'heart_solid': CupertinoIcons.heart_solid, + 'bell': CupertinoIcons.bell, + 'bell_solid': CupertinoIcons.bell_solid, + 'news': CupertinoIcons.news, + 'news_solid': CupertinoIcons.news_solid, + 'brightness': CupertinoIcons.brightness, + 'brightness_solid': CupertinoIcons.brightness_solid, + 'airplane': CupertinoIcons.airplane, + 'alarm': CupertinoIcons.alarm, + 'alarm_fill': CupertinoIcons.alarm_fill, + 'alt': CupertinoIcons.alt, + 'ant': CupertinoIcons.ant, + 'ant_circle': CupertinoIcons.ant_circle, + 'ant_circle_fill': CupertinoIcons.ant_circle_fill, + 'ant_fill': CupertinoIcons.ant_fill, + 'antenna_radiowaves_left_right': CupertinoIcons.antenna_radiowaves_left_right, + 'app': CupertinoIcons.app, + 'app_badge': CupertinoIcons.app_badge, + 'app_badge_fill': CupertinoIcons.app_badge_fill, + 'app_fill': CupertinoIcons.app_fill, + 'archivebox': CupertinoIcons.archivebox, + 'archivebox_fill': CupertinoIcons.archivebox_fill, + 'arrow_2_circlepath': CupertinoIcons.arrow_2_circlepath, + 'arrow_2_circlepath_circle': CupertinoIcons.arrow_2_circlepath_circle, + 'arrow_2_circlepath_circle_fill': CupertinoIcons.arrow_2_circlepath_circle_fill, + 'arrow_2_squarepath': CupertinoIcons.arrow_2_squarepath, + 'arrow_3_trianglepath': CupertinoIcons.arrow_3_trianglepath, + 'arrow_branch': CupertinoIcons.arrow_branch, + 'arrow_clockwise': CupertinoIcons.arrow_clockwise, + 'arrow_clockwise_circle': CupertinoIcons.arrow_clockwise_circle, + 'arrow_clockwise_circle_fill': CupertinoIcons.arrow_clockwise_circle_fill, + 'arrow_counterclockwise': CupertinoIcons.arrow_counterclockwise, + 'arrow_counterclockwise_circle': CupertinoIcons.arrow_counterclockwise_circle, + 'arrow_counterclockwise_circle_fill': CupertinoIcons.arrow_counterclockwise_circle_fill, + 'arrow_down': CupertinoIcons.arrow_down, + 'arrow_down_circle': CupertinoIcons.arrow_down_circle, + 'arrow_down_circle_fill': CupertinoIcons.arrow_down_circle_fill, + 'arrow_down_doc': CupertinoIcons.arrow_down_doc, + 'arrow_down_doc_fill': CupertinoIcons.arrow_down_doc_fill, + 'arrow_down_left': CupertinoIcons.arrow_down_left, + 'arrow_down_left_circle': CupertinoIcons.arrow_down_left_circle, + 'arrow_down_left_circle_fill': CupertinoIcons.arrow_down_left_circle_fill, + 'arrow_down_left_square': CupertinoIcons.arrow_down_left_square, + 'arrow_down_left_square_fill': CupertinoIcons.arrow_down_left_square_fill, + 'arrow_down_right': CupertinoIcons.arrow_down_right, + 'arrow_down_right_arrow_up_left': CupertinoIcons.arrow_down_right_arrow_up_left, + 'arrow_down_right_circle': CupertinoIcons.arrow_down_right_circle, + 'arrow_down_right_circle_fill': CupertinoIcons.arrow_down_right_circle_fill, + 'arrow_down_right_square': CupertinoIcons.arrow_down_right_square, + 'arrow_down_right_square_fill': CupertinoIcons.arrow_down_right_square_fill, + 'arrow_down_square': CupertinoIcons.arrow_down_square, + 'arrow_down_square_fill': CupertinoIcons.arrow_down_square_fill, + 'arrow_down_to_line': CupertinoIcons.arrow_down_to_line, + 'arrow_down_to_line_alt': CupertinoIcons.arrow_down_to_line_alt, + 'arrow_left': CupertinoIcons.arrow_left, + 'arrow_left_circle': CupertinoIcons.arrow_left_circle, + 'arrow_left_circle_fill': CupertinoIcons.arrow_left_circle_fill, + 'arrow_left_right': CupertinoIcons.arrow_left_right, + 'arrow_left_right_circle': CupertinoIcons.arrow_left_right_circle, + 'arrow_left_right_circle_fill': CupertinoIcons.arrow_left_right_circle_fill, + 'arrow_left_right_square': CupertinoIcons.arrow_left_right_square, + 'arrow_left_right_square_fill': CupertinoIcons.arrow_left_right_square_fill, + 'arrow_left_square': CupertinoIcons.arrow_left_square, + 'arrow_left_square_fill': CupertinoIcons.arrow_left_square_fill, + 'arrow_left_to_line': CupertinoIcons.arrow_left_to_line, + 'arrow_left_to_line_alt': CupertinoIcons.arrow_left_to_line_alt, + 'arrow_merge': CupertinoIcons.arrow_merge, + 'arrow_right': CupertinoIcons.arrow_right, + 'arrow_right_arrow_left': CupertinoIcons.arrow_right_arrow_left, + 'arrow_right_arrow_left_circle': CupertinoIcons.arrow_right_arrow_left_circle, + 'arrow_right_arrow_left_circle_fill': CupertinoIcons.arrow_right_arrow_left_circle_fill, + 'arrow_right_arrow_left_square': CupertinoIcons.arrow_right_arrow_left_square, + 'arrow_right_arrow_left_square_fill': CupertinoIcons.arrow_right_arrow_left_square_fill, + 'arrow_right_circle': CupertinoIcons.arrow_right_circle, + 'arrow_right_circle_fill': CupertinoIcons.arrow_right_circle_fill, + 'arrow_right_square': CupertinoIcons.arrow_right_square, + 'arrow_right_square_fill': CupertinoIcons.arrow_right_square_fill, + 'arrow_right_to_line': CupertinoIcons.arrow_right_to_line, + 'arrow_right_to_line_alt': CupertinoIcons.arrow_right_to_line_alt, + 'arrow_swap': CupertinoIcons.arrow_swap, + 'arrow_turn_down_left': CupertinoIcons.arrow_turn_down_left, + 'arrow_turn_down_right': CupertinoIcons.arrow_turn_down_right, + 'arrow_turn_left_down': CupertinoIcons.arrow_turn_left_down, + 'arrow_turn_left_up': CupertinoIcons.arrow_turn_left_up, + 'arrow_turn_right_down': CupertinoIcons.arrow_turn_right_down, + 'arrow_turn_right_up': CupertinoIcons.arrow_turn_right_up, + 'arrow_turn_up_left': CupertinoIcons.arrow_turn_up_left, + 'arrow_turn_up_right': CupertinoIcons.arrow_turn_up_right, + 'arrow_up': CupertinoIcons.arrow_up, + 'arrow_up_arrow_down': CupertinoIcons.arrow_up_arrow_down, + 'arrow_up_arrow_down_circle': CupertinoIcons.arrow_up_arrow_down_circle, + 'arrow_up_arrow_down_circle_fill': CupertinoIcons.arrow_up_arrow_down_circle_fill, + 'arrow_up_arrow_down_square': CupertinoIcons.arrow_up_arrow_down_square, + 'arrow_up_arrow_down_square_fill': CupertinoIcons.arrow_up_arrow_down_square_fill, + 'arrow_up_bin': CupertinoIcons.arrow_up_bin, + 'arrow_up_bin_fill': CupertinoIcons.arrow_up_bin_fill, + 'arrow_up_circle': CupertinoIcons.arrow_up_circle, + 'arrow_up_circle_fill': CupertinoIcons.arrow_up_circle_fill, + 'arrow_up_doc': CupertinoIcons.arrow_up_doc, + 'arrow_up_doc_fill': CupertinoIcons.arrow_up_doc_fill, + 'arrow_up_down': CupertinoIcons.arrow_up_down, + 'arrow_up_down_circle': CupertinoIcons.arrow_up_down_circle, + 'arrow_up_down_circle_fill': CupertinoIcons.arrow_up_down_circle_fill, + 'arrow_up_down_square': CupertinoIcons.arrow_up_down_square, + 'arrow_up_down_square_fill': CupertinoIcons.arrow_up_down_square_fill, + 'arrow_up_left': CupertinoIcons.arrow_up_left, + 'arrow_up_left_arrow_down_right': CupertinoIcons.arrow_up_left_arrow_down_right, + 'arrow_up_left_circle': CupertinoIcons.arrow_up_left_circle, + 'arrow_up_left_circle_fill': CupertinoIcons.arrow_up_left_circle_fill, + 'arrow_up_left_square': CupertinoIcons.arrow_up_left_square, + 'arrow_up_left_square_fill': CupertinoIcons.arrow_up_left_square_fill, + 'arrow_up_right': CupertinoIcons.arrow_up_right, + 'arrow_up_right_circle': CupertinoIcons.arrow_up_right_circle, + 'arrow_up_right_circle_fill': CupertinoIcons.arrow_up_right_circle_fill, + 'arrow_up_right_diamond': CupertinoIcons.arrow_up_right_diamond, + 'arrow_up_right_diamond_fill': CupertinoIcons.arrow_up_right_diamond_fill, + 'arrow_up_right_square': CupertinoIcons.arrow_up_right_square, + 'arrow_up_right_square_fill': CupertinoIcons.arrow_up_right_square_fill, + 'arrow_up_square': CupertinoIcons.arrow_up_square, + 'arrow_up_square_fill': CupertinoIcons.arrow_up_square_fill, + 'arrow_up_to_line': CupertinoIcons.arrow_up_to_line, + 'arrow_up_to_line_alt': CupertinoIcons.arrow_up_to_line_alt, + 'arrow_uturn_down': CupertinoIcons.arrow_uturn_down, + 'arrow_uturn_down_circle': CupertinoIcons.arrow_uturn_down_circle, + 'arrow_uturn_down_circle_fill': CupertinoIcons.arrow_uturn_down_circle_fill, + 'arrow_uturn_down_square': CupertinoIcons.arrow_uturn_down_square, + 'arrow_uturn_down_square_fill': CupertinoIcons.arrow_uturn_down_square_fill, + 'arrow_uturn_left': CupertinoIcons.arrow_uturn_left, + 'arrow_uturn_left_circle': CupertinoIcons.arrow_uturn_left_circle, + 'arrow_uturn_left_circle_fill': CupertinoIcons.arrow_uturn_left_circle_fill, + 'arrow_uturn_left_square': CupertinoIcons.arrow_uturn_left_square, + 'arrow_uturn_left_square_fill': CupertinoIcons.arrow_uturn_left_square_fill, + 'arrow_uturn_right': CupertinoIcons.arrow_uturn_right, + 'arrow_uturn_right_circle': CupertinoIcons.arrow_uturn_right_circle, + 'arrow_uturn_right_circle_fill': CupertinoIcons.arrow_uturn_right_circle_fill, + 'arrow_uturn_right_square': CupertinoIcons.arrow_uturn_right_square, + 'arrow_uturn_right_square_fill': CupertinoIcons.arrow_uturn_right_square_fill, + 'arrow_uturn_up': CupertinoIcons.arrow_uturn_up, + 'arrow_uturn_up_circle': CupertinoIcons.arrow_uturn_up_circle, + 'arrow_uturn_up_circle_fill': CupertinoIcons.arrow_uturn_up_circle_fill, + 'arrow_uturn_up_square': CupertinoIcons.arrow_uturn_up_square, + 'arrow_uturn_up_square_fill': CupertinoIcons.arrow_uturn_up_square_fill, + 'arrowshape_turn_up_left': CupertinoIcons.arrowshape_turn_up_left, + 'arrowshape_turn_up_left_2': CupertinoIcons.arrowshape_turn_up_left_2, + 'arrowshape_turn_up_left_2_fill': CupertinoIcons.arrowshape_turn_up_left_2_fill, + 'arrowshape_turn_up_left_circle': CupertinoIcons.arrowshape_turn_up_left_circle, + 'arrowshape_turn_up_left_circle_fill': CupertinoIcons.arrowshape_turn_up_left_circle_fill, + 'arrowshape_turn_up_left_fill': CupertinoIcons.arrowshape_turn_up_left_fill, + 'arrowshape_turn_up_right': CupertinoIcons.arrowshape_turn_up_right, + 'arrowshape_turn_up_right_circle': CupertinoIcons.arrowshape_turn_up_right_circle, + 'arrowshape_turn_up_right_circle_fill': CupertinoIcons.arrowshape_turn_up_right_circle_fill, + 'arrowshape_turn_up_right_fill': CupertinoIcons.arrowshape_turn_up_right_fill, + 'arrowtriangle_down': CupertinoIcons.arrowtriangle_down, + 'arrowtriangle_down_circle': CupertinoIcons.arrowtriangle_down_circle, + 'arrowtriangle_down_circle_fill': CupertinoIcons.arrowtriangle_down_circle_fill, + 'arrowtriangle_down_fill': CupertinoIcons.arrowtriangle_down_fill, + 'arrowtriangle_down_square': CupertinoIcons.arrowtriangle_down_square, + 'arrowtriangle_down_square_fill': CupertinoIcons.arrowtriangle_down_square_fill, + 'arrowtriangle_left': CupertinoIcons.arrowtriangle_left, + 'arrowtriangle_left_circle': CupertinoIcons.arrowtriangle_left_circle, + 'arrowtriangle_left_circle_fill': CupertinoIcons.arrowtriangle_left_circle_fill, + 'arrowtriangle_left_fill': CupertinoIcons.arrowtriangle_left_fill, + 'arrowtriangle_left_square': CupertinoIcons.arrowtriangle_left_square, + 'arrowtriangle_left_square_fill': CupertinoIcons.arrowtriangle_left_square_fill, + 'arrowtriangle_right': CupertinoIcons.arrowtriangle_right, + 'arrowtriangle_right_circle': CupertinoIcons.arrowtriangle_right_circle, + 'arrowtriangle_right_circle_fill': CupertinoIcons.arrowtriangle_right_circle_fill, + 'arrowtriangle_right_fill': CupertinoIcons.arrowtriangle_right_fill, + 'arrowtriangle_right_square': CupertinoIcons.arrowtriangle_right_square, + 'arrowtriangle_right_square_fill': CupertinoIcons.arrowtriangle_right_square_fill, + 'arrowtriangle_up': CupertinoIcons.arrowtriangle_up, + 'arrowtriangle_up_circle': CupertinoIcons.arrowtriangle_up_circle, + 'arrowtriangle_up_circle_fill': CupertinoIcons.arrowtriangle_up_circle_fill, + 'arrowtriangle_up_fill': CupertinoIcons.arrowtriangle_up_fill, + 'arrowtriangle_up_square': CupertinoIcons.arrowtriangle_up_square, + 'arrowtriangle_up_square_fill': CupertinoIcons.arrowtriangle_up_square_fill, + 'asterisk_circle': CupertinoIcons.asterisk_circle, + 'asterisk_circle_fill': CupertinoIcons.asterisk_circle_fill, + 'at': CupertinoIcons.at, + 'at_badge_minus': CupertinoIcons.at_badge_minus, + 'at_badge_plus': CupertinoIcons.at_badge_plus, + 'at_circle': CupertinoIcons.at_circle, + 'at_circle_fill': CupertinoIcons.at_circle_fill, + 'backward': CupertinoIcons.backward, + 'backward_end': CupertinoIcons.backward_end, + 'backward_end_alt': CupertinoIcons.backward_end_alt, + 'backward_end_alt_fill': CupertinoIcons.backward_end_alt_fill, + 'backward_end_fill': CupertinoIcons.backward_end_fill, + 'backward_fill': CupertinoIcons.backward_fill, + 'badge_plus_radiowaves_right': CupertinoIcons.badge_plus_radiowaves_right, + 'bag': CupertinoIcons.bag, + 'bag_badge_minus': CupertinoIcons.bag_badge_minus, + 'bag_badge_plus': CupertinoIcons.bag_badge_plus, + 'bag_fill': CupertinoIcons.bag_fill, + 'bag_fill_badge_minus': CupertinoIcons.bag_fill_badge_minus, + 'bag_fill_badge_plus': CupertinoIcons.bag_fill_badge_plus, + 'bandage': CupertinoIcons.bandage, + 'bandage_fill': CupertinoIcons.bandage_fill, + 'barcode': CupertinoIcons.barcode, + 'barcode_viewfinder': CupertinoIcons.barcode_viewfinder, + 'bars': CupertinoIcons.bars, + 'battery_0': CupertinoIcons.battery_0, + 'battery_100': CupertinoIcons.battery_100, + 'battery_25': CupertinoIcons.battery_25, + 'bed_double': CupertinoIcons.bed_double, + 'bed_double_fill': CupertinoIcons.bed_double_fill, + 'bell_circle': CupertinoIcons.bell_circle, + 'bell_circle_fill': CupertinoIcons.bell_circle_fill, + 'bell_fill': CupertinoIcons.bell_fill, + 'bell_slash': CupertinoIcons.bell_slash, + 'bell_slash_fill': CupertinoIcons.bell_slash_fill, + 'bin_xmark': CupertinoIcons.bin_xmark, + 'bin_xmark_fill': CupertinoIcons.bin_xmark_fill, + 'bitcoin': CupertinoIcons.bitcoin, + 'bitcoin_circle': CupertinoIcons.bitcoin_circle, + 'bitcoin_circle_fill': CupertinoIcons.bitcoin_circle_fill, + 'bold': CupertinoIcons.bold, + 'bold_italic_underline': CupertinoIcons.bold_italic_underline, + 'bold_underline': CupertinoIcons.bold_underline, + 'bolt': CupertinoIcons.bolt, + 'bolt_badge_a': CupertinoIcons.bolt_badge_a, + 'bolt_badge_a_fill': CupertinoIcons.bolt_badge_a_fill, + 'bolt_circle': CupertinoIcons.bolt_circle, + 'bolt_circle_fill': CupertinoIcons.bolt_circle_fill, + 'bolt_fill': CupertinoIcons.bolt_fill, + 'bolt_horizontal': CupertinoIcons.bolt_horizontal, + 'bolt_horizontal_circle': CupertinoIcons.bolt_horizontal_circle, + 'bolt_horizontal_circle_fill': CupertinoIcons.bolt_horizontal_circle_fill, + 'bolt_horizontal_fill': CupertinoIcons.bolt_horizontal_fill, + 'bolt_slash': CupertinoIcons.bolt_slash, + 'bolt_slash_fill': CupertinoIcons.bolt_slash_fill, + 'book_circle': CupertinoIcons.book_circle, + 'book_circle_fill': CupertinoIcons.book_circle_fill, + 'book_fill': CupertinoIcons.book_fill, + 'bookmark_fill': CupertinoIcons.bookmark_fill, + 'briefcase': CupertinoIcons.briefcase, + 'briefcase_fill': CupertinoIcons.briefcase_fill, + 'bubble_left': CupertinoIcons.bubble_left, + 'bubble_left_bubble_right': CupertinoIcons.bubble_left_bubble_right, + 'bubble_left_bubble_right_fill': CupertinoIcons.bubble_left_bubble_right_fill, + 'bubble_left_fill': CupertinoIcons.bubble_left_fill, + 'bubble_middle_bottom': CupertinoIcons.bubble_middle_bottom, + 'bubble_middle_bottom_fill': CupertinoIcons.bubble_middle_bottom_fill, + 'bubble_middle_top': CupertinoIcons.bubble_middle_top, + 'bubble_middle_top_fill': CupertinoIcons.bubble_middle_top_fill, + 'bubble_right': CupertinoIcons.bubble_right, + 'bubble_right_fill': CupertinoIcons.bubble_right_fill, + 'building_2_fill': CupertinoIcons.building_2_fill, + 'burn': CupertinoIcons.burn, + 'burst': CupertinoIcons.burst, + 'burst_fill': CupertinoIcons.burst_fill, + 'calendar': CupertinoIcons.calendar, + 'calendar_badge_minus': CupertinoIcons.calendar_badge_minus, + 'calendar_badge_plus': CupertinoIcons.calendar_badge_plus, + 'calendar_circle': CupertinoIcons.calendar_circle, + 'calendar_circle_fill': CupertinoIcons.calendar_circle_fill, + 'calendar_today': CupertinoIcons.calendar_today, + 'camera': CupertinoIcons.camera, + 'camera_circle': CupertinoIcons.camera_circle, + 'camera_circle_fill': CupertinoIcons.camera_circle_fill, + 'camera_fill': CupertinoIcons.camera_fill, + 'camera_on_rectangle': CupertinoIcons.camera_on_rectangle, + 'camera_on_rectangle_fill': CupertinoIcons.camera_on_rectangle_fill, + 'camera_rotate': CupertinoIcons.camera_rotate, + 'camera_rotate_fill': CupertinoIcons.camera_rotate_fill, + 'camera_viewfinder': CupertinoIcons.camera_viewfinder, + 'capslock': CupertinoIcons.capslock, + 'capslock_fill': CupertinoIcons.capslock_fill, + 'capsule': CupertinoIcons.capsule, + 'capsule_fill': CupertinoIcons.capsule_fill, + 'captions_bubble': CupertinoIcons.captions_bubble, + 'captions_bubble_fill': CupertinoIcons.captions_bubble_fill, + 'car_fill': CupertinoIcons.car_fill, + 'cart': CupertinoIcons.cart, + 'cart_badge_minus': CupertinoIcons.cart_badge_minus, + 'cart_badge_plus': CupertinoIcons.cart_badge_plus, + 'cart_fill': CupertinoIcons.cart_fill, + 'cart_fill_badge_minus': CupertinoIcons.cart_fill_badge_minus, + 'cart_fill_badge_plus': CupertinoIcons.cart_fill_badge_plus, + 'chart_bar': CupertinoIcons.chart_bar, + 'chart_bar_alt_fill': CupertinoIcons.chart_bar_alt_fill, + 'chart_bar_circle': CupertinoIcons.chart_bar_circle, + 'chart_bar_circle_fill': CupertinoIcons.chart_bar_circle_fill, + 'chart_bar_fill': CupertinoIcons.chart_bar_fill, + 'chart_bar_square': CupertinoIcons.chart_bar_square, + 'chart_bar_square_fill': CupertinoIcons.chart_bar_square_fill, + 'chart_pie': CupertinoIcons.chart_pie, + 'chart_pie_fill': CupertinoIcons.chart_pie_fill, + 'chat_bubble': CupertinoIcons.chat_bubble, + 'chat_bubble_2': CupertinoIcons.chat_bubble_2, + 'chat_bubble_2_fill': CupertinoIcons.chat_bubble_2_fill, + 'chat_bubble_fill': CupertinoIcons.chat_bubble_fill, + 'chat_bubble_text': CupertinoIcons.chat_bubble_text, + 'chat_bubble_text_fill': CupertinoIcons.chat_bubble_text_fill, + 'checkmark': CupertinoIcons.checkmark, + 'checkmark_alt': CupertinoIcons.checkmark_alt, + 'checkmark_alt_circle': CupertinoIcons.checkmark_alt_circle, + 'checkmark_alt_circle_fill': CupertinoIcons.checkmark_alt_circle_fill, + 'checkmark_circle': CupertinoIcons.checkmark_circle, + 'checkmark_circle_fill': CupertinoIcons.checkmark_circle_fill, + 'checkmark_rectangle': CupertinoIcons.checkmark_rectangle, + 'checkmark_rectangle_fill': CupertinoIcons.checkmark_rectangle_fill, + 'checkmark_seal': CupertinoIcons.checkmark_seal, + 'checkmark_seal_fill': CupertinoIcons.checkmark_seal_fill, + 'checkmark_shield': CupertinoIcons.checkmark_shield, + 'checkmark_shield_fill': CupertinoIcons.checkmark_shield_fill, + 'checkmark_square': CupertinoIcons.checkmark_square, + 'checkmark_square_fill': CupertinoIcons.checkmark_square_fill, + 'chevron_back': CupertinoIcons.chevron_back, + 'chevron_compact_down': CupertinoIcons.chevron_compact_down, + 'chevron_compact_left': CupertinoIcons.chevron_compact_left, + 'chevron_compact_right': CupertinoIcons.chevron_compact_right, + 'chevron_compact_up': CupertinoIcons.chevron_compact_up, + 'chevron_down': CupertinoIcons.chevron_down, + 'chevron_down_circle': CupertinoIcons.chevron_down_circle, + 'chevron_down_circle_fill': CupertinoIcons.chevron_down_circle_fill, + 'chevron_down_square': CupertinoIcons.chevron_down_square, + 'chevron_down_square_fill': CupertinoIcons.chevron_down_square_fill, + 'chevron_forward': CupertinoIcons.chevron_forward, + 'chevron_left': CupertinoIcons.chevron_left, + 'chevron_left_2': CupertinoIcons.chevron_left_2, + 'chevron_left_circle': CupertinoIcons.chevron_left_circle, + 'chevron_left_circle_fill': CupertinoIcons.chevron_left_circle_fill, + 'chevron_left_slash_chevron_right': CupertinoIcons.chevron_left_slash_chevron_right, + 'chevron_left_square': CupertinoIcons.chevron_left_square, + 'chevron_left_square_fill': CupertinoIcons.chevron_left_square_fill, + 'chevron_right': CupertinoIcons.chevron_right, + 'chevron_right_2': CupertinoIcons.chevron_right_2, + 'chevron_right_circle': CupertinoIcons.chevron_right_circle, + 'chevron_right_circle_fill': CupertinoIcons.chevron_right_circle_fill, + 'chevron_right_square': CupertinoIcons.chevron_right_square, + 'chevron_right_square_fill': CupertinoIcons.chevron_right_square_fill, + 'chevron_up': CupertinoIcons.chevron_up, + 'chevron_up_chevron_down': CupertinoIcons.chevron_up_chevron_down, + 'chevron_up_circle': CupertinoIcons.chevron_up_circle, + 'chevron_up_circle_fill': CupertinoIcons.chevron_up_circle_fill, + 'chevron_up_square': CupertinoIcons.chevron_up_square, + 'chevron_up_square_fill': CupertinoIcons.chevron_up_square_fill, + 'circle_bottomthird_split': CupertinoIcons.circle_bottomthird_split, + 'circle_fill': CupertinoIcons.circle_fill, + 'circle_grid_3x3': CupertinoIcons.circle_grid_3x3, + 'circle_grid_3x3_fill': CupertinoIcons.circle_grid_3x3_fill, + 'circle_grid_hex': CupertinoIcons.circle_grid_hex, + 'circle_grid_hex_fill': CupertinoIcons.circle_grid_hex_fill, + 'circle_lefthalf_fill': CupertinoIcons.circle_lefthalf_fill, + 'circle_righthalf_fill': CupertinoIcons.circle_righthalf_fill, + 'clear_fill': CupertinoIcons.clear_fill, + 'clock_fill': CupertinoIcons.clock_fill, + 'cloud': CupertinoIcons.cloud, + 'cloud_bolt': CupertinoIcons.cloud_bolt, + 'cloud_bolt_fill': CupertinoIcons.cloud_bolt_fill, + 'cloud_bolt_rain': CupertinoIcons.cloud_bolt_rain, + 'cloud_bolt_rain_fill': CupertinoIcons.cloud_bolt_rain_fill, + 'cloud_download': CupertinoIcons.cloud_download, + 'cloud_download_fill': CupertinoIcons.cloud_download_fill, + 'cloud_drizzle': CupertinoIcons.cloud_drizzle, + 'cloud_drizzle_fill': CupertinoIcons.cloud_drizzle_fill, + 'cloud_fill': CupertinoIcons.cloud_fill, + 'cloud_fog': CupertinoIcons.cloud_fog, + 'cloud_fog_fill': CupertinoIcons.cloud_fog_fill, + 'cloud_hail': CupertinoIcons.cloud_hail, + 'cloud_hail_fill': CupertinoIcons.cloud_hail_fill, + 'cloud_heavyrain': CupertinoIcons.cloud_heavyrain, + 'cloud_heavyrain_fill': CupertinoIcons.cloud_heavyrain_fill, + 'cloud_moon': CupertinoIcons.cloud_moon, + 'cloud_moon_bolt': CupertinoIcons.cloud_moon_bolt, + 'cloud_moon_bolt_fill': CupertinoIcons.cloud_moon_bolt_fill, + 'cloud_moon_fill': CupertinoIcons.cloud_moon_fill, + 'cloud_moon_rain': CupertinoIcons.cloud_moon_rain, + 'cloud_moon_rain_fill': CupertinoIcons.cloud_moon_rain_fill, + 'cloud_rain': CupertinoIcons.cloud_rain, + 'cloud_rain_fill': CupertinoIcons.cloud_rain_fill, + 'cloud_sleet': CupertinoIcons.cloud_sleet, + 'cloud_sleet_fill': CupertinoIcons.cloud_sleet_fill, + 'cloud_snow': CupertinoIcons.cloud_snow, + 'cloud_snow_fill': CupertinoIcons.cloud_snow_fill, + 'cloud_sun': CupertinoIcons.cloud_sun, + 'cloud_sun_bolt': CupertinoIcons.cloud_sun_bolt, + 'cloud_sun_bolt_fill': CupertinoIcons.cloud_sun_bolt_fill, + 'cloud_sun_fill': CupertinoIcons.cloud_sun_fill, + 'cloud_sun_rain': CupertinoIcons.cloud_sun_rain, + 'cloud_sun_rain_fill': CupertinoIcons.cloud_sun_rain_fill, + 'cloud_upload': CupertinoIcons.cloud_upload, + 'cloud_upload_fill': CupertinoIcons.cloud_upload_fill, + 'color_filter': CupertinoIcons.color_filter, + 'color_filter_fill': CupertinoIcons.color_filter_fill, + 'command': CupertinoIcons.command, + 'compass': CupertinoIcons.compass, + 'compass_fill': CupertinoIcons.compass_fill, + 'control': CupertinoIcons.control, + 'creditcard': CupertinoIcons.creditcard, + 'creditcard_fill': CupertinoIcons.creditcard_fill, + 'crop': CupertinoIcons.crop, + 'crop_rotate': CupertinoIcons.crop_rotate, + 'cube': CupertinoIcons.cube, + 'cube_box': CupertinoIcons.cube_box, + 'cube_box_fill': CupertinoIcons.cube_box_fill, + 'cube_fill': CupertinoIcons.cube_fill, + 'cursor_rays': CupertinoIcons.cursor_rays, + 'decrease_indent': CupertinoIcons.decrease_indent, + 'decrease_quotelevel': CupertinoIcons.decrease_quotelevel, + 'delete_left': CupertinoIcons.delete_left, + 'delete_left_fill': CupertinoIcons.delete_left_fill, + 'delete_right': CupertinoIcons.delete_right, + 'delete_right_fill': CupertinoIcons.delete_right_fill, + 'desktopcomputer': CupertinoIcons.desktopcomputer, + 'device_desktop': CupertinoIcons.device_desktop, + 'device_laptop': CupertinoIcons.device_laptop, + 'device_phone_landscape': CupertinoIcons.device_phone_landscape, + 'device_phone_portrait': CupertinoIcons.device_phone_portrait, + 'dial': CupertinoIcons.dial, + 'dial_fill': CupertinoIcons.dial_fill, + 'divide': CupertinoIcons.divide, + 'divide_circle': CupertinoIcons.divide_circle, + 'divide_circle_fill': CupertinoIcons.divide_circle_fill, + 'divide_square': CupertinoIcons.divide_square, + 'divide_square_fill': CupertinoIcons.divide_square_fill, + 'doc': CupertinoIcons.doc, + 'doc_append': CupertinoIcons.doc_append, + 'doc_chart': CupertinoIcons.doc_chart, + 'doc_chart_fill': CupertinoIcons.doc_chart_fill, + 'doc_checkmark': CupertinoIcons.doc_checkmark, + 'doc_checkmark_fill': CupertinoIcons.doc_checkmark_fill, + 'doc_circle': CupertinoIcons.doc_circle, + 'doc_circle_fill': CupertinoIcons.doc_circle_fill, + 'doc_fill': CupertinoIcons.doc_fill, + 'doc_on_clipboard': CupertinoIcons.doc_on_clipboard, + 'doc_on_clipboard_fill': CupertinoIcons.doc_on_clipboard_fill, + 'doc_on_doc': CupertinoIcons.doc_on_doc, + 'doc_on_doc_fill': CupertinoIcons.doc_on_doc_fill, + 'doc_person': CupertinoIcons.doc_person, + 'doc_person_fill': CupertinoIcons.doc_person_fill, + 'doc_plaintext': CupertinoIcons.doc_plaintext, + 'doc_richtext': CupertinoIcons.doc_richtext, + 'doc_text': CupertinoIcons.doc_text, + 'doc_text_fill': CupertinoIcons.doc_text_fill, + 'doc_text_search': CupertinoIcons.doc_text_search, + 'doc_text_viewfinder': CupertinoIcons.doc_text_viewfinder, + 'dot_radiowaves_left_right': CupertinoIcons.dot_radiowaves_left_right, + 'dot_radiowaves_right': CupertinoIcons.dot_radiowaves_right, + 'dot_square': CupertinoIcons.dot_square, + 'dot_square_fill': CupertinoIcons.dot_square_fill, + 'download_circle': CupertinoIcons.download_circle, + 'download_circle_fill': CupertinoIcons.download_circle_fill, + 'drop': CupertinoIcons.drop, + 'drop_fill': CupertinoIcons.drop_fill, + 'drop_triangle': CupertinoIcons.drop_triangle, + 'drop_triangle_fill': CupertinoIcons.drop_triangle_fill, + 'ear': CupertinoIcons.ear, + 'eject': CupertinoIcons.eject, + 'eject_fill': CupertinoIcons.eject_fill, + 'ellipses_bubble': CupertinoIcons.ellipses_bubble, + 'ellipses_bubble_fill': CupertinoIcons.ellipses_bubble_fill, + 'ellipsis_circle': CupertinoIcons.ellipsis_circle, + 'ellipsis_circle_fill': CupertinoIcons.ellipsis_circle_fill, + 'ellipsis_vertical': CupertinoIcons.ellipsis_vertical, + 'ellipsis_vertical_circle': CupertinoIcons.ellipsis_vertical_circle, + 'ellipsis_vertical_circle_fill': CupertinoIcons.ellipsis_vertical_circle_fill, + 'envelope': CupertinoIcons.envelope, + 'envelope_badge': CupertinoIcons.envelope_badge, + 'envelope_badge_fill': CupertinoIcons.envelope_badge_fill, + 'envelope_circle': CupertinoIcons.envelope_circle, + 'envelope_circle_fill': CupertinoIcons.envelope_circle_fill, + 'envelope_fill': CupertinoIcons.envelope_fill, + 'envelope_open': CupertinoIcons.envelope_open, + 'envelope_open_fill': CupertinoIcons.envelope_open_fill, + 'equal': CupertinoIcons.equal, + 'equal_circle': CupertinoIcons.equal_circle, + 'equal_circle_fill': CupertinoIcons.equal_circle_fill, + 'equal_square': CupertinoIcons.equal_square, + 'equal_square_fill': CupertinoIcons.equal_square_fill, + 'escape': CupertinoIcons.escape, + 'exclamationmark': CupertinoIcons.exclamationmark, + 'exclamationmark_bubble': CupertinoIcons.exclamationmark_bubble, + 'exclamationmark_bubble_fill': CupertinoIcons.exclamationmark_bubble_fill, + 'exclamationmark_circle': CupertinoIcons.exclamationmark_circle, + 'exclamationmark_circle_fill': CupertinoIcons.exclamationmark_circle_fill, + 'exclamationmark_octagon': CupertinoIcons.exclamationmark_octagon, + 'exclamationmark_octagon_fill': CupertinoIcons.exclamationmark_octagon_fill, + 'exclamationmark_shield': CupertinoIcons.exclamationmark_shield, + 'exclamationmark_shield_fill': CupertinoIcons.exclamationmark_shield_fill, + 'exclamationmark_square': CupertinoIcons.exclamationmark_square, + 'exclamationmark_square_fill': CupertinoIcons.exclamationmark_square_fill, + 'exclamationmark_triangle': CupertinoIcons.exclamationmark_triangle, + 'exclamationmark_triangle_fill': CupertinoIcons.exclamationmark_triangle_fill, + 'eye_fill': CupertinoIcons.eye_fill, + 'eye_slash': CupertinoIcons.eye_slash, + 'eye_slash_fill': CupertinoIcons.eye_slash_fill, + 'eyedropper': CupertinoIcons.eyedropper, + 'eyedropper_full': CupertinoIcons.eyedropper_full, + 'eyedropper_halffull': CupertinoIcons.eyedropper_halffull, + 'eyeglasses': CupertinoIcons.eyeglasses, + 'f_cursive': CupertinoIcons.f_cursive, + 'f_cursive_circle': CupertinoIcons.f_cursive_circle, + 'f_cursive_circle_fill': CupertinoIcons.f_cursive_circle_fill, + 'film': CupertinoIcons.film, + 'film_fill': CupertinoIcons.film_fill, + 'flag_circle': CupertinoIcons.flag_circle, + 'flag_circle_fill': CupertinoIcons.flag_circle_fill, + 'flag_fill': CupertinoIcons.flag_fill, + 'flag_slash': CupertinoIcons.flag_slash, + 'flag_slash_fill': CupertinoIcons.flag_slash_fill, + 'flame': CupertinoIcons.flame, + 'flame_fill': CupertinoIcons.flame_fill, + 'floppy_disk': CupertinoIcons.floppy_disk, + 'flowchart': CupertinoIcons.flowchart, + 'flowchart_fill': CupertinoIcons.flowchart_fill, + 'folder_badge_minus': CupertinoIcons.folder_badge_minus, + 'folder_badge_person_crop': CupertinoIcons.folder_badge_person_crop, + 'folder_badge_plus': CupertinoIcons.folder_badge_plus, + 'folder_circle': CupertinoIcons.folder_circle, + 'folder_circle_fill': CupertinoIcons.folder_circle_fill, + 'folder_fill': CupertinoIcons.folder_fill, + 'folder_fill_badge_minus': CupertinoIcons.folder_fill_badge_minus, + 'folder_fill_badge_person_crop': CupertinoIcons.folder_fill_badge_person_crop, + 'folder_fill_badge_plus': CupertinoIcons.folder_fill_badge_plus, + 'forward_end': CupertinoIcons.forward_end, + 'forward_end_alt': CupertinoIcons.forward_end_alt, + 'forward_end_alt_fill': CupertinoIcons.forward_end_alt_fill, + 'forward_end_fill': CupertinoIcons.forward_end_fill, + 'forward_fill': CupertinoIcons.forward_fill, + 'function': CupertinoIcons.function, + 'fx': CupertinoIcons.fx, + 'gamecontroller': CupertinoIcons.gamecontroller, + 'gamecontroller_alt_fill': CupertinoIcons.gamecontroller_alt_fill, + 'gamecontroller_fill': CupertinoIcons.gamecontroller_fill, + 'gauge': CupertinoIcons.gauge, + 'gauge_badge_minus': CupertinoIcons.gauge_badge_minus, + 'gauge_badge_plus': CupertinoIcons.gauge_badge_plus, + 'gear_alt': CupertinoIcons.gear_alt, + 'gear_alt_fill': CupertinoIcons.gear_alt_fill, + 'gift': CupertinoIcons.gift, + 'gift_alt': CupertinoIcons.gift_alt, + 'gift_alt_fill': CupertinoIcons.gift_alt_fill, + 'gift_fill': CupertinoIcons.gift_fill, + 'globe': CupertinoIcons.globe, + 'gobackward': CupertinoIcons.gobackward, + 'gobackward_10': CupertinoIcons.gobackward_10, + 'gobackward_15': CupertinoIcons.gobackward_15, + 'gobackward_30': CupertinoIcons.gobackward_30, + 'gobackward_45': CupertinoIcons.gobackward_45, + 'gobackward_60': CupertinoIcons.gobackward_60, + 'gobackward_75': CupertinoIcons.gobackward_75, + 'gobackward_90': CupertinoIcons.gobackward_90, + 'gobackward_minus': CupertinoIcons.gobackward_minus, + 'goforward': CupertinoIcons.goforward, + 'goforward_10': CupertinoIcons.goforward_10, + 'goforward_15': CupertinoIcons.goforward_15, + 'goforward_30': CupertinoIcons.goforward_30, + 'goforward_45': CupertinoIcons.goforward_45, + 'goforward_60': CupertinoIcons.goforward_60, + 'goforward_75': CupertinoIcons.goforward_75, + 'goforward_90': CupertinoIcons.goforward_90, + 'goforward_plus': CupertinoIcons.goforward_plus, + 'graph_circle': CupertinoIcons.graph_circle, + 'graph_circle_fill': CupertinoIcons.graph_circle_fill, + 'graph_square': CupertinoIcons.graph_square, + 'graph_square_fill': CupertinoIcons.graph_square_fill, + 'greaterthan': CupertinoIcons.greaterthan, + 'greaterthan_circle': CupertinoIcons.greaterthan_circle, + 'greaterthan_circle_fill': CupertinoIcons.greaterthan_circle_fill, + 'greaterthan_square': CupertinoIcons.greaterthan_square, + 'greaterthan_square_fill': CupertinoIcons.greaterthan_square_fill, + 'grid': CupertinoIcons.grid, + 'grid_circle': CupertinoIcons.grid_circle, + 'grid_circle_fill': CupertinoIcons.grid_circle_fill, + 'guitars': CupertinoIcons.guitars, + 'hammer': CupertinoIcons.hammer, + 'hammer_fill': CupertinoIcons.hammer_fill, + 'hand_draw': CupertinoIcons.hand_draw, + 'hand_draw_fill': CupertinoIcons.hand_draw_fill, + 'hand_point_left': CupertinoIcons.hand_point_left, + 'hand_point_left_fill': CupertinoIcons.hand_point_left_fill, + 'hand_point_right': CupertinoIcons.hand_point_right, + 'hand_point_right_fill': CupertinoIcons.hand_point_right_fill, + 'hand_raised': CupertinoIcons.hand_raised, + 'hand_raised_fill': CupertinoIcons.hand_raised_fill, + 'hand_raised_slash': CupertinoIcons.hand_raised_slash, + 'hand_raised_slash_fill': CupertinoIcons.hand_raised_slash_fill, + 'hand_thumbsdown': CupertinoIcons.hand_thumbsdown, + 'hand_thumbsdown_fill': CupertinoIcons.hand_thumbsdown_fill, + 'hand_thumbsup': CupertinoIcons.hand_thumbsup, + 'hand_thumbsup_fill': CupertinoIcons.hand_thumbsup_fill, + 'hare': CupertinoIcons.hare, + 'hare_fill': CupertinoIcons.hare_fill, + 'headphones': CupertinoIcons.headphones, + 'heart_circle': CupertinoIcons.heart_circle, + 'heart_circle_fill': CupertinoIcons.heart_circle_fill, + 'heart_fill': CupertinoIcons.heart_fill, + 'heart_slash': CupertinoIcons.heart_slash, + 'heart_slash_circle': CupertinoIcons.heart_slash_circle, + 'heart_slash_circle_fill': CupertinoIcons.heart_slash_circle_fill, + 'heart_slash_fill': CupertinoIcons.heart_slash_fill, + 'helm': CupertinoIcons.helm, + 'hexagon': CupertinoIcons.hexagon, + 'hexagon_fill': CupertinoIcons.hexagon_fill, + 'hifispeaker': CupertinoIcons.hifispeaker, + 'hifispeaker_fill': CupertinoIcons.hifispeaker_fill, + 'hourglass': CupertinoIcons.hourglass, + 'hourglass_bottomhalf_fill': CupertinoIcons.hourglass_bottomhalf_fill, + 'hourglass_tophalf_fill': CupertinoIcons.hourglass_tophalf_fill, + 'house': CupertinoIcons.house, + 'house_alt': CupertinoIcons.house_alt, + 'house_alt_fill': CupertinoIcons.house_alt_fill, + 'house_fill': CupertinoIcons.house_fill, + 'hurricane': CupertinoIcons.hurricane, + 'increase_indent': CupertinoIcons.increase_indent, + 'increase_quotelevel': CupertinoIcons.increase_quotelevel, + 'infinite': CupertinoIcons.infinite, + 'info_circle': CupertinoIcons.info_circle, + 'info_circle_fill': CupertinoIcons.info_circle_fill, + 'italic': CupertinoIcons.italic, + 'keyboard': CupertinoIcons.keyboard, + 'keyboard_chevron_compact_down': CupertinoIcons.keyboard_chevron_compact_down, + 'largecircle_fill_circle': CupertinoIcons.largecircle_fill_circle, + 'lasso': CupertinoIcons.lasso, + 'layers': CupertinoIcons.layers, + 'layers_alt': CupertinoIcons.layers_alt, + 'layers_alt_fill': CupertinoIcons.layers_alt_fill, + 'layers_fill': CupertinoIcons.layers_fill, + 'leaf_arrow_circlepath': CupertinoIcons.leaf_arrow_circlepath, + 'lessthan': CupertinoIcons.lessthan, + 'lessthan_circle': CupertinoIcons.lessthan_circle, + 'lessthan_circle_fill': CupertinoIcons.lessthan_circle_fill, + 'lessthan_square': CupertinoIcons.lessthan_square, + 'lessthan_square_fill': CupertinoIcons.lessthan_square_fill, + 'light_max': CupertinoIcons.light_max, + 'light_min': CupertinoIcons.light_min, + 'lightbulb': CupertinoIcons.lightbulb, + 'lightbulb_fill': CupertinoIcons.lightbulb_fill, + 'lightbulb_slash': CupertinoIcons.lightbulb_slash, + 'lightbulb_slash_fill': CupertinoIcons.lightbulb_slash_fill, + 'line_horizontal_3': CupertinoIcons.line_horizontal_3, + 'line_horizontal_3_decrease': CupertinoIcons.line_horizontal_3_decrease, + 'line_horizontal_3_decrease_circle': CupertinoIcons.line_horizontal_3_decrease_circle, + 'line_horizontal_3_decrease_circle_fill': CupertinoIcons.line_horizontal_3_decrease_circle_fill, + 'link': CupertinoIcons.link, + 'link_circle': CupertinoIcons.link_circle, + 'link_circle_fill': CupertinoIcons.link_circle_fill, + 'list_bullet': CupertinoIcons.list_bullet, + 'list_bullet_below_rectangle': CupertinoIcons.list_bullet_below_rectangle, + 'list_bullet_indent': CupertinoIcons.list_bullet_indent, + 'list_dash': CupertinoIcons.list_dash, + 'list_number': CupertinoIcons.list_number, + 'list_number_rtl': CupertinoIcons.list_number_rtl, + 'location_circle': CupertinoIcons.location_circle, + 'location_circle_fill': CupertinoIcons.location_circle_fill, + 'location_fill': CupertinoIcons.location_fill, + 'location_north': CupertinoIcons.location_north, + 'location_north_fill': CupertinoIcons.location_north_fill, + 'location_north_line': CupertinoIcons.location_north_line, + 'location_north_line_fill': CupertinoIcons.location_north_line_fill, + 'location_slash': CupertinoIcons.location_slash, + 'location_slash_fill': CupertinoIcons.location_slash_fill, + 'lock': CupertinoIcons.lock, + 'lock_circle': CupertinoIcons.lock_circle, + 'lock_circle_fill': CupertinoIcons.lock_circle_fill, + 'lock_fill': CupertinoIcons.lock_fill, + 'lock_open': CupertinoIcons.lock_open, + 'lock_open_fill': CupertinoIcons.lock_open_fill, + 'lock_rotation': CupertinoIcons.lock_rotation, + 'lock_rotation_open': CupertinoIcons.lock_rotation_open, + 'lock_shield': CupertinoIcons.lock_shield, + 'lock_shield_fill': CupertinoIcons.lock_shield_fill, + 'lock_slash': CupertinoIcons.lock_slash, + 'lock_slash_fill': CupertinoIcons.lock_slash_fill, + 'macwindow': CupertinoIcons.macwindow, + 'map': CupertinoIcons.map, + 'map_fill': CupertinoIcons.map_fill, + 'map_pin': CupertinoIcons.map_pin, + 'map_pin_ellipse': CupertinoIcons.map_pin_ellipse, + 'map_pin_slash': CupertinoIcons.map_pin_slash, + 'memories': CupertinoIcons.memories, + 'memories_badge_minus': CupertinoIcons.memories_badge_minus, + 'memories_badge_plus': CupertinoIcons.memories_badge_plus, + 'metronome': CupertinoIcons.metronome, + 'mic_circle': CupertinoIcons.mic_circle, + 'mic_circle_fill': CupertinoIcons.mic_circle_fill, + 'mic_fill': CupertinoIcons.mic_fill, + 'mic_slash': CupertinoIcons.mic_slash, + 'mic_slash_fill': CupertinoIcons.mic_slash_fill, + 'minus': CupertinoIcons.minus, + 'minus_circle': CupertinoIcons.minus_circle, + 'minus_circle_fill': CupertinoIcons.minus_circle_fill, + 'minus_rectangle': CupertinoIcons.minus_rectangle, + 'minus_rectangle_fill': CupertinoIcons.minus_rectangle_fill, + 'minus_slash_plus': CupertinoIcons.minus_slash_plus, + 'minus_square': CupertinoIcons.minus_square, + 'minus_square_fill': CupertinoIcons.minus_square_fill, + 'money_dollar': CupertinoIcons.money_dollar, + 'money_dollar_circle': CupertinoIcons.money_dollar_circle, + 'money_dollar_circle_fill': CupertinoIcons.money_dollar_circle_fill, + 'money_euro': CupertinoIcons.money_euro, + 'money_euro_circle': CupertinoIcons.money_euro_circle, + 'money_euro_circle_fill': CupertinoIcons.money_euro_circle_fill, + 'money_pound': CupertinoIcons.money_pound, + 'money_pound_circle': CupertinoIcons.money_pound_circle, + 'money_pound_circle_fill': CupertinoIcons.money_pound_circle_fill, + 'money_rubl': CupertinoIcons.money_rubl, + 'money_rubl_circle': CupertinoIcons.money_rubl_circle, + 'money_rubl_circle_fill': CupertinoIcons.money_rubl_circle_fill, + 'money_yen': CupertinoIcons.money_yen, + 'money_yen_circle': CupertinoIcons.money_yen_circle, + 'money_yen_circle_fill': CupertinoIcons.money_yen_circle_fill, + 'moon': CupertinoIcons.moon, + 'moon_circle': CupertinoIcons.moon_circle, + 'moon_circle_fill': CupertinoIcons.moon_circle_fill, + 'moon_fill': CupertinoIcons.moon_fill, + 'moon_stars': CupertinoIcons.moon_stars, + 'moon_stars_fill': CupertinoIcons.moon_stars_fill, + 'moon_zzz': CupertinoIcons.moon_zzz, + 'moon_zzz_fill': CupertinoIcons.moon_zzz_fill, + 'move': CupertinoIcons.move, + 'multiply': CupertinoIcons.multiply, + 'multiply_circle': CupertinoIcons.multiply_circle, + 'multiply_circle_fill': CupertinoIcons.multiply_circle_fill, + 'multiply_square': CupertinoIcons.multiply_square, + 'multiply_square_fill': CupertinoIcons.multiply_square_fill, + 'music_albums': CupertinoIcons.music_albums, + 'music_albums_fill': CupertinoIcons.music_albums_fill, + 'music_house': CupertinoIcons.music_house, + 'music_house_fill': CupertinoIcons.music_house_fill, + 'music_mic': CupertinoIcons.music_mic, + 'music_note_2': CupertinoIcons.music_note_2, + 'music_note_list': CupertinoIcons.music_note_list, + 'nosign': CupertinoIcons.nosign, + 'number': CupertinoIcons.number, + 'number_circle': CupertinoIcons.number_circle, + 'number_circle_fill': CupertinoIcons.number_circle_fill, + 'number_square': CupertinoIcons.number_square, + 'number_square_fill': CupertinoIcons.number_square_fill, + 'option': CupertinoIcons.option, + 'paintbrush': CupertinoIcons.paintbrush, + 'paintbrush_fill': CupertinoIcons.paintbrush_fill, + 'pano': CupertinoIcons.pano, + 'pano_fill': CupertinoIcons.pano_fill, + 'paperclip': CupertinoIcons.paperclip, + 'paperplane': CupertinoIcons.paperplane, + 'paperplane_fill': CupertinoIcons.paperplane_fill, + 'paragraph': CupertinoIcons.paragraph, + 'pause_circle': CupertinoIcons.pause_circle, + 'pause_circle_fill': CupertinoIcons.pause_circle_fill, + 'pause_fill': CupertinoIcons.pause_fill, + 'pause_rectangle': CupertinoIcons.pause_rectangle, + 'pause_rectangle_fill': CupertinoIcons.pause_rectangle_fill, + 'pencil_circle': CupertinoIcons.pencil_circle, + 'pencil_circle_fill': CupertinoIcons.pencil_circle_fill, + 'pencil_ellipsis_rectangle': CupertinoIcons.pencil_ellipsis_rectangle, + 'pencil_outline': CupertinoIcons.pencil_outline, + 'pencil_slash': CupertinoIcons.pencil_slash, + 'percent': CupertinoIcons.percent, + 'person_2': CupertinoIcons.person_2, + 'person_2_alt': CupertinoIcons.person_2_alt, + 'person_2_fill': CupertinoIcons.person_2_fill, + 'person_2_square_stack': CupertinoIcons.person_2_square_stack, + 'person_2_square_stack_fill': CupertinoIcons.person_2_square_stack_fill, + 'person_3': CupertinoIcons.person_3, + 'person_3_fill': CupertinoIcons.person_3_fill, + 'person_alt': CupertinoIcons.person_alt, + 'person_alt_circle': CupertinoIcons.person_alt_circle, + 'person_alt_circle_fill': CupertinoIcons.person_alt_circle_fill, + 'person_badge_minus': CupertinoIcons.person_badge_minus, + 'person_badge_minus_fill': CupertinoIcons.person_badge_minus_fill, + 'person_badge_plus': CupertinoIcons.person_badge_plus, + 'person_badge_plus_fill': CupertinoIcons.person_badge_plus_fill, + 'person_circle': CupertinoIcons.person_circle, + 'person_circle_fill': CupertinoIcons.person_circle_fill, + 'person_crop_circle': CupertinoIcons.person_crop_circle, + 'person_crop_circle_badge_checkmark': CupertinoIcons.person_crop_circle_badge_checkmark, + 'person_crop_circle_badge_exclam': CupertinoIcons.person_crop_circle_badge_exclam, + 'person_crop_circle_badge_minus': CupertinoIcons.person_crop_circle_badge_minus, + 'person_crop_circle_badge_plus': CupertinoIcons.person_crop_circle_badge_plus, + 'person_crop_circle_badge_xmark': CupertinoIcons.person_crop_circle_badge_xmark, + 'person_crop_circle_fill': CupertinoIcons.person_crop_circle_fill, + 'person_crop_circle_fill_badge_checkmark': CupertinoIcons.person_crop_circle_fill_badge_checkmark, + 'person_crop_circle_fill_badge_exclam': CupertinoIcons.person_crop_circle_fill_badge_exclam, + 'person_crop_circle_fill_badge_minus': CupertinoIcons.person_crop_circle_fill_badge_minus, + 'person_crop_circle_fill_badge_plus': CupertinoIcons.person_crop_circle_fill_badge_plus, + 'person_crop_circle_fill_badge_xmark': CupertinoIcons.person_crop_circle_fill_badge_xmark, + 'person_crop_rectangle': CupertinoIcons.person_crop_rectangle, + 'person_crop_rectangle_fill': CupertinoIcons.person_crop_rectangle_fill, + 'person_crop_square': CupertinoIcons.person_crop_square, + 'person_crop_square_fill': CupertinoIcons.person_crop_square_fill, + 'person_fill': CupertinoIcons.person_fill, + 'personalhotspot': CupertinoIcons.personalhotspot, + 'perspective': CupertinoIcons.perspective, + 'phone_arrow_down_left': CupertinoIcons.phone_arrow_down_left, + 'phone_arrow_right': CupertinoIcons.phone_arrow_right, + 'phone_arrow_up_right': CupertinoIcons.phone_arrow_up_right, + 'phone_badge_plus': CupertinoIcons.phone_badge_plus, + 'phone_circle': CupertinoIcons.phone_circle, + 'phone_circle_fill': CupertinoIcons.phone_circle_fill, + 'phone_down': CupertinoIcons.phone_down, + 'phone_down_circle': CupertinoIcons.phone_down_circle, + 'phone_down_circle_fill': CupertinoIcons.phone_down_circle_fill, + 'phone_down_fill': CupertinoIcons.phone_down_fill, + 'phone_fill': CupertinoIcons.phone_fill, + 'phone_fill_arrow_down_left': CupertinoIcons.phone_fill_arrow_down_left, + 'phone_fill_arrow_right': CupertinoIcons.phone_fill_arrow_right, + 'phone_fill_arrow_up_right': CupertinoIcons.phone_fill_arrow_up_right, + 'phone_fill_badge_plus': CupertinoIcons.phone_fill_badge_plus, + 'photo': CupertinoIcons.photo, + 'photo_fill': CupertinoIcons.photo_fill, + 'photo_fill_on_rectangle_fill': CupertinoIcons.photo_fill_on_rectangle_fill, + 'photo_on_rectangle': CupertinoIcons.photo_on_rectangle, + 'piano': CupertinoIcons.piano, + 'pin': CupertinoIcons.pin, + 'pin_fill': CupertinoIcons.pin_fill, + 'pin_slash': CupertinoIcons.pin_slash, + 'pin_slash_fill': CupertinoIcons.pin_slash_fill, + 'placemark': CupertinoIcons.placemark, + 'placemark_fill': CupertinoIcons.placemark_fill, + 'play': CupertinoIcons.play, + 'play_circle': CupertinoIcons.play_circle, + 'play_circle_fill': CupertinoIcons.play_circle_fill, + 'play_fill': CupertinoIcons.play_fill, + 'play_rectangle': CupertinoIcons.play_rectangle, + 'play_rectangle_fill': CupertinoIcons.play_rectangle_fill, + 'playpause': CupertinoIcons.playpause, + 'playpause_fill': CupertinoIcons.playpause_fill, + 'plus': CupertinoIcons.plus, + 'plus_app': CupertinoIcons.plus_app, + 'plus_app_fill': CupertinoIcons.plus_app_fill, + 'plus_bubble': CupertinoIcons.plus_bubble, + 'plus_bubble_fill': CupertinoIcons.plus_bubble_fill, + 'plus_circle': CupertinoIcons.plus_circle, + 'plus_circle_fill': CupertinoIcons.plus_circle_fill, + 'plus_rectangle': CupertinoIcons.plus_rectangle, + 'plus_rectangle_fill': CupertinoIcons.plus_rectangle_fill, + 'plus_rectangle_fill_on_rectangle_fill': CupertinoIcons.plus_rectangle_fill_on_rectangle_fill, + 'plus_rectangle_on_rectangle': CupertinoIcons.plus_rectangle_on_rectangle, + 'plus_slash_minus': CupertinoIcons.plus_slash_minus, + 'plus_square': CupertinoIcons.plus_square, + 'plus_square_fill': CupertinoIcons.plus_square_fill, + 'plus_square_fill_on_square_fill': CupertinoIcons.plus_square_fill_on_square_fill, + 'plus_square_on_square': CupertinoIcons.plus_square_on_square, + 'plusminus': CupertinoIcons.plusminus, + 'plusminus_circle': CupertinoIcons.plusminus_circle, + 'plusminus_circle_fill': CupertinoIcons.plusminus_circle_fill, + 'power': CupertinoIcons.power, + 'printer': CupertinoIcons.printer, + 'printer_fill': CupertinoIcons.printer_fill, + 'projective': CupertinoIcons.projective, + 'purchased': CupertinoIcons.purchased, + 'purchased_circle': CupertinoIcons.purchased_circle, + 'purchased_circle_fill': CupertinoIcons.purchased_circle_fill, + 'qrcode': CupertinoIcons.qrcode, + 'qrcode_viewfinder': CupertinoIcons.qrcode_viewfinder, + 'question': CupertinoIcons.question, + 'question_circle': CupertinoIcons.question_circle, + 'question_circle_fill': CupertinoIcons.question_circle_fill, + 'question_diamond': CupertinoIcons.question_diamond, + 'question_diamond_fill': CupertinoIcons.question_diamond_fill, + 'question_square': CupertinoIcons.question_square, + 'question_square_fill': CupertinoIcons.question_square_fill, + 'quote_bubble': CupertinoIcons.quote_bubble, + 'quote_bubble_fill': CupertinoIcons.quote_bubble_fill, + 'radiowaves_left': CupertinoIcons.radiowaves_left, + 'radiowaves_right': CupertinoIcons.radiowaves_right, + 'rays': CupertinoIcons.rays, + 'recordingtape': CupertinoIcons.recordingtape, + 'rectangle': CupertinoIcons.rectangle, + 'rectangle_3_offgrid': CupertinoIcons.rectangle_3_offgrid, + 'rectangle_3_offgrid_fill': CupertinoIcons.rectangle_3_offgrid_fill, + 'rectangle_arrow_up_right_arrow_down_left': CupertinoIcons.rectangle_arrow_up_right_arrow_down_left, + 'rectangle_arrow_up_right_arrow_down_left_slash': CupertinoIcons.rectangle_arrow_up_right_arrow_down_left_slash, + 'rectangle_badge_checkmark': CupertinoIcons.rectangle_badge_checkmark, + 'rectangle_badge_xmark': CupertinoIcons.rectangle_badge_xmark, + 'rectangle_compress_vertical': CupertinoIcons.rectangle_compress_vertical, + 'rectangle_dock': CupertinoIcons.rectangle_dock, + 'rectangle_expand_vertical': CupertinoIcons.rectangle_expand_vertical, + 'rectangle_fill': CupertinoIcons.rectangle_fill, + 'rectangle_fill_badge_checkmark': CupertinoIcons.rectangle_fill_badge_checkmark, + 'rectangle_fill_badge_xmark': CupertinoIcons.rectangle_fill_badge_xmark, + 'rectangle_fill_on_rectangle_angled_fill': CupertinoIcons.rectangle_fill_on_rectangle_angled_fill, + 'rectangle_fill_on_rectangle_fill': CupertinoIcons.rectangle_fill_on_rectangle_fill, + 'rectangle_grid_1x2': CupertinoIcons.rectangle_grid_1x2, + 'rectangle_grid_1x2_fill': CupertinoIcons.rectangle_grid_1x2_fill, + 'rectangle_grid_2x2': CupertinoIcons.rectangle_grid_2x2, + 'rectangle_grid_2x2_fill': CupertinoIcons.rectangle_grid_2x2_fill, + 'rectangle_grid_3x2': CupertinoIcons.rectangle_grid_3x2, + 'rectangle_grid_3x2_fill': CupertinoIcons.rectangle_grid_3x2_fill, + 'rectangle_on_rectangle': CupertinoIcons.rectangle_on_rectangle, + 'rectangle_on_rectangle_angled': CupertinoIcons.rectangle_on_rectangle_angled, + 'rectangle_paperclip': CupertinoIcons.rectangle_paperclip, + 'rectangle_split_3x1': CupertinoIcons.rectangle_split_3x1, + 'rectangle_split_3x1_fill': CupertinoIcons.rectangle_split_3x1_fill, + 'rectangle_split_3x3': CupertinoIcons.rectangle_split_3x3, + 'rectangle_split_3x3_fill': CupertinoIcons.rectangle_split_3x3_fill, + 'rectangle_stack': CupertinoIcons.rectangle_stack, + 'rectangle_stack_badge_minus': CupertinoIcons.rectangle_stack_badge_minus, + 'rectangle_stack_badge_person_crop': CupertinoIcons.rectangle_stack_badge_person_crop, + 'rectangle_stack_badge_plus': CupertinoIcons.rectangle_stack_badge_plus, + 'rectangle_stack_fill': CupertinoIcons.rectangle_stack_fill, + 'rectangle_stack_fill_badge_minus': CupertinoIcons.rectangle_stack_fill_badge_minus, + 'rectangle_stack_fill_badge_person_crop': CupertinoIcons.rectangle_stack_fill_badge_person_crop, + 'rectangle_stack_fill_badge_plus': CupertinoIcons.rectangle_stack_fill_badge_plus, + 'rectangle_stack_person_crop': CupertinoIcons.rectangle_stack_person_crop, + 'rectangle_stack_person_crop_fill': CupertinoIcons.rectangle_stack_person_crop_fill, + 'repeat': CupertinoIcons.repeat, + 'repeat_1': CupertinoIcons.repeat_1, + 'resize': CupertinoIcons.resize, + 'resize_h': CupertinoIcons.resize_h, + 'resize_v': CupertinoIcons.resize_v, + 'return_icon': CupertinoIcons.return_icon, + 'rhombus': CupertinoIcons.rhombus, + 'rhombus_fill': CupertinoIcons.rhombus_fill, + 'rocket': CupertinoIcons.rocket, + 'rocket_fill': CupertinoIcons.rocket_fill, + 'rosette': CupertinoIcons.rosette, + 'rotate_left': CupertinoIcons.rotate_left, + 'rotate_left_fill': CupertinoIcons.rotate_left_fill, + 'rotate_right': CupertinoIcons.rotate_right, + 'rotate_right_fill': CupertinoIcons.rotate_right_fill, + 'scissors': CupertinoIcons.scissors, + 'scissors_alt': CupertinoIcons.scissors_alt, + 'scope': CupertinoIcons.scope, + 'scribble': CupertinoIcons.scribble, + 'search_circle': CupertinoIcons.search_circle, + 'search_circle_fill': CupertinoIcons.search_circle_fill, + 'selection_pin_in_out': CupertinoIcons.selection_pin_in_out, + 'shield': CupertinoIcons.shield, + 'shield_fill': CupertinoIcons.shield_fill, + 'shield_lefthalf_fill': CupertinoIcons.shield_lefthalf_fill, + 'shield_slash': CupertinoIcons.shield_slash, + 'shield_slash_fill': CupertinoIcons.shield_slash_fill, + 'shift': CupertinoIcons.shift, + 'shift_fill': CupertinoIcons.shift_fill, + 'sidebar_left': CupertinoIcons.sidebar_left, + 'sidebar_right': CupertinoIcons.sidebar_right, + 'signature': CupertinoIcons.signature, + 'skew': CupertinoIcons.skew, + 'slash_circle': CupertinoIcons.slash_circle, + 'slash_circle_fill': CupertinoIcons.slash_circle_fill, + 'slider_horizontal_3': CupertinoIcons.slider_horizontal_3, + 'slider_horizontal_below_rectangle': CupertinoIcons.slider_horizontal_below_rectangle, + 'slowmo': CupertinoIcons.slowmo, + 'smallcircle_circle': CupertinoIcons.smallcircle_circle, + 'smallcircle_circle_fill': CupertinoIcons.smallcircle_circle_fill, + 'smallcircle_fill_circle': CupertinoIcons.smallcircle_fill_circle, + 'smallcircle_fill_circle_fill': CupertinoIcons.smallcircle_fill_circle_fill, + 'smiley': CupertinoIcons.smiley, + 'smiley_fill': CupertinoIcons.smiley_fill, + 'smoke': CupertinoIcons.smoke, + 'smoke_fill': CupertinoIcons.smoke_fill, + 'snow': CupertinoIcons.snow, + 'sort_down': CupertinoIcons.sort_down, + 'sort_down_circle': CupertinoIcons.sort_down_circle, + 'sort_down_circle_fill': CupertinoIcons.sort_down_circle_fill, + 'sort_up': CupertinoIcons.sort_up, + 'sort_up_circle': CupertinoIcons.sort_up_circle, + 'sort_up_circle_fill': CupertinoIcons.sort_up_circle_fill, + 'sparkles': CupertinoIcons.sparkles, + 'speaker': CupertinoIcons.speaker, + 'speaker_1': CupertinoIcons.speaker_1, + 'speaker_1_fill': CupertinoIcons.speaker_1_fill, + 'speaker_2': CupertinoIcons.speaker_2, + 'speaker_2_fill': CupertinoIcons.speaker_2_fill, + 'speaker_3': CupertinoIcons.speaker_3, + 'speaker_3_fill': CupertinoIcons.speaker_3_fill, + 'speaker_fill': CupertinoIcons.speaker_fill, + 'speaker_slash': CupertinoIcons.speaker_slash, + 'speaker_slash_fill': CupertinoIcons.speaker_slash_fill, + 'speaker_slash_fill_rtl': CupertinoIcons.speaker_slash_fill_rtl, + 'speaker_slash_rtl': CupertinoIcons.speaker_slash_rtl, + 'speaker_zzz': CupertinoIcons.speaker_zzz, + 'speaker_zzz_fill': CupertinoIcons.speaker_zzz_fill, + 'speaker_zzz_fill_rtl': CupertinoIcons.speaker_zzz_fill_rtl, + 'speaker_zzz_rtl': CupertinoIcons.speaker_zzz_rtl, + 'speedometer': CupertinoIcons.speedometer, + 'sportscourt': CupertinoIcons.sportscourt, + 'sportscourt_fill': CupertinoIcons.sportscourt_fill, + 'square': CupertinoIcons.square, + 'square_arrow_down': CupertinoIcons.square_arrow_down, + 'square_arrow_down_fill': CupertinoIcons.square_arrow_down_fill, + 'square_arrow_down_on_square': CupertinoIcons.square_arrow_down_on_square, + 'square_arrow_down_on_square_fill': CupertinoIcons.square_arrow_down_on_square_fill, + 'square_arrow_left': CupertinoIcons.square_arrow_left, + 'square_arrow_left_fill': CupertinoIcons.square_arrow_left_fill, + 'square_arrow_right': CupertinoIcons.square_arrow_right, + 'square_arrow_right_fill': CupertinoIcons.square_arrow_right_fill, + 'square_arrow_up': CupertinoIcons.square_arrow_up, + 'square_arrow_up_fill': CupertinoIcons.square_arrow_up_fill, + 'square_arrow_up_on_square': CupertinoIcons.square_arrow_up_on_square, + 'square_arrow_up_on_square_fill': CupertinoIcons.square_arrow_up_on_square_fill, + 'square_favorites': CupertinoIcons.square_favorites, + 'square_favorites_alt': CupertinoIcons.square_favorites_alt, + 'square_favorites_alt_fill': CupertinoIcons.square_favorites_alt_fill, + 'square_favorites_fill': CupertinoIcons.square_favorites_fill, + 'square_fill': CupertinoIcons.square_fill, + 'square_fill_line_vertical_square': CupertinoIcons.square_fill_line_vertical_square, + 'square_fill_line_vertical_square_fill': CupertinoIcons.square_fill_line_vertical_square_fill, + 'square_fill_on_circle_fill': CupertinoIcons.square_fill_on_circle_fill, + 'square_fill_on_square_fill': CupertinoIcons.square_fill_on_square_fill, + 'square_grid_2x2': CupertinoIcons.square_grid_2x2, + 'square_grid_2x2_fill': CupertinoIcons.square_grid_2x2_fill, + 'square_grid_3x2': CupertinoIcons.square_grid_3x2, + 'square_grid_3x2_fill': CupertinoIcons.square_grid_3x2_fill, + 'square_grid_4x3_fill': CupertinoIcons.square_grid_4x3_fill, + 'square_lefthalf_fill': CupertinoIcons.square_lefthalf_fill, + 'square_line_vertical_square': CupertinoIcons.square_line_vertical_square, + 'square_line_vertical_square_fill': CupertinoIcons.square_line_vertical_square_fill, + 'square_list': CupertinoIcons.square_list, + 'square_list_fill': CupertinoIcons.square_list_fill, + 'square_on_circle': CupertinoIcons.square_on_circle, + 'square_on_square': CupertinoIcons.square_on_square, + 'square_pencil': CupertinoIcons.square_pencil, + 'square_pencil_fill': CupertinoIcons.square_pencil_fill, + 'square_righthalf_fill': CupertinoIcons.square_righthalf_fill, + 'square_split_1x2': CupertinoIcons.square_split_1x2, + 'square_split_1x2_fill': CupertinoIcons.square_split_1x2_fill, + 'square_split_2x1': CupertinoIcons.square_split_2x1, + 'square_split_2x1_fill': CupertinoIcons.square_split_2x1_fill, + 'square_split_2x2': CupertinoIcons.square_split_2x2, + 'square_split_2x2_fill': CupertinoIcons.square_split_2x2_fill, + 'square_stack': CupertinoIcons.square_stack, + 'square_stack_3d_down_dottedline': CupertinoIcons.square_stack_3d_down_dottedline, + 'square_stack_3d_down_right': CupertinoIcons.square_stack_3d_down_right, + 'square_stack_3d_down_right_fill': CupertinoIcons.square_stack_3d_down_right_fill, + 'square_stack_3d_up': CupertinoIcons.square_stack_3d_up, + 'square_stack_3d_up_fill': CupertinoIcons.square_stack_3d_up_fill, + 'square_stack_3d_up_slash': CupertinoIcons.square_stack_3d_up_slash, + 'square_stack_3d_up_slash_fill': CupertinoIcons.square_stack_3d_up_slash_fill, + 'square_stack_fill': CupertinoIcons.square_stack_fill, + 'squares_below_rectangle': CupertinoIcons.squares_below_rectangle, + 'star': CupertinoIcons.star, + 'star_circle': CupertinoIcons.star_circle, + 'star_circle_fill': CupertinoIcons.star_circle_fill, + 'star_fill': CupertinoIcons.star_fill, + 'star_lefthalf_fill': CupertinoIcons.star_lefthalf_fill, + 'star_slash': CupertinoIcons.star_slash, + 'star_slash_fill': CupertinoIcons.star_slash_fill, + 'staroflife': CupertinoIcons.staroflife, + 'staroflife_fill': CupertinoIcons.staroflife_fill, + 'stop': CupertinoIcons.stop, + 'stop_circle': CupertinoIcons.stop_circle, + 'stop_circle_fill': CupertinoIcons.stop_circle_fill, + 'stop_fill': CupertinoIcons.stop_fill, + 'stopwatch': CupertinoIcons.stopwatch, + 'stopwatch_fill': CupertinoIcons.stopwatch_fill, + 'strikethrough': CupertinoIcons.strikethrough, + 'suit_club': CupertinoIcons.suit_club, + 'suit_club_fill': CupertinoIcons.suit_club_fill, + 'suit_diamond': CupertinoIcons.suit_diamond, + 'suit_diamond_fill': CupertinoIcons.suit_diamond_fill, + 'suit_heart': CupertinoIcons.suit_heart, + 'suit_heart_fill': CupertinoIcons.suit_heart_fill, + 'suit_spade': CupertinoIcons.suit_spade, + 'suit_spade_fill': CupertinoIcons.suit_spade_fill, + 'sum': CupertinoIcons.sum, + 'sun_dust': CupertinoIcons.sun_dust, + 'sun_dust_fill': CupertinoIcons.sun_dust_fill, + 'sun_haze': CupertinoIcons.sun_haze, + 'sun_haze_fill': CupertinoIcons.sun_haze_fill, + 'sun_max': CupertinoIcons.sun_max, + 'sun_max_fill': CupertinoIcons.sun_max_fill, + 'sun_min': CupertinoIcons.sun_min, + 'sun_min_fill': CupertinoIcons.sun_min_fill, + 'sunrise': CupertinoIcons.sunrise, + 'sunrise_fill': CupertinoIcons.sunrise_fill, + 'sunset': CupertinoIcons.sunset, + 'sunset_fill': CupertinoIcons.sunset_fill, + 't_bubble': CupertinoIcons.t_bubble, + 't_bubble_fill': CupertinoIcons.t_bubble_fill, + 'table': CupertinoIcons.table, + 'table_badge_more': CupertinoIcons.table_badge_more, + 'table_badge_more_fill': CupertinoIcons.table_badge_more_fill, + 'table_fill': CupertinoIcons.table_fill, + 'tag_circle': CupertinoIcons.tag_circle, + 'tag_circle_fill': CupertinoIcons.tag_circle_fill, + 'tag_fill': CupertinoIcons.tag_fill, + 'text_aligncenter': CupertinoIcons.text_aligncenter, + 'text_alignleft': CupertinoIcons.text_alignleft, + 'text_alignright': CupertinoIcons.text_alignright, + 'text_append': CupertinoIcons.text_append, + 'text_badge_checkmark': CupertinoIcons.text_badge_checkmark, + 'text_badge_minus': CupertinoIcons.text_badge_minus, + 'text_badge_plus': CupertinoIcons.text_badge_plus, + 'text_badge_star': CupertinoIcons.text_badge_star, + 'text_badge_xmark': CupertinoIcons.text_badge_xmark, + 'text_bubble': CupertinoIcons.text_bubble, + 'text_bubble_fill': CupertinoIcons.text_bubble_fill, + 'text_cursor': CupertinoIcons.text_cursor, + 'text_insert': CupertinoIcons.text_insert, + 'text_justify': CupertinoIcons.text_justify, + 'text_justifyleft': CupertinoIcons.text_justifyleft, + 'text_justifyright': CupertinoIcons.text_justifyright, + 'text_quote': CupertinoIcons.text_quote, + 'textbox': CupertinoIcons.textbox, + 'textformat': CupertinoIcons.textformat, + 'textformat_123': CupertinoIcons.textformat_123, + 'textformat_abc': CupertinoIcons.textformat_abc, + 'textformat_abc_dottedunderline': CupertinoIcons.textformat_abc_dottedunderline, + 'textformat_alt': CupertinoIcons.textformat_alt, + 'textformat_size': CupertinoIcons.textformat_size, + 'textformat_subscript': CupertinoIcons.textformat_subscript, + 'textformat_superscript': CupertinoIcons.textformat_superscript, + 'thermometer': CupertinoIcons.thermometer, + 'thermometer_snowflake': CupertinoIcons.thermometer_snowflake, + 'thermometer_sun': CupertinoIcons.thermometer_sun, + 'ticket': CupertinoIcons.ticket, + 'ticket_fill': CupertinoIcons.ticket_fill, + 'tickets': CupertinoIcons.tickets, + 'tickets_fill': CupertinoIcons.tickets_fill, + 'timelapse': CupertinoIcons.timelapse, + 'timer': CupertinoIcons.timer, + 'timer_fill': CupertinoIcons.timer_fill, + 'today': CupertinoIcons.today, + 'today_fill': CupertinoIcons.today_fill, + 'tornado': CupertinoIcons.tornado, + 'tortoise': CupertinoIcons.tortoise, + 'tortoise_fill': CupertinoIcons.tortoise_fill, + 'tram_fill': CupertinoIcons.tram_fill, + 'trash': CupertinoIcons.trash, + 'trash_circle': CupertinoIcons.trash_circle, + 'trash_circle_fill': CupertinoIcons.trash_circle_fill, + 'trash_fill': CupertinoIcons.trash_fill, + 'trash_slash': CupertinoIcons.trash_slash, + 'trash_slash_fill': CupertinoIcons.trash_slash_fill, + 'tray': CupertinoIcons.tray, + 'tray_2': CupertinoIcons.tray_2, + 'tray_2_fill': CupertinoIcons.tray_2_fill, + 'tray_arrow_down': CupertinoIcons.tray_arrow_down, + 'tray_arrow_down_fill': CupertinoIcons.tray_arrow_down_fill, + 'tray_arrow_up': CupertinoIcons.tray_arrow_up, + 'tray_arrow_up_fill': CupertinoIcons.tray_arrow_up_fill, + 'tray_fill': CupertinoIcons.tray_fill, + 'tray_full': CupertinoIcons.tray_full, + 'tray_full_fill': CupertinoIcons.tray_full_fill, + 'tree': CupertinoIcons.tree, + 'triangle': CupertinoIcons.triangle, + 'triangle_fill': CupertinoIcons.triangle_fill, + 'triangle_lefthalf_fill': CupertinoIcons.triangle_lefthalf_fill, + 'triangle_righthalf_fill': CupertinoIcons.triangle_righthalf_fill, + 'tropicalstorm': CupertinoIcons.tropicalstorm, + 'tuningfork': CupertinoIcons.tuningfork, + 'tv': CupertinoIcons.tv, + 'tv_circle': CupertinoIcons.tv_circle, + 'tv_circle_fill': CupertinoIcons.tv_circle_fill, + 'tv_fill': CupertinoIcons.tv_fill, + 'tv_music_note': CupertinoIcons.tv_music_note, + 'tv_music_note_fill': CupertinoIcons.tv_music_note_fill, + 'uiwindow_split_2x1': CupertinoIcons.uiwindow_split_2x1, + 'umbrella': CupertinoIcons.umbrella, + 'umbrella_fill': CupertinoIcons.umbrella_fill, + 'underline': CupertinoIcons.underline, + 'upload_circle': CupertinoIcons.upload_circle, + 'upload_circle_fill': CupertinoIcons.upload_circle_fill, + 'videocam': CupertinoIcons.videocam, + 'videocam_circle': CupertinoIcons.videocam_circle, + 'videocam_circle_fill': CupertinoIcons.videocam_circle_fill, + 'videocam_fill': CupertinoIcons.videocam_fill, + 'view_2d': CupertinoIcons.view_2d, + 'view_3d': CupertinoIcons.view_3d, + 'viewfinder': CupertinoIcons.viewfinder, + 'viewfinder_circle': CupertinoIcons.viewfinder_circle, + 'viewfinder_circle_fill': CupertinoIcons.viewfinder_circle_fill, + 'wand_rays': CupertinoIcons.wand_rays, + 'wand_rays_inverse': CupertinoIcons.wand_rays_inverse, + 'wand_stars': CupertinoIcons.wand_stars, + 'wand_stars_inverse': CupertinoIcons.wand_stars_inverse, + 'waveform': CupertinoIcons.waveform, + 'waveform_circle': CupertinoIcons.waveform_circle, + 'waveform_circle_fill': CupertinoIcons.waveform_circle_fill, + 'waveform_path': CupertinoIcons.waveform_path, + 'waveform_path_badge_minus': CupertinoIcons.waveform_path_badge_minus, + 'waveform_path_badge_plus': CupertinoIcons.waveform_path_badge_plus, + 'waveform_path_ecg': CupertinoIcons.waveform_path_ecg, + 'wifi': CupertinoIcons.wifi, + 'wifi_exclamationmark': CupertinoIcons.wifi_exclamationmark, + 'wifi_slash': CupertinoIcons.wifi_slash, + 'wind': CupertinoIcons.wind, + 'wind_snow': CupertinoIcons.wind_snow, + 'wrench': CupertinoIcons.wrench, + 'wrench_fill': CupertinoIcons.wrench_fill, + 'xmark': CupertinoIcons.xmark, + 'xmark_circle': CupertinoIcons.xmark_circle, + 'xmark_circle_fill': CupertinoIcons.xmark_circle_fill, + 'xmark_octagon': CupertinoIcons.xmark_octagon, + 'xmark_octagon_fill': CupertinoIcons.xmark_octagon_fill, + 'xmark_rectangle': CupertinoIcons.xmark_rectangle, + 'xmark_rectangle_fill': CupertinoIcons.xmark_rectangle_fill, + 'xmark_seal': CupertinoIcons.xmark_seal, + 'xmark_seal_fill': CupertinoIcons.xmark_seal_fill, + 'xmark_shield': CupertinoIcons.xmark_shield, + 'xmark_shield_fill': CupertinoIcons.xmark_shield_fill, + 'xmark_square': CupertinoIcons.xmark_square, + 'xmark_square_fill': CupertinoIcons.xmark_square_fill, + 'zoom_in': CupertinoIcons.zoom_in, + 'zoom_out': CupertinoIcons.zoom_out, + 'zzz': CupertinoIcons.zzz, + }, + 'CupertinoNavigationBar': (props) => CupertinoNavigationBar( + key: props['key'], + leading: props['leading'], + automaticallyImplyLeading: props['automaticallyImplyLeading'] ?? true, + automaticallyImplyMiddle: props['automaticallyImplyMiddle'] ?? true, + previousPageTitle: props['previousPageTitle'], + middle: props['middle'], + trailing: props['trailing'], + border: props['border'] ?? _kDefaultNavBarBorder, + backgroundColor: props['backgroundColor'], + brightness: props['brightness'], + padding: props['padding'], + transitionBetweenRoutes: props['transitionBetweenRoutes'] ?? true, + heroTag: props['heroTag'] ?? _defaultHeroTag, + ), + 'CupertinoSliverNavigationBar': (props) => CupertinoSliverNavigationBar( + key: props['key'], + largeTitle: props['largeTitle'], + leading: props['leading'], + automaticallyImplyLeading: props['automaticallyImplyLeading'] ?? true, + automaticallyImplyTitle: props['automaticallyImplyTitle'] ?? true, + previousPageTitle: props['previousPageTitle'], + middle: props['middle'], + trailing: props['trailing'], + border: props['border'] ?? _kDefaultNavBarBorder, + backgroundColor: props['backgroundColor'], + brightness: props['brightness'], + padding: props['padding'], + transitionBetweenRoutes: props['transitionBetweenRoutes'] ?? true, + heroTag: props['heroTag'] ?? _defaultHeroTag, + stretch: props['stretch'] ?? false, + ), + 'CupertinoNavigationBarBackButton': (props) => CupertinoNavigationBarBackButton( + key: props['key'], + color: props['color'], + previousPageTitle: props['previousPageTitle'], + onPressed: props['onPressed'], + ), + 'CupertinoTheme': (props) => CupertinoTheme( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'CupertinoTheme.of': (props) => CupertinoTheme.of( + props['pa'][0], + ), + 'CupertinoTheme.brightnessOf': (props) => CupertinoTheme.brightnessOf( + props['pa'][0], + ), + 'CupertinoTheme.maybeBrightnessOf': (props) => CupertinoTheme.maybeBrightnessOf( + props['pa'][0], + ), + 'DefaultCupertinoLocalizations': { + 'delegate': DefaultCupertinoLocalizations.delegate, + }, + 'DefaultCupertinoLocalizations.load': (props) => DefaultCupertinoLocalizations.load( + props['pa'][0], + ), + 'DatePickerDateTimeOrder': { + 'values': DatePickerDateTimeOrder.values, + 'date_time_dayPeriod': DatePickerDateTimeOrder.date_time_dayPeriod, + 'date_dayPeriod_time': DatePickerDateTimeOrder.date_dayPeriod_time, + 'time_dayPeriod_date': DatePickerDateTimeOrder.time_dayPeriod_date, + 'dayPeriod_time_date': DatePickerDateTimeOrder.dayPeriod_time_date, + }, + 'DatePickerDateOrder': { + 'values': DatePickerDateOrder.values, + 'dmy': DatePickerDateOrder.dmy, + 'mdy': DatePickerDateOrder.mdy, + 'ymd': DatePickerDateOrder.ymd, + 'ydm': DatePickerDateOrder.ydm, + }, + 'CupertinoSlider': (props) => CupertinoSlider( + key: props['key'], + value: props['value']?.toDouble(), + onChanged: props['onChanged'], + onChangeStart: props['onChangeStart'], + onChangeEnd: props['onChangeEnd'], + min: props['min']?.toDouble() ?? 0.0, + max: props['max']?.toDouble() ?? 1.0, + divisions: props['divisions'], + activeColor: props['activeColor'], + thumbColor: props['thumbColor'] ?? CupertinoColors.white, + ), +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart index da99824e..6ecdcef7 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$m.dart @@ -2,13 +2,20 @@ import 'package:flutter/material.dart'; import 'package:flutter/gestures.dart'; -import 'package:flutter/gestures.dart'; -import 'package:flutter/gestures.dart'; -import 'package:flutter/gestures.dart'; -import 'package:flutter/gestures.dart'; +import 'package:flutter/rendering.dart'; import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; +import 'utils.dart'; -const int defaultRowsPerPage = 10; +const Duration _snackBarDisplayDuration = Duration(milliseconds: 4000); +const double kMinInteractiveDimensionCupertino = 44.0; + +class _DefaultHeroTag { + const _DefaultHeroTag(); + @override + String toString() => ''; +} + +const double _kMenuDividerHeight = 16.0; const Color _kColor = Color(0xA0B71C1C); const double _kHeight = 12.0; // height of banner const TextStyle _kTextStyle = TextStyle( @@ -18,8345 +25,10234 @@ const TextStyle _kTextStyle = TextStyle( height: 1.0, ); -const Duration _snackBarDisplayDuration = Duration(milliseconds: 4000); +const int defaultRowsPerPage = 10; var p = () => { - 'SnackBarThemeData.lerp': (props) => SnackBarThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'SnackBarBehavior': { - 'values': SnackBarBehavior.values, - 'fixed': SnackBarBehavior.fixed, - 'floating': SnackBarBehavior.floating, - }, - 'DefaultTabController.of': (props) => DefaultTabController.of( - props['pa'][0], - ), - 'TextButtonThemeData.lerp': (props) => TextButtonThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TextButtonTheme.of': (props) => TextButtonTheme.of( - props['pa'][0], - ), - 'ProgressIndicatorThemeData.lerp': (props) => - ProgressIndicatorThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ProgressIndicatorTheme.of': (props) => ProgressIndicatorTheme.of( - props['pa'][0], - ), - 'Material': { - 'defaultSplashRadius': Material.defaultSplashRadius, - }, - 'Material.of': (props) => Material.of( - props['pa'][0], - ), - 'MaterialType': { - 'values': MaterialType.values, - 'canvas': MaterialType.canvas, - 'card': MaterialType.card, - 'circle': MaterialType.circle, - 'button': MaterialType.button, - 'transparency': MaterialType.transparency, - }, - 'TextTheme.lerp': (props) => TextTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'InkRipple': { - 'splashFactory': InkRipple.splashFactory, - }, - 'ElevatedButtonThemeData.lerp': (props) => ElevatedButtonThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ElevatedButtonTheme.of': (props) => ElevatedButtonTheme.of( - props['pa'][0], - ), - 'MaterialBannerThemeData.lerp': (props) => MaterialBannerThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'MaterialBannerTheme.of': (props) => MaterialBannerTheme.of( - props['pa'][0], - ), - 'ScaffoldMessenger.of': (props) => ScaffoldMessenger.of( - props['pa'][0], - ), - 'ScaffoldMessenger.maybeOf': (props) => ScaffoldMessenger.maybeOf( - props['pa'][0], - ), - 'Scaffold.of': (props) => Scaffold.of( - props['pa'][0], - ), - 'Scaffold.maybeOf': (props) => Scaffold.maybeOf( - props['pa'][0], - ), - 'Scaffold.geometryOf': (props) => Scaffold.geometryOf( - props['pa'][0], - ), - 'Scaffold.hasDrawer': (props) => Scaffold.hasDrawer( - props['pa'][0], - registerForUpdates: props['registerForUpdates'] ?? true, - ), - 'Feedback.forTap': (props) => Feedback.forTap( - props['pa'][0], - ), - 'Feedback.wrapForTap': (props) => Feedback.wrapForTap( - props['pa'][0], - props['pa'][1], - ), - 'Feedback.forLongPress': (props) => Feedback.forLongPress( - props['pa'][0], - ), - 'Feedback.wrapForLongPress': (props) => Feedback.wrapForLongPress( - props['pa'][0], - props['pa'][1], - ), - 'SwitchThemeData.lerp': (props) => SwitchThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'SwitchTheme.of': (props) => SwitchTheme.of( - props['pa'][0], - ), - 'ToggleButtonsThemeData.lerp': (props) => ToggleButtonsThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ToggleButtonsTheme.of': (props) => ToggleButtonsTheme.of( - props['pa'][0], - ), - 'PaginatedDataTable': { - 'defaultRowsPerPage': PaginatedDataTable.defaultRowsPerPage, - }, - 'Theme.of': (props) => Theme.of( - props['pa'][0], - ), - 'ButtonBarThemeData.lerp': (props) => ButtonBarThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ButtonBarTheme.of': (props) => ButtonBarTheme.of( - props['pa'][0], - ), - 'InkSplash': { - 'splashFactory': InkSplash.splashFactory, - }, - 'Icons': { - 'ten_k': Icons.ten_k, - 'ten_k_sharp': Icons.ten_k_sharp, - 'ten_k_rounded': Icons.ten_k_rounded, - 'ten_k_outlined': Icons.ten_k_outlined, - 'ten_mp': Icons.ten_mp, - 'ten_mp_sharp': Icons.ten_mp_sharp, - 'ten_mp_rounded': Icons.ten_mp_rounded, - 'ten_mp_outlined': Icons.ten_mp_outlined, - 'eleven_mp': Icons.eleven_mp, - 'eleven_mp_sharp': Icons.eleven_mp_sharp, - 'eleven_mp_rounded': Icons.eleven_mp_rounded, - 'eleven_mp_outlined': Icons.eleven_mp_outlined, - 'twelve_mp': Icons.twelve_mp, - 'twelve_mp_sharp': Icons.twelve_mp_sharp, - 'twelve_mp_rounded': Icons.twelve_mp_rounded, - 'twelve_mp_outlined': Icons.twelve_mp_outlined, - 'thirteen_mp': Icons.thirteen_mp, - 'thirteen_mp_sharp': Icons.thirteen_mp_sharp, - 'thirteen_mp_rounded': Icons.thirteen_mp_rounded, - 'thirteen_mp_outlined': Icons.thirteen_mp_outlined, - 'fourteen_mp': Icons.fourteen_mp, - 'fourteen_mp_sharp': Icons.fourteen_mp_sharp, - 'fourteen_mp_rounded': Icons.fourteen_mp_rounded, - 'fourteen_mp_outlined': Icons.fourteen_mp_outlined, - 'fifteen_mp': Icons.fifteen_mp, - 'fifteen_mp_sharp': Icons.fifteen_mp_sharp, - 'fifteen_mp_rounded': Icons.fifteen_mp_rounded, - 'fifteen_mp_outlined': Icons.fifteen_mp_outlined, - 'sixteen_mp': Icons.sixteen_mp, - 'sixteen_mp_sharp': Icons.sixteen_mp_sharp, - 'sixteen_mp_rounded': Icons.sixteen_mp_rounded, - 'sixteen_mp_outlined': Icons.sixteen_mp_outlined, - 'seventeen_mp': Icons.seventeen_mp, - 'seventeen_mp_sharp': Icons.seventeen_mp_sharp, - 'seventeen_mp_rounded': Icons.seventeen_mp_rounded, - 'seventeen_mp_outlined': Icons.seventeen_mp_outlined, - 'eighteen_mp': Icons.eighteen_mp, - 'eighteen_mp_sharp': Icons.eighteen_mp_sharp, - 'eighteen_mp_rounded': Icons.eighteen_mp_rounded, - 'eighteen_mp_outlined': Icons.eighteen_mp_outlined, - 'nineteen_mp': Icons.nineteen_mp, - 'nineteen_mp_sharp': Icons.nineteen_mp_sharp, - 'nineteen_mp_rounded': Icons.nineteen_mp_rounded, - 'nineteen_mp_outlined': Icons.nineteen_mp_outlined, - 'one_k': Icons.one_k, - 'one_k_sharp': Icons.one_k_sharp, - 'one_k_rounded': Icons.one_k_rounded, - 'one_k_outlined': Icons.one_k_outlined, - 'one_k_plus': Icons.one_k_plus, - 'one_k_plus_sharp': Icons.one_k_plus_sharp, - 'one_k_plus_rounded': Icons.one_k_plus_rounded, - 'one_k_plus_outlined': Icons.one_k_plus_outlined, - 'one_x_mobiledata': Icons.one_x_mobiledata, - 'one_x_mobiledata_sharp': Icons.one_x_mobiledata_sharp, - 'one_x_mobiledata_rounded': Icons.one_x_mobiledata_rounded, - 'one_x_mobiledata_outlined': Icons.one_x_mobiledata_outlined, - 'twenty_mp': Icons.twenty_mp, - 'twenty_mp_sharp': Icons.twenty_mp_sharp, - 'twenty_mp_rounded': Icons.twenty_mp_rounded, - 'twenty_mp_outlined': Icons.twenty_mp_outlined, - 'twenty_one_mp': Icons.twenty_one_mp, - 'twenty_one_mp_sharp': Icons.twenty_one_mp_sharp, - 'twenty_one_mp_rounded': Icons.twenty_one_mp_rounded, - 'twenty_one_mp_outlined': Icons.twenty_one_mp_outlined, - 'twenty_two_mp': Icons.twenty_two_mp, - 'twenty_two_mp_sharp': Icons.twenty_two_mp_sharp, - 'twenty_two_mp_rounded': Icons.twenty_two_mp_rounded, - 'twenty_two_mp_outlined': Icons.twenty_two_mp_outlined, - 'twenty_three_mp': Icons.twenty_three_mp, - 'twenty_three_mp_sharp': Icons.twenty_three_mp_sharp, - 'twenty_three_mp_rounded': Icons.twenty_three_mp_rounded, - 'twenty_three_mp_outlined': Icons.twenty_three_mp_outlined, - 'twenty_four_mp': Icons.twenty_four_mp, - 'twenty_four_mp_sharp': Icons.twenty_four_mp_sharp, - 'twenty_four_mp_rounded': Icons.twenty_four_mp_rounded, - 'twenty_four_mp_outlined': Icons.twenty_four_mp_outlined, - 'two_k': Icons.two_k, - 'two_k_sharp': Icons.two_k_sharp, - 'two_k_rounded': Icons.two_k_rounded, - 'two_k_outlined': Icons.two_k_outlined, - 'two_k_plus': Icons.two_k_plus, - 'two_k_plus_sharp': Icons.two_k_plus_sharp, - 'two_k_plus_rounded': Icons.two_k_plus_rounded, - 'two_k_plus_outlined': Icons.two_k_plus_outlined, - 'two_mp': Icons.two_mp, - 'two_mp_sharp': Icons.two_mp_sharp, - 'two_mp_rounded': Icons.two_mp_rounded, - 'two_mp_outlined': Icons.two_mp_outlined, - 'thirty_fps': Icons.thirty_fps, - 'thirty_fps_sharp': Icons.thirty_fps_sharp, - 'thirty_fps_rounded': Icons.thirty_fps_rounded, - 'thirty_fps_outlined': Icons.thirty_fps_outlined, - 'thirty_fps_select': Icons.thirty_fps_select, - 'thirty_fps_select_sharp': Icons.thirty_fps_select_sharp, - 'thirty_fps_select_rounded': Icons.thirty_fps_select_rounded, - 'thirty_fps_select_outlined': Icons.thirty_fps_select_outlined, - 'threesixty': Icons.threesixty, - 'threesixty_sharp': Icons.threesixty_sharp, - 'threesixty_rounded': Icons.threesixty_rounded, - 'threesixty_outlined': Icons.threesixty_outlined, - 'threed_rotation': Icons.threed_rotation, - 'threed_rotation_sharp': Icons.threed_rotation_sharp, - 'threed_rotation_rounded': Icons.threed_rotation_rounded, - 'threed_rotation_outlined': Icons.threed_rotation_outlined, - 'three_g_mobiledata': Icons.three_g_mobiledata, - 'three_g_mobiledata_sharp': Icons.three_g_mobiledata_sharp, - 'three_g_mobiledata_rounded': Icons.three_g_mobiledata_rounded, - 'three_g_mobiledata_outlined': Icons.three_g_mobiledata_outlined, - 'three_k': Icons.three_k, - 'three_k_sharp': Icons.three_k_sharp, - 'three_k_rounded': Icons.three_k_rounded, - 'three_k_outlined': Icons.three_k_outlined, - 'three_k_plus': Icons.three_k_plus, - 'three_k_plus_sharp': Icons.three_k_plus_sharp, - 'three_k_plus_rounded': Icons.three_k_plus_rounded, - 'three_k_plus_outlined': Icons.three_k_plus_outlined, - 'three_mp': Icons.three_mp, - 'three_mp_sharp': Icons.three_mp_sharp, - 'three_mp_rounded': Icons.three_mp_rounded, - 'three_mp_outlined': Icons.three_mp_outlined, - 'three_p': Icons.three_p, - 'three_p_sharp': Icons.three_p_sharp, - 'three_p_rounded': Icons.three_p_rounded, - 'three_p_outlined': Icons.three_p_outlined, - 'four_g_mobiledata': Icons.four_g_mobiledata, - 'four_g_mobiledata_sharp': Icons.four_g_mobiledata_sharp, - 'four_g_mobiledata_rounded': Icons.four_g_mobiledata_rounded, - 'four_g_mobiledata_outlined': Icons.four_g_mobiledata_outlined, - 'four_g_plus_mobiledata': Icons.four_g_plus_mobiledata, - 'four_g_plus_mobiledata_sharp': Icons.four_g_plus_mobiledata_sharp, - 'four_g_plus_mobiledata_rounded': Icons.four_g_plus_mobiledata_rounded, - 'four_g_plus_mobiledata_outlined': - Icons.four_g_plus_mobiledata_outlined, - 'four_k': Icons.four_k, - 'four_k_sharp': Icons.four_k_sharp, - 'four_k_rounded': Icons.four_k_rounded, - 'four_k_outlined': Icons.four_k_outlined, - 'four_k_plus': Icons.four_k_plus, - 'four_k_plus_sharp': Icons.four_k_plus_sharp, - 'four_k_plus_rounded': Icons.four_k_plus_rounded, - 'four_k_plus_outlined': Icons.four_k_plus_outlined, - 'four_mp': Icons.four_mp, - 'four_mp_sharp': Icons.four_mp_sharp, - 'four_mp_rounded': Icons.four_mp_rounded, - 'four_mp_outlined': Icons.four_mp_outlined, - 'five_g': Icons.five_g, - 'five_g_sharp': Icons.five_g_sharp, - 'five_g_rounded': Icons.five_g_rounded, - 'five_g_outlined': Icons.five_g_outlined, - 'five_k': Icons.five_k, - 'five_k_sharp': Icons.five_k_sharp, - 'five_k_rounded': Icons.five_k_rounded, - 'five_k_outlined': Icons.five_k_outlined, - 'five_k_plus': Icons.five_k_plus, - 'five_k_plus_sharp': Icons.five_k_plus_sharp, - 'five_k_plus_rounded': Icons.five_k_plus_rounded, - 'five_k_plus_outlined': Icons.five_k_plus_outlined, - 'five_mp': Icons.five_mp, - 'five_mp_sharp': Icons.five_mp_sharp, - 'five_mp_rounded': Icons.five_mp_rounded, - 'five_mp_outlined': Icons.five_mp_outlined, - 'sixty_fps': Icons.sixty_fps, - 'sixty_fps_sharp': Icons.sixty_fps_sharp, - 'sixty_fps_rounded': Icons.sixty_fps_rounded, - 'sixty_fps_outlined': Icons.sixty_fps_outlined, - 'sixty_fps_select': Icons.sixty_fps_select, - 'sixty_fps_select_sharp': Icons.sixty_fps_select_sharp, - 'sixty_fps_select_rounded': Icons.sixty_fps_select_rounded, - 'sixty_fps_select_outlined': Icons.sixty_fps_select_outlined, - 'six__ft_apart': Icons.six__ft_apart, - 'six__ft_apart_sharp': Icons.six__ft_apart_sharp, - 'six__ft_apart_rounded': Icons.six__ft_apart_rounded, - 'six__ft_apart_outlined': Icons.six__ft_apart_outlined, - 'six_k': Icons.six_k, - 'six_k_sharp': Icons.six_k_sharp, - 'six_k_rounded': Icons.six_k_rounded, - 'six_k_outlined': Icons.six_k_outlined, - 'six_k_plus': Icons.six_k_plus, - 'six_k_plus_sharp': Icons.six_k_plus_sharp, - 'six_k_plus_rounded': Icons.six_k_plus_rounded, - 'six_k_plus_outlined': Icons.six_k_plus_outlined, - 'six_mp': Icons.six_mp, - 'six_mp_sharp': Icons.six_mp_sharp, - 'six_mp_rounded': Icons.six_mp_rounded, - 'six_mp_outlined': Icons.six_mp_outlined, - 'seven_k': Icons.seven_k, - 'seven_k_sharp': Icons.seven_k_sharp, - 'seven_k_rounded': Icons.seven_k_rounded, - 'seven_k_outlined': Icons.seven_k_outlined, - 'seven_k_plus': Icons.seven_k_plus, - 'seven_k_plus_sharp': Icons.seven_k_plus_sharp, - 'seven_k_plus_rounded': Icons.seven_k_plus_rounded, - 'seven_k_plus_outlined': Icons.seven_k_plus_outlined, - 'seven_mp': Icons.seven_mp, - 'seven_mp_sharp': Icons.seven_mp_sharp, - 'seven_mp_rounded': Icons.seven_mp_rounded, - 'seven_mp_outlined': Icons.seven_mp_outlined, - 'eight_k': Icons.eight_k, - 'eight_k_sharp': Icons.eight_k_sharp, - 'eight_k_rounded': Icons.eight_k_rounded, - 'eight_k_outlined': Icons.eight_k_outlined, - 'eight_k_plus': Icons.eight_k_plus, - 'eight_k_plus_sharp': Icons.eight_k_plus_sharp, - 'eight_k_plus_rounded': Icons.eight_k_plus_rounded, - 'eight_k_plus_outlined': Icons.eight_k_plus_outlined, - 'eight_mp': Icons.eight_mp, - 'eight_mp_sharp': Icons.eight_mp_sharp, - 'eight_mp_rounded': Icons.eight_mp_rounded, - 'eight_mp_outlined': Icons.eight_mp_outlined, - 'nine_k': Icons.nine_k, - 'nine_k_sharp': Icons.nine_k_sharp, - 'nine_k_rounded': Icons.nine_k_rounded, - 'nine_k_outlined': Icons.nine_k_outlined, - 'nine_k_plus': Icons.nine_k_plus, - 'nine_k_plus_sharp': Icons.nine_k_plus_sharp, - 'nine_k_plus_rounded': Icons.nine_k_plus_rounded, - 'nine_k_plus_outlined': Icons.nine_k_plus_outlined, - 'nine_mp': Icons.nine_mp, - 'nine_mp_sharp': Icons.nine_mp_sharp, - 'nine_mp_rounded': Icons.nine_mp_rounded, - 'nine_mp_outlined': Icons.nine_mp_outlined, - 'ac_unit': Icons.ac_unit, - 'ac_unit_sharp': Icons.ac_unit_sharp, - 'ac_unit_rounded': Icons.ac_unit_rounded, - 'ac_unit_outlined': Icons.ac_unit_outlined, - 'access_alarm': Icons.access_alarm, - 'access_alarm_sharp': Icons.access_alarm_sharp, - 'access_alarm_rounded': Icons.access_alarm_rounded, - 'access_alarm_outlined': Icons.access_alarm_outlined, - 'access_alarms': Icons.access_alarms, - 'access_alarms_sharp': Icons.access_alarms_sharp, - 'access_alarms_rounded': Icons.access_alarms_rounded, - 'access_alarms_outlined': Icons.access_alarms_outlined, - 'access_time': Icons.access_time, - 'access_time_sharp': Icons.access_time_sharp, - 'access_time_rounded': Icons.access_time_rounded, - 'access_time_outlined': Icons.access_time_outlined, - 'access_time_filled': Icons.access_time_filled, - 'access_time_filled_sharp': Icons.access_time_filled_sharp, - 'access_time_filled_rounded': Icons.access_time_filled_rounded, - 'access_time_filled_outlined': Icons.access_time_filled_outlined, - 'accessibility': Icons.accessibility, - 'accessibility_sharp': Icons.accessibility_sharp, - 'accessibility_rounded': Icons.accessibility_rounded, - 'accessibility_outlined': Icons.accessibility_outlined, - 'accessibility_new': Icons.accessibility_new, - 'accessibility_new_sharp': Icons.accessibility_new_sharp, - 'accessibility_new_rounded': Icons.accessibility_new_rounded, - 'accessibility_new_outlined': Icons.accessibility_new_outlined, - 'accessible': Icons.accessible, - 'accessible_sharp': Icons.accessible_sharp, - 'accessible_rounded': Icons.accessible_rounded, - 'accessible_outlined': Icons.accessible_outlined, - 'accessible_forward': Icons.accessible_forward, - 'accessible_forward_sharp': Icons.accessible_forward_sharp, - 'accessible_forward_rounded': Icons.accessible_forward_rounded, - 'accessible_forward_outlined': Icons.accessible_forward_outlined, - 'account_balance': Icons.account_balance, - 'account_balance_sharp': Icons.account_balance_sharp, - 'account_balance_rounded': Icons.account_balance_rounded, - 'account_balance_outlined': Icons.account_balance_outlined, - 'account_balance_wallet': Icons.account_balance_wallet, - 'account_balance_wallet_sharp': Icons.account_balance_wallet_sharp, - 'account_balance_wallet_rounded': Icons.account_balance_wallet_rounded, - 'account_balance_wallet_outlined': - Icons.account_balance_wallet_outlined, - 'account_box': Icons.account_box, - 'account_box_sharp': Icons.account_box_sharp, - 'account_box_rounded': Icons.account_box_rounded, - 'account_box_outlined': Icons.account_box_outlined, - 'account_circle': Icons.account_circle, - 'account_circle_sharp': Icons.account_circle_sharp, - 'account_circle_rounded': Icons.account_circle_rounded, - 'account_circle_outlined': Icons.account_circle_outlined, - 'account_tree': Icons.account_tree, - 'account_tree_sharp': Icons.account_tree_sharp, - 'account_tree_rounded': Icons.account_tree_rounded, - 'account_tree_outlined': Icons.account_tree_outlined, - 'ad_units': Icons.ad_units, - 'ad_units_sharp': Icons.ad_units_sharp, - 'ad_units_rounded': Icons.ad_units_rounded, - 'ad_units_outlined': Icons.ad_units_outlined, - 'adb': Icons.adb, - 'adb_sharp': Icons.adb_sharp, - 'adb_rounded': Icons.adb_rounded, - 'adb_outlined': Icons.adb_outlined, - 'add': Icons.add, - 'add_sharp': Icons.add_sharp, - 'add_rounded': Icons.add_rounded, - 'add_outlined': Icons.add_outlined, - 'add_a_photo': Icons.add_a_photo, - 'add_a_photo_sharp': Icons.add_a_photo_sharp, - 'add_a_photo_rounded': Icons.add_a_photo_rounded, - 'add_a_photo_outlined': Icons.add_a_photo_outlined, - 'add_alarm': Icons.add_alarm, - 'add_alarm_sharp': Icons.add_alarm_sharp, - 'add_alarm_rounded': Icons.add_alarm_rounded, - 'add_alarm_outlined': Icons.add_alarm_outlined, - 'add_alert': Icons.add_alert, - 'add_alert_sharp': Icons.add_alert_sharp, - 'add_alert_rounded': Icons.add_alert_rounded, - 'add_alert_outlined': Icons.add_alert_outlined, - 'add_box': Icons.add_box, - 'add_box_sharp': Icons.add_box_sharp, - 'add_box_rounded': Icons.add_box_rounded, - 'add_box_outlined': Icons.add_box_outlined, - 'add_business': Icons.add_business, - 'add_business_sharp': Icons.add_business_sharp, - 'add_business_rounded': Icons.add_business_rounded, - 'add_business_outlined': Icons.add_business_outlined, - 'add_call': Icons.add_call, - 'add_chart': Icons.add_chart, - 'add_chart_sharp': Icons.add_chart_sharp, - 'add_chart_rounded': Icons.add_chart_rounded, - 'add_chart_outlined': Icons.add_chart_outlined, - 'add_circle': Icons.add_circle, - 'add_circle_sharp': Icons.add_circle_sharp, - 'add_circle_rounded': Icons.add_circle_rounded, - 'add_circle_outlined': Icons.add_circle_outlined, - 'add_circle_outline': Icons.add_circle_outline, - 'add_circle_outline_sharp': Icons.add_circle_outline_sharp, - 'add_circle_outline_rounded': Icons.add_circle_outline_rounded, - 'add_circle_outline_outlined': Icons.add_circle_outline_outlined, - 'add_comment': Icons.add_comment, - 'add_comment_sharp': Icons.add_comment_sharp, - 'add_comment_rounded': Icons.add_comment_rounded, - 'add_comment_outlined': Icons.add_comment_outlined, - 'add_ic_call': Icons.add_ic_call, - 'add_ic_call_sharp': Icons.add_ic_call_sharp, - 'add_ic_call_rounded': Icons.add_ic_call_rounded, - 'add_ic_call_outlined': Icons.add_ic_call_outlined, - 'add_link': Icons.add_link, - 'add_link_sharp': Icons.add_link_sharp, - 'add_link_rounded': Icons.add_link_rounded, - 'add_link_outlined': Icons.add_link_outlined, - 'add_location': Icons.add_location, - 'add_location_sharp': Icons.add_location_sharp, - 'add_location_rounded': Icons.add_location_rounded, - 'add_location_outlined': Icons.add_location_outlined, - 'add_location_alt': Icons.add_location_alt, - 'add_location_alt_sharp': Icons.add_location_alt_sharp, - 'add_location_alt_rounded': Icons.add_location_alt_rounded, - 'add_location_alt_outlined': Icons.add_location_alt_outlined, - 'add_moderator': Icons.add_moderator, - 'add_moderator_sharp': Icons.add_moderator_sharp, - 'add_moderator_rounded': Icons.add_moderator_rounded, - 'add_moderator_outlined': Icons.add_moderator_outlined, - 'add_photo_alternate': Icons.add_photo_alternate, - 'add_photo_alternate_sharp': Icons.add_photo_alternate_sharp, - 'add_photo_alternate_rounded': Icons.add_photo_alternate_rounded, - 'add_photo_alternate_outlined': Icons.add_photo_alternate_outlined, - 'add_reaction': Icons.add_reaction, - 'add_reaction_sharp': Icons.add_reaction_sharp, - 'add_reaction_rounded': Icons.add_reaction_rounded, - 'add_reaction_outlined': Icons.add_reaction_outlined, - 'add_road': Icons.add_road, - 'add_road_sharp': Icons.add_road_sharp, - 'add_road_rounded': Icons.add_road_rounded, - 'add_road_outlined': Icons.add_road_outlined, - 'add_shopping_cart': Icons.add_shopping_cart, - 'add_shopping_cart_sharp': Icons.add_shopping_cart_sharp, - 'add_shopping_cart_rounded': Icons.add_shopping_cart_rounded, - 'add_shopping_cart_outlined': Icons.add_shopping_cart_outlined, - 'add_task': Icons.add_task, - 'add_task_sharp': Icons.add_task_sharp, - 'add_task_rounded': Icons.add_task_rounded, - 'add_task_outlined': Icons.add_task_outlined, - 'add_to_drive': Icons.add_to_drive, - 'add_to_drive_sharp': Icons.add_to_drive_sharp, - 'add_to_drive_rounded': Icons.add_to_drive_rounded, - 'add_to_drive_outlined': Icons.add_to_drive_outlined, - 'add_to_home_screen': Icons.add_to_home_screen, - 'add_to_home_screen_sharp': Icons.add_to_home_screen_sharp, - 'add_to_home_screen_rounded': Icons.add_to_home_screen_rounded, - 'add_to_home_screen_outlined': Icons.add_to_home_screen_outlined, - 'add_to_photos': Icons.add_to_photos, - 'add_to_photos_sharp': Icons.add_to_photos_sharp, - 'add_to_photos_rounded': Icons.add_to_photos_rounded, - 'add_to_photos_outlined': Icons.add_to_photos_outlined, - 'add_to_queue': Icons.add_to_queue, - 'add_to_queue_sharp': Icons.add_to_queue_sharp, - 'add_to_queue_rounded': Icons.add_to_queue_rounded, - 'add_to_queue_outlined': Icons.add_to_queue_outlined, - 'addchart': Icons.addchart, - 'addchart_sharp': Icons.addchart_sharp, - 'addchart_rounded': Icons.addchart_rounded, - 'addchart_outlined': Icons.addchart_outlined, - 'adjust': Icons.adjust, - 'adjust_sharp': Icons.adjust_sharp, - 'adjust_rounded': Icons.adjust_rounded, - 'adjust_outlined': Icons.adjust_outlined, - 'admin_panel_settings': Icons.admin_panel_settings, - 'admin_panel_settings_sharp': Icons.admin_panel_settings_sharp, - 'admin_panel_settings_rounded': Icons.admin_panel_settings_rounded, - 'admin_panel_settings_outlined': Icons.admin_panel_settings_outlined, - 'agriculture': Icons.agriculture, - 'agriculture_sharp': Icons.agriculture_sharp, - 'agriculture_rounded': Icons.agriculture_rounded, - 'agriculture_outlined': Icons.agriculture_outlined, - 'air': Icons.air, - 'air_sharp': Icons.air_sharp, - 'air_rounded': Icons.air_rounded, - 'air_outlined': Icons.air_outlined, - 'airline_seat_flat': Icons.airline_seat_flat, - 'airline_seat_flat_sharp': Icons.airline_seat_flat_sharp, - 'airline_seat_flat_rounded': Icons.airline_seat_flat_rounded, - 'airline_seat_flat_outlined': Icons.airline_seat_flat_outlined, - 'airline_seat_flat_angled': Icons.airline_seat_flat_angled, - 'airline_seat_flat_angled_sharp': Icons.airline_seat_flat_angled_sharp, - 'airline_seat_flat_angled_rounded': - Icons.airline_seat_flat_angled_rounded, - 'airline_seat_flat_angled_outlined': - Icons.airline_seat_flat_angled_outlined, - 'airline_seat_individual_suite': Icons.airline_seat_individual_suite, - 'airline_seat_individual_suite_sharp': - Icons.airline_seat_individual_suite_sharp, - 'airline_seat_individual_suite_rounded': - Icons.airline_seat_individual_suite_rounded, - 'airline_seat_individual_suite_outlined': - Icons.airline_seat_individual_suite_outlined, - 'airline_seat_legroom_extra': Icons.airline_seat_legroom_extra, - 'airline_seat_legroom_extra_sharp': - Icons.airline_seat_legroom_extra_sharp, - 'airline_seat_legroom_extra_rounded': - Icons.airline_seat_legroom_extra_rounded, - 'airline_seat_legroom_extra_outlined': - Icons.airline_seat_legroom_extra_outlined, - 'airline_seat_legroom_normal': Icons.airline_seat_legroom_normal, - 'airline_seat_legroom_normal_sharp': - Icons.airline_seat_legroom_normal_sharp, - 'airline_seat_legroom_normal_rounded': - Icons.airline_seat_legroom_normal_rounded, - 'airline_seat_legroom_normal_outlined': - Icons.airline_seat_legroom_normal_outlined, - 'airline_seat_legroom_reduced': Icons.airline_seat_legroom_reduced, - 'airline_seat_legroom_reduced_sharp': - Icons.airline_seat_legroom_reduced_sharp, - 'airline_seat_legroom_reduced_rounded': - Icons.airline_seat_legroom_reduced_rounded, - 'airline_seat_legroom_reduced_outlined': - Icons.airline_seat_legroom_reduced_outlined, - 'airline_seat_recline_extra': Icons.airline_seat_recline_extra, - 'airline_seat_recline_extra_sharp': - Icons.airline_seat_recline_extra_sharp, - 'airline_seat_recline_extra_rounded': - Icons.airline_seat_recline_extra_rounded, - 'airline_seat_recline_extra_outlined': - Icons.airline_seat_recline_extra_outlined, - 'airline_seat_recline_normal': Icons.airline_seat_recline_normal, - 'airline_seat_recline_normal_sharp': - Icons.airline_seat_recline_normal_sharp, - 'airline_seat_recline_normal_rounded': - Icons.airline_seat_recline_normal_rounded, - 'airline_seat_recline_normal_outlined': - Icons.airline_seat_recline_normal_outlined, - 'airplane_ticket': Icons.airplane_ticket, - 'airplane_ticket_sharp': Icons.airplane_ticket_sharp, - 'airplane_ticket_rounded': Icons.airplane_ticket_rounded, - 'airplane_ticket_outlined': Icons.airplane_ticket_outlined, - 'airplanemode_active': Icons.airplanemode_active, - 'airplanemode_active_sharp': Icons.airplanemode_active_sharp, - 'airplanemode_active_rounded': Icons.airplanemode_active_rounded, - 'airplanemode_active_outlined': Icons.airplanemode_active_outlined, - 'airplanemode_inactive': Icons.airplanemode_inactive, - 'airplanemode_inactive_sharp': Icons.airplanemode_inactive_sharp, - 'airplanemode_inactive_rounded': Icons.airplanemode_inactive_rounded, - 'airplanemode_inactive_outlined': Icons.airplanemode_inactive_outlined, - 'airplanemode_off': Icons.airplanemode_off, - 'airplanemode_off_sharp': Icons.airplanemode_off_sharp, - 'airplanemode_off_rounded': Icons.airplanemode_off_rounded, - 'airplanemode_off_outlined': Icons.airplanemode_off_outlined, - 'airplanemode_on': Icons.airplanemode_on, - 'airplanemode_on_sharp': Icons.airplanemode_on_sharp, - 'airplanemode_on_rounded': Icons.airplanemode_on_rounded, - 'airplanemode_on_outlined': Icons.airplanemode_on_outlined, - 'airplay': Icons.airplay, - 'airplay_sharp': Icons.airplay_sharp, - 'airplay_rounded': Icons.airplay_rounded, - 'airplay_outlined': Icons.airplay_outlined, - 'airport_shuttle': Icons.airport_shuttle, - 'airport_shuttle_sharp': Icons.airport_shuttle_sharp, - 'airport_shuttle_rounded': Icons.airport_shuttle_rounded, - 'airport_shuttle_outlined': Icons.airport_shuttle_outlined, - 'alarm': Icons.alarm, - 'alarm_sharp': Icons.alarm_sharp, - 'alarm_rounded': Icons.alarm_rounded, - 'alarm_outlined': Icons.alarm_outlined, - 'alarm_add': Icons.alarm_add, - 'alarm_add_sharp': Icons.alarm_add_sharp, - 'alarm_add_rounded': Icons.alarm_add_rounded, - 'alarm_add_outlined': Icons.alarm_add_outlined, - 'alarm_off': Icons.alarm_off, - 'alarm_off_sharp': Icons.alarm_off_sharp, - 'alarm_off_rounded': Icons.alarm_off_rounded, - 'alarm_off_outlined': Icons.alarm_off_outlined, - 'alarm_on': Icons.alarm_on, - 'alarm_on_sharp': Icons.alarm_on_sharp, - 'alarm_on_rounded': Icons.alarm_on_rounded, - 'alarm_on_outlined': Icons.alarm_on_outlined, - 'album': Icons.album, - 'album_sharp': Icons.album_sharp, - 'album_rounded': Icons.album_rounded, - 'album_outlined': Icons.album_outlined, - 'align_horizontal_center': Icons.align_horizontal_center, - 'align_horizontal_center_sharp': Icons.align_horizontal_center_sharp, - 'align_horizontal_center_rounded': - Icons.align_horizontal_center_rounded, - 'align_horizontal_center_outlined': - Icons.align_horizontal_center_outlined, - 'align_horizontal_left': Icons.align_horizontal_left, - 'align_horizontal_left_sharp': Icons.align_horizontal_left_sharp, - 'align_horizontal_left_rounded': Icons.align_horizontal_left_rounded, - 'align_horizontal_left_outlined': Icons.align_horizontal_left_outlined, - 'align_horizontal_right': Icons.align_horizontal_right, - 'align_horizontal_right_sharp': Icons.align_horizontal_right_sharp, - 'align_horizontal_right_rounded': Icons.align_horizontal_right_rounded, - 'align_horizontal_right_outlined': - Icons.align_horizontal_right_outlined, - 'align_vertical_bottom': Icons.align_vertical_bottom, - 'align_vertical_bottom_sharp': Icons.align_vertical_bottom_sharp, - 'align_vertical_bottom_rounded': Icons.align_vertical_bottom_rounded, - 'align_vertical_bottom_outlined': Icons.align_vertical_bottom_outlined, - 'align_vertical_center': Icons.align_vertical_center, - 'align_vertical_center_sharp': Icons.align_vertical_center_sharp, - 'align_vertical_center_rounded': Icons.align_vertical_center_rounded, - 'align_vertical_center_outlined': Icons.align_vertical_center_outlined, - 'align_vertical_top': Icons.align_vertical_top, - 'align_vertical_top_sharp': Icons.align_vertical_top_sharp, - 'align_vertical_top_rounded': Icons.align_vertical_top_rounded, - 'align_vertical_top_outlined': Icons.align_vertical_top_outlined, - 'all_inbox': Icons.all_inbox, - 'all_inbox_sharp': Icons.all_inbox_sharp, - 'all_inbox_rounded': Icons.all_inbox_rounded, - 'all_inbox_outlined': Icons.all_inbox_outlined, - 'all_inclusive': Icons.all_inclusive, - 'all_inclusive_sharp': Icons.all_inclusive_sharp, - 'all_inclusive_rounded': Icons.all_inclusive_rounded, - 'all_inclusive_outlined': Icons.all_inclusive_outlined, - 'all_out': Icons.all_out, - 'all_out_sharp': Icons.all_out_sharp, - 'all_out_rounded': Icons.all_out_rounded, - 'all_out_outlined': Icons.all_out_outlined, - 'alt_route': Icons.alt_route, - 'alt_route_sharp': Icons.alt_route_sharp, - 'alt_route_rounded': Icons.alt_route_rounded, - 'alt_route_outlined': Icons.alt_route_outlined, - 'alternate_email': Icons.alternate_email, - 'alternate_email_sharp': Icons.alternate_email_sharp, - 'alternate_email_rounded': Icons.alternate_email_rounded, - 'alternate_email_outlined': Icons.alternate_email_outlined, - 'amp_stories': Icons.amp_stories, - 'amp_stories_sharp': Icons.amp_stories_sharp, - 'amp_stories_rounded': Icons.amp_stories_rounded, - 'amp_stories_outlined': Icons.amp_stories_outlined, - 'analytics': Icons.analytics, - 'analytics_sharp': Icons.analytics_sharp, - 'analytics_rounded': Icons.analytics_rounded, - 'analytics_outlined': Icons.analytics_outlined, - 'anchor': Icons.anchor, - 'anchor_sharp': Icons.anchor_sharp, - 'anchor_rounded': Icons.anchor_rounded, - 'anchor_outlined': Icons.anchor_outlined, - 'android': Icons.android, - 'android_sharp': Icons.android_sharp, - 'android_rounded': Icons.android_rounded, - 'android_outlined': Icons.android_outlined, - 'animation': Icons.animation, - 'animation_sharp': Icons.animation_sharp, - 'animation_rounded': Icons.animation_rounded, - 'animation_outlined': Icons.animation_outlined, - 'announcement': Icons.announcement, - 'announcement_sharp': Icons.announcement_sharp, - 'announcement_rounded': Icons.announcement_rounded, - 'announcement_outlined': Icons.announcement_outlined, - 'aod': Icons.aod, - 'aod_sharp': Icons.aod_sharp, - 'aod_rounded': Icons.aod_rounded, - 'aod_outlined': Icons.aod_outlined, - 'apartment': Icons.apartment, - 'apartment_sharp': Icons.apartment_sharp, - 'apartment_rounded': Icons.apartment_rounded, - 'apartment_outlined': Icons.apartment_outlined, - 'api': Icons.api, - 'api_sharp': Icons.api_sharp, - 'api_rounded': Icons.api_rounded, - 'api_outlined': Icons.api_outlined, - 'app_blocking': Icons.app_blocking, - 'app_blocking_sharp': Icons.app_blocking_sharp, - 'app_blocking_rounded': Icons.app_blocking_rounded, - 'app_blocking_outlined': Icons.app_blocking_outlined, - 'app_registration': Icons.app_registration, - 'app_registration_sharp': Icons.app_registration_sharp, - 'app_registration_rounded': Icons.app_registration_rounded, - 'app_registration_outlined': Icons.app_registration_outlined, - 'app_settings_alt': Icons.app_settings_alt, - 'app_settings_alt_sharp': Icons.app_settings_alt_sharp, - 'app_settings_alt_rounded': Icons.app_settings_alt_rounded, - 'app_settings_alt_outlined': Icons.app_settings_alt_outlined, - 'approval': Icons.approval, - 'approval_sharp': Icons.approval_sharp, - 'approval_rounded': Icons.approval_rounded, - 'approval_outlined': Icons.approval_outlined, - 'apps': Icons.apps, - 'apps_sharp': Icons.apps_sharp, - 'apps_rounded': Icons.apps_rounded, - 'apps_outlined': Icons.apps_outlined, - 'architecture': Icons.architecture, - 'architecture_sharp': Icons.architecture_sharp, - 'architecture_rounded': Icons.architecture_rounded, - 'architecture_outlined': Icons.architecture_outlined, - 'archive': Icons.archive, - 'archive_sharp': Icons.archive_sharp, - 'archive_rounded': Icons.archive_rounded, - 'archive_outlined': Icons.archive_outlined, - 'arrow_back': Icons.arrow_back, - 'arrow_back_sharp': Icons.arrow_back_sharp, - 'arrow_back_rounded': Icons.arrow_back_rounded, - 'arrow_back_outlined': Icons.arrow_back_outlined, - 'arrow_back_ios': Icons.arrow_back_ios, - 'arrow_back_ios_sharp': Icons.arrow_back_ios_sharp, - 'arrow_back_ios_rounded': Icons.arrow_back_ios_rounded, - 'arrow_back_ios_outlined': Icons.arrow_back_ios_outlined, - 'arrow_back_ios_new': Icons.arrow_back_ios_new, - 'arrow_back_ios_new_sharp': Icons.arrow_back_ios_new_sharp, - 'arrow_back_ios_new_rounded': Icons.arrow_back_ios_new_rounded, - 'arrow_back_ios_new_outlined': Icons.arrow_back_ios_new_outlined, - 'arrow_circle_down': Icons.arrow_circle_down, - 'arrow_circle_down_sharp': Icons.arrow_circle_down_sharp, - 'arrow_circle_down_rounded': Icons.arrow_circle_down_rounded, - 'arrow_circle_down_outlined': Icons.arrow_circle_down_outlined, - 'arrow_circle_up': Icons.arrow_circle_up, - 'arrow_circle_up_sharp': Icons.arrow_circle_up_sharp, - 'arrow_circle_up_rounded': Icons.arrow_circle_up_rounded, - 'arrow_circle_up_outlined': Icons.arrow_circle_up_outlined, - 'arrow_downward': Icons.arrow_downward, - 'arrow_downward_sharp': Icons.arrow_downward_sharp, - 'arrow_downward_rounded': Icons.arrow_downward_rounded, - 'arrow_downward_outlined': Icons.arrow_downward_outlined, - 'arrow_drop_down': Icons.arrow_drop_down, - 'arrow_drop_down_sharp': Icons.arrow_drop_down_sharp, - 'arrow_drop_down_rounded': Icons.arrow_drop_down_rounded, - 'arrow_drop_down_outlined': Icons.arrow_drop_down_outlined, - 'arrow_drop_down_circle': Icons.arrow_drop_down_circle, - 'arrow_drop_down_circle_sharp': Icons.arrow_drop_down_circle_sharp, - 'arrow_drop_down_circle_rounded': Icons.arrow_drop_down_circle_rounded, - 'arrow_drop_down_circle_outlined': - Icons.arrow_drop_down_circle_outlined, - 'arrow_drop_up': Icons.arrow_drop_up, - 'arrow_drop_up_sharp': Icons.arrow_drop_up_sharp, - 'arrow_drop_up_rounded': Icons.arrow_drop_up_rounded, - 'arrow_drop_up_outlined': Icons.arrow_drop_up_outlined, - 'arrow_forward': Icons.arrow_forward, - 'arrow_forward_sharp': Icons.arrow_forward_sharp, - 'arrow_forward_rounded': Icons.arrow_forward_rounded, - 'arrow_forward_outlined': Icons.arrow_forward_outlined, - 'arrow_forward_ios': Icons.arrow_forward_ios, - 'arrow_forward_ios_sharp': Icons.arrow_forward_ios_sharp, - 'arrow_forward_ios_rounded': Icons.arrow_forward_ios_rounded, - 'arrow_forward_ios_outlined': Icons.arrow_forward_ios_outlined, - 'arrow_left': Icons.arrow_left, - 'arrow_left_sharp': Icons.arrow_left_sharp, - 'arrow_left_rounded': Icons.arrow_left_rounded, - 'arrow_left_outlined': Icons.arrow_left_outlined, - 'arrow_right': Icons.arrow_right, - 'arrow_right_sharp': Icons.arrow_right_sharp, - 'arrow_right_rounded': Icons.arrow_right_rounded, - 'arrow_right_outlined': Icons.arrow_right_outlined, - 'arrow_right_alt': Icons.arrow_right_alt, - 'arrow_right_alt_sharp': Icons.arrow_right_alt_sharp, - 'arrow_right_alt_rounded': Icons.arrow_right_alt_rounded, - 'arrow_right_alt_outlined': Icons.arrow_right_alt_outlined, - 'arrow_upward': Icons.arrow_upward, - 'arrow_upward_sharp': Icons.arrow_upward_sharp, - 'arrow_upward_rounded': Icons.arrow_upward_rounded, - 'arrow_upward_outlined': Icons.arrow_upward_outlined, - 'art_track': Icons.art_track, - 'art_track_sharp': Icons.art_track_sharp, - 'art_track_rounded': Icons.art_track_rounded, - 'art_track_outlined': Icons.art_track_outlined, - 'article': Icons.article, - 'article_sharp': Icons.article_sharp, - 'article_rounded': Icons.article_rounded, - 'article_outlined': Icons.article_outlined, - 'aspect_ratio': Icons.aspect_ratio, - 'aspect_ratio_sharp': Icons.aspect_ratio_sharp, - 'aspect_ratio_rounded': Icons.aspect_ratio_rounded, - 'aspect_ratio_outlined': Icons.aspect_ratio_outlined, - 'assessment': Icons.assessment, - 'assessment_sharp': Icons.assessment_sharp, - 'assessment_rounded': Icons.assessment_rounded, - 'assessment_outlined': Icons.assessment_outlined, - 'assignment': Icons.assignment, - 'assignment_sharp': Icons.assignment_sharp, - 'assignment_rounded': Icons.assignment_rounded, - 'assignment_outlined': Icons.assignment_outlined, - 'assignment_ind': Icons.assignment_ind, - 'assignment_ind_sharp': Icons.assignment_ind_sharp, - 'assignment_ind_rounded': Icons.assignment_ind_rounded, - 'assignment_ind_outlined': Icons.assignment_ind_outlined, - 'assignment_late': Icons.assignment_late, - 'assignment_late_sharp': Icons.assignment_late_sharp, - 'assignment_late_rounded': Icons.assignment_late_rounded, - 'assignment_late_outlined': Icons.assignment_late_outlined, - 'assignment_return': Icons.assignment_return, - 'assignment_return_sharp': Icons.assignment_return_sharp, - 'assignment_return_rounded': Icons.assignment_return_rounded, - 'assignment_return_outlined': Icons.assignment_return_outlined, - 'assignment_returned': Icons.assignment_returned, - 'assignment_returned_sharp': Icons.assignment_returned_sharp, - 'assignment_returned_rounded': Icons.assignment_returned_rounded, - 'assignment_returned_outlined': Icons.assignment_returned_outlined, - 'assignment_turned_in': Icons.assignment_turned_in, - 'assignment_turned_in_sharp': Icons.assignment_turned_in_sharp, - 'assignment_turned_in_rounded': Icons.assignment_turned_in_rounded, - 'assignment_turned_in_outlined': Icons.assignment_turned_in_outlined, - 'assistant': Icons.assistant, - 'assistant_sharp': Icons.assistant_sharp, - 'assistant_rounded': Icons.assistant_rounded, - 'assistant_outlined': Icons.assistant_outlined, - 'assistant_direction': Icons.assistant_direction, - 'assistant_direction_sharp': Icons.assistant_direction_sharp, - 'assistant_direction_rounded': Icons.assistant_direction_rounded, - 'assistant_direction_outlined': Icons.assistant_direction_outlined, - 'assistant_navigation': Icons.assistant_navigation, - 'assistant_photo': Icons.assistant_photo, - 'assistant_photo_sharp': Icons.assistant_photo_sharp, - 'assistant_photo_rounded': Icons.assistant_photo_rounded, - 'assistant_photo_outlined': Icons.assistant_photo_outlined, - 'atm': Icons.atm, - 'atm_sharp': Icons.atm_sharp, - 'atm_rounded': Icons.atm_rounded, - 'atm_outlined': Icons.atm_outlined, - 'attach_email': Icons.attach_email, - 'attach_email_sharp': Icons.attach_email_sharp, - 'attach_email_rounded': Icons.attach_email_rounded, - 'attach_email_outlined': Icons.attach_email_outlined, - 'attach_file': Icons.attach_file, - 'attach_file_sharp': Icons.attach_file_sharp, - 'attach_file_rounded': Icons.attach_file_rounded, - 'attach_file_outlined': Icons.attach_file_outlined, - 'attach_money': Icons.attach_money, - 'attach_money_sharp': Icons.attach_money_sharp, - 'attach_money_rounded': Icons.attach_money_rounded, - 'attach_money_outlined': Icons.attach_money_outlined, - 'attachment': Icons.attachment, - 'attachment_sharp': Icons.attachment_sharp, - 'attachment_rounded': Icons.attachment_rounded, - 'attachment_outlined': Icons.attachment_outlined, - 'attractions': Icons.attractions, - 'attractions_sharp': Icons.attractions_sharp, - 'attractions_rounded': Icons.attractions_rounded, - 'attractions_outlined': Icons.attractions_outlined, - 'attribution': Icons.attribution, - 'attribution_sharp': Icons.attribution_sharp, - 'attribution_rounded': Icons.attribution_rounded, - 'attribution_outlined': Icons.attribution_outlined, - 'audiotrack': Icons.audiotrack, - 'audiotrack_sharp': Icons.audiotrack_sharp, - 'audiotrack_rounded': Icons.audiotrack_rounded, - 'audiotrack_outlined': Icons.audiotrack_outlined, - 'auto_awesome': Icons.auto_awesome, - 'auto_awesome_sharp': Icons.auto_awesome_sharp, - 'auto_awesome_rounded': Icons.auto_awesome_rounded, - 'auto_awesome_outlined': Icons.auto_awesome_outlined, - 'auto_awesome_mosaic': Icons.auto_awesome_mosaic, - 'auto_awesome_mosaic_sharp': Icons.auto_awesome_mosaic_sharp, - 'auto_awesome_mosaic_rounded': Icons.auto_awesome_mosaic_rounded, - 'auto_awesome_mosaic_outlined': Icons.auto_awesome_mosaic_outlined, - 'auto_awesome_motion': Icons.auto_awesome_motion, - 'auto_awesome_motion_sharp': Icons.auto_awesome_motion_sharp, - 'auto_awesome_motion_rounded': Icons.auto_awesome_motion_rounded, - 'auto_awesome_motion_outlined': Icons.auto_awesome_motion_outlined, - 'auto_delete': Icons.auto_delete, - 'auto_delete_sharp': Icons.auto_delete_sharp, - 'auto_delete_rounded': Icons.auto_delete_rounded, - 'auto_delete_outlined': Icons.auto_delete_outlined, - 'auto_fix_high': Icons.auto_fix_high, - 'auto_fix_high_sharp': Icons.auto_fix_high_sharp, - 'auto_fix_high_rounded': Icons.auto_fix_high_rounded, - 'auto_fix_high_outlined': Icons.auto_fix_high_outlined, - 'auto_fix_normal': Icons.auto_fix_normal, - 'auto_fix_normal_sharp': Icons.auto_fix_normal_sharp, - 'auto_fix_normal_rounded': Icons.auto_fix_normal_rounded, - 'auto_fix_normal_outlined': Icons.auto_fix_normal_outlined, - 'auto_fix_off': Icons.auto_fix_off, - 'auto_fix_off_sharp': Icons.auto_fix_off_sharp, - 'auto_fix_off_rounded': Icons.auto_fix_off_rounded, - 'auto_fix_off_outlined': Icons.auto_fix_off_outlined, - 'auto_graph': Icons.auto_graph, - 'auto_graph_sharp': Icons.auto_graph_sharp, - 'auto_graph_rounded': Icons.auto_graph_rounded, - 'auto_graph_outlined': Icons.auto_graph_outlined, - 'auto_stories': Icons.auto_stories, - 'auto_stories_sharp': Icons.auto_stories_sharp, - 'auto_stories_rounded': Icons.auto_stories_rounded, - 'auto_stories_outlined': Icons.auto_stories_outlined, - 'autofps_select': Icons.autofps_select, - 'autofps_select_sharp': Icons.autofps_select_sharp, - 'autofps_select_rounded': Icons.autofps_select_rounded, - 'autofps_select_outlined': Icons.autofps_select_outlined, - 'autorenew': Icons.autorenew, - 'autorenew_sharp': Icons.autorenew_sharp, - 'autorenew_rounded': Icons.autorenew_rounded, - 'autorenew_outlined': Icons.autorenew_outlined, - 'av_timer': Icons.av_timer, - 'av_timer_sharp': Icons.av_timer_sharp, - 'av_timer_rounded': Icons.av_timer_rounded, - 'av_timer_outlined': Icons.av_timer_outlined, - 'baby_changing_station': Icons.baby_changing_station, - 'baby_changing_station_sharp': Icons.baby_changing_station_sharp, - 'baby_changing_station_rounded': Icons.baby_changing_station_rounded, - 'baby_changing_station_outlined': Icons.baby_changing_station_outlined, - 'backpack': Icons.backpack, - 'backpack_sharp': Icons.backpack_sharp, - 'backpack_rounded': Icons.backpack_rounded, - 'backpack_outlined': Icons.backpack_outlined, - 'backspace': Icons.backspace, - 'backspace_sharp': Icons.backspace_sharp, - 'backspace_rounded': Icons.backspace_rounded, - 'backspace_outlined': Icons.backspace_outlined, - 'backup': Icons.backup, - 'backup_sharp': Icons.backup_sharp, - 'backup_rounded': Icons.backup_rounded, - 'backup_outlined': Icons.backup_outlined, - 'backup_table': Icons.backup_table, - 'backup_table_sharp': Icons.backup_table_sharp, - 'backup_table_rounded': Icons.backup_table_rounded, - 'backup_table_outlined': Icons.backup_table_outlined, - 'badge': Icons.badge, - 'badge_sharp': Icons.badge_sharp, - 'badge_rounded': Icons.badge_rounded, - 'badge_outlined': Icons.badge_outlined, - 'bakery_dining': Icons.bakery_dining, - 'bakery_dining_sharp': Icons.bakery_dining_sharp, - 'bakery_dining_rounded': Icons.bakery_dining_rounded, - 'bakery_dining_outlined': Icons.bakery_dining_outlined, - 'balcony': Icons.balcony, - 'balcony_sharp': Icons.balcony_sharp, - 'balcony_rounded': Icons.balcony_rounded, - 'balcony_outlined': Icons.balcony_outlined, - 'ballot': Icons.ballot, - 'ballot_sharp': Icons.ballot_sharp, - 'ballot_rounded': Icons.ballot_rounded, - 'ballot_outlined': Icons.ballot_outlined, - 'bar_chart': Icons.bar_chart, - 'bar_chart_sharp': Icons.bar_chart_sharp, - 'bar_chart_rounded': Icons.bar_chart_rounded, - 'bar_chart_outlined': Icons.bar_chart_outlined, - 'batch_prediction': Icons.batch_prediction, - 'batch_prediction_sharp': Icons.batch_prediction_sharp, - 'batch_prediction_rounded': Icons.batch_prediction_rounded, - 'batch_prediction_outlined': Icons.batch_prediction_outlined, - 'bathroom': Icons.bathroom, - 'bathroom_sharp': Icons.bathroom_sharp, - 'bathroom_rounded': Icons.bathroom_rounded, - 'bathroom_outlined': Icons.bathroom_outlined, - 'bathtub': Icons.bathtub, - 'bathtub_sharp': Icons.bathtub_sharp, - 'bathtub_rounded': Icons.bathtub_rounded, - 'bathtub_outlined': Icons.bathtub_outlined, - 'battery_alert': Icons.battery_alert, - 'battery_alert_sharp': Icons.battery_alert_sharp, - 'battery_alert_rounded': Icons.battery_alert_rounded, - 'battery_alert_outlined': Icons.battery_alert_outlined, - 'battery_charging_full': Icons.battery_charging_full, - 'battery_charging_full_sharp': Icons.battery_charging_full_sharp, - 'battery_charging_full_rounded': Icons.battery_charging_full_rounded, - 'battery_charging_full_outlined': Icons.battery_charging_full_outlined, - 'battery_full': Icons.battery_full, - 'battery_full_sharp': Icons.battery_full_sharp, - 'battery_full_rounded': Icons.battery_full_rounded, - 'battery_full_outlined': Icons.battery_full_outlined, - 'battery_saver': Icons.battery_saver, - 'battery_saver_sharp': Icons.battery_saver_sharp, - 'battery_saver_rounded': Icons.battery_saver_rounded, - 'battery_saver_outlined': Icons.battery_saver_outlined, - 'battery_std': Icons.battery_std, - 'battery_std_sharp': Icons.battery_std_sharp, - 'battery_std_rounded': Icons.battery_std_rounded, - 'battery_std_outlined': Icons.battery_std_outlined, - 'battery_unknown': Icons.battery_unknown, - 'battery_unknown_sharp': Icons.battery_unknown_sharp, - 'battery_unknown_rounded': Icons.battery_unknown_rounded, - 'battery_unknown_outlined': Icons.battery_unknown_outlined, - 'beach_access': Icons.beach_access, - 'beach_access_sharp': Icons.beach_access_sharp, - 'beach_access_rounded': Icons.beach_access_rounded, - 'beach_access_outlined': Icons.beach_access_outlined, - 'bed': Icons.bed, - 'bed_sharp': Icons.bed_sharp, - 'bed_rounded': Icons.bed_rounded, - 'bed_outlined': Icons.bed_outlined, - 'bedroom_baby': Icons.bedroom_baby, - 'bedroom_baby_sharp': Icons.bedroom_baby_sharp, - 'bedroom_baby_rounded': Icons.bedroom_baby_rounded, - 'bedroom_baby_outlined': Icons.bedroom_baby_outlined, - 'bedroom_child': Icons.bedroom_child, - 'bedroom_child_sharp': Icons.bedroom_child_sharp, - 'bedroom_child_rounded': Icons.bedroom_child_rounded, - 'bedroom_child_outlined': Icons.bedroom_child_outlined, - 'bedroom_parent': Icons.bedroom_parent, - 'bedroom_parent_sharp': Icons.bedroom_parent_sharp, - 'bedroom_parent_rounded': Icons.bedroom_parent_rounded, - 'bedroom_parent_outlined': Icons.bedroom_parent_outlined, - 'bedtime': Icons.bedtime, - 'bedtime_sharp': Icons.bedtime_sharp, - 'bedtime_rounded': Icons.bedtime_rounded, - 'bedtime_outlined': Icons.bedtime_outlined, - 'beenhere': Icons.beenhere, - 'beenhere_sharp': Icons.beenhere_sharp, - 'beenhere_rounded': Icons.beenhere_rounded, - 'beenhere_outlined': Icons.beenhere_outlined, - 'bento': Icons.bento, - 'bento_sharp': Icons.bento_sharp, - 'bento_rounded': Icons.bento_rounded, - 'bento_outlined': Icons.bento_outlined, - 'bike_scooter': Icons.bike_scooter, - 'bike_scooter_sharp': Icons.bike_scooter_sharp, - 'bike_scooter_rounded': Icons.bike_scooter_rounded, - 'bike_scooter_outlined': Icons.bike_scooter_outlined, - 'biotech': Icons.biotech, - 'biotech_sharp': Icons.biotech_sharp, - 'biotech_rounded': Icons.biotech_rounded, - 'biotech_outlined': Icons.biotech_outlined, - 'blender': Icons.blender, - 'blender_sharp': Icons.blender_sharp, - 'blender_rounded': Icons.blender_rounded, - 'blender_outlined': Icons.blender_outlined, - 'block': Icons.block, - 'block_sharp': Icons.block_sharp, - 'block_rounded': Icons.block_rounded, - 'block_outlined': Icons.block_outlined, - 'block_flipped': Icons.block_flipped, - 'bloodtype': Icons.bloodtype, - 'bloodtype_sharp': Icons.bloodtype_sharp, - 'bloodtype_rounded': Icons.bloodtype_rounded, - 'bloodtype_outlined': Icons.bloodtype_outlined, - 'bluetooth': Icons.bluetooth, - 'bluetooth_sharp': Icons.bluetooth_sharp, - 'bluetooth_rounded': Icons.bluetooth_rounded, - 'bluetooth_outlined': Icons.bluetooth_outlined, - 'bluetooth_audio': Icons.bluetooth_audio, - 'bluetooth_audio_sharp': Icons.bluetooth_audio_sharp, - 'bluetooth_audio_rounded': Icons.bluetooth_audio_rounded, - 'bluetooth_audio_outlined': Icons.bluetooth_audio_outlined, - 'bluetooth_connected': Icons.bluetooth_connected, - 'bluetooth_connected_sharp': Icons.bluetooth_connected_sharp, - 'bluetooth_connected_rounded': Icons.bluetooth_connected_rounded, - 'bluetooth_connected_outlined': Icons.bluetooth_connected_outlined, - 'bluetooth_disabled': Icons.bluetooth_disabled, - 'bluetooth_disabled_sharp': Icons.bluetooth_disabled_sharp, - 'bluetooth_disabled_rounded': Icons.bluetooth_disabled_rounded, - 'bluetooth_disabled_outlined': Icons.bluetooth_disabled_outlined, - 'bluetooth_drive': Icons.bluetooth_drive, - 'bluetooth_drive_sharp': Icons.bluetooth_drive_sharp, - 'bluetooth_drive_rounded': Icons.bluetooth_drive_rounded, - 'bluetooth_drive_outlined': Icons.bluetooth_drive_outlined, - 'bluetooth_searching': Icons.bluetooth_searching, - 'bluetooth_searching_sharp': Icons.bluetooth_searching_sharp, - 'bluetooth_searching_rounded': Icons.bluetooth_searching_rounded, - 'bluetooth_searching_outlined': Icons.bluetooth_searching_outlined, - 'blur_circular': Icons.blur_circular, - 'blur_circular_sharp': Icons.blur_circular_sharp, - 'blur_circular_rounded': Icons.blur_circular_rounded, - 'blur_circular_outlined': Icons.blur_circular_outlined, - 'blur_linear': Icons.blur_linear, - 'blur_linear_sharp': Icons.blur_linear_sharp, - 'blur_linear_rounded': Icons.blur_linear_rounded, - 'blur_linear_outlined': Icons.blur_linear_outlined, - 'blur_off': Icons.blur_off, - 'blur_off_sharp': Icons.blur_off_sharp, - 'blur_off_rounded': Icons.blur_off_rounded, - 'blur_off_outlined': Icons.blur_off_outlined, - 'blur_on': Icons.blur_on, - 'blur_on_sharp': Icons.blur_on_sharp, - 'blur_on_rounded': Icons.blur_on_rounded, - 'blur_on_outlined': Icons.blur_on_outlined, - 'bolt': Icons.bolt, - 'bolt_sharp': Icons.bolt_sharp, - 'bolt_rounded': Icons.bolt_rounded, - 'bolt_outlined': Icons.bolt_outlined, - 'book': Icons.book, - 'book_sharp': Icons.book_sharp, - 'book_rounded': Icons.book_rounded, - 'book_outlined': Icons.book_outlined, - 'book_online': Icons.book_online, - 'book_online_sharp': Icons.book_online_sharp, - 'book_online_rounded': Icons.book_online_rounded, - 'book_online_outlined': Icons.book_online_outlined, - 'bookmark': Icons.bookmark, - 'bookmark_sharp': Icons.bookmark_sharp, - 'bookmark_rounded': Icons.bookmark_rounded, - 'bookmark_outlined': Icons.bookmark_outlined, - 'bookmark_add': Icons.bookmark_add, - 'bookmark_add_sharp': Icons.bookmark_add_sharp, - 'bookmark_add_rounded': Icons.bookmark_add_rounded, - 'bookmark_add_outlined': Icons.bookmark_add_outlined, - 'bookmark_added': Icons.bookmark_added, - 'bookmark_added_sharp': Icons.bookmark_added_sharp, - 'bookmark_added_rounded': Icons.bookmark_added_rounded, - 'bookmark_added_outlined': Icons.bookmark_added_outlined, - 'bookmark_border': Icons.bookmark_border, - 'bookmark_border_sharp': Icons.bookmark_border_sharp, - 'bookmark_border_rounded': Icons.bookmark_border_rounded, - 'bookmark_border_outlined': Icons.bookmark_border_outlined, - 'bookmark_outline': Icons.bookmark_outline, - 'bookmark_outline_sharp': Icons.bookmark_outline_sharp, - 'bookmark_outline_rounded': Icons.bookmark_outline_rounded, - 'bookmark_outline_outlined': Icons.bookmark_outline_outlined, - 'bookmark_remove': Icons.bookmark_remove, - 'bookmark_remove_sharp': Icons.bookmark_remove_sharp, - 'bookmark_remove_rounded': Icons.bookmark_remove_rounded, - 'bookmark_remove_outlined': Icons.bookmark_remove_outlined, - 'bookmarks': Icons.bookmarks, - 'bookmarks_sharp': Icons.bookmarks_sharp, - 'bookmarks_rounded': Icons.bookmarks_rounded, - 'bookmarks_outlined': Icons.bookmarks_outlined, - 'border_all': Icons.border_all, - 'border_all_sharp': Icons.border_all_sharp, - 'border_all_rounded': Icons.border_all_rounded, - 'border_all_outlined': Icons.border_all_outlined, - 'border_bottom': Icons.border_bottom, - 'border_bottom_sharp': Icons.border_bottom_sharp, - 'border_bottom_rounded': Icons.border_bottom_rounded, - 'border_bottom_outlined': Icons.border_bottom_outlined, - 'border_clear': Icons.border_clear, - 'border_clear_sharp': Icons.border_clear_sharp, - 'border_clear_rounded': Icons.border_clear_rounded, - 'border_clear_outlined': Icons.border_clear_outlined, - 'border_color': Icons.border_color, - 'border_color_sharp': Icons.border_color_sharp, - 'border_color_rounded': Icons.border_color_rounded, - 'border_color_outlined': Icons.border_color_outlined, - 'border_horizontal': Icons.border_horizontal, - 'border_horizontal_sharp': Icons.border_horizontal_sharp, - 'border_horizontal_rounded': Icons.border_horizontal_rounded, - 'border_horizontal_outlined': Icons.border_horizontal_outlined, - 'border_inner': Icons.border_inner, - 'border_inner_sharp': Icons.border_inner_sharp, - 'border_inner_rounded': Icons.border_inner_rounded, - 'border_inner_outlined': Icons.border_inner_outlined, - 'border_left': Icons.border_left, - 'border_left_sharp': Icons.border_left_sharp, - 'border_left_rounded': Icons.border_left_rounded, - 'border_left_outlined': Icons.border_left_outlined, - 'border_outer': Icons.border_outer, - 'border_outer_sharp': Icons.border_outer_sharp, - 'border_outer_rounded': Icons.border_outer_rounded, - 'border_outer_outlined': Icons.border_outer_outlined, - 'border_right': Icons.border_right, - 'border_right_sharp': Icons.border_right_sharp, - 'border_right_rounded': Icons.border_right_rounded, - 'border_right_outlined': Icons.border_right_outlined, - 'border_style': Icons.border_style, - 'border_style_sharp': Icons.border_style_sharp, - 'border_style_rounded': Icons.border_style_rounded, - 'border_style_outlined': Icons.border_style_outlined, - 'border_top': Icons.border_top, - 'border_top_sharp': Icons.border_top_sharp, - 'border_top_rounded': Icons.border_top_rounded, - 'border_top_outlined': Icons.border_top_outlined, - 'border_vertical': Icons.border_vertical, - 'border_vertical_sharp': Icons.border_vertical_sharp, - 'border_vertical_rounded': Icons.border_vertical_rounded, - 'border_vertical_outlined': Icons.border_vertical_outlined, - 'branding_watermark': Icons.branding_watermark, - 'branding_watermark_sharp': Icons.branding_watermark_sharp, - 'branding_watermark_rounded': Icons.branding_watermark_rounded, - 'branding_watermark_outlined': Icons.branding_watermark_outlined, - 'breakfast_dining': Icons.breakfast_dining, - 'breakfast_dining_sharp': Icons.breakfast_dining_sharp, - 'breakfast_dining_rounded': Icons.breakfast_dining_rounded, - 'breakfast_dining_outlined': Icons.breakfast_dining_outlined, - 'brightness_1': Icons.brightness_1, - 'brightness_1_sharp': Icons.brightness_1_sharp, - 'brightness_1_rounded': Icons.brightness_1_rounded, - 'brightness_1_outlined': Icons.brightness_1_outlined, - 'brightness_2': Icons.brightness_2, - 'brightness_2_sharp': Icons.brightness_2_sharp, - 'brightness_2_rounded': Icons.brightness_2_rounded, - 'brightness_2_outlined': Icons.brightness_2_outlined, - 'brightness_3': Icons.brightness_3, - 'brightness_3_sharp': Icons.brightness_3_sharp, - 'brightness_3_rounded': Icons.brightness_3_rounded, - 'brightness_3_outlined': Icons.brightness_3_outlined, - 'brightness_4': Icons.brightness_4, - 'brightness_4_sharp': Icons.brightness_4_sharp, - 'brightness_4_rounded': Icons.brightness_4_rounded, - 'brightness_4_outlined': Icons.brightness_4_outlined, - 'brightness_5': Icons.brightness_5, - 'brightness_5_sharp': Icons.brightness_5_sharp, - 'brightness_5_rounded': Icons.brightness_5_rounded, - 'brightness_5_outlined': Icons.brightness_5_outlined, - 'brightness_6': Icons.brightness_6, - 'brightness_6_sharp': Icons.brightness_6_sharp, - 'brightness_6_rounded': Icons.brightness_6_rounded, - 'brightness_6_outlined': Icons.brightness_6_outlined, - 'brightness_7': Icons.brightness_7, - 'brightness_7_sharp': Icons.brightness_7_sharp, - 'brightness_7_rounded': Icons.brightness_7_rounded, - 'brightness_7_outlined': Icons.brightness_7_outlined, - 'brightness_auto': Icons.brightness_auto, - 'brightness_auto_sharp': Icons.brightness_auto_sharp, - 'brightness_auto_rounded': Icons.brightness_auto_rounded, - 'brightness_auto_outlined': Icons.brightness_auto_outlined, - 'brightness_high': Icons.brightness_high, - 'brightness_high_sharp': Icons.brightness_high_sharp, - 'brightness_high_rounded': Icons.brightness_high_rounded, - 'brightness_high_outlined': Icons.brightness_high_outlined, - 'brightness_low': Icons.brightness_low, - 'brightness_low_sharp': Icons.brightness_low_sharp, - 'brightness_low_rounded': Icons.brightness_low_rounded, - 'brightness_low_outlined': Icons.brightness_low_outlined, - 'brightness_medium': Icons.brightness_medium, - 'brightness_medium_sharp': Icons.brightness_medium_sharp, - 'brightness_medium_rounded': Icons.brightness_medium_rounded, - 'brightness_medium_outlined': Icons.brightness_medium_outlined, - 'broken_image': Icons.broken_image, - 'broken_image_sharp': Icons.broken_image_sharp, - 'broken_image_rounded': Icons.broken_image_rounded, - 'broken_image_outlined': Icons.broken_image_outlined, - 'browser_not_supported': Icons.browser_not_supported, - 'browser_not_supported_sharp': Icons.browser_not_supported_sharp, - 'browser_not_supported_rounded': Icons.browser_not_supported_rounded, - 'browser_not_supported_outlined': Icons.browser_not_supported_outlined, - 'brunch_dining': Icons.brunch_dining, - 'brunch_dining_sharp': Icons.brunch_dining_sharp, - 'brunch_dining_rounded': Icons.brunch_dining_rounded, - 'brunch_dining_outlined': Icons.brunch_dining_outlined, - 'brush': Icons.brush, - 'brush_sharp': Icons.brush_sharp, - 'brush_rounded': Icons.brush_rounded, - 'brush_outlined': Icons.brush_outlined, - 'bubble_chart': Icons.bubble_chart, - 'bubble_chart_sharp': Icons.bubble_chart_sharp, - 'bubble_chart_rounded': Icons.bubble_chart_rounded, - 'bubble_chart_outlined': Icons.bubble_chart_outlined, - 'bug_report': Icons.bug_report, - 'bug_report_sharp': Icons.bug_report_sharp, - 'bug_report_rounded': Icons.bug_report_rounded, - 'bug_report_outlined': Icons.bug_report_outlined, - 'build': Icons.build, - 'build_sharp': Icons.build_sharp, - 'build_rounded': Icons.build_rounded, - 'build_outlined': Icons.build_outlined, - 'build_circle': Icons.build_circle, - 'build_circle_sharp': Icons.build_circle_sharp, - 'build_circle_rounded': Icons.build_circle_rounded, - 'build_circle_outlined': Icons.build_circle_outlined, - 'bungalow': Icons.bungalow, - 'bungalow_sharp': Icons.bungalow_sharp, - 'bungalow_rounded': Icons.bungalow_rounded, - 'bungalow_outlined': Icons.bungalow_outlined, - 'burst_mode': Icons.burst_mode, - 'burst_mode_sharp': Icons.burst_mode_sharp, - 'burst_mode_rounded': Icons.burst_mode_rounded, - 'burst_mode_outlined': Icons.burst_mode_outlined, - 'bus_alert': Icons.bus_alert, - 'bus_alert_sharp': Icons.bus_alert_sharp, - 'bus_alert_rounded': Icons.bus_alert_rounded, - 'bus_alert_outlined': Icons.bus_alert_outlined, - 'business': Icons.business, - 'business_sharp': Icons.business_sharp, - 'business_rounded': Icons.business_rounded, - 'business_outlined': Icons.business_outlined, - 'business_center': Icons.business_center, - 'business_center_sharp': Icons.business_center_sharp, - 'business_center_rounded': Icons.business_center_rounded, - 'business_center_outlined': Icons.business_center_outlined, - 'cabin': Icons.cabin, - 'cabin_sharp': Icons.cabin_sharp, - 'cabin_rounded': Icons.cabin_rounded, - 'cabin_outlined': Icons.cabin_outlined, - 'cable': Icons.cable, - 'cable_sharp': Icons.cable_sharp, - 'cable_rounded': Icons.cable_rounded, - 'cable_outlined': Icons.cable_outlined, - 'cached': Icons.cached, - 'cached_sharp': Icons.cached_sharp, - 'cached_rounded': Icons.cached_rounded, - 'cached_outlined': Icons.cached_outlined, - 'cake': Icons.cake, - 'cake_sharp': Icons.cake_sharp, - 'cake_rounded': Icons.cake_rounded, - 'cake_outlined': Icons.cake_outlined, - 'calculate': Icons.calculate, - 'calculate_sharp': Icons.calculate_sharp, - 'calculate_rounded': Icons.calculate_rounded, - 'calculate_outlined': Icons.calculate_outlined, - 'calendar_today': Icons.calendar_today, - 'calendar_today_sharp': Icons.calendar_today_sharp, - 'calendar_today_rounded': Icons.calendar_today_rounded, - 'calendar_today_outlined': Icons.calendar_today_outlined, - 'calendar_view_day': Icons.calendar_view_day, - 'calendar_view_day_sharp': Icons.calendar_view_day_sharp, - 'calendar_view_day_rounded': Icons.calendar_view_day_rounded, - 'calendar_view_day_outlined': Icons.calendar_view_day_outlined, - 'calendar_view_month': Icons.calendar_view_month, - 'calendar_view_month_sharp': Icons.calendar_view_month_sharp, - 'calendar_view_month_rounded': Icons.calendar_view_month_rounded, - 'calendar_view_month_outlined': Icons.calendar_view_month_outlined, - 'calendar_view_week': Icons.calendar_view_week, - 'calendar_view_week_sharp': Icons.calendar_view_week_sharp, - 'calendar_view_week_rounded': Icons.calendar_view_week_rounded, - 'calendar_view_week_outlined': Icons.calendar_view_week_outlined, - 'call': Icons.call, - 'call_sharp': Icons.call_sharp, - 'call_rounded': Icons.call_rounded, - 'call_outlined': Icons.call_outlined, - 'call_end': Icons.call_end, - 'call_end_sharp': Icons.call_end_sharp, - 'call_end_rounded': Icons.call_end_rounded, - 'call_end_outlined': Icons.call_end_outlined, - 'call_made': Icons.call_made, - 'call_made_sharp': Icons.call_made_sharp, - 'call_made_rounded': Icons.call_made_rounded, - 'call_made_outlined': Icons.call_made_outlined, - 'call_merge': Icons.call_merge, - 'call_merge_sharp': Icons.call_merge_sharp, - 'call_merge_rounded': Icons.call_merge_rounded, - 'call_merge_outlined': Icons.call_merge_outlined, - 'call_missed': Icons.call_missed, - 'call_missed_sharp': Icons.call_missed_sharp, - 'call_missed_rounded': Icons.call_missed_rounded, - 'call_missed_outlined': Icons.call_missed_outlined, - 'call_missed_outgoing': Icons.call_missed_outgoing, - 'call_missed_outgoing_sharp': Icons.call_missed_outgoing_sharp, - 'call_missed_outgoing_rounded': Icons.call_missed_outgoing_rounded, - 'call_missed_outgoing_outlined': Icons.call_missed_outgoing_outlined, - 'call_received': Icons.call_received, - 'call_received_sharp': Icons.call_received_sharp, - 'call_received_rounded': Icons.call_received_rounded, - 'call_received_outlined': Icons.call_received_outlined, - 'call_split': Icons.call_split, - 'call_split_sharp': Icons.call_split_sharp, - 'call_split_rounded': Icons.call_split_rounded, - 'call_split_outlined': Icons.call_split_outlined, - 'call_to_action': Icons.call_to_action, - 'call_to_action_sharp': Icons.call_to_action_sharp, - 'call_to_action_rounded': Icons.call_to_action_rounded, - 'call_to_action_outlined': Icons.call_to_action_outlined, - 'camera': Icons.camera, - 'camera_sharp': Icons.camera_sharp, - 'camera_rounded': Icons.camera_rounded, - 'camera_outlined': Icons.camera_outlined, - 'camera_alt': Icons.camera_alt, - 'camera_alt_sharp': Icons.camera_alt_sharp, - 'camera_alt_rounded': Icons.camera_alt_rounded, - 'camera_alt_outlined': Icons.camera_alt_outlined, - 'camera_enhance': Icons.camera_enhance, - 'camera_enhance_sharp': Icons.camera_enhance_sharp, - 'camera_enhance_rounded': Icons.camera_enhance_rounded, - 'camera_enhance_outlined': Icons.camera_enhance_outlined, - 'camera_front': Icons.camera_front, - 'camera_front_sharp': Icons.camera_front_sharp, - 'camera_front_rounded': Icons.camera_front_rounded, - 'camera_front_outlined': Icons.camera_front_outlined, - 'camera_indoor': Icons.camera_indoor, - 'camera_indoor_sharp': Icons.camera_indoor_sharp, - 'camera_indoor_rounded': Icons.camera_indoor_rounded, - 'camera_indoor_outlined': Icons.camera_indoor_outlined, - 'camera_outdoor': Icons.camera_outdoor, - 'camera_outdoor_sharp': Icons.camera_outdoor_sharp, - 'camera_outdoor_rounded': Icons.camera_outdoor_rounded, - 'camera_outdoor_outlined': Icons.camera_outdoor_outlined, - 'camera_rear': Icons.camera_rear, - 'camera_rear_sharp': Icons.camera_rear_sharp, - 'camera_rear_rounded': Icons.camera_rear_rounded, - 'camera_rear_outlined': Icons.camera_rear_outlined, - 'camera_roll': Icons.camera_roll, - 'camera_roll_sharp': Icons.camera_roll_sharp, - 'camera_roll_rounded': Icons.camera_roll_rounded, - 'camera_roll_outlined': Icons.camera_roll_outlined, - 'cameraswitch': Icons.cameraswitch, - 'cameraswitch_sharp': Icons.cameraswitch_sharp, - 'cameraswitch_rounded': Icons.cameraswitch_rounded, - 'cameraswitch_outlined': Icons.cameraswitch_outlined, - 'campaign': Icons.campaign, - 'campaign_sharp': Icons.campaign_sharp, - 'campaign_rounded': Icons.campaign_rounded, - 'campaign_outlined': Icons.campaign_outlined, - 'cancel': Icons.cancel, - 'cancel_sharp': Icons.cancel_sharp, - 'cancel_rounded': Icons.cancel_rounded, - 'cancel_outlined': Icons.cancel_outlined, - 'cancel_presentation': Icons.cancel_presentation, - 'cancel_presentation_sharp': Icons.cancel_presentation_sharp, - 'cancel_presentation_rounded': Icons.cancel_presentation_rounded, - 'cancel_presentation_outlined': Icons.cancel_presentation_outlined, - 'cancel_schedule_send': Icons.cancel_schedule_send, - 'cancel_schedule_send_sharp': Icons.cancel_schedule_send_sharp, - 'cancel_schedule_send_rounded': Icons.cancel_schedule_send_rounded, - 'cancel_schedule_send_outlined': Icons.cancel_schedule_send_outlined, - 'car_rental': Icons.car_rental, - 'car_rental_sharp': Icons.car_rental_sharp, - 'car_rental_rounded': Icons.car_rental_rounded, - 'car_rental_outlined': Icons.car_rental_outlined, - 'car_repair': Icons.car_repair, - 'car_repair_sharp': Icons.car_repair_sharp, - 'car_repair_rounded': Icons.car_repair_rounded, - 'car_repair_outlined': Icons.car_repair_outlined, - 'card_giftcard': Icons.card_giftcard, - 'card_giftcard_sharp': Icons.card_giftcard_sharp, - 'card_giftcard_rounded': Icons.card_giftcard_rounded, - 'card_giftcard_outlined': Icons.card_giftcard_outlined, - 'card_membership': Icons.card_membership, - 'card_membership_sharp': Icons.card_membership_sharp, - 'card_membership_rounded': Icons.card_membership_rounded, - 'card_membership_outlined': Icons.card_membership_outlined, - 'card_travel': Icons.card_travel, - 'card_travel_sharp': Icons.card_travel_sharp, - 'card_travel_rounded': Icons.card_travel_rounded, - 'card_travel_outlined': Icons.card_travel_outlined, - 'carpenter': Icons.carpenter, - 'carpenter_sharp': Icons.carpenter_sharp, - 'carpenter_rounded': Icons.carpenter_rounded, - 'carpenter_outlined': Icons.carpenter_outlined, - 'cases': Icons.cases, - 'cases_sharp': Icons.cases_sharp, - 'cases_rounded': Icons.cases_rounded, - 'cases_outlined': Icons.cases_outlined, - 'casino': Icons.casino, - 'casino_sharp': Icons.casino_sharp, - 'casino_rounded': Icons.casino_rounded, - 'casino_outlined': Icons.casino_outlined, - 'cast': Icons.cast, - 'cast_sharp': Icons.cast_sharp, - 'cast_rounded': Icons.cast_rounded, - 'cast_outlined': Icons.cast_outlined, - 'cast_connected': Icons.cast_connected, - 'cast_connected_sharp': Icons.cast_connected_sharp, - 'cast_connected_rounded': Icons.cast_connected_rounded, - 'cast_connected_outlined': Icons.cast_connected_outlined, - 'cast_for_education': Icons.cast_for_education, - 'cast_for_education_sharp': Icons.cast_for_education_sharp, - 'cast_for_education_rounded': Icons.cast_for_education_rounded, - 'cast_for_education_outlined': Icons.cast_for_education_outlined, - 'catching_pokemon': Icons.catching_pokemon, - 'catching_pokemon_sharp': Icons.catching_pokemon_sharp, - 'catching_pokemon_rounded': Icons.catching_pokemon_rounded, - 'catching_pokemon_outlined': Icons.catching_pokemon_outlined, - 'category': Icons.category, - 'category_sharp': Icons.category_sharp, - 'category_rounded': Icons.category_rounded, - 'category_outlined': Icons.category_outlined, - 'celebration': Icons.celebration, - 'celebration_sharp': Icons.celebration_sharp, - 'celebration_rounded': Icons.celebration_rounded, - 'celebration_outlined': Icons.celebration_outlined, - 'cell_wifi': Icons.cell_wifi, - 'cell_wifi_sharp': Icons.cell_wifi_sharp, - 'cell_wifi_rounded': Icons.cell_wifi_rounded, - 'cell_wifi_outlined': Icons.cell_wifi_outlined, - 'center_focus_strong': Icons.center_focus_strong, - 'center_focus_strong_sharp': Icons.center_focus_strong_sharp, - 'center_focus_strong_rounded': Icons.center_focus_strong_rounded, - 'center_focus_strong_outlined': Icons.center_focus_strong_outlined, - 'center_focus_weak': Icons.center_focus_weak, - 'center_focus_weak_sharp': Icons.center_focus_weak_sharp, - 'center_focus_weak_rounded': Icons.center_focus_weak_rounded, - 'center_focus_weak_outlined': Icons.center_focus_weak_outlined, - 'chair': Icons.chair, - 'chair_sharp': Icons.chair_sharp, - 'chair_rounded': Icons.chair_rounded, - 'chair_outlined': Icons.chair_outlined, - 'chair_alt': Icons.chair_alt, - 'chair_alt_sharp': Icons.chair_alt_sharp, - 'chair_alt_rounded': Icons.chair_alt_rounded, - 'chair_alt_outlined': Icons.chair_alt_outlined, - 'chalet': Icons.chalet, - 'chalet_sharp': Icons.chalet_sharp, - 'chalet_rounded': Icons.chalet_rounded, - 'chalet_outlined': Icons.chalet_outlined, - 'change_circle': Icons.change_circle, - 'change_circle_sharp': Icons.change_circle_sharp, - 'change_circle_rounded': Icons.change_circle_rounded, - 'change_circle_outlined': Icons.change_circle_outlined, - 'change_history': Icons.change_history, - 'change_history_sharp': Icons.change_history_sharp, - 'change_history_rounded': Icons.change_history_rounded, - 'change_history_outlined': Icons.change_history_outlined, - 'charging_station': Icons.charging_station, - 'charging_station_sharp': Icons.charging_station_sharp, - 'charging_station_rounded': Icons.charging_station_rounded, - 'charging_station_outlined': Icons.charging_station_outlined, - 'chat': Icons.chat, - 'chat_sharp': Icons.chat_sharp, - 'chat_rounded': Icons.chat_rounded, - 'chat_outlined': Icons.chat_outlined, - 'chat_bubble': Icons.chat_bubble, - 'chat_bubble_sharp': Icons.chat_bubble_sharp, - 'chat_bubble_rounded': Icons.chat_bubble_rounded, - 'chat_bubble_outlined': Icons.chat_bubble_outlined, - 'chat_bubble_outline': Icons.chat_bubble_outline, - 'chat_bubble_outline_sharp': Icons.chat_bubble_outline_sharp, - 'chat_bubble_outline_rounded': Icons.chat_bubble_outline_rounded, - 'chat_bubble_outline_outlined': Icons.chat_bubble_outline_outlined, - 'check': Icons.check, - 'check_sharp': Icons.check_sharp, - 'check_rounded': Icons.check_rounded, - 'check_outlined': Icons.check_outlined, - 'check_box': Icons.check_box, - 'check_box_sharp': Icons.check_box_sharp, - 'check_box_rounded': Icons.check_box_rounded, - 'check_box_outlined': Icons.check_box_outlined, - 'check_box_outline_blank': Icons.check_box_outline_blank, - 'check_box_outline_blank_sharp': Icons.check_box_outline_blank_sharp, - 'check_box_outline_blank_rounded': - Icons.check_box_outline_blank_rounded, - 'check_box_outline_blank_outlined': - Icons.check_box_outline_blank_outlined, - 'check_circle': Icons.check_circle, - 'check_circle_sharp': Icons.check_circle_sharp, - 'check_circle_rounded': Icons.check_circle_rounded, - 'check_circle_outlined': Icons.check_circle_outlined, - 'check_circle_outline': Icons.check_circle_outline, - 'check_circle_outline_sharp': Icons.check_circle_outline_sharp, - 'check_circle_outline_rounded': Icons.check_circle_outline_rounded, - 'check_circle_outline_outlined': Icons.check_circle_outline_outlined, - 'checklist': Icons.checklist, - 'checklist_sharp': Icons.checklist_sharp, - 'checklist_rounded': Icons.checklist_rounded, - 'checklist_outlined': Icons.checklist_outlined, - 'checklist_rtl': Icons.checklist_rtl, - 'checklist_rtl_sharp': Icons.checklist_rtl_sharp, - 'checklist_rtl_rounded': Icons.checklist_rtl_rounded, - 'checklist_rtl_outlined': Icons.checklist_rtl_outlined, - 'checkroom': Icons.checkroom, - 'checkroom_sharp': Icons.checkroom_sharp, - 'checkroom_rounded': Icons.checkroom_rounded, - 'checkroom_outlined': Icons.checkroom_outlined, - 'chevron_left': Icons.chevron_left, - 'chevron_left_sharp': Icons.chevron_left_sharp, - 'chevron_left_rounded': Icons.chevron_left_rounded, - 'chevron_left_outlined': Icons.chevron_left_outlined, - 'chevron_right': Icons.chevron_right, - 'chevron_right_sharp': Icons.chevron_right_sharp, - 'chevron_right_rounded': Icons.chevron_right_rounded, - 'chevron_right_outlined': Icons.chevron_right_outlined, - 'child_care': Icons.child_care, - 'child_care_sharp': Icons.child_care_sharp, - 'child_care_rounded': Icons.child_care_rounded, - 'child_care_outlined': Icons.child_care_outlined, - 'child_friendly': Icons.child_friendly, - 'child_friendly_sharp': Icons.child_friendly_sharp, - 'child_friendly_rounded': Icons.child_friendly_rounded, - 'child_friendly_outlined': Icons.child_friendly_outlined, - 'chrome_reader_mode': Icons.chrome_reader_mode, - 'chrome_reader_mode_sharp': Icons.chrome_reader_mode_sharp, - 'chrome_reader_mode_rounded': Icons.chrome_reader_mode_rounded, - 'chrome_reader_mode_outlined': Icons.chrome_reader_mode_outlined, - 'circle': Icons.circle, - 'circle_sharp': Icons.circle_sharp, - 'circle_rounded': Icons.circle_rounded, - 'circle_outlined': Icons.circle_outlined, - 'circle_notifications': Icons.circle_notifications, - 'circle_notifications_sharp': Icons.circle_notifications_sharp, - 'circle_notifications_rounded': Icons.circle_notifications_rounded, - 'circle_notifications_outlined': Icons.circle_notifications_outlined, - 'class_': Icons.class_, - 'class__sharp': Icons.class__sharp, - 'class__rounded': Icons.class__rounded, - 'class__outlined': Icons.class__outlined, - 'clean_hands': Icons.clean_hands, - 'clean_hands_sharp': Icons.clean_hands_sharp, - 'clean_hands_rounded': Icons.clean_hands_rounded, - 'clean_hands_outlined': Icons.clean_hands_outlined, - 'cleaning_services': Icons.cleaning_services, - 'cleaning_services_sharp': Icons.cleaning_services_sharp, - 'cleaning_services_rounded': Icons.cleaning_services_rounded, - 'cleaning_services_outlined': Icons.cleaning_services_outlined, - 'clear': Icons.clear, - 'clear_sharp': Icons.clear_sharp, - 'clear_rounded': Icons.clear_rounded, - 'clear_outlined': Icons.clear_outlined, - 'clear_all': Icons.clear_all, - 'clear_all_sharp': Icons.clear_all_sharp, - 'clear_all_rounded': Icons.clear_all_rounded, - 'clear_all_outlined': Icons.clear_all_outlined, - 'close': Icons.close, - 'close_sharp': Icons.close_sharp, - 'close_rounded': Icons.close_rounded, - 'close_outlined': Icons.close_outlined, - 'close_fullscreen': Icons.close_fullscreen, - 'close_fullscreen_sharp': Icons.close_fullscreen_sharp, - 'close_fullscreen_rounded': Icons.close_fullscreen_rounded, - 'close_fullscreen_outlined': Icons.close_fullscreen_outlined, - 'closed_caption': Icons.closed_caption, - 'closed_caption_sharp': Icons.closed_caption_sharp, - 'closed_caption_rounded': Icons.closed_caption_rounded, - 'closed_caption_outlined': Icons.closed_caption_outlined, - 'closed_caption_disabled': Icons.closed_caption_disabled, - 'closed_caption_disabled_sharp': Icons.closed_caption_disabled_sharp, - 'closed_caption_disabled_rounded': - Icons.closed_caption_disabled_rounded, - 'closed_caption_disabled_outlined': - Icons.closed_caption_disabled_outlined, - 'closed_caption_off': Icons.closed_caption_off, - 'closed_caption_off_sharp': Icons.closed_caption_off_sharp, - 'closed_caption_off_rounded': Icons.closed_caption_off_rounded, - 'closed_caption_off_outlined': Icons.closed_caption_off_outlined, - 'cloud': Icons.cloud, - 'cloud_sharp': Icons.cloud_sharp, - 'cloud_rounded': Icons.cloud_rounded, - 'cloud_outlined': Icons.cloud_outlined, - 'cloud_circle': Icons.cloud_circle, - 'cloud_circle_sharp': Icons.cloud_circle_sharp, - 'cloud_circle_rounded': Icons.cloud_circle_rounded, - 'cloud_circle_outlined': Icons.cloud_circle_outlined, - 'cloud_done': Icons.cloud_done, - 'cloud_done_sharp': Icons.cloud_done_sharp, - 'cloud_done_rounded': Icons.cloud_done_rounded, - 'cloud_done_outlined': Icons.cloud_done_outlined, - 'cloud_download': Icons.cloud_download, - 'cloud_download_sharp': Icons.cloud_download_sharp, - 'cloud_download_rounded': Icons.cloud_download_rounded, - 'cloud_download_outlined': Icons.cloud_download_outlined, - 'cloud_off': Icons.cloud_off, - 'cloud_off_sharp': Icons.cloud_off_sharp, - 'cloud_off_rounded': Icons.cloud_off_rounded, - 'cloud_off_outlined': Icons.cloud_off_outlined, - 'cloud_queue': Icons.cloud_queue, - 'cloud_queue_sharp': Icons.cloud_queue_sharp, - 'cloud_queue_rounded': Icons.cloud_queue_rounded, - 'cloud_queue_outlined': Icons.cloud_queue_outlined, - 'cloud_upload': Icons.cloud_upload, - 'cloud_upload_sharp': Icons.cloud_upload_sharp, - 'cloud_upload_rounded': Icons.cloud_upload_rounded, - 'cloud_upload_outlined': Icons.cloud_upload_outlined, - 'code': Icons.code, - 'code_sharp': Icons.code_sharp, - 'code_rounded': Icons.code_rounded, - 'code_outlined': Icons.code_outlined, - 'code_off': Icons.code_off, - 'code_off_sharp': Icons.code_off_sharp, - 'code_off_rounded': Icons.code_off_rounded, - 'code_off_outlined': Icons.code_off_outlined, - 'coffee': Icons.coffee, - 'coffee_sharp': Icons.coffee_sharp, - 'coffee_rounded': Icons.coffee_rounded, - 'coffee_outlined': Icons.coffee_outlined, - 'coffee_maker': Icons.coffee_maker, - 'coffee_maker_sharp': Icons.coffee_maker_sharp, - 'coffee_maker_rounded': Icons.coffee_maker_rounded, - 'coffee_maker_outlined': Icons.coffee_maker_outlined, - 'collections': Icons.collections, - 'collections_sharp': Icons.collections_sharp, - 'collections_rounded': Icons.collections_rounded, - 'collections_outlined': Icons.collections_outlined, - 'collections_bookmark': Icons.collections_bookmark, - 'collections_bookmark_sharp': Icons.collections_bookmark_sharp, - 'collections_bookmark_rounded': Icons.collections_bookmark_rounded, - 'collections_bookmark_outlined': Icons.collections_bookmark_outlined, - 'color_lens': Icons.color_lens, - 'color_lens_sharp': Icons.color_lens_sharp, - 'color_lens_rounded': Icons.color_lens_rounded, - 'color_lens_outlined': Icons.color_lens_outlined, - 'colorize': Icons.colorize, - 'colorize_sharp': Icons.colorize_sharp, - 'colorize_rounded': Icons.colorize_rounded, - 'colorize_outlined': Icons.colorize_outlined, - 'comment': Icons.comment, - 'comment_sharp': Icons.comment_sharp, - 'comment_rounded': Icons.comment_rounded, - 'comment_outlined': Icons.comment_outlined, - 'comment_bank': Icons.comment_bank, - 'comment_bank_sharp': Icons.comment_bank_sharp, - 'comment_bank_rounded': Icons.comment_bank_rounded, - 'comment_bank_outlined': Icons.comment_bank_outlined, - 'commute': Icons.commute, - 'commute_sharp': Icons.commute_sharp, - 'commute_rounded': Icons.commute_rounded, - 'commute_outlined': Icons.commute_outlined, - 'compare': Icons.compare, - 'compare_sharp': Icons.compare_sharp, - 'compare_rounded': Icons.compare_rounded, - 'compare_outlined': Icons.compare_outlined, - 'compare_arrows': Icons.compare_arrows, - 'compare_arrows_sharp': Icons.compare_arrows_sharp, - 'compare_arrows_rounded': Icons.compare_arrows_rounded, - 'compare_arrows_outlined': Icons.compare_arrows_outlined, - 'compass_calibration': Icons.compass_calibration, - 'compass_calibration_sharp': Icons.compass_calibration_sharp, - 'compass_calibration_rounded': Icons.compass_calibration_rounded, - 'compass_calibration_outlined': Icons.compass_calibration_outlined, - 'compress': Icons.compress, - 'compress_sharp': Icons.compress_sharp, - 'compress_rounded': Icons.compress_rounded, - 'compress_outlined': Icons.compress_outlined, - 'computer': Icons.computer, - 'computer_sharp': Icons.computer_sharp, - 'computer_rounded': Icons.computer_rounded, - 'computer_outlined': Icons.computer_outlined, - 'confirmation_num': Icons.confirmation_num, - 'confirmation_num_sharp': Icons.confirmation_num_sharp, - 'confirmation_num_rounded': Icons.confirmation_num_rounded, - 'confirmation_num_outlined': Icons.confirmation_num_outlined, - 'confirmation_number': Icons.confirmation_number, - 'confirmation_number_sharp': Icons.confirmation_number_sharp, - 'confirmation_number_rounded': Icons.confirmation_number_rounded, - 'confirmation_number_outlined': Icons.confirmation_number_outlined, - 'connect_without_contact': Icons.connect_without_contact, - 'connect_without_contact_sharp': Icons.connect_without_contact_sharp, - 'connect_without_contact_rounded': - Icons.connect_without_contact_rounded, - 'connect_without_contact_outlined': - Icons.connect_without_contact_outlined, - 'connected_tv': Icons.connected_tv, - 'connected_tv_sharp': Icons.connected_tv_sharp, - 'connected_tv_rounded': Icons.connected_tv_rounded, - 'connected_tv_outlined': Icons.connected_tv_outlined, - 'construction': Icons.construction, - 'construction_sharp': Icons.construction_sharp, - 'construction_rounded': Icons.construction_rounded, - 'construction_outlined': Icons.construction_outlined, - 'contact_mail': Icons.contact_mail, - 'contact_mail_sharp': Icons.contact_mail_sharp, - 'contact_mail_rounded': Icons.contact_mail_rounded, - 'contact_mail_outlined': Icons.contact_mail_outlined, - 'contact_page': Icons.contact_page, - 'contact_page_sharp': Icons.contact_page_sharp, - 'contact_page_rounded': Icons.contact_page_rounded, - 'contact_page_outlined': Icons.contact_page_outlined, - 'contact_phone': Icons.contact_phone, - 'contact_phone_sharp': Icons.contact_phone_sharp, - 'contact_phone_rounded': Icons.contact_phone_rounded, - 'contact_phone_outlined': Icons.contact_phone_outlined, - 'contact_support': Icons.contact_support, - 'contact_support_sharp': Icons.contact_support_sharp, - 'contact_support_rounded': Icons.contact_support_rounded, - 'contact_support_outlined': Icons.contact_support_outlined, - 'contactless': Icons.contactless, - 'contactless_sharp': Icons.contactless_sharp, - 'contactless_rounded': Icons.contactless_rounded, - 'contactless_outlined': Icons.contactless_outlined, - 'contacts': Icons.contacts, - 'contacts_sharp': Icons.contacts_sharp, - 'contacts_rounded': Icons.contacts_rounded, - 'contacts_outlined': Icons.contacts_outlined, - 'content_copy': Icons.content_copy, - 'content_copy_sharp': Icons.content_copy_sharp, - 'content_copy_rounded': Icons.content_copy_rounded, - 'content_copy_outlined': Icons.content_copy_outlined, - 'content_cut': Icons.content_cut, - 'content_cut_sharp': Icons.content_cut_sharp, - 'content_cut_rounded': Icons.content_cut_rounded, - 'content_cut_outlined': Icons.content_cut_outlined, - 'content_paste': Icons.content_paste, - 'content_paste_sharp': Icons.content_paste_sharp, - 'content_paste_rounded': Icons.content_paste_rounded, - 'content_paste_outlined': Icons.content_paste_outlined, - 'content_paste_off': Icons.content_paste_off, - 'content_paste_off_sharp': Icons.content_paste_off_sharp, - 'content_paste_off_rounded': Icons.content_paste_off_rounded, - 'content_paste_off_outlined': Icons.content_paste_off_outlined, - 'control_camera': Icons.control_camera, - 'control_camera_sharp': Icons.control_camera_sharp, - 'control_camera_rounded': Icons.control_camera_rounded, - 'control_camera_outlined': Icons.control_camera_outlined, - 'control_point': Icons.control_point, - 'control_point_sharp': Icons.control_point_sharp, - 'control_point_rounded': Icons.control_point_rounded, - 'control_point_outlined': Icons.control_point_outlined, - 'control_point_duplicate': Icons.control_point_duplicate, - 'control_point_duplicate_sharp': Icons.control_point_duplicate_sharp, - 'control_point_duplicate_rounded': - Icons.control_point_duplicate_rounded, - 'control_point_duplicate_outlined': - Icons.control_point_duplicate_outlined, - 'copy': Icons.copy, - 'copy_sharp': Icons.copy_sharp, - 'copy_rounded': Icons.copy_rounded, - 'copy_outlined': Icons.copy_outlined, - 'copy_all': Icons.copy_all, - 'copy_all_sharp': Icons.copy_all_sharp, - 'copy_all_rounded': Icons.copy_all_rounded, - 'copy_all_outlined': Icons.copy_all_outlined, - 'copyright': Icons.copyright, - 'copyright_sharp': Icons.copyright_sharp, - 'copyright_rounded': Icons.copyright_rounded, - 'copyright_outlined': Icons.copyright_outlined, - 'coronavirus': Icons.coronavirus, - 'coronavirus_sharp': Icons.coronavirus_sharp, - 'coronavirus_rounded': Icons.coronavirus_rounded, - 'coronavirus_outlined': Icons.coronavirus_outlined, - 'corporate_fare': Icons.corporate_fare, - 'corporate_fare_sharp': Icons.corporate_fare_sharp, - 'corporate_fare_rounded': Icons.corporate_fare_rounded, - 'corporate_fare_outlined': Icons.corporate_fare_outlined, - 'cottage': Icons.cottage, - 'cottage_sharp': Icons.cottage_sharp, - 'cottage_rounded': Icons.cottage_rounded, - 'cottage_outlined': Icons.cottage_outlined, - 'countertops': Icons.countertops, - 'countertops_sharp': Icons.countertops_sharp, - 'countertops_rounded': Icons.countertops_rounded, - 'countertops_outlined': Icons.countertops_outlined, - 'create': Icons.create, - 'create_sharp': Icons.create_sharp, - 'create_rounded': Icons.create_rounded, - 'create_outlined': Icons.create_outlined, - 'create_new_folder': Icons.create_new_folder, - 'create_new_folder_sharp': Icons.create_new_folder_sharp, - 'create_new_folder_rounded': Icons.create_new_folder_rounded, - 'create_new_folder_outlined': Icons.create_new_folder_outlined, - 'credit_card': Icons.credit_card, - 'credit_card_sharp': Icons.credit_card_sharp, - 'credit_card_rounded': Icons.credit_card_rounded, - 'credit_card_outlined': Icons.credit_card_outlined, - 'credit_card_off': Icons.credit_card_off, - 'credit_card_off_sharp': Icons.credit_card_off_sharp, - 'credit_card_off_rounded': Icons.credit_card_off_rounded, - 'credit_card_off_outlined': Icons.credit_card_off_outlined, - 'credit_score': Icons.credit_score, - 'credit_score_sharp': Icons.credit_score_sharp, - 'credit_score_rounded': Icons.credit_score_rounded, - 'credit_score_outlined': Icons.credit_score_outlined, - 'crib': Icons.crib, - 'crib_sharp': Icons.crib_sharp, - 'crib_rounded': Icons.crib_rounded, - 'crib_outlined': Icons.crib_outlined, - 'crop': Icons.crop, - 'crop_sharp': Icons.crop_sharp, - 'crop_rounded': Icons.crop_rounded, - 'crop_outlined': Icons.crop_outlined, - 'crop_16_9': Icons.crop_16_9, - 'crop_16_9_sharp': Icons.crop_16_9_sharp, - 'crop_16_9_rounded': Icons.crop_16_9_rounded, - 'crop_16_9_outlined': Icons.crop_16_9_outlined, - 'crop_3_2': Icons.crop_3_2, - 'crop_3_2_sharp': Icons.crop_3_2_sharp, - 'crop_3_2_rounded': Icons.crop_3_2_rounded, - 'crop_3_2_outlined': Icons.crop_3_2_outlined, - 'crop_5_4': Icons.crop_5_4, - 'crop_5_4_sharp': Icons.crop_5_4_sharp, - 'crop_5_4_rounded': Icons.crop_5_4_rounded, - 'crop_5_4_outlined': Icons.crop_5_4_outlined, - 'crop_7_5': Icons.crop_7_5, - 'crop_7_5_sharp': Icons.crop_7_5_sharp, - 'crop_7_5_rounded': Icons.crop_7_5_rounded, - 'crop_7_5_outlined': Icons.crop_7_5_outlined, - 'crop_din': Icons.crop_din, - 'crop_din_sharp': Icons.crop_din_sharp, - 'crop_din_rounded': Icons.crop_din_rounded, - 'crop_din_outlined': Icons.crop_din_outlined, - 'crop_free': Icons.crop_free, - 'crop_free_sharp': Icons.crop_free_sharp, - 'crop_free_rounded': Icons.crop_free_rounded, - 'crop_free_outlined': Icons.crop_free_outlined, - 'crop_landscape': Icons.crop_landscape, - 'crop_landscape_sharp': Icons.crop_landscape_sharp, - 'crop_landscape_rounded': Icons.crop_landscape_rounded, - 'crop_landscape_outlined': Icons.crop_landscape_outlined, - 'crop_original': Icons.crop_original, - 'crop_original_sharp': Icons.crop_original_sharp, - 'crop_original_rounded': Icons.crop_original_rounded, - 'crop_original_outlined': Icons.crop_original_outlined, - 'crop_portrait': Icons.crop_portrait, - 'crop_portrait_sharp': Icons.crop_portrait_sharp, - 'crop_portrait_rounded': Icons.crop_portrait_rounded, - 'crop_portrait_outlined': Icons.crop_portrait_outlined, - 'crop_rotate': Icons.crop_rotate, - 'crop_rotate_sharp': Icons.crop_rotate_sharp, - 'crop_rotate_rounded': Icons.crop_rotate_rounded, - 'crop_rotate_outlined': Icons.crop_rotate_outlined, - 'crop_square': Icons.crop_square, - 'crop_square_sharp': Icons.crop_square_sharp, - 'crop_square_rounded': Icons.crop_square_rounded, - 'crop_square_outlined': Icons.crop_square_outlined, - 'cut': Icons.cut, - 'cut_sharp': Icons.cut_sharp, - 'cut_rounded': Icons.cut_rounded, - 'cut_outlined': Icons.cut_outlined, - 'dangerous': Icons.dangerous, - 'dangerous_sharp': Icons.dangerous_sharp, - 'dangerous_rounded': Icons.dangerous_rounded, - 'dangerous_outlined': Icons.dangerous_outlined, - 'dark_mode': Icons.dark_mode, - 'dark_mode_sharp': Icons.dark_mode_sharp, - 'dark_mode_rounded': Icons.dark_mode_rounded, - 'dark_mode_outlined': Icons.dark_mode_outlined, - 'dashboard': Icons.dashboard, - 'dashboard_sharp': Icons.dashboard_sharp, - 'dashboard_rounded': Icons.dashboard_rounded, - 'dashboard_outlined': Icons.dashboard_outlined, - 'dashboard_customize': Icons.dashboard_customize, - 'dashboard_customize_sharp': Icons.dashboard_customize_sharp, - 'dashboard_customize_rounded': Icons.dashboard_customize_rounded, - 'dashboard_customize_outlined': Icons.dashboard_customize_outlined, - 'data_saver_off': Icons.data_saver_off, - 'data_saver_off_sharp': Icons.data_saver_off_sharp, - 'data_saver_off_rounded': Icons.data_saver_off_rounded, - 'data_saver_off_outlined': Icons.data_saver_off_outlined, - 'data_saver_on': Icons.data_saver_on, - 'data_saver_on_sharp': Icons.data_saver_on_sharp, - 'data_saver_on_rounded': Icons.data_saver_on_rounded, - 'data_saver_on_outlined': Icons.data_saver_on_outlined, - 'data_usage': Icons.data_usage, - 'data_usage_sharp': Icons.data_usage_sharp, - 'data_usage_rounded': Icons.data_usage_rounded, - 'data_usage_outlined': Icons.data_usage_outlined, - 'date_range': Icons.date_range, - 'date_range_sharp': Icons.date_range_sharp, - 'date_range_rounded': Icons.date_range_rounded, - 'date_range_outlined': Icons.date_range_outlined, - 'deck': Icons.deck, - 'deck_sharp': Icons.deck_sharp, - 'deck_rounded': Icons.deck_rounded, - 'deck_outlined': Icons.deck_outlined, - 'dehaze': Icons.dehaze, - 'dehaze_sharp': Icons.dehaze_sharp, - 'dehaze_rounded': Icons.dehaze_rounded, - 'dehaze_outlined': Icons.dehaze_outlined, - 'delete': Icons.delete, - 'delete_sharp': Icons.delete_sharp, - 'delete_rounded': Icons.delete_rounded, - 'delete_outlined': Icons.delete_outlined, - 'delete_forever': Icons.delete_forever, - 'delete_forever_sharp': Icons.delete_forever_sharp, - 'delete_forever_rounded': Icons.delete_forever_rounded, - 'delete_forever_outlined': Icons.delete_forever_outlined, - 'delete_outline': Icons.delete_outline, - 'delete_outline_sharp': Icons.delete_outline_sharp, - 'delete_outline_rounded': Icons.delete_outline_rounded, - 'delete_outline_outlined': Icons.delete_outline_outlined, - 'delete_sweep': Icons.delete_sweep, - 'delete_sweep_sharp': Icons.delete_sweep_sharp, - 'delete_sweep_rounded': Icons.delete_sweep_rounded, - 'delete_sweep_outlined': Icons.delete_sweep_outlined, - 'delivery_dining': Icons.delivery_dining, - 'delivery_dining_sharp': Icons.delivery_dining_sharp, - 'delivery_dining_rounded': Icons.delivery_dining_rounded, - 'delivery_dining_outlined': Icons.delivery_dining_outlined, - 'departure_board': Icons.departure_board, - 'departure_board_sharp': Icons.departure_board_sharp, - 'departure_board_rounded': Icons.departure_board_rounded, - 'departure_board_outlined': Icons.departure_board_outlined, - 'description': Icons.description, - 'description_sharp': Icons.description_sharp, - 'description_rounded': Icons.description_rounded, - 'description_outlined': Icons.description_outlined, - 'design_services': Icons.design_services, - 'design_services_sharp': Icons.design_services_sharp, - 'design_services_rounded': Icons.design_services_rounded, - 'design_services_outlined': Icons.design_services_outlined, - 'desktop_access_disabled': Icons.desktop_access_disabled, - 'desktop_access_disabled_sharp': Icons.desktop_access_disabled_sharp, - 'desktop_access_disabled_rounded': - Icons.desktop_access_disabled_rounded, - 'desktop_access_disabled_outlined': - Icons.desktop_access_disabled_outlined, - 'desktop_mac': Icons.desktop_mac, - 'desktop_mac_sharp': Icons.desktop_mac_sharp, - 'desktop_mac_rounded': Icons.desktop_mac_rounded, - 'desktop_mac_outlined': Icons.desktop_mac_outlined, - 'desktop_windows': Icons.desktop_windows, - 'desktop_windows_sharp': Icons.desktop_windows_sharp, - 'desktop_windows_rounded': Icons.desktop_windows_rounded, - 'desktop_windows_outlined': Icons.desktop_windows_outlined, - 'details': Icons.details, - 'details_sharp': Icons.details_sharp, - 'details_rounded': Icons.details_rounded, - 'details_outlined': Icons.details_outlined, - 'developer_board': Icons.developer_board, - 'developer_board_sharp': Icons.developer_board_sharp, - 'developer_board_rounded': Icons.developer_board_rounded, - 'developer_board_outlined': Icons.developer_board_outlined, - 'developer_board_off': Icons.developer_board_off, - 'developer_board_off_sharp': Icons.developer_board_off_sharp, - 'developer_board_off_rounded': Icons.developer_board_off_rounded, - 'developer_board_off_outlined': Icons.developer_board_off_outlined, - 'developer_mode': Icons.developer_mode, - 'developer_mode_sharp': Icons.developer_mode_sharp, - 'developer_mode_rounded': Icons.developer_mode_rounded, - 'developer_mode_outlined': Icons.developer_mode_outlined, - 'device_hub': Icons.device_hub, - 'device_hub_sharp': Icons.device_hub_sharp, - 'device_hub_rounded': Icons.device_hub_rounded, - 'device_hub_outlined': Icons.device_hub_outlined, - 'device_thermostat': Icons.device_thermostat, - 'device_thermostat_sharp': Icons.device_thermostat_sharp, - 'device_thermostat_rounded': Icons.device_thermostat_rounded, - 'device_thermostat_outlined': Icons.device_thermostat_outlined, - 'device_unknown': Icons.device_unknown, - 'device_unknown_sharp': Icons.device_unknown_sharp, - 'device_unknown_rounded': Icons.device_unknown_rounded, - 'device_unknown_outlined': Icons.device_unknown_outlined, - 'devices': Icons.devices, - 'devices_sharp': Icons.devices_sharp, - 'devices_rounded': Icons.devices_rounded, - 'devices_outlined': Icons.devices_outlined, - 'devices_other': Icons.devices_other, - 'devices_other_sharp': Icons.devices_other_sharp, - 'devices_other_rounded': Icons.devices_other_rounded, - 'devices_other_outlined': Icons.devices_other_outlined, - 'dialer_sip': Icons.dialer_sip, - 'dialer_sip_sharp': Icons.dialer_sip_sharp, - 'dialer_sip_rounded': Icons.dialer_sip_rounded, - 'dialer_sip_outlined': Icons.dialer_sip_outlined, - 'dialpad': Icons.dialpad, - 'dialpad_sharp': Icons.dialpad_sharp, - 'dialpad_rounded': Icons.dialpad_rounded, - 'dialpad_outlined': Icons.dialpad_outlined, - 'dining': Icons.dining, - 'dining_sharp': Icons.dining_sharp, - 'dining_rounded': Icons.dining_rounded, - 'dining_outlined': Icons.dining_outlined, - 'dinner_dining': Icons.dinner_dining, - 'dinner_dining_sharp': Icons.dinner_dining_sharp, - 'dinner_dining_rounded': Icons.dinner_dining_rounded, - 'dinner_dining_outlined': Icons.dinner_dining_outlined, - 'directions': Icons.directions, - 'directions_sharp': Icons.directions_sharp, - 'directions_rounded': Icons.directions_rounded, - 'directions_outlined': Icons.directions_outlined, - 'directions_bike': Icons.directions_bike, - 'directions_bike_sharp': Icons.directions_bike_sharp, - 'directions_bike_rounded': Icons.directions_bike_rounded, - 'directions_bike_outlined': Icons.directions_bike_outlined, - 'directions_boat': Icons.directions_boat, - 'directions_boat_sharp': Icons.directions_boat_sharp, - 'directions_boat_rounded': Icons.directions_boat_rounded, - 'directions_boat_outlined': Icons.directions_boat_outlined, - 'directions_boat_filled': Icons.directions_boat_filled, - 'directions_boat_filled_sharp': Icons.directions_boat_filled_sharp, - 'directions_boat_filled_rounded': Icons.directions_boat_filled_rounded, - 'directions_boat_filled_outlined': - Icons.directions_boat_filled_outlined, - 'directions_bus': Icons.directions_bus, - 'directions_bus_sharp': Icons.directions_bus_sharp, - 'directions_bus_rounded': Icons.directions_bus_rounded, - 'directions_bus_outlined': Icons.directions_bus_outlined, - 'directions_bus_filled': Icons.directions_bus_filled, - 'directions_bus_filled_sharp': Icons.directions_bus_filled_sharp, - 'directions_bus_filled_rounded': Icons.directions_bus_filled_rounded, - 'directions_bus_filled_outlined': Icons.directions_bus_filled_outlined, - 'directions_car': Icons.directions_car, - 'directions_car_sharp': Icons.directions_car_sharp, - 'directions_car_rounded': Icons.directions_car_rounded, - 'directions_car_outlined': Icons.directions_car_outlined, - 'directions_car_filled': Icons.directions_car_filled, - 'directions_car_filled_sharp': Icons.directions_car_filled_sharp, - 'directions_car_filled_rounded': Icons.directions_car_filled_rounded, - 'directions_car_filled_outlined': Icons.directions_car_filled_outlined, - 'directions_ferry': Icons.directions_ferry, - 'directions_ferry_sharp': Icons.directions_ferry_sharp, - 'directions_ferry_rounded': Icons.directions_ferry_rounded, - 'directions_ferry_outlined': Icons.directions_ferry_outlined, - 'directions_off': Icons.directions_off, - 'directions_off_sharp': Icons.directions_off_sharp, - 'directions_off_rounded': Icons.directions_off_rounded, - 'directions_off_outlined': Icons.directions_off_outlined, - 'directions_railway': Icons.directions_railway, - 'directions_railway_sharp': Icons.directions_railway_sharp, - 'directions_railway_rounded': Icons.directions_railway_rounded, - 'directions_railway_outlined': Icons.directions_railway_outlined, - 'directions_railway_filled': Icons.directions_railway_filled, - 'directions_railway_filled_sharp': - Icons.directions_railway_filled_sharp, - 'directions_railway_filled_rounded': - Icons.directions_railway_filled_rounded, - 'directions_railway_filled_outlined': - Icons.directions_railway_filled_outlined, - 'directions_run': Icons.directions_run, - 'directions_run_sharp': Icons.directions_run_sharp, - 'directions_run_rounded': Icons.directions_run_rounded, - 'directions_run_outlined': Icons.directions_run_outlined, - 'directions_subway': Icons.directions_subway, - 'directions_subway_sharp': Icons.directions_subway_sharp, - 'directions_subway_rounded': Icons.directions_subway_rounded, - 'directions_subway_outlined': Icons.directions_subway_outlined, - 'directions_subway_filled': Icons.directions_subway_filled, - 'directions_subway_filled_sharp': Icons.directions_subway_filled_sharp, - 'directions_subway_filled_rounded': - Icons.directions_subway_filled_rounded, - 'directions_subway_filled_outlined': - Icons.directions_subway_filled_outlined, - 'directions_train': Icons.directions_train, - 'directions_train_sharp': Icons.directions_train_sharp, - 'directions_train_rounded': Icons.directions_train_rounded, - 'directions_train_outlined': Icons.directions_train_outlined, - 'directions_transit': Icons.directions_transit, - 'directions_transit_sharp': Icons.directions_transit_sharp, - 'directions_transit_rounded': Icons.directions_transit_rounded, - 'directions_transit_outlined': Icons.directions_transit_outlined, - 'directions_transit_filled': Icons.directions_transit_filled, - 'directions_transit_filled_sharp': - Icons.directions_transit_filled_sharp, - 'directions_transit_filled_rounded': - Icons.directions_transit_filled_rounded, - 'directions_transit_filled_outlined': - Icons.directions_transit_filled_outlined, - 'directions_walk': Icons.directions_walk, - 'directions_walk_sharp': Icons.directions_walk_sharp, - 'directions_walk_rounded': Icons.directions_walk_rounded, - 'directions_walk_outlined': Icons.directions_walk_outlined, - 'dirty_lens': Icons.dirty_lens, - 'dirty_lens_sharp': Icons.dirty_lens_sharp, - 'dirty_lens_rounded': Icons.dirty_lens_rounded, - 'dirty_lens_outlined': Icons.dirty_lens_outlined, - 'disabled_by_default': Icons.disabled_by_default, - 'disabled_by_default_sharp': Icons.disabled_by_default_sharp, - 'disabled_by_default_rounded': Icons.disabled_by_default_rounded, - 'disabled_by_default_outlined': Icons.disabled_by_default_outlined, - 'disc_full': Icons.disc_full, - 'disc_full_sharp': Icons.disc_full_sharp, - 'disc_full_rounded': Icons.disc_full_rounded, - 'disc_full_outlined': Icons.disc_full_outlined, - 'dnd_forwardslash': Icons.dnd_forwardslash, - 'dnd_forwardslash_sharp': Icons.dnd_forwardslash_sharp, - 'dnd_forwardslash_rounded': Icons.dnd_forwardslash_rounded, - 'dnd_forwardslash_outlined': Icons.dnd_forwardslash_outlined, - 'dns': Icons.dns, - 'dns_sharp': Icons.dns_sharp, - 'dns_rounded': Icons.dns_rounded, - 'dns_outlined': Icons.dns_outlined, - 'do_disturb': Icons.do_disturb, - 'do_disturb_sharp': Icons.do_disturb_sharp, - 'do_disturb_rounded': Icons.do_disturb_rounded, - 'do_disturb_outlined': Icons.do_disturb_outlined, - 'do_disturb_alt': Icons.do_disturb_alt, - 'do_disturb_alt_sharp': Icons.do_disturb_alt_sharp, - 'do_disturb_alt_rounded': Icons.do_disturb_alt_rounded, - 'do_disturb_alt_outlined': Icons.do_disturb_alt_outlined, - 'do_disturb_off': Icons.do_disturb_off, - 'do_disturb_off_sharp': Icons.do_disturb_off_sharp, - 'do_disturb_off_rounded': Icons.do_disturb_off_rounded, - 'do_disturb_off_outlined': Icons.do_disturb_off_outlined, - 'do_disturb_on': Icons.do_disturb_on, - 'do_disturb_on_sharp': Icons.do_disturb_on_sharp, - 'do_disturb_on_rounded': Icons.do_disturb_on_rounded, - 'do_disturb_on_outlined': Icons.do_disturb_on_outlined, - 'do_not_disturb': Icons.do_not_disturb, - 'do_not_disturb_sharp': Icons.do_not_disturb_sharp, - 'do_not_disturb_rounded': Icons.do_not_disturb_rounded, - 'do_not_disturb_outlined': Icons.do_not_disturb_outlined, - 'do_not_disturb_alt': Icons.do_not_disturb_alt, - 'do_not_disturb_alt_sharp': Icons.do_not_disturb_alt_sharp, - 'do_not_disturb_alt_rounded': Icons.do_not_disturb_alt_rounded, - 'do_not_disturb_alt_outlined': Icons.do_not_disturb_alt_outlined, - 'do_not_disturb_off': Icons.do_not_disturb_off, - 'do_not_disturb_off_sharp': Icons.do_not_disturb_off_sharp, - 'do_not_disturb_off_rounded': Icons.do_not_disturb_off_rounded, - 'do_not_disturb_off_outlined': Icons.do_not_disturb_off_outlined, - 'do_not_disturb_on': Icons.do_not_disturb_on, - 'do_not_disturb_on_sharp': Icons.do_not_disturb_on_sharp, - 'do_not_disturb_on_rounded': Icons.do_not_disturb_on_rounded, - 'do_not_disturb_on_outlined': Icons.do_not_disturb_on_outlined, - 'do_not_disturb_on_total_silence': - Icons.do_not_disturb_on_total_silence, - 'do_not_disturb_on_total_silence_sharp': - Icons.do_not_disturb_on_total_silence_sharp, - 'do_not_disturb_on_total_silence_rounded': - Icons.do_not_disturb_on_total_silence_rounded, - 'do_not_disturb_on_total_silence_outlined': - Icons.do_not_disturb_on_total_silence_outlined, - 'do_not_step': Icons.do_not_step, - 'do_not_step_sharp': Icons.do_not_step_sharp, - 'do_not_step_rounded': Icons.do_not_step_rounded, - 'do_not_step_outlined': Icons.do_not_step_outlined, - 'do_not_touch': Icons.do_not_touch, - 'do_not_touch_sharp': Icons.do_not_touch_sharp, - 'do_not_touch_rounded': Icons.do_not_touch_rounded, - 'do_not_touch_outlined': Icons.do_not_touch_outlined, - 'dock': Icons.dock, - 'dock_sharp': Icons.dock_sharp, - 'dock_rounded': Icons.dock_rounded, - 'dock_outlined': Icons.dock_outlined, - 'document_scanner': Icons.document_scanner, - 'document_scanner_sharp': Icons.document_scanner_sharp, - 'document_scanner_rounded': Icons.document_scanner_rounded, - 'document_scanner_outlined': Icons.document_scanner_outlined, - 'domain': Icons.domain, - 'domain_sharp': Icons.domain_sharp, - 'domain_rounded': Icons.domain_rounded, - 'domain_outlined': Icons.domain_outlined, - 'domain_disabled': Icons.domain_disabled, - 'domain_disabled_sharp': Icons.domain_disabled_sharp, - 'domain_disabled_rounded': Icons.domain_disabled_rounded, - 'domain_disabled_outlined': Icons.domain_disabled_outlined, - 'domain_verification': Icons.domain_verification, - 'domain_verification_sharp': Icons.domain_verification_sharp, - 'domain_verification_rounded': Icons.domain_verification_rounded, - 'domain_verification_outlined': Icons.domain_verification_outlined, - 'done': Icons.done, - 'done_sharp': Icons.done_sharp, - 'done_rounded': Icons.done_rounded, - 'done_outlined': Icons.done_outlined, - 'done_all': Icons.done_all, - 'done_all_sharp': Icons.done_all_sharp, - 'done_all_rounded': Icons.done_all_rounded, - 'done_all_outlined': Icons.done_all_outlined, - 'done_outline': Icons.done_outline, - 'done_outline_sharp': Icons.done_outline_sharp, - 'done_outline_rounded': Icons.done_outline_rounded, - 'done_outline_outlined': Icons.done_outline_outlined, - 'donut_large': Icons.donut_large, - 'donut_large_sharp': Icons.donut_large_sharp, - 'donut_large_rounded': Icons.donut_large_rounded, - 'donut_large_outlined': Icons.donut_large_outlined, - 'donut_small': Icons.donut_small, - 'donut_small_sharp': Icons.donut_small_sharp, - 'donut_small_rounded': Icons.donut_small_rounded, - 'donut_small_outlined': Icons.donut_small_outlined, - 'door_back_door': Icons.door_back_door, - 'door_back_door_sharp': Icons.door_back_door_sharp, - 'door_back_door_rounded': Icons.door_back_door_rounded, - 'door_back_door_outlined': Icons.door_back_door_outlined, - 'door_front_door': Icons.door_front_door, - 'door_front_door_sharp': Icons.door_front_door_sharp, - 'door_front_door_rounded': Icons.door_front_door_rounded, - 'door_front_door_outlined': Icons.door_front_door_outlined, - 'door_sliding': Icons.door_sliding, - 'door_sliding_sharp': Icons.door_sliding_sharp, - 'door_sliding_rounded': Icons.door_sliding_rounded, - 'door_sliding_outlined': Icons.door_sliding_outlined, - 'doorbell': Icons.doorbell, - 'doorbell_sharp': Icons.doorbell_sharp, - 'doorbell_rounded': Icons.doorbell_rounded, - 'doorbell_outlined': Icons.doorbell_outlined, - 'double_arrow': Icons.double_arrow, - 'double_arrow_sharp': Icons.double_arrow_sharp, - 'double_arrow_rounded': Icons.double_arrow_rounded, - 'double_arrow_outlined': Icons.double_arrow_outlined, - 'downhill_skiing': Icons.downhill_skiing, - 'downhill_skiing_sharp': Icons.downhill_skiing_sharp, - 'downhill_skiing_rounded': Icons.downhill_skiing_rounded, - 'downhill_skiing_outlined': Icons.downhill_skiing_outlined, - 'download': Icons.download, - 'download_sharp': Icons.download_sharp, - 'download_rounded': Icons.download_rounded, - 'download_outlined': Icons.download_outlined, - 'download_done': Icons.download_done, - 'download_done_sharp': Icons.download_done_sharp, - 'download_done_rounded': Icons.download_done_rounded, - 'download_done_outlined': Icons.download_done_outlined, - 'download_for_offline': Icons.download_for_offline, - 'download_for_offline_sharp': Icons.download_for_offline_sharp, - 'download_for_offline_rounded': Icons.download_for_offline_rounded, - 'download_for_offline_outlined': Icons.download_for_offline_outlined, - 'downloading': Icons.downloading, - 'downloading_sharp': Icons.downloading_sharp, - 'downloading_rounded': Icons.downloading_rounded, - 'downloading_outlined': Icons.downloading_outlined, - 'drafts': Icons.drafts, - 'drafts_sharp': Icons.drafts_sharp, - 'drafts_rounded': Icons.drafts_rounded, - 'drafts_outlined': Icons.drafts_outlined, - 'drag_handle': Icons.drag_handle, - 'drag_handle_sharp': Icons.drag_handle_sharp, - 'drag_handle_rounded': Icons.drag_handle_rounded, - 'drag_handle_outlined': Icons.drag_handle_outlined, - 'drag_indicator': Icons.drag_indicator, - 'drag_indicator_sharp': Icons.drag_indicator_sharp, - 'drag_indicator_rounded': Icons.drag_indicator_rounded, - 'drag_indicator_outlined': Icons.drag_indicator_outlined, - 'drive_eta': Icons.drive_eta, - 'drive_eta_sharp': Icons.drive_eta_sharp, - 'drive_eta_rounded': Icons.drive_eta_rounded, - 'drive_eta_outlined': Icons.drive_eta_outlined, - 'drive_file_move': Icons.drive_file_move, - 'drive_file_move_sharp': Icons.drive_file_move_sharp, - 'drive_file_move_rounded': Icons.drive_file_move_rounded, - 'drive_file_move_outlined': Icons.drive_file_move_outlined, - 'drive_file_move_outline': Icons.drive_file_move_outline, - 'drive_file_rename_outline': Icons.drive_file_rename_outline, - 'drive_file_rename_outline_sharp': - Icons.drive_file_rename_outline_sharp, - 'drive_file_rename_outline_rounded': - Icons.drive_file_rename_outline_rounded, - 'drive_file_rename_outline_outlined': - Icons.drive_file_rename_outline_outlined, - 'drive_folder_upload': Icons.drive_folder_upload, - 'drive_folder_upload_sharp': Icons.drive_folder_upload_sharp, - 'drive_folder_upload_rounded': Icons.drive_folder_upload_rounded, - 'drive_folder_upload_outlined': Icons.drive_folder_upload_outlined, - 'dry': Icons.dry, - 'dry_sharp': Icons.dry_sharp, - 'dry_rounded': Icons.dry_rounded, - 'dry_outlined': Icons.dry_outlined, - 'dry_cleaning': Icons.dry_cleaning, - 'dry_cleaning_sharp': Icons.dry_cleaning_sharp, - 'dry_cleaning_rounded': Icons.dry_cleaning_rounded, - 'dry_cleaning_outlined': Icons.dry_cleaning_outlined, - 'duo': Icons.duo, - 'duo_sharp': Icons.duo_sharp, - 'duo_rounded': Icons.duo_rounded, - 'duo_outlined': Icons.duo_outlined, - 'dvr': Icons.dvr, - 'dvr_sharp': Icons.dvr_sharp, - 'dvr_rounded': Icons.dvr_rounded, - 'dvr_outlined': Icons.dvr_outlined, - 'dynamic_feed': Icons.dynamic_feed, - 'dynamic_feed_sharp': Icons.dynamic_feed_sharp, - 'dynamic_feed_rounded': Icons.dynamic_feed_rounded, - 'dynamic_feed_outlined': Icons.dynamic_feed_outlined, - 'dynamic_form': Icons.dynamic_form, - 'dynamic_form_sharp': Icons.dynamic_form_sharp, - 'dynamic_form_rounded': Icons.dynamic_form_rounded, - 'dynamic_form_outlined': Icons.dynamic_form_outlined, - 'e_mobiledata': Icons.e_mobiledata, - 'e_mobiledata_sharp': Icons.e_mobiledata_sharp, - 'e_mobiledata_rounded': Icons.e_mobiledata_rounded, - 'e_mobiledata_outlined': Icons.e_mobiledata_outlined, - 'earbuds': Icons.earbuds, - 'earbuds_sharp': Icons.earbuds_sharp, - 'earbuds_rounded': Icons.earbuds_rounded, - 'earbuds_outlined': Icons.earbuds_outlined, - 'earbuds_battery': Icons.earbuds_battery, - 'earbuds_battery_sharp': Icons.earbuds_battery_sharp, - 'earbuds_battery_rounded': Icons.earbuds_battery_rounded, - 'earbuds_battery_outlined': Icons.earbuds_battery_outlined, - 'east': Icons.east, - 'east_sharp': Icons.east_sharp, - 'east_rounded': Icons.east_rounded, - 'east_outlined': Icons.east_outlined, - 'eco': Icons.eco, - 'eco_sharp': Icons.eco_sharp, - 'eco_rounded': Icons.eco_rounded, - 'eco_outlined': Icons.eco_outlined, - 'edgesensor_high': Icons.edgesensor_high, - 'edgesensor_high_sharp': Icons.edgesensor_high_sharp, - 'edgesensor_high_rounded': Icons.edgesensor_high_rounded, - 'edgesensor_high_outlined': Icons.edgesensor_high_outlined, - 'edgesensor_low': Icons.edgesensor_low, - 'edgesensor_low_sharp': Icons.edgesensor_low_sharp, - 'edgesensor_low_rounded': Icons.edgesensor_low_rounded, - 'edgesensor_low_outlined': Icons.edgesensor_low_outlined, - 'edit': Icons.edit, - 'edit_sharp': Icons.edit_sharp, - 'edit_rounded': Icons.edit_rounded, - 'edit_outlined': Icons.edit_outlined, - 'edit_attributes': Icons.edit_attributes, - 'edit_attributes_sharp': Icons.edit_attributes_sharp, - 'edit_attributes_rounded': Icons.edit_attributes_rounded, - 'edit_attributes_outlined': Icons.edit_attributes_outlined, - 'edit_location': Icons.edit_location, - 'edit_location_sharp': Icons.edit_location_sharp, - 'edit_location_rounded': Icons.edit_location_rounded, - 'edit_location_outlined': Icons.edit_location_outlined, - 'edit_location_alt': Icons.edit_location_alt, - 'edit_location_alt_sharp': Icons.edit_location_alt_sharp, - 'edit_location_alt_rounded': Icons.edit_location_alt_rounded, - 'edit_location_alt_outlined': Icons.edit_location_alt_outlined, - 'edit_notifications': Icons.edit_notifications, - 'edit_notifications_sharp': Icons.edit_notifications_sharp, - 'edit_notifications_rounded': Icons.edit_notifications_rounded, - 'edit_notifications_outlined': Icons.edit_notifications_outlined, - 'edit_off': Icons.edit_off, - 'edit_off_sharp': Icons.edit_off_sharp, - 'edit_off_rounded': Icons.edit_off_rounded, - 'edit_off_outlined': Icons.edit_off_outlined, - 'edit_road': Icons.edit_road, - 'edit_road_sharp': Icons.edit_road_sharp, - 'edit_road_rounded': Icons.edit_road_rounded, - 'edit_road_outlined': Icons.edit_road_outlined, - 'eject': Icons.eject, - 'eject_sharp': Icons.eject_sharp, - 'eject_rounded': Icons.eject_rounded, - 'eject_outlined': Icons.eject_outlined, - 'elderly': Icons.elderly, - 'elderly_sharp': Icons.elderly_sharp, - 'elderly_rounded': Icons.elderly_rounded, - 'elderly_outlined': Icons.elderly_outlined, - 'electric_bike': Icons.electric_bike, - 'electric_bike_sharp': Icons.electric_bike_sharp, - 'electric_bike_rounded': Icons.electric_bike_rounded, - 'electric_bike_outlined': Icons.electric_bike_outlined, - 'electric_car': Icons.electric_car, - 'electric_car_sharp': Icons.electric_car_sharp, - 'electric_car_rounded': Icons.electric_car_rounded, - 'electric_car_outlined': Icons.electric_car_outlined, - 'electric_moped': Icons.electric_moped, - 'electric_moped_sharp': Icons.electric_moped_sharp, - 'electric_moped_rounded': Icons.electric_moped_rounded, - 'electric_moped_outlined': Icons.electric_moped_outlined, - 'electric_rickshaw': Icons.electric_rickshaw, - 'electric_rickshaw_sharp': Icons.electric_rickshaw_sharp, - 'electric_rickshaw_rounded': Icons.electric_rickshaw_rounded, - 'electric_rickshaw_outlined': Icons.electric_rickshaw_outlined, - 'electric_scooter': Icons.electric_scooter, - 'electric_scooter_sharp': Icons.electric_scooter_sharp, - 'electric_scooter_rounded': Icons.electric_scooter_rounded, - 'electric_scooter_outlined': Icons.electric_scooter_outlined, - 'electrical_services': Icons.electrical_services, - 'electrical_services_sharp': Icons.electrical_services_sharp, - 'electrical_services_rounded': Icons.electrical_services_rounded, - 'electrical_services_outlined': Icons.electrical_services_outlined, - 'elevator': Icons.elevator, - 'elevator_sharp': Icons.elevator_sharp, - 'elevator_rounded': Icons.elevator_rounded, - 'elevator_outlined': Icons.elevator_outlined, - 'email': Icons.email, - 'email_sharp': Icons.email_sharp, - 'email_rounded': Icons.email_rounded, - 'email_outlined': Icons.email_outlined, - 'emoji_emotions': Icons.emoji_emotions, - 'emoji_emotions_sharp': Icons.emoji_emotions_sharp, - 'emoji_emotions_rounded': Icons.emoji_emotions_rounded, - 'emoji_emotions_outlined': Icons.emoji_emotions_outlined, - 'emoji_events': Icons.emoji_events, - 'emoji_events_sharp': Icons.emoji_events_sharp, - 'emoji_events_rounded': Icons.emoji_events_rounded, - 'emoji_events_outlined': Icons.emoji_events_outlined, - 'emoji_flags': Icons.emoji_flags, - 'emoji_flags_sharp': Icons.emoji_flags_sharp, - 'emoji_flags_rounded': Icons.emoji_flags_rounded, - 'emoji_flags_outlined': Icons.emoji_flags_outlined, - 'emoji_food_beverage': Icons.emoji_food_beverage, - 'emoji_food_beverage_sharp': Icons.emoji_food_beverage_sharp, - 'emoji_food_beverage_rounded': Icons.emoji_food_beverage_rounded, - 'emoji_food_beverage_outlined': Icons.emoji_food_beverage_outlined, - 'emoji_nature': Icons.emoji_nature, - 'emoji_nature_sharp': Icons.emoji_nature_sharp, - 'emoji_nature_rounded': Icons.emoji_nature_rounded, - 'emoji_nature_outlined': Icons.emoji_nature_outlined, - 'emoji_objects': Icons.emoji_objects, - 'emoji_objects_sharp': Icons.emoji_objects_sharp, - 'emoji_objects_rounded': Icons.emoji_objects_rounded, - 'emoji_objects_outlined': Icons.emoji_objects_outlined, - 'emoji_people': Icons.emoji_people, - 'emoji_people_sharp': Icons.emoji_people_sharp, - 'emoji_people_rounded': Icons.emoji_people_rounded, - 'emoji_people_outlined': Icons.emoji_people_outlined, - 'emoji_symbols': Icons.emoji_symbols, - 'emoji_symbols_sharp': Icons.emoji_symbols_sharp, - 'emoji_symbols_rounded': Icons.emoji_symbols_rounded, - 'emoji_symbols_outlined': Icons.emoji_symbols_outlined, - 'emoji_transportation': Icons.emoji_transportation, - 'emoji_transportation_sharp': Icons.emoji_transportation_sharp, - 'emoji_transportation_rounded': Icons.emoji_transportation_rounded, - 'emoji_transportation_outlined': Icons.emoji_transportation_outlined, - 'engineering': Icons.engineering, - 'engineering_sharp': Icons.engineering_sharp, - 'engineering_rounded': Icons.engineering_rounded, - 'engineering_outlined': Icons.engineering_outlined, - 'enhance_photo_translate': Icons.enhance_photo_translate, - 'enhance_photo_translate_sharp': Icons.enhance_photo_translate_sharp, - 'enhance_photo_translate_rounded': - Icons.enhance_photo_translate_rounded, - 'enhance_photo_translate_outlined': - Icons.enhance_photo_translate_outlined, - 'enhanced_encryption': Icons.enhanced_encryption, - 'enhanced_encryption_sharp': Icons.enhanced_encryption_sharp, - 'enhanced_encryption_rounded': Icons.enhanced_encryption_rounded, - 'enhanced_encryption_outlined': Icons.enhanced_encryption_outlined, - 'equalizer': Icons.equalizer, - 'equalizer_sharp': Icons.equalizer_sharp, - 'equalizer_rounded': Icons.equalizer_rounded, - 'equalizer_outlined': Icons.equalizer_outlined, - 'error': Icons.error, - 'error_sharp': Icons.error_sharp, - 'error_rounded': Icons.error_rounded, - 'error_outlined': Icons.error_outlined, - 'error_outline': Icons.error_outline, - 'error_outline_sharp': Icons.error_outline_sharp, - 'error_outline_rounded': Icons.error_outline_rounded, - 'error_outline_outlined': Icons.error_outline_outlined, - 'escalator': Icons.escalator, - 'escalator_sharp': Icons.escalator_sharp, - 'escalator_rounded': Icons.escalator_rounded, - 'escalator_outlined': Icons.escalator_outlined, - 'escalator_warning': Icons.escalator_warning, - 'escalator_warning_sharp': Icons.escalator_warning_sharp, - 'escalator_warning_rounded': Icons.escalator_warning_rounded, - 'escalator_warning_outlined': Icons.escalator_warning_outlined, - 'euro': Icons.euro, - 'euro_sharp': Icons.euro_sharp, - 'euro_rounded': Icons.euro_rounded, - 'euro_outlined': Icons.euro_outlined, - 'euro_symbol': Icons.euro_symbol, - 'euro_symbol_sharp': Icons.euro_symbol_sharp, - 'euro_symbol_rounded': Icons.euro_symbol_rounded, - 'euro_symbol_outlined': Icons.euro_symbol_outlined, - 'ev_station': Icons.ev_station, - 'ev_station_sharp': Icons.ev_station_sharp, - 'ev_station_rounded': Icons.ev_station_rounded, - 'ev_station_outlined': Icons.ev_station_outlined, - 'event': Icons.event, - 'event_sharp': Icons.event_sharp, - 'event_rounded': Icons.event_rounded, - 'event_outlined': Icons.event_outlined, - 'event_available': Icons.event_available, - 'event_available_sharp': Icons.event_available_sharp, - 'event_available_rounded': Icons.event_available_rounded, - 'event_available_outlined': Icons.event_available_outlined, - 'event_busy': Icons.event_busy, - 'event_busy_sharp': Icons.event_busy_sharp, - 'event_busy_rounded': Icons.event_busy_rounded, - 'event_busy_outlined': Icons.event_busy_outlined, - 'event_note': Icons.event_note, - 'event_note_sharp': Icons.event_note_sharp, - 'event_note_rounded': Icons.event_note_rounded, - 'event_note_outlined': Icons.event_note_outlined, - 'event_seat': Icons.event_seat, - 'event_seat_sharp': Icons.event_seat_sharp, - 'event_seat_rounded': Icons.event_seat_rounded, - 'event_seat_outlined': Icons.event_seat_outlined, - 'exit_to_app': Icons.exit_to_app, - 'exit_to_app_sharp': Icons.exit_to_app_sharp, - 'exit_to_app_rounded': Icons.exit_to_app_rounded, - 'exit_to_app_outlined': Icons.exit_to_app_outlined, - 'expand': Icons.expand, - 'expand_sharp': Icons.expand_sharp, - 'expand_rounded': Icons.expand_rounded, - 'expand_outlined': Icons.expand_outlined, - 'expand_less': Icons.expand_less, - 'expand_less_sharp': Icons.expand_less_sharp, - 'expand_less_rounded': Icons.expand_less_rounded, - 'expand_less_outlined': Icons.expand_less_outlined, - 'expand_more': Icons.expand_more, - 'expand_more_sharp': Icons.expand_more_sharp, - 'expand_more_rounded': Icons.expand_more_rounded, - 'expand_more_outlined': Icons.expand_more_outlined, - 'explicit': Icons.explicit, - 'explicit_sharp': Icons.explicit_sharp, - 'explicit_rounded': Icons.explicit_rounded, - 'explicit_outlined': Icons.explicit_outlined, - 'explore': Icons.explore, - 'explore_sharp': Icons.explore_sharp, - 'explore_rounded': Icons.explore_rounded, - 'explore_outlined': Icons.explore_outlined, - 'explore_off': Icons.explore_off, - 'explore_off_sharp': Icons.explore_off_sharp, - 'explore_off_rounded': Icons.explore_off_rounded, - 'explore_off_outlined': Icons.explore_off_outlined, - 'exposure': Icons.exposure, - 'exposure_sharp': Icons.exposure_sharp, - 'exposure_rounded': Icons.exposure_rounded, - 'exposure_outlined': Icons.exposure_outlined, - 'exposure_minus_1': Icons.exposure_minus_1, - 'exposure_minus_1_sharp': Icons.exposure_minus_1_sharp, - 'exposure_minus_1_rounded': Icons.exposure_minus_1_rounded, - 'exposure_minus_1_outlined': Icons.exposure_minus_1_outlined, - 'exposure_minus_2': Icons.exposure_minus_2, - 'exposure_minus_2_sharp': Icons.exposure_minus_2_sharp, - 'exposure_minus_2_rounded': Icons.exposure_minus_2_rounded, - 'exposure_minus_2_outlined': Icons.exposure_minus_2_outlined, - 'exposure_neg_1': Icons.exposure_neg_1, - 'exposure_neg_1_sharp': Icons.exposure_neg_1_sharp, - 'exposure_neg_1_rounded': Icons.exposure_neg_1_rounded, - 'exposure_neg_1_outlined': Icons.exposure_neg_1_outlined, - 'exposure_neg_2': Icons.exposure_neg_2, - 'exposure_neg_2_sharp': Icons.exposure_neg_2_sharp, - 'exposure_neg_2_rounded': Icons.exposure_neg_2_rounded, - 'exposure_neg_2_outlined': Icons.exposure_neg_2_outlined, - 'exposure_plus_1': Icons.exposure_plus_1, - 'exposure_plus_1_sharp': Icons.exposure_plus_1_sharp, - 'exposure_plus_1_rounded': Icons.exposure_plus_1_rounded, - 'exposure_plus_1_outlined': Icons.exposure_plus_1_outlined, - 'exposure_plus_2': Icons.exposure_plus_2, - 'exposure_plus_2_sharp': Icons.exposure_plus_2_sharp, - 'exposure_plus_2_rounded': Icons.exposure_plus_2_rounded, - 'exposure_plus_2_outlined': Icons.exposure_plus_2_outlined, - 'exposure_zero': Icons.exposure_zero, - 'exposure_zero_sharp': Icons.exposure_zero_sharp, - 'exposure_zero_rounded': Icons.exposure_zero_rounded, - 'exposure_zero_outlined': Icons.exposure_zero_outlined, - 'extension': Icons.extension, - 'extension_sharp': Icons.extension_sharp, - 'extension_rounded': Icons.extension_rounded, - 'extension_outlined': Icons.extension_outlined, - 'extension_off': Icons.extension_off, - 'extension_off_sharp': Icons.extension_off_sharp, - 'extension_off_rounded': Icons.extension_off_rounded, - 'extension_off_outlined': Icons.extension_off_outlined, - 'face': Icons.face, - 'face_sharp': Icons.face_sharp, - 'face_rounded': Icons.face_rounded, - 'face_outlined': Icons.face_outlined, - 'face_retouching_natural': Icons.face_retouching_natural, - 'face_retouching_natural_sharp': Icons.face_retouching_natural_sharp, - 'face_retouching_natural_rounded': - Icons.face_retouching_natural_rounded, - 'face_retouching_natural_outlined': - Icons.face_retouching_natural_outlined, - 'face_retouching_off': Icons.face_retouching_off, - 'face_retouching_off_sharp': Icons.face_retouching_off_sharp, - 'face_retouching_off_rounded': Icons.face_retouching_off_rounded, - 'face_retouching_off_outlined': Icons.face_retouching_off_outlined, - 'face_unlock_sharp': Icons.face_unlock_sharp, - 'face_unlock_rounded': Icons.face_unlock_rounded, - 'face_unlock_outlined': Icons.face_unlock_outlined, - 'facebook': Icons.facebook, - 'facebook_sharp': Icons.facebook_sharp, - 'facebook_rounded': Icons.facebook_rounded, - 'facebook_outlined': Icons.facebook_outlined, - 'fact_check': Icons.fact_check, - 'fact_check_sharp': Icons.fact_check_sharp, - 'fact_check_rounded': Icons.fact_check_rounded, - 'fact_check_outlined': Icons.fact_check_outlined, - 'family_restroom': Icons.family_restroom, - 'family_restroom_sharp': Icons.family_restroom_sharp, - 'family_restroom_rounded': Icons.family_restroom_rounded, - 'family_restroom_outlined': Icons.family_restroom_outlined, - 'fast_forward': Icons.fast_forward, - 'fast_forward_sharp': Icons.fast_forward_sharp, - 'fast_forward_rounded': Icons.fast_forward_rounded, - 'fast_forward_outlined': Icons.fast_forward_outlined, - 'fast_rewind': Icons.fast_rewind, - 'fast_rewind_sharp': Icons.fast_rewind_sharp, - 'fast_rewind_rounded': Icons.fast_rewind_rounded, - 'fast_rewind_outlined': Icons.fast_rewind_outlined, - 'fastfood': Icons.fastfood, - 'fastfood_sharp': Icons.fastfood_sharp, - 'fastfood_rounded': Icons.fastfood_rounded, - 'fastfood_outlined': Icons.fastfood_outlined, - 'favorite': Icons.favorite, - 'favorite_sharp': Icons.favorite_sharp, - 'favorite_rounded': Icons.favorite_rounded, - 'favorite_outlined': Icons.favorite_outlined, - 'favorite_border': Icons.favorite_border, - 'favorite_border_sharp': Icons.favorite_border_sharp, - 'favorite_border_rounded': Icons.favorite_border_rounded, - 'favorite_border_outlined': Icons.favorite_border_outlined, - 'favorite_outline': Icons.favorite_outline, - 'favorite_outline_sharp': Icons.favorite_outline_sharp, - 'favorite_outline_rounded': Icons.favorite_outline_rounded, - 'favorite_outline_outlined': Icons.favorite_outline_outlined, - 'featured_play_list': Icons.featured_play_list, - 'featured_play_list_sharp': Icons.featured_play_list_sharp, - 'featured_play_list_rounded': Icons.featured_play_list_rounded, - 'featured_play_list_outlined': Icons.featured_play_list_outlined, - 'featured_video': Icons.featured_video, - 'featured_video_sharp': Icons.featured_video_sharp, - 'featured_video_rounded': Icons.featured_video_rounded, - 'featured_video_outlined': Icons.featured_video_outlined, - 'feed': Icons.feed, - 'feed_sharp': Icons.feed_sharp, - 'feed_rounded': Icons.feed_rounded, - 'feed_outlined': Icons.feed_outlined, - 'feedback': Icons.feedback, - 'feedback_sharp': Icons.feedback_sharp, - 'feedback_rounded': Icons.feedback_rounded, - 'feedback_outlined': Icons.feedback_outlined, - 'female': Icons.female, - 'female_sharp': Icons.female_sharp, - 'female_rounded': Icons.female_rounded, - 'female_outlined': Icons.female_outlined, - 'fence': Icons.fence, - 'fence_sharp': Icons.fence_sharp, - 'fence_rounded': Icons.fence_rounded, - 'fence_outlined': Icons.fence_outlined, - 'festival': Icons.festival, - 'festival_sharp': Icons.festival_sharp, - 'festival_rounded': Icons.festival_rounded, - 'festival_outlined': Icons.festival_outlined, - 'fiber_dvr': Icons.fiber_dvr, - 'fiber_dvr_sharp': Icons.fiber_dvr_sharp, - 'fiber_dvr_rounded': Icons.fiber_dvr_rounded, - 'fiber_dvr_outlined': Icons.fiber_dvr_outlined, - 'fiber_manual_record': Icons.fiber_manual_record, - 'fiber_manual_record_sharp': Icons.fiber_manual_record_sharp, - 'fiber_manual_record_rounded': Icons.fiber_manual_record_rounded, - 'fiber_manual_record_outlined': Icons.fiber_manual_record_outlined, - 'fiber_new': Icons.fiber_new, - 'fiber_new_sharp': Icons.fiber_new_sharp, - 'fiber_new_rounded': Icons.fiber_new_rounded, - 'fiber_new_outlined': Icons.fiber_new_outlined, - 'fiber_pin': Icons.fiber_pin, - 'fiber_pin_sharp': Icons.fiber_pin_sharp, - 'fiber_pin_rounded': Icons.fiber_pin_rounded, - 'fiber_pin_outlined': Icons.fiber_pin_outlined, - 'fiber_smart_record': Icons.fiber_smart_record, - 'fiber_smart_record_sharp': Icons.fiber_smart_record_sharp, - 'fiber_smart_record_rounded': Icons.fiber_smart_record_rounded, - 'fiber_smart_record_outlined': Icons.fiber_smart_record_outlined, - 'file_copy': Icons.file_copy, - 'file_copy_sharp': Icons.file_copy_sharp, - 'file_copy_rounded': Icons.file_copy_rounded, - 'file_copy_outlined': Icons.file_copy_outlined, - 'file_download': Icons.file_download, - 'file_download_sharp': Icons.file_download_sharp, - 'file_download_rounded': Icons.file_download_rounded, - 'file_download_outlined': Icons.file_download_outlined, - 'file_download_done': Icons.file_download_done, - 'file_download_done_sharp': Icons.file_download_done_sharp, - 'file_download_done_rounded': Icons.file_download_done_rounded, - 'file_download_done_outlined': Icons.file_download_done_outlined, - 'file_download_off': Icons.file_download_off, - 'file_download_off_sharp': Icons.file_download_off_sharp, - 'file_download_off_rounded': Icons.file_download_off_rounded, - 'file_download_off_outlined': Icons.file_download_off_outlined, - 'file_present': Icons.file_present, - 'file_present_sharp': Icons.file_present_sharp, - 'file_present_rounded': Icons.file_present_rounded, - 'file_present_outlined': Icons.file_present_outlined, - 'file_upload': Icons.file_upload, - 'file_upload_sharp': Icons.file_upload_sharp, - 'file_upload_rounded': Icons.file_upload_rounded, - 'file_upload_outlined': Icons.file_upload_outlined, - 'filter': Icons.filter, - 'filter_sharp': Icons.filter_sharp, - 'filter_rounded': Icons.filter_rounded, - 'filter_outlined': Icons.filter_outlined, - 'filter_1': Icons.filter_1, - 'filter_1_sharp': Icons.filter_1_sharp, - 'filter_1_rounded': Icons.filter_1_rounded, - 'filter_1_outlined': Icons.filter_1_outlined, - 'filter_2': Icons.filter_2, - 'filter_2_sharp': Icons.filter_2_sharp, - 'filter_2_rounded': Icons.filter_2_rounded, - 'filter_2_outlined': Icons.filter_2_outlined, - 'filter_3': Icons.filter_3, - 'filter_3_sharp': Icons.filter_3_sharp, - 'filter_3_rounded': Icons.filter_3_rounded, - 'filter_3_outlined': Icons.filter_3_outlined, - 'filter_4': Icons.filter_4, - 'filter_4_sharp': Icons.filter_4_sharp, - 'filter_4_rounded': Icons.filter_4_rounded, - 'filter_4_outlined': Icons.filter_4_outlined, - 'filter_5': Icons.filter_5, - 'filter_5_sharp': Icons.filter_5_sharp, - 'filter_5_rounded': Icons.filter_5_rounded, - 'filter_5_outlined': Icons.filter_5_outlined, - 'filter_6': Icons.filter_6, - 'filter_6_sharp': Icons.filter_6_sharp, - 'filter_6_rounded': Icons.filter_6_rounded, - 'filter_6_outlined': Icons.filter_6_outlined, - 'filter_7': Icons.filter_7, - 'filter_7_sharp': Icons.filter_7_sharp, - 'filter_7_rounded': Icons.filter_7_rounded, - 'filter_7_outlined': Icons.filter_7_outlined, - 'filter_8': Icons.filter_8, - 'filter_8_sharp': Icons.filter_8_sharp, - 'filter_8_rounded': Icons.filter_8_rounded, - 'filter_8_outlined': Icons.filter_8_outlined, - 'filter_9': Icons.filter_9, - 'filter_9_sharp': Icons.filter_9_sharp, - 'filter_9_rounded': Icons.filter_9_rounded, - 'filter_9_outlined': Icons.filter_9_outlined, - 'filter_9_plus': Icons.filter_9_plus, - 'filter_9_plus_sharp': Icons.filter_9_plus_sharp, - 'filter_9_plus_rounded': Icons.filter_9_plus_rounded, - 'filter_9_plus_outlined': Icons.filter_9_plus_outlined, - 'filter_alt': Icons.filter_alt, - 'filter_alt_sharp': Icons.filter_alt_sharp, - 'filter_alt_rounded': Icons.filter_alt_rounded, - 'filter_alt_outlined': Icons.filter_alt_outlined, - 'filter_b_and_w': Icons.filter_b_and_w, - 'filter_b_and_w_sharp': Icons.filter_b_and_w_sharp, - 'filter_b_and_w_rounded': Icons.filter_b_and_w_rounded, - 'filter_b_and_w_outlined': Icons.filter_b_and_w_outlined, - 'filter_center_focus': Icons.filter_center_focus, - 'filter_center_focus_sharp': Icons.filter_center_focus_sharp, - 'filter_center_focus_rounded': Icons.filter_center_focus_rounded, - 'filter_center_focus_outlined': Icons.filter_center_focus_outlined, - 'filter_drama': Icons.filter_drama, - 'filter_drama_sharp': Icons.filter_drama_sharp, - 'filter_drama_rounded': Icons.filter_drama_rounded, - 'filter_drama_outlined': Icons.filter_drama_outlined, - 'filter_frames': Icons.filter_frames, - 'filter_frames_sharp': Icons.filter_frames_sharp, - 'filter_frames_rounded': Icons.filter_frames_rounded, - 'filter_frames_outlined': Icons.filter_frames_outlined, - 'filter_hdr': Icons.filter_hdr, - 'filter_hdr_sharp': Icons.filter_hdr_sharp, - 'filter_hdr_rounded': Icons.filter_hdr_rounded, - 'filter_hdr_outlined': Icons.filter_hdr_outlined, - 'filter_list': Icons.filter_list, - 'filter_list_sharp': Icons.filter_list_sharp, - 'filter_list_rounded': Icons.filter_list_rounded, - 'filter_list_outlined': Icons.filter_list_outlined, - 'filter_list_alt': Icons.filter_list_alt, - 'filter_none': Icons.filter_none, - 'filter_none_sharp': Icons.filter_none_sharp, - 'filter_none_rounded': Icons.filter_none_rounded, - 'filter_none_outlined': Icons.filter_none_outlined, - 'filter_tilt_shift': Icons.filter_tilt_shift, - 'filter_tilt_shift_sharp': Icons.filter_tilt_shift_sharp, - 'filter_tilt_shift_rounded': Icons.filter_tilt_shift_rounded, - 'filter_tilt_shift_outlined': Icons.filter_tilt_shift_outlined, - 'filter_vintage': Icons.filter_vintage, - 'filter_vintage_sharp': Icons.filter_vintage_sharp, - 'filter_vintage_rounded': Icons.filter_vintage_rounded, - 'filter_vintage_outlined': Icons.filter_vintage_outlined, - 'find_in_page': Icons.find_in_page, - 'find_in_page_sharp': Icons.find_in_page_sharp, - 'find_in_page_rounded': Icons.find_in_page_rounded, - 'find_in_page_outlined': Icons.find_in_page_outlined, - 'find_replace': Icons.find_replace, - 'find_replace_sharp': Icons.find_replace_sharp, - 'find_replace_rounded': Icons.find_replace_rounded, - 'find_replace_outlined': Icons.find_replace_outlined, - 'fingerprint': Icons.fingerprint, - 'fingerprint_sharp': Icons.fingerprint_sharp, - 'fingerprint_rounded': Icons.fingerprint_rounded, - 'fingerprint_outlined': Icons.fingerprint_outlined, - 'fire_extinguisher': Icons.fire_extinguisher, - 'fire_extinguisher_sharp': Icons.fire_extinguisher_sharp, - 'fire_extinguisher_rounded': Icons.fire_extinguisher_rounded, - 'fire_extinguisher_outlined': Icons.fire_extinguisher_outlined, - 'fire_hydrant': Icons.fire_hydrant, - 'fireplace': Icons.fireplace, - 'fireplace_sharp': Icons.fireplace_sharp, - 'fireplace_rounded': Icons.fireplace_rounded, - 'fireplace_outlined': Icons.fireplace_outlined, - 'first_page': Icons.first_page, - 'first_page_sharp': Icons.first_page_sharp, - 'first_page_rounded': Icons.first_page_rounded, - 'first_page_outlined': Icons.first_page_outlined, - 'fit_screen': Icons.fit_screen, - 'fit_screen_sharp': Icons.fit_screen_sharp, - 'fit_screen_rounded': Icons.fit_screen_rounded, - 'fit_screen_outlined': Icons.fit_screen_outlined, - 'fitness_center': Icons.fitness_center, - 'fitness_center_sharp': Icons.fitness_center_sharp, - 'fitness_center_rounded': Icons.fitness_center_rounded, - 'fitness_center_outlined': Icons.fitness_center_outlined, - 'flag': Icons.flag, - 'flag_sharp': Icons.flag_sharp, - 'flag_rounded': Icons.flag_rounded, - 'flag_outlined': Icons.flag_outlined, - 'flaky': Icons.flaky, - 'flaky_sharp': Icons.flaky_sharp, - 'flaky_rounded': Icons.flaky_rounded, - 'flaky_outlined': Icons.flaky_outlined, - 'flare': Icons.flare, - 'flare_sharp': Icons.flare_sharp, - 'flare_rounded': Icons.flare_rounded, - 'flare_outlined': Icons.flare_outlined, - 'flash_auto': Icons.flash_auto, - 'flash_auto_sharp': Icons.flash_auto_sharp, - 'flash_auto_rounded': Icons.flash_auto_rounded, - 'flash_auto_outlined': Icons.flash_auto_outlined, - 'flash_off': Icons.flash_off, - 'flash_off_sharp': Icons.flash_off_sharp, - 'flash_off_rounded': Icons.flash_off_rounded, - 'flash_off_outlined': Icons.flash_off_outlined, - 'flash_on': Icons.flash_on, - 'flash_on_sharp': Icons.flash_on_sharp, - 'flash_on_rounded': Icons.flash_on_rounded, - 'flash_on_outlined': Icons.flash_on_outlined, - 'flashlight_off': Icons.flashlight_off, - 'flashlight_off_sharp': Icons.flashlight_off_sharp, - 'flashlight_off_rounded': Icons.flashlight_off_rounded, - 'flashlight_off_outlined': Icons.flashlight_off_outlined, - 'flashlight_on': Icons.flashlight_on, - 'flashlight_on_sharp': Icons.flashlight_on_sharp, - 'flashlight_on_rounded': Icons.flashlight_on_rounded, - 'flashlight_on_outlined': Icons.flashlight_on_outlined, - 'flatware': Icons.flatware, - 'flatware_sharp': Icons.flatware_sharp, - 'flatware_rounded': Icons.flatware_rounded, - 'flatware_outlined': Icons.flatware_outlined, - 'flight': Icons.flight, - 'flight_sharp': Icons.flight_sharp, - 'flight_rounded': Icons.flight_rounded, - 'flight_outlined': Icons.flight_outlined, - 'flight_land': Icons.flight_land, - 'flight_land_sharp': Icons.flight_land_sharp, - 'flight_land_rounded': Icons.flight_land_rounded, - 'flight_land_outlined': Icons.flight_land_outlined, - 'flight_takeoff': Icons.flight_takeoff, - 'flight_takeoff_sharp': Icons.flight_takeoff_sharp, - 'flight_takeoff_rounded': Icons.flight_takeoff_rounded, - 'flight_takeoff_outlined': Icons.flight_takeoff_outlined, - 'flip': Icons.flip, - 'flip_sharp': Icons.flip_sharp, - 'flip_rounded': Icons.flip_rounded, - 'flip_outlined': Icons.flip_outlined, - 'flip_camera_android': Icons.flip_camera_android, - 'flip_camera_android_sharp': Icons.flip_camera_android_sharp, - 'flip_camera_android_rounded': Icons.flip_camera_android_rounded, - 'flip_camera_android_outlined': Icons.flip_camera_android_outlined, - 'flip_camera_ios': Icons.flip_camera_ios, - 'flip_camera_ios_sharp': Icons.flip_camera_ios_sharp, - 'flip_camera_ios_rounded': Icons.flip_camera_ios_rounded, - 'flip_camera_ios_outlined': Icons.flip_camera_ios_outlined, - 'flip_to_back': Icons.flip_to_back, - 'flip_to_back_sharp': Icons.flip_to_back_sharp, - 'flip_to_back_rounded': Icons.flip_to_back_rounded, - 'flip_to_back_outlined': Icons.flip_to_back_outlined, - 'flip_to_front': Icons.flip_to_front, - 'flip_to_front_sharp': Icons.flip_to_front_sharp, - 'flip_to_front_rounded': Icons.flip_to_front_rounded, - 'flip_to_front_outlined': Icons.flip_to_front_outlined, - 'flourescent': Icons.flourescent, - 'flourescent_sharp': Icons.flourescent_sharp, - 'flourescent_rounded': Icons.flourescent_rounded, - 'flourescent_outlined': Icons.flourescent_outlined, - 'flutter_dash': Icons.flutter_dash, - 'flutter_dash_sharp': Icons.flutter_dash_sharp, - 'flutter_dash_rounded': Icons.flutter_dash_rounded, - 'flutter_dash_outlined': Icons.flutter_dash_outlined, - 'fmd_bad': Icons.fmd_bad, - 'fmd_bad_sharp': Icons.fmd_bad_sharp, - 'fmd_bad_rounded': Icons.fmd_bad_rounded, - 'fmd_bad_outlined': Icons.fmd_bad_outlined, - 'fmd_good': Icons.fmd_good, - 'fmd_good_sharp': Icons.fmd_good_sharp, - 'fmd_good_rounded': Icons.fmd_good_rounded, - 'fmd_good_outlined': Icons.fmd_good_outlined, - 'folder': Icons.folder, - 'folder_sharp': Icons.folder_sharp, - 'folder_rounded': Icons.folder_rounded, - 'folder_outlined': Icons.folder_outlined, - 'folder_open': Icons.folder_open, - 'folder_open_sharp': Icons.folder_open_sharp, - 'folder_open_rounded': Icons.folder_open_rounded, - 'folder_open_outlined': Icons.folder_open_outlined, - 'folder_shared': Icons.folder_shared, - 'folder_shared_sharp': Icons.folder_shared_sharp, - 'folder_shared_rounded': Icons.folder_shared_rounded, - 'folder_shared_outlined': Icons.folder_shared_outlined, - 'folder_special': Icons.folder_special, - 'folder_special_sharp': Icons.folder_special_sharp, - 'folder_special_rounded': Icons.folder_special_rounded, - 'folder_special_outlined': Icons.folder_special_outlined, - 'follow_the_signs': Icons.follow_the_signs, - 'follow_the_signs_sharp': Icons.follow_the_signs_sharp, - 'follow_the_signs_rounded': Icons.follow_the_signs_rounded, - 'follow_the_signs_outlined': Icons.follow_the_signs_outlined, - 'font_download': Icons.font_download, - 'font_download_sharp': Icons.font_download_sharp, - 'font_download_rounded': Icons.font_download_rounded, - 'font_download_outlined': Icons.font_download_outlined, - 'font_download_off': Icons.font_download_off, - 'font_download_off_sharp': Icons.font_download_off_sharp, - 'font_download_off_rounded': Icons.font_download_off_rounded, - 'font_download_off_outlined': Icons.font_download_off_outlined, - 'food_bank': Icons.food_bank, - 'food_bank_sharp': Icons.food_bank_sharp, - 'food_bank_rounded': Icons.food_bank_rounded, - 'food_bank_outlined': Icons.food_bank_outlined, - 'format_align_center': Icons.format_align_center, - 'format_align_center_sharp': Icons.format_align_center_sharp, - 'format_align_center_rounded': Icons.format_align_center_rounded, - 'format_align_center_outlined': Icons.format_align_center_outlined, - 'format_align_justify': Icons.format_align_justify, - 'format_align_justify_sharp': Icons.format_align_justify_sharp, - 'format_align_justify_rounded': Icons.format_align_justify_rounded, - 'format_align_justify_outlined': Icons.format_align_justify_outlined, - 'format_align_left': Icons.format_align_left, - 'format_align_left_sharp': Icons.format_align_left_sharp, - 'format_align_left_rounded': Icons.format_align_left_rounded, - 'format_align_left_outlined': Icons.format_align_left_outlined, - 'format_align_right': Icons.format_align_right, - 'format_align_right_sharp': Icons.format_align_right_sharp, - 'format_align_right_rounded': Icons.format_align_right_rounded, - 'format_align_right_outlined': Icons.format_align_right_outlined, - 'format_bold': Icons.format_bold, - 'format_bold_sharp': Icons.format_bold_sharp, - 'format_bold_rounded': Icons.format_bold_rounded, - 'format_bold_outlined': Icons.format_bold_outlined, - 'format_clear': Icons.format_clear, - 'format_clear_sharp': Icons.format_clear_sharp, - 'format_clear_rounded': Icons.format_clear_rounded, - 'format_clear_outlined': Icons.format_clear_outlined, - 'format_color_fill': Icons.format_color_fill, - 'format_color_fill_sharp': Icons.format_color_fill_sharp, - 'format_color_fill_rounded': Icons.format_color_fill_rounded, - 'format_color_fill_outlined': Icons.format_color_fill_outlined, - 'format_color_reset': Icons.format_color_reset, - 'format_color_reset_sharp': Icons.format_color_reset_sharp, - 'format_color_reset_rounded': Icons.format_color_reset_rounded, - 'format_color_reset_outlined': Icons.format_color_reset_outlined, - 'format_color_text': Icons.format_color_text, - 'format_color_text_sharp': Icons.format_color_text_sharp, - 'format_color_text_rounded': Icons.format_color_text_rounded, - 'format_color_text_outlined': Icons.format_color_text_outlined, - 'format_indent_decrease': Icons.format_indent_decrease, - 'format_indent_decrease_sharp': Icons.format_indent_decrease_sharp, - 'format_indent_decrease_rounded': Icons.format_indent_decrease_rounded, - 'format_indent_decrease_outlined': - Icons.format_indent_decrease_outlined, - 'format_indent_increase': Icons.format_indent_increase, - 'format_indent_increase_sharp': Icons.format_indent_increase_sharp, - 'format_indent_increase_rounded': Icons.format_indent_increase_rounded, - 'format_indent_increase_outlined': - Icons.format_indent_increase_outlined, - 'format_italic': Icons.format_italic, - 'format_italic_sharp': Icons.format_italic_sharp, - 'format_italic_rounded': Icons.format_italic_rounded, - 'format_italic_outlined': Icons.format_italic_outlined, - 'format_line_spacing': Icons.format_line_spacing, - 'format_line_spacing_sharp': Icons.format_line_spacing_sharp, - 'format_line_spacing_rounded': Icons.format_line_spacing_rounded, - 'format_line_spacing_outlined': Icons.format_line_spacing_outlined, - 'format_list_bulleted': Icons.format_list_bulleted, - 'format_list_bulleted_sharp': Icons.format_list_bulleted_sharp, - 'format_list_bulleted_rounded': Icons.format_list_bulleted_rounded, - 'format_list_bulleted_outlined': Icons.format_list_bulleted_outlined, - 'format_list_numbered': Icons.format_list_numbered, - 'format_list_numbered_sharp': Icons.format_list_numbered_sharp, - 'format_list_numbered_rounded': Icons.format_list_numbered_rounded, - 'format_list_numbered_outlined': Icons.format_list_numbered_outlined, - 'format_list_numbered_rtl': Icons.format_list_numbered_rtl, - 'format_list_numbered_rtl_sharp': Icons.format_list_numbered_rtl_sharp, - 'format_list_numbered_rtl_rounded': - Icons.format_list_numbered_rtl_rounded, - 'format_list_numbered_rtl_outlined': - Icons.format_list_numbered_rtl_outlined, - 'format_paint': Icons.format_paint, - 'format_paint_sharp': Icons.format_paint_sharp, - 'format_paint_rounded': Icons.format_paint_rounded, - 'format_paint_outlined': Icons.format_paint_outlined, - 'format_quote': Icons.format_quote, - 'format_quote_sharp': Icons.format_quote_sharp, - 'format_quote_rounded': Icons.format_quote_rounded, - 'format_quote_outlined': Icons.format_quote_outlined, - 'format_shapes': Icons.format_shapes, - 'format_shapes_sharp': Icons.format_shapes_sharp, - 'format_shapes_rounded': Icons.format_shapes_rounded, - 'format_shapes_outlined': Icons.format_shapes_outlined, - 'format_size': Icons.format_size, - 'format_size_sharp': Icons.format_size_sharp, - 'format_size_rounded': Icons.format_size_rounded, - 'format_size_outlined': Icons.format_size_outlined, - 'format_strikethrough': Icons.format_strikethrough, - 'format_strikethrough_sharp': Icons.format_strikethrough_sharp, - 'format_strikethrough_rounded': Icons.format_strikethrough_rounded, - 'format_strikethrough_outlined': Icons.format_strikethrough_outlined, - 'format_textdirection_l_to_r': Icons.format_textdirection_l_to_r, - 'format_textdirection_l_to_r_sharp': - Icons.format_textdirection_l_to_r_sharp, - 'format_textdirection_l_to_r_rounded': - Icons.format_textdirection_l_to_r_rounded, - 'format_textdirection_l_to_r_outlined': - Icons.format_textdirection_l_to_r_outlined, - 'format_textdirection_r_to_l': Icons.format_textdirection_r_to_l, - 'format_textdirection_r_to_l_sharp': - Icons.format_textdirection_r_to_l_sharp, - 'format_textdirection_r_to_l_rounded': - Icons.format_textdirection_r_to_l_rounded, - 'format_textdirection_r_to_l_outlined': - Icons.format_textdirection_r_to_l_outlined, - 'format_underline': Icons.format_underline, - 'format_underline_sharp': Icons.format_underline_sharp, - 'format_underline_rounded': Icons.format_underline_rounded, - 'format_underline_outlined': Icons.format_underline_outlined, - 'format_underlined': Icons.format_underlined, - 'format_underlined_sharp': Icons.format_underlined_sharp, - 'format_underlined_rounded': Icons.format_underlined_rounded, - 'format_underlined_outlined': Icons.format_underlined_outlined, - 'forum': Icons.forum, - 'forum_sharp': Icons.forum_sharp, - 'forum_rounded': Icons.forum_rounded, - 'forum_outlined': Icons.forum_outlined, - 'forward': Icons.forward, - 'forward_sharp': Icons.forward_sharp, - 'forward_rounded': Icons.forward_rounded, - 'forward_outlined': Icons.forward_outlined, - 'forward_10': Icons.forward_10, - 'forward_10_sharp': Icons.forward_10_sharp, - 'forward_10_rounded': Icons.forward_10_rounded, - 'forward_10_outlined': Icons.forward_10_outlined, - 'forward_30': Icons.forward_30, - 'forward_30_sharp': Icons.forward_30_sharp, - 'forward_30_rounded': Icons.forward_30_rounded, - 'forward_30_outlined': Icons.forward_30_outlined, - 'forward_5': Icons.forward_5, - 'forward_5_sharp': Icons.forward_5_sharp, - 'forward_5_rounded': Icons.forward_5_rounded, - 'forward_5_outlined': Icons.forward_5_outlined, - 'forward_to_inbox': Icons.forward_to_inbox, - 'forward_to_inbox_sharp': Icons.forward_to_inbox_sharp, - 'forward_to_inbox_rounded': Icons.forward_to_inbox_rounded, - 'forward_to_inbox_outlined': Icons.forward_to_inbox_outlined, - 'foundation': Icons.foundation, - 'foundation_sharp': Icons.foundation_sharp, - 'foundation_rounded': Icons.foundation_rounded, - 'foundation_outlined': Icons.foundation_outlined, - 'free_breakfast': Icons.free_breakfast, - 'free_breakfast_sharp': Icons.free_breakfast_sharp, - 'free_breakfast_rounded': Icons.free_breakfast_rounded, - 'free_breakfast_outlined': Icons.free_breakfast_outlined, - 'fullscreen': Icons.fullscreen, - 'fullscreen_sharp': Icons.fullscreen_sharp, - 'fullscreen_rounded': Icons.fullscreen_rounded, - 'fullscreen_outlined': Icons.fullscreen_outlined, - 'fullscreen_exit': Icons.fullscreen_exit, - 'fullscreen_exit_sharp': Icons.fullscreen_exit_sharp, - 'fullscreen_exit_rounded': Icons.fullscreen_exit_rounded, - 'fullscreen_exit_outlined': Icons.fullscreen_exit_outlined, - 'functions': Icons.functions, - 'functions_sharp': Icons.functions_sharp, - 'functions_rounded': Icons.functions_rounded, - 'functions_outlined': Icons.functions_outlined, - 'g_mobiledata': Icons.g_mobiledata, - 'g_mobiledata_sharp': Icons.g_mobiledata_sharp, - 'g_mobiledata_rounded': Icons.g_mobiledata_rounded, - 'g_mobiledata_outlined': Icons.g_mobiledata_outlined, - 'g_translate': Icons.g_translate, - 'g_translate_sharp': Icons.g_translate_sharp, - 'g_translate_rounded': Icons.g_translate_rounded, - 'g_translate_outlined': Icons.g_translate_outlined, - 'gamepad': Icons.gamepad, - 'gamepad_sharp': Icons.gamepad_sharp, - 'gamepad_rounded': Icons.gamepad_rounded, - 'gamepad_outlined': Icons.gamepad_outlined, - 'games': Icons.games, - 'games_sharp': Icons.games_sharp, - 'games_rounded': Icons.games_rounded, - 'games_outlined': Icons.games_outlined, - 'garage': Icons.garage, - 'garage_sharp': Icons.garage_sharp, - 'garage_rounded': Icons.garage_rounded, - 'garage_outlined': Icons.garage_outlined, - 'gavel': Icons.gavel, - 'gavel_sharp': Icons.gavel_sharp, - 'gavel_rounded': Icons.gavel_rounded, - 'gavel_outlined': Icons.gavel_outlined, - 'gesture': Icons.gesture, - 'gesture_sharp': Icons.gesture_sharp, - 'gesture_rounded': Icons.gesture_rounded, - 'gesture_outlined': Icons.gesture_outlined, - 'get_app': Icons.get_app, - 'get_app_sharp': Icons.get_app_sharp, - 'get_app_rounded': Icons.get_app_rounded, - 'get_app_outlined': Icons.get_app_outlined, - 'gif': Icons.gif, - 'gif_sharp': Icons.gif_sharp, - 'gif_rounded': Icons.gif_rounded, - 'gif_outlined': Icons.gif_outlined, - 'gite': Icons.gite, - 'gite_sharp': Icons.gite_sharp, - 'gite_rounded': Icons.gite_rounded, - 'gite_outlined': Icons.gite_outlined, - 'golf_course': Icons.golf_course, - 'golf_course_sharp': Icons.golf_course_sharp, - 'golf_course_rounded': Icons.golf_course_rounded, - 'golf_course_outlined': Icons.golf_course_outlined, - 'gpp_bad': Icons.gpp_bad, - 'gpp_bad_sharp': Icons.gpp_bad_sharp, - 'gpp_bad_rounded': Icons.gpp_bad_rounded, - 'gpp_bad_outlined': Icons.gpp_bad_outlined, - 'gpp_good': Icons.gpp_good, - 'gpp_good_sharp': Icons.gpp_good_sharp, - 'gpp_good_rounded': Icons.gpp_good_rounded, - 'gpp_good_outlined': Icons.gpp_good_outlined, - 'gpp_maybe': Icons.gpp_maybe, - 'gpp_maybe_sharp': Icons.gpp_maybe_sharp, - 'gpp_maybe_rounded': Icons.gpp_maybe_rounded, - 'gpp_maybe_outlined': Icons.gpp_maybe_outlined, - 'gps_fixed': Icons.gps_fixed, - 'gps_fixed_sharp': Icons.gps_fixed_sharp, - 'gps_fixed_rounded': Icons.gps_fixed_rounded, - 'gps_fixed_outlined': Icons.gps_fixed_outlined, - 'gps_not_fixed': Icons.gps_not_fixed, - 'gps_not_fixed_sharp': Icons.gps_not_fixed_sharp, - 'gps_not_fixed_rounded': Icons.gps_not_fixed_rounded, - 'gps_not_fixed_outlined': Icons.gps_not_fixed_outlined, - 'gps_off': Icons.gps_off, - 'gps_off_sharp': Icons.gps_off_sharp, - 'gps_off_rounded': Icons.gps_off_rounded, - 'gps_off_outlined': Icons.gps_off_outlined, - 'grade': Icons.grade, - 'grade_sharp': Icons.grade_sharp, - 'grade_rounded': Icons.grade_rounded, - 'grade_outlined': Icons.grade_outlined, - 'gradient': Icons.gradient, - 'gradient_sharp': Icons.gradient_sharp, - 'gradient_rounded': Icons.gradient_rounded, - 'gradient_outlined': Icons.gradient_outlined, - 'grading': Icons.grading, - 'grading_sharp': Icons.grading_sharp, - 'grading_rounded': Icons.grading_rounded, - 'grading_outlined': Icons.grading_outlined, - 'grain': Icons.grain, - 'grain_sharp': Icons.grain_sharp, - 'grain_rounded': Icons.grain_rounded, - 'grain_outlined': Icons.grain_outlined, - 'graphic_eq': Icons.graphic_eq, - 'graphic_eq_sharp': Icons.graphic_eq_sharp, - 'graphic_eq_rounded': Icons.graphic_eq_rounded, - 'graphic_eq_outlined': Icons.graphic_eq_outlined, - 'grass': Icons.grass, - 'grass_sharp': Icons.grass_sharp, - 'grass_rounded': Icons.grass_rounded, - 'grass_outlined': Icons.grass_outlined, - 'grid_3x3': Icons.grid_3x3, - 'grid_3x3_sharp': Icons.grid_3x3_sharp, - 'grid_3x3_rounded': Icons.grid_3x3_rounded, - 'grid_3x3_outlined': Icons.grid_3x3_outlined, - 'grid_4x4': Icons.grid_4x4, - 'grid_4x4_sharp': Icons.grid_4x4_sharp, - 'grid_4x4_rounded': Icons.grid_4x4_rounded, - 'grid_4x4_outlined': Icons.grid_4x4_outlined, - 'grid_goldenratio': Icons.grid_goldenratio, - 'grid_goldenratio_sharp': Icons.grid_goldenratio_sharp, - 'grid_goldenratio_rounded': Icons.grid_goldenratio_rounded, - 'grid_goldenratio_outlined': Icons.grid_goldenratio_outlined, - 'grid_off': Icons.grid_off, - 'grid_off_sharp': Icons.grid_off_sharp, - 'grid_off_rounded': Icons.grid_off_rounded, - 'grid_off_outlined': Icons.grid_off_outlined, - 'grid_on': Icons.grid_on, - 'grid_on_sharp': Icons.grid_on_sharp, - 'grid_on_rounded': Icons.grid_on_rounded, - 'grid_on_outlined': Icons.grid_on_outlined, - 'grid_view': Icons.grid_view, - 'grid_view_sharp': Icons.grid_view_sharp, - 'grid_view_rounded': Icons.grid_view_rounded, - 'grid_view_outlined': Icons.grid_view_outlined, - 'group': Icons.group, - 'group_sharp': Icons.group_sharp, - 'group_rounded': Icons.group_rounded, - 'group_outlined': Icons.group_outlined, - 'group_add': Icons.group_add, - 'group_add_sharp': Icons.group_add_sharp, - 'group_add_rounded': Icons.group_add_rounded, - 'group_add_outlined': Icons.group_add_outlined, - 'group_work': Icons.group_work, - 'group_work_sharp': Icons.group_work_sharp, - 'group_work_rounded': Icons.group_work_rounded, - 'group_work_outlined': Icons.group_work_outlined, - 'groups': Icons.groups, - 'groups_sharp': Icons.groups_sharp, - 'groups_rounded': Icons.groups_rounded, - 'groups_outlined': Icons.groups_outlined, - 'h_mobiledata': Icons.h_mobiledata, - 'h_mobiledata_sharp': Icons.h_mobiledata_sharp, - 'h_mobiledata_rounded': Icons.h_mobiledata_rounded, - 'h_mobiledata_outlined': Icons.h_mobiledata_outlined, - 'h_plus_mobiledata': Icons.h_plus_mobiledata, - 'h_plus_mobiledata_sharp': Icons.h_plus_mobiledata_sharp, - 'h_plus_mobiledata_rounded': Icons.h_plus_mobiledata_rounded, - 'h_plus_mobiledata_outlined': Icons.h_plus_mobiledata_outlined, - 'hail': Icons.hail, - 'hail_sharp': Icons.hail_sharp, - 'hail_rounded': Icons.hail_rounded, - 'hail_outlined': Icons.hail_outlined, - 'handyman': Icons.handyman, - 'handyman_sharp': Icons.handyman_sharp, - 'handyman_rounded': Icons.handyman_rounded, - 'handyman_outlined': Icons.handyman_outlined, - 'hardware': Icons.hardware, - 'hardware_sharp': Icons.hardware_sharp, - 'hardware_rounded': Icons.hardware_rounded, - 'hardware_outlined': Icons.hardware_outlined, - 'hd': Icons.hd, - 'hd_sharp': Icons.hd_sharp, - 'hd_rounded': Icons.hd_rounded, - 'hd_outlined': Icons.hd_outlined, - 'hdr_auto': Icons.hdr_auto, - 'hdr_auto_sharp': Icons.hdr_auto_sharp, - 'hdr_auto_rounded': Icons.hdr_auto_rounded, - 'hdr_auto_outlined': Icons.hdr_auto_outlined, - 'hdr_auto_select': Icons.hdr_auto_select, - 'hdr_auto_select_sharp': Icons.hdr_auto_select_sharp, - 'hdr_auto_select_rounded': Icons.hdr_auto_select_rounded, - 'hdr_auto_select_outlined': Icons.hdr_auto_select_outlined, - 'hdr_enhanced_select': Icons.hdr_enhanced_select, - 'hdr_enhanced_select_sharp': Icons.hdr_enhanced_select_sharp, - 'hdr_enhanced_select_rounded': Icons.hdr_enhanced_select_rounded, - 'hdr_enhanced_select_outlined': Icons.hdr_enhanced_select_outlined, - 'hdr_off': Icons.hdr_off, - 'hdr_off_sharp': Icons.hdr_off_sharp, - 'hdr_off_rounded': Icons.hdr_off_rounded, - 'hdr_off_outlined': Icons.hdr_off_outlined, - 'hdr_off_select': Icons.hdr_off_select, - 'hdr_off_select_sharp': Icons.hdr_off_select_sharp, - 'hdr_off_select_rounded': Icons.hdr_off_select_rounded, - 'hdr_off_select_outlined': Icons.hdr_off_select_outlined, - 'hdr_on': Icons.hdr_on, - 'hdr_on_sharp': Icons.hdr_on_sharp, - 'hdr_on_rounded': Icons.hdr_on_rounded, - 'hdr_on_outlined': Icons.hdr_on_outlined, - 'hdr_on_select': Icons.hdr_on_select, - 'hdr_on_select_sharp': Icons.hdr_on_select_sharp, - 'hdr_on_select_rounded': Icons.hdr_on_select_rounded, - 'hdr_on_select_outlined': Icons.hdr_on_select_outlined, - 'hdr_plus': Icons.hdr_plus, - 'hdr_plus_sharp': Icons.hdr_plus_sharp, - 'hdr_plus_rounded': Icons.hdr_plus_rounded, - 'hdr_plus_outlined': Icons.hdr_plus_outlined, - 'hdr_strong': Icons.hdr_strong, - 'hdr_strong_sharp': Icons.hdr_strong_sharp, - 'hdr_strong_rounded': Icons.hdr_strong_rounded, - 'hdr_strong_outlined': Icons.hdr_strong_outlined, - 'hdr_weak': Icons.hdr_weak, - 'hdr_weak_sharp': Icons.hdr_weak_sharp, - 'hdr_weak_rounded': Icons.hdr_weak_rounded, - 'hdr_weak_outlined': Icons.hdr_weak_outlined, - 'headphones': Icons.headphones, - 'headphones_sharp': Icons.headphones_sharp, - 'headphones_rounded': Icons.headphones_rounded, - 'headphones_outlined': Icons.headphones_outlined, - 'headphones_battery': Icons.headphones_battery, - 'headphones_battery_sharp': Icons.headphones_battery_sharp, - 'headphones_battery_rounded': Icons.headphones_battery_rounded, - 'headphones_battery_outlined': Icons.headphones_battery_outlined, - 'headset': Icons.headset, - 'headset_sharp': Icons.headset_sharp, - 'headset_rounded': Icons.headset_rounded, - 'headset_outlined': Icons.headset_outlined, - 'headset_mic': Icons.headset_mic, - 'headset_mic_sharp': Icons.headset_mic_sharp, - 'headset_mic_rounded': Icons.headset_mic_rounded, - 'headset_mic_outlined': Icons.headset_mic_outlined, - 'headset_off': Icons.headset_off, - 'headset_off_sharp': Icons.headset_off_sharp, - 'headset_off_rounded': Icons.headset_off_rounded, - 'headset_off_outlined': Icons.headset_off_outlined, - 'healing': Icons.healing, - 'healing_sharp': Icons.healing_sharp, - 'healing_rounded': Icons.healing_rounded, - 'healing_outlined': Icons.healing_outlined, - 'health_and_safety': Icons.health_and_safety, - 'health_and_safety_sharp': Icons.health_and_safety_sharp, - 'health_and_safety_rounded': Icons.health_and_safety_rounded, - 'health_and_safety_outlined': Icons.health_and_safety_outlined, - 'hearing': Icons.hearing, - 'hearing_sharp': Icons.hearing_sharp, - 'hearing_rounded': Icons.hearing_rounded, - 'hearing_outlined': Icons.hearing_outlined, - 'hearing_disabled': Icons.hearing_disabled, - 'hearing_disabled_sharp': Icons.hearing_disabled_sharp, - 'hearing_disabled_rounded': Icons.hearing_disabled_rounded, - 'hearing_disabled_outlined': Icons.hearing_disabled_outlined, - 'height': Icons.height, - 'height_sharp': Icons.height_sharp, - 'height_rounded': Icons.height_rounded, - 'height_outlined': Icons.height_outlined, - 'help': Icons.help, - 'help_sharp': Icons.help_sharp, - 'help_rounded': Icons.help_rounded, - 'help_outlined': Icons.help_outlined, - 'help_center': Icons.help_center, - 'help_center_sharp': Icons.help_center_sharp, - 'help_center_rounded': Icons.help_center_rounded, - 'help_center_outlined': Icons.help_center_outlined, - 'help_outline': Icons.help_outline, - 'help_outline_sharp': Icons.help_outline_sharp, - 'help_outline_rounded': Icons.help_outline_rounded, - 'help_outline_outlined': Icons.help_outline_outlined, - 'hevc': Icons.hevc, - 'hevc_sharp': Icons.hevc_sharp, - 'hevc_rounded': Icons.hevc_rounded, - 'hevc_outlined': Icons.hevc_outlined, - 'hide_image': Icons.hide_image, - 'hide_image_sharp': Icons.hide_image_sharp, - 'hide_image_rounded': Icons.hide_image_rounded, - 'hide_image_outlined': Icons.hide_image_outlined, - 'hide_source': Icons.hide_source, - 'hide_source_sharp': Icons.hide_source_sharp, - 'hide_source_rounded': Icons.hide_source_rounded, - 'hide_source_outlined': Icons.hide_source_outlined, - 'high_quality': Icons.high_quality, - 'high_quality_sharp': Icons.high_quality_sharp, - 'high_quality_rounded': Icons.high_quality_rounded, - 'high_quality_outlined': Icons.high_quality_outlined, - 'highlight': Icons.highlight, - 'highlight_sharp': Icons.highlight_sharp, - 'highlight_rounded': Icons.highlight_rounded, - 'highlight_outlined': Icons.highlight_outlined, - 'highlight_alt': Icons.highlight_alt, - 'highlight_alt_sharp': Icons.highlight_alt_sharp, - 'highlight_alt_rounded': Icons.highlight_alt_rounded, - 'highlight_alt_outlined': Icons.highlight_alt_outlined, - 'highlight_off': Icons.highlight_off, - 'highlight_off_sharp': Icons.highlight_off_sharp, - 'highlight_off_rounded': Icons.highlight_off_rounded, - 'highlight_off_outlined': Icons.highlight_off_outlined, - 'highlight_remove': Icons.highlight_remove, - 'highlight_remove_sharp': Icons.highlight_remove_sharp, - 'highlight_remove_rounded': Icons.highlight_remove_rounded, - 'highlight_remove_outlined': Icons.highlight_remove_outlined, - 'hiking': Icons.hiking, - 'hiking_sharp': Icons.hiking_sharp, - 'hiking_rounded': Icons.hiking_rounded, - 'hiking_outlined': Icons.hiking_outlined, - 'history': Icons.history, - 'history_sharp': Icons.history_sharp, - 'history_rounded': Icons.history_rounded, - 'history_outlined': Icons.history_outlined, - 'history_edu': Icons.history_edu, - 'history_edu_sharp': Icons.history_edu_sharp, - 'history_edu_rounded': Icons.history_edu_rounded, - 'history_edu_outlined': Icons.history_edu_outlined, - 'history_toggle_off': Icons.history_toggle_off, - 'history_toggle_off_sharp': Icons.history_toggle_off_sharp, - 'history_toggle_off_rounded': Icons.history_toggle_off_rounded, - 'history_toggle_off_outlined': Icons.history_toggle_off_outlined, - 'holiday_village': Icons.holiday_village, - 'holiday_village_sharp': Icons.holiday_village_sharp, - 'holiday_village_rounded': Icons.holiday_village_rounded, - 'holiday_village_outlined': Icons.holiday_village_outlined, - 'home': Icons.home, - 'home_sharp': Icons.home_sharp, - 'home_rounded': Icons.home_rounded, - 'home_outlined': Icons.home_outlined, - 'home_filled': Icons.home_filled, - 'home_max': Icons.home_max, - 'home_max_sharp': Icons.home_max_sharp, - 'home_max_rounded': Icons.home_max_rounded, - 'home_max_outlined': Icons.home_max_outlined, - 'home_mini': Icons.home_mini, - 'home_mini_sharp': Icons.home_mini_sharp, - 'home_mini_rounded': Icons.home_mini_rounded, - 'home_mini_outlined': Icons.home_mini_outlined, - 'home_repair_service': Icons.home_repair_service, - 'home_repair_service_sharp': Icons.home_repair_service_sharp, - 'home_repair_service_rounded': Icons.home_repair_service_rounded, - 'home_repair_service_outlined': Icons.home_repair_service_outlined, - 'home_work': Icons.home_work, - 'home_work_sharp': Icons.home_work_sharp, - 'home_work_rounded': Icons.home_work_rounded, - 'home_work_outlined': Icons.home_work_outlined, - 'horizontal_distribute': Icons.horizontal_distribute, - 'horizontal_distribute_sharp': Icons.horizontal_distribute_sharp, - 'horizontal_distribute_rounded': Icons.horizontal_distribute_rounded, - 'horizontal_distribute_outlined': Icons.horizontal_distribute_outlined, - 'horizontal_rule': Icons.horizontal_rule, - 'horizontal_rule_sharp': Icons.horizontal_rule_sharp, - 'horizontal_rule_rounded': Icons.horizontal_rule_rounded, - 'horizontal_rule_outlined': Icons.horizontal_rule_outlined, - 'horizontal_split': Icons.horizontal_split, - 'horizontal_split_sharp': Icons.horizontal_split_sharp, - 'horizontal_split_rounded': Icons.horizontal_split_rounded, - 'horizontal_split_outlined': Icons.horizontal_split_outlined, - 'hot_tub': Icons.hot_tub, - 'hot_tub_sharp': Icons.hot_tub_sharp, - 'hot_tub_rounded': Icons.hot_tub_rounded, - 'hot_tub_outlined': Icons.hot_tub_outlined, - 'hotel': Icons.hotel, - 'hotel_sharp': Icons.hotel_sharp, - 'hotel_rounded': Icons.hotel_rounded, - 'hotel_outlined': Icons.hotel_outlined, - 'hourglass_bottom': Icons.hourglass_bottom, - 'hourglass_bottom_sharp': Icons.hourglass_bottom_sharp, - 'hourglass_bottom_rounded': Icons.hourglass_bottom_rounded, - 'hourglass_bottom_outlined': Icons.hourglass_bottom_outlined, - 'hourglass_disabled': Icons.hourglass_disabled, - 'hourglass_disabled_sharp': Icons.hourglass_disabled_sharp, - 'hourglass_disabled_rounded': Icons.hourglass_disabled_rounded, - 'hourglass_disabled_outlined': Icons.hourglass_disabled_outlined, - 'hourglass_empty': Icons.hourglass_empty, - 'hourglass_empty_sharp': Icons.hourglass_empty_sharp, - 'hourglass_empty_rounded': Icons.hourglass_empty_rounded, - 'hourglass_empty_outlined': Icons.hourglass_empty_outlined, - 'hourglass_full': Icons.hourglass_full, - 'hourglass_full_sharp': Icons.hourglass_full_sharp, - 'hourglass_full_rounded': Icons.hourglass_full_rounded, - 'hourglass_full_outlined': Icons.hourglass_full_outlined, - 'hourglass_top': Icons.hourglass_top, - 'hourglass_top_sharp': Icons.hourglass_top_sharp, - 'hourglass_top_rounded': Icons.hourglass_top_rounded, - 'hourglass_top_outlined': Icons.hourglass_top_outlined, - 'house': Icons.house, - 'house_sharp': Icons.house_sharp, - 'house_rounded': Icons.house_rounded, - 'house_outlined': Icons.house_outlined, - 'house_siding': Icons.house_siding, - 'house_siding_sharp': Icons.house_siding_sharp, - 'house_siding_rounded': Icons.house_siding_rounded, - 'house_siding_outlined': Icons.house_siding_outlined, - 'houseboat': Icons.houseboat, - 'houseboat_sharp': Icons.houseboat_sharp, - 'houseboat_rounded': Icons.houseboat_rounded, - 'houseboat_outlined': Icons.houseboat_outlined, - 'how_to_reg': Icons.how_to_reg, - 'how_to_reg_sharp': Icons.how_to_reg_sharp, - 'how_to_reg_rounded': Icons.how_to_reg_rounded, - 'how_to_reg_outlined': Icons.how_to_reg_outlined, - 'how_to_vote': Icons.how_to_vote, - 'how_to_vote_sharp': Icons.how_to_vote_sharp, - 'how_to_vote_rounded': Icons.how_to_vote_rounded, - 'how_to_vote_outlined': Icons.how_to_vote_outlined, - 'http': Icons.http, - 'http_sharp': Icons.http_sharp, - 'http_rounded': Icons.http_rounded, - 'http_outlined': Icons.http_outlined, - 'https': Icons.https, - 'https_sharp': Icons.https_sharp, - 'https_rounded': Icons.https_rounded, - 'https_outlined': Icons.https_outlined, - 'hvac': Icons.hvac, - 'hvac_sharp': Icons.hvac_sharp, - 'hvac_rounded': Icons.hvac_rounded, - 'hvac_outlined': Icons.hvac_outlined, - 'ice_skating': Icons.ice_skating, - 'ice_skating_sharp': Icons.ice_skating_sharp, - 'ice_skating_rounded': Icons.ice_skating_rounded, - 'ice_skating_outlined': Icons.ice_skating_outlined, - 'icecream': Icons.icecream, - 'icecream_sharp': Icons.icecream_sharp, - 'icecream_rounded': Icons.icecream_rounded, - 'icecream_outlined': Icons.icecream_outlined, - 'image': Icons.image, - 'image_sharp': Icons.image_sharp, - 'image_rounded': Icons.image_rounded, - 'image_outlined': Icons.image_outlined, - 'image_aspect_ratio': Icons.image_aspect_ratio, - 'image_aspect_ratio_sharp': Icons.image_aspect_ratio_sharp, - 'image_aspect_ratio_rounded': Icons.image_aspect_ratio_rounded, - 'image_aspect_ratio_outlined': Icons.image_aspect_ratio_outlined, - 'image_not_supported': Icons.image_not_supported, - 'image_not_supported_sharp': Icons.image_not_supported_sharp, - 'image_not_supported_rounded': Icons.image_not_supported_rounded, - 'image_not_supported_outlined': Icons.image_not_supported_outlined, - 'image_search': Icons.image_search, - 'image_search_sharp': Icons.image_search_sharp, - 'image_search_rounded': Icons.image_search_rounded, - 'image_search_outlined': Icons.image_search_outlined, - 'imagesearch_roller': Icons.imagesearch_roller, - 'imagesearch_roller_sharp': Icons.imagesearch_roller_sharp, - 'imagesearch_roller_rounded': Icons.imagesearch_roller_rounded, - 'imagesearch_roller_outlined': Icons.imagesearch_roller_outlined, - 'import_contacts': Icons.import_contacts, - 'import_contacts_sharp': Icons.import_contacts_sharp, - 'import_contacts_rounded': Icons.import_contacts_rounded, - 'import_contacts_outlined': Icons.import_contacts_outlined, - 'import_export': Icons.import_export, - 'import_export_sharp': Icons.import_export_sharp, - 'import_export_rounded': Icons.import_export_rounded, - 'import_export_outlined': Icons.import_export_outlined, - 'important_devices': Icons.important_devices, - 'important_devices_sharp': Icons.important_devices_sharp, - 'important_devices_rounded': Icons.important_devices_rounded, - 'important_devices_outlined': Icons.important_devices_outlined, - 'inbox': Icons.inbox, - 'inbox_sharp': Icons.inbox_sharp, - 'inbox_rounded': Icons.inbox_rounded, - 'inbox_outlined': Icons.inbox_outlined, - 'indeterminate_check_box': Icons.indeterminate_check_box, - 'indeterminate_check_box_sharp': Icons.indeterminate_check_box_sharp, - 'indeterminate_check_box_rounded': - Icons.indeterminate_check_box_rounded, - 'indeterminate_check_box_outlined': - Icons.indeterminate_check_box_outlined, - 'info': Icons.info, - 'info_sharp': Icons.info_sharp, - 'info_rounded': Icons.info_rounded, - 'info_outlined': Icons.info_outlined, - 'info_outline': Icons.info_outline, - 'info_outline_sharp': Icons.info_outline_sharp, - 'info_outline_rounded': Icons.info_outline_rounded, - 'input': Icons.input, - 'input_sharp': Icons.input_sharp, - 'input_rounded': Icons.input_rounded, - 'input_outlined': Icons.input_outlined, - 'insert_chart': Icons.insert_chart, - 'insert_chart_sharp': Icons.insert_chart_sharp, - 'insert_chart_rounded': Icons.insert_chart_rounded, - 'insert_chart_outlined': Icons.insert_chart_outlined, - 'insert_chart_outlined_sharp': Icons.insert_chart_outlined_sharp, - 'insert_chart_outlined_rounded': Icons.insert_chart_outlined_rounded, - 'insert_chart_outlined_outlined': Icons.insert_chart_outlined_outlined, - 'insert_comment': Icons.insert_comment, - 'insert_comment_sharp': Icons.insert_comment_sharp, - 'insert_comment_rounded': Icons.insert_comment_rounded, - 'insert_comment_outlined': Icons.insert_comment_outlined, - 'insert_drive_file': Icons.insert_drive_file, - 'insert_drive_file_sharp': Icons.insert_drive_file_sharp, - 'insert_drive_file_rounded': Icons.insert_drive_file_rounded, - 'insert_drive_file_outlined': Icons.insert_drive_file_outlined, - 'insert_emoticon': Icons.insert_emoticon, - 'insert_emoticon_sharp': Icons.insert_emoticon_sharp, - 'insert_emoticon_rounded': Icons.insert_emoticon_rounded, - 'insert_emoticon_outlined': Icons.insert_emoticon_outlined, - 'insert_invitation': Icons.insert_invitation, - 'insert_invitation_sharp': Icons.insert_invitation_sharp, - 'insert_invitation_rounded': Icons.insert_invitation_rounded, - 'insert_invitation_outlined': Icons.insert_invitation_outlined, - 'insert_link': Icons.insert_link, - 'insert_link_sharp': Icons.insert_link_sharp, - 'insert_link_rounded': Icons.insert_link_rounded, - 'insert_link_outlined': Icons.insert_link_outlined, - 'insert_photo': Icons.insert_photo, - 'insert_photo_sharp': Icons.insert_photo_sharp, - 'insert_photo_rounded': Icons.insert_photo_rounded, - 'insert_photo_outlined': Icons.insert_photo_outlined, - 'insights': Icons.insights, - 'insights_sharp': Icons.insights_sharp, - 'insights_rounded': Icons.insights_rounded, - 'insights_outlined': Icons.insights_outlined, - 'integration_instructions': Icons.integration_instructions, - 'integration_instructions_sharp': Icons.integration_instructions_sharp, - 'integration_instructions_rounded': - Icons.integration_instructions_rounded, - 'integration_instructions_outlined': - Icons.integration_instructions_outlined, - 'inventory': Icons.inventory, - 'inventory_sharp': Icons.inventory_sharp, - 'inventory_rounded': Icons.inventory_rounded, - 'inventory_outlined': Icons.inventory_outlined, - 'inventory_2': Icons.inventory_2, - 'inventory_2_sharp': Icons.inventory_2_sharp, - 'inventory_2_rounded': Icons.inventory_2_rounded, - 'inventory_2_outlined': Icons.inventory_2_outlined, - 'invert_colors': Icons.invert_colors, - 'invert_colors_sharp': Icons.invert_colors_sharp, - 'invert_colors_rounded': Icons.invert_colors_rounded, - 'invert_colors_outlined': Icons.invert_colors_outlined, - 'invert_colors_off': Icons.invert_colors_off, - 'invert_colors_off_sharp': Icons.invert_colors_off_sharp, - 'invert_colors_off_rounded': Icons.invert_colors_off_rounded, - 'invert_colors_off_outlined': Icons.invert_colors_off_outlined, - 'invert_colors_on': Icons.invert_colors_on, - 'invert_colors_on_sharp': Icons.invert_colors_on_sharp, - 'invert_colors_on_rounded': Icons.invert_colors_on_rounded, - 'invert_colors_on_outlined': Icons.invert_colors_on_outlined, - 'ios_share': Icons.ios_share, - 'ios_share_sharp': Icons.ios_share_sharp, - 'ios_share_rounded': Icons.ios_share_rounded, - 'ios_share_outlined': Icons.ios_share_outlined, - 'iron': Icons.iron, - 'iron_sharp': Icons.iron_sharp, - 'iron_rounded': Icons.iron_rounded, - 'iron_outlined': Icons.iron_outlined, - 'iso': Icons.iso, - 'iso_sharp': Icons.iso_sharp, - 'iso_rounded': Icons.iso_rounded, - 'iso_outlined': Icons.iso_outlined, - 'kayaking': Icons.kayaking, - 'kayaking_sharp': Icons.kayaking_sharp, - 'kayaking_rounded': Icons.kayaking_rounded, - 'kayaking_outlined': Icons.kayaking_outlined, - 'keyboard': Icons.keyboard, - 'keyboard_sharp': Icons.keyboard_sharp, - 'keyboard_rounded': Icons.keyboard_rounded, - 'keyboard_outlined': Icons.keyboard_outlined, - 'keyboard_alt': Icons.keyboard_alt, - 'keyboard_alt_sharp': Icons.keyboard_alt_sharp, - 'keyboard_alt_rounded': Icons.keyboard_alt_rounded, - 'keyboard_alt_outlined': Icons.keyboard_alt_outlined, - 'keyboard_arrow_down': Icons.keyboard_arrow_down, - 'keyboard_arrow_down_sharp': Icons.keyboard_arrow_down_sharp, - 'keyboard_arrow_down_rounded': Icons.keyboard_arrow_down_rounded, - 'keyboard_arrow_down_outlined': Icons.keyboard_arrow_down_outlined, - 'keyboard_arrow_left': Icons.keyboard_arrow_left, - 'keyboard_arrow_left_sharp': Icons.keyboard_arrow_left_sharp, - 'keyboard_arrow_left_rounded': Icons.keyboard_arrow_left_rounded, - 'keyboard_arrow_left_outlined': Icons.keyboard_arrow_left_outlined, - 'keyboard_arrow_right': Icons.keyboard_arrow_right, - 'keyboard_arrow_right_sharp': Icons.keyboard_arrow_right_sharp, - 'keyboard_arrow_right_rounded': Icons.keyboard_arrow_right_rounded, - 'keyboard_arrow_right_outlined': Icons.keyboard_arrow_right_outlined, - 'keyboard_arrow_up': Icons.keyboard_arrow_up, - 'keyboard_arrow_up_sharp': Icons.keyboard_arrow_up_sharp, - 'keyboard_arrow_up_rounded': Icons.keyboard_arrow_up_rounded, - 'keyboard_arrow_up_outlined': Icons.keyboard_arrow_up_outlined, - 'keyboard_backspace': Icons.keyboard_backspace, - 'keyboard_backspace_sharp': Icons.keyboard_backspace_sharp, - 'keyboard_backspace_rounded': Icons.keyboard_backspace_rounded, - 'keyboard_backspace_outlined': Icons.keyboard_backspace_outlined, - 'keyboard_capslock': Icons.keyboard_capslock, - 'keyboard_capslock_sharp': Icons.keyboard_capslock_sharp, - 'keyboard_capslock_rounded': Icons.keyboard_capslock_rounded, - 'keyboard_capslock_outlined': Icons.keyboard_capslock_outlined, - 'keyboard_control': Icons.keyboard_control, - 'keyboard_control_sharp': Icons.keyboard_control_sharp, - 'keyboard_control_rounded': Icons.keyboard_control_rounded, - 'keyboard_control_outlined': Icons.keyboard_control_outlined, - 'keyboard_hide': Icons.keyboard_hide, - 'keyboard_hide_sharp': Icons.keyboard_hide_sharp, - 'keyboard_hide_rounded': Icons.keyboard_hide_rounded, - 'keyboard_hide_outlined': Icons.keyboard_hide_outlined, - 'keyboard_return': Icons.keyboard_return, - 'keyboard_return_sharp': Icons.keyboard_return_sharp, - 'keyboard_return_rounded': Icons.keyboard_return_rounded, - 'keyboard_return_outlined': Icons.keyboard_return_outlined, - 'keyboard_tab': Icons.keyboard_tab, - 'keyboard_tab_sharp': Icons.keyboard_tab_sharp, - 'keyboard_tab_rounded': Icons.keyboard_tab_rounded, - 'keyboard_tab_outlined': Icons.keyboard_tab_outlined, - 'keyboard_voice': Icons.keyboard_voice, - 'keyboard_voice_sharp': Icons.keyboard_voice_sharp, - 'keyboard_voice_rounded': Icons.keyboard_voice_rounded, - 'keyboard_voice_outlined': Icons.keyboard_voice_outlined, - 'king_bed': Icons.king_bed, - 'king_bed_sharp': Icons.king_bed_sharp, - 'king_bed_rounded': Icons.king_bed_rounded, - 'king_bed_outlined': Icons.king_bed_outlined, - 'kitchen': Icons.kitchen, - 'kitchen_sharp': Icons.kitchen_sharp, - 'kitchen_rounded': Icons.kitchen_rounded, - 'kitchen_outlined': Icons.kitchen_outlined, - 'kitesurfing': Icons.kitesurfing, - 'kitesurfing_sharp': Icons.kitesurfing_sharp, - 'kitesurfing_rounded': Icons.kitesurfing_rounded, - 'kitesurfing_outlined': Icons.kitesurfing_outlined, - 'label': Icons.label, - 'label_sharp': Icons.label_sharp, - 'label_rounded': Icons.label_rounded, - 'label_outlined': Icons.label_outlined, - 'label_important': Icons.label_important, - 'label_important_sharp': Icons.label_important_sharp, - 'label_important_rounded': Icons.label_important_rounded, - 'label_important_outlined': Icons.label_important_outlined, - 'label_important_outline': Icons.label_important_outline, - 'label_important_outline_sharp': Icons.label_important_outline_sharp, - 'label_important_outline_rounded': - Icons.label_important_outline_rounded, - 'label_off': Icons.label_off, - 'label_off_sharp': Icons.label_off_sharp, - 'label_off_rounded': Icons.label_off_rounded, - 'label_off_outlined': Icons.label_off_outlined, - 'label_outline': Icons.label_outline, - 'label_outline_sharp': Icons.label_outline_sharp, - 'label_outline_rounded': Icons.label_outline_rounded, - 'landscape': Icons.landscape, - 'landscape_sharp': Icons.landscape_sharp, - 'landscape_rounded': Icons.landscape_rounded, - 'landscape_outlined': Icons.landscape_outlined, - 'language': Icons.language, - 'language_sharp': Icons.language_sharp, - 'language_rounded': Icons.language_rounded, - 'language_outlined': Icons.language_outlined, - 'laptop': Icons.laptop, - 'laptop_sharp': Icons.laptop_sharp, - 'laptop_rounded': Icons.laptop_rounded, - 'laptop_outlined': Icons.laptop_outlined, - 'laptop_chromebook': Icons.laptop_chromebook, - 'laptop_chromebook_sharp': Icons.laptop_chromebook_sharp, - 'laptop_chromebook_rounded': Icons.laptop_chromebook_rounded, - 'laptop_chromebook_outlined': Icons.laptop_chromebook_outlined, - 'laptop_mac': Icons.laptop_mac, - 'laptop_mac_sharp': Icons.laptop_mac_sharp, - 'laptop_mac_rounded': Icons.laptop_mac_rounded, - 'laptop_mac_outlined': Icons.laptop_mac_outlined, - 'laptop_windows': Icons.laptop_windows, - 'laptop_windows_sharp': Icons.laptop_windows_sharp, - 'laptop_windows_rounded': Icons.laptop_windows_rounded, - 'laptop_windows_outlined': Icons.laptop_windows_outlined, - 'last_page': Icons.last_page, - 'last_page_sharp': Icons.last_page_sharp, - 'last_page_rounded': Icons.last_page_rounded, - 'last_page_outlined': Icons.last_page_outlined, - 'launch': Icons.launch, - 'launch_sharp': Icons.launch_sharp, - 'launch_rounded': Icons.launch_rounded, - 'launch_outlined': Icons.launch_outlined, - 'layers': Icons.layers, - 'layers_sharp': Icons.layers_sharp, - 'layers_rounded': Icons.layers_rounded, - 'layers_outlined': Icons.layers_outlined, - 'layers_clear': Icons.layers_clear, - 'layers_clear_sharp': Icons.layers_clear_sharp, - 'layers_clear_rounded': Icons.layers_clear_rounded, - 'layers_clear_outlined': Icons.layers_clear_outlined, - 'leaderboard': Icons.leaderboard, - 'leaderboard_sharp': Icons.leaderboard_sharp, - 'leaderboard_rounded': Icons.leaderboard_rounded, - 'leaderboard_outlined': Icons.leaderboard_outlined, - 'leak_add': Icons.leak_add, - 'leak_add_sharp': Icons.leak_add_sharp, - 'leak_add_rounded': Icons.leak_add_rounded, - 'leak_add_outlined': Icons.leak_add_outlined, - 'leak_remove': Icons.leak_remove, - 'leak_remove_sharp': Icons.leak_remove_sharp, - 'leak_remove_rounded': Icons.leak_remove_rounded, - 'leak_remove_outlined': Icons.leak_remove_outlined, - 'leave_bags_at_home': Icons.leave_bags_at_home, - 'leave_bags_at_home_sharp': Icons.leave_bags_at_home_sharp, - 'leave_bags_at_home_rounded': Icons.leave_bags_at_home_rounded, - 'leave_bags_at_home_outlined': Icons.leave_bags_at_home_outlined, - 'legend_toggle': Icons.legend_toggle, - 'legend_toggle_sharp': Icons.legend_toggle_sharp, - 'legend_toggle_rounded': Icons.legend_toggle_rounded, - 'legend_toggle_outlined': Icons.legend_toggle_outlined, - 'lens': Icons.lens, - 'lens_sharp': Icons.lens_sharp, - 'lens_rounded': Icons.lens_rounded, - 'lens_outlined': Icons.lens_outlined, - 'lens_blur': Icons.lens_blur, - 'lens_blur_sharp': Icons.lens_blur_sharp, - 'lens_blur_rounded': Icons.lens_blur_rounded, - 'lens_blur_outlined': Icons.lens_blur_outlined, - 'library_add': Icons.library_add, - 'library_add_sharp': Icons.library_add_sharp, - 'library_add_rounded': Icons.library_add_rounded, - 'library_add_outlined': Icons.library_add_outlined, - 'library_add_check': Icons.library_add_check, - 'library_add_check_sharp': Icons.library_add_check_sharp, - 'library_add_check_rounded': Icons.library_add_check_rounded, - 'library_add_check_outlined': Icons.library_add_check_outlined, - 'library_books': Icons.library_books, - 'library_books_sharp': Icons.library_books_sharp, - 'library_books_rounded': Icons.library_books_rounded, - 'library_books_outlined': Icons.library_books_outlined, - 'library_music': Icons.library_music, - 'library_music_sharp': Icons.library_music_sharp, - 'library_music_rounded': Icons.library_music_rounded, - 'library_music_outlined': Icons.library_music_outlined, - 'light': Icons.light, - 'light_sharp': Icons.light_sharp, - 'light_rounded': Icons.light_rounded, - 'light_outlined': Icons.light_outlined, - 'light_mode': Icons.light_mode, - 'light_mode_sharp': Icons.light_mode_sharp, - 'light_mode_rounded': Icons.light_mode_rounded, - 'light_mode_outlined': Icons.light_mode_outlined, - 'lightbulb': Icons.lightbulb, - 'lightbulb_sharp': Icons.lightbulb_sharp, - 'lightbulb_rounded': Icons.lightbulb_rounded, - 'lightbulb_outlined': Icons.lightbulb_outlined, - 'lightbulb_outline': Icons.lightbulb_outline, - 'lightbulb_outline_sharp': Icons.lightbulb_outline_sharp, - 'lightbulb_outline_rounded': Icons.lightbulb_outline_rounded, - 'line_style': Icons.line_style, - 'line_style_sharp': Icons.line_style_sharp, - 'line_style_rounded': Icons.line_style_rounded, - 'line_style_outlined': Icons.line_style_outlined, - 'line_weight': Icons.line_weight, - 'line_weight_sharp': Icons.line_weight_sharp, - 'line_weight_rounded': Icons.line_weight_rounded, - 'line_weight_outlined': Icons.line_weight_outlined, - 'linear_scale': Icons.linear_scale, - 'linear_scale_sharp': Icons.linear_scale_sharp, - 'linear_scale_rounded': Icons.linear_scale_rounded, - 'linear_scale_outlined': Icons.linear_scale_outlined, - 'link': Icons.link, - 'link_sharp': Icons.link_sharp, - 'link_rounded': Icons.link_rounded, - 'link_outlined': Icons.link_outlined, - 'link_off': Icons.link_off, - 'link_off_sharp': Icons.link_off_sharp, - 'link_off_rounded': Icons.link_off_rounded, - 'link_off_outlined': Icons.link_off_outlined, - 'linked_camera': Icons.linked_camera, - 'linked_camera_sharp': Icons.linked_camera_sharp, - 'linked_camera_rounded': Icons.linked_camera_rounded, - 'linked_camera_outlined': Icons.linked_camera_outlined, - 'liquor': Icons.liquor, - 'liquor_sharp': Icons.liquor_sharp, - 'liquor_rounded': Icons.liquor_rounded, - 'liquor_outlined': Icons.liquor_outlined, - 'list': Icons.list, - 'list_sharp': Icons.list_sharp, - 'list_rounded': Icons.list_rounded, - 'list_outlined': Icons.list_outlined, - 'list_alt': Icons.list_alt, - 'list_alt_sharp': Icons.list_alt_sharp, - 'list_alt_rounded': Icons.list_alt_rounded, - 'list_alt_outlined': Icons.list_alt_outlined, - 'live_help': Icons.live_help, - 'live_help_sharp': Icons.live_help_sharp, - 'live_help_rounded': Icons.live_help_rounded, - 'live_help_outlined': Icons.live_help_outlined, - 'live_tv': Icons.live_tv, - 'live_tv_sharp': Icons.live_tv_sharp, - 'live_tv_rounded': Icons.live_tv_rounded, - 'live_tv_outlined': Icons.live_tv_outlined, - 'living': Icons.living, - 'living_sharp': Icons.living_sharp, - 'living_rounded': Icons.living_rounded, - 'living_outlined': Icons.living_outlined, - 'local_activity': Icons.local_activity, - 'local_activity_sharp': Icons.local_activity_sharp, - 'local_activity_rounded': Icons.local_activity_rounded, - 'local_activity_outlined': Icons.local_activity_outlined, - 'local_airport': Icons.local_airport, - 'local_airport_sharp': Icons.local_airport_sharp, - 'local_airport_rounded': Icons.local_airport_rounded, - 'local_airport_outlined': Icons.local_airport_outlined, - 'local_atm': Icons.local_atm, - 'local_atm_sharp': Icons.local_atm_sharp, - 'local_atm_rounded': Icons.local_atm_rounded, - 'local_atm_outlined': Icons.local_atm_outlined, - 'local_attraction': Icons.local_attraction, - 'local_attraction_sharp': Icons.local_attraction_sharp, - 'local_attraction_rounded': Icons.local_attraction_rounded, - 'local_attraction_outlined': Icons.local_attraction_outlined, - 'local_bar': Icons.local_bar, - 'local_bar_sharp': Icons.local_bar_sharp, - 'local_bar_rounded': Icons.local_bar_rounded, - 'local_bar_outlined': Icons.local_bar_outlined, - 'local_cafe': Icons.local_cafe, - 'local_cafe_sharp': Icons.local_cafe_sharp, - 'local_cafe_rounded': Icons.local_cafe_rounded, - 'local_cafe_outlined': Icons.local_cafe_outlined, - 'local_car_wash': Icons.local_car_wash, - 'local_car_wash_sharp': Icons.local_car_wash_sharp, - 'local_car_wash_rounded': Icons.local_car_wash_rounded, - 'local_car_wash_outlined': Icons.local_car_wash_outlined, - 'local_convenience_store': Icons.local_convenience_store, - 'local_convenience_store_sharp': Icons.local_convenience_store_sharp, - 'local_convenience_store_rounded': - Icons.local_convenience_store_rounded, - 'local_convenience_store_outlined': - Icons.local_convenience_store_outlined, - 'local_dining': Icons.local_dining, - 'local_dining_sharp': Icons.local_dining_sharp, - 'local_dining_rounded': Icons.local_dining_rounded, - 'local_dining_outlined': Icons.local_dining_outlined, - 'local_drink': Icons.local_drink, - 'local_drink_sharp': Icons.local_drink_sharp, - 'local_drink_rounded': Icons.local_drink_rounded, - 'local_drink_outlined': Icons.local_drink_outlined, - 'local_fire_department': Icons.local_fire_department, - 'local_fire_department_sharp': Icons.local_fire_department_sharp, - 'local_fire_department_rounded': Icons.local_fire_department_rounded, - 'local_fire_department_outlined': Icons.local_fire_department_outlined, - 'local_florist': Icons.local_florist, - 'local_florist_sharp': Icons.local_florist_sharp, - 'local_florist_rounded': Icons.local_florist_rounded, - 'local_florist_outlined': Icons.local_florist_outlined, - 'local_gas_station': Icons.local_gas_station, - 'local_gas_station_sharp': Icons.local_gas_station_sharp, - 'local_gas_station_rounded': Icons.local_gas_station_rounded, - 'local_gas_station_outlined': Icons.local_gas_station_outlined, - 'local_grocery_store': Icons.local_grocery_store, - 'local_grocery_store_sharp': Icons.local_grocery_store_sharp, - 'local_grocery_store_rounded': Icons.local_grocery_store_rounded, - 'local_grocery_store_outlined': Icons.local_grocery_store_outlined, - 'local_hospital': Icons.local_hospital, - 'local_hospital_sharp': Icons.local_hospital_sharp, - 'local_hospital_rounded': Icons.local_hospital_rounded, - 'local_hospital_outlined': Icons.local_hospital_outlined, - 'local_hotel': Icons.local_hotel, - 'local_hotel_sharp': Icons.local_hotel_sharp, - 'local_hotel_rounded': Icons.local_hotel_rounded, - 'local_hotel_outlined': Icons.local_hotel_outlined, - 'local_laundry_service': Icons.local_laundry_service, - 'local_laundry_service_sharp': Icons.local_laundry_service_sharp, - 'local_laundry_service_rounded': Icons.local_laundry_service_rounded, - 'local_laundry_service_outlined': Icons.local_laundry_service_outlined, - 'local_library': Icons.local_library, - 'local_library_sharp': Icons.local_library_sharp, - 'local_library_rounded': Icons.local_library_rounded, - 'local_library_outlined': Icons.local_library_outlined, - 'local_mall': Icons.local_mall, - 'local_mall_sharp': Icons.local_mall_sharp, - 'local_mall_rounded': Icons.local_mall_rounded, - 'local_mall_outlined': Icons.local_mall_outlined, - 'local_movies': Icons.local_movies, - 'local_movies_sharp': Icons.local_movies_sharp, - 'local_movies_rounded': Icons.local_movies_rounded, - 'local_movies_outlined': Icons.local_movies_outlined, - 'local_offer': Icons.local_offer, - 'local_offer_sharp': Icons.local_offer_sharp, - 'local_offer_rounded': Icons.local_offer_rounded, - 'local_offer_outlined': Icons.local_offer_outlined, - 'local_parking': Icons.local_parking, - 'local_parking_sharp': Icons.local_parking_sharp, - 'local_parking_rounded': Icons.local_parking_rounded, - 'local_parking_outlined': Icons.local_parking_outlined, - 'local_pharmacy': Icons.local_pharmacy, - 'local_pharmacy_sharp': Icons.local_pharmacy_sharp, - 'local_pharmacy_rounded': Icons.local_pharmacy_rounded, - 'local_pharmacy_outlined': Icons.local_pharmacy_outlined, - 'local_phone': Icons.local_phone, - 'local_phone_sharp': Icons.local_phone_sharp, - 'local_phone_rounded': Icons.local_phone_rounded, - 'local_phone_outlined': Icons.local_phone_outlined, - 'local_pizza': Icons.local_pizza, - 'local_pizza_sharp': Icons.local_pizza_sharp, - 'local_pizza_rounded': Icons.local_pizza_rounded, - 'local_pizza_outlined': Icons.local_pizza_outlined, - 'local_play': Icons.local_play, - 'local_play_sharp': Icons.local_play_sharp, - 'local_play_rounded': Icons.local_play_rounded, - 'local_play_outlined': Icons.local_play_outlined, - 'local_police': Icons.local_police, - 'local_police_sharp': Icons.local_police_sharp, - 'local_police_rounded': Icons.local_police_rounded, - 'local_police_outlined': Icons.local_police_outlined, - 'local_post_office': Icons.local_post_office, - 'local_post_office_sharp': Icons.local_post_office_sharp, - 'local_post_office_rounded': Icons.local_post_office_rounded, - 'local_post_office_outlined': Icons.local_post_office_outlined, - 'local_print_shop': Icons.local_print_shop, - 'local_print_shop_sharp': Icons.local_print_shop_sharp, - 'local_print_shop_rounded': Icons.local_print_shop_rounded, - 'local_print_shop_outlined': Icons.local_print_shop_outlined, - 'local_printshop': Icons.local_printshop, - 'local_printshop_sharp': Icons.local_printshop_sharp, - 'local_printshop_rounded': Icons.local_printshop_rounded, - 'local_printshop_outlined': Icons.local_printshop_outlined, - 'local_restaurant': Icons.local_restaurant, - 'local_restaurant_sharp': Icons.local_restaurant_sharp, - 'local_restaurant_rounded': Icons.local_restaurant_rounded, - 'local_restaurant_outlined': Icons.local_restaurant_outlined, - 'local_see': Icons.local_see, - 'local_see_sharp': Icons.local_see_sharp, - 'local_see_rounded': Icons.local_see_rounded, - 'local_see_outlined': Icons.local_see_outlined, - 'local_shipping': Icons.local_shipping, - 'local_shipping_sharp': Icons.local_shipping_sharp, - 'local_shipping_rounded': Icons.local_shipping_rounded, - 'local_shipping_outlined': Icons.local_shipping_outlined, - 'local_taxi': Icons.local_taxi, - 'local_taxi_sharp': Icons.local_taxi_sharp, - 'local_taxi_rounded': Icons.local_taxi_rounded, - 'local_taxi_outlined': Icons.local_taxi_outlined, - 'location_city': Icons.location_city, - 'location_city_sharp': Icons.location_city_sharp, - 'location_city_rounded': Icons.location_city_rounded, - 'location_city_outlined': Icons.location_city_outlined, - 'location_disabled': Icons.location_disabled, - 'location_disabled_sharp': Icons.location_disabled_sharp, - 'location_disabled_rounded': Icons.location_disabled_rounded, - 'location_disabled_outlined': Icons.location_disabled_outlined, - 'location_history': Icons.location_history, - 'location_history_sharp': Icons.location_history_sharp, - 'location_history_rounded': Icons.location_history_rounded, - 'location_history_outlined': Icons.location_history_outlined, - 'location_off': Icons.location_off, - 'location_off_sharp': Icons.location_off_sharp, - 'location_off_rounded': Icons.location_off_rounded, - 'location_off_outlined': Icons.location_off_outlined, - 'location_on': Icons.location_on, - 'location_on_sharp': Icons.location_on_sharp, - 'location_on_rounded': Icons.location_on_rounded, - 'location_on_outlined': Icons.location_on_outlined, - 'location_pin': Icons.location_pin, - 'location_searching': Icons.location_searching, - 'location_searching_sharp': Icons.location_searching_sharp, - 'location_searching_rounded': Icons.location_searching_rounded, - 'location_searching_outlined': Icons.location_searching_outlined, - 'lock': Icons.lock, - 'lock_sharp': Icons.lock_sharp, - 'lock_rounded': Icons.lock_rounded, - 'lock_outlined': Icons.lock_outlined, - 'lock_clock': Icons.lock_clock, - 'lock_clock_sharp': Icons.lock_clock_sharp, - 'lock_clock_rounded': Icons.lock_clock_rounded, - 'lock_clock_outlined': Icons.lock_clock_outlined, - 'lock_open': Icons.lock_open, - 'lock_open_sharp': Icons.lock_open_sharp, - 'lock_open_rounded': Icons.lock_open_rounded, - 'lock_open_outlined': Icons.lock_open_outlined, - 'lock_outline': Icons.lock_outline, - 'lock_outline_sharp': Icons.lock_outline_sharp, - 'lock_outline_rounded': Icons.lock_outline_rounded, - 'login': Icons.login, - 'login_sharp': Icons.login_sharp, - 'login_rounded': Icons.login_rounded, - 'login_outlined': Icons.login_outlined, - 'logout': Icons.logout, - 'logout_sharp': Icons.logout_sharp, - 'logout_rounded': Icons.logout_rounded, - 'logout_outlined': Icons.logout_outlined, - 'looks': Icons.looks, - 'looks_sharp': Icons.looks_sharp, - 'looks_rounded': Icons.looks_rounded, - 'looks_outlined': Icons.looks_outlined, - 'looks_3': Icons.looks_3, - 'looks_3_sharp': Icons.looks_3_sharp, - 'looks_3_rounded': Icons.looks_3_rounded, - 'looks_3_outlined': Icons.looks_3_outlined, - 'looks_4': Icons.looks_4, - 'looks_4_sharp': Icons.looks_4_sharp, - 'looks_4_rounded': Icons.looks_4_rounded, - 'looks_4_outlined': Icons.looks_4_outlined, - 'looks_5': Icons.looks_5, - 'looks_5_sharp': Icons.looks_5_sharp, - 'looks_5_rounded': Icons.looks_5_rounded, - 'looks_5_outlined': Icons.looks_5_outlined, - 'looks_6': Icons.looks_6, - 'looks_6_sharp': Icons.looks_6_sharp, - 'looks_6_rounded': Icons.looks_6_rounded, - 'looks_6_outlined': Icons.looks_6_outlined, - 'looks_one': Icons.looks_one, - 'looks_one_sharp': Icons.looks_one_sharp, - 'looks_one_rounded': Icons.looks_one_rounded, - 'looks_one_outlined': Icons.looks_one_outlined, - 'looks_two': Icons.looks_two, - 'looks_two_sharp': Icons.looks_two_sharp, - 'looks_two_rounded': Icons.looks_two_rounded, - 'looks_two_outlined': Icons.looks_two_outlined, - 'loop': Icons.loop, - 'loop_sharp': Icons.loop_sharp, - 'loop_rounded': Icons.loop_rounded, - 'loop_outlined': Icons.loop_outlined, - 'loupe': Icons.loupe, - 'loupe_sharp': Icons.loupe_sharp, - 'loupe_rounded': Icons.loupe_rounded, - 'loupe_outlined': Icons.loupe_outlined, - 'low_priority': Icons.low_priority, - 'low_priority_sharp': Icons.low_priority_sharp, - 'low_priority_rounded': Icons.low_priority_rounded, - 'low_priority_outlined': Icons.low_priority_outlined, - 'loyalty': Icons.loyalty, - 'loyalty_sharp': Icons.loyalty_sharp, - 'loyalty_rounded': Icons.loyalty_rounded, - 'loyalty_outlined': Icons.loyalty_outlined, - 'lte_mobiledata': Icons.lte_mobiledata, - 'lte_mobiledata_sharp': Icons.lte_mobiledata_sharp, - 'lte_mobiledata_rounded': Icons.lte_mobiledata_rounded, - 'lte_mobiledata_outlined': Icons.lte_mobiledata_outlined, - 'lte_plus_mobiledata': Icons.lte_plus_mobiledata, - 'lte_plus_mobiledata_sharp': Icons.lte_plus_mobiledata_sharp, - 'lte_plus_mobiledata_rounded': Icons.lte_plus_mobiledata_rounded, - 'lte_plus_mobiledata_outlined': Icons.lte_plus_mobiledata_outlined, - 'luggage': Icons.luggage, - 'luggage_sharp': Icons.luggage_sharp, - 'luggage_rounded': Icons.luggage_rounded, - 'luggage_outlined': Icons.luggage_outlined, - 'lunch_dining': Icons.lunch_dining, - 'lunch_dining_sharp': Icons.lunch_dining_sharp, - 'lunch_dining_rounded': Icons.lunch_dining_rounded, - 'lunch_dining_outlined': Icons.lunch_dining_outlined, - 'mail': Icons.mail, - 'mail_sharp': Icons.mail_sharp, - 'mail_rounded': Icons.mail_rounded, - 'mail_outlined': Icons.mail_outlined, - 'mail_outline': Icons.mail_outline, - 'mail_outline_sharp': Icons.mail_outline_sharp, - 'mail_outline_rounded': Icons.mail_outline_rounded, - 'mail_outline_outlined': Icons.mail_outline_outlined, - 'male': Icons.male, - 'male_sharp': Icons.male_sharp, - 'male_rounded': Icons.male_rounded, - 'male_outlined': Icons.male_outlined, - 'manage_accounts': Icons.manage_accounts, - 'manage_accounts_sharp': Icons.manage_accounts_sharp, - 'manage_accounts_rounded': Icons.manage_accounts_rounded, - 'manage_accounts_outlined': Icons.manage_accounts_outlined, - 'manage_search': Icons.manage_search, - 'manage_search_sharp': Icons.manage_search_sharp, - 'manage_search_rounded': Icons.manage_search_rounded, - 'manage_search_outlined': Icons.manage_search_outlined, - 'map': Icons.map, - 'map_sharp': Icons.map_sharp, - 'map_rounded': Icons.map_rounded, - 'map_outlined': Icons.map_outlined, - 'maps_home_work': Icons.maps_home_work, - 'maps_home_work_sharp': Icons.maps_home_work_sharp, - 'maps_home_work_rounded': Icons.maps_home_work_rounded, - 'maps_home_work_outlined': Icons.maps_home_work_outlined, - 'maps_ugc': Icons.maps_ugc, - 'maps_ugc_sharp': Icons.maps_ugc_sharp, - 'maps_ugc_rounded': Icons.maps_ugc_rounded, - 'maps_ugc_outlined': Icons.maps_ugc_outlined, - 'margin': Icons.margin, - 'margin_sharp': Icons.margin_sharp, - 'margin_rounded': Icons.margin_rounded, - 'margin_outlined': Icons.margin_outlined, - 'mark_as_unread': Icons.mark_as_unread, - 'mark_as_unread_sharp': Icons.mark_as_unread_sharp, - 'mark_as_unread_rounded': Icons.mark_as_unread_rounded, - 'mark_as_unread_outlined': Icons.mark_as_unread_outlined, - 'mark_chat_read': Icons.mark_chat_read, - 'mark_chat_read_sharp': Icons.mark_chat_read_sharp, - 'mark_chat_read_rounded': Icons.mark_chat_read_rounded, - 'mark_chat_read_outlined': Icons.mark_chat_read_outlined, - 'mark_chat_unread': Icons.mark_chat_unread, - 'mark_chat_unread_sharp': Icons.mark_chat_unread_sharp, - 'mark_chat_unread_rounded': Icons.mark_chat_unread_rounded, - 'mark_chat_unread_outlined': Icons.mark_chat_unread_outlined, - 'mark_email_read': Icons.mark_email_read, - 'mark_email_read_sharp': Icons.mark_email_read_sharp, - 'mark_email_read_rounded': Icons.mark_email_read_rounded, - 'mark_email_read_outlined': Icons.mark_email_read_outlined, - 'mark_email_unread': Icons.mark_email_unread, - 'mark_email_unread_sharp': Icons.mark_email_unread_sharp, - 'mark_email_unread_rounded': Icons.mark_email_unread_rounded, - 'mark_email_unread_outlined': Icons.mark_email_unread_outlined, - 'markunread': Icons.markunread, - 'markunread_sharp': Icons.markunread_sharp, - 'markunread_rounded': Icons.markunread_rounded, - 'markunread_outlined': Icons.markunread_outlined, - 'markunread_mailbox': Icons.markunread_mailbox, - 'markunread_mailbox_sharp': Icons.markunread_mailbox_sharp, - 'markunread_mailbox_rounded': Icons.markunread_mailbox_rounded, - 'markunread_mailbox_outlined': Icons.markunread_mailbox_outlined, - 'masks': Icons.masks, - 'masks_sharp': Icons.masks_sharp, - 'masks_rounded': Icons.masks_rounded, - 'masks_outlined': Icons.masks_outlined, - 'maximize': Icons.maximize, - 'maximize_sharp': Icons.maximize_sharp, - 'maximize_rounded': Icons.maximize_rounded, - 'maximize_outlined': Icons.maximize_outlined, - 'media_bluetooth_off': Icons.media_bluetooth_off, - 'media_bluetooth_off_sharp': Icons.media_bluetooth_off_sharp, - 'media_bluetooth_off_rounded': Icons.media_bluetooth_off_rounded, - 'media_bluetooth_off_outlined': Icons.media_bluetooth_off_outlined, - 'media_bluetooth_on': Icons.media_bluetooth_on, - 'media_bluetooth_on_sharp': Icons.media_bluetooth_on_sharp, - 'media_bluetooth_on_rounded': Icons.media_bluetooth_on_rounded, - 'media_bluetooth_on_outlined': Icons.media_bluetooth_on_outlined, - 'mediation': Icons.mediation, - 'mediation_sharp': Icons.mediation_sharp, - 'mediation_rounded': Icons.mediation_rounded, - 'mediation_outlined': Icons.mediation_outlined, - 'medical_services': Icons.medical_services, - 'medical_services_sharp': Icons.medical_services_sharp, - 'medical_services_rounded': Icons.medical_services_rounded, - 'medical_services_outlined': Icons.medical_services_outlined, - 'medication': Icons.medication, - 'medication_sharp': Icons.medication_sharp, - 'medication_rounded': Icons.medication_rounded, - 'medication_outlined': Icons.medication_outlined, - 'meeting_room': Icons.meeting_room, - 'meeting_room_sharp': Icons.meeting_room_sharp, - 'meeting_room_rounded': Icons.meeting_room_rounded, - 'meeting_room_outlined': Icons.meeting_room_outlined, - 'memory': Icons.memory, - 'memory_sharp': Icons.memory_sharp, - 'memory_rounded': Icons.memory_rounded, - 'memory_outlined': Icons.memory_outlined, - 'menu': Icons.menu, - 'menu_sharp': Icons.menu_sharp, - 'menu_rounded': Icons.menu_rounded, - 'menu_outlined': Icons.menu_outlined, - 'menu_book': Icons.menu_book, - 'menu_book_sharp': Icons.menu_book_sharp, - 'menu_book_rounded': Icons.menu_book_rounded, - 'menu_book_outlined': Icons.menu_book_outlined, - 'menu_open': Icons.menu_open, - 'menu_open_sharp': Icons.menu_open_sharp, - 'menu_open_rounded': Icons.menu_open_rounded, - 'menu_open_outlined': Icons.menu_open_outlined, - 'merge_type': Icons.merge_type, - 'merge_type_sharp': Icons.merge_type_sharp, - 'merge_type_rounded': Icons.merge_type_rounded, - 'merge_type_outlined': Icons.merge_type_outlined, - 'message': Icons.message, - 'message_sharp': Icons.message_sharp, - 'message_rounded': Icons.message_rounded, - 'message_outlined': Icons.message_outlined, - 'messenger': Icons.messenger, - 'messenger_sharp': Icons.messenger_sharp, - 'messenger_rounded': Icons.messenger_rounded, - 'messenger_outlined': Icons.messenger_outlined, - 'messenger_outline': Icons.messenger_outline, - 'messenger_outline_sharp': Icons.messenger_outline_sharp, - 'messenger_outline_rounded': Icons.messenger_outline_rounded, - 'messenger_outline_outlined': Icons.messenger_outline_outlined, - 'mic': Icons.mic, - 'mic_sharp': Icons.mic_sharp, - 'mic_rounded': Icons.mic_rounded, - 'mic_outlined': Icons.mic_outlined, - 'mic_external_off': Icons.mic_external_off, - 'mic_external_off_sharp': Icons.mic_external_off_sharp, - 'mic_external_off_rounded': Icons.mic_external_off_rounded, - 'mic_external_off_outlined': Icons.mic_external_off_outlined, - 'mic_external_on': Icons.mic_external_on, - 'mic_external_on_sharp': Icons.mic_external_on_sharp, - 'mic_external_on_rounded': Icons.mic_external_on_rounded, - 'mic_external_on_outlined': Icons.mic_external_on_outlined, - 'mic_none': Icons.mic_none, - 'mic_none_sharp': Icons.mic_none_sharp, - 'mic_none_rounded': Icons.mic_none_rounded, - 'mic_none_outlined': Icons.mic_none_outlined, - 'mic_off': Icons.mic_off, - 'mic_off_sharp': Icons.mic_off_sharp, - 'mic_off_rounded': Icons.mic_off_rounded, - 'mic_off_outlined': Icons.mic_off_outlined, - 'microwave': Icons.microwave, - 'microwave_sharp': Icons.microwave_sharp, - 'microwave_rounded': Icons.microwave_rounded, - 'microwave_outlined': Icons.microwave_outlined, - 'military_tech': Icons.military_tech, - 'military_tech_sharp': Icons.military_tech_sharp, - 'military_tech_rounded': Icons.military_tech_rounded, - 'military_tech_outlined': Icons.military_tech_outlined, - 'minimize': Icons.minimize, - 'minimize_sharp': Icons.minimize_sharp, - 'minimize_rounded': Icons.minimize_rounded, - 'minimize_outlined': Icons.minimize_outlined, - 'miscellaneous_services': Icons.miscellaneous_services, - 'miscellaneous_services_sharp': Icons.miscellaneous_services_sharp, - 'miscellaneous_services_rounded': Icons.miscellaneous_services_rounded, - 'miscellaneous_services_outlined': - Icons.miscellaneous_services_outlined, - 'missed_video_call': Icons.missed_video_call, - 'missed_video_call_sharp': Icons.missed_video_call_sharp, - 'missed_video_call_rounded': Icons.missed_video_call_rounded, - 'missed_video_call_outlined': Icons.missed_video_call_outlined, - 'mms': Icons.mms, - 'mms_sharp': Icons.mms_sharp, - 'mms_rounded': Icons.mms_rounded, - 'mms_outlined': Icons.mms_outlined, - 'mobile_friendly': Icons.mobile_friendly, - 'mobile_friendly_sharp': Icons.mobile_friendly_sharp, - 'mobile_friendly_rounded': Icons.mobile_friendly_rounded, - 'mobile_friendly_outlined': Icons.mobile_friendly_outlined, - 'mobile_off': Icons.mobile_off, - 'mobile_off_sharp': Icons.mobile_off_sharp, - 'mobile_off_rounded': Icons.mobile_off_rounded, - 'mobile_off_outlined': Icons.mobile_off_outlined, - 'mobile_screen_share': Icons.mobile_screen_share, - 'mobile_screen_share_sharp': Icons.mobile_screen_share_sharp, - 'mobile_screen_share_rounded': Icons.mobile_screen_share_rounded, - 'mobile_screen_share_outlined': Icons.mobile_screen_share_outlined, - 'mobiledata_off': Icons.mobiledata_off, - 'mobiledata_off_sharp': Icons.mobiledata_off_sharp, - 'mobiledata_off_rounded': Icons.mobiledata_off_rounded, - 'mobiledata_off_outlined': Icons.mobiledata_off_outlined, - 'mode': Icons.mode, - 'mode_sharp': Icons.mode_sharp, - 'mode_rounded': Icons.mode_rounded, - 'mode_outlined': Icons.mode_outlined, - 'mode_comment': Icons.mode_comment, - 'mode_comment_sharp': Icons.mode_comment_sharp, - 'mode_comment_rounded': Icons.mode_comment_rounded, - 'mode_comment_outlined': Icons.mode_comment_outlined, - 'mode_edit': Icons.mode_edit, - 'mode_edit_sharp': Icons.mode_edit_sharp, - 'mode_edit_rounded': Icons.mode_edit_rounded, - 'mode_edit_outlined': Icons.mode_edit_outlined, - 'mode_edit_outline': Icons.mode_edit_outline, - 'mode_edit_outline_sharp': Icons.mode_edit_outline_sharp, - 'mode_edit_outline_rounded': Icons.mode_edit_outline_rounded, - 'mode_edit_outline_outlined': Icons.mode_edit_outline_outlined, - 'mode_night': Icons.mode_night, - 'mode_night_sharp': Icons.mode_night_sharp, - 'mode_night_rounded': Icons.mode_night_rounded, - 'mode_night_outlined': Icons.mode_night_outlined, - 'mode_standby': Icons.mode_standby, - 'mode_standby_sharp': Icons.mode_standby_sharp, - 'mode_standby_rounded': Icons.mode_standby_rounded, - 'mode_standby_outlined': Icons.mode_standby_outlined, - 'model_training': Icons.model_training, - 'model_training_sharp': Icons.model_training_sharp, - 'model_training_rounded': Icons.model_training_rounded, - 'model_training_outlined': Icons.model_training_outlined, - 'monetization_on': Icons.monetization_on, - 'monetization_on_sharp': Icons.monetization_on_sharp, - 'monetization_on_rounded': Icons.monetization_on_rounded, - 'monetization_on_outlined': Icons.monetization_on_outlined, - 'money': Icons.money, - 'money_sharp': Icons.money_sharp, - 'money_rounded': Icons.money_rounded, - 'money_outlined': Icons.money_outlined, - 'money_off': Icons.money_off, - 'money_off_sharp': Icons.money_off_sharp, - 'money_off_rounded': Icons.money_off_rounded, - 'money_off_outlined': Icons.money_off_outlined, - 'money_off_csred': Icons.money_off_csred, - 'money_off_csred_sharp': Icons.money_off_csred_sharp, - 'money_off_csred_rounded': Icons.money_off_csred_rounded, - 'money_off_csred_outlined': Icons.money_off_csred_outlined, - 'monitor': Icons.monitor, - 'monitor_sharp': Icons.monitor_sharp, - 'monitor_rounded': Icons.monitor_rounded, - 'monitor_outlined': Icons.monitor_outlined, - 'monitor_weight': Icons.monitor_weight, - 'monitor_weight_sharp': Icons.monitor_weight_sharp, - 'monitor_weight_rounded': Icons.monitor_weight_rounded, - 'monitor_weight_outlined': Icons.monitor_weight_outlined, - 'monochrome_photos': Icons.monochrome_photos, - 'monochrome_photos_sharp': Icons.monochrome_photos_sharp, - 'monochrome_photos_rounded': Icons.monochrome_photos_rounded, - 'monochrome_photos_outlined': Icons.monochrome_photos_outlined, - 'mood': Icons.mood, - 'mood_sharp': Icons.mood_sharp, - 'mood_rounded': Icons.mood_rounded, - 'mood_outlined': Icons.mood_outlined, - 'mood_bad': Icons.mood_bad, - 'mood_bad_sharp': Icons.mood_bad_sharp, - 'mood_bad_rounded': Icons.mood_bad_rounded, - 'mood_bad_outlined': Icons.mood_bad_outlined, - 'moped': Icons.moped, - 'moped_sharp': Icons.moped_sharp, - 'moped_rounded': Icons.moped_rounded, - 'moped_outlined': Icons.moped_outlined, - 'more': Icons.more, - 'more_sharp': Icons.more_sharp, - 'more_rounded': Icons.more_rounded, - 'more_outlined': Icons.more_outlined, - 'more_horiz': Icons.more_horiz, - 'more_horiz_sharp': Icons.more_horiz_sharp, - 'more_horiz_rounded': Icons.more_horiz_rounded, - 'more_horiz_outlined': Icons.more_horiz_outlined, - 'more_time': Icons.more_time, - 'more_time_sharp': Icons.more_time_sharp, - 'more_time_rounded': Icons.more_time_rounded, - 'more_time_outlined': Icons.more_time_outlined, - 'more_vert': Icons.more_vert, - 'more_vert_sharp': Icons.more_vert_sharp, - 'more_vert_rounded': Icons.more_vert_rounded, - 'more_vert_outlined': Icons.more_vert_outlined, - 'motion_photos_auto': Icons.motion_photos_auto, - 'motion_photos_auto_sharp': Icons.motion_photos_auto_sharp, - 'motion_photos_auto_rounded': Icons.motion_photos_auto_rounded, - 'motion_photos_auto_outlined': Icons.motion_photos_auto_outlined, - 'motion_photos_off': Icons.motion_photos_off, - 'motion_photos_off_sharp': Icons.motion_photos_off_sharp, - 'motion_photos_off_rounded': Icons.motion_photos_off_rounded, - 'motion_photos_off_outlined': Icons.motion_photos_off_outlined, - 'motion_photos_on': Icons.motion_photos_on, - 'motion_photos_on_sharp': Icons.motion_photos_on_sharp, - 'motion_photos_on_rounded': Icons.motion_photos_on_rounded, - 'motion_photos_on_outlined': Icons.motion_photos_on_outlined, - 'motion_photos_pause': Icons.motion_photos_pause, - 'motion_photos_pause_sharp': Icons.motion_photos_pause_sharp, - 'motion_photos_pause_rounded': Icons.motion_photos_pause_rounded, - 'motion_photos_pause_outlined': Icons.motion_photos_pause_outlined, - 'motion_photos_paused': Icons.motion_photos_paused, - 'motion_photos_paused_sharp': Icons.motion_photos_paused_sharp, - 'motion_photos_paused_rounded': Icons.motion_photos_paused_rounded, - 'motion_photos_paused_outlined': Icons.motion_photos_paused_outlined, - 'motorcycle': Icons.motorcycle, - 'motorcycle_sharp': Icons.motorcycle_sharp, - 'motorcycle_rounded': Icons.motorcycle_rounded, - 'motorcycle_outlined': Icons.motorcycle_outlined, - 'mouse': Icons.mouse, - 'mouse_sharp': Icons.mouse_sharp, - 'mouse_rounded': Icons.mouse_rounded, - 'mouse_outlined': Icons.mouse_outlined, - 'move_to_inbox': Icons.move_to_inbox, - 'move_to_inbox_sharp': Icons.move_to_inbox_sharp, - 'move_to_inbox_rounded': Icons.move_to_inbox_rounded, - 'move_to_inbox_outlined': Icons.move_to_inbox_outlined, - 'movie': Icons.movie, - 'movie_sharp': Icons.movie_sharp, - 'movie_rounded': Icons.movie_rounded, - 'movie_outlined': Icons.movie_outlined, - 'movie_creation': Icons.movie_creation, - 'movie_creation_sharp': Icons.movie_creation_sharp, - 'movie_creation_rounded': Icons.movie_creation_rounded, - 'movie_creation_outlined': Icons.movie_creation_outlined, - 'movie_filter': Icons.movie_filter, - 'movie_filter_sharp': Icons.movie_filter_sharp, - 'movie_filter_rounded': Icons.movie_filter_rounded, - 'movie_filter_outlined': Icons.movie_filter_outlined, - 'moving': Icons.moving, - 'moving_sharp': Icons.moving_sharp, - 'moving_rounded': Icons.moving_rounded, - 'moving_outlined': Icons.moving_outlined, - 'mp': Icons.mp, - 'mp_sharp': Icons.mp_sharp, - 'mp_rounded': Icons.mp_rounded, - 'mp_outlined': Icons.mp_outlined, - 'multiline_chart': Icons.multiline_chart, - 'multiline_chart_sharp': Icons.multiline_chart_sharp, - 'multiline_chart_rounded': Icons.multiline_chart_rounded, - 'multiline_chart_outlined': Icons.multiline_chart_outlined, - 'multiple_stop': Icons.multiple_stop, - 'multiple_stop_sharp': Icons.multiple_stop_sharp, - 'multiple_stop_rounded': Icons.multiple_stop_rounded, - 'multiple_stop_outlined': Icons.multiple_stop_outlined, - 'multitrack_audio': Icons.multitrack_audio, - 'multitrack_audio_sharp': Icons.multitrack_audio_sharp, - 'multitrack_audio_rounded': Icons.multitrack_audio_rounded, - 'multitrack_audio_outlined': Icons.multitrack_audio_outlined, - 'museum': Icons.museum, - 'museum_sharp': Icons.museum_sharp, - 'museum_rounded': Icons.museum_rounded, - 'museum_outlined': Icons.museum_outlined, - 'music_note': Icons.music_note, - 'music_note_sharp': Icons.music_note_sharp, - 'music_note_rounded': Icons.music_note_rounded, - 'music_note_outlined': Icons.music_note_outlined, - 'music_off': Icons.music_off, - 'music_off_sharp': Icons.music_off_sharp, - 'music_off_rounded': Icons.music_off_rounded, - 'music_off_outlined': Icons.music_off_outlined, - 'music_video': Icons.music_video, - 'music_video_sharp': Icons.music_video_sharp, - 'music_video_rounded': Icons.music_video_rounded, - 'music_video_outlined': Icons.music_video_outlined, - 'my_library_add': Icons.my_library_add, - 'my_library_add_sharp': Icons.my_library_add_sharp, - 'my_library_add_rounded': Icons.my_library_add_rounded, - 'my_library_add_outlined': Icons.my_library_add_outlined, - 'my_library_books': Icons.my_library_books, - 'my_library_books_sharp': Icons.my_library_books_sharp, - 'my_library_books_rounded': Icons.my_library_books_rounded, - 'my_library_books_outlined': Icons.my_library_books_outlined, - 'my_library_music': Icons.my_library_music, - 'my_library_music_sharp': Icons.my_library_music_sharp, - 'my_library_music_rounded': Icons.my_library_music_rounded, - 'my_library_music_outlined': Icons.my_library_music_outlined, - 'my_location': Icons.my_location, - 'my_location_sharp': Icons.my_location_sharp, - 'my_location_rounded': Icons.my_location_rounded, - 'my_location_outlined': Icons.my_location_outlined, - 'nat': Icons.nat, - 'nat_sharp': Icons.nat_sharp, - 'nat_rounded': Icons.nat_rounded, - 'nat_outlined': Icons.nat_outlined, - 'nature': Icons.nature, - 'nature_sharp': Icons.nature_sharp, - 'nature_rounded': Icons.nature_rounded, - 'nature_outlined': Icons.nature_outlined, - 'nature_people': Icons.nature_people, - 'nature_people_sharp': Icons.nature_people_sharp, - 'nature_people_rounded': Icons.nature_people_rounded, - 'nature_people_outlined': Icons.nature_people_outlined, - 'navigate_before': Icons.navigate_before, - 'navigate_before_sharp': Icons.navigate_before_sharp, - 'navigate_before_rounded': Icons.navigate_before_rounded, - 'navigate_before_outlined': Icons.navigate_before_outlined, - 'navigate_next': Icons.navigate_next, - 'navigate_next_sharp': Icons.navigate_next_sharp, - 'navigate_next_rounded': Icons.navigate_next_rounded, - 'navigate_next_outlined': Icons.navigate_next_outlined, - 'navigation': Icons.navigation, - 'navigation_sharp': Icons.navigation_sharp, - 'navigation_rounded': Icons.navigation_rounded, - 'navigation_outlined': Icons.navigation_outlined, - 'near_me': Icons.near_me, - 'near_me_sharp': Icons.near_me_sharp, - 'near_me_rounded': Icons.near_me_rounded, - 'near_me_outlined': Icons.near_me_outlined, - 'near_me_disabled': Icons.near_me_disabled, - 'near_me_disabled_sharp': Icons.near_me_disabled_sharp, - 'near_me_disabled_rounded': Icons.near_me_disabled_rounded, - 'near_me_disabled_outlined': Icons.near_me_disabled_outlined, - 'nearby_error': Icons.nearby_error, - 'nearby_error_sharp': Icons.nearby_error_sharp, - 'nearby_error_rounded': Icons.nearby_error_rounded, - 'nearby_error_outlined': Icons.nearby_error_outlined, - 'nearby_off': Icons.nearby_off, - 'nearby_off_sharp': Icons.nearby_off_sharp, - 'nearby_off_rounded': Icons.nearby_off_rounded, - 'nearby_off_outlined': Icons.nearby_off_outlined, - 'network_cell': Icons.network_cell, - 'network_cell_sharp': Icons.network_cell_sharp, - 'network_cell_rounded': Icons.network_cell_rounded, - 'network_cell_outlined': Icons.network_cell_outlined, - 'network_check': Icons.network_check, - 'network_check_sharp': Icons.network_check_sharp, - 'network_check_rounded': Icons.network_check_rounded, - 'network_check_outlined': Icons.network_check_outlined, - 'network_locked': Icons.network_locked, - 'network_locked_sharp': Icons.network_locked_sharp, - 'network_locked_rounded': Icons.network_locked_rounded, - 'network_locked_outlined': Icons.network_locked_outlined, - 'network_wifi': Icons.network_wifi, - 'network_wifi_sharp': Icons.network_wifi_sharp, - 'network_wifi_rounded': Icons.network_wifi_rounded, - 'network_wifi_outlined': Icons.network_wifi_outlined, - 'new_label': Icons.new_label, - 'new_label_sharp': Icons.new_label_sharp, - 'new_label_rounded': Icons.new_label_rounded, - 'new_label_outlined': Icons.new_label_outlined, - 'new_releases': Icons.new_releases, - 'new_releases_sharp': Icons.new_releases_sharp, - 'new_releases_rounded': Icons.new_releases_rounded, - 'new_releases_outlined': Icons.new_releases_outlined, - 'next_plan': Icons.next_plan, - 'next_plan_sharp': Icons.next_plan_sharp, - 'next_plan_rounded': Icons.next_plan_rounded, - 'next_plan_outlined': Icons.next_plan_outlined, - 'next_week': Icons.next_week, - 'next_week_sharp': Icons.next_week_sharp, - 'next_week_rounded': Icons.next_week_rounded, - 'next_week_outlined': Icons.next_week_outlined, - 'nfc': Icons.nfc, - 'nfc_sharp': Icons.nfc_sharp, - 'nfc_rounded': Icons.nfc_rounded, - 'nfc_outlined': Icons.nfc_outlined, - 'night_shelter': Icons.night_shelter, - 'night_shelter_sharp': Icons.night_shelter_sharp, - 'night_shelter_rounded': Icons.night_shelter_rounded, - 'night_shelter_outlined': Icons.night_shelter_outlined, - 'nightlife': Icons.nightlife, - 'nightlife_sharp': Icons.nightlife_sharp, - 'nightlife_rounded': Icons.nightlife_rounded, - 'nightlife_outlined': Icons.nightlife_outlined, - 'nightlight': Icons.nightlight, - 'nightlight_sharp': Icons.nightlight_sharp, - 'nightlight_rounded': Icons.nightlight_rounded, - 'nightlight_outlined': Icons.nightlight_outlined, - 'nightlight_round': Icons.nightlight_round, - 'nightlight_round_sharp': Icons.nightlight_round_sharp, - 'nightlight_round_rounded': Icons.nightlight_round_rounded, - 'nightlight_round_outlined': Icons.nightlight_round_outlined, - 'nights_stay': Icons.nights_stay, - 'nights_stay_sharp': Icons.nights_stay_sharp, - 'nights_stay_rounded': Icons.nights_stay_rounded, - 'nights_stay_outlined': Icons.nights_stay_outlined, - 'no_accounts': Icons.no_accounts, - 'no_accounts_sharp': Icons.no_accounts_sharp, - 'no_accounts_rounded': Icons.no_accounts_rounded, - 'no_accounts_outlined': Icons.no_accounts_outlined, - 'no_backpack': Icons.no_backpack, - 'no_backpack_sharp': Icons.no_backpack_sharp, - 'no_backpack_rounded': Icons.no_backpack_rounded, - 'no_backpack_outlined': Icons.no_backpack_outlined, - 'no_cell': Icons.no_cell, - 'no_cell_sharp': Icons.no_cell_sharp, - 'no_cell_rounded': Icons.no_cell_rounded, - 'no_cell_outlined': Icons.no_cell_outlined, - 'no_drinks': Icons.no_drinks, - 'no_drinks_sharp': Icons.no_drinks_sharp, - 'no_drinks_rounded': Icons.no_drinks_rounded, - 'no_drinks_outlined': Icons.no_drinks_outlined, - 'no_encryption': Icons.no_encryption, - 'no_encryption_sharp': Icons.no_encryption_sharp, - 'no_encryption_rounded': Icons.no_encryption_rounded, - 'no_encryption_outlined': Icons.no_encryption_outlined, - 'no_encryption_gmailerrorred': Icons.no_encryption_gmailerrorred, - 'no_encryption_gmailerrorred_sharp': - Icons.no_encryption_gmailerrorred_sharp, - 'no_encryption_gmailerrorred_rounded': - Icons.no_encryption_gmailerrorred_rounded, - 'no_encryption_gmailerrorred_outlined': - Icons.no_encryption_gmailerrorred_outlined, - 'no_flash': Icons.no_flash, - 'no_flash_sharp': Icons.no_flash_sharp, - 'no_flash_rounded': Icons.no_flash_rounded, - 'no_flash_outlined': Icons.no_flash_outlined, - 'no_food': Icons.no_food, - 'no_food_sharp': Icons.no_food_sharp, - 'no_food_rounded': Icons.no_food_rounded, - 'no_food_outlined': Icons.no_food_outlined, - 'no_luggage': Icons.no_luggage, - 'no_luggage_sharp': Icons.no_luggage_sharp, - 'no_luggage_rounded': Icons.no_luggage_rounded, - 'no_luggage_outlined': Icons.no_luggage_outlined, - 'no_meals': Icons.no_meals, - 'no_meals_sharp': Icons.no_meals_sharp, - 'no_meals_rounded': Icons.no_meals_rounded, - 'no_meals_outlined': Icons.no_meals_outlined, - 'no_meals_ouline': Icons.no_meals_ouline, - 'no_meeting_room': Icons.no_meeting_room, - 'no_meeting_room_sharp': Icons.no_meeting_room_sharp, - 'no_meeting_room_rounded': Icons.no_meeting_room_rounded, - 'no_meeting_room_outlined': Icons.no_meeting_room_outlined, - 'no_photography': Icons.no_photography, - 'no_photography_sharp': Icons.no_photography_sharp, - 'no_photography_rounded': Icons.no_photography_rounded, - 'no_photography_outlined': Icons.no_photography_outlined, - 'no_sim': Icons.no_sim, - 'no_sim_sharp': Icons.no_sim_sharp, - 'no_sim_rounded': Icons.no_sim_rounded, - 'no_sim_outlined': Icons.no_sim_outlined, - 'no_stroller': Icons.no_stroller, - 'no_stroller_sharp': Icons.no_stroller_sharp, - 'no_stroller_rounded': Icons.no_stroller_rounded, - 'no_stroller_outlined': Icons.no_stroller_outlined, - 'no_transfer': Icons.no_transfer, - 'no_transfer_sharp': Icons.no_transfer_sharp, - 'no_transfer_rounded': Icons.no_transfer_rounded, - 'no_transfer_outlined': Icons.no_transfer_outlined, - 'nordic_walking': Icons.nordic_walking, - 'nordic_walking_sharp': Icons.nordic_walking_sharp, - 'nordic_walking_rounded': Icons.nordic_walking_rounded, - 'nordic_walking_outlined': Icons.nordic_walking_outlined, - 'north': Icons.north, - 'north_sharp': Icons.north_sharp, - 'north_rounded': Icons.north_rounded, - 'north_outlined': Icons.north_outlined, - 'north_east': Icons.north_east, - 'north_east_sharp': Icons.north_east_sharp, - 'north_east_rounded': Icons.north_east_rounded, - 'north_east_outlined': Icons.north_east_outlined, - 'north_west': Icons.north_west, - 'north_west_sharp': Icons.north_west_sharp, - 'north_west_rounded': Icons.north_west_rounded, - 'north_west_outlined': Icons.north_west_outlined, - 'not_accessible': Icons.not_accessible, - 'not_accessible_sharp': Icons.not_accessible_sharp, - 'not_accessible_rounded': Icons.not_accessible_rounded, - 'not_accessible_outlined': Icons.not_accessible_outlined, - 'not_interested': Icons.not_interested, - 'not_interested_sharp': Icons.not_interested_sharp, - 'not_interested_rounded': Icons.not_interested_rounded, - 'not_interested_outlined': Icons.not_interested_outlined, - 'not_listed_location': Icons.not_listed_location, - 'not_listed_location_sharp': Icons.not_listed_location_sharp, - 'not_listed_location_rounded': Icons.not_listed_location_rounded, - 'not_listed_location_outlined': Icons.not_listed_location_outlined, - 'not_started': Icons.not_started, - 'not_started_sharp': Icons.not_started_sharp, - 'not_started_rounded': Icons.not_started_rounded, - 'not_started_outlined': Icons.not_started_outlined, - 'note': Icons.note, - 'note_sharp': Icons.note_sharp, - 'note_rounded': Icons.note_rounded, - 'note_outlined': Icons.note_outlined, - 'note_add': Icons.note_add, - 'note_add_sharp': Icons.note_add_sharp, - 'note_add_rounded': Icons.note_add_rounded, - 'note_add_outlined': Icons.note_add_outlined, - 'note_alt': Icons.note_alt, - 'note_alt_sharp': Icons.note_alt_sharp, - 'note_alt_rounded': Icons.note_alt_rounded, - 'note_alt_outlined': Icons.note_alt_outlined, - 'notes': Icons.notes, - 'notes_sharp': Icons.notes_sharp, - 'notes_rounded': Icons.notes_rounded, - 'notes_outlined': Icons.notes_outlined, - 'notification_add': Icons.notification_add, - 'notification_add_sharp': Icons.notification_add_sharp, - 'notification_add_rounded': Icons.notification_add_rounded, - 'notification_add_outlined': Icons.notification_add_outlined, - 'notification_important': Icons.notification_important, - 'notification_important_sharp': Icons.notification_important_sharp, - 'notification_important_rounded': Icons.notification_important_rounded, - 'notification_important_outlined': - Icons.notification_important_outlined, - 'notifications': Icons.notifications, - 'notifications_sharp': Icons.notifications_sharp, - 'notifications_rounded': Icons.notifications_rounded, - 'notifications_outlined': Icons.notifications_outlined, - 'notifications_active': Icons.notifications_active, - 'notifications_active_sharp': Icons.notifications_active_sharp, - 'notifications_active_rounded': Icons.notifications_active_rounded, - 'notifications_active_outlined': Icons.notifications_active_outlined, - 'notifications_none': Icons.notifications_none, - 'notifications_none_sharp': Icons.notifications_none_sharp, - 'notifications_none_rounded': Icons.notifications_none_rounded, - 'notifications_none_outlined': Icons.notifications_none_outlined, - 'notifications_off': Icons.notifications_off, - 'notifications_off_sharp': Icons.notifications_off_sharp, - 'notifications_off_rounded': Icons.notifications_off_rounded, - 'notifications_off_outlined': Icons.notifications_off_outlined, - 'notifications_on': Icons.notifications_on, - 'notifications_on_sharp': Icons.notifications_on_sharp, - 'notifications_on_rounded': Icons.notifications_on_rounded, - 'notifications_on_outlined': Icons.notifications_on_outlined, - 'notifications_paused': Icons.notifications_paused, - 'notifications_paused_sharp': Icons.notifications_paused_sharp, - 'notifications_paused_rounded': Icons.notifications_paused_rounded, - 'notifications_paused_outlined': Icons.notifications_paused_outlined, - 'now_wallpaper': Icons.now_wallpaper, - 'now_wallpaper_sharp': Icons.now_wallpaper_sharp, - 'now_wallpaper_rounded': Icons.now_wallpaper_rounded, - 'now_wallpaper_outlined': Icons.now_wallpaper_outlined, - 'now_widgets': Icons.now_widgets, - 'now_widgets_sharp': Icons.now_widgets_sharp, - 'now_widgets_rounded': Icons.now_widgets_rounded, - 'now_widgets_outlined': Icons.now_widgets_outlined, - 'offline_bolt': Icons.offline_bolt, - 'offline_bolt_sharp': Icons.offline_bolt_sharp, - 'offline_bolt_rounded': Icons.offline_bolt_rounded, - 'offline_bolt_outlined': Icons.offline_bolt_outlined, - 'offline_pin': Icons.offline_pin, - 'offline_pin_sharp': Icons.offline_pin_sharp, - 'offline_pin_rounded': Icons.offline_pin_rounded, - 'offline_pin_outlined': Icons.offline_pin_outlined, - 'offline_share': Icons.offline_share, - 'offline_share_sharp': Icons.offline_share_sharp, - 'offline_share_rounded': Icons.offline_share_rounded, - 'offline_share_outlined': Icons.offline_share_outlined, - 'ondemand_video': Icons.ondemand_video, - 'ondemand_video_sharp': Icons.ondemand_video_sharp, - 'ondemand_video_rounded': Icons.ondemand_video_rounded, - 'ondemand_video_outlined': Icons.ondemand_video_outlined, - 'online_prediction': Icons.online_prediction, - 'online_prediction_sharp': Icons.online_prediction_sharp, - 'online_prediction_rounded': Icons.online_prediction_rounded, - 'online_prediction_outlined': Icons.online_prediction_outlined, - 'opacity': Icons.opacity, - 'opacity_sharp': Icons.opacity_sharp, - 'opacity_rounded': Icons.opacity_rounded, - 'opacity_outlined': Icons.opacity_outlined, - 'open_in_browser': Icons.open_in_browser, - 'open_in_browser_sharp': Icons.open_in_browser_sharp, - 'open_in_browser_rounded': Icons.open_in_browser_rounded, - 'open_in_browser_outlined': Icons.open_in_browser_outlined, - 'open_in_full': Icons.open_in_full, - 'open_in_full_sharp': Icons.open_in_full_sharp, - 'open_in_full_rounded': Icons.open_in_full_rounded, - 'open_in_full_outlined': Icons.open_in_full_outlined, - 'open_in_new': Icons.open_in_new, - 'open_in_new_sharp': Icons.open_in_new_sharp, - 'open_in_new_rounded': Icons.open_in_new_rounded, - 'open_in_new_outlined': Icons.open_in_new_outlined, - 'open_in_new_off': Icons.open_in_new_off, - 'open_in_new_off_sharp': Icons.open_in_new_off_sharp, - 'open_in_new_off_rounded': Icons.open_in_new_off_rounded, - 'open_in_new_off_outlined': Icons.open_in_new_off_outlined, - 'open_with': Icons.open_with, - 'open_with_sharp': Icons.open_with_sharp, - 'open_with_rounded': Icons.open_with_rounded, - 'open_with_outlined': Icons.open_with_outlined, - 'other_houses': Icons.other_houses, - 'other_houses_sharp': Icons.other_houses_sharp, - 'other_houses_rounded': Icons.other_houses_rounded, - 'other_houses_outlined': Icons.other_houses_outlined, - 'outbond': Icons.outbond, - 'outbond_sharp': Icons.outbond_sharp, - 'outbond_rounded': Icons.outbond_rounded, - 'outbond_outlined': Icons.outbond_outlined, - 'outbound': Icons.outbound, - 'outbound_sharp': Icons.outbound_sharp, - 'outbound_rounded': Icons.outbound_rounded, - 'outbound_outlined': Icons.outbound_outlined, - 'outbox': Icons.outbox, - 'outbox_sharp': Icons.outbox_sharp, - 'outbox_rounded': Icons.outbox_rounded, - 'outbox_outlined': Icons.outbox_outlined, - 'outdoor_grill': Icons.outdoor_grill, - 'outdoor_grill_sharp': Icons.outdoor_grill_sharp, - 'outdoor_grill_rounded': Icons.outdoor_grill_rounded, - 'outdoor_grill_outlined': Icons.outdoor_grill_outlined, - 'outgoing_mail': Icons.outgoing_mail, - 'outlet': Icons.outlet, - 'outlet_sharp': Icons.outlet_sharp, - 'outlet_rounded': Icons.outlet_rounded, - 'outlet_outlined': Icons.outlet_outlined, - 'outlined_flag': Icons.outlined_flag, - 'outlined_flag_sharp': Icons.outlined_flag_sharp, - 'outlined_flag_rounded': Icons.outlined_flag_rounded, - 'outlined_flag_outlined': Icons.outlined_flag_outlined, - 'padding': Icons.padding, - 'padding_sharp': Icons.padding_sharp, - 'padding_rounded': Icons.padding_rounded, - 'padding_outlined': Icons.padding_outlined, - 'pages': Icons.pages, - 'pages_sharp': Icons.pages_sharp, - 'pages_rounded': Icons.pages_rounded, - 'pages_outlined': Icons.pages_outlined, - 'pageview': Icons.pageview, - 'pageview_sharp': Icons.pageview_sharp, - 'pageview_rounded': Icons.pageview_rounded, - 'pageview_outlined': Icons.pageview_outlined, - 'paid': Icons.paid, - 'paid_sharp': Icons.paid_sharp, - 'paid_rounded': Icons.paid_rounded, - 'paid_outlined': Icons.paid_outlined, - 'palette': Icons.palette, - 'palette_sharp': Icons.palette_sharp, - 'palette_rounded': Icons.palette_rounded, - 'palette_outlined': Icons.palette_outlined, - 'pan_tool': Icons.pan_tool, - 'pan_tool_sharp': Icons.pan_tool_sharp, - 'pan_tool_rounded': Icons.pan_tool_rounded, - 'pan_tool_outlined': Icons.pan_tool_outlined, - 'panorama': Icons.panorama, - 'panorama_sharp': Icons.panorama_sharp, - 'panorama_rounded': Icons.panorama_rounded, - 'panorama_outlined': Icons.panorama_outlined, - 'panorama_fish_eye': Icons.panorama_fish_eye, - 'panorama_fish_eye_sharp': Icons.panorama_fish_eye_sharp, - 'panorama_fish_eye_rounded': Icons.panorama_fish_eye_rounded, - 'panorama_fish_eye_outlined': Icons.panorama_fish_eye_outlined, - 'panorama_fisheye': Icons.panorama_fisheye, - 'panorama_fisheye_sharp': Icons.panorama_fisheye_sharp, - 'panorama_fisheye_rounded': Icons.panorama_fisheye_rounded, - 'panorama_fisheye_outlined': Icons.panorama_fisheye_outlined, - 'panorama_horizontal': Icons.panorama_horizontal, - 'panorama_horizontal_sharp': Icons.panorama_horizontal_sharp, - 'panorama_horizontal_rounded': Icons.panorama_horizontal_rounded, - 'panorama_horizontal_outlined': Icons.panorama_horizontal_outlined, - 'panorama_horizontal_select': Icons.panorama_horizontal_select, - 'panorama_horizontal_select_sharp': - Icons.panorama_horizontal_select_sharp, - 'panorama_horizontal_select_rounded': - Icons.panorama_horizontal_select_rounded, - 'panorama_horizontal_select_outlined': - Icons.panorama_horizontal_select_outlined, - 'panorama_photosphere': Icons.panorama_photosphere, - 'panorama_photosphere_sharp': Icons.panorama_photosphere_sharp, - 'panorama_photosphere_rounded': Icons.panorama_photosphere_rounded, - 'panorama_photosphere_outlined': Icons.panorama_photosphere_outlined, - 'panorama_photosphere_select': Icons.panorama_photosphere_select, - 'panorama_photosphere_select_sharp': - Icons.panorama_photosphere_select_sharp, - 'panorama_photosphere_select_rounded': - Icons.panorama_photosphere_select_rounded, - 'panorama_photosphere_select_outlined': - Icons.panorama_photosphere_select_outlined, - 'panorama_vertical': Icons.panorama_vertical, - 'panorama_vertical_sharp': Icons.panorama_vertical_sharp, - 'panorama_vertical_rounded': Icons.panorama_vertical_rounded, - 'panorama_vertical_outlined': Icons.panorama_vertical_outlined, - 'panorama_vertical_select': Icons.panorama_vertical_select, - 'panorama_vertical_select_sharp': Icons.panorama_vertical_select_sharp, - 'panorama_vertical_select_rounded': - Icons.panorama_vertical_select_rounded, - 'panorama_vertical_select_outlined': - Icons.panorama_vertical_select_outlined, - 'panorama_wide_angle': Icons.panorama_wide_angle, - 'panorama_wide_angle_sharp': Icons.panorama_wide_angle_sharp, - 'panorama_wide_angle_rounded': Icons.panorama_wide_angle_rounded, - 'panorama_wide_angle_outlined': Icons.panorama_wide_angle_outlined, - 'panorama_wide_angle_select': Icons.panorama_wide_angle_select, - 'panorama_wide_angle_select_sharp': - Icons.panorama_wide_angle_select_sharp, - 'panorama_wide_angle_select_rounded': - Icons.panorama_wide_angle_select_rounded, - 'panorama_wide_angle_select_outlined': - Icons.panorama_wide_angle_select_outlined, - 'paragliding': Icons.paragliding, - 'paragliding_sharp': Icons.paragliding_sharp, - 'paragliding_rounded': Icons.paragliding_rounded, - 'paragliding_outlined': Icons.paragliding_outlined, - 'park': Icons.park, - 'park_sharp': Icons.park_sharp, - 'park_rounded': Icons.park_rounded, - 'park_outlined': Icons.park_outlined, - 'party_mode': Icons.party_mode, - 'party_mode_sharp': Icons.party_mode_sharp, - 'party_mode_rounded': Icons.party_mode_rounded, - 'party_mode_outlined': Icons.party_mode_outlined, - 'password': Icons.password, - 'password_sharp': Icons.password_sharp, - 'password_rounded': Icons.password_rounded, - 'password_outlined': Icons.password_outlined, - 'paste': Icons.paste, - 'paste_sharp': Icons.paste_sharp, - 'paste_rounded': Icons.paste_rounded, - 'paste_outlined': Icons.paste_outlined, - 'pattern': Icons.pattern, - 'pattern_sharp': Icons.pattern_sharp, - 'pattern_rounded': Icons.pattern_rounded, - 'pattern_outlined': Icons.pattern_outlined, - 'pause': Icons.pause, - 'pause_sharp': Icons.pause_sharp, - 'pause_rounded': Icons.pause_rounded, - 'pause_outlined': Icons.pause_outlined, - 'pause_circle': Icons.pause_circle, - 'pause_circle_sharp': Icons.pause_circle_sharp, - 'pause_circle_rounded': Icons.pause_circle_rounded, - 'pause_circle_outlined': Icons.pause_circle_outlined, - 'pause_circle_filled': Icons.pause_circle_filled, - 'pause_circle_filled_sharp': Icons.pause_circle_filled_sharp, - 'pause_circle_filled_rounded': Icons.pause_circle_filled_rounded, - 'pause_circle_filled_outlined': Icons.pause_circle_filled_outlined, - 'pause_circle_outline': Icons.pause_circle_outline, - 'pause_circle_outline_sharp': Icons.pause_circle_outline_sharp, - 'pause_circle_outline_rounded': Icons.pause_circle_outline_rounded, - 'pause_circle_outline_outlined': Icons.pause_circle_outline_outlined, - 'pause_presentation': Icons.pause_presentation, - 'pause_presentation_sharp': Icons.pause_presentation_sharp, - 'pause_presentation_rounded': Icons.pause_presentation_rounded, - 'pause_presentation_outlined': Icons.pause_presentation_outlined, - 'payment': Icons.payment, - 'payment_sharp': Icons.payment_sharp, - 'payment_rounded': Icons.payment_rounded, - 'payment_outlined': Icons.payment_outlined, - 'payments': Icons.payments, - 'payments_sharp': Icons.payments_sharp, - 'payments_rounded': Icons.payments_rounded, - 'payments_outlined': Icons.payments_outlined, - 'pedal_bike': Icons.pedal_bike, - 'pedal_bike_sharp': Icons.pedal_bike_sharp, - 'pedal_bike_rounded': Icons.pedal_bike_rounded, - 'pedal_bike_outlined': Icons.pedal_bike_outlined, - 'pending': Icons.pending, - 'pending_sharp': Icons.pending_sharp, - 'pending_rounded': Icons.pending_rounded, - 'pending_outlined': Icons.pending_outlined, - 'pending_actions': Icons.pending_actions, - 'pending_actions_sharp': Icons.pending_actions_sharp, - 'pending_actions_rounded': Icons.pending_actions_rounded, - 'pending_actions_outlined': Icons.pending_actions_outlined, - 'people': Icons.people, - 'people_sharp': Icons.people_sharp, - 'people_rounded': Icons.people_rounded, - 'people_outlined': Icons.people_outlined, - 'people_alt': Icons.people_alt, - 'people_alt_sharp': Icons.people_alt_sharp, - 'people_alt_rounded': Icons.people_alt_rounded, - 'people_alt_outlined': Icons.people_alt_outlined, - 'people_outline': Icons.people_outline, - 'people_outline_sharp': Icons.people_outline_sharp, - 'people_outline_rounded': Icons.people_outline_rounded, - 'people_outline_outlined': Icons.people_outline_outlined, - 'perm_camera_mic': Icons.perm_camera_mic, - 'perm_camera_mic_sharp': Icons.perm_camera_mic_sharp, - 'perm_camera_mic_rounded': Icons.perm_camera_mic_rounded, - 'perm_camera_mic_outlined': Icons.perm_camera_mic_outlined, - 'perm_contact_cal': Icons.perm_contact_cal, - 'perm_contact_cal_sharp': Icons.perm_contact_cal_sharp, - 'perm_contact_cal_rounded': Icons.perm_contact_cal_rounded, - 'perm_contact_cal_outlined': Icons.perm_contact_cal_outlined, - 'perm_contact_calendar': Icons.perm_contact_calendar, - 'perm_contact_calendar_sharp': Icons.perm_contact_calendar_sharp, - 'perm_contact_calendar_rounded': Icons.perm_contact_calendar_rounded, - 'perm_contact_calendar_outlined': Icons.perm_contact_calendar_outlined, - 'perm_data_setting': Icons.perm_data_setting, - 'perm_data_setting_sharp': Icons.perm_data_setting_sharp, - 'perm_data_setting_rounded': Icons.perm_data_setting_rounded, - 'perm_data_setting_outlined': Icons.perm_data_setting_outlined, - 'perm_device_info': Icons.perm_device_info, - 'perm_device_info_sharp': Icons.perm_device_info_sharp, - 'perm_device_info_rounded': Icons.perm_device_info_rounded, - 'perm_device_info_outlined': Icons.perm_device_info_outlined, - 'perm_device_information': Icons.perm_device_information, - 'perm_device_information_sharp': Icons.perm_device_information_sharp, - 'perm_device_information_rounded': - Icons.perm_device_information_rounded, - 'perm_device_information_outlined': - Icons.perm_device_information_outlined, - 'perm_identity': Icons.perm_identity, - 'perm_identity_sharp': Icons.perm_identity_sharp, - 'perm_identity_rounded': Icons.perm_identity_rounded, - 'perm_identity_outlined': Icons.perm_identity_outlined, - 'perm_media': Icons.perm_media, - 'perm_media_sharp': Icons.perm_media_sharp, - 'perm_media_rounded': Icons.perm_media_rounded, - 'perm_media_outlined': Icons.perm_media_outlined, - 'perm_phone_msg': Icons.perm_phone_msg, - 'perm_phone_msg_sharp': Icons.perm_phone_msg_sharp, - 'perm_phone_msg_rounded': Icons.perm_phone_msg_rounded, - 'perm_phone_msg_outlined': Icons.perm_phone_msg_outlined, - 'perm_scan_wifi': Icons.perm_scan_wifi, - 'perm_scan_wifi_sharp': Icons.perm_scan_wifi_sharp, - 'perm_scan_wifi_rounded': Icons.perm_scan_wifi_rounded, - 'perm_scan_wifi_outlined': Icons.perm_scan_wifi_outlined, - 'person': Icons.person, - 'person_sharp': Icons.person_sharp, - 'person_rounded': Icons.person_rounded, - 'person_outlined': Icons.person_outlined, - 'person_add': Icons.person_add, - 'person_add_sharp': Icons.person_add_sharp, - 'person_add_rounded': Icons.person_add_rounded, - 'person_add_outlined': Icons.person_add_outlined, - 'person_add_alt': Icons.person_add_alt, - 'person_add_alt_sharp': Icons.person_add_alt_sharp, - 'person_add_alt_rounded': Icons.person_add_alt_rounded, - 'person_add_alt_outlined': Icons.person_add_alt_outlined, - 'person_add_alt_1': Icons.person_add_alt_1, - 'person_add_alt_1_sharp': Icons.person_add_alt_1_sharp, - 'person_add_alt_1_rounded': Icons.person_add_alt_1_rounded, - 'person_add_alt_1_outlined': Icons.person_add_alt_1_outlined, - 'person_add_disabled': Icons.person_add_disabled, - 'person_add_disabled_sharp': Icons.person_add_disabled_sharp, - 'person_add_disabled_rounded': Icons.person_add_disabled_rounded, - 'person_add_disabled_outlined': Icons.person_add_disabled_outlined, - 'person_off': Icons.person_off, - 'person_off_sharp': Icons.person_off_sharp, - 'person_off_rounded': Icons.person_off_rounded, - 'person_off_outlined': Icons.person_off_outlined, - 'person_outline': Icons.person_outline, - 'person_outline_sharp': Icons.person_outline_sharp, - 'person_outline_rounded': Icons.person_outline_rounded, - 'person_outline_outlined': Icons.person_outline_outlined, - 'person_pin': Icons.person_pin, - 'person_pin_sharp': Icons.person_pin_sharp, - 'person_pin_rounded': Icons.person_pin_rounded, - 'person_pin_outlined': Icons.person_pin_outlined, - 'person_pin_circle': Icons.person_pin_circle, - 'person_pin_circle_sharp': Icons.person_pin_circle_sharp, - 'person_pin_circle_rounded': Icons.person_pin_circle_rounded, - 'person_pin_circle_outlined': Icons.person_pin_circle_outlined, - 'person_remove': Icons.person_remove, - 'person_remove_sharp': Icons.person_remove_sharp, - 'person_remove_rounded': Icons.person_remove_rounded, - 'person_remove_outlined': Icons.person_remove_outlined, - 'person_remove_alt_1': Icons.person_remove_alt_1, - 'person_remove_alt_1_sharp': Icons.person_remove_alt_1_sharp, - 'person_remove_alt_1_rounded': Icons.person_remove_alt_1_rounded, - 'person_remove_alt_1_outlined': Icons.person_remove_alt_1_outlined, - 'person_search': Icons.person_search, - 'person_search_sharp': Icons.person_search_sharp, - 'person_search_rounded': Icons.person_search_rounded, - 'person_search_outlined': Icons.person_search_outlined, - 'personal_injury': Icons.personal_injury, - 'personal_injury_sharp': Icons.personal_injury_sharp, - 'personal_injury_rounded': Icons.personal_injury_rounded, - 'personal_injury_outlined': Icons.personal_injury_outlined, - 'personal_video': Icons.personal_video, - 'personal_video_sharp': Icons.personal_video_sharp, - 'personal_video_rounded': Icons.personal_video_rounded, - 'personal_video_outlined': Icons.personal_video_outlined, - 'pest_control': Icons.pest_control, - 'pest_control_sharp': Icons.pest_control_sharp, - 'pest_control_rounded': Icons.pest_control_rounded, - 'pest_control_outlined': Icons.pest_control_outlined, - 'pest_control_rodent': Icons.pest_control_rodent, - 'pest_control_rodent_sharp': Icons.pest_control_rodent_sharp, - 'pest_control_rodent_rounded': Icons.pest_control_rodent_rounded, - 'pest_control_rodent_outlined': Icons.pest_control_rodent_outlined, - 'pets': Icons.pets, - 'pets_sharp': Icons.pets_sharp, - 'pets_rounded': Icons.pets_rounded, - 'pets_outlined': Icons.pets_outlined, - 'phone': Icons.phone, - 'phone_sharp': Icons.phone_sharp, - 'phone_rounded': Icons.phone_rounded, - 'phone_outlined': Icons.phone_outlined, - 'phone_android': Icons.phone_android, - 'phone_android_sharp': Icons.phone_android_sharp, - 'phone_android_rounded': Icons.phone_android_rounded, - 'phone_android_outlined': Icons.phone_android_outlined, - 'phone_bluetooth_speaker': Icons.phone_bluetooth_speaker, - 'phone_bluetooth_speaker_sharp': Icons.phone_bluetooth_speaker_sharp, - 'phone_bluetooth_speaker_rounded': - Icons.phone_bluetooth_speaker_rounded, - 'phone_bluetooth_speaker_outlined': - Icons.phone_bluetooth_speaker_outlined, - 'phone_callback': Icons.phone_callback, - 'phone_callback_sharp': Icons.phone_callback_sharp, - 'phone_callback_rounded': Icons.phone_callback_rounded, - 'phone_callback_outlined': Icons.phone_callback_outlined, - 'phone_disabled': Icons.phone_disabled, - 'phone_disabled_sharp': Icons.phone_disabled_sharp, - 'phone_disabled_rounded': Icons.phone_disabled_rounded, - 'phone_disabled_outlined': Icons.phone_disabled_outlined, - 'phone_enabled': Icons.phone_enabled, - 'phone_enabled_sharp': Icons.phone_enabled_sharp, - 'phone_enabled_rounded': Icons.phone_enabled_rounded, - 'phone_enabled_outlined': Icons.phone_enabled_outlined, - 'phone_forwarded': Icons.phone_forwarded, - 'phone_forwarded_sharp': Icons.phone_forwarded_sharp, - 'phone_forwarded_rounded': Icons.phone_forwarded_rounded, - 'phone_forwarded_outlined': Icons.phone_forwarded_outlined, - 'phone_in_talk': Icons.phone_in_talk, - 'phone_in_talk_sharp': Icons.phone_in_talk_sharp, - 'phone_in_talk_rounded': Icons.phone_in_talk_rounded, - 'phone_in_talk_outlined': Icons.phone_in_talk_outlined, - 'phone_iphone': Icons.phone_iphone, - 'phone_iphone_sharp': Icons.phone_iphone_sharp, - 'phone_iphone_rounded': Icons.phone_iphone_rounded, - 'phone_iphone_outlined': Icons.phone_iphone_outlined, - 'phone_locked': Icons.phone_locked, - 'phone_locked_sharp': Icons.phone_locked_sharp, - 'phone_locked_rounded': Icons.phone_locked_rounded, - 'phone_locked_outlined': Icons.phone_locked_outlined, - 'phone_missed': Icons.phone_missed, - 'phone_missed_sharp': Icons.phone_missed_sharp, - 'phone_missed_rounded': Icons.phone_missed_rounded, - 'phone_missed_outlined': Icons.phone_missed_outlined, - 'phone_paused': Icons.phone_paused, - 'phone_paused_sharp': Icons.phone_paused_sharp, - 'phone_paused_rounded': Icons.phone_paused_rounded, - 'phone_paused_outlined': Icons.phone_paused_outlined, - 'phonelink': Icons.phonelink, - 'phonelink_sharp': Icons.phonelink_sharp, - 'phonelink_rounded': Icons.phonelink_rounded, - 'phonelink_outlined': Icons.phonelink_outlined, - 'phonelink_erase': Icons.phonelink_erase, - 'phonelink_erase_sharp': Icons.phonelink_erase_sharp, - 'phonelink_erase_rounded': Icons.phonelink_erase_rounded, - 'phonelink_erase_outlined': Icons.phonelink_erase_outlined, - 'phonelink_lock': Icons.phonelink_lock, - 'phonelink_lock_sharp': Icons.phonelink_lock_sharp, - 'phonelink_lock_rounded': Icons.phonelink_lock_rounded, - 'phonelink_lock_outlined': Icons.phonelink_lock_outlined, - 'phonelink_off': Icons.phonelink_off, - 'phonelink_off_sharp': Icons.phonelink_off_sharp, - 'phonelink_off_rounded': Icons.phonelink_off_rounded, - 'phonelink_off_outlined': Icons.phonelink_off_outlined, - 'phonelink_ring': Icons.phonelink_ring, - 'phonelink_ring_sharp': Icons.phonelink_ring_sharp, - 'phonelink_ring_rounded': Icons.phonelink_ring_rounded, - 'phonelink_ring_outlined': Icons.phonelink_ring_outlined, - 'phonelink_setup': Icons.phonelink_setup, - 'phonelink_setup_sharp': Icons.phonelink_setup_sharp, - 'phonelink_setup_rounded': Icons.phonelink_setup_rounded, - 'phonelink_setup_outlined': Icons.phonelink_setup_outlined, - 'photo': Icons.photo, - 'photo_sharp': Icons.photo_sharp, - 'photo_rounded': Icons.photo_rounded, - 'photo_outlined': Icons.photo_outlined, - 'photo_album': Icons.photo_album, - 'photo_album_sharp': Icons.photo_album_sharp, - 'photo_album_rounded': Icons.photo_album_rounded, - 'photo_album_outlined': Icons.photo_album_outlined, - 'photo_camera': Icons.photo_camera, - 'photo_camera_sharp': Icons.photo_camera_sharp, - 'photo_camera_rounded': Icons.photo_camera_rounded, - 'photo_camera_outlined': Icons.photo_camera_outlined, - 'photo_camera_back': Icons.photo_camera_back, - 'photo_camera_back_sharp': Icons.photo_camera_back_sharp, - 'photo_camera_back_rounded': Icons.photo_camera_back_rounded, - 'photo_camera_back_outlined': Icons.photo_camera_back_outlined, - 'photo_camera_front': Icons.photo_camera_front, - 'photo_camera_front_sharp': Icons.photo_camera_front_sharp, - 'photo_camera_front_rounded': Icons.photo_camera_front_rounded, - 'photo_camera_front_outlined': Icons.photo_camera_front_outlined, - 'photo_filter': Icons.photo_filter, - 'photo_filter_sharp': Icons.photo_filter_sharp, - 'photo_filter_rounded': Icons.photo_filter_rounded, - 'photo_filter_outlined': Icons.photo_filter_outlined, - 'photo_library': Icons.photo_library, - 'photo_library_sharp': Icons.photo_library_sharp, - 'photo_library_rounded': Icons.photo_library_rounded, - 'photo_library_outlined': Icons.photo_library_outlined, - 'photo_size_select_actual': Icons.photo_size_select_actual, - 'photo_size_select_actual_sharp': Icons.photo_size_select_actual_sharp, - 'photo_size_select_actual_rounded': - Icons.photo_size_select_actual_rounded, - 'photo_size_select_actual_outlined': - Icons.photo_size_select_actual_outlined, - 'photo_size_select_large': Icons.photo_size_select_large, - 'photo_size_select_large_sharp': Icons.photo_size_select_large_sharp, - 'photo_size_select_large_rounded': - Icons.photo_size_select_large_rounded, - 'photo_size_select_large_outlined': - Icons.photo_size_select_large_outlined, - 'photo_size_select_small': Icons.photo_size_select_small, - 'photo_size_select_small_sharp': Icons.photo_size_select_small_sharp, - 'photo_size_select_small_rounded': - Icons.photo_size_select_small_rounded, - 'photo_size_select_small_outlined': - Icons.photo_size_select_small_outlined, - 'piano': Icons.piano, - 'piano_sharp': Icons.piano_sharp, - 'piano_rounded': Icons.piano_rounded, - 'piano_outlined': Icons.piano_outlined, - 'piano_off': Icons.piano_off, - 'piano_off_sharp': Icons.piano_off_sharp, - 'piano_off_rounded': Icons.piano_off_rounded, - 'piano_off_outlined': Icons.piano_off_outlined, - 'picture_as_pdf': Icons.picture_as_pdf, - 'picture_as_pdf_sharp': Icons.picture_as_pdf_sharp, - 'picture_as_pdf_rounded': Icons.picture_as_pdf_rounded, - 'picture_as_pdf_outlined': Icons.picture_as_pdf_outlined, - 'picture_in_picture': Icons.picture_in_picture, - 'picture_in_picture_sharp': Icons.picture_in_picture_sharp, - 'picture_in_picture_rounded': Icons.picture_in_picture_rounded, - 'picture_in_picture_outlined': Icons.picture_in_picture_outlined, - 'picture_in_picture_alt': Icons.picture_in_picture_alt, - 'picture_in_picture_alt_sharp': Icons.picture_in_picture_alt_sharp, - 'picture_in_picture_alt_rounded': Icons.picture_in_picture_alt_rounded, - 'picture_in_picture_alt_outlined': - Icons.picture_in_picture_alt_outlined, - 'pie_chart': Icons.pie_chart, - 'pie_chart_sharp': Icons.pie_chart_sharp, - 'pie_chart_rounded': Icons.pie_chart_rounded, - 'pie_chart_outlined': Icons.pie_chart_outlined, - 'pie_chart_outline': Icons.pie_chart_outline, - 'pie_chart_outline_sharp': Icons.pie_chart_outline_sharp, - 'pie_chart_outline_rounded': Icons.pie_chart_outline_rounded, - 'pie_chart_outline_outlined': Icons.pie_chart_outline_outlined, - 'pin': Icons.pin, - 'pin_sharp': Icons.pin_sharp, - 'pin_rounded': Icons.pin_rounded, - 'pin_outlined': Icons.pin_outlined, - 'pin_drop': Icons.pin_drop, - 'pin_drop_sharp': Icons.pin_drop_sharp, - 'pin_drop_rounded': Icons.pin_drop_rounded, - 'pin_drop_outlined': Icons.pin_drop_outlined, - 'pivot_table_chart': Icons.pivot_table_chart, - 'pivot_table_chart_sharp': Icons.pivot_table_chart_sharp, - 'pivot_table_chart_rounded': Icons.pivot_table_chart_rounded, - 'pivot_table_chart_outlined': Icons.pivot_table_chart_outlined, - 'place': Icons.place, - 'place_sharp': Icons.place_sharp, - 'place_rounded': Icons.place_rounded, - 'place_outlined': Icons.place_outlined, - 'plagiarism': Icons.plagiarism, - 'plagiarism_sharp': Icons.plagiarism_sharp, - 'plagiarism_rounded': Icons.plagiarism_rounded, - 'plagiarism_outlined': Icons.plagiarism_outlined, - 'play_arrow': Icons.play_arrow, - 'play_arrow_sharp': Icons.play_arrow_sharp, - 'play_arrow_rounded': Icons.play_arrow_rounded, - 'play_arrow_outlined': Icons.play_arrow_outlined, - 'play_circle': Icons.play_circle, - 'play_circle_sharp': Icons.play_circle_sharp, - 'play_circle_rounded': Icons.play_circle_rounded, - 'play_circle_outlined': Icons.play_circle_outlined, - 'play_circle_fill': Icons.play_circle_fill, - 'play_circle_fill_sharp': Icons.play_circle_fill_sharp, - 'play_circle_fill_rounded': Icons.play_circle_fill_rounded, - 'play_circle_fill_outlined': Icons.play_circle_fill_outlined, - 'play_circle_filled': Icons.play_circle_filled, - 'play_circle_filled_sharp': Icons.play_circle_filled_sharp, - 'play_circle_filled_rounded': Icons.play_circle_filled_rounded, - 'play_circle_filled_outlined': Icons.play_circle_filled_outlined, - 'play_circle_outline': Icons.play_circle_outline, - 'play_circle_outline_sharp': Icons.play_circle_outline_sharp, - 'play_circle_outline_rounded': Icons.play_circle_outline_rounded, - 'play_circle_outline_outlined': Icons.play_circle_outline_outlined, - 'play_disabled': Icons.play_disabled, - 'play_disabled_sharp': Icons.play_disabled_sharp, - 'play_disabled_rounded': Icons.play_disabled_rounded, - 'play_disabled_outlined': Icons.play_disabled_outlined, - 'play_for_work': Icons.play_for_work, - 'play_for_work_sharp': Icons.play_for_work_sharp, - 'play_for_work_rounded': Icons.play_for_work_rounded, - 'play_for_work_outlined': Icons.play_for_work_outlined, - 'play_lesson': Icons.play_lesson, - 'play_lesson_sharp': Icons.play_lesson_sharp, - 'play_lesson_rounded': Icons.play_lesson_rounded, - 'play_lesson_outlined': Icons.play_lesson_outlined, - 'playlist_add': Icons.playlist_add, - 'playlist_add_sharp': Icons.playlist_add_sharp, - 'playlist_add_rounded': Icons.playlist_add_rounded, - 'playlist_add_outlined': Icons.playlist_add_outlined, - 'playlist_add_check': Icons.playlist_add_check, - 'playlist_add_check_sharp': Icons.playlist_add_check_sharp, - 'playlist_add_check_rounded': Icons.playlist_add_check_rounded, - 'playlist_add_check_outlined': Icons.playlist_add_check_outlined, - 'playlist_play': Icons.playlist_play, - 'playlist_play_sharp': Icons.playlist_play_sharp, - 'playlist_play_rounded': Icons.playlist_play_rounded, - 'playlist_play_outlined': Icons.playlist_play_outlined, - 'plumbing': Icons.plumbing, - 'plumbing_sharp': Icons.plumbing_sharp, - 'plumbing_rounded': Icons.plumbing_rounded, - 'plumbing_outlined': Icons.plumbing_outlined, - 'plus_one': Icons.plus_one, - 'plus_one_sharp': Icons.plus_one_sharp, - 'plus_one_rounded': Icons.plus_one_rounded, - 'plus_one_outlined': Icons.plus_one_outlined, - 'podcasts': Icons.podcasts, - 'podcasts_sharp': Icons.podcasts_sharp, - 'podcasts_rounded': Icons.podcasts_rounded, - 'podcasts_outlined': Icons.podcasts_outlined, - 'point_of_sale': Icons.point_of_sale, - 'point_of_sale_sharp': Icons.point_of_sale_sharp, - 'point_of_sale_rounded': Icons.point_of_sale_rounded, - 'point_of_sale_outlined': Icons.point_of_sale_outlined, - 'policy': Icons.policy, - 'policy_sharp': Icons.policy_sharp, - 'policy_rounded': Icons.policy_rounded, - 'policy_outlined': Icons.policy_outlined, - 'poll': Icons.poll, - 'poll_sharp': Icons.poll_sharp, - 'poll_rounded': Icons.poll_rounded, - 'poll_outlined': Icons.poll_outlined, - 'polymer': Icons.polymer, - 'polymer_sharp': Icons.polymer_sharp, - 'polymer_rounded': Icons.polymer_rounded, - 'polymer_outlined': Icons.polymer_outlined, - 'pool': Icons.pool, - 'pool_sharp': Icons.pool_sharp, - 'pool_rounded': Icons.pool_rounded, - 'pool_outlined': Icons.pool_outlined, - 'portable_wifi_off': Icons.portable_wifi_off, - 'portable_wifi_off_sharp': Icons.portable_wifi_off_sharp, - 'portable_wifi_off_rounded': Icons.portable_wifi_off_rounded, - 'portable_wifi_off_outlined': Icons.portable_wifi_off_outlined, - 'portrait': Icons.portrait, - 'portrait_sharp': Icons.portrait_sharp, - 'portrait_rounded': Icons.portrait_rounded, - 'portrait_outlined': Icons.portrait_outlined, - 'post_add': Icons.post_add, - 'post_add_sharp': Icons.post_add_sharp, - 'post_add_rounded': Icons.post_add_rounded, - 'post_add_outlined': Icons.post_add_outlined, - 'power': Icons.power, - 'power_sharp': Icons.power_sharp, - 'power_rounded': Icons.power_rounded, - 'power_outlined': Icons.power_outlined, - 'power_input': Icons.power_input, - 'power_input_sharp': Icons.power_input_sharp, - 'power_input_rounded': Icons.power_input_rounded, - 'power_input_outlined': Icons.power_input_outlined, - 'power_off': Icons.power_off, - 'power_off_sharp': Icons.power_off_sharp, - 'power_off_rounded': Icons.power_off_rounded, - 'power_off_outlined': Icons.power_off_outlined, - 'power_settings_new': Icons.power_settings_new, - 'power_settings_new_sharp': Icons.power_settings_new_sharp, - 'power_settings_new_rounded': Icons.power_settings_new_rounded, - 'power_settings_new_outlined': Icons.power_settings_new_outlined, - 'precision_manufacturing': Icons.precision_manufacturing, - 'precision_manufacturing_sharp': Icons.precision_manufacturing_sharp, - 'precision_manufacturing_rounded': - Icons.precision_manufacturing_rounded, - 'precision_manufacturing_outlined': - Icons.precision_manufacturing_outlined, - 'pregnant_woman': Icons.pregnant_woman, - 'pregnant_woman_sharp': Icons.pregnant_woman_sharp, - 'pregnant_woman_rounded': Icons.pregnant_woman_rounded, - 'pregnant_woman_outlined': Icons.pregnant_woman_outlined, - 'present_to_all': Icons.present_to_all, - 'present_to_all_sharp': Icons.present_to_all_sharp, - 'present_to_all_rounded': Icons.present_to_all_rounded, - 'present_to_all_outlined': Icons.present_to_all_outlined, - 'preview': Icons.preview, - 'preview_sharp': Icons.preview_sharp, - 'preview_rounded': Icons.preview_rounded, - 'preview_outlined': Icons.preview_outlined, - 'price_change': Icons.price_change, - 'price_change_sharp': Icons.price_change_sharp, - 'price_change_rounded': Icons.price_change_rounded, - 'price_change_outlined': Icons.price_change_outlined, - 'price_check': Icons.price_check, - 'price_check_sharp': Icons.price_check_sharp, - 'price_check_rounded': Icons.price_check_rounded, - 'price_check_outlined': Icons.price_check_outlined, - 'print': Icons.print, - 'print_sharp': Icons.print_sharp, - 'print_rounded': Icons.print_rounded, - 'print_outlined': Icons.print_outlined, - 'print_disabled': Icons.print_disabled, - 'print_disabled_sharp': Icons.print_disabled_sharp, - 'print_disabled_rounded': Icons.print_disabled_rounded, - 'print_disabled_outlined': Icons.print_disabled_outlined, - 'priority_high': Icons.priority_high, - 'priority_high_sharp': Icons.priority_high_sharp, - 'priority_high_rounded': Icons.priority_high_rounded, - 'priority_high_outlined': Icons.priority_high_outlined, - 'privacy_tip': Icons.privacy_tip, - 'privacy_tip_sharp': Icons.privacy_tip_sharp, - 'privacy_tip_rounded': Icons.privacy_tip_rounded, - 'privacy_tip_outlined': Icons.privacy_tip_outlined, - 'production_quantity_limits': Icons.production_quantity_limits, - 'production_quantity_limits_sharp': - Icons.production_quantity_limits_sharp, - 'production_quantity_limits_rounded': - Icons.production_quantity_limits_rounded, - 'production_quantity_limits_outlined': - Icons.production_quantity_limits_outlined, - 'psychology': Icons.psychology, - 'psychology_sharp': Icons.psychology_sharp, - 'psychology_rounded': Icons.psychology_rounded, - 'psychology_outlined': Icons.psychology_outlined, - 'public': Icons.public, - 'public_sharp': Icons.public_sharp, - 'public_rounded': Icons.public_rounded, - 'public_outlined': Icons.public_outlined, - 'public_off': Icons.public_off, - 'public_off_sharp': Icons.public_off_sharp, - 'public_off_rounded': Icons.public_off_rounded, - 'public_off_outlined': Icons.public_off_outlined, - 'publish': Icons.publish, - 'publish_sharp': Icons.publish_sharp, - 'publish_rounded': Icons.publish_rounded, - 'publish_outlined': Icons.publish_outlined, - 'published_with_changes': Icons.published_with_changes, - 'published_with_changes_sharp': Icons.published_with_changes_sharp, - 'published_with_changes_rounded': Icons.published_with_changes_rounded, - 'published_with_changes_outlined': - Icons.published_with_changes_outlined, - 'push_pin': Icons.push_pin, - 'push_pin_sharp': Icons.push_pin_sharp, - 'push_pin_rounded': Icons.push_pin_rounded, - 'push_pin_outlined': Icons.push_pin_outlined, - 'qr_code': Icons.qr_code, - 'qr_code_sharp': Icons.qr_code_sharp, - 'qr_code_rounded': Icons.qr_code_rounded, - 'qr_code_outlined': Icons.qr_code_outlined, - 'qr_code_2': Icons.qr_code_2, - 'qr_code_2_sharp': Icons.qr_code_2_sharp, - 'qr_code_2_rounded': Icons.qr_code_2_rounded, - 'qr_code_2_outlined': Icons.qr_code_2_outlined, - 'qr_code_scanner': Icons.qr_code_scanner, - 'qr_code_scanner_sharp': Icons.qr_code_scanner_sharp, - 'qr_code_scanner_rounded': Icons.qr_code_scanner_rounded, - 'qr_code_scanner_outlined': Icons.qr_code_scanner_outlined, - 'query_builder': Icons.query_builder, - 'query_builder_sharp': Icons.query_builder_sharp, - 'query_builder_rounded': Icons.query_builder_rounded, - 'query_builder_outlined': Icons.query_builder_outlined, - 'query_stats': Icons.query_stats, - 'query_stats_sharp': Icons.query_stats_sharp, - 'query_stats_rounded': Icons.query_stats_rounded, - 'query_stats_outlined': Icons.query_stats_outlined, - 'question_answer': Icons.question_answer, - 'question_answer_sharp': Icons.question_answer_sharp, - 'question_answer_rounded': Icons.question_answer_rounded, - 'question_answer_outlined': Icons.question_answer_outlined, - 'queue': Icons.queue, - 'queue_sharp': Icons.queue_sharp, - 'queue_rounded': Icons.queue_rounded, - 'queue_outlined': Icons.queue_outlined, - 'queue_music': Icons.queue_music, - 'queue_music_sharp': Icons.queue_music_sharp, - 'queue_music_rounded': Icons.queue_music_rounded, - 'queue_music_outlined': Icons.queue_music_outlined, - 'queue_play_next': Icons.queue_play_next, - 'queue_play_next_sharp': Icons.queue_play_next_sharp, - 'queue_play_next_rounded': Icons.queue_play_next_rounded, - 'queue_play_next_outlined': Icons.queue_play_next_outlined, - 'quick_contacts_dialer': Icons.quick_contacts_dialer, - 'quick_contacts_dialer_sharp': Icons.quick_contacts_dialer_sharp, - 'quick_contacts_dialer_rounded': Icons.quick_contacts_dialer_rounded, - 'quick_contacts_dialer_outlined': Icons.quick_contacts_dialer_outlined, - 'quick_contacts_mail': Icons.quick_contacts_mail, - 'quick_contacts_mail_sharp': Icons.quick_contacts_mail_sharp, - 'quick_contacts_mail_rounded': Icons.quick_contacts_mail_rounded, - 'quick_contacts_mail_outlined': Icons.quick_contacts_mail_outlined, - 'quickreply': Icons.quickreply, - 'quickreply_sharp': Icons.quickreply_sharp, - 'quickreply_rounded': Icons.quickreply_rounded, - 'quickreply_outlined': Icons.quickreply_outlined, - 'quiz': Icons.quiz, - 'quiz_sharp': Icons.quiz_sharp, - 'quiz_rounded': Icons.quiz_rounded, - 'quiz_outlined': Icons.quiz_outlined, - 'r_mobiledata': Icons.r_mobiledata, - 'r_mobiledata_sharp': Icons.r_mobiledata_sharp, - 'r_mobiledata_rounded': Icons.r_mobiledata_rounded, - 'r_mobiledata_outlined': Icons.r_mobiledata_outlined, - 'radar': Icons.radar, - 'radar_sharp': Icons.radar_sharp, - 'radar_rounded': Icons.radar_rounded, - 'radar_outlined': Icons.radar_outlined, - 'radio': Icons.radio, - 'radio_sharp': Icons.radio_sharp, - 'radio_rounded': Icons.radio_rounded, - 'radio_outlined': Icons.radio_outlined, - 'radio_button_checked': Icons.radio_button_checked, - 'radio_button_checked_sharp': Icons.radio_button_checked_sharp, - 'radio_button_checked_rounded': Icons.radio_button_checked_rounded, - 'radio_button_checked_outlined': Icons.radio_button_checked_outlined, - 'radio_button_off': Icons.radio_button_off, - 'radio_button_off_sharp': Icons.radio_button_off_sharp, - 'radio_button_off_rounded': Icons.radio_button_off_rounded, - 'radio_button_off_outlined': Icons.radio_button_off_outlined, - 'radio_button_on': Icons.radio_button_on, - 'radio_button_on_sharp': Icons.radio_button_on_sharp, - 'radio_button_on_rounded': Icons.radio_button_on_rounded, - 'radio_button_on_outlined': Icons.radio_button_on_outlined, - 'radio_button_unchecked': Icons.radio_button_unchecked, - 'radio_button_unchecked_sharp': Icons.radio_button_unchecked_sharp, - 'radio_button_unchecked_rounded': Icons.radio_button_unchecked_rounded, - 'radio_button_unchecked_outlined': - Icons.radio_button_unchecked_outlined, - 'railway_alert': Icons.railway_alert, - 'railway_alert_sharp': Icons.railway_alert_sharp, - 'railway_alert_rounded': Icons.railway_alert_rounded, - 'railway_alert_outlined': Icons.railway_alert_outlined, - 'ramen_dining': Icons.ramen_dining, - 'ramen_dining_sharp': Icons.ramen_dining_sharp, - 'ramen_dining_rounded': Icons.ramen_dining_rounded, - 'ramen_dining_outlined': Icons.ramen_dining_outlined, - 'rate_review': Icons.rate_review, - 'rate_review_sharp': Icons.rate_review_sharp, - 'rate_review_rounded': Icons.rate_review_rounded, - 'rate_review_outlined': Icons.rate_review_outlined, - 'raw_off': Icons.raw_off, - 'raw_off_sharp': Icons.raw_off_sharp, - 'raw_off_rounded': Icons.raw_off_rounded, - 'raw_off_outlined': Icons.raw_off_outlined, - 'raw_on': Icons.raw_on, - 'raw_on_sharp': Icons.raw_on_sharp, - 'raw_on_rounded': Icons.raw_on_rounded, - 'raw_on_outlined': Icons.raw_on_outlined, - 'read_more': Icons.read_more, - 'read_more_sharp': Icons.read_more_sharp, - 'read_more_rounded': Icons.read_more_rounded, - 'read_more_outlined': Icons.read_more_outlined, - 'real_estate_agent': Icons.real_estate_agent, - 'real_estate_agent_sharp': Icons.real_estate_agent_sharp, - 'real_estate_agent_rounded': Icons.real_estate_agent_rounded, - 'real_estate_agent_outlined': Icons.real_estate_agent_outlined, - 'receipt': Icons.receipt, - 'receipt_sharp': Icons.receipt_sharp, - 'receipt_rounded': Icons.receipt_rounded, - 'receipt_outlined': Icons.receipt_outlined, - 'receipt_long': Icons.receipt_long, - 'receipt_long_sharp': Icons.receipt_long_sharp, - 'receipt_long_rounded': Icons.receipt_long_rounded, - 'receipt_long_outlined': Icons.receipt_long_outlined, - 'recent_actors': Icons.recent_actors, - 'recent_actors_sharp': Icons.recent_actors_sharp, - 'recent_actors_rounded': Icons.recent_actors_rounded, - 'recent_actors_outlined': Icons.recent_actors_outlined, - 'recommend': Icons.recommend, - 'recommend_sharp': Icons.recommend_sharp, - 'recommend_rounded': Icons.recommend_rounded, - 'recommend_outlined': Icons.recommend_outlined, - 'record_voice_over': Icons.record_voice_over, - 'record_voice_over_sharp': Icons.record_voice_over_sharp, - 'record_voice_over_rounded': Icons.record_voice_over_rounded, - 'record_voice_over_outlined': Icons.record_voice_over_outlined, - 'redeem': Icons.redeem, - 'redeem_sharp': Icons.redeem_sharp, - 'redeem_rounded': Icons.redeem_rounded, - 'redeem_outlined': Icons.redeem_outlined, - 'redo': Icons.redo, - 'redo_sharp': Icons.redo_sharp, - 'redo_rounded': Icons.redo_rounded, - 'redo_outlined': Icons.redo_outlined, - 'reduce_capacity': Icons.reduce_capacity, - 'reduce_capacity_sharp': Icons.reduce_capacity_sharp, - 'reduce_capacity_rounded': Icons.reduce_capacity_rounded, - 'reduce_capacity_outlined': Icons.reduce_capacity_outlined, - 'refresh': Icons.refresh, - 'refresh_sharp': Icons.refresh_sharp, - 'refresh_rounded': Icons.refresh_rounded, - 'refresh_outlined': Icons.refresh_outlined, - 'remember_me': Icons.remember_me, - 'remember_me_sharp': Icons.remember_me_sharp, - 'remember_me_rounded': Icons.remember_me_rounded, - 'remember_me_outlined': Icons.remember_me_outlined, - 'remove': Icons.remove, - 'remove_sharp': Icons.remove_sharp, - 'remove_rounded': Icons.remove_rounded, - 'remove_outlined': Icons.remove_outlined, - 'remove_circle': Icons.remove_circle, - 'remove_circle_sharp': Icons.remove_circle_sharp, - 'remove_circle_rounded': Icons.remove_circle_rounded, - 'remove_circle_outlined': Icons.remove_circle_outlined, - 'remove_circle_outline': Icons.remove_circle_outline, - 'remove_circle_outline_sharp': Icons.remove_circle_outline_sharp, - 'remove_circle_outline_rounded': Icons.remove_circle_outline_rounded, - 'remove_circle_outline_outlined': Icons.remove_circle_outline_outlined, - 'remove_done': Icons.remove_done, - 'remove_done_sharp': Icons.remove_done_sharp, - 'remove_done_rounded': Icons.remove_done_rounded, - 'remove_done_outlined': Icons.remove_done_outlined, - 'remove_from_queue': Icons.remove_from_queue, - 'remove_from_queue_sharp': Icons.remove_from_queue_sharp, - 'remove_from_queue_rounded': Icons.remove_from_queue_rounded, - 'remove_from_queue_outlined': Icons.remove_from_queue_outlined, - 'remove_moderator': Icons.remove_moderator, - 'remove_moderator_sharp': Icons.remove_moderator_sharp, - 'remove_moderator_rounded': Icons.remove_moderator_rounded, - 'remove_moderator_outlined': Icons.remove_moderator_outlined, - 'remove_red_eye': Icons.remove_red_eye, - 'remove_red_eye_sharp': Icons.remove_red_eye_sharp, - 'remove_red_eye_rounded': Icons.remove_red_eye_rounded, - 'remove_red_eye_outlined': Icons.remove_red_eye_outlined, - 'remove_shopping_cart': Icons.remove_shopping_cart, - 'remove_shopping_cart_sharp': Icons.remove_shopping_cart_sharp, - 'remove_shopping_cart_rounded': Icons.remove_shopping_cart_rounded, - 'remove_shopping_cart_outlined': Icons.remove_shopping_cart_outlined, - 'reorder': Icons.reorder, - 'reorder_sharp': Icons.reorder_sharp, - 'reorder_rounded': Icons.reorder_rounded, - 'reorder_outlined': Icons.reorder_outlined, - 'repeat': Icons.repeat, - 'repeat_sharp': Icons.repeat_sharp, - 'repeat_rounded': Icons.repeat_rounded, - 'repeat_outlined': Icons.repeat_outlined, - 'repeat_on': Icons.repeat_on, - 'repeat_on_sharp': Icons.repeat_on_sharp, - 'repeat_on_rounded': Icons.repeat_on_rounded, - 'repeat_on_outlined': Icons.repeat_on_outlined, - 'repeat_one': Icons.repeat_one, - 'repeat_one_sharp': Icons.repeat_one_sharp, - 'repeat_one_rounded': Icons.repeat_one_rounded, - 'repeat_one_outlined': Icons.repeat_one_outlined, - 'repeat_one_on': Icons.repeat_one_on, - 'repeat_one_on_sharp': Icons.repeat_one_on_sharp, - 'repeat_one_on_rounded': Icons.repeat_one_on_rounded, - 'repeat_one_on_outlined': Icons.repeat_one_on_outlined, - 'replay': Icons.replay, - 'replay_sharp': Icons.replay_sharp, - 'replay_rounded': Icons.replay_rounded, - 'replay_outlined': Icons.replay_outlined, - 'replay_10': Icons.replay_10, - 'replay_10_sharp': Icons.replay_10_sharp, - 'replay_10_rounded': Icons.replay_10_rounded, - 'replay_10_outlined': Icons.replay_10_outlined, - 'replay_30': Icons.replay_30, - 'replay_30_sharp': Icons.replay_30_sharp, - 'replay_30_rounded': Icons.replay_30_rounded, - 'replay_30_outlined': Icons.replay_30_outlined, - 'replay_5': Icons.replay_5, - 'replay_5_sharp': Icons.replay_5_sharp, - 'replay_5_rounded': Icons.replay_5_rounded, - 'replay_5_outlined': Icons.replay_5_outlined, - 'replay_circle_filled': Icons.replay_circle_filled, - 'replay_circle_filled_sharp': Icons.replay_circle_filled_sharp, - 'replay_circle_filled_rounded': Icons.replay_circle_filled_rounded, - 'replay_circle_filled_outlined': Icons.replay_circle_filled_outlined, - 'reply': Icons.reply, - 'reply_sharp': Icons.reply_sharp, - 'reply_rounded': Icons.reply_rounded, - 'reply_outlined': Icons.reply_outlined, - 'reply_all': Icons.reply_all, - 'reply_all_sharp': Icons.reply_all_sharp, - 'reply_all_rounded': Icons.reply_all_rounded, - 'reply_all_outlined': Icons.reply_all_outlined, - 'report': Icons.report, - 'report_sharp': Icons.report_sharp, - 'report_rounded': Icons.report_rounded, - 'report_outlined': Icons.report_outlined, - 'report_gmailerrorred': Icons.report_gmailerrorred, - 'report_gmailerrorred_sharp': Icons.report_gmailerrorred_sharp, - 'report_gmailerrorred_rounded': Icons.report_gmailerrorred_rounded, - 'report_gmailerrorred_outlined': Icons.report_gmailerrorred_outlined, - 'report_off': Icons.report_off, - 'report_off_sharp': Icons.report_off_sharp, - 'report_off_rounded': Icons.report_off_rounded, - 'report_off_outlined': Icons.report_off_outlined, - 'report_problem': Icons.report_problem, - 'report_problem_sharp': Icons.report_problem_sharp, - 'report_problem_rounded': Icons.report_problem_rounded, - 'report_problem_outlined': Icons.report_problem_outlined, - 'request_page': Icons.request_page, - 'request_page_sharp': Icons.request_page_sharp, - 'request_page_rounded': Icons.request_page_rounded, - 'request_page_outlined': Icons.request_page_outlined, - 'request_quote': Icons.request_quote, - 'request_quote_sharp': Icons.request_quote_sharp, - 'request_quote_rounded': Icons.request_quote_rounded, - 'request_quote_outlined': Icons.request_quote_outlined, - 'reset_tv': Icons.reset_tv, - 'reset_tv_sharp': Icons.reset_tv_sharp, - 'reset_tv_rounded': Icons.reset_tv_rounded, - 'reset_tv_outlined': Icons.reset_tv_outlined, - 'restart_alt': Icons.restart_alt, - 'restart_alt_sharp': Icons.restart_alt_sharp, - 'restart_alt_rounded': Icons.restart_alt_rounded, - 'restart_alt_outlined': Icons.restart_alt_outlined, - 'restaurant': Icons.restaurant, - 'restaurant_sharp': Icons.restaurant_sharp, - 'restaurant_rounded': Icons.restaurant_rounded, - 'restaurant_outlined': Icons.restaurant_outlined, - 'restaurant_menu': Icons.restaurant_menu, - 'restaurant_menu_sharp': Icons.restaurant_menu_sharp, - 'restaurant_menu_rounded': Icons.restaurant_menu_rounded, - 'restaurant_menu_outlined': Icons.restaurant_menu_outlined, - 'restore': Icons.restore, - 'restore_sharp': Icons.restore_sharp, - 'restore_rounded': Icons.restore_rounded, - 'restore_outlined': Icons.restore_outlined, - 'restore_from_trash': Icons.restore_from_trash, - 'restore_from_trash_sharp': Icons.restore_from_trash_sharp, - 'restore_from_trash_rounded': Icons.restore_from_trash_rounded, - 'restore_from_trash_outlined': Icons.restore_from_trash_outlined, - 'restore_page': Icons.restore_page, - 'restore_page_sharp': Icons.restore_page_sharp, - 'restore_page_rounded': Icons.restore_page_rounded, - 'restore_page_outlined': Icons.restore_page_outlined, - 'reviews': Icons.reviews, - 'reviews_sharp': Icons.reviews_sharp, - 'reviews_rounded': Icons.reviews_rounded, - 'reviews_outlined': Icons.reviews_outlined, - 'rice_bowl': Icons.rice_bowl, - 'rice_bowl_sharp': Icons.rice_bowl_sharp, - 'rice_bowl_rounded': Icons.rice_bowl_rounded, - 'rice_bowl_outlined': Icons.rice_bowl_outlined, - 'ring_volume': Icons.ring_volume, - 'ring_volume_sharp': Icons.ring_volume_sharp, - 'ring_volume_rounded': Icons.ring_volume_rounded, - 'ring_volume_outlined': Icons.ring_volume_outlined, - 'roofing': Icons.roofing, - 'roofing_sharp': Icons.roofing_sharp, - 'roofing_rounded': Icons.roofing_rounded, - 'roofing_outlined': Icons.roofing_outlined, - 'room': Icons.room, - 'room_sharp': Icons.room_sharp, - 'room_rounded': Icons.room_rounded, - 'room_outlined': Icons.room_outlined, - 'room_preferences': Icons.room_preferences, - 'room_preferences_sharp': Icons.room_preferences_sharp, - 'room_preferences_rounded': Icons.room_preferences_rounded, - 'room_preferences_outlined': Icons.room_preferences_outlined, - 'room_service': Icons.room_service, - 'room_service_sharp': Icons.room_service_sharp, - 'room_service_rounded': Icons.room_service_rounded, - 'room_service_outlined': Icons.room_service_outlined, - 'rotate_90_degrees_ccw': Icons.rotate_90_degrees_ccw, - 'rotate_90_degrees_ccw_sharp': Icons.rotate_90_degrees_ccw_sharp, - 'rotate_90_degrees_ccw_rounded': Icons.rotate_90_degrees_ccw_rounded, - 'rotate_90_degrees_ccw_outlined': Icons.rotate_90_degrees_ccw_outlined, - 'rotate_left': Icons.rotate_left, - 'rotate_left_sharp': Icons.rotate_left_sharp, - 'rotate_left_rounded': Icons.rotate_left_rounded, - 'rotate_left_outlined': Icons.rotate_left_outlined, - 'rotate_right': Icons.rotate_right, - 'rotate_right_sharp': Icons.rotate_right_sharp, - 'rotate_right_rounded': Icons.rotate_right_rounded, - 'rotate_right_outlined': Icons.rotate_right_outlined, - 'rounded_corner': Icons.rounded_corner, - 'rounded_corner_sharp': Icons.rounded_corner_sharp, - 'rounded_corner_rounded': Icons.rounded_corner_rounded, - 'rounded_corner_outlined': Icons.rounded_corner_outlined, - 'router': Icons.router, - 'router_sharp': Icons.router_sharp, - 'router_rounded': Icons.router_rounded, - 'router_outlined': Icons.router_outlined, - 'rowing': Icons.rowing, - 'rowing_sharp': Icons.rowing_sharp, - 'rowing_rounded': Icons.rowing_rounded, - 'rowing_outlined': Icons.rowing_outlined, - 'rss_feed': Icons.rss_feed, - 'rss_feed_sharp': Icons.rss_feed_sharp, - 'rss_feed_rounded': Icons.rss_feed_rounded, - 'rss_feed_outlined': Icons.rss_feed_outlined, - 'rsvp': Icons.rsvp, - 'rsvp_sharp': Icons.rsvp_sharp, - 'rsvp_rounded': Icons.rsvp_rounded, - 'rsvp_outlined': Icons.rsvp_outlined, - 'rtt': Icons.rtt, - 'rtt_sharp': Icons.rtt_sharp, - 'rtt_rounded': Icons.rtt_rounded, - 'rtt_outlined': Icons.rtt_outlined, - 'rule': Icons.rule, - 'rule_sharp': Icons.rule_sharp, - 'rule_rounded': Icons.rule_rounded, - 'rule_outlined': Icons.rule_outlined, - 'rule_folder': Icons.rule_folder, - 'rule_folder_sharp': Icons.rule_folder_sharp, - 'rule_folder_rounded': Icons.rule_folder_rounded, - 'rule_folder_outlined': Icons.rule_folder_outlined, - 'run_circle': Icons.run_circle, - 'run_circle_sharp': Icons.run_circle_sharp, - 'run_circle_rounded': Icons.run_circle_rounded, - 'run_circle_outlined': Icons.run_circle_outlined, - 'running_with_errors': Icons.running_with_errors, - 'running_with_errors_sharp': Icons.running_with_errors_sharp, - 'running_with_errors_rounded': Icons.running_with_errors_rounded, - 'running_with_errors_outlined': Icons.running_with_errors_outlined, - 'rv_hookup': Icons.rv_hookup, - 'rv_hookup_sharp': Icons.rv_hookup_sharp, - 'rv_hookup_rounded': Icons.rv_hookup_rounded, - 'rv_hookup_outlined': Icons.rv_hookup_outlined, - 'safety_divider': Icons.safety_divider, - 'safety_divider_sharp': Icons.safety_divider_sharp, - 'safety_divider_rounded': Icons.safety_divider_rounded, - 'safety_divider_outlined': Icons.safety_divider_outlined, - 'sailing': Icons.sailing, - 'sailing_sharp': Icons.sailing_sharp, - 'sailing_rounded': Icons.sailing_rounded, - 'sailing_outlined': Icons.sailing_outlined, - 'sanitizer': Icons.sanitizer, - 'sanitizer_sharp': Icons.sanitizer_sharp, - 'sanitizer_rounded': Icons.sanitizer_rounded, - 'sanitizer_outlined': Icons.sanitizer_outlined, - 'satellite': Icons.satellite, - 'satellite_sharp': Icons.satellite_sharp, - 'satellite_rounded': Icons.satellite_rounded, - 'satellite_outlined': Icons.satellite_outlined, - 'save': Icons.save, - 'save_sharp': Icons.save_sharp, - 'save_rounded': Icons.save_rounded, - 'save_outlined': Icons.save_outlined, - 'save_alt': Icons.save_alt, - 'save_alt_sharp': Icons.save_alt_sharp, - 'save_alt_rounded': Icons.save_alt_rounded, - 'save_alt_outlined': Icons.save_alt_outlined, - 'saved_search': Icons.saved_search, - 'saved_search_sharp': Icons.saved_search_sharp, - 'saved_search_rounded': Icons.saved_search_rounded, - 'saved_search_outlined': Icons.saved_search_outlined, - 'savings': Icons.savings, - 'savings_sharp': Icons.savings_sharp, - 'savings_rounded': Icons.savings_rounded, - 'savings_outlined': Icons.savings_outlined, - 'scanner': Icons.scanner, - 'scanner_sharp': Icons.scanner_sharp, - 'scanner_rounded': Icons.scanner_rounded, - 'scanner_outlined': Icons.scanner_outlined, - 'scatter_plot': Icons.scatter_plot, - 'scatter_plot_sharp': Icons.scatter_plot_sharp, - 'scatter_plot_rounded': Icons.scatter_plot_rounded, - 'scatter_plot_outlined': Icons.scatter_plot_outlined, - 'schedule': Icons.schedule, - 'schedule_sharp': Icons.schedule_sharp, - 'schedule_rounded': Icons.schedule_rounded, - 'schedule_outlined': Icons.schedule_outlined, - 'schedule_send': Icons.schedule_send, - 'schedule_send_sharp': Icons.schedule_send_sharp, - 'schedule_send_rounded': Icons.schedule_send_rounded, - 'schedule_send_outlined': Icons.schedule_send_outlined, - 'schema': Icons.schema, - 'schema_sharp': Icons.schema_sharp, - 'schema_rounded': Icons.schema_rounded, - 'schema_outlined': Icons.schema_outlined, - 'school': Icons.school, - 'school_sharp': Icons.school_sharp, - 'school_rounded': Icons.school_rounded, - 'school_outlined': Icons.school_outlined, - 'science': Icons.science, - 'science_sharp': Icons.science_sharp, - 'science_rounded': Icons.science_rounded, - 'science_outlined': Icons.science_outlined, - 'score': Icons.score, - 'score_sharp': Icons.score_sharp, - 'score_rounded': Icons.score_rounded, - 'score_outlined': Icons.score_outlined, - 'screen_lock_landscape': Icons.screen_lock_landscape, - 'screen_lock_landscape_sharp': Icons.screen_lock_landscape_sharp, - 'screen_lock_landscape_rounded': Icons.screen_lock_landscape_rounded, - 'screen_lock_landscape_outlined': Icons.screen_lock_landscape_outlined, - 'screen_lock_portrait': Icons.screen_lock_portrait, - 'screen_lock_portrait_sharp': Icons.screen_lock_portrait_sharp, - 'screen_lock_portrait_rounded': Icons.screen_lock_portrait_rounded, - 'screen_lock_portrait_outlined': Icons.screen_lock_portrait_outlined, - 'screen_lock_rotation': Icons.screen_lock_rotation, - 'screen_lock_rotation_sharp': Icons.screen_lock_rotation_sharp, - 'screen_lock_rotation_rounded': Icons.screen_lock_rotation_rounded, - 'screen_lock_rotation_outlined': Icons.screen_lock_rotation_outlined, - 'screen_rotation': Icons.screen_rotation, - 'screen_rotation_sharp': Icons.screen_rotation_sharp, - 'screen_rotation_rounded': Icons.screen_rotation_rounded, - 'screen_rotation_outlined': Icons.screen_rotation_outlined, - 'screen_search_desktop': Icons.screen_search_desktop, - 'screen_search_desktop_sharp': Icons.screen_search_desktop_sharp, - 'screen_search_desktop_rounded': Icons.screen_search_desktop_rounded, - 'screen_search_desktop_outlined': Icons.screen_search_desktop_outlined, - 'screen_share': Icons.screen_share, - 'screen_share_sharp': Icons.screen_share_sharp, - 'screen_share_rounded': Icons.screen_share_rounded, - 'screen_share_outlined': Icons.screen_share_outlined, - 'screenshot': Icons.screenshot, - 'screenshot_sharp': Icons.screenshot_sharp, - 'screenshot_rounded': Icons.screenshot_rounded, - 'screenshot_outlined': Icons.screenshot_outlined, - 'sd': Icons.sd, - 'sd_sharp': Icons.sd_sharp, - 'sd_rounded': Icons.sd_rounded, - 'sd_outlined': Icons.sd_outlined, - 'sd_card': Icons.sd_card, - 'sd_card_sharp': Icons.sd_card_sharp, - 'sd_card_rounded': Icons.sd_card_rounded, - 'sd_card_outlined': Icons.sd_card_outlined, - 'sd_card_alert': Icons.sd_card_alert, - 'sd_card_alert_sharp': Icons.sd_card_alert_sharp, - 'sd_card_alert_rounded': Icons.sd_card_alert_rounded, - 'sd_card_alert_outlined': Icons.sd_card_alert_outlined, - 'sd_storage': Icons.sd_storage, - 'sd_storage_sharp': Icons.sd_storage_sharp, - 'sd_storage_rounded': Icons.sd_storage_rounded, - 'sd_storage_outlined': Icons.sd_storage_outlined, - 'search': Icons.search, - 'search_sharp': Icons.search_sharp, - 'search_rounded': Icons.search_rounded, - 'search_outlined': Icons.search_outlined, - 'search_off': Icons.search_off, - 'search_off_sharp': Icons.search_off_sharp, - 'search_off_rounded': Icons.search_off_rounded, - 'search_off_outlined': Icons.search_off_outlined, - 'security': Icons.security, - 'security_sharp': Icons.security_sharp, - 'security_rounded': Icons.security_rounded, - 'security_outlined': Icons.security_outlined, - 'security_update': Icons.security_update, - 'security_update_sharp': Icons.security_update_sharp, - 'security_update_rounded': Icons.security_update_rounded, - 'security_update_outlined': Icons.security_update_outlined, - 'security_update_good': Icons.security_update_good, - 'security_update_good_sharp': Icons.security_update_good_sharp, - 'security_update_good_rounded': Icons.security_update_good_rounded, - 'security_update_good_outlined': Icons.security_update_good_outlined, - 'security_update_warning': Icons.security_update_warning, - 'security_update_warning_sharp': Icons.security_update_warning_sharp, - 'security_update_warning_rounded': - Icons.security_update_warning_rounded, - 'security_update_warning_outlined': - Icons.security_update_warning_outlined, - 'segment': Icons.segment, - 'segment_sharp': Icons.segment_sharp, - 'segment_rounded': Icons.segment_rounded, - 'segment_outlined': Icons.segment_outlined, - 'select_all': Icons.select_all, - 'select_all_sharp': Icons.select_all_sharp, - 'select_all_rounded': Icons.select_all_rounded, - 'select_all_outlined': Icons.select_all_outlined, - 'self_improvement': Icons.self_improvement, - 'self_improvement_sharp': Icons.self_improvement_sharp, - 'self_improvement_rounded': Icons.self_improvement_rounded, - 'self_improvement_outlined': Icons.self_improvement_outlined, - 'sell': Icons.sell, - 'sell_sharp': Icons.sell_sharp, - 'sell_rounded': Icons.sell_rounded, - 'sell_outlined': Icons.sell_outlined, - 'send': Icons.send, - 'send_sharp': Icons.send_sharp, - 'send_rounded': Icons.send_rounded, - 'send_outlined': Icons.send_outlined, - 'send_and_archive': Icons.send_and_archive, - 'send_and_archive_sharp': Icons.send_and_archive_sharp, - 'send_and_archive_rounded': Icons.send_and_archive_rounded, - 'send_and_archive_outlined': Icons.send_and_archive_outlined, - 'send_to_mobile': Icons.send_to_mobile, - 'send_to_mobile_sharp': Icons.send_to_mobile_sharp, - 'send_to_mobile_rounded': Icons.send_to_mobile_rounded, - 'send_to_mobile_outlined': Icons.send_to_mobile_outlined, - 'sensor_door': Icons.sensor_door, - 'sensor_door_sharp': Icons.sensor_door_sharp, - 'sensor_door_rounded': Icons.sensor_door_rounded, - 'sensor_door_outlined': Icons.sensor_door_outlined, - 'sensor_window': Icons.sensor_window, - 'sensor_window_sharp': Icons.sensor_window_sharp, - 'sensor_window_rounded': Icons.sensor_window_rounded, - 'sensor_window_outlined': Icons.sensor_window_outlined, - 'sensors': Icons.sensors, - 'sensors_sharp': Icons.sensors_sharp, - 'sensors_rounded': Icons.sensors_rounded, - 'sensors_outlined': Icons.sensors_outlined, - 'sensors_off': Icons.sensors_off, - 'sensors_off_sharp': Icons.sensors_off_sharp, - 'sensors_off_rounded': Icons.sensors_off_rounded, - 'sensors_off_outlined': Icons.sensors_off_outlined, - 'sentiment_dissatisfied': Icons.sentiment_dissatisfied, - 'sentiment_dissatisfied_sharp': Icons.sentiment_dissatisfied_sharp, - 'sentiment_dissatisfied_rounded': Icons.sentiment_dissatisfied_rounded, - 'sentiment_dissatisfied_outlined': - Icons.sentiment_dissatisfied_outlined, - 'sentiment_neutral': Icons.sentiment_neutral, - 'sentiment_neutral_sharp': Icons.sentiment_neutral_sharp, - 'sentiment_neutral_rounded': Icons.sentiment_neutral_rounded, - 'sentiment_neutral_outlined': Icons.sentiment_neutral_outlined, - 'sentiment_satisfied': Icons.sentiment_satisfied, - 'sentiment_satisfied_sharp': Icons.sentiment_satisfied_sharp, - 'sentiment_satisfied_rounded': Icons.sentiment_satisfied_rounded, - 'sentiment_satisfied_outlined': Icons.sentiment_satisfied_outlined, - 'sentiment_satisfied_alt': Icons.sentiment_satisfied_alt, - 'sentiment_satisfied_alt_sharp': Icons.sentiment_satisfied_alt_sharp, - 'sentiment_satisfied_alt_rounded': - Icons.sentiment_satisfied_alt_rounded, - 'sentiment_satisfied_alt_outlined': - Icons.sentiment_satisfied_alt_outlined, - 'sentiment_very_dissatisfied': Icons.sentiment_very_dissatisfied, - 'sentiment_very_dissatisfied_sharp': - Icons.sentiment_very_dissatisfied_sharp, - 'sentiment_very_dissatisfied_rounded': - Icons.sentiment_very_dissatisfied_rounded, - 'sentiment_very_dissatisfied_outlined': - Icons.sentiment_very_dissatisfied_outlined, - 'sentiment_very_satisfied': Icons.sentiment_very_satisfied, - 'sentiment_very_satisfied_sharp': Icons.sentiment_very_satisfied_sharp, - 'sentiment_very_satisfied_rounded': - Icons.sentiment_very_satisfied_rounded, - 'sentiment_very_satisfied_outlined': - Icons.sentiment_very_satisfied_outlined, - 'set_meal': Icons.set_meal, - 'set_meal_sharp': Icons.set_meal_sharp, - 'set_meal_rounded': Icons.set_meal_rounded, - 'set_meal_outlined': Icons.set_meal_outlined, - 'settings': Icons.settings, - 'settings_sharp': Icons.settings_sharp, - 'settings_rounded': Icons.settings_rounded, - 'settings_outlined': Icons.settings_outlined, - 'settings_accessibility': Icons.settings_accessibility, - 'settings_accessibility_sharp': Icons.settings_accessibility_sharp, - 'settings_accessibility_rounded': Icons.settings_accessibility_rounded, - 'settings_accessibility_outlined': - Icons.settings_accessibility_outlined, - 'settings_applications': Icons.settings_applications, - 'settings_applications_sharp': Icons.settings_applications_sharp, - 'settings_applications_rounded': Icons.settings_applications_rounded, - 'settings_applications_outlined': Icons.settings_applications_outlined, - 'settings_backup_restore': Icons.settings_backup_restore, - 'settings_backup_restore_sharp': Icons.settings_backup_restore_sharp, - 'settings_backup_restore_rounded': - Icons.settings_backup_restore_rounded, - 'settings_backup_restore_outlined': - Icons.settings_backup_restore_outlined, - 'settings_bluetooth': Icons.settings_bluetooth, - 'settings_bluetooth_sharp': Icons.settings_bluetooth_sharp, - 'settings_bluetooth_rounded': Icons.settings_bluetooth_rounded, - 'settings_bluetooth_outlined': Icons.settings_bluetooth_outlined, - 'settings_brightness': Icons.settings_brightness, - 'settings_brightness_sharp': Icons.settings_brightness_sharp, - 'settings_brightness_rounded': Icons.settings_brightness_rounded, - 'settings_brightness_outlined': Icons.settings_brightness_outlined, - 'settings_cell': Icons.settings_cell, - 'settings_cell_sharp': Icons.settings_cell_sharp, - 'settings_cell_rounded': Icons.settings_cell_rounded, - 'settings_cell_outlined': Icons.settings_cell_outlined, - 'settings_display': Icons.settings_display, - 'settings_display_sharp': Icons.settings_display_sharp, - 'settings_display_rounded': Icons.settings_display_rounded, - 'settings_display_outlined': Icons.settings_display_outlined, - 'settings_ethernet': Icons.settings_ethernet, - 'settings_ethernet_sharp': Icons.settings_ethernet_sharp, - 'settings_ethernet_rounded': Icons.settings_ethernet_rounded, - 'settings_ethernet_outlined': Icons.settings_ethernet_outlined, - 'settings_input_antenna': Icons.settings_input_antenna, - 'settings_input_antenna_sharp': Icons.settings_input_antenna_sharp, - 'settings_input_antenna_rounded': Icons.settings_input_antenna_rounded, - 'settings_input_antenna_outlined': - Icons.settings_input_antenna_outlined, - 'settings_input_component': Icons.settings_input_component, - 'settings_input_component_sharp': Icons.settings_input_component_sharp, - 'settings_input_component_rounded': - Icons.settings_input_component_rounded, - 'settings_input_component_outlined': - Icons.settings_input_component_outlined, - 'settings_input_composite': Icons.settings_input_composite, - 'settings_input_composite_sharp': Icons.settings_input_composite_sharp, - 'settings_input_composite_rounded': - Icons.settings_input_composite_rounded, - 'settings_input_composite_outlined': - Icons.settings_input_composite_outlined, - 'settings_input_hdmi': Icons.settings_input_hdmi, - 'settings_input_hdmi_sharp': Icons.settings_input_hdmi_sharp, - 'settings_input_hdmi_rounded': Icons.settings_input_hdmi_rounded, - 'settings_input_hdmi_outlined': Icons.settings_input_hdmi_outlined, - 'settings_input_svideo': Icons.settings_input_svideo, - 'settings_input_svideo_sharp': Icons.settings_input_svideo_sharp, - 'settings_input_svideo_rounded': Icons.settings_input_svideo_rounded, - 'settings_input_svideo_outlined': Icons.settings_input_svideo_outlined, - 'settings_overscan': Icons.settings_overscan, - 'settings_overscan_sharp': Icons.settings_overscan_sharp, - 'settings_overscan_rounded': Icons.settings_overscan_rounded, - 'settings_overscan_outlined': Icons.settings_overscan_outlined, - 'settings_phone': Icons.settings_phone, - 'settings_phone_sharp': Icons.settings_phone_sharp, - 'settings_phone_rounded': Icons.settings_phone_rounded, - 'settings_phone_outlined': Icons.settings_phone_outlined, - 'settings_power': Icons.settings_power, - 'settings_power_sharp': Icons.settings_power_sharp, - 'settings_power_rounded': Icons.settings_power_rounded, - 'settings_power_outlined': Icons.settings_power_outlined, - 'settings_remote': Icons.settings_remote, - 'settings_remote_sharp': Icons.settings_remote_sharp, - 'settings_remote_rounded': Icons.settings_remote_rounded, - 'settings_remote_outlined': Icons.settings_remote_outlined, - 'settings_suggest': Icons.settings_suggest, - 'settings_suggest_sharp': Icons.settings_suggest_sharp, - 'settings_suggest_rounded': Icons.settings_suggest_rounded, - 'settings_suggest_outlined': Icons.settings_suggest_outlined, - 'settings_system_daydream': Icons.settings_system_daydream, - 'settings_system_daydream_sharp': Icons.settings_system_daydream_sharp, - 'settings_system_daydream_rounded': - Icons.settings_system_daydream_rounded, - 'settings_system_daydream_outlined': - Icons.settings_system_daydream_outlined, - 'settings_voice': Icons.settings_voice, - 'settings_voice_sharp': Icons.settings_voice_sharp, - 'settings_voice_rounded': Icons.settings_voice_rounded, - 'settings_voice_outlined': Icons.settings_voice_outlined, - 'share': Icons.share, - 'share_sharp': Icons.share_sharp, - 'share_rounded': Icons.share_rounded, - 'share_outlined': Icons.share_outlined, - 'share_arrival_time': Icons.share_arrival_time, - 'share_arrival_time_sharp': Icons.share_arrival_time_sharp, - 'share_arrival_time_rounded': Icons.share_arrival_time_rounded, - 'share_arrival_time_outlined': Icons.share_arrival_time_outlined, - 'share_location': Icons.share_location, - 'share_location_sharp': Icons.share_location_sharp, - 'share_location_rounded': Icons.share_location_rounded, - 'share_location_outlined': Icons.share_location_outlined, - 'shield': Icons.shield, - 'shield_sharp': Icons.shield_sharp, - 'shield_rounded': Icons.shield_rounded, - 'shield_outlined': Icons.shield_outlined, - 'shop': Icons.shop, - 'shop_sharp': Icons.shop_sharp, - 'shop_rounded': Icons.shop_rounded, - 'shop_outlined': Icons.shop_outlined, - 'shop_2': Icons.shop_2, - 'shop_2_sharp': Icons.shop_2_sharp, - 'shop_2_rounded': Icons.shop_2_rounded, - 'shop_2_outlined': Icons.shop_2_outlined, - 'shop_two': Icons.shop_two, - 'shop_two_sharp': Icons.shop_two_sharp, - 'shop_two_rounded': Icons.shop_two_rounded, - 'shop_two_outlined': Icons.shop_two_outlined, - 'shopping_bag': Icons.shopping_bag, - 'shopping_bag_sharp': Icons.shopping_bag_sharp, - 'shopping_bag_rounded': Icons.shopping_bag_rounded, - 'shopping_bag_outlined': Icons.shopping_bag_outlined, - 'shopping_basket': Icons.shopping_basket, - 'shopping_basket_sharp': Icons.shopping_basket_sharp, - 'shopping_basket_rounded': Icons.shopping_basket_rounded, - 'shopping_basket_outlined': Icons.shopping_basket_outlined, - 'shopping_cart': Icons.shopping_cart, - 'shopping_cart_sharp': Icons.shopping_cart_sharp, - 'shopping_cart_rounded': Icons.shopping_cart_rounded, - 'shopping_cart_outlined': Icons.shopping_cart_outlined, - 'short_text': Icons.short_text, - 'short_text_sharp': Icons.short_text_sharp, - 'short_text_rounded': Icons.short_text_rounded, - 'short_text_outlined': Icons.short_text_outlined, - 'shortcut': Icons.shortcut, - 'shortcut_sharp': Icons.shortcut_sharp, - 'shortcut_rounded': Icons.shortcut_rounded, - 'shortcut_outlined': Icons.shortcut_outlined, - 'show_chart': Icons.show_chart, - 'show_chart_sharp': Icons.show_chart_sharp, - 'show_chart_rounded': Icons.show_chart_rounded, - 'show_chart_outlined': Icons.show_chart_outlined, - 'shower': Icons.shower, - 'shower_sharp': Icons.shower_sharp, - 'shower_rounded': Icons.shower_rounded, - 'shower_outlined': Icons.shower_outlined, - 'shuffle': Icons.shuffle, - 'shuffle_sharp': Icons.shuffle_sharp, - 'shuffle_rounded': Icons.shuffle_rounded, - 'shuffle_outlined': Icons.shuffle_outlined, - 'shuffle_on': Icons.shuffle_on, - 'shuffle_on_sharp': Icons.shuffle_on_sharp, - 'shuffle_on_rounded': Icons.shuffle_on_rounded, - 'shuffle_on_outlined': Icons.shuffle_on_outlined, - 'shutter_speed': Icons.shutter_speed, - 'shutter_speed_sharp': Icons.shutter_speed_sharp, - 'shutter_speed_rounded': Icons.shutter_speed_rounded, - 'shutter_speed_outlined': Icons.shutter_speed_outlined, - 'sick': Icons.sick, - 'sick_sharp': Icons.sick_sharp, - 'sick_rounded': Icons.sick_rounded, - 'sick_outlined': Icons.sick_outlined, - 'signal_cellular_0_bar': Icons.signal_cellular_0_bar, - 'signal_cellular_0_bar_sharp': Icons.signal_cellular_0_bar_sharp, - 'signal_cellular_0_bar_rounded': Icons.signal_cellular_0_bar_rounded, - 'signal_cellular_0_bar_outlined': Icons.signal_cellular_0_bar_outlined, - 'signal_cellular_4_bar': Icons.signal_cellular_4_bar, - 'signal_cellular_4_bar_sharp': Icons.signal_cellular_4_bar_sharp, - 'signal_cellular_4_bar_rounded': Icons.signal_cellular_4_bar_rounded, - 'signal_cellular_4_bar_outlined': Icons.signal_cellular_4_bar_outlined, - 'signal_cellular_alt': Icons.signal_cellular_alt, - 'signal_cellular_alt_sharp': Icons.signal_cellular_alt_sharp, - 'signal_cellular_alt_rounded': Icons.signal_cellular_alt_rounded, - 'signal_cellular_alt_outlined': Icons.signal_cellular_alt_outlined, - 'signal_cellular_connected_no_internet_0_bar': - Icons.signal_cellular_connected_no_internet_0_bar, - 'signal_cellular_connected_no_internet_0_bar_sharp': - Icons.signal_cellular_connected_no_internet_0_bar_sharp, - 'signal_cellular_connected_no_internet_0_bar_rounded': - Icons.signal_cellular_connected_no_internet_0_bar_rounded, - 'signal_cellular_connected_no_internet_0_bar_outlined': - Icons.signal_cellular_connected_no_internet_0_bar_outlined, - 'signal_cellular_connected_no_internet_4_bar': - Icons.signal_cellular_connected_no_internet_4_bar, - 'signal_cellular_connected_no_internet_4_bar_sharp': - Icons.signal_cellular_connected_no_internet_4_bar_sharp, - 'signal_cellular_connected_no_internet_4_bar_rounded': - Icons.signal_cellular_connected_no_internet_4_bar_rounded, - 'signal_cellular_connected_no_internet_4_bar_outlined': - Icons.signal_cellular_connected_no_internet_4_bar_outlined, - 'signal_cellular_no_sim': Icons.signal_cellular_no_sim, - 'signal_cellular_no_sim_sharp': Icons.signal_cellular_no_sim_sharp, - 'signal_cellular_no_sim_rounded': Icons.signal_cellular_no_sim_rounded, - 'signal_cellular_no_sim_outlined': - Icons.signal_cellular_no_sim_outlined, - 'signal_cellular_nodata': Icons.signal_cellular_nodata, - 'signal_cellular_nodata_sharp': Icons.signal_cellular_nodata_sharp, - 'signal_cellular_nodata_rounded': Icons.signal_cellular_nodata_rounded, - 'signal_cellular_nodata_outlined': - Icons.signal_cellular_nodata_outlined, - 'signal_cellular_null': Icons.signal_cellular_null, - 'signal_cellular_null_sharp': Icons.signal_cellular_null_sharp, - 'signal_cellular_null_rounded': Icons.signal_cellular_null_rounded, - 'signal_cellular_null_outlined': Icons.signal_cellular_null_outlined, - 'signal_cellular_off': Icons.signal_cellular_off, - 'signal_cellular_off_sharp': Icons.signal_cellular_off_sharp, - 'signal_cellular_off_rounded': Icons.signal_cellular_off_rounded, - 'signal_cellular_off_outlined': Icons.signal_cellular_off_outlined, - 'signal_wifi_0_bar': Icons.signal_wifi_0_bar, - 'signal_wifi_0_bar_sharp': Icons.signal_wifi_0_bar_sharp, - 'signal_wifi_0_bar_rounded': Icons.signal_wifi_0_bar_rounded, - 'signal_wifi_0_bar_outlined': Icons.signal_wifi_0_bar_outlined, - 'signal_wifi_4_bar': Icons.signal_wifi_4_bar, - 'signal_wifi_4_bar_sharp': Icons.signal_wifi_4_bar_sharp, - 'signal_wifi_4_bar_rounded': Icons.signal_wifi_4_bar_rounded, - 'signal_wifi_4_bar_outlined': Icons.signal_wifi_4_bar_outlined, - 'signal_wifi_4_bar_lock': Icons.signal_wifi_4_bar_lock, - 'signal_wifi_4_bar_lock_sharp': Icons.signal_wifi_4_bar_lock_sharp, - 'signal_wifi_4_bar_lock_rounded': Icons.signal_wifi_4_bar_lock_rounded, - 'signal_wifi_4_bar_lock_outlined': - Icons.signal_wifi_4_bar_lock_outlined, - 'signal_wifi_bad': Icons.signal_wifi_bad, - 'signal_wifi_bad_sharp': Icons.signal_wifi_bad_sharp, - 'signal_wifi_bad_rounded': Icons.signal_wifi_bad_rounded, - 'signal_wifi_bad_outlined': Icons.signal_wifi_bad_outlined, - 'signal_wifi_connected_no_internet_4': - Icons.signal_wifi_connected_no_internet_4, - 'signal_wifi_connected_no_internet_4_sharp': - Icons.signal_wifi_connected_no_internet_4_sharp, - 'signal_wifi_connected_no_internet_4_rounded': - Icons.signal_wifi_connected_no_internet_4_rounded, - 'signal_wifi_connected_no_internet_4_outlined': - Icons.signal_wifi_connected_no_internet_4_outlined, - 'signal_wifi_off': Icons.signal_wifi_off, - 'signal_wifi_off_sharp': Icons.signal_wifi_off_sharp, - 'signal_wifi_off_rounded': Icons.signal_wifi_off_rounded, - 'signal_wifi_off_outlined': Icons.signal_wifi_off_outlined, - 'signal_wifi_statusbar_4_bar': Icons.signal_wifi_statusbar_4_bar, - 'signal_wifi_statusbar_4_bar_sharp': - Icons.signal_wifi_statusbar_4_bar_sharp, - 'signal_wifi_statusbar_4_bar_rounded': - Icons.signal_wifi_statusbar_4_bar_rounded, - 'signal_wifi_statusbar_4_bar_outlined': - Icons.signal_wifi_statusbar_4_bar_outlined, - 'signal_wifi_statusbar_connected_no_internet_4': - Icons.signal_wifi_statusbar_connected_no_internet_4, - 'signal_wifi_statusbar_connected_no_internet_4_sharp': - Icons.signal_wifi_statusbar_connected_no_internet_4_sharp, - 'signal_wifi_statusbar_connected_no_internet_4_rounded': - Icons.signal_wifi_statusbar_connected_no_internet_4_rounded, - 'signal_wifi_statusbar_connected_no_internet_4_outlined': - Icons.signal_wifi_statusbar_connected_no_internet_4_outlined, - 'signal_wifi_statusbar_null': Icons.signal_wifi_statusbar_null, - 'signal_wifi_statusbar_null_sharp': - Icons.signal_wifi_statusbar_null_sharp, - 'signal_wifi_statusbar_null_rounded': - Icons.signal_wifi_statusbar_null_rounded, - 'signal_wifi_statusbar_null_outlined': - Icons.signal_wifi_statusbar_null_outlined, - 'sim_card': Icons.sim_card, - 'sim_card_sharp': Icons.sim_card_sharp, - 'sim_card_rounded': Icons.sim_card_rounded, - 'sim_card_outlined': Icons.sim_card_outlined, - 'sim_card_alert': Icons.sim_card_alert, - 'sim_card_alert_sharp': Icons.sim_card_alert_sharp, - 'sim_card_alert_rounded': Icons.sim_card_alert_rounded, - 'sim_card_alert_outlined': Icons.sim_card_alert_outlined, - 'sim_card_download': Icons.sim_card_download, - 'sim_card_download_sharp': Icons.sim_card_download_sharp, - 'sim_card_download_rounded': Icons.sim_card_download_rounded, - 'sim_card_download_outlined': Icons.sim_card_download_outlined, - 'single_bed': Icons.single_bed, - 'single_bed_sharp': Icons.single_bed_sharp, - 'single_bed_rounded': Icons.single_bed_rounded, - 'single_bed_outlined': Icons.single_bed_outlined, - 'sip': Icons.sip, - 'sip_sharp': Icons.sip_sharp, - 'sip_rounded': Icons.sip_rounded, - 'sip_outlined': Icons.sip_outlined, - 'skateboarding': Icons.skateboarding, - 'skateboarding_sharp': Icons.skateboarding_sharp, - 'skateboarding_rounded': Icons.skateboarding_rounded, - 'skateboarding_outlined': Icons.skateboarding_outlined, - 'skip_next': Icons.skip_next, - 'skip_next_sharp': Icons.skip_next_sharp, - 'skip_next_rounded': Icons.skip_next_rounded, - 'skip_next_outlined': Icons.skip_next_outlined, - 'skip_previous': Icons.skip_previous, - 'skip_previous_sharp': Icons.skip_previous_sharp, - 'skip_previous_rounded': Icons.skip_previous_rounded, - 'skip_previous_outlined': Icons.skip_previous_outlined, - 'sledding': Icons.sledding, - 'sledding_sharp': Icons.sledding_sharp, - 'sledding_rounded': Icons.sledding_rounded, - 'sledding_outlined': Icons.sledding_outlined, - 'slideshow': Icons.slideshow, - 'slideshow_sharp': Icons.slideshow_sharp, - 'slideshow_rounded': Icons.slideshow_rounded, - 'slideshow_outlined': Icons.slideshow_outlined, - 'slow_motion_video': Icons.slow_motion_video, - 'slow_motion_video_sharp': Icons.slow_motion_video_sharp, - 'slow_motion_video_rounded': Icons.slow_motion_video_rounded, - 'slow_motion_video_outlined': Icons.slow_motion_video_outlined, - 'smart_button': Icons.smart_button, - 'smart_button_sharp': Icons.smart_button_sharp, - 'smart_button_rounded': Icons.smart_button_rounded, - 'smart_button_outlined': Icons.smart_button_outlined, - 'smart_display': Icons.smart_display, - 'smart_display_sharp': Icons.smart_display_sharp, - 'smart_display_rounded': Icons.smart_display_rounded, - 'smart_display_outlined': Icons.smart_display_outlined, - 'smart_screen': Icons.smart_screen, - 'smart_screen_sharp': Icons.smart_screen_sharp, - 'smart_screen_rounded': Icons.smart_screen_rounded, - 'smart_screen_outlined': Icons.smart_screen_outlined, - 'smart_toy': Icons.smart_toy, - 'smart_toy_sharp': Icons.smart_toy_sharp, - 'smart_toy_rounded': Icons.smart_toy_rounded, - 'smart_toy_outlined': Icons.smart_toy_outlined, - 'smartphone': Icons.smartphone, - 'smartphone_sharp': Icons.smartphone_sharp, - 'smartphone_rounded': Icons.smartphone_rounded, - 'smartphone_outlined': Icons.smartphone_outlined, - 'smoke_free': Icons.smoke_free, - 'smoke_free_sharp': Icons.smoke_free_sharp, - 'smoke_free_rounded': Icons.smoke_free_rounded, - 'smoke_free_outlined': Icons.smoke_free_outlined, - 'smoking_rooms': Icons.smoking_rooms, - 'smoking_rooms_sharp': Icons.smoking_rooms_sharp, - 'smoking_rooms_rounded': Icons.smoking_rooms_rounded, - 'smoking_rooms_outlined': Icons.smoking_rooms_outlined, - 'sms': Icons.sms, - 'sms_sharp': Icons.sms_sharp, - 'sms_rounded': Icons.sms_rounded, - 'sms_outlined': Icons.sms_outlined, - 'sms_failed': Icons.sms_failed, - 'sms_failed_sharp': Icons.sms_failed_sharp, - 'sms_failed_rounded': Icons.sms_failed_rounded, - 'sms_failed_outlined': Icons.sms_failed_outlined, - 'snippet_folder': Icons.snippet_folder, - 'snippet_folder_sharp': Icons.snippet_folder_sharp, - 'snippet_folder_rounded': Icons.snippet_folder_rounded, - 'snippet_folder_outlined': Icons.snippet_folder_outlined, - 'snooze': Icons.snooze, - 'snooze_sharp': Icons.snooze_sharp, - 'snooze_rounded': Icons.snooze_rounded, - 'snooze_outlined': Icons.snooze_outlined, - 'snowboarding': Icons.snowboarding, - 'snowboarding_sharp': Icons.snowboarding_sharp, - 'snowboarding_rounded': Icons.snowboarding_rounded, - 'snowboarding_outlined': Icons.snowboarding_outlined, - 'snowmobile': Icons.snowmobile, - 'snowmobile_sharp': Icons.snowmobile_sharp, - 'snowmobile_rounded': Icons.snowmobile_rounded, - 'snowmobile_outlined': Icons.snowmobile_outlined, - 'snowshoeing': Icons.snowshoeing, - 'snowshoeing_sharp': Icons.snowshoeing_sharp, - 'snowshoeing_rounded': Icons.snowshoeing_rounded, - 'snowshoeing_outlined': Icons.snowshoeing_outlined, - 'soap': Icons.soap, - 'soap_sharp': Icons.soap_sharp, - 'soap_rounded': Icons.soap_rounded, - 'soap_outlined': Icons.soap_outlined, - 'social_distance': Icons.social_distance, - 'social_distance_sharp': Icons.social_distance_sharp, - 'social_distance_rounded': Icons.social_distance_rounded, - 'social_distance_outlined': Icons.social_distance_outlined, - 'sort': Icons.sort, - 'sort_sharp': Icons.sort_sharp, - 'sort_rounded': Icons.sort_rounded, - 'sort_outlined': Icons.sort_outlined, - 'sort_by_alpha': Icons.sort_by_alpha, - 'sort_by_alpha_sharp': Icons.sort_by_alpha_sharp, - 'sort_by_alpha_rounded': Icons.sort_by_alpha_rounded, - 'sort_by_alpha_outlined': Icons.sort_by_alpha_outlined, - 'source': Icons.source, - 'source_sharp': Icons.source_sharp, - 'source_rounded': Icons.source_rounded, - 'source_outlined': Icons.source_outlined, - 'south': Icons.south, - 'south_sharp': Icons.south_sharp, - 'south_rounded': Icons.south_rounded, - 'south_outlined': Icons.south_outlined, - 'south_east': Icons.south_east, - 'south_east_sharp': Icons.south_east_sharp, - 'south_east_rounded': Icons.south_east_rounded, - 'south_east_outlined': Icons.south_east_outlined, - 'south_west': Icons.south_west, - 'south_west_sharp': Icons.south_west_sharp, - 'south_west_rounded': Icons.south_west_rounded, - 'south_west_outlined': Icons.south_west_outlined, - 'spa': Icons.spa, - 'spa_sharp': Icons.spa_sharp, - 'spa_rounded': Icons.spa_rounded, - 'spa_outlined': Icons.spa_outlined, - 'space_bar': Icons.space_bar, - 'space_bar_sharp': Icons.space_bar_sharp, - 'space_bar_rounded': Icons.space_bar_rounded, - 'space_bar_outlined': Icons.space_bar_outlined, - 'space_dashboard': Icons.space_dashboard, - 'space_dashboard_sharp': Icons.space_dashboard_sharp, - 'space_dashboard_rounded': Icons.space_dashboard_rounded, - 'space_dashboard_outlined': Icons.space_dashboard_outlined, - 'speaker': Icons.speaker, - 'speaker_sharp': Icons.speaker_sharp, - 'speaker_rounded': Icons.speaker_rounded, - 'speaker_outlined': Icons.speaker_outlined, - 'speaker_group': Icons.speaker_group, - 'speaker_group_sharp': Icons.speaker_group_sharp, - 'speaker_group_rounded': Icons.speaker_group_rounded, - 'speaker_group_outlined': Icons.speaker_group_outlined, - 'speaker_notes': Icons.speaker_notes, - 'speaker_notes_sharp': Icons.speaker_notes_sharp, - 'speaker_notes_rounded': Icons.speaker_notes_rounded, - 'speaker_notes_outlined': Icons.speaker_notes_outlined, - 'speaker_notes_off': Icons.speaker_notes_off, - 'speaker_notes_off_sharp': Icons.speaker_notes_off_sharp, - 'speaker_notes_off_rounded': Icons.speaker_notes_off_rounded, - 'speaker_notes_off_outlined': Icons.speaker_notes_off_outlined, - 'speaker_phone': Icons.speaker_phone, - 'speaker_phone_sharp': Icons.speaker_phone_sharp, - 'speaker_phone_rounded': Icons.speaker_phone_rounded, - 'speaker_phone_outlined': Icons.speaker_phone_outlined, - 'speed': Icons.speed, - 'speed_sharp': Icons.speed_sharp, - 'speed_rounded': Icons.speed_rounded, - 'speed_outlined': Icons.speed_outlined, - 'spellcheck': Icons.spellcheck, - 'spellcheck_sharp': Icons.spellcheck_sharp, - 'spellcheck_rounded': Icons.spellcheck_rounded, - 'spellcheck_outlined': Icons.spellcheck_outlined, - 'splitscreen': Icons.splitscreen, - 'splitscreen_sharp': Icons.splitscreen_sharp, - 'splitscreen_rounded': Icons.splitscreen_rounded, - 'splitscreen_outlined': Icons.splitscreen_outlined, - 'sports': Icons.sports, - 'sports_sharp': Icons.sports_sharp, - 'sports_rounded': Icons.sports_rounded, - 'sports_outlined': Icons.sports_outlined, - 'sports_bar': Icons.sports_bar, - 'sports_bar_sharp': Icons.sports_bar_sharp, - 'sports_bar_rounded': Icons.sports_bar_rounded, - 'sports_bar_outlined': Icons.sports_bar_outlined, - 'sports_baseball': Icons.sports_baseball, - 'sports_baseball_sharp': Icons.sports_baseball_sharp, - 'sports_baseball_rounded': Icons.sports_baseball_rounded, - 'sports_baseball_outlined': Icons.sports_baseball_outlined, - 'sports_basketball': Icons.sports_basketball, - 'sports_basketball_sharp': Icons.sports_basketball_sharp, - 'sports_basketball_rounded': Icons.sports_basketball_rounded, - 'sports_basketball_outlined': Icons.sports_basketball_outlined, - 'sports_cricket': Icons.sports_cricket, - 'sports_cricket_sharp': Icons.sports_cricket_sharp, - 'sports_cricket_rounded': Icons.sports_cricket_rounded, - 'sports_cricket_outlined': Icons.sports_cricket_outlined, - 'sports_esports': Icons.sports_esports, - 'sports_esports_sharp': Icons.sports_esports_sharp, - 'sports_esports_rounded': Icons.sports_esports_rounded, - 'sports_esports_outlined': Icons.sports_esports_outlined, - 'sports_football': Icons.sports_football, - 'sports_football_sharp': Icons.sports_football_sharp, - 'sports_football_rounded': Icons.sports_football_rounded, - 'sports_football_outlined': Icons.sports_football_outlined, - 'sports_golf': Icons.sports_golf, - 'sports_golf_sharp': Icons.sports_golf_sharp, - 'sports_golf_rounded': Icons.sports_golf_rounded, - 'sports_golf_outlined': Icons.sports_golf_outlined, - 'sports_handball': Icons.sports_handball, - 'sports_handball_sharp': Icons.sports_handball_sharp, - 'sports_handball_rounded': Icons.sports_handball_rounded, - 'sports_handball_outlined': Icons.sports_handball_outlined, - 'sports_hockey': Icons.sports_hockey, - 'sports_hockey_sharp': Icons.sports_hockey_sharp, - 'sports_hockey_rounded': Icons.sports_hockey_rounded, - 'sports_hockey_outlined': Icons.sports_hockey_outlined, - 'sports_kabaddi': Icons.sports_kabaddi, - 'sports_kabaddi_sharp': Icons.sports_kabaddi_sharp, - 'sports_kabaddi_rounded': Icons.sports_kabaddi_rounded, - 'sports_kabaddi_outlined': Icons.sports_kabaddi_outlined, - 'sports_mma': Icons.sports_mma, - 'sports_mma_sharp': Icons.sports_mma_sharp, - 'sports_mma_rounded': Icons.sports_mma_rounded, - 'sports_mma_outlined': Icons.sports_mma_outlined, - 'sports_motorsports': Icons.sports_motorsports, - 'sports_motorsports_sharp': Icons.sports_motorsports_sharp, - 'sports_motorsports_rounded': Icons.sports_motorsports_rounded, - 'sports_motorsports_outlined': Icons.sports_motorsports_outlined, - 'sports_rugby': Icons.sports_rugby, - 'sports_rugby_sharp': Icons.sports_rugby_sharp, - 'sports_rugby_rounded': Icons.sports_rugby_rounded, - 'sports_rugby_outlined': Icons.sports_rugby_outlined, - 'sports_score': Icons.sports_score, - 'sports_score_sharp': Icons.sports_score_sharp, - 'sports_score_rounded': Icons.sports_score_rounded, - 'sports_score_outlined': Icons.sports_score_outlined, - 'sports_soccer': Icons.sports_soccer, - 'sports_soccer_sharp': Icons.sports_soccer_sharp, - 'sports_soccer_rounded': Icons.sports_soccer_rounded, - 'sports_soccer_outlined': Icons.sports_soccer_outlined, - 'sports_tennis': Icons.sports_tennis, - 'sports_tennis_sharp': Icons.sports_tennis_sharp, - 'sports_tennis_rounded': Icons.sports_tennis_rounded, - 'sports_tennis_outlined': Icons.sports_tennis_outlined, - 'sports_volleyball': Icons.sports_volleyball, - 'sports_volleyball_sharp': Icons.sports_volleyball_sharp, - 'sports_volleyball_rounded': Icons.sports_volleyball_rounded, - 'sports_volleyball_outlined': Icons.sports_volleyball_outlined, - 'square_foot': Icons.square_foot, - 'square_foot_sharp': Icons.square_foot_sharp, - 'square_foot_rounded': Icons.square_foot_rounded, - 'square_foot_outlined': Icons.square_foot_outlined, - 'stacked_bar_chart': Icons.stacked_bar_chart, - 'stacked_bar_chart_sharp': Icons.stacked_bar_chart_sharp, - 'stacked_bar_chart_rounded': Icons.stacked_bar_chart_rounded, - 'stacked_bar_chart_outlined': Icons.stacked_bar_chart_outlined, - 'stacked_line_chart': Icons.stacked_line_chart, - 'stacked_line_chart_sharp': Icons.stacked_line_chart_sharp, - 'stacked_line_chart_rounded': Icons.stacked_line_chart_rounded, - 'stacked_line_chart_outlined': Icons.stacked_line_chart_outlined, - 'stairs': Icons.stairs, - 'stairs_sharp': Icons.stairs_sharp, - 'stairs_rounded': Icons.stairs_rounded, - 'stairs_outlined': Icons.stairs_outlined, - 'star': Icons.star, - 'star_sharp': Icons.star_sharp, - 'star_rounded': Icons.star_rounded, - 'star_outlined': Icons.star_outlined, - 'star_border': Icons.star_border, - 'star_border_sharp': Icons.star_border_sharp, - 'star_border_rounded': Icons.star_border_rounded, - 'star_border_outlined': Icons.star_border_outlined, - 'star_border_purple500': Icons.star_border_purple500, - 'star_border_purple500_sharp': Icons.star_border_purple500_sharp, - 'star_border_purple500_rounded': Icons.star_border_purple500_rounded, - 'star_border_purple500_outlined': Icons.star_border_purple500_outlined, - 'star_half': Icons.star_half, - 'star_half_sharp': Icons.star_half_sharp, - 'star_half_rounded': Icons.star_half_rounded, - 'star_half_outlined': Icons.star_half_outlined, - 'star_outline': Icons.star_outline, - 'star_outline_sharp': Icons.star_outline_sharp, - 'star_outline_rounded': Icons.star_outline_rounded, - 'star_outline_outlined': Icons.star_outline_outlined, - 'star_purple500': Icons.star_purple500, - 'star_purple500_sharp': Icons.star_purple500_sharp, - 'star_purple500_rounded': Icons.star_purple500_rounded, - 'star_purple500_outlined': Icons.star_purple500_outlined, - 'star_rate': Icons.star_rate, - 'star_rate_sharp': Icons.star_rate_sharp, - 'star_rate_rounded': Icons.star_rate_rounded, - 'star_rate_outlined': Icons.star_rate_outlined, - 'stars': Icons.stars, - 'stars_sharp': Icons.stars_sharp, - 'stars_rounded': Icons.stars_rounded, - 'stars_outlined': Icons.stars_outlined, - 'stay_current_landscape': Icons.stay_current_landscape, - 'stay_current_landscape_sharp': Icons.stay_current_landscape_sharp, - 'stay_current_landscape_rounded': Icons.stay_current_landscape_rounded, - 'stay_current_landscape_outlined': - Icons.stay_current_landscape_outlined, - 'stay_current_portrait': Icons.stay_current_portrait, - 'stay_current_portrait_sharp': Icons.stay_current_portrait_sharp, - 'stay_current_portrait_rounded': Icons.stay_current_portrait_rounded, - 'stay_current_portrait_outlined': Icons.stay_current_portrait_outlined, - 'stay_primary_landscape': Icons.stay_primary_landscape, - 'stay_primary_landscape_sharp': Icons.stay_primary_landscape_sharp, - 'stay_primary_landscape_rounded': Icons.stay_primary_landscape_rounded, - 'stay_primary_landscape_outlined': - Icons.stay_primary_landscape_outlined, - 'stay_primary_portrait': Icons.stay_primary_portrait, - 'stay_primary_portrait_sharp': Icons.stay_primary_portrait_sharp, - 'stay_primary_portrait_rounded': Icons.stay_primary_portrait_rounded, - 'stay_primary_portrait_outlined': Icons.stay_primary_portrait_outlined, - 'sticky_note_2': Icons.sticky_note_2, - 'sticky_note_2_sharp': Icons.sticky_note_2_sharp, - 'sticky_note_2_rounded': Icons.sticky_note_2_rounded, - 'sticky_note_2_outlined': Icons.sticky_note_2_outlined, - 'stop': Icons.stop, - 'stop_sharp': Icons.stop_sharp, - 'stop_rounded': Icons.stop_rounded, - 'stop_outlined': Icons.stop_outlined, - 'stop_circle': Icons.stop_circle, - 'stop_circle_sharp': Icons.stop_circle_sharp, - 'stop_circle_rounded': Icons.stop_circle_rounded, - 'stop_circle_outlined': Icons.stop_circle_outlined, - 'stop_screen_share': Icons.stop_screen_share, - 'stop_screen_share_sharp': Icons.stop_screen_share_sharp, - 'stop_screen_share_rounded': Icons.stop_screen_share_rounded, - 'stop_screen_share_outlined': Icons.stop_screen_share_outlined, - 'storage': Icons.storage, - 'storage_sharp': Icons.storage_sharp, - 'storage_rounded': Icons.storage_rounded, - 'storage_outlined': Icons.storage_outlined, - 'store': Icons.store, - 'store_sharp': Icons.store_sharp, - 'store_rounded': Icons.store_rounded, - 'store_outlined': Icons.store_outlined, - 'store_mall_directory': Icons.store_mall_directory, - 'store_mall_directory_sharp': Icons.store_mall_directory_sharp, - 'store_mall_directory_rounded': Icons.store_mall_directory_rounded, - 'store_mall_directory_outlined': Icons.store_mall_directory_outlined, - 'storefront': Icons.storefront, - 'storefront_sharp': Icons.storefront_sharp, - 'storefront_rounded': Icons.storefront_rounded, - 'storefront_outlined': Icons.storefront_outlined, - 'storm': Icons.storm, - 'storm_sharp': Icons.storm_sharp, - 'storm_rounded': Icons.storm_rounded, - 'storm_outlined': Icons.storm_outlined, - 'straighten': Icons.straighten, - 'straighten_sharp': Icons.straighten_sharp, - 'straighten_rounded': Icons.straighten_rounded, - 'straighten_outlined': Icons.straighten_outlined, - 'stream': Icons.stream, - 'stream_sharp': Icons.stream_sharp, - 'stream_rounded': Icons.stream_rounded, - 'stream_outlined': Icons.stream_outlined, - 'streetview': Icons.streetview, - 'streetview_sharp': Icons.streetview_sharp, - 'streetview_rounded': Icons.streetview_rounded, - 'streetview_outlined': Icons.streetview_outlined, - 'strikethrough_s': Icons.strikethrough_s, - 'strikethrough_s_sharp': Icons.strikethrough_s_sharp, - 'strikethrough_s_rounded': Icons.strikethrough_s_rounded, - 'strikethrough_s_outlined': Icons.strikethrough_s_outlined, - 'stroller': Icons.stroller, - 'stroller_sharp': Icons.stroller_sharp, - 'stroller_rounded': Icons.stroller_rounded, - 'stroller_outlined': Icons.stroller_outlined, - 'style': Icons.style, - 'style_sharp': Icons.style_sharp, - 'style_rounded': Icons.style_rounded, - 'style_outlined': Icons.style_outlined, - 'subdirectory_arrow_left': Icons.subdirectory_arrow_left, - 'subdirectory_arrow_left_sharp': Icons.subdirectory_arrow_left_sharp, - 'subdirectory_arrow_left_rounded': - Icons.subdirectory_arrow_left_rounded, - 'subdirectory_arrow_left_outlined': - Icons.subdirectory_arrow_left_outlined, - 'subdirectory_arrow_right': Icons.subdirectory_arrow_right, - 'subdirectory_arrow_right_sharp': Icons.subdirectory_arrow_right_sharp, - 'subdirectory_arrow_right_rounded': - Icons.subdirectory_arrow_right_rounded, - 'subdirectory_arrow_right_outlined': - Icons.subdirectory_arrow_right_outlined, - 'subject': Icons.subject, - 'subject_sharp': Icons.subject_sharp, - 'subject_rounded': Icons.subject_rounded, - 'subject_outlined': Icons.subject_outlined, - 'subscript': Icons.subscript, - 'subscript_sharp': Icons.subscript_sharp, - 'subscript_rounded': Icons.subscript_rounded, - 'subscript_outlined': Icons.subscript_outlined, - 'subscriptions': Icons.subscriptions, - 'subscriptions_sharp': Icons.subscriptions_sharp, - 'subscriptions_rounded': Icons.subscriptions_rounded, - 'subscriptions_outlined': Icons.subscriptions_outlined, - 'subtitles': Icons.subtitles, - 'subtitles_sharp': Icons.subtitles_sharp, - 'subtitles_rounded': Icons.subtitles_rounded, - 'subtitles_outlined': Icons.subtitles_outlined, - 'subtitles_off': Icons.subtitles_off, - 'subtitles_off_sharp': Icons.subtitles_off_sharp, - 'subtitles_off_rounded': Icons.subtitles_off_rounded, - 'subtitles_off_outlined': Icons.subtitles_off_outlined, - 'subway': Icons.subway, - 'subway_sharp': Icons.subway_sharp, - 'subway_rounded': Icons.subway_rounded, - 'subway_outlined': Icons.subway_outlined, - 'summarize': Icons.summarize, - 'summarize_sharp': Icons.summarize_sharp, - 'summarize_rounded': Icons.summarize_rounded, - 'summarize_outlined': Icons.summarize_outlined, - 'superscript': Icons.superscript, - 'superscript_sharp': Icons.superscript_sharp, - 'superscript_rounded': Icons.superscript_rounded, - 'superscript_outlined': Icons.superscript_outlined, - 'supervised_user_circle': Icons.supervised_user_circle, - 'supervised_user_circle_sharp': Icons.supervised_user_circle_sharp, - 'supervised_user_circle_rounded': Icons.supervised_user_circle_rounded, - 'supervised_user_circle_outlined': - Icons.supervised_user_circle_outlined, - 'supervisor_account': Icons.supervisor_account, - 'supervisor_account_sharp': Icons.supervisor_account_sharp, - 'supervisor_account_rounded': Icons.supervisor_account_rounded, - 'supervisor_account_outlined': Icons.supervisor_account_outlined, - 'support': Icons.support, - 'support_sharp': Icons.support_sharp, - 'support_rounded': Icons.support_rounded, - 'support_outlined': Icons.support_outlined, - 'support_agent': Icons.support_agent, - 'support_agent_sharp': Icons.support_agent_sharp, - 'support_agent_rounded': Icons.support_agent_rounded, - 'support_agent_outlined': Icons.support_agent_outlined, - 'surfing': Icons.surfing, - 'surfing_sharp': Icons.surfing_sharp, - 'surfing_rounded': Icons.surfing_rounded, - 'surfing_outlined': Icons.surfing_outlined, - 'surround_sound': Icons.surround_sound, - 'surround_sound_sharp': Icons.surround_sound_sharp, - 'surround_sound_rounded': Icons.surround_sound_rounded, - 'surround_sound_outlined': Icons.surround_sound_outlined, - 'swap_calls': Icons.swap_calls, - 'swap_calls_sharp': Icons.swap_calls_sharp, - 'swap_calls_rounded': Icons.swap_calls_rounded, - 'swap_calls_outlined': Icons.swap_calls_outlined, - 'swap_horiz': Icons.swap_horiz, - 'swap_horiz_sharp': Icons.swap_horiz_sharp, - 'swap_horiz_rounded': Icons.swap_horiz_rounded, - 'swap_horiz_outlined': Icons.swap_horiz_outlined, - 'swap_horizontal_circle': Icons.swap_horizontal_circle, - 'swap_horizontal_circle_sharp': Icons.swap_horizontal_circle_sharp, - 'swap_horizontal_circle_rounded': Icons.swap_horizontal_circle_rounded, - 'swap_horizontal_circle_outlined': - Icons.swap_horizontal_circle_outlined, - 'swap_vert': Icons.swap_vert, - 'swap_vert_sharp': Icons.swap_vert_sharp, - 'swap_vert_rounded': Icons.swap_vert_rounded, - 'swap_vert_outlined': Icons.swap_vert_outlined, - 'swap_vert_circle': Icons.swap_vert_circle, - 'swap_vert_circle_sharp': Icons.swap_vert_circle_sharp, - 'swap_vert_circle_rounded': Icons.swap_vert_circle_rounded, - 'swap_vert_circle_outlined': Icons.swap_vert_circle_outlined, - 'swap_vertical_circle': Icons.swap_vertical_circle, - 'swap_vertical_circle_sharp': Icons.swap_vertical_circle_sharp, - 'swap_vertical_circle_rounded': Icons.swap_vertical_circle_rounded, - 'swap_vertical_circle_outlined': Icons.swap_vertical_circle_outlined, - 'swipe': Icons.swipe, - 'swipe_sharp': Icons.swipe_sharp, - 'swipe_rounded': Icons.swipe_rounded, - 'swipe_outlined': Icons.swipe_outlined, - 'switch_account': Icons.switch_account, - 'switch_account_sharp': Icons.switch_account_sharp, - 'switch_account_rounded': Icons.switch_account_rounded, - 'switch_account_outlined': Icons.switch_account_outlined, - 'switch_camera': Icons.switch_camera, - 'switch_camera_sharp': Icons.switch_camera_sharp, - 'switch_camera_rounded': Icons.switch_camera_rounded, - 'switch_camera_outlined': Icons.switch_camera_outlined, - 'switch_left': Icons.switch_left, - 'switch_left_sharp': Icons.switch_left_sharp, - 'switch_left_rounded': Icons.switch_left_rounded, - 'switch_left_outlined': Icons.switch_left_outlined, - 'switch_right': Icons.switch_right, - 'switch_right_sharp': Icons.switch_right_sharp, - 'switch_right_rounded': Icons.switch_right_rounded, - 'switch_right_outlined': Icons.switch_right_outlined, - 'switch_video': Icons.switch_video, - 'switch_video_sharp': Icons.switch_video_sharp, - 'switch_video_rounded': Icons.switch_video_rounded, - 'switch_video_outlined': Icons.switch_video_outlined, - 'sync': Icons.sync, - 'sync_sharp': Icons.sync_sharp, - 'sync_rounded': Icons.sync_rounded, - 'sync_outlined': Icons.sync_outlined, - 'sync_alt': Icons.sync_alt, - 'sync_alt_sharp': Icons.sync_alt_sharp, - 'sync_alt_rounded': Icons.sync_alt_rounded, - 'sync_alt_outlined': Icons.sync_alt_outlined, - 'sync_disabled': Icons.sync_disabled, - 'sync_disabled_sharp': Icons.sync_disabled_sharp, - 'sync_disabled_rounded': Icons.sync_disabled_rounded, - 'sync_disabled_outlined': Icons.sync_disabled_outlined, - 'sync_problem': Icons.sync_problem, - 'sync_problem_sharp': Icons.sync_problem_sharp, - 'sync_problem_rounded': Icons.sync_problem_rounded, - 'sync_problem_outlined': Icons.sync_problem_outlined, - 'system_security_update': Icons.system_security_update, - 'system_security_update_sharp': Icons.system_security_update_sharp, - 'system_security_update_rounded': Icons.system_security_update_rounded, - 'system_security_update_outlined': - Icons.system_security_update_outlined, - 'system_security_update_good': Icons.system_security_update_good, - 'system_security_update_good_sharp': - Icons.system_security_update_good_sharp, - 'system_security_update_good_rounded': - Icons.system_security_update_good_rounded, - 'system_security_update_good_outlined': - Icons.system_security_update_good_outlined, - 'system_security_update_warning': Icons.system_security_update_warning, - 'system_security_update_warning_sharp': - Icons.system_security_update_warning_sharp, - 'system_security_update_warning_rounded': - Icons.system_security_update_warning_rounded, - 'system_security_update_warning_outlined': - Icons.system_security_update_warning_outlined, - 'system_update': Icons.system_update, - 'system_update_sharp': Icons.system_update_sharp, - 'system_update_rounded': Icons.system_update_rounded, - 'system_update_outlined': Icons.system_update_outlined, - 'system_update_alt': Icons.system_update_alt, - 'system_update_alt_sharp': Icons.system_update_alt_sharp, - 'system_update_alt_rounded': Icons.system_update_alt_rounded, - 'system_update_alt_outlined': Icons.system_update_alt_outlined, - 'system_update_tv': Icons.system_update_tv, - 'system_update_tv_sharp': Icons.system_update_tv_sharp, - 'system_update_tv_rounded': Icons.system_update_tv_rounded, - 'system_update_tv_outlined': Icons.system_update_tv_outlined, - 'tab': Icons.tab, - 'tab_sharp': Icons.tab_sharp, - 'tab_rounded': Icons.tab_rounded, - 'tab_outlined': Icons.tab_outlined, - 'tab_unselected': Icons.tab_unselected, - 'tab_unselected_sharp': Icons.tab_unselected_sharp, - 'tab_unselected_rounded': Icons.tab_unselected_rounded, - 'tab_unselected_outlined': Icons.tab_unselected_outlined, - 'table_chart': Icons.table_chart, - 'table_chart_sharp': Icons.table_chart_sharp, - 'table_chart_rounded': Icons.table_chart_rounded, - 'table_chart_outlined': Icons.table_chart_outlined, - 'table_rows': Icons.table_rows, - 'table_rows_sharp': Icons.table_rows_sharp, - 'table_rows_rounded': Icons.table_rows_rounded, - 'table_rows_outlined': Icons.table_rows_outlined, - 'table_view': Icons.table_view, - 'table_view_sharp': Icons.table_view_sharp, - 'table_view_rounded': Icons.table_view_rounded, - 'table_view_outlined': Icons.table_view_outlined, - 'tablet': Icons.tablet, - 'tablet_sharp': Icons.tablet_sharp, - 'tablet_rounded': Icons.tablet_rounded, - 'tablet_outlined': Icons.tablet_outlined, - 'tablet_android': Icons.tablet_android, - 'tablet_android_sharp': Icons.tablet_android_sharp, - 'tablet_android_rounded': Icons.tablet_android_rounded, - 'tablet_android_outlined': Icons.tablet_android_outlined, - 'tablet_mac': Icons.tablet_mac, - 'tablet_mac_sharp': Icons.tablet_mac_sharp, - 'tablet_mac_rounded': Icons.tablet_mac_rounded, - 'tablet_mac_outlined': Icons.tablet_mac_outlined, - 'tag': Icons.tag, - 'tag_sharp': Icons.tag_sharp, - 'tag_rounded': Icons.tag_rounded, - 'tag_outlined': Icons.tag_outlined, - 'tag_faces': Icons.tag_faces, - 'tag_faces_sharp': Icons.tag_faces_sharp, - 'tag_faces_rounded': Icons.tag_faces_rounded, - 'tag_faces_outlined': Icons.tag_faces_outlined, - 'takeout_dining': Icons.takeout_dining, - 'takeout_dining_sharp': Icons.takeout_dining_sharp, - 'takeout_dining_rounded': Icons.takeout_dining_rounded, - 'takeout_dining_outlined': Icons.takeout_dining_outlined, - 'tap_and_play': Icons.tap_and_play, - 'tap_and_play_sharp': Icons.tap_and_play_sharp, - 'tap_and_play_rounded': Icons.tap_and_play_rounded, - 'tap_and_play_outlined': Icons.tap_and_play_outlined, - 'tapas': Icons.tapas, - 'tapas_sharp': Icons.tapas_sharp, - 'tapas_rounded': Icons.tapas_rounded, - 'tapas_outlined': Icons.tapas_outlined, - 'task': Icons.task, - 'task_sharp': Icons.task_sharp, - 'task_rounded': Icons.task_rounded, - 'task_outlined': Icons.task_outlined, - 'task_alt': Icons.task_alt, - 'task_alt_sharp': Icons.task_alt_sharp, - 'task_alt_rounded': Icons.task_alt_rounded, - 'task_alt_outlined': Icons.task_alt_outlined, - 'taxi_alert': Icons.taxi_alert, - 'taxi_alert_sharp': Icons.taxi_alert_sharp, - 'taxi_alert_rounded': Icons.taxi_alert_rounded, - 'taxi_alert_outlined': Icons.taxi_alert_outlined, - 'terrain': Icons.terrain, - 'terrain_sharp': Icons.terrain_sharp, - 'terrain_rounded': Icons.terrain_rounded, - 'terrain_outlined': Icons.terrain_outlined, - 'text_fields': Icons.text_fields, - 'text_fields_sharp': Icons.text_fields_sharp, - 'text_fields_rounded': Icons.text_fields_rounded, - 'text_fields_outlined': Icons.text_fields_outlined, - 'text_format': Icons.text_format, - 'text_format_sharp': Icons.text_format_sharp, - 'text_format_rounded': Icons.text_format_rounded, - 'text_format_outlined': Icons.text_format_outlined, - 'text_rotate_up': Icons.text_rotate_up, - 'text_rotate_up_sharp': Icons.text_rotate_up_sharp, - 'text_rotate_up_rounded': Icons.text_rotate_up_rounded, - 'text_rotate_up_outlined': Icons.text_rotate_up_outlined, - 'text_rotate_vertical': Icons.text_rotate_vertical, - 'text_rotate_vertical_sharp': Icons.text_rotate_vertical_sharp, - 'text_rotate_vertical_rounded': Icons.text_rotate_vertical_rounded, - 'text_rotate_vertical_outlined': Icons.text_rotate_vertical_outlined, - 'text_rotation_angledown': Icons.text_rotation_angledown, - 'text_rotation_angledown_sharp': Icons.text_rotation_angledown_sharp, - 'text_rotation_angledown_rounded': - Icons.text_rotation_angledown_rounded, - 'text_rotation_angledown_outlined': - Icons.text_rotation_angledown_outlined, - 'text_rotation_angleup': Icons.text_rotation_angleup, - 'text_rotation_angleup_sharp': Icons.text_rotation_angleup_sharp, - 'text_rotation_angleup_rounded': Icons.text_rotation_angleup_rounded, - 'text_rotation_angleup_outlined': Icons.text_rotation_angleup_outlined, - 'text_rotation_down': Icons.text_rotation_down, - 'text_rotation_down_sharp': Icons.text_rotation_down_sharp, - 'text_rotation_down_rounded': Icons.text_rotation_down_rounded, - 'text_rotation_down_outlined': Icons.text_rotation_down_outlined, - 'text_rotation_none': Icons.text_rotation_none, - 'text_rotation_none_sharp': Icons.text_rotation_none_sharp, - 'text_rotation_none_rounded': Icons.text_rotation_none_rounded, - 'text_rotation_none_outlined': Icons.text_rotation_none_outlined, - 'text_snippet': Icons.text_snippet, - 'text_snippet_sharp': Icons.text_snippet_sharp, - 'text_snippet_rounded': Icons.text_snippet_rounded, - 'text_snippet_outlined': Icons.text_snippet_outlined, - 'textsms': Icons.textsms, - 'textsms_sharp': Icons.textsms_sharp, - 'textsms_rounded': Icons.textsms_rounded, - 'textsms_outlined': Icons.textsms_outlined, - 'texture': Icons.texture, - 'texture_sharp': Icons.texture_sharp, - 'texture_rounded': Icons.texture_rounded, - 'texture_outlined': Icons.texture_outlined, - 'theater_comedy': Icons.theater_comedy, - 'theater_comedy_sharp': Icons.theater_comedy_sharp, - 'theater_comedy_rounded': Icons.theater_comedy_rounded, - 'theater_comedy_outlined': Icons.theater_comedy_outlined, - 'theaters': Icons.theaters, - 'theaters_sharp': Icons.theaters_sharp, - 'theaters_rounded': Icons.theaters_rounded, - 'theaters_outlined': Icons.theaters_outlined, - 'thermostat': Icons.thermostat, - 'thermostat_sharp': Icons.thermostat_sharp, - 'thermostat_rounded': Icons.thermostat_rounded, - 'thermostat_outlined': Icons.thermostat_outlined, - 'thermostat_auto': Icons.thermostat_auto, - 'thermostat_auto_sharp': Icons.thermostat_auto_sharp, - 'thermostat_auto_rounded': Icons.thermostat_auto_rounded, - 'thermostat_auto_outlined': Icons.thermostat_auto_outlined, - 'thumb_down': Icons.thumb_down, - 'thumb_down_sharp': Icons.thumb_down_sharp, - 'thumb_down_rounded': Icons.thumb_down_rounded, - 'thumb_down_outlined': Icons.thumb_down_outlined, - 'thumb_down_alt': Icons.thumb_down_alt, - 'thumb_down_alt_sharp': Icons.thumb_down_alt_sharp, - 'thumb_down_alt_rounded': Icons.thumb_down_alt_rounded, - 'thumb_down_alt_outlined': Icons.thumb_down_alt_outlined, - 'thumb_down_off_alt': Icons.thumb_down_off_alt, - 'thumb_down_off_alt_sharp': Icons.thumb_down_off_alt_sharp, - 'thumb_down_off_alt_rounded': Icons.thumb_down_off_alt_rounded, - 'thumb_down_off_alt_outlined': Icons.thumb_down_off_alt_outlined, - 'thumb_up': Icons.thumb_up, - 'thumb_up_sharp': Icons.thumb_up_sharp, - 'thumb_up_rounded': Icons.thumb_up_rounded, - 'thumb_up_outlined': Icons.thumb_up_outlined, - 'thumb_up_alt': Icons.thumb_up_alt, - 'thumb_up_alt_sharp': Icons.thumb_up_alt_sharp, - 'thumb_up_alt_rounded': Icons.thumb_up_alt_rounded, - 'thumb_up_alt_outlined': Icons.thumb_up_alt_outlined, - 'thumb_up_off_alt': Icons.thumb_up_off_alt, - 'thumb_up_off_alt_sharp': Icons.thumb_up_off_alt_sharp, - 'thumb_up_off_alt_rounded': Icons.thumb_up_off_alt_rounded, - 'thumb_up_off_alt_outlined': Icons.thumb_up_off_alt_outlined, - 'thumbs_up_down': Icons.thumbs_up_down, - 'thumbs_up_down_sharp': Icons.thumbs_up_down_sharp, - 'thumbs_up_down_rounded': Icons.thumbs_up_down_rounded, - 'thumbs_up_down_outlined': Icons.thumbs_up_down_outlined, - 'time_to_leave': Icons.time_to_leave, - 'time_to_leave_sharp': Icons.time_to_leave_sharp, - 'time_to_leave_rounded': Icons.time_to_leave_rounded, - 'time_to_leave_outlined': Icons.time_to_leave_outlined, - 'timelapse': Icons.timelapse, - 'timelapse_sharp': Icons.timelapse_sharp, - 'timelapse_rounded': Icons.timelapse_rounded, - 'timelapse_outlined': Icons.timelapse_outlined, - 'timeline': Icons.timeline, - 'timeline_sharp': Icons.timeline_sharp, - 'timeline_rounded': Icons.timeline_rounded, - 'timeline_outlined': Icons.timeline_outlined, - 'timer': Icons.timer, - 'timer_sharp': Icons.timer_sharp, - 'timer_rounded': Icons.timer_rounded, - 'timer_outlined': Icons.timer_outlined, - 'timer_10': Icons.timer_10, - 'timer_10_sharp': Icons.timer_10_sharp, - 'timer_10_rounded': Icons.timer_10_rounded, - 'timer_10_outlined': Icons.timer_10_outlined, - 'timer_10_select': Icons.timer_10_select, - 'timer_10_select_sharp': Icons.timer_10_select_sharp, - 'timer_10_select_rounded': Icons.timer_10_select_rounded, - 'timer_10_select_outlined': Icons.timer_10_select_outlined, - 'timer_3': Icons.timer_3, - 'timer_3_sharp': Icons.timer_3_sharp, - 'timer_3_rounded': Icons.timer_3_rounded, - 'timer_3_outlined': Icons.timer_3_outlined, - 'timer_3_select': Icons.timer_3_select, - 'timer_3_select_sharp': Icons.timer_3_select_sharp, - 'timer_3_select_rounded': Icons.timer_3_select_rounded, - 'timer_3_select_outlined': Icons.timer_3_select_outlined, - 'timer_off': Icons.timer_off, - 'timer_off_sharp': Icons.timer_off_sharp, - 'timer_off_rounded': Icons.timer_off_rounded, - 'timer_off_outlined': Icons.timer_off_outlined, - 'title': Icons.title, - 'title_sharp': Icons.title_sharp, - 'title_rounded': Icons.title_rounded, - 'title_outlined': Icons.title_outlined, - 'toc': Icons.toc, - 'toc_sharp': Icons.toc_sharp, - 'toc_rounded': Icons.toc_rounded, - 'toc_outlined': Icons.toc_outlined, - 'today': Icons.today, - 'today_sharp': Icons.today_sharp, - 'today_rounded': Icons.today_rounded, - 'today_outlined': Icons.today_outlined, - 'toggle_off': Icons.toggle_off, - 'toggle_off_sharp': Icons.toggle_off_sharp, - 'toggle_off_rounded': Icons.toggle_off_rounded, - 'toggle_off_outlined': Icons.toggle_off_outlined, - 'toggle_on': Icons.toggle_on, - 'toggle_on_sharp': Icons.toggle_on_sharp, - 'toggle_on_rounded': Icons.toggle_on_rounded, - 'toggle_on_outlined': Icons.toggle_on_outlined, - 'toll': Icons.toll, - 'toll_sharp': Icons.toll_sharp, - 'toll_rounded': Icons.toll_rounded, - 'toll_outlined': Icons.toll_outlined, - 'tonality': Icons.tonality, - 'tonality_sharp': Icons.tonality_sharp, - 'tonality_rounded': Icons.tonality_rounded, - 'tonality_outlined': Icons.tonality_outlined, - 'topic': Icons.topic, - 'topic_sharp': Icons.topic_sharp, - 'topic_rounded': Icons.topic_rounded, - 'topic_outlined': Icons.topic_outlined, - 'touch_app': Icons.touch_app, - 'touch_app_sharp': Icons.touch_app_sharp, - 'touch_app_rounded': Icons.touch_app_rounded, - 'touch_app_outlined': Icons.touch_app_outlined, - 'tour': Icons.tour, - 'tour_sharp': Icons.tour_sharp, - 'tour_rounded': Icons.tour_rounded, - 'tour_outlined': Icons.tour_outlined, - 'toys': Icons.toys, - 'toys_sharp': Icons.toys_sharp, - 'toys_rounded': Icons.toys_rounded, - 'toys_outlined': Icons.toys_outlined, - 'track_changes': Icons.track_changes, - 'track_changes_sharp': Icons.track_changes_sharp, - 'track_changes_rounded': Icons.track_changes_rounded, - 'track_changes_outlined': Icons.track_changes_outlined, - 'traffic': Icons.traffic, - 'traffic_sharp': Icons.traffic_sharp, - 'traffic_rounded': Icons.traffic_rounded, - 'traffic_outlined': Icons.traffic_outlined, - 'train': Icons.train, - 'train_sharp': Icons.train_sharp, - 'train_rounded': Icons.train_rounded, - 'train_outlined': Icons.train_outlined, - 'tram': Icons.tram, - 'tram_sharp': Icons.tram_sharp, - 'tram_rounded': Icons.tram_rounded, - 'tram_outlined': Icons.tram_outlined, - 'transfer_within_a_station': Icons.transfer_within_a_station, - 'transfer_within_a_station_sharp': - Icons.transfer_within_a_station_sharp, - 'transfer_within_a_station_rounded': - Icons.transfer_within_a_station_rounded, - 'transfer_within_a_station_outlined': - Icons.transfer_within_a_station_outlined, - 'transform': Icons.transform, - 'transform_sharp': Icons.transform_sharp, - 'transform_rounded': Icons.transform_rounded, - 'transform_outlined': Icons.transform_outlined, - 'transgender': Icons.transgender, - 'transgender_sharp': Icons.transgender_sharp, - 'transgender_rounded': Icons.transgender_rounded, - 'transgender_outlined': Icons.transgender_outlined, - 'transit_enterexit': Icons.transit_enterexit, - 'transit_enterexit_sharp': Icons.transit_enterexit_sharp, - 'transit_enterexit_rounded': Icons.transit_enterexit_rounded, - 'transit_enterexit_outlined': Icons.transit_enterexit_outlined, - 'translate': Icons.translate, - 'translate_sharp': Icons.translate_sharp, - 'translate_rounded': Icons.translate_rounded, - 'translate_outlined': Icons.translate_outlined, - 'travel_explore': Icons.travel_explore, - 'travel_explore_sharp': Icons.travel_explore_sharp, - 'travel_explore_rounded': Icons.travel_explore_rounded, - 'travel_explore_outlined': Icons.travel_explore_outlined, - 'trending_down': Icons.trending_down, - 'trending_down_sharp': Icons.trending_down_sharp, - 'trending_down_rounded': Icons.trending_down_rounded, - 'trending_down_outlined': Icons.trending_down_outlined, - 'trending_flat': Icons.trending_flat, - 'trending_flat_sharp': Icons.trending_flat_sharp, - 'trending_flat_rounded': Icons.trending_flat_rounded, - 'trending_flat_outlined': Icons.trending_flat_outlined, - 'trending_neutral': Icons.trending_neutral, - 'trending_neutral_sharp': Icons.trending_neutral_sharp, - 'trending_neutral_rounded': Icons.trending_neutral_rounded, - 'trending_neutral_outlined': Icons.trending_neutral_outlined, - 'trending_up': Icons.trending_up, - 'trending_up_sharp': Icons.trending_up_sharp, - 'trending_up_rounded': Icons.trending_up_rounded, - 'trending_up_outlined': Icons.trending_up_outlined, - 'trip_origin': Icons.trip_origin, - 'trip_origin_sharp': Icons.trip_origin_sharp, - 'trip_origin_rounded': Icons.trip_origin_rounded, - 'trip_origin_outlined': Icons.trip_origin_outlined, - 'try_sms_star': Icons.try_sms_star, - 'try_sms_star_sharp': Icons.try_sms_star_sharp, - 'try_sms_star_rounded': Icons.try_sms_star_rounded, - 'try_sms_star_outlined': Icons.try_sms_star_outlined, - 'tty': Icons.tty, - 'tty_sharp': Icons.tty_sharp, - 'tty_rounded': Icons.tty_rounded, - 'tty_outlined': Icons.tty_outlined, - 'tune': Icons.tune, - 'tune_sharp': Icons.tune_sharp, - 'tune_rounded': Icons.tune_rounded, - 'tune_outlined': Icons.tune_outlined, - 'tungsten': Icons.tungsten, - 'tungsten_sharp': Icons.tungsten_sharp, - 'tungsten_rounded': Icons.tungsten_rounded, - 'tungsten_outlined': Icons.tungsten_outlined, - 'turned_in': Icons.turned_in, - 'turned_in_sharp': Icons.turned_in_sharp, - 'turned_in_rounded': Icons.turned_in_rounded, - 'turned_in_outlined': Icons.turned_in_outlined, - 'turned_in_not': Icons.turned_in_not, - 'turned_in_not_sharp': Icons.turned_in_not_sharp, - 'turned_in_not_rounded': Icons.turned_in_not_rounded, - 'turned_in_not_outlined': Icons.turned_in_not_outlined, - 'tv': Icons.tv, - 'tv_sharp': Icons.tv_sharp, - 'tv_rounded': Icons.tv_rounded, - 'tv_outlined': Icons.tv_outlined, - 'tv_off': Icons.tv_off, - 'tv_off_sharp': Icons.tv_off_sharp, - 'tv_off_rounded': Icons.tv_off_rounded, - 'tv_off_outlined': Icons.tv_off_outlined, - 'two_wheeler': Icons.two_wheeler, - 'two_wheeler_sharp': Icons.two_wheeler_sharp, - 'two_wheeler_rounded': Icons.two_wheeler_rounded, - 'two_wheeler_outlined': Icons.two_wheeler_outlined, - 'umbrella': Icons.umbrella, - 'umbrella_sharp': Icons.umbrella_sharp, - 'umbrella_rounded': Icons.umbrella_rounded, - 'umbrella_outlined': Icons.umbrella_outlined, - 'unarchive': Icons.unarchive, - 'unarchive_sharp': Icons.unarchive_sharp, - 'unarchive_rounded': Icons.unarchive_rounded, - 'unarchive_outlined': Icons.unarchive_outlined, - 'undo': Icons.undo, - 'undo_sharp': Icons.undo_sharp, - 'undo_rounded': Icons.undo_rounded, - 'undo_outlined': Icons.undo_outlined, - 'unfold_less': Icons.unfold_less, - 'unfold_less_sharp': Icons.unfold_less_sharp, - 'unfold_less_rounded': Icons.unfold_less_rounded, - 'unfold_less_outlined': Icons.unfold_less_outlined, - 'unfold_more': Icons.unfold_more, - 'unfold_more_sharp': Icons.unfold_more_sharp, - 'unfold_more_rounded': Icons.unfold_more_rounded, - 'unfold_more_outlined': Icons.unfold_more_outlined, - 'unpublished': Icons.unpublished, - 'unpublished_sharp': Icons.unpublished_sharp, - 'unpublished_rounded': Icons.unpublished_rounded, - 'unpublished_outlined': Icons.unpublished_outlined, - 'unsubscribe': Icons.unsubscribe, - 'unsubscribe_sharp': Icons.unsubscribe_sharp, - 'unsubscribe_rounded': Icons.unsubscribe_rounded, - 'unsubscribe_outlined': Icons.unsubscribe_outlined, - 'upcoming': Icons.upcoming, - 'upcoming_sharp': Icons.upcoming_sharp, - 'upcoming_rounded': Icons.upcoming_rounded, - 'upcoming_outlined': Icons.upcoming_outlined, - 'update': Icons.update, - 'update_sharp': Icons.update_sharp, - 'update_rounded': Icons.update_rounded, - 'update_outlined': Icons.update_outlined, - 'update_disabled': Icons.update_disabled, - 'update_disabled_sharp': Icons.update_disabled_sharp, - 'update_disabled_rounded': Icons.update_disabled_rounded, - 'update_disabled_outlined': Icons.update_disabled_outlined, - 'upgrade': Icons.upgrade, - 'upgrade_sharp': Icons.upgrade_sharp, - 'upgrade_rounded': Icons.upgrade_rounded, - 'upgrade_outlined': Icons.upgrade_outlined, - 'upload': Icons.upload, - 'upload_sharp': Icons.upload_sharp, - 'upload_rounded': Icons.upload_rounded, - 'upload_outlined': Icons.upload_outlined, - 'upload_file': Icons.upload_file, - 'upload_file_sharp': Icons.upload_file_sharp, - 'upload_file_rounded': Icons.upload_file_rounded, - 'upload_file_outlined': Icons.upload_file_outlined, - 'usb': Icons.usb, - 'usb_sharp': Icons.usb_sharp, - 'usb_rounded': Icons.usb_rounded, - 'usb_outlined': Icons.usb_outlined, - 'usb_off': Icons.usb_off, - 'usb_off_sharp': Icons.usb_off_sharp, - 'usb_off_rounded': Icons.usb_off_rounded, - 'usb_off_outlined': Icons.usb_off_outlined, - 'verified': Icons.verified, - 'verified_sharp': Icons.verified_sharp, - 'verified_rounded': Icons.verified_rounded, - 'verified_outlined': Icons.verified_outlined, - 'verified_user': Icons.verified_user, - 'verified_user_sharp': Icons.verified_user_sharp, - 'verified_user_rounded': Icons.verified_user_rounded, - 'verified_user_outlined': Icons.verified_user_outlined, - 'vertical_align_bottom': Icons.vertical_align_bottom, - 'vertical_align_bottom_sharp': Icons.vertical_align_bottom_sharp, - 'vertical_align_bottom_rounded': Icons.vertical_align_bottom_rounded, - 'vertical_align_bottom_outlined': Icons.vertical_align_bottom_outlined, - 'vertical_align_center': Icons.vertical_align_center, - 'vertical_align_center_sharp': Icons.vertical_align_center_sharp, - 'vertical_align_center_rounded': Icons.vertical_align_center_rounded, - 'vertical_align_center_outlined': Icons.vertical_align_center_outlined, - 'vertical_align_top': Icons.vertical_align_top, - 'vertical_align_top_sharp': Icons.vertical_align_top_sharp, - 'vertical_align_top_rounded': Icons.vertical_align_top_rounded, - 'vertical_align_top_outlined': Icons.vertical_align_top_outlined, - 'vertical_distribute': Icons.vertical_distribute, - 'vertical_distribute_sharp': Icons.vertical_distribute_sharp, - 'vertical_distribute_rounded': Icons.vertical_distribute_rounded, - 'vertical_distribute_outlined': Icons.vertical_distribute_outlined, - 'vertical_split': Icons.vertical_split, - 'vertical_split_sharp': Icons.vertical_split_sharp, - 'vertical_split_rounded': Icons.vertical_split_rounded, - 'vertical_split_outlined': Icons.vertical_split_outlined, - 'vibration': Icons.vibration, - 'vibration_sharp': Icons.vibration_sharp, - 'vibration_rounded': Icons.vibration_rounded, - 'vibration_outlined': Icons.vibration_outlined, - 'video_call': Icons.video_call, - 'video_call_sharp': Icons.video_call_sharp, - 'video_call_rounded': Icons.video_call_rounded, - 'video_call_outlined': Icons.video_call_outlined, - 'video_camera_back': Icons.video_camera_back, - 'video_camera_back_sharp': Icons.video_camera_back_sharp, - 'video_camera_back_rounded': Icons.video_camera_back_rounded, - 'video_camera_back_outlined': Icons.video_camera_back_outlined, - 'video_camera_front': Icons.video_camera_front, - 'video_camera_front_sharp': Icons.video_camera_front_sharp, - 'video_camera_front_rounded': Icons.video_camera_front_rounded, - 'video_camera_front_outlined': Icons.video_camera_front_outlined, - 'video_collection': Icons.video_collection, - 'video_collection_sharp': Icons.video_collection_sharp, - 'video_collection_rounded': Icons.video_collection_rounded, - 'video_collection_outlined': Icons.video_collection_outlined, - 'video_label': Icons.video_label, - 'video_label_sharp': Icons.video_label_sharp, - 'video_label_rounded': Icons.video_label_rounded, - 'video_label_outlined': Icons.video_label_outlined, - 'video_library': Icons.video_library, - 'video_library_sharp': Icons.video_library_sharp, - 'video_library_rounded': Icons.video_library_rounded, - 'video_library_outlined': Icons.video_library_outlined, - 'video_settings': Icons.video_settings, - 'video_settings_sharp': Icons.video_settings_sharp, - 'video_settings_rounded': Icons.video_settings_rounded, - 'video_settings_outlined': Icons.video_settings_outlined, - 'video_stable': Icons.video_stable, - 'video_stable_sharp': Icons.video_stable_sharp, - 'video_stable_rounded': Icons.video_stable_rounded, - 'video_stable_outlined': Icons.video_stable_outlined, - 'videocam': Icons.videocam, - 'videocam_sharp': Icons.videocam_sharp, - 'videocam_rounded': Icons.videocam_rounded, - 'videocam_outlined': Icons.videocam_outlined, - 'videocam_off': Icons.videocam_off, - 'videocam_off_sharp': Icons.videocam_off_sharp, - 'videocam_off_rounded': Icons.videocam_off_rounded, - 'videocam_off_outlined': Icons.videocam_off_outlined, - 'videogame_asset': Icons.videogame_asset, - 'videogame_asset_sharp': Icons.videogame_asset_sharp, - 'videogame_asset_rounded': Icons.videogame_asset_rounded, - 'videogame_asset_outlined': Icons.videogame_asset_outlined, - 'videogame_asset_off': Icons.videogame_asset_off, - 'videogame_asset_off_sharp': Icons.videogame_asset_off_sharp, - 'videogame_asset_off_rounded': Icons.videogame_asset_off_rounded, - 'videogame_asset_off_outlined': Icons.videogame_asset_off_outlined, - 'view_agenda': Icons.view_agenda, - 'view_agenda_sharp': Icons.view_agenda_sharp, - 'view_agenda_rounded': Icons.view_agenda_rounded, - 'view_agenda_outlined': Icons.view_agenda_outlined, - 'view_array': Icons.view_array, - 'view_array_sharp': Icons.view_array_sharp, - 'view_array_rounded': Icons.view_array_rounded, - 'view_array_outlined': Icons.view_array_outlined, - 'view_carousel': Icons.view_carousel, - 'view_carousel_sharp': Icons.view_carousel_sharp, - 'view_carousel_rounded': Icons.view_carousel_rounded, - 'view_carousel_outlined': Icons.view_carousel_outlined, - 'view_column': Icons.view_column, - 'view_column_sharp': Icons.view_column_sharp, - 'view_column_rounded': Icons.view_column_rounded, - 'view_column_outlined': Icons.view_column_outlined, - 'view_comfortable': Icons.view_comfortable, - 'view_comfortable_sharp': Icons.view_comfortable_sharp, - 'view_comfortable_rounded': Icons.view_comfortable_rounded, - 'view_comfortable_outlined': Icons.view_comfortable_outlined, - 'view_comfy': Icons.view_comfy, - 'view_comfy_sharp': Icons.view_comfy_sharp, - 'view_comfy_rounded': Icons.view_comfy_rounded, - 'view_comfy_outlined': Icons.view_comfy_outlined, - 'view_compact': Icons.view_compact, - 'view_compact_sharp': Icons.view_compact_sharp, - 'view_compact_rounded': Icons.view_compact_rounded, - 'view_compact_outlined': Icons.view_compact_outlined, - 'view_day': Icons.view_day, - 'view_day_sharp': Icons.view_day_sharp, - 'view_day_rounded': Icons.view_day_rounded, - 'view_day_outlined': Icons.view_day_outlined, - 'view_headline': Icons.view_headline, - 'view_headline_sharp': Icons.view_headline_sharp, - 'view_headline_rounded': Icons.view_headline_rounded, - 'view_headline_outlined': Icons.view_headline_outlined, - 'view_in_ar': Icons.view_in_ar, - 'view_in_ar_sharp': Icons.view_in_ar_sharp, - 'view_in_ar_rounded': Icons.view_in_ar_rounded, - 'view_in_ar_outlined': Icons.view_in_ar_outlined, - 'view_list': Icons.view_list, - 'view_list_sharp': Icons.view_list_sharp, - 'view_list_rounded': Icons.view_list_rounded, - 'view_list_outlined': Icons.view_list_outlined, - 'view_module': Icons.view_module, - 'view_module_sharp': Icons.view_module_sharp, - 'view_module_rounded': Icons.view_module_rounded, - 'view_module_outlined': Icons.view_module_outlined, - 'view_quilt': Icons.view_quilt, - 'view_quilt_sharp': Icons.view_quilt_sharp, - 'view_quilt_rounded': Icons.view_quilt_rounded, - 'view_quilt_outlined': Icons.view_quilt_outlined, - 'view_sidebar': Icons.view_sidebar, - 'view_sidebar_sharp': Icons.view_sidebar_sharp, - 'view_sidebar_rounded': Icons.view_sidebar_rounded, - 'view_sidebar_outlined': Icons.view_sidebar_outlined, - 'view_stream': Icons.view_stream, - 'view_stream_sharp': Icons.view_stream_sharp, - 'view_stream_rounded': Icons.view_stream_rounded, - 'view_stream_outlined': Icons.view_stream_outlined, - 'view_week': Icons.view_week, - 'view_week_sharp': Icons.view_week_sharp, - 'view_week_rounded': Icons.view_week_rounded, - 'view_week_outlined': Icons.view_week_outlined, - 'vignette': Icons.vignette, - 'vignette_sharp': Icons.vignette_sharp, - 'vignette_rounded': Icons.vignette_rounded, - 'vignette_outlined': Icons.vignette_outlined, - 'villa': Icons.villa, - 'villa_sharp': Icons.villa_sharp, - 'villa_rounded': Icons.villa_rounded, - 'villa_outlined': Icons.villa_outlined, - 'visibility': Icons.visibility, - 'visibility_sharp': Icons.visibility_sharp, - 'visibility_rounded': Icons.visibility_rounded, - 'visibility_outlined': Icons.visibility_outlined, - 'visibility_off': Icons.visibility_off, - 'visibility_off_sharp': Icons.visibility_off_sharp, - 'visibility_off_rounded': Icons.visibility_off_rounded, - 'visibility_off_outlined': Icons.visibility_off_outlined, - 'voice_chat': Icons.voice_chat, - 'voice_chat_sharp': Icons.voice_chat_sharp, - 'voice_chat_rounded': Icons.voice_chat_rounded, - 'voice_chat_outlined': Icons.voice_chat_outlined, - 'voice_over_off': Icons.voice_over_off, - 'voice_over_off_sharp': Icons.voice_over_off_sharp, - 'voice_over_off_rounded': Icons.voice_over_off_rounded, - 'voice_over_off_outlined': Icons.voice_over_off_outlined, - 'voicemail': Icons.voicemail, - 'voicemail_sharp': Icons.voicemail_sharp, - 'voicemail_rounded': Icons.voicemail_rounded, - 'voicemail_outlined': Icons.voicemail_outlined, - 'volume_down': Icons.volume_down, - 'volume_down_sharp': Icons.volume_down_sharp, - 'volume_down_rounded': Icons.volume_down_rounded, - 'volume_down_outlined': Icons.volume_down_outlined, - 'volume_mute': Icons.volume_mute, - 'volume_mute_sharp': Icons.volume_mute_sharp, - 'volume_mute_rounded': Icons.volume_mute_rounded, - 'volume_mute_outlined': Icons.volume_mute_outlined, - 'volume_off': Icons.volume_off, - 'volume_off_sharp': Icons.volume_off_sharp, - 'volume_off_rounded': Icons.volume_off_rounded, - 'volume_off_outlined': Icons.volume_off_outlined, - 'volume_up': Icons.volume_up, - 'volume_up_sharp': Icons.volume_up_sharp, - 'volume_up_rounded': Icons.volume_up_rounded, - 'volume_up_outlined': Icons.volume_up_outlined, - 'volunteer_activism': Icons.volunteer_activism, - 'volunteer_activism_sharp': Icons.volunteer_activism_sharp, - 'volunteer_activism_rounded': Icons.volunteer_activism_rounded, - 'volunteer_activism_outlined': Icons.volunteer_activism_outlined, - 'vpn_key': Icons.vpn_key, - 'vpn_key_sharp': Icons.vpn_key_sharp, - 'vpn_key_rounded': Icons.vpn_key_rounded, - 'vpn_key_outlined': Icons.vpn_key_outlined, - 'vpn_lock': Icons.vpn_lock, - 'vpn_lock_sharp': Icons.vpn_lock_sharp, - 'vpn_lock_rounded': Icons.vpn_lock_rounded, - 'vpn_lock_outlined': Icons.vpn_lock_outlined, - 'vrpano': Icons.vrpano, - 'vrpano_sharp': Icons.vrpano_sharp, - 'vrpano_rounded': Icons.vrpano_rounded, - 'vrpano_outlined': Icons.vrpano_outlined, - 'wallet_giftcard': Icons.wallet_giftcard, - 'wallet_giftcard_sharp': Icons.wallet_giftcard_sharp, - 'wallet_giftcard_rounded': Icons.wallet_giftcard_rounded, - 'wallet_giftcard_outlined': Icons.wallet_giftcard_outlined, - 'wallet_membership': Icons.wallet_membership, - 'wallet_membership_sharp': Icons.wallet_membership_sharp, - 'wallet_membership_rounded': Icons.wallet_membership_rounded, - 'wallet_membership_outlined': Icons.wallet_membership_outlined, - 'wallet_travel': Icons.wallet_travel, - 'wallet_travel_sharp': Icons.wallet_travel_sharp, - 'wallet_travel_rounded': Icons.wallet_travel_rounded, - 'wallet_travel_outlined': Icons.wallet_travel_outlined, - 'wallpaper': Icons.wallpaper, - 'wallpaper_sharp': Icons.wallpaper_sharp, - 'wallpaper_rounded': Icons.wallpaper_rounded, - 'wallpaper_outlined': Icons.wallpaper_outlined, - 'warning': Icons.warning, - 'warning_sharp': Icons.warning_sharp, - 'warning_rounded': Icons.warning_rounded, - 'warning_outlined': Icons.warning_outlined, - 'warning_amber': Icons.warning_amber, - 'warning_amber_sharp': Icons.warning_amber_sharp, - 'warning_amber_rounded': Icons.warning_amber_rounded, - 'warning_amber_outlined': Icons.warning_amber_outlined, - 'wash': Icons.wash, - 'wash_sharp': Icons.wash_sharp, - 'wash_rounded': Icons.wash_rounded, - 'wash_outlined': Icons.wash_outlined, - 'watch': Icons.watch, - 'watch_sharp': Icons.watch_sharp, - 'watch_rounded': Icons.watch_rounded, - 'watch_outlined': Icons.watch_outlined, - 'watch_later': Icons.watch_later, - 'watch_later_sharp': Icons.watch_later_sharp, - 'watch_later_rounded': Icons.watch_later_rounded, - 'watch_later_outlined': Icons.watch_later_outlined, - 'water': Icons.water, - 'water_sharp': Icons.water_sharp, - 'water_rounded': Icons.water_rounded, - 'water_outlined': Icons.water_outlined, - 'water_damage': Icons.water_damage, - 'water_damage_sharp': Icons.water_damage_sharp, - 'water_damage_rounded': Icons.water_damage_rounded, - 'water_damage_outlined': Icons.water_damage_outlined, - 'waterfall_chart': Icons.waterfall_chart, - 'waterfall_chart_sharp': Icons.waterfall_chart_sharp, - 'waterfall_chart_rounded': Icons.waterfall_chart_rounded, - 'waterfall_chart_outlined': Icons.waterfall_chart_outlined, - 'waves': Icons.waves, - 'waves_sharp': Icons.waves_sharp, - 'waves_rounded': Icons.waves_rounded, - 'waves_outlined': Icons.waves_outlined, - 'wb_auto': Icons.wb_auto, - 'wb_auto_sharp': Icons.wb_auto_sharp, - 'wb_auto_rounded': Icons.wb_auto_rounded, - 'wb_auto_outlined': Icons.wb_auto_outlined, - 'wb_cloudy': Icons.wb_cloudy, - 'wb_cloudy_sharp': Icons.wb_cloudy_sharp, - 'wb_cloudy_rounded': Icons.wb_cloudy_rounded, - 'wb_cloudy_outlined': Icons.wb_cloudy_outlined, - 'wb_incandescent': Icons.wb_incandescent, - 'wb_incandescent_sharp': Icons.wb_incandescent_sharp, - 'wb_incandescent_rounded': Icons.wb_incandescent_rounded, - 'wb_incandescent_outlined': Icons.wb_incandescent_outlined, - 'wb_iridescent': Icons.wb_iridescent, - 'wb_iridescent_sharp': Icons.wb_iridescent_sharp, - 'wb_iridescent_rounded': Icons.wb_iridescent_rounded, - 'wb_iridescent_outlined': Icons.wb_iridescent_outlined, - 'wb_shade': Icons.wb_shade, - 'wb_shade_sharp': Icons.wb_shade_sharp, - 'wb_shade_rounded': Icons.wb_shade_rounded, - 'wb_shade_outlined': Icons.wb_shade_outlined, - 'wb_sunny': Icons.wb_sunny, - 'wb_sunny_sharp': Icons.wb_sunny_sharp, - 'wb_sunny_rounded': Icons.wb_sunny_rounded, - 'wb_sunny_outlined': Icons.wb_sunny_outlined, - 'wb_twighlight': Icons.wb_twighlight, - 'wb_twilight': Icons.wb_twilight, - 'wb_twilight_sharp': Icons.wb_twilight_sharp, - 'wb_twilight_rounded': Icons.wb_twilight_rounded, - 'wb_twilight_outlined': Icons.wb_twilight_outlined, - 'wc': Icons.wc, - 'wc_sharp': Icons.wc_sharp, - 'wc_rounded': Icons.wc_rounded, - 'wc_outlined': Icons.wc_outlined, - 'web': Icons.web, - 'web_sharp': Icons.web_sharp, - 'web_rounded': Icons.web_rounded, - 'web_outlined': Icons.web_outlined, - 'web_asset': Icons.web_asset, - 'web_asset_sharp': Icons.web_asset_sharp, - 'web_asset_rounded': Icons.web_asset_rounded, - 'web_asset_outlined': Icons.web_asset_outlined, - 'web_asset_off': Icons.web_asset_off, - 'web_asset_off_sharp': Icons.web_asset_off_sharp, - 'web_asset_off_rounded': Icons.web_asset_off_rounded, - 'web_asset_off_outlined': Icons.web_asset_off_outlined, - 'web_stories': Icons.web_stories, - 'weekend': Icons.weekend, - 'weekend_sharp': Icons.weekend_sharp, - 'weekend_rounded': Icons.weekend_rounded, - 'weekend_outlined': Icons.weekend_outlined, - 'west': Icons.west, - 'west_sharp': Icons.west_sharp, - 'west_rounded': Icons.west_rounded, - 'west_outlined': Icons.west_outlined, - 'whatshot': Icons.whatshot, - 'whatshot_sharp': Icons.whatshot_sharp, - 'whatshot_rounded': Icons.whatshot_rounded, - 'whatshot_outlined': Icons.whatshot_outlined, - 'wheelchair_pickup': Icons.wheelchair_pickup, - 'wheelchair_pickup_sharp': Icons.wheelchair_pickup_sharp, - 'wheelchair_pickup_rounded': Icons.wheelchair_pickup_rounded, - 'wheelchair_pickup_outlined': Icons.wheelchair_pickup_outlined, - 'where_to_vote': Icons.where_to_vote, - 'where_to_vote_sharp': Icons.where_to_vote_sharp, - 'where_to_vote_rounded': Icons.where_to_vote_rounded, - 'where_to_vote_outlined': Icons.where_to_vote_outlined, - 'widgets': Icons.widgets, - 'widgets_sharp': Icons.widgets_sharp, - 'widgets_rounded': Icons.widgets_rounded, - 'widgets_outlined': Icons.widgets_outlined, - 'wifi': Icons.wifi, - 'wifi_sharp': Icons.wifi_sharp, - 'wifi_rounded': Icons.wifi_rounded, - 'wifi_outlined': Icons.wifi_outlined, - 'wifi_calling': Icons.wifi_calling, - 'wifi_calling_sharp': Icons.wifi_calling_sharp, - 'wifi_calling_rounded': Icons.wifi_calling_rounded, - 'wifi_calling_outlined': Icons.wifi_calling_outlined, - 'wifi_calling_3': Icons.wifi_calling_3, - 'wifi_calling_3_sharp': Icons.wifi_calling_3_sharp, - 'wifi_calling_3_rounded': Icons.wifi_calling_3_rounded, - 'wifi_calling_3_outlined': Icons.wifi_calling_3_outlined, - 'wifi_lock': Icons.wifi_lock, - 'wifi_lock_sharp': Icons.wifi_lock_sharp, - 'wifi_lock_rounded': Icons.wifi_lock_rounded, - 'wifi_lock_outlined': Icons.wifi_lock_outlined, - 'wifi_off': Icons.wifi_off, - 'wifi_off_sharp': Icons.wifi_off_sharp, - 'wifi_off_rounded': Icons.wifi_off_rounded, - 'wifi_off_outlined': Icons.wifi_off_outlined, - 'wifi_protected_setup': Icons.wifi_protected_setup, - 'wifi_protected_setup_sharp': Icons.wifi_protected_setup_sharp, - 'wifi_protected_setup_rounded': Icons.wifi_protected_setup_rounded, - 'wifi_protected_setup_outlined': Icons.wifi_protected_setup_outlined, - 'wifi_tethering': Icons.wifi_tethering, - 'wifi_tethering_sharp': Icons.wifi_tethering_sharp, - 'wifi_tethering_rounded': Icons.wifi_tethering_rounded, - 'wifi_tethering_outlined': Icons.wifi_tethering_outlined, - 'wifi_tethering_error_rounded': Icons.wifi_tethering_error_rounded, - 'wifi_tethering_error_rounded_sharp': - Icons.wifi_tethering_error_rounded_sharp, - 'wifi_tethering_error_rounded_rounded': - Icons.wifi_tethering_error_rounded_rounded, - 'wifi_tethering_error_rounded_outlined': - Icons.wifi_tethering_error_rounded_outlined, - 'wifi_tethering_off': Icons.wifi_tethering_off, - 'wifi_tethering_off_sharp': Icons.wifi_tethering_off_sharp, - 'wifi_tethering_off_rounded': Icons.wifi_tethering_off_rounded, - 'wifi_tethering_off_outlined': Icons.wifi_tethering_off_outlined, - 'window': Icons.window, - 'window_sharp': Icons.window_sharp, - 'window_rounded': Icons.window_rounded, - 'window_outlined': Icons.window_outlined, - 'wine_bar': Icons.wine_bar, - 'wine_bar_sharp': Icons.wine_bar_sharp, - 'wine_bar_rounded': Icons.wine_bar_rounded, - 'wine_bar_outlined': Icons.wine_bar_outlined, - 'work': Icons.work, - 'work_sharp': Icons.work_sharp, - 'work_rounded': Icons.work_rounded, - 'work_outlined': Icons.work_outlined, - 'work_off': Icons.work_off, - 'work_off_sharp': Icons.work_off_sharp, - 'work_off_rounded': Icons.work_off_rounded, - 'work_off_outlined': Icons.work_off_outlined, - 'work_outline': Icons.work_outline, - 'work_outline_sharp': Icons.work_outline_sharp, - 'work_outline_rounded': Icons.work_outline_rounded, - 'work_outline_outlined': Icons.work_outline_outlined, - 'workspaces': Icons.workspaces, - 'workspaces_sharp': Icons.workspaces_sharp, - 'workspaces_rounded': Icons.workspaces_rounded, - 'workspaces_outlined': Icons.workspaces_outlined, - 'workspaces_filled': Icons.workspaces_filled, - 'workspaces_outline': Icons.workspaces_outline, - 'wrap_text': Icons.wrap_text, - 'wrap_text_sharp': Icons.wrap_text_sharp, - 'wrap_text_rounded': Icons.wrap_text_rounded, - 'wrap_text_outlined': Icons.wrap_text_outlined, - 'wrong_location': Icons.wrong_location, - 'wrong_location_sharp': Icons.wrong_location_sharp, - 'wrong_location_rounded': Icons.wrong_location_rounded, - 'wrong_location_outlined': Icons.wrong_location_outlined, - 'wysiwyg': Icons.wysiwyg, - 'wysiwyg_sharp': Icons.wysiwyg_sharp, - 'wysiwyg_rounded': Icons.wysiwyg_rounded, - 'wysiwyg_outlined': Icons.wysiwyg_outlined, - 'yard': Icons.yard, - 'yard_sharp': Icons.yard_sharp, - 'yard_rounded': Icons.yard_rounded, - 'yard_outlined': Icons.yard_outlined, - 'youtube_searched_for': Icons.youtube_searched_for, - 'youtube_searched_for_sharp': Icons.youtube_searched_for_sharp, - 'youtube_searched_for_rounded': Icons.youtube_searched_for_rounded, - 'youtube_searched_for_outlined': Icons.youtube_searched_for_outlined, - 'zoom_in': Icons.zoom_in, - 'zoom_in_sharp': Icons.zoom_in_sharp, - 'zoom_in_rounded': Icons.zoom_in_rounded, - 'zoom_in_outlined': Icons.zoom_in_outlined, - 'zoom_out': Icons.zoom_out, - 'zoom_out_sharp': Icons.zoom_out_sharp, - 'zoom_out_rounded': Icons.zoom_out_rounded, - 'zoom_out_outlined': Icons.zoom_out_outlined, - 'zoom_out_map': Icons.zoom_out_map, - 'zoom_out_map_sharp': Icons.zoom_out_map_sharp, - 'zoom_out_map_rounded': Icons.zoom_out_map_rounded, - 'zoom_out_map_outlined': Icons.zoom_out_map_outlined, - }, - 'MaterialApp.createMaterialHeroController': (props) => - MaterialApp.createMaterialHeroController(), - 'ThemeMode': { - 'values': ThemeMode.values, - 'system': ThemeMode.system, - 'light': ThemeMode.light, - 'dark': ThemeMode.dark, - }, - 'BottomNavigationBarType': { - 'values': BottomNavigationBarType.values, - 'fixed': BottomNavigationBarType.fixed, - 'shifting': BottomNavigationBarType.shifting, - }, - 'BottomNavigationBarLandscapeLayout': { - 'values': BottomNavigationBarLandscapeLayout.values, - 'spread': BottomNavigationBarLandscapeLayout.spread, - 'centered': BottomNavigationBarLandscapeLayout.centered, - 'linear': BottomNavigationBarLandscapeLayout.linear, - }, - 'ButtonStyle.lerp': (props) => ButtonStyle.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'NavigationBarThemeData.lerp': (props) => NavigationBarThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'NavigationBarTheme.of': (props) => NavigationBarTheme.of( - props['pa'][0], - ), - 'FlexibleSpaceBar.createSettings': (props) => - FlexibleSpaceBar.createSettings( - toolbarOpacity: props['toolbarOpacity']?.toDouble(), - minExtent: props['minExtent']?.toDouble(), - maxExtent: props['maxExtent']?.toDouble(), - isScrolledUnder: props['isScrolledUnder'], - currentExtent: props['currentExtent']?.toDouble(), - child: props['child'], - ), - 'CollapseMode': { - 'values': CollapseMode.values, - 'parallax': CollapseMode.parallax, - 'pin': CollapseMode.pin, - 'none': CollapseMode.none, - }, - 'StretchMode': { - 'values': StretchMode.values, - 'zoomBackground': StretchMode.zoomBackground, - 'blurBackground': StretchMode.blurBackground, - 'fadeTitle': StretchMode.fadeTitle, - }, - 'TextSelectionToolbarTextButton.getPadding': (props) => - TextSelectionToolbarTextButton.getPadding( - props['pa'][0], - props['pa'][1], - ), - 'ThemeData.localize': (props) => ThemeData.localize( - props['pa'][0], - props['pa'][1], - ), - 'ThemeData.estimateBrightnessForColor': (props) => - ThemeData.estimateBrightnessForColor( - props['pa'][0], - ), - 'ThemeData.lerp': (props) => ThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'VisualDensity': { - 'minimumDensity': VisualDensity.minimumDensity, - 'maximumDensity': VisualDensity.maximumDensity, - 'standard': VisualDensity.standard, - 'comfortable': VisualDensity.comfortable, - 'compact': VisualDensity.compact, - }, - 'VisualDensity.lerp': (props) => VisualDensity.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'MaterialTapTargetSize': { - 'values': MaterialTapTargetSize.values, - 'padded': MaterialTapTargetSize.padded, - 'shrinkWrap': MaterialTapTargetSize.shrinkWrap, - }, - 'DateUtils.dateOnly': (props) => DateUtils.dateOnly( - props['pa'][0], - ), - 'DateUtils.datesOnly': (props) => DateUtils.datesOnly( - props['pa'][0], - ), - 'DateUtils.isSameDay': (props) => DateUtils.isSameDay( - props['pa'][0], - props['pa'][1], - ), - 'DateUtils.isSameMonth': (props) => DateUtils.isSameMonth( - props['pa'][0], - props['pa'][1], - ), - 'DateUtils.monthDelta': (props) => DateUtils.monthDelta( - props['pa'][0], - props['pa'][1], - ), - 'DateUtils.addMonthsToMonthDate': (props) => - DateUtils.addMonthsToMonthDate( - props['pa'][0], - props['pa'][1], - ), - 'DateUtils.addDaysToDate': (props) => DateUtils.addDaysToDate( - props['pa'][0], - props['pa'][1], - ), - 'DateUtils.firstDayOffset': (props) => DateUtils.firstDayOffset( - props['pa'][0], - props['pa'][1], - props['pa'][2], - ), - 'DateUtils.getDaysInMonth': (props) => DateUtils.getDaysInMonth( - props['pa'][0], - props['pa'][1], - ), - 'DatePickerEntryMode': { - 'values': DatePickerEntryMode.values, - 'calendar': DatePickerEntryMode.calendar, - 'input': DatePickerEntryMode.input, - 'calendarOnly': DatePickerEntryMode.calendarOnly, - 'inputOnly': DatePickerEntryMode.inputOnly, - }, - 'DatePickerMode': { - 'values': DatePickerMode.values, - 'day': DatePickerMode.day, - 'year': DatePickerMode.year, - }, - 'DrawerAlignment': { - 'values': DrawerAlignment.values, - 'start': DrawerAlignment.start, - 'end': DrawerAlignment.end, - }, - 'ChipTheme.of': (props) => ChipTheme.of( - props['pa'][0], - ), - 'ChipThemeData.lerp': (props) => ChipThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'SliderTheme.of': (props) => SliderTheme.of( - props['pa'][0], - ), - 'SliderThemeData.lerp': (props) => SliderThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ShowValueIndicator': { - 'values': ShowValueIndicator.values, - 'onlyForDiscrete': ShowValueIndicator.onlyForDiscrete, - 'onlyForContinuous': ShowValueIndicator.onlyForContinuous, - 'always': ShowValueIndicator.always, - 'never': ShowValueIndicator.never, - }, - 'Thumb': { - 'values': Thumb.values, - 'start': Thumb.start, - 'end': Thumb.end, - }, - 'Divider.createBorderSide': (props) => Divider.createBorderSide( - props['pa'][0], - color: props['color'], - width: props['width']?.toDouble(), - ), - 'OutlinedButton.styleFrom': (props) => OutlinedButton.styleFrom( - primary: props['primary'], - onSurface: props['onSurface'], - backgroundColor: props['backgroundColor'], - shadowColor: props['shadowColor'], - elevation: props['elevation']?.toDouble(), - textStyle: props['textStyle'], - padding: props['padding'], - minimumSize: props['minimumSize'], - fixedSize: props['fixedSize'], - maximumSize: props['maximumSize'], - side: props['side'], - shape: props['shape'], - enabledMouseCursor: props['enabledMouseCursor'], - disabledMouseCursor: props['disabledMouseCursor'], - visualDensity: props['visualDensity'], - tapTargetSize: props['tapTargetSize'], - animationDuration: props['animationDuration'], - enableFeedback: props['enableFeedback'], - alignment: props['alignment'], - splashFactory: props['splashFactory'], - ), - 'Typography': { - 'blackMountainView': Typography.blackMountainView, - 'whiteMountainView': Typography.whiteMountainView, - 'blackRedmond': Typography.blackRedmond, - 'whiteRedmond': Typography.whiteRedmond, - 'blackHelsinki': Typography.blackHelsinki, - 'whiteHelsinki': Typography.whiteHelsinki, - 'blackCupertino': Typography.blackCupertino, - 'whiteCupertino': Typography.whiteCupertino, - 'blackRedwoodCity': Typography.blackRedwoodCity, - 'whiteRedwoodCity': Typography.whiteRedwoodCity, - 'englishLike2014': Typography.englishLike2014, - 'englishLike2018': Typography.englishLike2018, - 'dense2014': Typography.dense2014, - 'dense2018': Typography.dense2018, - 'tall2014': Typography.tall2014, - 'tall2018': Typography.tall2018, - }, - 'Typography.lerp': (props) => Typography.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ScriptCategory': { - 'values': ScriptCategory.values, - 'englishLike': ScriptCategory.englishLike, - 'dense': ScriptCategory.dense, - 'tall': ScriptCategory.tall, - }, - 'DefaultMaterialLocalizations': { - 'delegate': DefaultMaterialLocalizations.delegate, - }, - 'DefaultMaterialLocalizations.load': (props) => - DefaultMaterialLocalizations.load( - props['pa'][0], - ), - 'DataTableThemeData.lerp': (props) => DataTableThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'DataTableTheme.of': (props) => DataTableTheme.of( - props['pa'][0], - ), - 'DividerThemeData.lerp': (props) => DividerThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'DividerTheme.of': (props) => DividerTheme.of( - props['pa'][0], - ), - 'BottomSheet.createAnimationController': (props) => - BottomSheet.createAnimationController( - props['pa'][0], - ), - 'ListTileThemeData.lerp': (props) => ListTileThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ListTileTheme.of': (props) => ListTileTheme.of( - props['pa'][0], - ), - 'ListTileTheme.merge': (props) => ListTileTheme.merge( - key: props['key'], - dense: props['dense'], - shape: props['shape'], - style: props['style'], - selectedColor: props['selectedColor'], - iconColor: props['iconColor'], - textColor: props['textColor'], - contentPadding: props['contentPadding'], - tileColor: props['tileColor'], - selectedTileColor: props['selectedTileColor'], - enableFeedback: props['enableFeedback'], - horizontalTitleGap: props['horizontalTitleGap']?.toDouble(), - minVerticalPadding: props['minVerticalPadding']?.toDouble(), - minLeadingWidth: props['minLeadingWidth']?.toDouble(), - child: props['child'], - ), - 'ListTile.divideTiles': (props) => ListTile.divideTiles( - context: props['context'], - tiles: props['tiles'], - color: props['color'], - ), - 'ListTileStyle': { - 'values': ListTileStyle.values, - 'list': ListTileStyle.list, - 'drawer': ListTileStyle.drawer, - }, - 'ListTileControlAffinity': { - 'values': ListTileControlAffinity.values, - 'leading': ListTileControlAffinity.leading, - 'trailing': ListTileControlAffinity.trailing, - 'platform': ListTileControlAffinity.platform, - }, - 'RefreshProgressIndicator': { - 'defaultStrokeWidth': RefreshProgressIndicator.defaultStrokeWidth, - }, - 'ButtonTheme.of': (props) => ButtonTheme.of( - props['pa'][0], - ), - 'ButtonTextTheme': { - 'values': ButtonTextTheme.values, - 'normal': ButtonTextTheme.normal, - 'accent': ButtonTextTheme.accent, - 'primary': ButtonTextTheme.primary, - }, - 'ButtonBarLayoutBehavior': { - 'values': ButtonBarLayoutBehavior.values, - 'constrained': ButtonBarLayoutBehavior.constrained, - 'padded': ButtonBarLayoutBehavior.padded, - }, - 'NoSplash': { - 'splashFactory': NoSplash.splashFactory, - }, - 'DropdownButtonHideUnderline.at': (props) => - DropdownButtonHideUnderline.at( - props['pa'][0], - ), - 'ElevatedButton.styleFrom': (props) => ElevatedButton.styleFrom( - primary: props['primary'], - onPrimary: props['onPrimary'], - onSurface: props['onSurface'], - shadowColor: props['shadowColor'], - elevation: props['elevation']?.toDouble(), - textStyle: props['textStyle'], - padding: props['padding'], - minimumSize: props['minimumSize'], - fixedSize: props['fixedSize'], - maximumSize: props['maximumSize'], - side: props['side'], - shape: props['shape'], - enabledMouseCursor: props['enabledMouseCursor'], - disabledMouseCursor: props['disabledMouseCursor'], - visualDensity: props['visualDensity'], - tapTargetSize: props['tapTargetSize'], - animationDuration: props['animationDuration'], - enableFeedback: props['enableFeedback'], - alignment: props['alignment'], - splashFactory: props['splashFactory'], - ), - 'Tooltip.dismissAllToolTips': (props) => Tooltip.dismissAllToolTips(), - 'BottomSheetThemeData.lerp': (props) => BottomSheetThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'CardTheme.of': (props) => CardTheme.of( - props['pa'][0], - ), - 'CardTheme.lerp': (props) => CardTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'FloatingActionButtonThemeData.lerp': (props) => - FloatingActionButtonThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'MaterialState': { - 'values': MaterialState.values, - 'hovered': MaterialState.hovered, - 'focused': MaterialState.focused, - 'pressed': MaterialState.pressed, - 'dragged': MaterialState.dragged, - 'selected': MaterialState.selected, - 'scrolledUnder': MaterialState.scrolledUnder, - 'disabled': MaterialState.disabled, - 'error': MaterialState.error, - }, - 'DrawerThemeData.lerp': (props) => DrawerThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'DrawerTheme.of': (props) => DrawerTheme.of( - props['pa'][0], - ), - 'DialogTheme.of': (props) => DialogTheme.of( - props['pa'][0], - ), - 'DialogTheme.lerp': (props) => DialogTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'MaterialBanner.createAnimationController': (props) => - MaterialBanner.createAnimationController( - vsync: props['vsync'], - ), - 'MaterialBannerClosedReason': { - 'values': MaterialBannerClosedReason.values, - 'dismiss': MaterialBannerClosedReason.dismiss, - 'swipe': MaterialBannerClosedReason.swipe, - 'hide': MaterialBannerClosedReason.hide, - 'remove': MaterialBannerClosedReason.remove, - }, - 'AppBar.preferredHeightFor': (props) => AppBar.preferredHeightFor( - props['pa'][0], - props['pa'][1], - ), - 'ScrollbarThemeData.lerp': (props) => ScrollbarThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ScrollbarTheme.of': (props) => ScrollbarTheme.of( - props['pa'][0], - ), - 'CheckboxThemeData.lerp': (props) => CheckboxThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'CheckboxTheme.of': (props) => CheckboxTheme.of( - props['pa'][0], - ), - 'TooltipVisibility.of': (props) => TooltipVisibility.of( - props['pa'][0], - ), - 'BottomNavigationBarThemeData.lerp': (props) => - BottomNavigationBarThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BottomNavigationBarTheme.of': (props) => BottomNavigationBarTheme.of( - props['pa'][0], - ), - 'TabBarIndicatorSize': { - 'values': TabBarIndicatorSize.values, - 'tab': TabBarIndicatorSize.tab, - 'label': TabBarIndicatorSize.label, - }, - 'RadioThemeData.lerp': (props) => RadioThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'RadioTheme.of': (props) => RadioTheme.of( - props['pa'][0], - ), - 'StepState': { - 'values': StepState.values, - 'indexed': StepState.indexed, - 'editing': StepState.editing, - 'complete': StepState.complete, - 'disabled': StepState.disabled, - 'error': StepState.error, - }, - 'StepperType': { - 'values': StepperType.values, - 'vertical': StepperType.vertical, - 'horizontal': StepperType.horizontal, - }, - 'TimePickerEntryMode': { - 'values': TimePickerEntryMode.values, - 'dial': TimePickerEntryMode.dial, - 'input': TimePickerEntryMode.input, - }, - 'Checkbox': { - 'width': Checkbox.width, - }, - 'TextButton.styleFrom': (props) => TextButton.styleFrom( - primary: props['primary'], - onSurface: props['onSurface'], - backgroundColor: props['backgroundColor'], - shadowColor: props['shadowColor'], - elevation: props['elevation']?.toDouble(), - textStyle: props['textStyle'], - padding: props['padding'], - minimumSize: props['minimumSize'], - fixedSize: props['fixedSize'], - maximumSize: props['maximumSize'], - side: props['side'], - shape: props['shape'], - enabledMouseCursor: props['enabledMouseCursor'], - disabledMouseCursor: props['disabledMouseCursor'], - visualDensity: props['visualDensity'], - tapTargetSize: props['tapTargetSize'], - animationDuration: props['animationDuration'], - enableFeedback: props['enableFeedback'], - alignment: props['alignment'], - splashFactory: props['splashFactory'], - ), - 'TooltipThemeData.lerp': (props) => TooltipThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TooltipTheme.of': (props) => TooltipTheme.of( - props['pa'][0], - ), - 'TooltipTriggerMode': { - 'values': TooltipTriggerMode.values, - 'manual': TooltipTriggerMode.manual, - 'longPress': TooltipTriggerMode.longPress, - 'tap': TooltipTriggerMode.tap, - }, - 'NavigationRail.extendedAnimation': (props) => - NavigationRail.extendedAnimation( - props['pa'][0], - ), - 'NavigationRailLabelType': { - 'values': NavigationRailLabelType.values, - 'none': NavigationRailLabelType.none, - 'selected': NavigationRailLabelType.selected, - 'all': NavigationRailLabelType.all, - }, - 'DataCell': { - 'empty': DataCell.empty, - }, - 'PopupMenuThemeData.lerp': (props) => PopupMenuThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'PopupMenuTheme.of': (props) => PopupMenuTheme.of( - props['pa'][0], - ), - 'TimeOfDay': { - 'hoursPerDay': TimeOfDay.hoursPerDay, - 'hoursPerPeriod': TimeOfDay.hoursPerPeriod, - 'minutesPerHour': TimeOfDay.minutesPerHour, - }, - 'DayPeriod': { - 'values': DayPeriod.values, - 'am': DayPeriod.am, - 'pm': DayPeriod.pm, - }, - 'TimeOfDayFormat': { - 'values': TimeOfDayFormat.values, - 'HH_colon_mm': TimeOfDayFormat.HH_colon_mm, - 'HH_dot_mm': TimeOfDayFormat.HH_dot_mm, - 'frenchCanadian': TimeOfDayFormat.frenchCanadian, - 'H_colon_mm': TimeOfDayFormat.H_colon_mm, - 'h_colon_mm_space_a': TimeOfDayFormat.h_colon_mm_space_a, - 'a_space_h_colon_mm': TimeOfDayFormat.a_space_h_colon_mm, - }, - 'HourFormat': { - 'values': HourFormat.values, - 'HH': HourFormat.HH, - 'H': HourFormat.H, - 'h': HourFormat.h, - }, - 'ColorScheme.lerp': (props) => ColorScheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'InputDecorator.containerOf': (props) => InputDecorator.containerOf( - props['pa'][0], - ), - 'FloatingLabelBehavior': { - 'values': FloatingLabelBehavior.values, - 'never': FloatingLabelBehavior.never, - 'auto': FloatingLabelBehavior.auto, - 'always': FloatingLabelBehavior.always, - }, - 'SnackBar.createAnimationController': (props) => - SnackBar.createAnimationController( - vsync: props['vsync'], - ), - 'SnackBarClosedReason': { - 'values': SnackBarClosedReason.values, - 'action': SnackBarClosedReason.action, - 'dismiss': SnackBarClosedReason.dismiss, - 'swipe': SnackBarClosedReason.swipe, - 'hide': SnackBarClosedReason.hide, - 'remove': SnackBarClosedReason.remove, - 'timeout': SnackBarClosedReason.timeout, - }, - 'Colors': { - 'transparent': Colors.transparent, - 'black': Colors.black, - 'black87': Colors.black87, - 'black54': Colors.black54, - 'black45': Colors.black45, - 'black38': Colors.black38, - 'black26': Colors.black26, - 'black12': Colors.black12, - 'white': Colors.white, - 'white70': Colors.white70, - 'white60': Colors.white60, - 'white54': Colors.white54, - 'white38': Colors.white38, - 'white30': Colors.white30, - 'white24': Colors.white24, - 'white12': Colors.white12, - 'white10': Colors.white10, - 'red': Colors.red, - 'redAccent': Colors.redAccent, - 'pink': Colors.pink, - 'pinkAccent': Colors.pinkAccent, - 'purple': Colors.purple, - 'purpleAccent': Colors.purpleAccent, - 'deepPurple': Colors.deepPurple, - 'deepPurpleAccent': Colors.deepPurpleAccent, - 'indigo': Colors.indigo, - 'indigoAccent': Colors.indigoAccent, - 'blue': Colors.blue, - 'blueAccent': Colors.blueAccent, - 'lightBlue': Colors.lightBlue, - 'lightBlueAccent': Colors.lightBlueAccent, - 'cyan': Colors.cyan, - 'cyanAccent': Colors.cyanAccent, - 'teal': Colors.teal, - 'tealAccent': Colors.tealAccent, - 'green': Colors.green, - 'greenAccent': Colors.greenAccent, - 'lightGreen': Colors.lightGreen, - 'lightGreenAccent': Colors.lightGreenAccent, - 'lime': Colors.lime, - 'limeAccent': Colors.limeAccent, - 'yellow': Colors.yellow, - 'yellowAccent': Colors.yellowAccent, - 'amber': Colors.amber, - 'amberAccent': Colors.amberAccent, - 'orange': Colors.orange, - 'orangeAccent': Colors.orangeAccent, - 'deepOrange': Colors.deepOrange, - 'deepOrangeAccent': Colors.deepOrangeAccent, - 'brown': Colors.brown, - 'grey': Colors.grey, - 'blueGrey': Colors.blueGrey, - 'primaries': Colors.primaries, - 'accents': Colors.accents, - }, - 'AppBarTheme.of': (props) => AppBarTheme.of( - props['pa'][0], - ), - 'AppBarTheme.lerp': (props) => AppBarTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ElevationOverlay.applyOverlay': (props) => ElevationOverlay.applyOverlay( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'ElevationOverlay.overlayColor': (props) => ElevationOverlay.overlayColor( - props['pa'][0], - props['pa'][1]?.toDouble(), - ), - 'ElevationOverlay.colorWithOverlay': (props) => - ElevationOverlay.colorWithOverlay( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'OutlinedButtonThemeData.lerp': (props) => OutlinedButtonThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'OutlinedButtonTheme.of': (props) => OutlinedButtonTheme.of( - props['pa'][0], - ), - 'TabBarTheme.of': (props) => TabBarTheme.of( - props['pa'][0], - ), - 'TabBarTheme.lerp': (props) => TabBarTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BottomAppBarTheme.of': (props) => BottomAppBarTheme.of( - props['pa'][0], - ), - 'BottomAppBarTheme.lerp': (props) => BottomAppBarTheme.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'RefreshIndicatorTriggerMode': { - 'values': RefreshIndicatorTriggerMode.values, - 'anywhere': RefreshIndicatorTriggerMode.anywhere, - 'onEdge': RefreshIndicatorTriggerMode.onEdge, - }, - 'TextSelectionThemeData.lerp': (props) => TextSelectionThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TextSelectionTheme.of': (props) => TextSelectionTheme.of( - props['pa'][0], - ), - 'TimePickerThemeData.lerp': (props) => TimePickerThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TimePickerTheme.of': (props) => TimePickerTheme.of( - props['pa'][0], - ), - 'NavigationRailThemeData.lerp': (props) => NavigationRailThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'NavigationRailTheme.of': (props) => NavigationRailTheme.of( - props['pa'][0], - ), - 'NavigationDestinationLabelBehavior': { - 'values': NavigationDestinationLabelBehavior.values, - 'alwaysShow': NavigationDestinationLabelBehavior.alwaysShow, - 'alwaysHide': NavigationDestinationLabelBehavior.alwaysHide, - 'onlyShowSelected': NavigationDestinationLabelBehavior.onlyShowSelected, - }, - 'TextField': { - 'noMaxLength': TextField.noMaxLength, - }, - }; + 'CalendarDatePicker': (props) => CalendarDatePicker( + key: props['key'], + initialDate: props['initialDate'], + firstDate: props['firstDate'], + lastDate: props['lastDate'], + currentDate: props['currentDate'], + onDateChanged: props['onDateChanged'], + onDisplayedMonthChanged: props['onDisplayedMonthChanged'], + initialCalendarMode: + props['initialCalendarMode'] ?? DatePickerMode.day, + selectableDayPredicate: props['selectableDayPredicate'], + ), + 'CalendarDatePicker#selectableDayPredicate': (props) => ( + DateTime day, + ) { + return (props['block']) as bool; + }, + 'YearPicker': (props) => YearPicker( + key: props['key'], + currentDate: props['currentDate'], + firstDate: props['firstDate'], + lastDate: props['lastDate'], + initialDate: props['initialDate'], + selectedDate: props['selectedDate'], + onChanged: props['onChanged'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + ), + 'TextButtonThemeData.lerp': (props) => TextButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextButtonTheme.of': (props) => TextButtonTheme.of( + props['pa'][0], + ), + 'DrawerHeader': (props) => DrawerHeader( + key: props['key'], + decoration: props['decoration'], + margin: props['margin'] ?? const EdgeInsets.only(bottom: 8.0), + padding: props['padding'] ?? + const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 8.0), + duration: props['duration'] ?? const Duration(milliseconds: 250), + curve: props['curve'] ?? Curves.fastOutSlowIn, + child: props['child'], + ), + 'ProgressIndicatorThemeData.lerp': (props) => + ProgressIndicatorThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ProgressIndicatorTheme.of': (props) => ProgressIndicatorTheme.of( + props['pa'][0], + ), + 'MaterialButton': (props) => MaterialButton( + key: props['key'], + onPressed: props['onPressed'], + onLongPress: props['onLongPress'], + onHighlightChanged: props['onHighlightChanged'], + mouseCursor: props['mouseCursor'], + textTheme: props['textTheme'], + textColor: props['textColor'], + disabledTextColor: props['disabledTextColor'], + color: props['color'], + disabledColor: props['disabledColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + highlightColor: props['highlightColor'], + splashColor: props['splashColor'], + colorBrightness: props['colorBrightness'], + elevation: props['elevation']?.toDouble(), + focusElevation: props['focusElevation']?.toDouble(), + hoverElevation: props['hoverElevation']?.toDouble(), + highlightElevation: props['highlightElevation']?.toDouble(), + disabledElevation: props['disabledElevation']?.toDouble(), + padding: props['padding'], + visualDensity: props['visualDensity'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + materialTapTargetSize: props['materialTapTargetSize'], + animationDuration: props['animationDuration'], + minWidth: props['minWidth']?.toDouble(), + height: props['height']?.toDouble(), + enableFeedback: props['enableFeedback'] ?? true, + child: props['child'], + ), + 'GridTile': (props) => GridTile( + key: props['key'], + header: props['header'], + footer: props['footer'], + child: props['child'], + ), + 'Material': (props) => Material( + key: props['key'], + type: props['type'] ?? MaterialType.canvas, + elevation: props['elevation']?.toDouble() ?? 0.0, + color: props['color'], + shadowColor: props['shadowColor'], + textStyle: props['textStyle'], + borderRadius: props['borderRadius'], + shape: props['shape'], + borderOnForeground: props['borderOnForeground'] ?? true, + clipBehavior: props['clipBehavior'] ?? Clip.none, + animationDuration: + props['animationDuration'] ?? kThemeChangeDuration, + child: props['child'], + ), + 'Material.defaultSplashRadius': Material.defaultSplashRadius, + 'Material.of': (props) => Material.of( + props['pa'][0], + ), + 'MaterialType': { + 'values': MaterialType.values, + 'canvas': MaterialType.canvas, + 'card': MaterialType.card, + 'circle': MaterialType.circle, + 'button': MaterialType.button, + 'transparency': MaterialType.transparency, + }, + 'TextTheme.lerp': (props) => TextTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'InkRipple': { + 'splashFactory': InkRipple.splashFactory, + }, + 'ElevatedButtonThemeData.lerp': (props) => ElevatedButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ElevatedButtonTheme.of': (props) => ElevatedButtonTheme.of( + props['pa'][0], + ), + 'MaterialBannerThemeData.lerp': (props) => MaterialBannerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialBannerTheme.of': (props) => MaterialBannerTheme.of( + props['pa'][0], + ), + 'ScaffoldMessenger': (props) => ScaffoldMessenger( + key: props['key'], + child: props['child'], + ), + 'ScaffoldMessenger.of': (props) => ScaffoldMessenger.of( + props['pa'][0], + ), + 'ScaffoldMessenger.maybeOf': (props) => ScaffoldMessenger.maybeOf( + props['pa'][0], + ), + 'Scaffold': (props) => Scaffold( + key: props['key'], + appBar: props['appBar'], + body: props['body'], + floatingActionButton: props['floatingActionButton'], + floatingActionButtonLocation: props['floatingActionButtonLocation'], + floatingActionButtonAnimator: props['floatingActionButtonAnimator'], + persistentFooterButtons: as(props['persistentFooterButtons']), + drawer: props['drawer'], + onDrawerChanged: props['onDrawerChanged'], + endDrawer: props['endDrawer'], + onEndDrawerChanged: props['onEndDrawerChanged'], + bottomNavigationBar: props['bottomNavigationBar'], + bottomSheet: props['bottomSheet'], + backgroundColor: props['backgroundColor'], + resizeToAvoidBottomInset: props['resizeToAvoidBottomInset'], + primary: props['primary'] ?? true, + drawerDragStartBehavior: + props['drawerDragStartBehavior'] ?? DragStartBehavior.start, + extendBody: props['extendBody'] ?? false, + extendBodyBehindAppBar: props['extendBodyBehindAppBar'] ?? false, + drawerScrimColor: props['drawerScrimColor'], + drawerEdgeDragWidth: props['drawerEdgeDragWidth']?.toDouble(), + drawerEnableOpenDragGesture: + props['drawerEnableOpenDragGesture'] ?? true, + endDrawerEnableOpenDragGesture: + props['endDrawerEnableOpenDragGesture'] ?? true, + restorationId: props['restorationId'], + ), + 'Scaffold#onDrawerChanged': (props) => ( + bool isOpened, + ) { + return (props['block']); + }, + 'Scaffold#onEndDrawerChanged': (props) => ( + bool isOpened, + ) { + return (props['block']); + }, + 'Scaffold.of': (props) => Scaffold.of( + props['pa'][0], + ), + 'Scaffold.maybeOf': (props) => Scaffold.maybeOf( + props['pa'][0], + ), + 'Scaffold.geometryOf': (props) => Scaffold.geometryOf( + props['pa'][0], + ), + 'Scaffold.hasDrawer': (props) => Scaffold.hasDrawer( + props['pa'][0], + registerForUpdates: props['registerForUpdates'] ?? true, + ), + 'Feedback.forTap': (props) => Feedback.forTap( + props['pa'][0], + ), + 'Feedback.wrapForTap': (props) => Feedback.wrapForTap( + props['pa'][0], + props['pa'][1], + ), + 'Feedback.forLongPress': (props) => Feedback.forLongPress( + props['pa'][0], + ), + 'Feedback.wrapForLongPress': (props) => Feedback.wrapForLongPress( + props['pa'][0], + props['pa'][1], + ), + 'SwitchThemeData.lerp': (props) => SwitchThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SwitchTheme.of': (props) => SwitchTheme.of( + props['pa'][0], + ), + 'ToggleButtonsThemeData.lerp': (props) => ToggleButtonsThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ToggleButtonsTheme.of': (props) => ToggleButtonsTheme.of( + props['pa'][0], + ), + 'BackButtonIcon': (props) => BackButtonIcon( + key: props['key'], + ), + 'BackButton': (props) => BackButton( + key: props['key'], + color: props['color'], + onPressed: props['onPressed'], + ), + 'CloseButton': (props) => CloseButton( + key: props['key'], + color: props['color'], + onPressed: props['onPressed'], + ), + 'TextSelectionToolbarTextButton': (props) => + TextSelectionToolbarTextButton( + key: props['key'], + child: props['child'], + padding: props['padding'], + onPressed: props['onPressed'], + ), + 'TextSelectionToolbarTextButton.getPadding': (props) => + TextSelectionToolbarTextButton.getPadding( + props['pa'][0], + props['pa'][1], + ), + 'TextField': (props) => TextField( + key: props['key'], + controller: props['controller'], + focusNode: props['focusNode'], + decoration: props['decoration'] ?? const InputDecoration(), + keyboardType: props['keyboardType'], + textInputAction: props['textInputAction'], + textCapitalization: + props['textCapitalization'] ?? TextCapitalization.none, + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'] ?? TextAlign.start, + textAlignVertical: props['textAlignVertical'], + textDirection: props['textDirection'], + readOnly: props['readOnly'] ?? false, + toolbarOptions: props['toolbarOptions'], + showCursor: props['showCursor'], + autofocus: props['autofocus'] ?? false, + obscuringCharacter: props['obscuringCharacter'] ?? '•', + obscureText: props['obscureText'] ?? false, + autocorrect: props['autocorrect'] ?? true, + smartDashesType: props['smartDashesType'], + smartQuotesType: props['smartQuotesType'], + enableSuggestions: props['enableSuggestions'] ?? true, + maxLines: props['maxLines'] ?? 1, + minLines: props['minLines'], + expands: props['expands'] ?? false, + maxLength: props['maxLength'], + maxLengthEnforced: props['maxLengthEnforced'] ?? true, + maxLengthEnforcement: props['maxLengthEnforcement'], + onChanged: props['onChanged'], + onEditingComplete: props['onEditingComplete'], + onSubmitted: props['onSubmitted'], + onAppPrivateCommand: props['onAppPrivateCommand'], + inputFormatters: as(props['inputFormatters']), + enabled: props['enabled'], + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'], + cursorColor: props['cursorColor'], + selectionHeightStyle: + props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: + props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + keyboardAppearance: props['keyboardAppearance'], + scrollPadding: props['scrollPadding'] ?? const EdgeInsets.all(20.0), + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: + props['enableInteractiveSelection'] ?? true, + selectionControls: props['selectionControls'], + onTap: props['onTap'], + mouseCursor: props['mouseCursor'], + buildCounter: props['buildCounter'], + scrollController: props['scrollController'], + scrollPhysics: props['scrollPhysics'], + autofillHints: props['autofillHints'], + restorationId: props['restorationId'], + enableIMEPersonalizedLearning: + props['enableIMEPersonalizedLearning'] ?? true, + ), + 'TextField#buildCounter': (props) => ( + dynamic context, + int currentLength, + bool isFocused, + int maxLength, + ) { + return (props['block']) as dynamic; + }, + 'TextField.noMaxLength': TextField.noMaxLength, + 'NavigationRailThemeData.lerp': (props) => NavigationRailThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NavigationRailTheme.of': (props) => NavigationRailTheme.of( + props['pa'][0], + ), + 'AboutListTile': (props) => AboutListTile( + key: props['key'], + icon: props['icon'], + child: props['child'], + applicationName: props['applicationName'], + applicationVersion: props['applicationVersion'], + applicationIcon: props['applicationIcon'], + applicationLegalese: props['applicationLegalese'], + aboutBoxChildren: as(props['aboutBoxChildren']), + dense: props['dense'], + ), + 'AboutDialog': (props) => AboutDialog( + key: props['key'], + applicationName: props['applicationName'], + applicationVersion: props['applicationVersion'], + applicationIcon: props['applicationIcon'], + applicationLegalese: props['applicationLegalese'], + children: as(props['children']), + ), + 'LicensePage': (props) => LicensePage( + key: props['key'], + applicationName: props['applicationName'], + applicationVersion: props['applicationVersion'], + applicationIcon: props['applicationIcon'], + applicationLegalese: props['applicationLegalese'], + ), + 'TimePickerThemeData.lerp': (props) => TimePickerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TimePickerTheme.of': (props) => TimePickerTheme.of( + props['pa'][0], + ), + 'TextSelectionToolbar': (props) => TextSelectionToolbar( + key: props['key'], + anchorAbove: props['anchorAbove'], + anchorBelow: props['anchorBelow'], + toolbarBuilder: props['toolbarBuilder'], // ?? _defaultToolbarBuilder, + children: as(props['children'])!, + ), + 'TextSelectionThemeData.lerp': (props) => TextSelectionThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextSelectionTheme.of': (props) => TextSelectionTheme.of( + props['pa'][0], + ), + 'RadioListTile': (props) => RadioListTile( + key: props['key'], + value: props['value'], + groupValue: props['groupValue'], + onChanged: props['onChanged'], + toggleable: props['toggleable'] ?? false, + activeColor: props['activeColor'], + title: props['title'], + subtitle: props['subtitle'], + isThreeLine: props['isThreeLine'] ?? false, + dense: props['dense'], + secondary: props['secondary'], + selected: props['selected'] ?? false, + controlAffinity: + props['controlAffinity'] ?? ListTileControlAffinity.platform, + autofocus: props['autofocus'] ?? false, + contentPadding: props['contentPadding'], + shape: props['shape'], + tileColor: props['tileColor'], + selectedTileColor: props['selectedTileColor'], + ), + 'RefreshIndicator': (props) => RefreshIndicator( + key: props['key'], + child: props['child'], + displacement: props['displacement']?.toDouble() ?? 40.0, + edgeOffset: props['edgeOffset']?.toDouble() ?? 0.0, + onRefresh: props['onRefresh'], + color: props['color'], + backgroundColor: props['backgroundColor'], + notificationPredicate: props['notificationPredicate'] ?? + defaultScrollNotificationPredicate, + semanticsLabel: props['semanticsLabel'], + semanticsValue: props['semanticsValue'], + strokeWidth: props['strokeWidth']?.toDouble() ?? 2.0, + triggerMode: + props['triggerMode'] ?? RefreshIndicatorTriggerMode.onEdge, + ), + 'RefreshIndicator#onRefresh': (props) => () { + return (props['block']) as Future; + }, + 'RefreshIndicatorTriggerMode': { + 'values': RefreshIndicatorTriggerMode.values, + 'anywhere': RefreshIndicatorTriggerMode.anywhere, + 'onEdge': RefreshIndicatorTriggerMode.onEdge, + }, + 'InputDatePickerFormField': (props) => InputDatePickerFormField( + key: props['key'], + initialDate: props['initialDate'], + firstDate: props['firstDate'], + lastDate: props['lastDate'], + onDateSubmitted: props['onDateSubmitted'], + onDateSaved: props['onDateSaved'], + selectableDayPredicate: props['selectableDayPredicate'], + errorFormatText: props['errorFormatText'], + errorInvalidText: props['errorInvalidText'], + fieldHintText: props['fieldHintText'], + fieldLabelText: props['fieldLabelText'], + autofocus: props['autofocus'] ?? false, + ), + 'InputDatePickerFormField#selectableDayPredicate': (props) => ( + DateTime day, + ) { + return (props['block']) as bool; + }, + 'BottomAppBarTheme.of': (props) => BottomAppBarTheme.of( + props['pa'][0], + ), + 'BottomAppBarTheme.lerp': (props) => BottomAppBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TabBarTheme.of': (props) => TabBarTheme.of( + props['pa'][0], + ), + 'TabBarTheme.lerp': (props) => TabBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'OutlinedButtonThemeData.lerp': (props) => OutlinedButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'OutlinedButtonTheme.of': (props) => OutlinedButtonTheme.of( + props['pa'][0], + ), + 'GridTileBar': (props) => GridTileBar( + key: props['key'], + backgroundColor: props['backgroundColor'], + leading: props['leading'], + title: props['title'], + subtitle: props['subtitle'], + trailing: props['trailing'], + ), + 'ElevationOverlay.applyOverlay': (props) => ElevationOverlay.applyOverlay( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ElevationOverlay.overlayColor': (props) => ElevationOverlay.overlayColor( + props['pa'][0], + props['pa'][1]?.toDouble(), + ), + 'ElevationOverlay.colorWithOverlay': (props) => + ElevationOverlay.colorWithOverlay( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SelectableText': (props) => SelectableText( + props['pa'][0], + key: props['key'], + focusNode: props['focusNode'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + showCursor: props['showCursor'] ?? false, + autofocus: props['autofocus'] ?? false, + toolbarOptions: props['toolbarOptions'], + minLines: props['minLines'], + maxLines: props['maxLines'], + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'], + cursorColor: props['cursorColor'], + selectionHeightStyle: + props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: + props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: + props['enableInteractiveSelection'] ?? true, + selectionControls: props['selectionControls'], + onTap: props['onTap'], + scrollPhysics: props['scrollPhysics'], + textHeightBehavior: props['textHeightBehavior'], + textWidthBasis: props['textWidthBasis'], + onSelectionChanged: props['onSelectionChanged'], + ), + 'SelectableText.rich': (props) => SelectableText.rich( + props['pa'][0], + key: props['key'], + focusNode: props['focusNode'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + showCursor: props['showCursor'] ?? false, + autofocus: props['autofocus'] ?? false, + toolbarOptions: props['toolbarOptions'], + minLines: props['minLines'], + maxLines: props['maxLines'], + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'], + cursorColor: props['cursorColor'], + selectionHeightStyle: + props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: + props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: + props['enableInteractiveSelection'] ?? true, + selectionControls: props['selectionControls'], + onTap: props['onTap'], + scrollPhysics: props['scrollPhysics'], + textHeightBehavior: props['textHeightBehavior'], + textWidthBasis: props['textWidthBasis'], + onSelectionChanged: props['onSelectionChanged'], + ), + 'CircleAvatar': (props) => CircleAvatar( + key: props['key'], + child: props['child'], + backgroundColor: props['backgroundColor'], + backgroundImage: props['backgroundImage'], + foregroundImage: props['foregroundImage'], + onBackgroundImageError: props['onBackgroundImageError'], + onForegroundImageError: props['onForegroundImageError'], + foregroundColor: props['foregroundColor'], + radius: props['radius']?.toDouble(), + minRadius: props['minRadius']?.toDouble(), + maxRadius: props['maxRadius']?.toDouble(), + ), + 'Ink': (props) => Ink( + key: props['key'], + padding: props['padding'], + color: props['color'], + decoration: props['decoration'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'Ink.image': (props) => Ink.image( + key: props['key'], + padding: props['padding'], + image: props['image'], + onImageError: props['onImageError'], + colorFilter: props['colorFilter'], + fit: props['fit'], + alignment: props['alignment'] ?? Alignment.center, + centerSlice: props['centerSlice'], + repeat: props['repeat'] ?? ImageRepeat.noRepeat, + matchTextDirection: props['matchTextDirection'] ?? false, + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'ButtonBar': (props) => ButtonBar( + key: props['key'], + alignment: props['alignment'], + mainAxisSize: props['mainAxisSize'], + buttonTextTheme: props['buttonTextTheme'], + buttonMinWidth: props['buttonMinWidth']?.toDouble(), + buttonHeight: props['buttonHeight']?.toDouble(), + buttonPadding: props['buttonPadding'], + buttonAlignedDropdown: props['buttonAlignedDropdown'], + layoutBehavior: props['layoutBehavior'], + overflowDirection: props['overflowDirection'], + overflowButtonSpacing: props['overflowButtonSpacing']?.toDouble(), + children: as(props['children'])?? const [], + ), + 'AppBarTheme.of': (props) => AppBarTheme.of( + props['pa'][0], + ), + 'AppBarTheme.lerp': (props) => AppBarTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Colors': { + 'transparent': Colors.transparent, + 'black': Colors.black, + 'black87': Colors.black87, + 'black54': Colors.black54, + 'black45': Colors.black45, + 'black38': Colors.black38, + 'black26': Colors.black26, + 'black12': Colors.black12, + 'white': Colors.white, + 'white70': Colors.white70, + 'white60': Colors.white60, + 'white54': Colors.white54, + 'white38': Colors.white38, + 'white30': Colors.white30, + 'white24': Colors.white24, + 'white12': Colors.white12, + 'white10': Colors.white10, + 'red': Colors.red, + 'redAccent': Colors.redAccent, + 'pink': Colors.pink, + 'pinkAccent': Colors.pinkAccent, + 'purple': Colors.purple, + 'purpleAccent': Colors.purpleAccent, + 'deepPurple': Colors.deepPurple, + 'deepPurpleAccent': Colors.deepPurpleAccent, + 'indigo': Colors.indigo, + 'indigoAccent': Colors.indigoAccent, + 'blue': Colors.blue, + 'blueAccent': Colors.blueAccent, + 'lightBlue': Colors.lightBlue, + 'lightBlueAccent': Colors.lightBlueAccent, + 'cyan': Colors.cyan, + 'cyanAccent': Colors.cyanAccent, + 'teal': Colors.teal, + 'tealAccent': Colors.tealAccent, + 'green': Colors.green, + 'greenAccent': Colors.greenAccent, + 'lightGreen': Colors.lightGreen, + 'lightGreenAccent': Colors.lightGreenAccent, + 'lime': Colors.lime, + 'limeAccent': Colors.limeAccent, + 'yellow': Colors.yellow, + 'yellowAccent': Colors.yellowAccent, + 'amber': Colors.amber, + 'amberAccent': Colors.amberAccent, + 'orange': Colors.orange, + 'orangeAccent': Colors.orangeAccent, + 'deepOrange': Colors.deepOrange, + 'deepOrangeAccent': Colors.deepOrangeAccent, + 'brown': Colors.brown, + 'grey': Colors.grey, + 'blueGrey': Colors.blueGrey, + 'primaries': Colors.primaries, + 'accents': Colors.accents, + }, + 'SnackBarAction': (props) => SnackBarAction( + key: props['key'], + textColor: props['textColor'], + disabledTextColor: props['disabledTextColor'], + label: props['label'], + onPressed: props['onPressed'], + ), + 'SnackBar': (props) => SnackBar( + key: props['key'], + content: props['content'], + backgroundColor: props['backgroundColor'], + elevation: props['elevation']?.toDouble(), + margin: props['margin'], + padding: props['padding'], + width: props['width']?.toDouble(), + shape: props['shape'], + behavior: props['behavior'], + action: props['action'], + duration: props['duration'] ?? _snackBarDisplayDuration, + animation: props['animation'], + onVisible: props['onVisible'], + dismissDirection: + props['dismissDirection'] ?? DismissDirection.down, + ), + 'SnackBar.createAnimationController': (props) => + SnackBar.createAnimationController( + vsync: props['vsync'], + ), + 'SnackBarClosedReason': { + 'values': SnackBarClosedReason.values, + 'action': SnackBarClosedReason.action, + 'dismiss': SnackBarClosedReason.dismiss, + 'swipe': SnackBarClosedReason.swipe, + 'hide': SnackBarClosedReason.hide, + 'remove': SnackBarClosedReason.remove, + 'timeout': SnackBarClosedReason.timeout, + }, + 'InputDecorator': (props) => InputDecorator( + key: props['key'], + decoration: props['decoration'], + baseStyle: props['baseStyle'], + textAlign: props['textAlign'], + textAlignVertical: props['textAlignVertical'], + isFocused: props['isFocused'] ?? false, + isHovering: props['isHovering'] ?? false, + expands: props['expands'] ?? false, + isEmpty: props['isEmpty'] ?? false, + child: props['child'], + ), + 'InputDecorator.containerOf': (props) => InputDecorator.containerOf( + props['pa'][0], + ), + 'FloatingLabelBehavior': { + 'values': FloatingLabelBehavior.values, + 'never': FloatingLabelBehavior.never, + 'auto': FloatingLabelBehavior.auto, + 'always': FloatingLabelBehavior.always, + }, + 'ReorderableListView': (props) => ReorderableListView( + key: props['key'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + buildDefaultDragHandles: props['buildDefaultDragHandles'] ?? true, + padding: props['padding'], + header: props['header'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + scrollController: props['scrollController'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + anchor: props['anchor']?.toDouble() ?? 0.0, + cacheExtent: props['cacheExtent']?.toDouble(), + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + children: as(props['children'])!, + ), + 'ReorderableListView.builder': (props) => ReorderableListView.builder( + key: props['key'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + buildDefaultDragHandles: props['buildDefaultDragHandles'] ?? true, + padding: props['padding'], + header: props['header'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + scrollController: props['scrollController'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + anchor: props['anchor']?.toDouble() ?? 0.0, + cacheExtent: props['cacheExtent']?.toDouble(), + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ColorScheme.lerp': (props) => ColorScheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TimeOfDay': { + 'hoursPerDay': TimeOfDay.hoursPerDay, + 'hoursPerPeriod': TimeOfDay.hoursPerPeriod, + 'minutesPerHour': TimeOfDay.minutesPerHour, + }, + 'DayPeriod': { + 'values': DayPeriod.values, + 'am': DayPeriod.am, + 'pm': DayPeriod.pm, + }, + 'TimeOfDayFormat': { + 'values': TimeOfDayFormat.values, + 'HH_colon_mm': TimeOfDayFormat.HH_colon_mm, + 'HH_dot_mm': TimeOfDayFormat.HH_dot_mm, + 'frenchCanadian': TimeOfDayFormat.frenchCanadian, + 'H_colon_mm': TimeOfDayFormat.H_colon_mm, + 'h_colon_mm_space_a': TimeOfDayFormat.h_colon_mm_space_a, + 'a_space_h_colon_mm': TimeOfDayFormat.a_space_h_colon_mm, + }, + 'HourFormat': { + 'values': HourFormat.values, + 'HH': HourFormat.HH, + 'H': HourFormat.H, + 'h': HourFormat.h, + }, + 'Card': (props) => Card( + key: props['key'], + color: props['color'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + shape: props['shape'], + borderOnForeground: props['borderOnForeground'] ?? true, + margin: props['margin'], + clipBehavior: props['clipBehavior'], + child: props['child'], + semanticContainer: props['semanticContainer'] ?? true, + ), + 'RawMaterialButton': (props) => RawMaterialButton( + key: props['key'], + onPressed: props['onPressed'], + onLongPress: props['onLongPress'], + onHighlightChanged: props['onHighlightChanged'], + mouseCursor: props['mouseCursor'], + textStyle: props['textStyle'], + fillColor: props['fillColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + highlightColor: props['highlightColor'], + splashColor: props['splashColor'], + elevation: props['elevation']?.toDouble() ?? 2.0, + focusElevation: props['focusElevation']?.toDouble() ?? 4.0, + hoverElevation: props['hoverElevation']?.toDouble() ?? 4.0, + highlightElevation: props['highlightElevation']?.toDouble() ?? 8.0, + disabledElevation: props['disabledElevation']?.toDouble() ?? 0.0, + padding: props['padding'] ?? EdgeInsets.zero, + visualDensity: props['visualDensity'] ?? VisualDensity.standard, + constraints: props['constraints'] ?? + const BoxConstraints(minWidth: 88.0, minHeight: 36.0), + shape: props['shape'] ?? const RoundedRectangleBorder(), + animationDuration: + props['animationDuration'] ?? kThemeChangeDuration, + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + materialTapTargetSize: props['materialTapTargetSize'], + child: props['child'], + enableFeedback: props['enableFeedback'] ?? true, + ), + 'PopupMenuThemeData.lerp': (props) => PopupMenuThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'PopupMenuTheme.of': (props) => PopupMenuTheme.of( + props['pa'][0], + ), + 'DataCell': { + 'empty': DataCell.empty, + }, + 'DataTable': (props) => DataTable( + key: props['key'], + columns: as(props['columns'])!, + sortColumnIndex: props['sortColumnIndex'], + sortAscending: props['sortAscending'] ?? true, + onSelectAll: props['onSelectAll'], + decoration: props['decoration'], + dataRowColor: props['dataRowColor'], + dataRowHeight: props['dataRowHeight']?.toDouble(), + dataTextStyle: props['dataTextStyle'], + headingRowColor: props['headingRowColor'], + headingRowHeight: props['headingRowHeight']?.toDouble(), + headingTextStyle: props['headingTextStyle'], + horizontalMargin: props['horizontalMargin']?.toDouble(), + columnSpacing: props['columnSpacing']?.toDouble(), + showCheckboxColumn: props['showCheckboxColumn'] ?? true, + showBottomBorder: props['showBottomBorder'] ?? false, + dividerThickness: props['dividerThickness']?.toDouble(), + rows: as(props['rows'])!, + checkboxHorizontalMargin: + props['checkboxHorizontalMargin']?.toDouble(), + ), + 'DefaultTabController': (props) => DefaultTabController( + key: props['key'], + length: props['length'], + initialIndex: props['initialIndex'] ?? 0, + child: props['child'], + ), + 'DefaultTabController.of': (props) => DefaultTabController.of( + props['pa'][0], + ), + 'NavigationRail': (props) => NavigationRail( + key: props['key'], + backgroundColor: props['backgroundColor'], + extended: props['extended'] ?? false, + leading: props['leading'], + trailing: props['trailing'], + destinations: as(props['destinations'])!, + selectedIndex: props['selectedIndex'], + onDestinationSelected: props['onDestinationSelected'], + elevation: props['elevation']?.toDouble(), + groupAlignment: props['groupAlignment']?.toDouble(), + labelType: props['labelType'], + unselectedLabelTextStyle: props['unselectedLabelTextStyle'], + selectedLabelTextStyle: props['selectedLabelTextStyle'], + unselectedIconTheme: props['unselectedIconTheme'], + selectedIconTheme: props['selectedIconTheme'], + minWidth: props['minWidth']?.toDouble(), + minExtendedWidth: props['minExtendedWidth']?.toDouble(), + ), + 'NavigationRail.extendedAnimation': (props) => + NavigationRail.extendedAnimation( + props['pa'][0], + ), + 'NavigationRailLabelType': { + 'values': NavigationRailLabelType.values, + 'none': NavigationRailLabelType.none, + 'selected': NavigationRailLabelType.selected, + 'all': NavigationRailLabelType.all, + }, + 'TooltipThemeData.lerp': (props) => TooltipThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TooltipTheme.of': (props) => TooltipTheme.of( + props['pa'][0], + ), + 'TooltipTriggerMode': { + 'values': TooltipTriggerMode.values, + 'manual': TooltipTriggerMode.manual, + 'longPress': TooltipTriggerMode.longPress, + 'tap': TooltipTriggerMode.tap, + }, + 'TextButton.styleFrom': (props) => TextButton.styleFrom( + primary: props['primary'], + onSurface: props['onSurface'], + backgroundColor: props['backgroundColor'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'Dialog': (props) => Dialog( + key: props['key'], + backgroundColor: props['backgroundColor'], + elevation: props['elevation']?.toDouble(), + insetAnimationDuration: props['insetAnimationDuration'] ?? + const Duration(milliseconds: 100), + insetAnimationCurve: + props['insetAnimationCurve'] ?? Curves.decelerate, + clipBehavior: props['clipBehavior'] ?? Clip.none, + shape: props['shape'], + child: props['child'], + ), + 'AlertDialog': (props) => AlertDialog( + key: props['key'], + title: props['title'], + titlePadding: props['titlePadding'], + titleTextStyle: props['titleTextStyle'], + content: props['content'], + contentPadding: props['contentPadding'] ?? + const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0), + contentTextStyle: props['contentTextStyle'], + actions: as(props['actions']), + actionsPadding: props['actionsPadding'] ?? EdgeInsets.zero, + actionsAlignment: props['actionsAlignment'], + actionsOverflowDirection: props['actionsOverflowDirection'], + actionsOverflowButtonSpacing: + props['actionsOverflowButtonSpacing']?.toDouble(), + buttonPadding: props['buttonPadding'], + backgroundColor: props['backgroundColor'], + elevation: props['elevation']?.toDouble(), + semanticLabel: props['semanticLabel'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + shape: props['shape'], + scrollable: props['scrollable'] ?? false, + ), + 'SimpleDialogOption': (props) => SimpleDialogOption( + key: props['key'], + onPressed: props['onPressed'], + padding: props['padding'], + child: props['child'], + ), + 'SimpleDialog': (props) => SimpleDialog( + key: props['key'], + title: props['title'], + titlePadding: props['titlePadding'] ?? + const EdgeInsets.fromLTRB(24.0, 24.0, 24.0, 0.0), + titleTextStyle: props['titleTextStyle'], + children: as(props['children']), + contentPadding: props['contentPadding'] ?? + const EdgeInsets.fromLTRB(0.0, 12.0, 0.0, 16.0), + backgroundColor: props['backgroundColor'], + elevation: props['elevation']?.toDouble(), + semanticLabel: props['semanticLabel'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + shape: props['shape'], + ), + 'InkResponse': (props) => InkResponse( + key: props['key'], + child: props['child'], + onTap: props['onTap'], + onTapDown: props['onTapDown'], + onTapCancel: props['onTapCancel'], + onDoubleTap: props['onDoubleTap'], + onLongPress: props['onLongPress'], + onHighlightChanged: props['onHighlightChanged'], + onHover: props['onHover'], + mouseCursor: props['mouseCursor'], + containedInkWell: props['containedInkWell'] ?? false, + highlightShape: props['highlightShape'] ?? BoxShape.circle, + radius: props['radius']?.toDouble(), + borderRadius: props['borderRadius'], + customBorder: props['customBorder'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + highlightColor: props['highlightColor'], + overlayColor: props['overlayColor'], + splashColor: props['splashColor'], + splashFactory: props['splashFactory'], + enableFeedback: props['enableFeedback'] ?? true, + excludeFromSemantics: props['excludeFromSemantics'] ?? false, + focusNode: props['focusNode'], + canRequestFocus: props['canRequestFocus'] ?? true, + onFocusChange: props['onFocusChange'], + autofocus: props['autofocus'] ?? false, + ), + 'Checkbox': (props) => Checkbox( + key: props['key'], + value: props['value'], + tristate: props['tristate'] ?? false, + onChanged: props['onChanged'], + mouseCursor: props['mouseCursor'], + activeColor: props['activeColor'], + fillColor: props['fillColor'], + checkColor: props['checkColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + overlayColor: props['overlayColor'], + splashRadius: props['splashRadius']?.toDouble(), + materialTapTargetSize: props['materialTapTargetSize'], + visualDensity: props['visualDensity'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + shape: props['shape'], + side: props['side'], + ), + 'Checkbox.width': Checkbox.width, + 'TimePickerDialog': (props) => TimePickerDialog( + key: props['key'], + initialTime: props['initialTime'], + cancelText: props['cancelText'], + confirmText: props['confirmText'], + helpText: props['helpText'], + errorInvalidText: props['errorInvalidText'], + hourLabelText: props['hourLabelText'], + minuteLabelText: props['minuteLabelText'], + restorationId: props['restorationId'], + initialEntryMode: + props['initialEntryMode'] ?? TimePickerEntryMode.dial, + ), + 'TimePickerEntryMode': { + 'values': TimePickerEntryMode.values, + 'dial': TimePickerEntryMode.dial, + 'input': TimePickerEntryMode.input, + }, + 'Radio': (props) => Radio( + key: props['key'], + value: props['value'], + groupValue: props['groupValue'], + onChanged: props['onChanged'], + mouseCursor: props['mouseCursor'], + toggleable: props['toggleable'] ?? false, + activeColor: props['activeColor'], + fillColor: props['fillColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + overlayColor: props['overlayColor'], + splashRadius: props['splashRadius']?.toDouble(), + materialTapTargetSize: props['materialTapTargetSize'], + visualDensity: props['visualDensity'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + ), + 'Stepper': (props) => Stepper( + key: props['key'], + steps: as(props['steps'])!, + physics: props['physics'], + type: props['type'] ?? StepperType.vertical, + currentStep: props['currentStep'] ?? 0, + onStepTapped: props['onStepTapped'], + onStepContinue: props['onStepContinue'], + onStepCancel: props['onStepCancel'], + controlsBuilder: props['controlsBuilder'], + elevation: props['elevation']?.toDouble(), + ), + 'StepState': { + 'values': StepState.values, + 'indexed': StepState.indexed, + 'editing': StepState.editing, + 'complete': StepState.complete, + 'disabled': StepState.disabled, + 'error': StepState.error, + }, + 'StepperType': { + 'values': StepperType.values, + 'vertical': StepperType.vertical, + 'horizontal': StepperType.horizontal, + }, + 'CheckboxListTile': (props) => CheckboxListTile( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + activeColor: props['activeColor'], + checkColor: props['checkColor'], + tileColor: props['tileColor'], + title: props['title'], + subtitle: props['subtitle'], + isThreeLine: props['isThreeLine'] ?? false, + dense: props['dense'], + secondary: props['secondary'], + selected: props['selected'] ?? false, + controlAffinity: + props['controlAffinity'] ?? ListTileControlAffinity.platform, + autofocus: props['autofocus'] ?? false, + contentPadding: props['contentPadding'], + tristate: props['tristate'] ?? false, + shape: props['shape'], + selectedTileColor: props['selectedTileColor'], + ), + 'RadioThemeData.lerp': (props) => RadioThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RadioTheme.of': (props) => RadioTheme.of( + props['pa'][0], + ), + 'Tab': (props) => Tab( + key: props['key'], + text: props['text'], + icon: props['icon'], + iconMargin: + props['iconMargin'] ?? const EdgeInsets.only(bottom: 10.0), + height: props['height']?.toDouble(), + child: props['child'], + ), + 'TabBar': (props) => TabBar( + key: props['key'], + tabs: as(props['tabs'])!, + controller: props['controller'], + isScrollable: props['isScrollable'] ?? false, + padding: props['padding'], + indicatorColor: props['indicatorColor'], + automaticIndicatorColorAdjustment: + props['automaticIndicatorColorAdjustment'] ?? true, + indicatorWeight: props['indicatorWeight']?.toDouble() ?? 2.0, + indicatorPadding: props['indicatorPadding'] ?? EdgeInsets.zero, + indicator: props['indicator'], + indicatorSize: props['indicatorSize'], + labelColor: props['labelColor'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + unselectedLabelColor: props['unselectedLabelColor'], + unselectedLabelStyle: props['unselectedLabelStyle'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + overlayColor: props['overlayColor'], + mouseCursor: props['mouseCursor'], + enableFeedback: props['enableFeedback'], + onTap: props['onTap'], + physics: props['physics'], + ), + 'TabBarView': (props) => TabBarView( + key: props['key'], + controller: props['controller'], + physics: props['physics'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + children: as(props['children'])!, + ), + 'TabPageSelectorIndicator': (props) => TabPageSelectorIndicator( + key: props['key'], + backgroundColor: props['backgroundColor'], + borderColor: props['borderColor'], + size: props['size']?.toDouble(), + ), + 'TabPageSelector': (props) => TabPageSelector( + key: props['key'], + controller: props['controller'], + indicatorSize: props['indicatorSize']?.toDouble() ?? 12.0, + color: props['color'], + selectedColor: props['selectedColor'], + ), + 'TabBarIndicatorSize': { + 'values': TabBarIndicatorSize.values, + 'tab': TabBarIndicatorSize.tab, + 'label': TabBarIndicatorSize.label, + }, + 'DatePickerDialog': (props) => DatePickerDialog( + key: props['key'], + initialDate: props['initialDate'], + firstDate: props['firstDate'], + lastDate: props['lastDate'], + currentDate: props['currentDate'], + initialEntryMode: + props['initialEntryMode'] ?? DatePickerEntryMode.calendar, + selectableDayPredicate: props['selectableDayPredicate'], + cancelText: props['cancelText'], + confirmText: props['confirmText'], + helpText: props['helpText'], + initialCalendarMode: + props['initialCalendarMode'] ?? DatePickerMode.day, + errorFormatText: props['errorFormatText'], + errorInvalidText: props['errorInvalidText'], + fieldHintText: props['fieldHintText'], + fieldLabelText: props['fieldLabelText'], + restorationId: props['restorationId'], + ), + 'DatePickerDialog#selectableDayPredicate': (props) => ( + DateTime day, + ) { + return (props['block']) as bool; + }, + 'DateRangePickerDialog': (props) => DateRangePickerDialog( + key: props['key'], + initialDateRange: props['initialDateRange'], + firstDate: props['firstDate'], + lastDate: props['lastDate'], + currentDate: props['currentDate'], + initialEntryMode: + props['initialEntryMode'] ?? DatePickerEntryMode.calendar, + helpText: props['helpText'], + cancelText: props['cancelText'], + confirmText: props['confirmText'], + saveText: props['saveText'], + errorInvalidRangeText: props['errorInvalidRangeText'], + errorFormatText: props['errorFormatText'], + errorInvalidText: props['errorInvalidText'], + fieldStartHintText: props['fieldStartHintText'], + fieldEndHintText: props['fieldEndHintText'], + fieldStartLabelText: props['fieldStartLabelText'], + fieldEndLabelText: props['fieldEndLabelText'], + restorationId: props['restorationId'], + ), + 'BottomNavigationBarThemeData.lerp': (props) => + BottomNavigationBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BottomNavigationBarTheme.of': (props) => BottomNavigationBarTheme.of( + props['pa'][0], + ), + 'FloatingActionButton': (props) => FloatingActionButton( + key: props['key'], + child: props['child'], + tooltip: props['tooltip'], + foregroundColor: props['foregroundColor'], + backgroundColor: props['backgroundColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + splashColor: props['splashColor'], + heroTag: props['heroTag'] ?? const _DefaultHeroTag(), + elevation: props['elevation']?.toDouble(), + focusElevation: props['focusElevation']?.toDouble(), + hoverElevation: props['hoverElevation']?.toDouble(), + highlightElevation: props['highlightElevation']?.toDouble(), + disabledElevation: props['disabledElevation']?.toDouble(), + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'], + mini: props['mini'] ?? false, + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + materialTapTargetSize: props['materialTapTargetSize'], + isExtended: props['isExtended'] ?? false, + enableFeedback: props['enableFeedback'], + ), + 'FloatingActionButton.small': (props) => FloatingActionButton.small( + key: props['key'], + child: props['child'], + tooltip: props['tooltip'], + foregroundColor: props['foregroundColor'], + backgroundColor: props['backgroundColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + splashColor: props['splashColor'], + heroTag: props['heroTag'] ?? const _DefaultHeroTag(), + elevation: props['elevation']?.toDouble(), + focusElevation: props['focusElevation']?.toDouble(), + hoverElevation: props['hoverElevation']?.toDouble(), + highlightElevation: props['highlightElevation']?.toDouble(), + disabledElevation: props['disabledElevation']?.toDouble(), + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + materialTapTargetSize: props['materialTapTargetSize'], + enableFeedback: props['enableFeedback'], + ), + 'FloatingActionButton.large': (props) => FloatingActionButton.large( + key: props['key'], + child: props['child'], + tooltip: props['tooltip'], + foregroundColor: props['foregroundColor'], + backgroundColor: props['backgroundColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + splashColor: props['splashColor'], + heroTag: props['heroTag'] ?? const _DefaultHeroTag(), + elevation: props['elevation']?.toDouble(), + focusElevation: props['focusElevation']?.toDouble(), + hoverElevation: props['hoverElevation']?.toDouble(), + highlightElevation: props['highlightElevation']?.toDouble(), + disabledElevation: props['disabledElevation']?.toDouble(), + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + materialTapTargetSize: props['materialTapTargetSize'], + enableFeedback: props['enableFeedback'], + ), + 'FloatingActionButton.extended': (props) => FloatingActionButton.extended( + key: props['key'], + tooltip: props['tooltip'], + foregroundColor: props['foregroundColor'], + backgroundColor: props['backgroundColor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + heroTag: props['heroTag'] ?? const _DefaultHeroTag(), + elevation: props['elevation']?.toDouble(), + focusElevation: props['focusElevation']?.toDouble(), + hoverElevation: props['hoverElevation']?.toDouble(), + splashColor: props['splashColor'], + highlightElevation: props['highlightElevation']?.toDouble(), + disabledElevation: props['disabledElevation']?.toDouble(), + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'] ?? SystemMouseCursors.click, + shape: props['shape'], + isExtended: props['isExtended'] ?? true, + materialTapTargetSize: props['materialTapTargetSize'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + extendedIconLabelSpacing: + props['extendedIconLabelSpacing']?.toDouble(), + extendedPadding: props['extendedPadding'], + extendedTextStyle: props['extendedTextStyle'], + icon: props['icon'], + label: props['label'], + enableFeedback: props['enableFeedback'], + ), + 'CheckboxThemeData.lerp': (props) => CheckboxThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'CheckboxTheme.of': (props) => CheckboxTheme.of( + props['pa'][0], + ), + 'RangeSlider': (props) => RangeSlider( + key: props['key'], + values: props['values'], + onChanged: props['onChanged'], + onChangeStart: props['onChangeStart'], + onChangeEnd: props['onChangeEnd'], + min: props['min']?.toDouble() ?? 0.0, + max: props['max']?.toDouble() ?? 1.0, + divisions: props['divisions'], + labels: props['labels'], + activeColor: props['activeColor'], + inactiveColor: props['inactiveColor'], + semanticFormatterCallback: props['semanticFormatterCallback'], + ), + 'RangeSlider#semanticFormatterCallback': (props) => ( + double value, + ) { + return (props['block']) as String; + }, + 'ScrollbarThemeData.lerp': (props) => ScrollbarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ScrollbarTheme.of': (props) => ScrollbarTheme.of( + props['pa'][0], + ), + 'PopupMenuButton': (props) => PopupMenuButton( + key: props['key'], + itemBuilder: props['itemBuilder'], + initialValue: props['initialValue'], + onSelected: props['onSelected'], + onCanceled: props['onCanceled'], + tooltip: props['tooltip'], + elevation: props['elevation']?.toDouble(), + padding: props['padding'] ?? const EdgeInsets.all(8.0), + child: props['child'], + icon: props['icon'], + iconSize: props['iconSize']?.toDouble(), + offset: props['offset'] ?? Offset.zero, + enabled: props['enabled'] ?? true, + shape: props['shape'], + color: props['color'], + enableFeedback: props['enableFeedback'], + ), + 'PopupMenuButton#itemBuilder': (props) => ( + dynamic context, + ) { + return (props['block']) as List; + }, + 'PopupMenuButton#onSelected': (props) => ( + T value, + ) { + return (props['block']); + }, + 'PopupMenuButton#onCanceled': (props) => () { + return (props['block']); + }, + 'ExpandIcon': (props) => ExpandIcon( + key: props['key'], + isExpanded: props['isExpanded'] ?? false, + size: props['size']?.toDouble() ?? 24.0, + onPressed: props['onPressed'], + padding: props['padding'] ?? const EdgeInsets.all(8.0), + color: props['color'], + disabledColor: props['disabledColor'], + expandedColor: props['expandedColor'], + ), + 'AppBar': (props) => AppBar( + key: props['key'], + leading: props['leading'], + automaticallyImplyLeading: + props['automaticallyImplyLeading'] ?? true, + title: props['title'], + actions: as(props['actions']), + flexibleSpace: props['flexibleSpace'], + bottom: props['bottom'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + shape: props['shape'], + backgroundColor: props['backgroundColor'], + foregroundColor: props['foregroundColor'], + brightness: props['brightness'], + iconTheme: props['iconTheme'], + actionsIconTheme: props['actionsIconTheme'], + textTheme: props['textTheme'], + primary: props['primary'] ?? true, + centerTitle: props['centerTitle'], + excludeHeaderSemantics: props['excludeHeaderSemantics'] ?? false, + titleSpacing: props['titleSpacing']?.toDouble(), + toolbarOpacity: props['toolbarOpacity']?.toDouble() ?? 1.0, + bottomOpacity: props['bottomOpacity']?.toDouble() ?? 1.0, + toolbarHeight: props['toolbarHeight']?.toDouble(), + leadingWidth: props['leadingWidth']?.toDouble(), + backwardsCompatibility: props['backwardsCompatibility'], + toolbarTextStyle: props['toolbarTextStyle'], + titleTextStyle: props['titleTextStyle'], + systemOverlayStyle: props['systemOverlayStyle'], + ), + 'AppBar.preferredHeightFor': (props) => AppBar.preferredHeightFor( + props['pa'][0], + props['pa'][1], + ), + 'SliverAppBar': (props) => SliverAppBar( + key: props['key'], + leading: props['leading'], + automaticallyImplyLeading: + props['automaticallyImplyLeading'] ?? true, + title: props['title'], + actions: as(props['actions']), + flexibleSpace: props['flexibleSpace'], + bottom: props['bottom'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + forceElevated: props['forceElevated'] ?? false, + backgroundColor: props['backgroundColor'], + foregroundColor: props['foregroundColor'], + brightness: props['brightness'], + iconTheme: props['iconTheme'], + actionsIconTheme: props['actionsIconTheme'], + textTheme: props['textTheme'], + primary: props['primary'] ?? true, + centerTitle: props['centerTitle'], + excludeHeaderSemantics: props['excludeHeaderSemantics'] ?? false, + titleSpacing: props['titleSpacing']?.toDouble(), + collapsedHeight: props['collapsedHeight']?.toDouble(), + expandedHeight: props['expandedHeight']?.toDouble(), + floating: props['floating'] ?? false, + pinned: props['pinned'] ?? false, + snap: props['snap'] ?? false, + stretch: props['stretch'] ?? false, + stretchTriggerOffset: + props['stretchTriggerOffset']?.toDouble() ?? 100.0, + onStretchTrigger: props['onStretchTrigger'], + shape: props['shape'], + toolbarHeight: props['toolbarHeight']?.toDouble() ?? kToolbarHeight, + leadingWidth: props['leadingWidth']?.toDouble(), + backwardsCompatibility: props['backwardsCompatibility'], + toolbarTextStyle: props['toolbarTextStyle'], + titleTextStyle: props['titleTextStyle'], + systemOverlayStyle: props['systemOverlayStyle'], + ), + 'BottomAppBar': (props) => BottomAppBar( + key: props['key'], + color: props['color'], + elevation: props['elevation']?.toDouble(), + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + notchMargin: props['notchMargin']?.toDouble() ?? 4.0, + child: props['child'], + ), + 'UserAccountsDrawerHeader': (props) => UserAccountsDrawerHeader( + key: props['key'], + decoration: props['decoration'], + margin: props['margin'] ?? const EdgeInsets.only(bottom: 8.0), + currentAccountPicture: props['currentAccountPicture'], + otherAccountsPictures: as(props['otherAccountsPictures']), + currentAccountPictureSize: + props['currentAccountPictureSize'] ?? const Size.square(72.0), + otherAccountsPicturesSize: + props['otherAccountsPicturesSize'] ?? const Size.square(40.0), + accountName: props['accountName'], + accountEmail: props['accountEmail'], + onDetailsPressed: props['onDetailsPressed'], + arrowColor: props['arrowColor'] ?? Colors.white, + ), + 'ThemeData.localize': (props) => ThemeData.localize( + props['pa'][0], + props['pa'][1], + ), + 'ThemeData.estimateBrightnessForColor': (props) => + ThemeData.estimateBrightnessForColor( + props['pa'][0], + ), + 'ThemeData.lerp': (props) => ThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'VisualDensity': { + 'minimumDensity': VisualDensity.minimumDensity, + 'maximumDensity': VisualDensity.maximumDensity, + 'standard': VisualDensity.standard, + 'comfortable': VisualDensity.comfortable, + 'compact': VisualDensity.compact, + }, + 'VisualDensity.lerp': (props) => VisualDensity.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'MaterialTapTargetSize': { + 'values': MaterialTapTargetSize.values, + 'padded': MaterialTapTargetSize.padded, + 'shrinkWrap': MaterialTapTargetSize.shrinkWrap, + }, + 'MaterialBanner': (props) => MaterialBanner( + key: props['key'], + content: props['content'], + contentTextStyle: props['contentTextStyle'], + actions: as(props['actions'])!, + leading: props['leading'], + backgroundColor: props['backgroundColor'], + padding: props['padding'], + leadingPadding: props['leadingPadding'], + forceActionsBelow: props['forceActionsBelow'] ?? false, + overflowAlignment: + props['overflowAlignment'] ?? OverflowBarAlignment.end, + animation: props['animation'], + onVisible: props['onVisible'], + ), + 'MaterialBanner.createAnimationController': (props) => + MaterialBanner.createAnimationController( + vsync: props['vsync'], + ), + 'MaterialBannerClosedReason': { + 'values': MaterialBannerClosedReason.values, + 'dismiss': MaterialBannerClosedReason.dismiss, + 'swipe': MaterialBannerClosedReason.swipe, + 'hide': MaterialBannerClosedReason.hide, + 'remove': MaterialBannerClosedReason.remove, + }, + 'Chip': (props) => Chip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + deleteIcon: props['deleteIcon'], + onDeleted: props['onDeleted'], + deleteIconColor: props['deleteIconColor'], + useDeleteButtonTooltip: props['useDeleteButtonTooltip'] ?? true, + deleteButtonTooltipMessage: props['deleteButtonTooltipMessage'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + padding: props['padding'], + visualDensity: props['visualDensity'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + ), + 'InputChip': (props) => InputChip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + selected: props['selected'] ?? false, + isEnabled: props['isEnabled'] ?? true, + onSelected: props['onSelected'], + deleteIcon: props['deleteIcon'], + onDeleted: props['onDeleted'], + deleteIconColor: props['deleteIconColor'], + useDeleteButtonTooltip: props['useDeleteButtonTooltip'] ?? true, + deleteButtonTooltipMessage: props['deleteButtonTooltipMessage'], + onPressed: props['onPressed'], + pressElevation: props['pressElevation']?.toDouble(), + disabledColor: props['disabledColor'], + selectedColor: props['selectedColor'], + tooltip: props['tooltip'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + padding: props['padding'], + visualDensity: props['visualDensity'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + selectedShadowColor: props['selectedShadowColor'], + showCheckmark: props['showCheckmark'], + checkmarkColor: props['checkmarkColor'], + avatarBorder: props['avatarBorder'] ?? const CircleBorder(), + ), + 'ChoiceChip': (props) => ChoiceChip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + onSelected: props['onSelected'], + pressElevation: props['pressElevation']?.toDouble(), + selected: props['selected'], + selectedColor: props['selectedColor'], + disabledColor: props['disabledColor'], + tooltip: props['tooltip'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + padding: props['padding'], + visualDensity: props['visualDensity'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + selectedShadowColor: props['selectedShadowColor'], + avatarBorder: props['avatarBorder'] ?? const CircleBorder(), + ), + 'FilterChip': (props) => FilterChip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + selected: props['selected'] ?? false, + onSelected: props['onSelected'], + pressElevation: props['pressElevation']?.toDouble(), + disabledColor: props['disabledColor'], + selectedColor: props['selectedColor'], + tooltip: props['tooltip'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + padding: props['padding'], + visualDensity: props['visualDensity'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + selectedShadowColor: props['selectedShadowColor'], + showCheckmark: props['showCheckmark'], + checkmarkColor: props['checkmarkColor'], + avatarBorder: props['avatarBorder'] ?? const CircleBorder(), + ), + 'ActionChip': (props) => ActionChip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + labelPadding: props['labelPadding'], + onPressed: props['onPressed'], + pressElevation: props['pressElevation']?.toDouble(), + tooltip: props['tooltip'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + padding: props['padding'], + visualDensity: props['visualDensity'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + ), + 'RawChip': (props) => RawChip( + key: props['key'], + avatar: props['avatar'], + label: props['label'], + labelStyle: props['labelStyle'], + padding: props['padding'], + visualDensity: props['visualDensity'], + labelPadding: props['labelPadding'], + deleteIcon: props['deleteIcon'], + onDeleted: props['onDeleted'], + deleteIconColor: props['deleteIconColor'], + useDeleteButtonTooltip: props['useDeleteButtonTooltip'] ?? true, + deleteButtonTooltipMessage: props['deleteButtonTooltipMessage'], + onPressed: props['onPressed'], + onSelected: props['onSelected'], + pressElevation: props['pressElevation']?.toDouble(), + tapEnabled: props['tapEnabled'] ?? true, + selected: props['selected'] ?? false, + isEnabled: props['isEnabled'] ?? true, + disabledColor: props['disabledColor'], + selectedColor: props['selectedColor'], + tooltip: props['tooltip'], + side: props['side'], + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + backgroundColor: props['backgroundColor'], + materialTapTargetSize: props['materialTapTargetSize'], + elevation: props['elevation']?.toDouble(), + shadowColor: props['shadowColor'], + selectedShadowColor: props['selectedShadowColor'], + showCheckmark: props['showCheckmark'] ?? true, + checkmarkColor: props['checkmarkColor'], + avatarBorder: props['avatarBorder'] ?? const CircleBorder(), + ), + 'DialogTheme.of': (props) => DialogTheme.of( + props['pa'][0], + ), + 'DialogTheme.lerp': (props) => DialogTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'PaginatedDataTable': (props) => PaginatedDataTable( + key: props['key'], + header: props['header'], + actions: as(props['actions']), + columns: as(props['columns'])!, + sortColumnIndex: props['sortColumnIndex'], + sortAscending: props['sortAscending'] ?? true, + onSelectAll: props['onSelectAll'], + dataRowHeight: + props['dataRowHeight']?.toDouble() ?? kMinInteractiveDimension, + headingRowHeight: props['headingRowHeight']?.toDouble() ?? 56.0, + horizontalMargin: props['horizontalMargin']?.toDouble() ?? 24.0, + columnSpacing: props['columnSpacing']?.toDouble() ?? 56.0, + showCheckboxColumn: props['showCheckboxColumn'] ?? true, + showFirstLastButtons: props['showFirstLastButtons'] ?? false, + initialFirstRowIndex: props['initialFirstRowIndex'] ?? 0, + onPageChanged: props['onPageChanged'], + rowsPerPage: props['rowsPerPage'] ?? defaultRowsPerPage, + availableRowsPerPage: as(props['availableRowsPerPage']) ?? + const [ + defaultRowsPerPage, + defaultRowsPerPage * 2, + defaultRowsPerPage * 5, + defaultRowsPerPage * 10 + ], + onRowsPerPageChanged: props['onRowsPerPageChanged'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + arrowHeadColor: props['arrowHeadColor'], + source: props['source'], + checkboxHorizontalMargin: + props['checkboxHorizontalMargin']?.toDouble(), + ), + 'PaginatedDataTable.defaultRowsPerPage': + PaginatedDataTable.defaultRowsPerPage, + 'FloatingActionButtonThemeData.lerp': (props) => + FloatingActionButtonThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'FlutterLogo': (props) => FlutterLogo( + key: props['key'], + size: props['size']?.toDouble(), + textColor: props['textColor'] ?? const Color(0xFF757575), + style: props['style'] ?? FlutterLogoStyle.markOnly, + duration: props['duration'] ?? const Duration(milliseconds: 750), + curve: props['curve'] ?? Curves.fastOutSlowIn, + ), + 'CardTheme.of': (props) => CardTheme.of( + props['pa'][0], + ), + 'CardTheme.lerp': (props) => CardTheme.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BottomSheetThemeData.lerp': (props) => BottomSheetThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Tooltip': (props) => Tooltip( + key: props['key'], + message: props['message'], + height: props['height']?.toDouble(), + padding: props['padding'], + margin: props['margin'], + verticalOffset: props['verticalOffset']?.toDouble(), + preferBelow: props['preferBelow'], + excludeFromSemantics: props['excludeFromSemantics'], + decoration: props['decoration'], + textStyle: props['textStyle'], + waitDuration: props['waitDuration'], + showDuration: props['showDuration'], + child: props['child'], + triggerMode: props['triggerMode'], + enableFeedback: props['enableFeedback'], + ), + 'Tooltip.dismissAllToolTips': (props) => Tooltip.dismissAllToolTips(), + 'ElevatedButton.styleFrom': (props) => ElevatedButton.styleFrom( + primary: props['primary'], + onPrimary: props['onPrimary'], + onSurface: props['onSurface'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'SwitchListTile': (props) => SwitchListTile( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + tileColor: props['tileColor'], + activeColor: props['activeColor'], + activeTrackColor: props['activeTrackColor'], + inactiveThumbColor: props['inactiveThumbColor'], + inactiveTrackColor: props['inactiveTrackColor'], + activeThumbImage: props['activeThumbImage'], + inactiveThumbImage: props['inactiveThumbImage'], + title: props['title'], + subtitle: props['subtitle'], + isThreeLine: props['isThreeLine'] ?? false, + dense: props['dense'], + contentPadding: props['contentPadding'], + secondary: props['secondary'], + selected: props['selected'] ?? false, + autofocus: props['autofocus'] ?? false, + controlAffinity: + props['controlAffinity'] ?? ListTileControlAffinity.platform, + shape: props['shape'], + selectedTileColor: props['selectedTileColor'], + ), + 'SwitchListTile.adaptive': (props) => SwitchListTile.adaptive( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + tileColor: props['tileColor'], + activeColor: props['activeColor'], + activeTrackColor: props['activeTrackColor'], + inactiveThumbColor: props['inactiveThumbColor'], + inactiveTrackColor: props['inactiveTrackColor'], + activeThumbImage: props['activeThumbImage'], + inactiveThumbImage: props['inactiveThumbImage'], + title: props['title'], + subtitle: props['subtitle'], + isThreeLine: props['isThreeLine'] ?? false, + dense: props['dense'], + contentPadding: props['contentPadding'], + secondary: props['secondary'], + selected: props['selected'] ?? false, + autofocus: props['autofocus'] ?? false, + controlAffinity: + props['controlAffinity'] ?? ListTileControlAffinity.platform, + shape: props['shape'], + selectedTileColor: props['selectedTileColor'], + ), + 'DropdownButtonHideUnderline.at': (props) => + DropdownButtonHideUnderline.at( + props['pa'][0], + ), + 'DropdownButton': (props) => DropdownButton( + key: props['key'], + items: as(props['items']), + selectedItemBuilder: props['selectedItemBuilder'], + value: props['value'], + hint: props['hint'], + disabledHint: props['disabledHint'], + onChanged: props['onChanged'], + onTap: props['onTap'], + elevation: props['elevation'] ?? 8, + style: props['style'], + underline: props['underline'], + icon: props['icon'], + iconDisabledColor: props['iconDisabledColor'], + iconEnabledColor: props['iconEnabledColor'], + iconSize: props['iconSize']?.toDouble() ?? 24.0, + isDense: props['isDense'] ?? false, + isExpanded: props['isExpanded'] ?? false, + itemHeight: + props['itemHeight']?.toDouble() ?? kMinInteractiveDimension, + focusColor: props['focusColor'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + dropdownColor: props['dropdownColor'], + menuMaxHeight: props['menuMaxHeight']?.toDouble(), + enableFeedback: props['enableFeedback'], + alignment: props['alignment'] ?? AlignmentDirectional.centerStart, + borderRadius: props['borderRadius'], + ), + 'DropdownButton#selectedItemBuilder': (props) => ( + dynamic context, + ) { + return (props['block']) as List; + }, + 'IconButton': (props) => IconButton( + key: props['key'], + iconSize: props['iconSize']?.toDouble() ?? 24.0, + visualDensity: props['visualDensity'], + padding: props['padding'] ?? const EdgeInsets.all(8.0), + alignment: props['alignment'] ?? Alignment.center, + splashRadius: props['splashRadius']?.toDouble(), + color: props['color'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + highlightColor: props['highlightColor'], + splashColor: props['splashColor'], + disabledColor: props['disabledColor'], + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'] ?? SystemMouseCursors.click, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + tooltip: props['tooltip'], + enableFeedback: props['enableFeedback'] ?? true, + constraints: props['constraints'], + icon: props['icon'], + ), + 'Slider': (props) => Slider( + key: props['key'], + value: props['value']?.toDouble(), + onChanged: props['onChanged'], + onChangeStart: props['onChangeStart'], + onChangeEnd: props['onChangeEnd'], + min: props['min']?.toDouble() ?? 0.0, + max: props['max']?.toDouble() ?? 1.0, + divisions: props['divisions'], + label: props['label'], + activeColor: props['activeColor'], + inactiveColor: props['inactiveColor'], + thumbColor: props['thumbColor'], + mouseCursor: props['mouseCursor'], + semanticFormatterCallback: props['semanticFormatterCallback'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + ), + 'Slider.adaptive': (props) => Slider.adaptive( + key: props['key'], + value: props['value']?.toDouble(), + onChanged: props['onChanged'], + onChangeStart: props['onChangeStart'], + onChangeEnd: props['onChangeEnd'], + min: props['min']?.toDouble() ?? 0.0, + max: props['max']?.toDouble() ?? 1.0, + divisions: props['divisions'], + label: props['label'], + mouseCursor: props['mouseCursor'], + activeColor: props['activeColor'], + inactiveColor: props['inactiveColor'], + thumbColor: props['thumbColor'], + semanticFormatterCallback: props['semanticFormatterCallback'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + ), + 'Slider#semanticFormatterCallback': (props) => ( + double value, + ) { + return (props['block']) as String; + }, + 'Slider.adaptive#semanticFormatterCallback': (props) => ( + double value, + ) { + return (props['block']) as String; + }, + 'NoSplash': { + 'splashFactory': NoSplash.splashFactory, + }, + 'ButtonTheme.of': (props) => ButtonTheme.of( + props['pa'][0], + ), + 'ButtonTextTheme': { + 'values': ButtonTextTheme.values, + 'normal': ButtonTextTheme.normal, + 'accent': ButtonTextTheme.accent, + 'primary': ButtonTextTheme.primary, + }, + 'ButtonBarLayoutBehavior': { + 'values': ButtonBarLayoutBehavior.values, + 'constrained': ButtonBarLayoutBehavior.constrained, + 'padded': ButtonBarLayoutBehavior.padded, + }, + 'ListTileTheme.merge': (props) => ListTileTheme.merge( + key: props['key'], + dense: props['dense'], + shape: props['shape'], + style: props['style'], + selectedColor: props['selectedColor'], + iconColor: props['iconColor'], + textColor: props['textColor'], + contentPadding: props['contentPadding'], + tileColor: props['tileColor'], + selectedTileColor: props['selectedTileColor'], + enableFeedback: props['enableFeedback'], + horizontalTitleGap: props['horizontalTitleGap']?.toDouble(), + minVerticalPadding: props['minVerticalPadding']?.toDouble(), + minLeadingWidth: props['minLeadingWidth']?.toDouble(), + child: props['child'], + ), + 'ListTileTheme.of': (props) => ListTileTheme.of( + props['pa'][0], + ), + 'ListTile': (props) => ListTile( + key: props['key'], + leading: props['leading'], + title: props['title'], + subtitle: props['subtitle'], + trailing: props['trailing'], + isThreeLine: props['isThreeLine'] ?? false, + dense: props['dense'], + visualDensity: props['visualDensity'], + shape: props['shape'], + contentPadding: props['contentPadding'], + enabled: props['enabled'] ?? true, + onTap: props['onTap'], + onLongPress: props['onLongPress'], + mouseCursor: props['mouseCursor'], + selected: props['selected'] ?? false, + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + tileColor: props['tileColor'], + selectedTileColor: props['selectedTileColor'], + enableFeedback: props['enableFeedback'], + horizontalTitleGap: props['horizontalTitleGap']?.toDouble(), + minVerticalPadding: props['minVerticalPadding']?.toDouble(), + minLeadingWidth: props['minLeadingWidth']?.toDouble(), + ), + 'ListTile.divideTiles': (props) => ListTile.divideTiles( + context: props['context'], + tiles: props['tiles'], + color: props['color'], + ), + 'ListTileStyle': { + 'values': ListTileStyle.values, + 'list': ListTileStyle.list, + 'drawer': ListTileStyle.drawer, + }, + 'ListTileControlAffinity': { + 'values': ListTileControlAffinity.values, + 'leading': ListTileControlAffinity.leading, + 'trailing': ListTileControlAffinity.trailing, + 'platform': ListTileControlAffinity.platform, + }, + 'ExpansionTile': (props) => ExpansionTile( + key: props['key'], + leading: props['leading'], + title: props['title'], + subtitle: props['subtitle'], + onExpansionChanged: props['onExpansionChanged'], + children: as(props['children']) ?? const [], + trailing: props['trailing'], + initiallyExpanded: props['initiallyExpanded'] ?? false, + maintainState: props['maintainState'] ?? false, + tilePadding: props['tilePadding'], + expandedCrossAxisAlignment: props['expandedCrossAxisAlignment'], + expandedAlignment: props['expandedAlignment'], + childrenPadding: props['childrenPadding'], + backgroundColor: props['backgroundColor'], + collapsedBackgroundColor: props['collapsedBackgroundColor'], + textColor: props['textColor'], + collapsedTextColor: props['collapsedTextColor'], + iconColor: props['iconColor'], + collapsedIconColor: props['collapsedIconColor'], + controlAffinity: props['controlAffinity'], + ), + 'BottomSheet': (props) => BottomSheet( + key: props['key'], + animationController: props['animationController'], + enableDrag: props['enableDrag'] ?? true, + onDragStart: props['onDragStart'], + onDragEnd: props['onDragEnd'], + backgroundColor: props['backgroundColor'], + elevation: props['elevation']?.toDouble(), + shape: props['shape'], + clipBehavior: props['clipBehavior'], + constraints: props['constraints'], + onClosing: props['onClosing'], + builder: props['builder'], + ), + 'BottomSheet#onDragStart': (props) => ( + dynamic details, + ) { + return (props['block']); + }, + 'BottomSheet#onDragEnd': (props) => ( + dynamic details, + bool isClosing, + ) { + return (props['block']); + }, + 'BottomSheet.createAnimationController': (props) => + BottomSheet.createAnimationController( + props['pa'][0], + ), + 'DataTableThemeData.lerp': (props) => DataTableThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DataTableTheme.of': (props) => DataTableTheme.of( + props['pa'][0], + ), + 'DefaultMaterialLocalizations': { + 'delegate': DefaultMaterialLocalizations.delegate, + }, + 'DefaultMaterialLocalizations.load': (props) => + DefaultMaterialLocalizations.load( + props['pa'][0], + ), + 'Typography': { + 'blackMountainView': Typography.blackMountainView, + 'whiteMountainView': Typography.whiteMountainView, + 'blackRedmond': Typography.blackRedmond, + 'whiteRedmond': Typography.whiteRedmond, + 'blackHelsinki': Typography.blackHelsinki, + 'whiteHelsinki': Typography.whiteHelsinki, + 'blackCupertino': Typography.blackCupertino, + 'whiteCupertino': Typography.whiteCupertino, + 'blackRedwoodCity': Typography.blackRedwoodCity, + 'whiteRedwoodCity': Typography.whiteRedwoodCity, + 'englishLike2014': Typography.englishLike2014, + 'englishLike2018': Typography.englishLike2018, + 'dense2014': Typography.dense2014, + 'dense2018': Typography.dense2018, + 'tall2014': Typography.tall2014, + 'tall2018': Typography.tall2018, + }, + 'Typography.lerp': (props) => Typography.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ScriptCategory': { + 'values': ScriptCategory.values, + 'englishLike': ScriptCategory.englishLike, + 'dense': ScriptCategory.dense, + 'tall': ScriptCategory.tall, + }, + 'OutlinedButton.styleFrom': (props) => OutlinedButton.styleFrom( + primary: props['primary'], + onSurface: props['onSurface'], + backgroundColor: props['backgroundColor'], + shadowColor: props['shadowColor'], + elevation: props['elevation']?.toDouble(), + textStyle: props['textStyle'], + padding: props['padding'], + minimumSize: props['minimumSize'], + fixedSize: props['fixedSize'], + maximumSize: props['maximumSize'], + side: props['side'], + shape: props['shape'], + enabledMouseCursor: props['enabledMouseCursor'], + disabledMouseCursor: props['disabledMouseCursor'], + visualDensity: props['visualDensity'], + tapTargetSize: props['tapTargetSize'], + animationDuration: props['animationDuration'], + enableFeedback: props['enableFeedback'], + alignment: props['alignment'], + splashFactory: props['splashFactory'], + ), + 'Divider': (props) => Divider( + key: props['key'], + height: props['height']?.toDouble(), + thickness: props['thickness']?.toDouble(), + indent: props['indent']?.toDouble(), + endIndent: props['endIndent']?.toDouble(), + color: props['color'], + ), + 'Divider.createBorderSide': (props) => Divider.createBorderSide( + props['pa'][0], + color: props['color'], + width: props['width']?.toDouble(), + ), + 'VerticalDivider': (props) => VerticalDivider( + key: props['key'], + width: props['width']?.toDouble(), + thickness: props['thickness']?.toDouble(), + indent: props['indent']?.toDouble(), + endIndent: props['endIndent']?.toDouble(), + color: props['color'], + ), + 'SliderTheme.of': (props) => SliderTheme.of( + props['pa'][0], + ), + 'SliderThemeData.lerp': (props) => SliderThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ShowValueIndicator': { + 'values': ShowValueIndicator.values, + 'onlyForDiscrete': ShowValueIndicator.onlyForDiscrete, + 'onlyForContinuous': ShowValueIndicator.onlyForContinuous, + 'always': ShowValueIndicator.always, + 'never': ShowValueIndicator.never, + }, + 'Thumb': { + 'values': Thumb.values, + 'start': Thumb.start, + 'end': Thumb.end, + }, + 'ToggleButtons': (props) => ToggleButtons( + key: props['key'], + children: as(props['children'])!, + isSelected: as(props['isSelected'])!, + onPressed: props['onPressed'], + mouseCursor: props['mouseCursor'], + textStyle: props['textStyle'], + constraints: props['constraints'], + color: props['color'], + selectedColor: props['selectedColor'], + disabledColor: props['disabledColor'], + fillColor: props['fillColor'], + focusColor: props['focusColor'], + highlightColor: props['highlightColor'], + hoverColor: props['hoverColor'], + splashColor: props['splashColor'], + focusNodes: as(props['focusNodes']), + renderBorder: props['renderBorder'] ?? true, + borderColor: props['borderColor'], + selectedBorderColor: props['selectedBorderColor'], + disabledBorderColor: props['disabledBorderColor'], + borderRadius: props['borderRadius'], + borderWidth: props['borderWidth']?.toDouble(), + direction: props['direction'] ?? Axis.horizontal, + verticalDirection: + props['verticalDirection'] ?? VerticalDirection.down, + ), + 'ToggleButtons#onPressed': (props) => ( + int index, + ) { + return (props['block']); + }, + 'ChipTheme.of': (props) => ChipTheme.of( + props['pa'][0], + ), + 'ChipThemeData.lerp': (props) => ChipThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Theme': (props) => Theme( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'Theme.of': (props) => Theme.of( + props['pa'][0], + ), + 'ButtonBarThemeData.lerp': (props) => ButtonBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ButtonBarTheme.of': (props) => ButtonBarTheme.of( + props['pa'][0], + ), + 'ExpansionPanelList': (props) => ExpansionPanelList( + key: props['key'], + children: as(props['children']) ?? + const [], + expansionCallback: props['expansionCallback'], + animationDuration: + props['animationDuration'] ?? kThemeAnimationDuration, + dividerColor: props['dividerColor'], + elevation: props['elevation']?.toDouble() ?? 2, + ), + 'ExpansionPanelList.radio': (props) => ExpansionPanelList.radio( + key: props['key'], + children: as(props['children']) ?? + const [], + expansionCallback: props['expansionCallback'], + animationDuration: + props['animationDuration'] ?? kThemeAnimationDuration, + initialOpenPanelValue: props['initialOpenPanelValue'], + dividerColor: props['dividerColor'], + elevation: props['elevation']?.toDouble() ?? 2, + ), + 'ExpansionPanelList#expansionCallback': (props) => ( + int panelIndex, + bool isExpanded, + ) { + return (props['block']); + }, + 'ExpansionPanelList.radio#expansionCallback': (props) => ( + int panelIndex, + bool isExpanded, + ) { + return (props['block']); + }, + 'InkSplash': { + 'splashFactory': InkSplash.splashFactory, + }, + 'Autocomplete': (props) => Autocomplete( + key: props['key'], + optionsBuilder: props['optionsBuilder'], + displayStringForOption: props['displayStringForOption'] ?? + RawAutocomplete.defaultStringForOption, + fieldViewBuilder: + props['fieldViewBuilder'], // ?? _defaultFieldViewBuilder, + onSelected: props['onSelected'], + optionsMaxHeight: props['optionsMaxHeight']?.toDouble() ?? 200.0, + optionsViewBuilder: props['optionsViewBuilder'], + initialValue: props['initialValue'], + ), + 'Icons': { + 'ten_k': Icons.ten_k, + 'ten_k_sharp': Icons.ten_k_sharp, + 'ten_k_rounded': Icons.ten_k_rounded, + 'ten_k_outlined': Icons.ten_k_outlined, + 'ten_mp': Icons.ten_mp, + 'ten_mp_sharp': Icons.ten_mp_sharp, + 'ten_mp_rounded': Icons.ten_mp_rounded, + 'ten_mp_outlined': Icons.ten_mp_outlined, + 'eleven_mp': Icons.eleven_mp, + 'eleven_mp_sharp': Icons.eleven_mp_sharp, + 'eleven_mp_rounded': Icons.eleven_mp_rounded, + 'eleven_mp_outlined': Icons.eleven_mp_outlined, + 'twelve_mp': Icons.twelve_mp, + 'twelve_mp_sharp': Icons.twelve_mp_sharp, + 'twelve_mp_rounded': Icons.twelve_mp_rounded, + 'twelve_mp_outlined': Icons.twelve_mp_outlined, + 'thirteen_mp': Icons.thirteen_mp, + 'thirteen_mp_sharp': Icons.thirteen_mp_sharp, + 'thirteen_mp_rounded': Icons.thirteen_mp_rounded, + 'thirteen_mp_outlined': Icons.thirteen_mp_outlined, + 'fourteen_mp': Icons.fourteen_mp, + 'fourteen_mp_sharp': Icons.fourteen_mp_sharp, + 'fourteen_mp_rounded': Icons.fourteen_mp_rounded, + 'fourteen_mp_outlined': Icons.fourteen_mp_outlined, + 'fifteen_mp': Icons.fifteen_mp, + 'fifteen_mp_sharp': Icons.fifteen_mp_sharp, + 'fifteen_mp_rounded': Icons.fifteen_mp_rounded, + 'fifteen_mp_outlined': Icons.fifteen_mp_outlined, + 'sixteen_mp': Icons.sixteen_mp, + 'sixteen_mp_sharp': Icons.sixteen_mp_sharp, + 'sixteen_mp_rounded': Icons.sixteen_mp_rounded, + 'sixteen_mp_outlined': Icons.sixteen_mp_outlined, + 'seventeen_mp': Icons.seventeen_mp, + 'seventeen_mp_sharp': Icons.seventeen_mp_sharp, + 'seventeen_mp_rounded': Icons.seventeen_mp_rounded, + 'seventeen_mp_outlined': Icons.seventeen_mp_outlined, + 'eighteen_mp': Icons.eighteen_mp, + 'eighteen_mp_sharp': Icons.eighteen_mp_sharp, + 'eighteen_mp_rounded': Icons.eighteen_mp_rounded, + 'eighteen_mp_outlined': Icons.eighteen_mp_outlined, + 'nineteen_mp': Icons.nineteen_mp, + 'nineteen_mp_sharp': Icons.nineteen_mp_sharp, + 'nineteen_mp_rounded': Icons.nineteen_mp_rounded, + 'nineteen_mp_outlined': Icons.nineteen_mp_outlined, + 'one_k': Icons.one_k, + 'one_k_sharp': Icons.one_k_sharp, + 'one_k_rounded': Icons.one_k_rounded, + 'one_k_outlined': Icons.one_k_outlined, + 'one_k_plus': Icons.one_k_plus, + 'one_k_plus_sharp': Icons.one_k_plus_sharp, + 'one_k_plus_rounded': Icons.one_k_plus_rounded, + 'one_k_plus_outlined': Icons.one_k_plus_outlined, + 'one_x_mobiledata': Icons.one_x_mobiledata, + 'one_x_mobiledata_sharp': Icons.one_x_mobiledata_sharp, + 'one_x_mobiledata_rounded': Icons.one_x_mobiledata_rounded, + 'one_x_mobiledata_outlined': Icons.one_x_mobiledata_outlined, + 'twenty_mp': Icons.twenty_mp, + 'twenty_mp_sharp': Icons.twenty_mp_sharp, + 'twenty_mp_rounded': Icons.twenty_mp_rounded, + 'twenty_mp_outlined': Icons.twenty_mp_outlined, + 'twenty_one_mp': Icons.twenty_one_mp, + 'twenty_one_mp_sharp': Icons.twenty_one_mp_sharp, + 'twenty_one_mp_rounded': Icons.twenty_one_mp_rounded, + 'twenty_one_mp_outlined': Icons.twenty_one_mp_outlined, + 'twenty_two_mp': Icons.twenty_two_mp, + 'twenty_two_mp_sharp': Icons.twenty_two_mp_sharp, + 'twenty_two_mp_rounded': Icons.twenty_two_mp_rounded, + 'twenty_two_mp_outlined': Icons.twenty_two_mp_outlined, + 'twenty_three_mp': Icons.twenty_three_mp, + 'twenty_three_mp_sharp': Icons.twenty_three_mp_sharp, + 'twenty_three_mp_rounded': Icons.twenty_three_mp_rounded, + 'twenty_three_mp_outlined': Icons.twenty_three_mp_outlined, + 'twenty_four_mp': Icons.twenty_four_mp, + 'twenty_four_mp_sharp': Icons.twenty_four_mp_sharp, + 'twenty_four_mp_rounded': Icons.twenty_four_mp_rounded, + 'twenty_four_mp_outlined': Icons.twenty_four_mp_outlined, + 'two_k': Icons.two_k, + 'two_k_sharp': Icons.two_k_sharp, + 'two_k_rounded': Icons.two_k_rounded, + 'two_k_outlined': Icons.two_k_outlined, + 'two_k_plus': Icons.two_k_plus, + 'two_k_plus_sharp': Icons.two_k_plus_sharp, + 'two_k_plus_rounded': Icons.two_k_plus_rounded, + 'two_k_plus_outlined': Icons.two_k_plus_outlined, + 'two_mp': Icons.two_mp, + 'two_mp_sharp': Icons.two_mp_sharp, + 'two_mp_rounded': Icons.two_mp_rounded, + 'two_mp_outlined': Icons.two_mp_outlined, + 'thirty_fps': Icons.thirty_fps, + 'thirty_fps_sharp': Icons.thirty_fps_sharp, + 'thirty_fps_rounded': Icons.thirty_fps_rounded, + 'thirty_fps_outlined': Icons.thirty_fps_outlined, + 'thirty_fps_select': Icons.thirty_fps_select, + 'thirty_fps_select_sharp': Icons.thirty_fps_select_sharp, + 'thirty_fps_select_rounded': Icons.thirty_fps_select_rounded, + 'thirty_fps_select_outlined': Icons.thirty_fps_select_outlined, + 'threesixty': Icons.threesixty, + 'threesixty_sharp': Icons.threesixty_sharp, + 'threesixty_rounded': Icons.threesixty_rounded, + 'threesixty_outlined': Icons.threesixty_outlined, + 'threed_rotation': Icons.threed_rotation, + 'threed_rotation_sharp': Icons.threed_rotation_sharp, + 'threed_rotation_rounded': Icons.threed_rotation_rounded, + 'threed_rotation_outlined': Icons.threed_rotation_outlined, + 'three_g_mobiledata': Icons.three_g_mobiledata, + 'three_g_mobiledata_sharp': Icons.three_g_mobiledata_sharp, + 'three_g_mobiledata_rounded': Icons.three_g_mobiledata_rounded, + 'three_g_mobiledata_outlined': Icons.three_g_mobiledata_outlined, + 'three_k': Icons.three_k, + 'three_k_sharp': Icons.three_k_sharp, + 'three_k_rounded': Icons.three_k_rounded, + 'three_k_outlined': Icons.three_k_outlined, + 'three_k_plus': Icons.three_k_plus, + 'three_k_plus_sharp': Icons.three_k_plus_sharp, + 'three_k_plus_rounded': Icons.three_k_plus_rounded, + 'three_k_plus_outlined': Icons.three_k_plus_outlined, + 'three_mp': Icons.three_mp, + 'three_mp_sharp': Icons.three_mp_sharp, + 'three_mp_rounded': Icons.three_mp_rounded, + 'three_mp_outlined': Icons.three_mp_outlined, + 'three_p': Icons.three_p, + 'three_p_sharp': Icons.three_p_sharp, + 'three_p_rounded': Icons.three_p_rounded, + 'three_p_outlined': Icons.three_p_outlined, + 'four_g_mobiledata': Icons.four_g_mobiledata, + 'four_g_mobiledata_sharp': Icons.four_g_mobiledata_sharp, + 'four_g_mobiledata_rounded': Icons.four_g_mobiledata_rounded, + 'four_g_mobiledata_outlined': Icons.four_g_mobiledata_outlined, + 'four_g_plus_mobiledata': Icons.four_g_plus_mobiledata, + 'four_g_plus_mobiledata_sharp': Icons.four_g_plus_mobiledata_sharp, + 'four_g_plus_mobiledata_rounded': Icons.four_g_plus_mobiledata_rounded, + 'four_g_plus_mobiledata_outlined': + Icons.four_g_plus_mobiledata_outlined, + 'four_k': Icons.four_k, + 'four_k_sharp': Icons.four_k_sharp, + 'four_k_rounded': Icons.four_k_rounded, + 'four_k_outlined': Icons.four_k_outlined, + 'four_k_plus': Icons.four_k_plus, + 'four_k_plus_sharp': Icons.four_k_plus_sharp, + 'four_k_plus_rounded': Icons.four_k_plus_rounded, + 'four_k_plus_outlined': Icons.four_k_plus_outlined, + 'four_mp': Icons.four_mp, + 'four_mp_sharp': Icons.four_mp_sharp, + 'four_mp_rounded': Icons.four_mp_rounded, + 'four_mp_outlined': Icons.four_mp_outlined, + 'five_g': Icons.five_g, + 'five_g_sharp': Icons.five_g_sharp, + 'five_g_rounded': Icons.five_g_rounded, + 'five_g_outlined': Icons.five_g_outlined, + 'five_k': Icons.five_k, + 'five_k_sharp': Icons.five_k_sharp, + 'five_k_rounded': Icons.five_k_rounded, + 'five_k_outlined': Icons.five_k_outlined, + 'five_k_plus': Icons.five_k_plus, + 'five_k_plus_sharp': Icons.five_k_plus_sharp, + 'five_k_plus_rounded': Icons.five_k_plus_rounded, + 'five_k_plus_outlined': Icons.five_k_plus_outlined, + 'five_mp': Icons.five_mp, + 'five_mp_sharp': Icons.five_mp_sharp, + 'five_mp_rounded': Icons.five_mp_rounded, + 'five_mp_outlined': Icons.five_mp_outlined, + 'sixty_fps': Icons.sixty_fps, + 'sixty_fps_sharp': Icons.sixty_fps_sharp, + 'sixty_fps_rounded': Icons.sixty_fps_rounded, + 'sixty_fps_outlined': Icons.sixty_fps_outlined, + 'sixty_fps_select': Icons.sixty_fps_select, + 'sixty_fps_select_sharp': Icons.sixty_fps_select_sharp, + 'sixty_fps_select_rounded': Icons.sixty_fps_select_rounded, + 'sixty_fps_select_outlined': Icons.sixty_fps_select_outlined, + 'six_ft_apart': Icons.six__ft_apart, + 'six_ft_apart_sharp': Icons.six__ft_apart_sharp, + 'six_ft_apart_rounded': Icons.six__ft_apart_rounded, + 'six_ft_apart_outlined': Icons.six__ft_apart_outlined, + 'six_k': Icons.six_k, + 'six_k_sharp': Icons.six_k_sharp, + 'six_k_rounded': Icons.six_k_rounded, + 'six_k_outlined': Icons.six_k_outlined, + 'six_k_plus': Icons.six_k_plus, + 'six_k_plus_sharp': Icons.six_k_plus_sharp, + 'six_k_plus_rounded': Icons.six_k_plus_rounded, + 'six_k_plus_outlined': Icons.six_k_plus_outlined, + 'six_mp': Icons.six_mp, + 'six_mp_sharp': Icons.six_mp_sharp, + 'six_mp_rounded': Icons.six_mp_rounded, + 'six_mp_outlined': Icons.six_mp_outlined, + 'seven_k': Icons.seven_k, + 'seven_k_sharp': Icons.seven_k_sharp, + 'seven_k_rounded': Icons.seven_k_rounded, + 'seven_k_outlined': Icons.seven_k_outlined, + 'seven_k_plus': Icons.seven_k_plus, + 'seven_k_plus_sharp': Icons.seven_k_plus_sharp, + 'seven_k_plus_rounded': Icons.seven_k_plus_rounded, + 'seven_k_plus_outlined': Icons.seven_k_plus_outlined, + 'seven_mp': Icons.seven_mp, + 'seven_mp_sharp': Icons.seven_mp_sharp, + 'seven_mp_rounded': Icons.seven_mp_rounded, + 'seven_mp_outlined': Icons.seven_mp_outlined, + 'eight_k': Icons.eight_k, + 'eight_k_sharp': Icons.eight_k_sharp, + 'eight_k_rounded': Icons.eight_k_rounded, + 'eight_k_outlined': Icons.eight_k_outlined, + 'eight_k_plus': Icons.eight_k_plus, + 'eight_k_plus_sharp': Icons.eight_k_plus_sharp, + 'eight_k_plus_rounded': Icons.eight_k_plus_rounded, + 'eight_k_plus_outlined': Icons.eight_k_plus_outlined, + 'eight_mp': Icons.eight_mp, + 'eight_mp_sharp': Icons.eight_mp_sharp, + 'eight_mp_rounded': Icons.eight_mp_rounded, + 'eight_mp_outlined': Icons.eight_mp_outlined, + 'nine_k': Icons.nine_k, + 'nine_k_sharp': Icons.nine_k_sharp, + 'nine_k_rounded': Icons.nine_k_rounded, + 'nine_k_outlined': Icons.nine_k_outlined, + 'nine_k_plus': Icons.nine_k_plus, + 'nine_k_plus_sharp': Icons.nine_k_plus_sharp, + 'nine_k_plus_rounded': Icons.nine_k_plus_rounded, + 'nine_k_plus_outlined': Icons.nine_k_plus_outlined, + 'nine_mp': Icons.nine_mp, + 'nine_mp_sharp': Icons.nine_mp_sharp, + 'nine_mp_rounded': Icons.nine_mp_rounded, + 'nine_mp_outlined': Icons.nine_mp_outlined, + 'ac_unit': Icons.ac_unit, + 'ac_unit_sharp': Icons.ac_unit_sharp, + 'ac_unit_rounded': Icons.ac_unit_rounded, + 'ac_unit_outlined': Icons.ac_unit_outlined, + 'access_alarm': Icons.access_alarm, + 'access_alarm_sharp': Icons.access_alarm_sharp, + 'access_alarm_rounded': Icons.access_alarm_rounded, + 'access_alarm_outlined': Icons.access_alarm_outlined, + 'access_alarms': Icons.access_alarms, + 'access_alarms_sharp': Icons.access_alarms_sharp, + 'access_alarms_rounded': Icons.access_alarms_rounded, + 'access_alarms_outlined': Icons.access_alarms_outlined, + 'access_time': Icons.access_time, + 'access_time_sharp': Icons.access_time_sharp, + 'access_time_rounded': Icons.access_time_rounded, + 'access_time_outlined': Icons.access_time_outlined, + 'access_time_filled': Icons.access_time_filled, + 'access_time_filled_sharp': Icons.access_time_filled_sharp, + 'access_time_filled_rounded': Icons.access_time_filled_rounded, + 'access_time_filled_outlined': Icons.access_time_filled_outlined, + 'accessibility': Icons.accessibility, + 'accessibility_sharp': Icons.accessibility_sharp, + 'accessibility_rounded': Icons.accessibility_rounded, + 'accessibility_outlined': Icons.accessibility_outlined, + 'accessibility_new': Icons.accessibility_new, + 'accessibility_new_sharp': Icons.accessibility_new_sharp, + 'accessibility_new_rounded': Icons.accessibility_new_rounded, + 'accessibility_new_outlined': Icons.accessibility_new_outlined, + 'accessible': Icons.accessible, + 'accessible_sharp': Icons.accessible_sharp, + 'accessible_rounded': Icons.accessible_rounded, + 'accessible_outlined': Icons.accessible_outlined, + 'accessible_forward': Icons.accessible_forward, + 'accessible_forward_sharp': Icons.accessible_forward_sharp, + 'accessible_forward_rounded': Icons.accessible_forward_rounded, + 'accessible_forward_outlined': Icons.accessible_forward_outlined, + 'account_balance': Icons.account_balance, + 'account_balance_sharp': Icons.account_balance_sharp, + 'account_balance_rounded': Icons.account_balance_rounded, + 'account_balance_outlined': Icons.account_balance_outlined, + 'account_balance_wallet': Icons.account_balance_wallet, + 'account_balance_wallet_sharp': Icons.account_balance_wallet_sharp, + 'account_balance_wallet_rounded': Icons.account_balance_wallet_rounded, + 'account_balance_wallet_outlined': + Icons.account_balance_wallet_outlined, + 'account_box': Icons.account_box, + 'account_box_sharp': Icons.account_box_sharp, + 'account_box_rounded': Icons.account_box_rounded, + 'account_box_outlined': Icons.account_box_outlined, + 'account_circle': Icons.account_circle, + 'account_circle_sharp': Icons.account_circle_sharp, + 'account_circle_rounded': Icons.account_circle_rounded, + 'account_circle_outlined': Icons.account_circle_outlined, + 'account_tree': Icons.account_tree, + 'account_tree_sharp': Icons.account_tree_sharp, + 'account_tree_rounded': Icons.account_tree_rounded, + 'account_tree_outlined': Icons.account_tree_outlined, + 'ad_units': Icons.ad_units, + 'ad_units_sharp': Icons.ad_units_sharp, + 'ad_units_rounded': Icons.ad_units_rounded, + 'ad_units_outlined': Icons.ad_units_outlined, + 'adb': Icons.adb, + 'adb_sharp': Icons.adb_sharp, + 'adb_rounded': Icons.adb_rounded, + 'adb_outlined': Icons.adb_outlined, + 'add': Icons.add, + 'add_sharp': Icons.add_sharp, + 'add_rounded': Icons.add_rounded, + 'add_outlined': Icons.add_outlined, + 'add_a_photo': Icons.add_a_photo, + 'add_a_photo_sharp': Icons.add_a_photo_sharp, + 'add_a_photo_rounded': Icons.add_a_photo_rounded, + 'add_a_photo_outlined': Icons.add_a_photo_outlined, + 'add_alarm': Icons.add_alarm, + 'add_alarm_sharp': Icons.add_alarm_sharp, + 'add_alarm_rounded': Icons.add_alarm_rounded, + 'add_alarm_outlined': Icons.add_alarm_outlined, + 'add_alert': Icons.add_alert, + 'add_alert_sharp': Icons.add_alert_sharp, + 'add_alert_rounded': Icons.add_alert_rounded, + 'add_alert_outlined': Icons.add_alert_outlined, + 'add_box': Icons.add_box, + 'add_box_sharp': Icons.add_box_sharp, + 'add_box_rounded': Icons.add_box_rounded, + 'add_box_outlined': Icons.add_box_outlined, + 'add_business': Icons.add_business, + 'add_business_sharp': Icons.add_business_sharp, + 'add_business_rounded': Icons.add_business_rounded, + 'add_business_outlined': Icons.add_business_outlined, + 'add_call': Icons.add_call, + 'add_chart': Icons.add_chart, + 'add_chart_sharp': Icons.add_chart_sharp, + 'add_chart_rounded': Icons.add_chart_rounded, + 'add_chart_outlined': Icons.add_chart_outlined, + 'add_circle': Icons.add_circle, + 'add_circle_sharp': Icons.add_circle_sharp, + 'add_circle_rounded': Icons.add_circle_rounded, + 'add_circle_outlined': Icons.add_circle_outlined, + 'add_circle_outline': Icons.add_circle_outline, + 'add_circle_outline_sharp': Icons.add_circle_outline_sharp, + 'add_circle_outline_rounded': Icons.add_circle_outline_rounded, + 'add_circle_outline_outlined': Icons.add_circle_outline_outlined, + 'add_comment': Icons.add_comment, + 'add_comment_sharp': Icons.add_comment_sharp, + 'add_comment_rounded': Icons.add_comment_rounded, + 'add_comment_outlined': Icons.add_comment_outlined, + 'add_ic_call': Icons.add_ic_call, + 'add_ic_call_sharp': Icons.add_ic_call_sharp, + 'add_ic_call_rounded': Icons.add_ic_call_rounded, + 'add_ic_call_outlined': Icons.add_ic_call_outlined, + 'add_link': Icons.add_link, + 'add_link_sharp': Icons.add_link_sharp, + 'add_link_rounded': Icons.add_link_rounded, + 'add_link_outlined': Icons.add_link_outlined, + 'add_location': Icons.add_location, + 'add_location_sharp': Icons.add_location_sharp, + 'add_location_rounded': Icons.add_location_rounded, + 'add_location_outlined': Icons.add_location_outlined, + 'add_location_alt': Icons.add_location_alt, + 'add_location_alt_sharp': Icons.add_location_alt_sharp, + 'add_location_alt_rounded': Icons.add_location_alt_rounded, + 'add_location_alt_outlined': Icons.add_location_alt_outlined, + 'add_moderator': Icons.add_moderator, + 'add_moderator_sharp': Icons.add_moderator_sharp, + 'add_moderator_rounded': Icons.add_moderator_rounded, + 'add_moderator_outlined': Icons.add_moderator_outlined, + 'add_photo_alternate': Icons.add_photo_alternate, + 'add_photo_alternate_sharp': Icons.add_photo_alternate_sharp, + 'add_photo_alternate_rounded': Icons.add_photo_alternate_rounded, + 'add_photo_alternate_outlined': Icons.add_photo_alternate_outlined, + 'add_reaction': Icons.add_reaction, + 'add_reaction_sharp': Icons.add_reaction_sharp, + 'add_reaction_rounded': Icons.add_reaction_rounded, + 'add_reaction_outlined': Icons.add_reaction_outlined, + 'add_road': Icons.add_road, + 'add_road_sharp': Icons.add_road_sharp, + 'add_road_rounded': Icons.add_road_rounded, + 'add_road_outlined': Icons.add_road_outlined, + 'add_shopping_cart': Icons.add_shopping_cart, + 'add_shopping_cart_sharp': Icons.add_shopping_cart_sharp, + 'add_shopping_cart_rounded': Icons.add_shopping_cart_rounded, + 'add_shopping_cart_outlined': Icons.add_shopping_cart_outlined, + 'add_task': Icons.add_task, + 'add_task_sharp': Icons.add_task_sharp, + 'add_task_rounded': Icons.add_task_rounded, + 'add_task_outlined': Icons.add_task_outlined, + 'add_to_drive': Icons.add_to_drive, + 'add_to_drive_sharp': Icons.add_to_drive_sharp, + 'add_to_drive_rounded': Icons.add_to_drive_rounded, + 'add_to_drive_outlined': Icons.add_to_drive_outlined, + 'add_to_home_screen': Icons.add_to_home_screen, + 'add_to_home_screen_sharp': Icons.add_to_home_screen_sharp, + 'add_to_home_screen_rounded': Icons.add_to_home_screen_rounded, + 'add_to_home_screen_outlined': Icons.add_to_home_screen_outlined, + 'add_to_photos': Icons.add_to_photos, + 'add_to_photos_sharp': Icons.add_to_photos_sharp, + 'add_to_photos_rounded': Icons.add_to_photos_rounded, + 'add_to_photos_outlined': Icons.add_to_photos_outlined, + 'add_to_queue': Icons.add_to_queue, + 'add_to_queue_sharp': Icons.add_to_queue_sharp, + 'add_to_queue_rounded': Icons.add_to_queue_rounded, + 'add_to_queue_outlined': Icons.add_to_queue_outlined, + 'addchart': Icons.addchart, + 'addchart_sharp': Icons.addchart_sharp, + 'addchart_rounded': Icons.addchart_rounded, + 'addchart_outlined': Icons.addchart_outlined, + 'adjust': Icons.adjust, + 'adjust_sharp': Icons.adjust_sharp, + 'adjust_rounded': Icons.adjust_rounded, + 'adjust_outlined': Icons.adjust_outlined, + 'admin_panel_settings': Icons.admin_panel_settings, + 'admin_panel_settings_sharp': Icons.admin_panel_settings_sharp, + 'admin_panel_settings_rounded': Icons.admin_panel_settings_rounded, + 'admin_panel_settings_outlined': Icons.admin_panel_settings_outlined, + 'agriculture': Icons.agriculture, + 'agriculture_sharp': Icons.agriculture_sharp, + 'agriculture_rounded': Icons.agriculture_rounded, + 'agriculture_outlined': Icons.agriculture_outlined, + 'air': Icons.air, + 'air_sharp': Icons.air_sharp, + 'air_rounded': Icons.air_rounded, + 'air_outlined': Icons.air_outlined, + 'airline_seat_flat': Icons.airline_seat_flat, + 'airline_seat_flat_sharp': Icons.airline_seat_flat_sharp, + 'airline_seat_flat_rounded': Icons.airline_seat_flat_rounded, + 'airline_seat_flat_outlined': Icons.airline_seat_flat_outlined, + 'airline_seat_flat_angled': Icons.airline_seat_flat_angled, + 'airline_seat_flat_angled_sharp': Icons.airline_seat_flat_angled_sharp, + 'airline_seat_flat_angled_rounded': + Icons.airline_seat_flat_angled_rounded, + 'airline_seat_flat_angled_outlined': + Icons.airline_seat_flat_angled_outlined, + 'airline_seat_individual_suite': Icons.airline_seat_individual_suite, + 'airline_seat_individual_suite_sharp': + Icons.airline_seat_individual_suite_sharp, + 'airline_seat_individual_suite_rounded': + Icons.airline_seat_individual_suite_rounded, + 'airline_seat_individual_suite_outlined': + Icons.airline_seat_individual_suite_outlined, + 'airline_seat_legroom_extra': Icons.airline_seat_legroom_extra, + 'airline_seat_legroom_extra_sharp': + Icons.airline_seat_legroom_extra_sharp, + 'airline_seat_legroom_extra_rounded': + Icons.airline_seat_legroom_extra_rounded, + 'airline_seat_legroom_extra_outlined': + Icons.airline_seat_legroom_extra_outlined, + 'airline_seat_legroom_normal': Icons.airline_seat_legroom_normal, + 'airline_seat_legroom_normal_sharp': + Icons.airline_seat_legroom_normal_sharp, + 'airline_seat_legroom_normal_rounded': + Icons.airline_seat_legroom_normal_rounded, + 'airline_seat_legroom_normal_outlined': + Icons.airline_seat_legroom_normal_outlined, + 'airline_seat_legroom_reduced': Icons.airline_seat_legroom_reduced, + 'airline_seat_legroom_reduced_sharp': + Icons.airline_seat_legroom_reduced_sharp, + 'airline_seat_legroom_reduced_rounded': + Icons.airline_seat_legroom_reduced_rounded, + 'airline_seat_legroom_reduced_outlined': + Icons.airline_seat_legroom_reduced_outlined, + 'airline_seat_recline_extra': Icons.airline_seat_recline_extra, + 'airline_seat_recline_extra_sharp': + Icons.airline_seat_recline_extra_sharp, + 'airline_seat_recline_extra_rounded': + Icons.airline_seat_recline_extra_rounded, + 'airline_seat_recline_extra_outlined': + Icons.airline_seat_recline_extra_outlined, + 'airline_seat_recline_normal': Icons.airline_seat_recline_normal, + 'airline_seat_recline_normal_sharp': + Icons.airline_seat_recline_normal_sharp, + 'airline_seat_recline_normal_rounded': + Icons.airline_seat_recline_normal_rounded, + 'airline_seat_recline_normal_outlined': + Icons.airline_seat_recline_normal_outlined, + 'airplane_ticket': Icons.airplane_ticket, + 'airplane_ticket_sharp': Icons.airplane_ticket_sharp, + 'airplane_ticket_rounded': Icons.airplane_ticket_rounded, + 'airplane_ticket_outlined': Icons.airplane_ticket_outlined, + 'airplanemode_active': Icons.airplanemode_active, + 'airplanemode_active_sharp': Icons.airplanemode_active_sharp, + 'airplanemode_active_rounded': Icons.airplanemode_active_rounded, + 'airplanemode_active_outlined': Icons.airplanemode_active_outlined, + 'airplanemode_inactive': Icons.airplanemode_inactive, + 'airplanemode_inactive_sharp': Icons.airplanemode_inactive_sharp, + 'airplanemode_inactive_rounded': Icons.airplanemode_inactive_rounded, + 'airplanemode_inactive_outlined': Icons.airplanemode_inactive_outlined, + 'airplanemode_off': Icons.airplanemode_off, + 'airplanemode_off_sharp': Icons.airplanemode_off_sharp, + 'airplanemode_off_rounded': Icons.airplanemode_off_rounded, + 'airplanemode_off_outlined': Icons.airplanemode_off_outlined, + 'airplanemode_on': Icons.airplanemode_on, + 'airplanemode_on_sharp': Icons.airplanemode_on_sharp, + 'airplanemode_on_rounded': Icons.airplanemode_on_rounded, + 'airplanemode_on_outlined': Icons.airplanemode_on_outlined, + 'airplay': Icons.airplay, + 'airplay_sharp': Icons.airplay_sharp, + 'airplay_rounded': Icons.airplay_rounded, + 'airplay_outlined': Icons.airplay_outlined, + 'airport_shuttle': Icons.airport_shuttle, + 'airport_shuttle_sharp': Icons.airport_shuttle_sharp, + 'airport_shuttle_rounded': Icons.airport_shuttle_rounded, + 'airport_shuttle_outlined': Icons.airport_shuttle_outlined, + 'alarm': Icons.alarm, + 'alarm_sharp': Icons.alarm_sharp, + 'alarm_rounded': Icons.alarm_rounded, + 'alarm_outlined': Icons.alarm_outlined, + 'alarm_add': Icons.alarm_add, + 'alarm_add_sharp': Icons.alarm_add_sharp, + 'alarm_add_rounded': Icons.alarm_add_rounded, + 'alarm_add_outlined': Icons.alarm_add_outlined, + 'alarm_off': Icons.alarm_off, + 'alarm_off_sharp': Icons.alarm_off_sharp, + 'alarm_off_rounded': Icons.alarm_off_rounded, + 'alarm_off_outlined': Icons.alarm_off_outlined, + 'alarm_on': Icons.alarm_on, + 'alarm_on_sharp': Icons.alarm_on_sharp, + 'alarm_on_rounded': Icons.alarm_on_rounded, + 'alarm_on_outlined': Icons.alarm_on_outlined, + 'album': Icons.album, + 'album_sharp': Icons.album_sharp, + 'album_rounded': Icons.album_rounded, + 'album_outlined': Icons.album_outlined, + 'align_horizontal_center': Icons.align_horizontal_center, + 'align_horizontal_center_sharp': Icons.align_horizontal_center_sharp, + 'align_horizontal_center_rounded': + Icons.align_horizontal_center_rounded, + 'align_horizontal_center_outlined': + Icons.align_horizontal_center_outlined, + 'align_horizontal_left': Icons.align_horizontal_left, + 'align_horizontal_left_sharp': Icons.align_horizontal_left_sharp, + 'align_horizontal_left_rounded': Icons.align_horizontal_left_rounded, + 'align_horizontal_left_outlined': Icons.align_horizontal_left_outlined, + 'align_horizontal_right': Icons.align_horizontal_right, + 'align_horizontal_right_sharp': Icons.align_horizontal_right_sharp, + 'align_horizontal_right_rounded': Icons.align_horizontal_right_rounded, + 'align_horizontal_right_outlined': + Icons.align_horizontal_right_outlined, + 'align_vertical_bottom': Icons.align_vertical_bottom, + 'align_vertical_bottom_sharp': Icons.align_vertical_bottom_sharp, + 'align_vertical_bottom_rounded': Icons.align_vertical_bottom_rounded, + 'align_vertical_bottom_outlined': Icons.align_vertical_bottom_outlined, + 'align_vertical_center': Icons.align_vertical_center, + 'align_vertical_center_sharp': Icons.align_vertical_center_sharp, + 'align_vertical_center_rounded': Icons.align_vertical_center_rounded, + 'align_vertical_center_outlined': Icons.align_vertical_center_outlined, + 'align_vertical_top': Icons.align_vertical_top, + 'align_vertical_top_sharp': Icons.align_vertical_top_sharp, + 'align_vertical_top_rounded': Icons.align_vertical_top_rounded, + 'align_vertical_top_outlined': Icons.align_vertical_top_outlined, + 'all_inbox': Icons.all_inbox, + 'all_inbox_sharp': Icons.all_inbox_sharp, + 'all_inbox_rounded': Icons.all_inbox_rounded, + 'all_inbox_outlined': Icons.all_inbox_outlined, + 'all_inclusive': Icons.all_inclusive, + 'all_inclusive_sharp': Icons.all_inclusive_sharp, + 'all_inclusive_rounded': Icons.all_inclusive_rounded, + 'all_inclusive_outlined': Icons.all_inclusive_outlined, + 'all_out': Icons.all_out, + 'all_out_sharp': Icons.all_out_sharp, + 'all_out_rounded': Icons.all_out_rounded, + 'all_out_outlined': Icons.all_out_outlined, + 'alt_route': Icons.alt_route, + 'alt_route_sharp': Icons.alt_route_sharp, + 'alt_route_rounded': Icons.alt_route_rounded, + 'alt_route_outlined': Icons.alt_route_outlined, + 'alternate_email': Icons.alternate_email, + 'alternate_email_sharp': Icons.alternate_email_sharp, + 'alternate_email_rounded': Icons.alternate_email_rounded, + 'alternate_email_outlined': Icons.alternate_email_outlined, + 'amp_stories': Icons.amp_stories, + 'amp_stories_sharp': Icons.amp_stories_sharp, + 'amp_stories_rounded': Icons.amp_stories_rounded, + 'amp_stories_outlined': Icons.amp_stories_outlined, + 'analytics': Icons.analytics, + 'analytics_sharp': Icons.analytics_sharp, + 'analytics_rounded': Icons.analytics_rounded, + 'analytics_outlined': Icons.analytics_outlined, + 'anchor': Icons.anchor, + 'anchor_sharp': Icons.anchor_sharp, + 'anchor_rounded': Icons.anchor_rounded, + 'anchor_outlined': Icons.anchor_outlined, + 'android': Icons.android, + 'android_sharp': Icons.android_sharp, + 'android_rounded': Icons.android_rounded, + 'android_outlined': Icons.android_outlined, + 'animation': Icons.animation, + 'animation_sharp': Icons.animation_sharp, + 'animation_rounded': Icons.animation_rounded, + 'animation_outlined': Icons.animation_outlined, + 'announcement': Icons.announcement, + 'announcement_sharp': Icons.announcement_sharp, + 'announcement_rounded': Icons.announcement_rounded, + 'announcement_outlined': Icons.announcement_outlined, + 'aod': Icons.aod, + 'aod_sharp': Icons.aod_sharp, + 'aod_rounded': Icons.aod_rounded, + 'aod_outlined': Icons.aod_outlined, + 'apartment': Icons.apartment, + 'apartment_sharp': Icons.apartment_sharp, + 'apartment_rounded': Icons.apartment_rounded, + 'apartment_outlined': Icons.apartment_outlined, + 'api': Icons.api, + 'api_sharp': Icons.api_sharp, + 'api_rounded': Icons.api_rounded, + 'api_outlined': Icons.api_outlined, + 'app_blocking': Icons.app_blocking, + 'app_blocking_sharp': Icons.app_blocking_sharp, + 'app_blocking_rounded': Icons.app_blocking_rounded, + 'app_blocking_outlined': Icons.app_blocking_outlined, + 'app_registration': Icons.app_registration, + 'app_registration_sharp': Icons.app_registration_sharp, + 'app_registration_rounded': Icons.app_registration_rounded, + 'app_registration_outlined': Icons.app_registration_outlined, + 'app_settings_alt': Icons.app_settings_alt, + 'app_settings_alt_sharp': Icons.app_settings_alt_sharp, + 'app_settings_alt_rounded': Icons.app_settings_alt_rounded, + 'app_settings_alt_outlined': Icons.app_settings_alt_outlined, + 'approval': Icons.approval, + 'approval_sharp': Icons.approval_sharp, + 'approval_rounded': Icons.approval_rounded, + 'approval_outlined': Icons.approval_outlined, + 'apps': Icons.apps, + 'apps_sharp': Icons.apps_sharp, + 'apps_rounded': Icons.apps_rounded, + 'apps_outlined': Icons.apps_outlined, + 'architecture': Icons.architecture, + 'architecture_sharp': Icons.architecture_sharp, + 'architecture_rounded': Icons.architecture_rounded, + 'architecture_outlined': Icons.architecture_outlined, + 'archive': Icons.archive, + 'archive_sharp': Icons.archive_sharp, + 'archive_rounded': Icons.archive_rounded, + 'archive_outlined': Icons.archive_outlined, + 'arrow_back': Icons.arrow_back, + 'arrow_back_sharp': Icons.arrow_back_sharp, + 'arrow_back_rounded': Icons.arrow_back_rounded, + 'arrow_back_outlined': Icons.arrow_back_outlined, + 'arrow_back_ios': Icons.arrow_back_ios, + 'arrow_back_ios_sharp': Icons.arrow_back_ios_sharp, + 'arrow_back_ios_rounded': Icons.arrow_back_ios_rounded, + 'arrow_back_ios_outlined': Icons.arrow_back_ios_outlined, + 'arrow_back_ios_new': Icons.arrow_back_ios_new, + 'arrow_back_ios_new_sharp': Icons.arrow_back_ios_new_sharp, + 'arrow_back_ios_new_rounded': Icons.arrow_back_ios_new_rounded, + 'arrow_back_ios_new_outlined': Icons.arrow_back_ios_new_outlined, + 'arrow_circle_down': Icons.arrow_circle_down, + 'arrow_circle_down_sharp': Icons.arrow_circle_down_sharp, + 'arrow_circle_down_rounded': Icons.arrow_circle_down_rounded, + 'arrow_circle_down_outlined': Icons.arrow_circle_down_outlined, + 'arrow_circle_up': Icons.arrow_circle_up, + 'arrow_circle_up_sharp': Icons.arrow_circle_up_sharp, + 'arrow_circle_up_rounded': Icons.arrow_circle_up_rounded, + 'arrow_circle_up_outlined': Icons.arrow_circle_up_outlined, + 'arrow_downward': Icons.arrow_downward, + 'arrow_downward_sharp': Icons.arrow_downward_sharp, + 'arrow_downward_rounded': Icons.arrow_downward_rounded, + 'arrow_downward_outlined': Icons.arrow_downward_outlined, + 'arrow_drop_down': Icons.arrow_drop_down, + 'arrow_drop_down_sharp': Icons.arrow_drop_down_sharp, + 'arrow_drop_down_rounded': Icons.arrow_drop_down_rounded, + 'arrow_drop_down_outlined': Icons.arrow_drop_down_outlined, + 'arrow_drop_down_circle': Icons.arrow_drop_down_circle, + 'arrow_drop_down_circle_sharp': Icons.arrow_drop_down_circle_sharp, + 'arrow_drop_down_circle_rounded': Icons.arrow_drop_down_circle_rounded, + 'arrow_drop_down_circle_outlined': + Icons.arrow_drop_down_circle_outlined, + 'arrow_drop_up': Icons.arrow_drop_up, + 'arrow_drop_up_sharp': Icons.arrow_drop_up_sharp, + 'arrow_drop_up_rounded': Icons.arrow_drop_up_rounded, + 'arrow_drop_up_outlined': Icons.arrow_drop_up_outlined, + 'arrow_forward': Icons.arrow_forward, + 'arrow_forward_sharp': Icons.arrow_forward_sharp, + 'arrow_forward_rounded': Icons.arrow_forward_rounded, + 'arrow_forward_outlined': Icons.arrow_forward_outlined, + 'arrow_forward_ios': Icons.arrow_forward_ios, + 'arrow_forward_ios_sharp': Icons.arrow_forward_ios_sharp, + 'arrow_forward_ios_rounded': Icons.arrow_forward_ios_rounded, + 'arrow_forward_ios_outlined': Icons.arrow_forward_ios_outlined, + 'arrow_left': Icons.arrow_left, + 'arrow_left_sharp': Icons.arrow_left_sharp, + 'arrow_left_rounded': Icons.arrow_left_rounded, + 'arrow_left_outlined': Icons.arrow_left_outlined, + 'arrow_right': Icons.arrow_right, + 'arrow_right_sharp': Icons.arrow_right_sharp, + 'arrow_right_rounded': Icons.arrow_right_rounded, + 'arrow_right_outlined': Icons.arrow_right_outlined, + 'arrow_right_alt': Icons.arrow_right_alt, + 'arrow_right_alt_sharp': Icons.arrow_right_alt_sharp, + 'arrow_right_alt_rounded': Icons.arrow_right_alt_rounded, + 'arrow_right_alt_outlined': Icons.arrow_right_alt_outlined, + 'arrow_upward': Icons.arrow_upward, + 'arrow_upward_sharp': Icons.arrow_upward_sharp, + 'arrow_upward_rounded': Icons.arrow_upward_rounded, + 'arrow_upward_outlined': Icons.arrow_upward_outlined, + 'art_track': Icons.art_track, + 'art_track_sharp': Icons.art_track_sharp, + 'art_track_rounded': Icons.art_track_rounded, + 'art_track_outlined': Icons.art_track_outlined, + 'article': Icons.article, + 'article_sharp': Icons.article_sharp, + 'article_rounded': Icons.article_rounded, + 'article_outlined': Icons.article_outlined, + 'aspect_ratio': Icons.aspect_ratio, + 'aspect_ratio_sharp': Icons.aspect_ratio_sharp, + 'aspect_ratio_rounded': Icons.aspect_ratio_rounded, + 'aspect_ratio_outlined': Icons.aspect_ratio_outlined, + 'assessment': Icons.assessment, + 'assessment_sharp': Icons.assessment_sharp, + 'assessment_rounded': Icons.assessment_rounded, + 'assessment_outlined': Icons.assessment_outlined, + 'assignment': Icons.assignment, + 'assignment_sharp': Icons.assignment_sharp, + 'assignment_rounded': Icons.assignment_rounded, + 'assignment_outlined': Icons.assignment_outlined, + 'assignment_ind': Icons.assignment_ind, + 'assignment_ind_sharp': Icons.assignment_ind_sharp, + 'assignment_ind_rounded': Icons.assignment_ind_rounded, + 'assignment_ind_outlined': Icons.assignment_ind_outlined, + 'assignment_late': Icons.assignment_late, + 'assignment_late_sharp': Icons.assignment_late_sharp, + 'assignment_late_rounded': Icons.assignment_late_rounded, + 'assignment_late_outlined': Icons.assignment_late_outlined, + 'assignment_return': Icons.assignment_return, + 'assignment_return_sharp': Icons.assignment_return_sharp, + 'assignment_return_rounded': Icons.assignment_return_rounded, + 'assignment_return_outlined': Icons.assignment_return_outlined, + 'assignment_returned': Icons.assignment_returned, + 'assignment_returned_sharp': Icons.assignment_returned_sharp, + 'assignment_returned_rounded': Icons.assignment_returned_rounded, + 'assignment_returned_outlined': Icons.assignment_returned_outlined, + 'assignment_turned_in': Icons.assignment_turned_in, + 'assignment_turned_in_sharp': Icons.assignment_turned_in_sharp, + 'assignment_turned_in_rounded': Icons.assignment_turned_in_rounded, + 'assignment_turned_in_outlined': Icons.assignment_turned_in_outlined, + 'assistant': Icons.assistant, + 'assistant_sharp': Icons.assistant_sharp, + 'assistant_rounded': Icons.assistant_rounded, + 'assistant_outlined': Icons.assistant_outlined, + 'assistant_direction': Icons.assistant_direction, + 'assistant_direction_sharp': Icons.assistant_direction_sharp, + 'assistant_direction_rounded': Icons.assistant_direction_rounded, + 'assistant_direction_outlined': Icons.assistant_direction_outlined, + 'assistant_navigation': Icons.assistant_navigation, + 'assistant_photo': Icons.assistant_photo, + 'assistant_photo_sharp': Icons.assistant_photo_sharp, + 'assistant_photo_rounded': Icons.assistant_photo_rounded, + 'assistant_photo_outlined': Icons.assistant_photo_outlined, + 'atm': Icons.atm, + 'atm_sharp': Icons.atm_sharp, + 'atm_rounded': Icons.atm_rounded, + 'atm_outlined': Icons.atm_outlined, + 'attach_email': Icons.attach_email, + 'attach_email_sharp': Icons.attach_email_sharp, + 'attach_email_rounded': Icons.attach_email_rounded, + 'attach_email_outlined': Icons.attach_email_outlined, + 'attach_file': Icons.attach_file, + 'attach_file_sharp': Icons.attach_file_sharp, + 'attach_file_rounded': Icons.attach_file_rounded, + 'attach_file_outlined': Icons.attach_file_outlined, + 'attach_money': Icons.attach_money, + 'attach_money_sharp': Icons.attach_money_sharp, + 'attach_money_rounded': Icons.attach_money_rounded, + 'attach_money_outlined': Icons.attach_money_outlined, + 'attachment': Icons.attachment, + 'attachment_sharp': Icons.attachment_sharp, + 'attachment_rounded': Icons.attachment_rounded, + 'attachment_outlined': Icons.attachment_outlined, + 'attractions': Icons.attractions, + 'attractions_sharp': Icons.attractions_sharp, + 'attractions_rounded': Icons.attractions_rounded, + 'attractions_outlined': Icons.attractions_outlined, + 'attribution': Icons.attribution, + 'attribution_sharp': Icons.attribution_sharp, + 'attribution_rounded': Icons.attribution_rounded, + 'attribution_outlined': Icons.attribution_outlined, + 'audiotrack': Icons.audiotrack, + 'audiotrack_sharp': Icons.audiotrack_sharp, + 'audiotrack_rounded': Icons.audiotrack_rounded, + 'audiotrack_outlined': Icons.audiotrack_outlined, + 'auto_awesome': Icons.auto_awesome, + 'auto_awesome_sharp': Icons.auto_awesome_sharp, + 'auto_awesome_rounded': Icons.auto_awesome_rounded, + 'auto_awesome_outlined': Icons.auto_awesome_outlined, + 'auto_awesome_mosaic': Icons.auto_awesome_mosaic, + 'auto_awesome_mosaic_sharp': Icons.auto_awesome_mosaic_sharp, + 'auto_awesome_mosaic_rounded': Icons.auto_awesome_mosaic_rounded, + 'auto_awesome_mosaic_outlined': Icons.auto_awesome_mosaic_outlined, + 'auto_awesome_motion': Icons.auto_awesome_motion, + 'auto_awesome_motion_sharp': Icons.auto_awesome_motion_sharp, + 'auto_awesome_motion_rounded': Icons.auto_awesome_motion_rounded, + 'auto_awesome_motion_outlined': Icons.auto_awesome_motion_outlined, + 'auto_delete': Icons.auto_delete, + 'auto_delete_sharp': Icons.auto_delete_sharp, + 'auto_delete_rounded': Icons.auto_delete_rounded, + 'auto_delete_outlined': Icons.auto_delete_outlined, + 'auto_fix_high': Icons.auto_fix_high, + 'auto_fix_high_sharp': Icons.auto_fix_high_sharp, + 'auto_fix_high_rounded': Icons.auto_fix_high_rounded, + 'auto_fix_high_outlined': Icons.auto_fix_high_outlined, + 'auto_fix_normal': Icons.auto_fix_normal, + 'auto_fix_normal_sharp': Icons.auto_fix_normal_sharp, + 'auto_fix_normal_rounded': Icons.auto_fix_normal_rounded, + 'auto_fix_normal_outlined': Icons.auto_fix_normal_outlined, + 'auto_fix_off': Icons.auto_fix_off, + 'auto_fix_off_sharp': Icons.auto_fix_off_sharp, + 'auto_fix_off_rounded': Icons.auto_fix_off_rounded, + 'auto_fix_off_outlined': Icons.auto_fix_off_outlined, + 'auto_graph': Icons.auto_graph, + 'auto_graph_sharp': Icons.auto_graph_sharp, + 'auto_graph_rounded': Icons.auto_graph_rounded, + 'auto_graph_outlined': Icons.auto_graph_outlined, + 'auto_stories': Icons.auto_stories, + 'auto_stories_sharp': Icons.auto_stories_sharp, + 'auto_stories_rounded': Icons.auto_stories_rounded, + 'auto_stories_outlined': Icons.auto_stories_outlined, + 'autofps_select': Icons.autofps_select, + 'autofps_select_sharp': Icons.autofps_select_sharp, + 'autofps_select_rounded': Icons.autofps_select_rounded, + 'autofps_select_outlined': Icons.autofps_select_outlined, + 'autorenew': Icons.autorenew, + 'autorenew_sharp': Icons.autorenew_sharp, + 'autorenew_rounded': Icons.autorenew_rounded, + 'autorenew_outlined': Icons.autorenew_outlined, + 'av_timer': Icons.av_timer, + 'av_timer_sharp': Icons.av_timer_sharp, + 'av_timer_rounded': Icons.av_timer_rounded, + 'av_timer_outlined': Icons.av_timer_outlined, + 'baby_changing_station': Icons.baby_changing_station, + 'baby_changing_station_sharp': Icons.baby_changing_station_sharp, + 'baby_changing_station_rounded': Icons.baby_changing_station_rounded, + 'baby_changing_station_outlined': Icons.baby_changing_station_outlined, + 'backpack': Icons.backpack, + 'backpack_sharp': Icons.backpack_sharp, + 'backpack_rounded': Icons.backpack_rounded, + 'backpack_outlined': Icons.backpack_outlined, + 'backspace': Icons.backspace, + 'backspace_sharp': Icons.backspace_sharp, + 'backspace_rounded': Icons.backspace_rounded, + 'backspace_outlined': Icons.backspace_outlined, + 'backup': Icons.backup, + 'backup_sharp': Icons.backup_sharp, + 'backup_rounded': Icons.backup_rounded, + 'backup_outlined': Icons.backup_outlined, + 'backup_table': Icons.backup_table, + 'backup_table_sharp': Icons.backup_table_sharp, + 'backup_table_rounded': Icons.backup_table_rounded, + 'backup_table_outlined': Icons.backup_table_outlined, + 'badge': Icons.badge, + 'badge_sharp': Icons.badge_sharp, + 'badge_rounded': Icons.badge_rounded, + 'badge_outlined': Icons.badge_outlined, + 'bakery_dining': Icons.bakery_dining, + 'bakery_dining_sharp': Icons.bakery_dining_sharp, + 'bakery_dining_rounded': Icons.bakery_dining_rounded, + 'bakery_dining_outlined': Icons.bakery_dining_outlined, + 'balcony': Icons.balcony, + 'balcony_sharp': Icons.balcony_sharp, + 'balcony_rounded': Icons.balcony_rounded, + 'balcony_outlined': Icons.balcony_outlined, + 'ballot': Icons.ballot, + 'ballot_sharp': Icons.ballot_sharp, + 'ballot_rounded': Icons.ballot_rounded, + 'ballot_outlined': Icons.ballot_outlined, + 'bar_chart': Icons.bar_chart, + 'bar_chart_sharp': Icons.bar_chart_sharp, + 'bar_chart_rounded': Icons.bar_chart_rounded, + 'bar_chart_outlined': Icons.bar_chart_outlined, + 'batch_prediction': Icons.batch_prediction, + 'batch_prediction_sharp': Icons.batch_prediction_sharp, + 'batch_prediction_rounded': Icons.batch_prediction_rounded, + 'batch_prediction_outlined': Icons.batch_prediction_outlined, + 'bathroom': Icons.bathroom, + 'bathroom_sharp': Icons.bathroom_sharp, + 'bathroom_rounded': Icons.bathroom_rounded, + 'bathroom_outlined': Icons.bathroom_outlined, + 'bathtub': Icons.bathtub, + 'bathtub_sharp': Icons.bathtub_sharp, + 'bathtub_rounded': Icons.bathtub_rounded, + 'bathtub_outlined': Icons.bathtub_outlined, + 'battery_alert': Icons.battery_alert, + 'battery_alert_sharp': Icons.battery_alert_sharp, + 'battery_alert_rounded': Icons.battery_alert_rounded, + 'battery_alert_outlined': Icons.battery_alert_outlined, + 'battery_charging_full': Icons.battery_charging_full, + 'battery_charging_full_sharp': Icons.battery_charging_full_sharp, + 'battery_charging_full_rounded': Icons.battery_charging_full_rounded, + 'battery_charging_full_outlined': Icons.battery_charging_full_outlined, + 'battery_full': Icons.battery_full, + 'battery_full_sharp': Icons.battery_full_sharp, + 'battery_full_rounded': Icons.battery_full_rounded, + 'battery_full_outlined': Icons.battery_full_outlined, + 'battery_saver': Icons.battery_saver, + 'battery_saver_sharp': Icons.battery_saver_sharp, + 'battery_saver_rounded': Icons.battery_saver_rounded, + 'battery_saver_outlined': Icons.battery_saver_outlined, + 'battery_std': Icons.battery_std, + 'battery_std_sharp': Icons.battery_std_sharp, + 'battery_std_rounded': Icons.battery_std_rounded, + 'battery_std_outlined': Icons.battery_std_outlined, + 'battery_unknown': Icons.battery_unknown, + 'battery_unknown_sharp': Icons.battery_unknown_sharp, + 'battery_unknown_rounded': Icons.battery_unknown_rounded, + 'battery_unknown_outlined': Icons.battery_unknown_outlined, + 'beach_access': Icons.beach_access, + 'beach_access_sharp': Icons.beach_access_sharp, + 'beach_access_rounded': Icons.beach_access_rounded, + 'beach_access_outlined': Icons.beach_access_outlined, + 'bed': Icons.bed, + 'bed_sharp': Icons.bed_sharp, + 'bed_rounded': Icons.bed_rounded, + 'bed_outlined': Icons.bed_outlined, + 'bedroom_baby': Icons.bedroom_baby, + 'bedroom_baby_sharp': Icons.bedroom_baby_sharp, + 'bedroom_baby_rounded': Icons.bedroom_baby_rounded, + 'bedroom_baby_outlined': Icons.bedroom_baby_outlined, + 'bedroom_child': Icons.bedroom_child, + 'bedroom_child_sharp': Icons.bedroom_child_sharp, + 'bedroom_child_rounded': Icons.bedroom_child_rounded, + 'bedroom_child_outlined': Icons.bedroom_child_outlined, + 'bedroom_parent': Icons.bedroom_parent, + 'bedroom_parent_sharp': Icons.bedroom_parent_sharp, + 'bedroom_parent_rounded': Icons.bedroom_parent_rounded, + 'bedroom_parent_outlined': Icons.bedroom_parent_outlined, + 'bedtime': Icons.bedtime, + 'bedtime_sharp': Icons.bedtime_sharp, + 'bedtime_rounded': Icons.bedtime_rounded, + 'bedtime_outlined': Icons.bedtime_outlined, + 'beenhere': Icons.beenhere, + 'beenhere_sharp': Icons.beenhere_sharp, + 'beenhere_rounded': Icons.beenhere_rounded, + 'beenhere_outlined': Icons.beenhere_outlined, + 'bento': Icons.bento, + 'bento_sharp': Icons.bento_sharp, + 'bento_rounded': Icons.bento_rounded, + 'bento_outlined': Icons.bento_outlined, + 'bike_scooter': Icons.bike_scooter, + 'bike_scooter_sharp': Icons.bike_scooter_sharp, + 'bike_scooter_rounded': Icons.bike_scooter_rounded, + 'bike_scooter_outlined': Icons.bike_scooter_outlined, + 'biotech': Icons.biotech, + 'biotech_sharp': Icons.biotech_sharp, + 'biotech_rounded': Icons.biotech_rounded, + 'biotech_outlined': Icons.biotech_outlined, + 'blender': Icons.blender, + 'blender_sharp': Icons.blender_sharp, + 'blender_rounded': Icons.blender_rounded, + 'blender_outlined': Icons.blender_outlined, + 'block': Icons.block, + 'block_sharp': Icons.block_sharp, + 'block_rounded': Icons.block_rounded, + 'block_outlined': Icons.block_outlined, + 'block_flipped': Icons.block_flipped, + 'bloodtype': Icons.bloodtype, + 'bloodtype_sharp': Icons.bloodtype_sharp, + 'bloodtype_rounded': Icons.bloodtype_rounded, + 'bloodtype_outlined': Icons.bloodtype_outlined, + 'bluetooth': Icons.bluetooth, + 'bluetooth_sharp': Icons.bluetooth_sharp, + 'bluetooth_rounded': Icons.bluetooth_rounded, + 'bluetooth_outlined': Icons.bluetooth_outlined, + 'bluetooth_audio': Icons.bluetooth_audio, + 'bluetooth_audio_sharp': Icons.bluetooth_audio_sharp, + 'bluetooth_audio_rounded': Icons.bluetooth_audio_rounded, + 'bluetooth_audio_outlined': Icons.bluetooth_audio_outlined, + 'bluetooth_connected': Icons.bluetooth_connected, + 'bluetooth_connected_sharp': Icons.bluetooth_connected_sharp, + 'bluetooth_connected_rounded': Icons.bluetooth_connected_rounded, + 'bluetooth_connected_outlined': Icons.bluetooth_connected_outlined, + 'bluetooth_disabled': Icons.bluetooth_disabled, + 'bluetooth_disabled_sharp': Icons.bluetooth_disabled_sharp, + 'bluetooth_disabled_rounded': Icons.bluetooth_disabled_rounded, + 'bluetooth_disabled_outlined': Icons.bluetooth_disabled_outlined, + 'bluetooth_drive': Icons.bluetooth_drive, + 'bluetooth_drive_sharp': Icons.bluetooth_drive_sharp, + 'bluetooth_drive_rounded': Icons.bluetooth_drive_rounded, + 'bluetooth_drive_outlined': Icons.bluetooth_drive_outlined, + 'bluetooth_searching': Icons.bluetooth_searching, + 'bluetooth_searching_sharp': Icons.bluetooth_searching_sharp, + 'bluetooth_searching_rounded': Icons.bluetooth_searching_rounded, + 'bluetooth_searching_outlined': Icons.bluetooth_searching_outlined, + 'blur_circular': Icons.blur_circular, + 'blur_circular_sharp': Icons.blur_circular_sharp, + 'blur_circular_rounded': Icons.blur_circular_rounded, + 'blur_circular_outlined': Icons.blur_circular_outlined, + 'blur_linear': Icons.blur_linear, + 'blur_linear_sharp': Icons.blur_linear_sharp, + 'blur_linear_rounded': Icons.blur_linear_rounded, + 'blur_linear_outlined': Icons.blur_linear_outlined, + 'blur_off': Icons.blur_off, + 'blur_off_sharp': Icons.blur_off_sharp, + 'blur_off_rounded': Icons.blur_off_rounded, + 'blur_off_outlined': Icons.blur_off_outlined, + 'blur_on': Icons.blur_on, + 'blur_on_sharp': Icons.blur_on_sharp, + 'blur_on_rounded': Icons.blur_on_rounded, + 'blur_on_outlined': Icons.blur_on_outlined, + 'bolt': Icons.bolt, + 'bolt_sharp': Icons.bolt_sharp, + 'bolt_rounded': Icons.bolt_rounded, + 'bolt_outlined': Icons.bolt_outlined, + 'book': Icons.book, + 'book_sharp': Icons.book_sharp, + 'book_rounded': Icons.book_rounded, + 'book_outlined': Icons.book_outlined, + 'book_online': Icons.book_online, + 'book_online_sharp': Icons.book_online_sharp, + 'book_online_rounded': Icons.book_online_rounded, + 'book_online_outlined': Icons.book_online_outlined, + 'bookmark': Icons.bookmark, + 'bookmark_sharp': Icons.bookmark_sharp, + 'bookmark_rounded': Icons.bookmark_rounded, + 'bookmark_outlined': Icons.bookmark_outlined, + 'bookmark_add': Icons.bookmark_add, + 'bookmark_add_sharp': Icons.bookmark_add_sharp, + 'bookmark_add_rounded': Icons.bookmark_add_rounded, + 'bookmark_add_outlined': Icons.bookmark_add_outlined, + 'bookmark_added': Icons.bookmark_added, + 'bookmark_added_sharp': Icons.bookmark_added_sharp, + 'bookmark_added_rounded': Icons.bookmark_added_rounded, + 'bookmark_added_outlined': Icons.bookmark_added_outlined, + 'bookmark_border': Icons.bookmark_border, + 'bookmark_border_sharp': Icons.bookmark_border_sharp, + 'bookmark_border_rounded': Icons.bookmark_border_rounded, + 'bookmark_border_outlined': Icons.bookmark_border_outlined, + 'bookmark_outline': Icons.bookmark_outline, + 'bookmark_outline_sharp': Icons.bookmark_outline_sharp, + 'bookmark_outline_rounded': Icons.bookmark_outline_rounded, + 'bookmark_outline_outlined': Icons.bookmark_outline_outlined, + 'bookmark_remove': Icons.bookmark_remove, + 'bookmark_remove_sharp': Icons.bookmark_remove_sharp, + 'bookmark_remove_rounded': Icons.bookmark_remove_rounded, + 'bookmark_remove_outlined': Icons.bookmark_remove_outlined, + 'bookmarks': Icons.bookmarks, + 'bookmarks_sharp': Icons.bookmarks_sharp, + 'bookmarks_rounded': Icons.bookmarks_rounded, + 'bookmarks_outlined': Icons.bookmarks_outlined, + 'border_all': Icons.border_all, + 'border_all_sharp': Icons.border_all_sharp, + 'border_all_rounded': Icons.border_all_rounded, + 'border_all_outlined': Icons.border_all_outlined, + 'border_bottom': Icons.border_bottom, + 'border_bottom_sharp': Icons.border_bottom_sharp, + 'border_bottom_rounded': Icons.border_bottom_rounded, + 'border_bottom_outlined': Icons.border_bottom_outlined, + 'border_clear': Icons.border_clear, + 'border_clear_sharp': Icons.border_clear_sharp, + 'border_clear_rounded': Icons.border_clear_rounded, + 'border_clear_outlined': Icons.border_clear_outlined, + 'border_color': Icons.border_color, + 'border_color_sharp': Icons.border_color_sharp, + 'border_color_rounded': Icons.border_color_rounded, + 'border_color_outlined': Icons.border_color_outlined, + 'border_horizontal': Icons.border_horizontal, + 'border_horizontal_sharp': Icons.border_horizontal_sharp, + 'border_horizontal_rounded': Icons.border_horizontal_rounded, + 'border_horizontal_outlined': Icons.border_horizontal_outlined, + 'border_inner': Icons.border_inner, + 'border_inner_sharp': Icons.border_inner_sharp, + 'border_inner_rounded': Icons.border_inner_rounded, + 'border_inner_outlined': Icons.border_inner_outlined, + 'border_left': Icons.border_left, + 'border_left_sharp': Icons.border_left_sharp, + 'border_left_rounded': Icons.border_left_rounded, + 'border_left_outlined': Icons.border_left_outlined, + 'border_outer': Icons.border_outer, + 'border_outer_sharp': Icons.border_outer_sharp, + 'border_outer_rounded': Icons.border_outer_rounded, + 'border_outer_outlined': Icons.border_outer_outlined, + 'border_right': Icons.border_right, + 'border_right_sharp': Icons.border_right_sharp, + 'border_right_rounded': Icons.border_right_rounded, + 'border_right_outlined': Icons.border_right_outlined, + 'border_style': Icons.border_style, + 'border_style_sharp': Icons.border_style_sharp, + 'border_style_rounded': Icons.border_style_rounded, + 'border_style_outlined': Icons.border_style_outlined, + 'border_top': Icons.border_top, + 'border_top_sharp': Icons.border_top_sharp, + 'border_top_rounded': Icons.border_top_rounded, + 'border_top_outlined': Icons.border_top_outlined, + 'border_vertical': Icons.border_vertical, + 'border_vertical_sharp': Icons.border_vertical_sharp, + 'border_vertical_rounded': Icons.border_vertical_rounded, + 'border_vertical_outlined': Icons.border_vertical_outlined, + 'branding_watermark': Icons.branding_watermark, + 'branding_watermark_sharp': Icons.branding_watermark_sharp, + 'branding_watermark_rounded': Icons.branding_watermark_rounded, + 'branding_watermark_outlined': Icons.branding_watermark_outlined, + 'breakfast_dining': Icons.breakfast_dining, + 'breakfast_dining_sharp': Icons.breakfast_dining_sharp, + 'breakfast_dining_rounded': Icons.breakfast_dining_rounded, + 'breakfast_dining_outlined': Icons.breakfast_dining_outlined, + 'brightness_1': Icons.brightness_1, + 'brightness_1_sharp': Icons.brightness_1_sharp, + 'brightness_1_rounded': Icons.brightness_1_rounded, + 'brightness_1_outlined': Icons.brightness_1_outlined, + 'brightness_2': Icons.brightness_2, + 'brightness_2_sharp': Icons.brightness_2_sharp, + 'brightness_2_rounded': Icons.brightness_2_rounded, + 'brightness_2_outlined': Icons.brightness_2_outlined, + 'brightness_3': Icons.brightness_3, + 'brightness_3_sharp': Icons.brightness_3_sharp, + 'brightness_3_rounded': Icons.brightness_3_rounded, + 'brightness_3_outlined': Icons.brightness_3_outlined, + 'brightness_4': Icons.brightness_4, + 'brightness_4_sharp': Icons.brightness_4_sharp, + 'brightness_4_rounded': Icons.brightness_4_rounded, + 'brightness_4_outlined': Icons.brightness_4_outlined, + 'brightness_5': Icons.brightness_5, + 'brightness_5_sharp': Icons.brightness_5_sharp, + 'brightness_5_rounded': Icons.brightness_5_rounded, + 'brightness_5_outlined': Icons.brightness_5_outlined, + 'brightness_6': Icons.brightness_6, + 'brightness_6_sharp': Icons.brightness_6_sharp, + 'brightness_6_rounded': Icons.brightness_6_rounded, + 'brightness_6_outlined': Icons.brightness_6_outlined, + 'brightness_7': Icons.brightness_7, + 'brightness_7_sharp': Icons.brightness_7_sharp, + 'brightness_7_rounded': Icons.brightness_7_rounded, + 'brightness_7_outlined': Icons.brightness_7_outlined, + 'brightness_auto': Icons.brightness_auto, + 'brightness_auto_sharp': Icons.brightness_auto_sharp, + 'brightness_auto_rounded': Icons.brightness_auto_rounded, + 'brightness_auto_outlined': Icons.brightness_auto_outlined, + 'brightness_high': Icons.brightness_high, + 'brightness_high_sharp': Icons.brightness_high_sharp, + 'brightness_high_rounded': Icons.brightness_high_rounded, + 'brightness_high_outlined': Icons.brightness_high_outlined, + 'brightness_low': Icons.brightness_low, + 'brightness_low_sharp': Icons.brightness_low_sharp, + 'brightness_low_rounded': Icons.brightness_low_rounded, + 'brightness_low_outlined': Icons.brightness_low_outlined, + 'brightness_medium': Icons.brightness_medium, + 'brightness_medium_sharp': Icons.brightness_medium_sharp, + 'brightness_medium_rounded': Icons.brightness_medium_rounded, + 'brightness_medium_outlined': Icons.brightness_medium_outlined, + 'broken_image': Icons.broken_image, + 'broken_image_sharp': Icons.broken_image_sharp, + 'broken_image_rounded': Icons.broken_image_rounded, + 'broken_image_outlined': Icons.broken_image_outlined, + 'browser_not_supported': Icons.browser_not_supported, + 'browser_not_supported_sharp': Icons.browser_not_supported_sharp, + 'browser_not_supported_rounded': Icons.browser_not_supported_rounded, + 'browser_not_supported_outlined': Icons.browser_not_supported_outlined, + 'brunch_dining': Icons.brunch_dining, + 'brunch_dining_sharp': Icons.brunch_dining_sharp, + 'brunch_dining_rounded': Icons.brunch_dining_rounded, + 'brunch_dining_outlined': Icons.brunch_dining_outlined, + 'brush': Icons.brush, + 'brush_sharp': Icons.brush_sharp, + 'brush_rounded': Icons.brush_rounded, + 'brush_outlined': Icons.brush_outlined, + 'bubble_chart': Icons.bubble_chart, + 'bubble_chart_sharp': Icons.bubble_chart_sharp, + 'bubble_chart_rounded': Icons.bubble_chart_rounded, + 'bubble_chart_outlined': Icons.bubble_chart_outlined, + 'bug_report': Icons.bug_report, + 'bug_report_sharp': Icons.bug_report_sharp, + 'bug_report_rounded': Icons.bug_report_rounded, + 'bug_report_outlined': Icons.bug_report_outlined, + 'build': Icons.build, + 'build_sharp': Icons.build_sharp, + 'build_rounded': Icons.build_rounded, + 'build_outlined': Icons.build_outlined, + 'build_circle': Icons.build_circle, + 'build_circle_sharp': Icons.build_circle_sharp, + 'build_circle_rounded': Icons.build_circle_rounded, + 'build_circle_outlined': Icons.build_circle_outlined, + 'bungalow': Icons.bungalow, + 'bungalow_sharp': Icons.bungalow_sharp, + 'bungalow_rounded': Icons.bungalow_rounded, + 'bungalow_outlined': Icons.bungalow_outlined, + 'burst_mode': Icons.burst_mode, + 'burst_mode_sharp': Icons.burst_mode_sharp, + 'burst_mode_rounded': Icons.burst_mode_rounded, + 'burst_mode_outlined': Icons.burst_mode_outlined, + 'bus_alert': Icons.bus_alert, + 'bus_alert_sharp': Icons.bus_alert_sharp, + 'bus_alert_rounded': Icons.bus_alert_rounded, + 'bus_alert_outlined': Icons.bus_alert_outlined, + 'business': Icons.business, + 'business_sharp': Icons.business_sharp, + 'business_rounded': Icons.business_rounded, + 'business_outlined': Icons.business_outlined, + 'business_center': Icons.business_center, + 'business_center_sharp': Icons.business_center_sharp, + 'business_center_rounded': Icons.business_center_rounded, + 'business_center_outlined': Icons.business_center_outlined, + 'cabin': Icons.cabin, + 'cabin_sharp': Icons.cabin_sharp, + 'cabin_rounded': Icons.cabin_rounded, + 'cabin_outlined': Icons.cabin_outlined, + 'cable': Icons.cable, + 'cable_sharp': Icons.cable_sharp, + 'cable_rounded': Icons.cable_rounded, + 'cable_outlined': Icons.cable_outlined, + 'cached': Icons.cached, + 'cached_sharp': Icons.cached_sharp, + 'cached_rounded': Icons.cached_rounded, + 'cached_outlined': Icons.cached_outlined, + 'cake': Icons.cake, + 'cake_sharp': Icons.cake_sharp, + 'cake_rounded': Icons.cake_rounded, + 'cake_outlined': Icons.cake_outlined, + 'calculate': Icons.calculate, + 'calculate_sharp': Icons.calculate_sharp, + 'calculate_rounded': Icons.calculate_rounded, + 'calculate_outlined': Icons.calculate_outlined, + 'calendar_today': Icons.calendar_today, + 'calendar_today_sharp': Icons.calendar_today_sharp, + 'calendar_today_rounded': Icons.calendar_today_rounded, + 'calendar_today_outlined': Icons.calendar_today_outlined, + 'calendar_view_day': Icons.calendar_view_day, + 'calendar_view_day_sharp': Icons.calendar_view_day_sharp, + 'calendar_view_day_rounded': Icons.calendar_view_day_rounded, + 'calendar_view_day_outlined': Icons.calendar_view_day_outlined, + 'calendar_view_month': Icons.calendar_view_month, + 'calendar_view_month_sharp': Icons.calendar_view_month_sharp, + 'calendar_view_month_rounded': Icons.calendar_view_month_rounded, + 'calendar_view_month_outlined': Icons.calendar_view_month_outlined, + 'calendar_view_week': Icons.calendar_view_week, + 'calendar_view_week_sharp': Icons.calendar_view_week_sharp, + 'calendar_view_week_rounded': Icons.calendar_view_week_rounded, + 'calendar_view_week_outlined': Icons.calendar_view_week_outlined, + 'call': Icons.call, + 'call_sharp': Icons.call_sharp, + 'call_rounded': Icons.call_rounded, + 'call_outlined': Icons.call_outlined, + 'call_end': Icons.call_end, + 'call_end_sharp': Icons.call_end_sharp, + 'call_end_rounded': Icons.call_end_rounded, + 'call_end_outlined': Icons.call_end_outlined, + 'call_made': Icons.call_made, + 'call_made_sharp': Icons.call_made_sharp, + 'call_made_rounded': Icons.call_made_rounded, + 'call_made_outlined': Icons.call_made_outlined, + 'call_merge': Icons.call_merge, + 'call_merge_sharp': Icons.call_merge_sharp, + 'call_merge_rounded': Icons.call_merge_rounded, + 'call_merge_outlined': Icons.call_merge_outlined, + 'call_missed': Icons.call_missed, + 'call_missed_sharp': Icons.call_missed_sharp, + 'call_missed_rounded': Icons.call_missed_rounded, + 'call_missed_outlined': Icons.call_missed_outlined, + 'call_missed_outgoing': Icons.call_missed_outgoing, + 'call_missed_outgoing_sharp': Icons.call_missed_outgoing_sharp, + 'call_missed_outgoing_rounded': Icons.call_missed_outgoing_rounded, + 'call_missed_outgoing_outlined': Icons.call_missed_outgoing_outlined, + 'call_received': Icons.call_received, + 'call_received_sharp': Icons.call_received_sharp, + 'call_received_rounded': Icons.call_received_rounded, + 'call_received_outlined': Icons.call_received_outlined, + 'call_split': Icons.call_split, + 'call_split_sharp': Icons.call_split_sharp, + 'call_split_rounded': Icons.call_split_rounded, + 'call_split_outlined': Icons.call_split_outlined, + 'call_to_action': Icons.call_to_action, + 'call_to_action_sharp': Icons.call_to_action_sharp, + 'call_to_action_rounded': Icons.call_to_action_rounded, + 'call_to_action_outlined': Icons.call_to_action_outlined, + 'camera': Icons.camera, + 'camera_sharp': Icons.camera_sharp, + 'camera_rounded': Icons.camera_rounded, + 'camera_outlined': Icons.camera_outlined, + 'camera_alt': Icons.camera_alt, + 'camera_alt_sharp': Icons.camera_alt_sharp, + 'camera_alt_rounded': Icons.camera_alt_rounded, + 'camera_alt_outlined': Icons.camera_alt_outlined, + 'camera_enhance': Icons.camera_enhance, + 'camera_enhance_sharp': Icons.camera_enhance_sharp, + 'camera_enhance_rounded': Icons.camera_enhance_rounded, + 'camera_enhance_outlined': Icons.camera_enhance_outlined, + 'camera_front': Icons.camera_front, + 'camera_front_sharp': Icons.camera_front_sharp, + 'camera_front_rounded': Icons.camera_front_rounded, + 'camera_front_outlined': Icons.camera_front_outlined, + 'camera_indoor': Icons.camera_indoor, + 'camera_indoor_sharp': Icons.camera_indoor_sharp, + 'camera_indoor_rounded': Icons.camera_indoor_rounded, + 'camera_indoor_outlined': Icons.camera_indoor_outlined, + 'camera_outdoor': Icons.camera_outdoor, + 'camera_outdoor_sharp': Icons.camera_outdoor_sharp, + 'camera_outdoor_rounded': Icons.camera_outdoor_rounded, + 'camera_outdoor_outlined': Icons.camera_outdoor_outlined, + 'camera_rear': Icons.camera_rear, + 'camera_rear_sharp': Icons.camera_rear_sharp, + 'camera_rear_rounded': Icons.camera_rear_rounded, + 'camera_rear_outlined': Icons.camera_rear_outlined, + 'camera_roll': Icons.camera_roll, + 'camera_roll_sharp': Icons.camera_roll_sharp, + 'camera_roll_rounded': Icons.camera_roll_rounded, + 'camera_roll_outlined': Icons.camera_roll_outlined, + 'cameraswitch': Icons.cameraswitch, + 'cameraswitch_sharp': Icons.cameraswitch_sharp, + 'cameraswitch_rounded': Icons.cameraswitch_rounded, + 'cameraswitch_outlined': Icons.cameraswitch_outlined, + 'campaign': Icons.campaign, + 'campaign_sharp': Icons.campaign_sharp, + 'campaign_rounded': Icons.campaign_rounded, + 'campaign_outlined': Icons.campaign_outlined, + 'cancel': Icons.cancel, + 'cancel_sharp': Icons.cancel_sharp, + 'cancel_rounded': Icons.cancel_rounded, + 'cancel_outlined': Icons.cancel_outlined, + 'cancel_presentation': Icons.cancel_presentation, + 'cancel_presentation_sharp': Icons.cancel_presentation_sharp, + 'cancel_presentation_rounded': Icons.cancel_presentation_rounded, + 'cancel_presentation_outlined': Icons.cancel_presentation_outlined, + 'cancel_schedule_send': Icons.cancel_schedule_send, + 'cancel_schedule_send_sharp': Icons.cancel_schedule_send_sharp, + 'cancel_schedule_send_rounded': Icons.cancel_schedule_send_rounded, + 'cancel_schedule_send_outlined': Icons.cancel_schedule_send_outlined, + 'car_rental': Icons.car_rental, + 'car_rental_sharp': Icons.car_rental_sharp, + 'car_rental_rounded': Icons.car_rental_rounded, + 'car_rental_outlined': Icons.car_rental_outlined, + 'car_repair': Icons.car_repair, + 'car_repair_sharp': Icons.car_repair_sharp, + 'car_repair_rounded': Icons.car_repair_rounded, + 'car_repair_outlined': Icons.car_repair_outlined, + 'card_giftcard': Icons.card_giftcard, + 'card_giftcard_sharp': Icons.card_giftcard_sharp, + 'card_giftcard_rounded': Icons.card_giftcard_rounded, + 'card_giftcard_outlined': Icons.card_giftcard_outlined, + 'card_membership': Icons.card_membership, + 'card_membership_sharp': Icons.card_membership_sharp, + 'card_membership_rounded': Icons.card_membership_rounded, + 'card_membership_outlined': Icons.card_membership_outlined, + 'card_travel': Icons.card_travel, + 'card_travel_sharp': Icons.card_travel_sharp, + 'card_travel_rounded': Icons.card_travel_rounded, + 'card_travel_outlined': Icons.card_travel_outlined, + 'carpenter': Icons.carpenter, + 'carpenter_sharp': Icons.carpenter_sharp, + 'carpenter_rounded': Icons.carpenter_rounded, + 'carpenter_outlined': Icons.carpenter_outlined, + 'cases': Icons.cases, + 'cases_sharp': Icons.cases_sharp, + 'cases_rounded': Icons.cases_rounded, + 'cases_outlined': Icons.cases_outlined, + 'casino': Icons.casino, + 'casino_sharp': Icons.casino_sharp, + 'casino_rounded': Icons.casino_rounded, + 'casino_outlined': Icons.casino_outlined, + 'cast': Icons.cast, + 'cast_sharp': Icons.cast_sharp, + 'cast_rounded': Icons.cast_rounded, + 'cast_outlined': Icons.cast_outlined, + 'cast_connected': Icons.cast_connected, + 'cast_connected_sharp': Icons.cast_connected_sharp, + 'cast_connected_rounded': Icons.cast_connected_rounded, + 'cast_connected_outlined': Icons.cast_connected_outlined, + 'cast_for_education': Icons.cast_for_education, + 'cast_for_education_sharp': Icons.cast_for_education_sharp, + 'cast_for_education_rounded': Icons.cast_for_education_rounded, + 'cast_for_education_outlined': Icons.cast_for_education_outlined, + 'catching_pokemon': Icons.catching_pokemon, + 'catching_pokemon_sharp': Icons.catching_pokemon_sharp, + 'catching_pokemon_rounded': Icons.catching_pokemon_rounded, + 'catching_pokemon_outlined': Icons.catching_pokemon_outlined, + 'category': Icons.category, + 'category_sharp': Icons.category_sharp, + 'category_rounded': Icons.category_rounded, + 'category_outlined': Icons.category_outlined, + 'celebration': Icons.celebration, + 'celebration_sharp': Icons.celebration_sharp, + 'celebration_rounded': Icons.celebration_rounded, + 'celebration_outlined': Icons.celebration_outlined, + 'cell_wifi': Icons.cell_wifi, + 'cell_wifi_sharp': Icons.cell_wifi_sharp, + 'cell_wifi_rounded': Icons.cell_wifi_rounded, + 'cell_wifi_outlined': Icons.cell_wifi_outlined, + 'center_focus_strong': Icons.center_focus_strong, + 'center_focus_strong_sharp': Icons.center_focus_strong_sharp, + 'center_focus_strong_rounded': Icons.center_focus_strong_rounded, + 'center_focus_strong_outlined': Icons.center_focus_strong_outlined, + 'center_focus_weak': Icons.center_focus_weak, + 'center_focus_weak_sharp': Icons.center_focus_weak_sharp, + 'center_focus_weak_rounded': Icons.center_focus_weak_rounded, + 'center_focus_weak_outlined': Icons.center_focus_weak_outlined, + 'chair': Icons.chair, + 'chair_sharp': Icons.chair_sharp, + 'chair_rounded': Icons.chair_rounded, + 'chair_outlined': Icons.chair_outlined, + 'chair_alt': Icons.chair_alt, + 'chair_alt_sharp': Icons.chair_alt_sharp, + 'chair_alt_rounded': Icons.chair_alt_rounded, + 'chair_alt_outlined': Icons.chair_alt_outlined, + 'chalet': Icons.chalet, + 'chalet_sharp': Icons.chalet_sharp, + 'chalet_rounded': Icons.chalet_rounded, + 'chalet_outlined': Icons.chalet_outlined, + 'change_circle': Icons.change_circle, + 'change_circle_sharp': Icons.change_circle_sharp, + 'change_circle_rounded': Icons.change_circle_rounded, + 'change_circle_outlined': Icons.change_circle_outlined, + 'change_history': Icons.change_history, + 'change_history_sharp': Icons.change_history_sharp, + 'change_history_rounded': Icons.change_history_rounded, + 'change_history_outlined': Icons.change_history_outlined, + 'charging_station': Icons.charging_station, + 'charging_station_sharp': Icons.charging_station_sharp, + 'charging_station_rounded': Icons.charging_station_rounded, + 'charging_station_outlined': Icons.charging_station_outlined, + 'chat': Icons.chat, + 'chat_sharp': Icons.chat_sharp, + 'chat_rounded': Icons.chat_rounded, + 'chat_outlined': Icons.chat_outlined, + 'chat_bubble': Icons.chat_bubble, + 'chat_bubble_sharp': Icons.chat_bubble_sharp, + 'chat_bubble_rounded': Icons.chat_bubble_rounded, + 'chat_bubble_outlined': Icons.chat_bubble_outlined, + 'chat_bubble_outline': Icons.chat_bubble_outline, + 'chat_bubble_outline_sharp': Icons.chat_bubble_outline_sharp, + 'chat_bubble_outline_rounded': Icons.chat_bubble_outline_rounded, + 'chat_bubble_outline_outlined': Icons.chat_bubble_outline_outlined, + 'check': Icons.check, + 'check_sharp': Icons.check_sharp, + 'check_rounded': Icons.check_rounded, + 'check_outlined': Icons.check_outlined, + 'check_box': Icons.check_box, + 'check_box_sharp': Icons.check_box_sharp, + 'check_box_rounded': Icons.check_box_rounded, + 'check_box_outlined': Icons.check_box_outlined, + 'check_box_outline_blank': Icons.check_box_outline_blank, + 'check_box_outline_blank_sharp': Icons.check_box_outline_blank_sharp, + 'check_box_outline_blank_rounded': + Icons.check_box_outline_blank_rounded, + 'check_box_outline_blank_outlined': + Icons.check_box_outline_blank_outlined, + 'check_circle': Icons.check_circle, + 'check_circle_sharp': Icons.check_circle_sharp, + 'check_circle_rounded': Icons.check_circle_rounded, + 'check_circle_outlined': Icons.check_circle_outlined, + 'check_circle_outline': Icons.check_circle_outline, + 'check_circle_outline_sharp': Icons.check_circle_outline_sharp, + 'check_circle_outline_rounded': Icons.check_circle_outline_rounded, + 'check_circle_outline_outlined': Icons.check_circle_outline_outlined, + 'checklist': Icons.checklist, + 'checklist_sharp': Icons.checklist_sharp, + 'checklist_rounded': Icons.checklist_rounded, + 'checklist_outlined': Icons.checklist_outlined, + 'checklist_rtl': Icons.checklist_rtl, + 'checklist_rtl_sharp': Icons.checklist_rtl_sharp, + 'checklist_rtl_rounded': Icons.checklist_rtl_rounded, + 'checklist_rtl_outlined': Icons.checklist_rtl_outlined, + 'checkroom': Icons.checkroom, + 'checkroom_sharp': Icons.checkroom_sharp, + 'checkroom_rounded': Icons.checkroom_rounded, + 'checkroom_outlined': Icons.checkroom_outlined, + 'chevron_left': Icons.chevron_left, + 'chevron_left_sharp': Icons.chevron_left_sharp, + 'chevron_left_rounded': Icons.chevron_left_rounded, + 'chevron_left_outlined': Icons.chevron_left_outlined, + 'chevron_right': Icons.chevron_right, + 'chevron_right_sharp': Icons.chevron_right_sharp, + 'chevron_right_rounded': Icons.chevron_right_rounded, + 'chevron_right_outlined': Icons.chevron_right_outlined, + 'child_care': Icons.child_care, + 'child_care_sharp': Icons.child_care_sharp, + 'child_care_rounded': Icons.child_care_rounded, + 'child_care_outlined': Icons.child_care_outlined, + 'child_friendly': Icons.child_friendly, + 'child_friendly_sharp': Icons.child_friendly_sharp, + 'child_friendly_rounded': Icons.child_friendly_rounded, + 'child_friendly_outlined': Icons.child_friendly_outlined, + 'chrome_reader_mode': Icons.chrome_reader_mode, + 'chrome_reader_mode_sharp': Icons.chrome_reader_mode_sharp, + 'chrome_reader_mode_rounded': Icons.chrome_reader_mode_rounded, + 'chrome_reader_mode_outlined': Icons.chrome_reader_mode_outlined, + 'circle': Icons.circle, + 'circle_sharp': Icons.circle_sharp, + 'circle_rounded': Icons.circle_rounded, + 'circle_outlined': Icons.circle_outlined, + 'circle_notifications': Icons.circle_notifications, + 'circle_notifications_sharp': Icons.circle_notifications_sharp, + 'circle_notifications_rounded': Icons.circle_notifications_rounded, + 'circle_notifications_outlined': Icons.circle_notifications_outlined, + 'class_': Icons.class_, + 'class__sharp': Icons.class__sharp, + 'class__rounded': Icons.class__rounded, + 'class__outlined': Icons.class__outlined, + 'clean_hands': Icons.clean_hands, + 'clean_hands_sharp': Icons.clean_hands_sharp, + 'clean_hands_rounded': Icons.clean_hands_rounded, + 'clean_hands_outlined': Icons.clean_hands_outlined, + 'cleaning_services': Icons.cleaning_services, + 'cleaning_services_sharp': Icons.cleaning_services_sharp, + 'cleaning_services_rounded': Icons.cleaning_services_rounded, + 'cleaning_services_outlined': Icons.cleaning_services_outlined, + 'clear': Icons.clear, + 'clear_sharp': Icons.clear_sharp, + 'clear_rounded': Icons.clear_rounded, + 'clear_outlined': Icons.clear_outlined, + 'clear_all': Icons.clear_all, + 'clear_all_sharp': Icons.clear_all_sharp, + 'clear_all_rounded': Icons.clear_all_rounded, + 'clear_all_outlined': Icons.clear_all_outlined, + 'close': Icons.close, + 'close_sharp': Icons.close_sharp, + 'close_rounded': Icons.close_rounded, + 'close_outlined': Icons.close_outlined, + 'close_fullscreen': Icons.close_fullscreen, + 'close_fullscreen_sharp': Icons.close_fullscreen_sharp, + 'close_fullscreen_rounded': Icons.close_fullscreen_rounded, + 'close_fullscreen_outlined': Icons.close_fullscreen_outlined, + 'closed_caption': Icons.closed_caption, + 'closed_caption_sharp': Icons.closed_caption_sharp, + 'closed_caption_rounded': Icons.closed_caption_rounded, + 'closed_caption_outlined': Icons.closed_caption_outlined, + 'closed_caption_disabled': Icons.closed_caption_disabled, + 'closed_caption_disabled_sharp': Icons.closed_caption_disabled_sharp, + 'closed_caption_disabled_rounded': + Icons.closed_caption_disabled_rounded, + 'closed_caption_disabled_outlined': + Icons.closed_caption_disabled_outlined, + 'closed_caption_off': Icons.closed_caption_off, + 'closed_caption_off_sharp': Icons.closed_caption_off_sharp, + 'closed_caption_off_rounded': Icons.closed_caption_off_rounded, + 'closed_caption_off_outlined': Icons.closed_caption_off_outlined, + 'cloud': Icons.cloud, + 'cloud_sharp': Icons.cloud_sharp, + 'cloud_rounded': Icons.cloud_rounded, + 'cloud_outlined': Icons.cloud_outlined, + 'cloud_circle': Icons.cloud_circle, + 'cloud_circle_sharp': Icons.cloud_circle_sharp, + 'cloud_circle_rounded': Icons.cloud_circle_rounded, + 'cloud_circle_outlined': Icons.cloud_circle_outlined, + 'cloud_done': Icons.cloud_done, + 'cloud_done_sharp': Icons.cloud_done_sharp, + 'cloud_done_rounded': Icons.cloud_done_rounded, + 'cloud_done_outlined': Icons.cloud_done_outlined, + 'cloud_download': Icons.cloud_download, + 'cloud_download_sharp': Icons.cloud_download_sharp, + 'cloud_download_rounded': Icons.cloud_download_rounded, + 'cloud_download_outlined': Icons.cloud_download_outlined, + 'cloud_off': Icons.cloud_off, + 'cloud_off_sharp': Icons.cloud_off_sharp, + 'cloud_off_rounded': Icons.cloud_off_rounded, + 'cloud_off_outlined': Icons.cloud_off_outlined, + 'cloud_queue': Icons.cloud_queue, + 'cloud_queue_sharp': Icons.cloud_queue_sharp, + 'cloud_queue_rounded': Icons.cloud_queue_rounded, + 'cloud_queue_outlined': Icons.cloud_queue_outlined, + 'cloud_upload': Icons.cloud_upload, + 'cloud_upload_sharp': Icons.cloud_upload_sharp, + 'cloud_upload_rounded': Icons.cloud_upload_rounded, + 'cloud_upload_outlined': Icons.cloud_upload_outlined, + 'code': Icons.code, + 'code_sharp': Icons.code_sharp, + 'code_rounded': Icons.code_rounded, + 'code_outlined': Icons.code_outlined, + 'code_off': Icons.code_off, + 'code_off_sharp': Icons.code_off_sharp, + 'code_off_rounded': Icons.code_off_rounded, + 'code_off_outlined': Icons.code_off_outlined, + 'coffee': Icons.coffee, + 'coffee_sharp': Icons.coffee_sharp, + 'coffee_rounded': Icons.coffee_rounded, + 'coffee_outlined': Icons.coffee_outlined, + 'coffee_maker': Icons.coffee_maker, + 'coffee_maker_sharp': Icons.coffee_maker_sharp, + 'coffee_maker_rounded': Icons.coffee_maker_rounded, + 'coffee_maker_outlined': Icons.coffee_maker_outlined, + 'collections': Icons.collections, + 'collections_sharp': Icons.collections_sharp, + 'collections_rounded': Icons.collections_rounded, + 'collections_outlined': Icons.collections_outlined, + 'collections_bookmark': Icons.collections_bookmark, + 'collections_bookmark_sharp': Icons.collections_bookmark_sharp, + 'collections_bookmark_rounded': Icons.collections_bookmark_rounded, + 'collections_bookmark_outlined': Icons.collections_bookmark_outlined, + 'color_lens': Icons.color_lens, + 'color_lens_sharp': Icons.color_lens_sharp, + 'color_lens_rounded': Icons.color_lens_rounded, + 'color_lens_outlined': Icons.color_lens_outlined, + 'colorize': Icons.colorize, + 'colorize_sharp': Icons.colorize_sharp, + 'colorize_rounded': Icons.colorize_rounded, + 'colorize_outlined': Icons.colorize_outlined, + 'comment': Icons.comment, + 'comment_sharp': Icons.comment_sharp, + 'comment_rounded': Icons.comment_rounded, + 'comment_outlined': Icons.comment_outlined, + 'comment_bank': Icons.comment_bank, + 'comment_bank_sharp': Icons.comment_bank_sharp, + 'comment_bank_rounded': Icons.comment_bank_rounded, + 'comment_bank_outlined': Icons.comment_bank_outlined, + 'commute': Icons.commute, + 'commute_sharp': Icons.commute_sharp, + 'commute_rounded': Icons.commute_rounded, + 'commute_outlined': Icons.commute_outlined, + 'compare': Icons.compare, + 'compare_sharp': Icons.compare_sharp, + 'compare_rounded': Icons.compare_rounded, + 'compare_outlined': Icons.compare_outlined, + 'compare_arrows': Icons.compare_arrows, + 'compare_arrows_sharp': Icons.compare_arrows_sharp, + 'compare_arrows_rounded': Icons.compare_arrows_rounded, + 'compare_arrows_outlined': Icons.compare_arrows_outlined, + 'compass_calibration': Icons.compass_calibration, + 'compass_calibration_sharp': Icons.compass_calibration_sharp, + 'compass_calibration_rounded': Icons.compass_calibration_rounded, + 'compass_calibration_outlined': Icons.compass_calibration_outlined, + 'compress': Icons.compress, + 'compress_sharp': Icons.compress_sharp, + 'compress_rounded': Icons.compress_rounded, + 'compress_outlined': Icons.compress_outlined, + 'computer': Icons.computer, + 'computer_sharp': Icons.computer_sharp, + 'computer_rounded': Icons.computer_rounded, + 'computer_outlined': Icons.computer_outlined, + 'confirmation_num': Icons.confirmation_num, + 'confirmation_num_sharp': Icons.confirmation_num_sharp, + 'confirmation_num_rounded': Icons.confirmation_num_rounded, + 'confirmation_num_outlined': Icons.confirmation_num_outlined, + 'confirmation_number': Icons.confirmation_number, + 'confirmation_number_sharp': Icons.confirmation_number_sharp, + 'confirmation_number_rounded': Icons.confirmation_number_rounded, + 'confirmation_number_outlined': Icons.confirmation_number_outlined, + 'connect_without_contact': Icons.connect_without_contact, + 'connect_without_contact_sharp': Icons.connect_without_contact_sharp, + 'connect_without_contact_rounded': + Icons.connect_without_contact_rounded, + 'connect_without_contact_outlined': + Icons.connect_without_contact_outlined, + 'connected_tv': Icons.connected_tv, + 'connected_tv_sharp': Icons.connected_tv_sharp, + 'connected_tv_rounded': Icons.connected_tv_rounded, + 'connected_tv_outlined': Icons.connected_tv_outlined, + 'construction': Icons.construction, + 'construction_sharp': Icons.construction_sharp, + 'construction_rounded': Icons.construction_rounded, + 'construction_outlined': Icons.construction_outlined, + 'contact_mail': Icons.contact_mail, + 'contact_mail_sharp': Icons.contact_mail_sharp, + 'contact_mail_rounded': Icons.contact_mail_rounded, + 'contact_mail_outlined': Icons.contact_mail_outlined, + 'contact_page': Icons.contact_page, + 'contact_page_sharp': Icons.contact_page_sharp, + 'contact_page_rounded': Icons.contact_page_rounded, + 'contact_page_outlined': Icons.contact_page_outlined, + 'contact_phone': Icons.contact_phone, + 'contact_phone_sharp': Icons.contact_phone_sharp, + 'contact_phone_rounded': Icons.contact_phone_rounded, + 'contact_phone_outlined': Icons.contact_phone_outlined, + 'contact_support': Icons.contact_support, + 'contact_support_sharp': Icons.contact_support_sharp, + 'contact_support_rounded': Icons.contact_support_rounded, + 'contact_support_outlined': Icons.contact_support_outlined, + 'contactless': Icons.contactless, + 'contactless_sharp': Icons.contactless_sharp, + 'contactless_rounded': Icons.contactless_rounded, + 'contactless_outlined': Icons.contactless_outlined, + 'contacts': Icons.contacts, + 'contacts_sharp': Icons.contacts_sharp, + 'contacts_rounded': Icons.contacts_rounded, + 'contacts_outlined': Icons.contacts_outlined, + 'content_copy': Icons.content_copy, + 'content_copy_sharp': Icons.content_copy_sharp, + 'content_copy_rounded': Icons.content_copy_rounded, + 'content_copy_outlined': Icons.content_copy_outlined, + 'content_cut': Icons.content_cut, + 'content_cut_sharp': Icons.content_cut_sharp, + 'content_cut_rounded': Icons.content_cut_rounded, + 'content_cut_outlined': Icons.content_cut_outlined, + 'content_paste': Icons.content_paste, + 'content_paste_sharp': Icons.content_paste_sharp, + 'content_paste_rounded': Icons.content_paste_rounded, + 'content_paste_outlined': Icons.content_paste_outlined, + 'content_paste_off': Icons.content_paste_off, + 'content_paste_off_sharp': Icons.content_paste_off_sharp, + 'content_paste_off_rounded': Icons.content_paste_off_rounded, + 'content_paste_off_outlined': Icons.content_paste_off_outlined, + 'control_camera': Icons.control_camera, + 'control_camera_sharp': Icons.control_camera_sharp, + 'control_camera_rounded': Icons.control_camera_rounded, + 'control_camera_outlined': Icons.control_camera_outlined, + 'control_point': Icons.control_point, + 'control_point_sharp': Icons.control_point_sharp, + 'control_point_rounded': Icons.control_point_rounded, + 'control_point_outlined': Icons.control_point_outlined, + 'control_point_duplicate': Icons.control_point_duplicate, + 'control_point_duplicate_sharp': Icons.control_point_duplicate_sharp, + 'control_point_duplicate_rounded': + Icons.control_point_duplicate_rounded, + 'control_point_duplicate_outlined': + Icons.control_point_duplicate_outlined, + 'copy': Icons.copy, + 'copy_sharp': Icons.copy_sharp, + 'copy_rounded': Icons.copy_rounded, + 'copy_outlined': Icons.copy_outlined, + 'copy_all': Icons.copy_all, + 'copy_all_sharp': Icons.copy_all_sharp, + 'copy_all_rounded': Icons.copy_all_rounded, + 'copy_all_outlined': Icons.copy_all_outlined, + 'copyright': Icons.copyright, + 'copyright_sharp': Icons.copyright_sharp, + 'copyright_rounded': Icons.copyright_rounded, + 'copyright_outlined': Icons.copyright_outlined, + 'coronavirus': Icons.coronavirus, + 'coronavirus_sharp': Icons.coronavirus_sharp, + 'coronavirus_rounded': Icons.coronavirus_rounded, + 'coronavirus_outlined': Icons.coronavirus_outlined, + 'corporate_fare': Icons.corporate_fare, + 'corporate_fare_sharp': Icons.corporate_fare_sharp, + 'corporate_fare_rounded': Icons.corporate_fare_rounded, + 'corporate_fare_outlined': Icons.corporate_fare_outlined, + 'cottage': Icons.cottage, + 'cottage_sharp': Icons.cottage_sharp, + 'cottage_rounded': Icons.cottage_rounded, + 'cottage_outlined': Icons.cottage_outlined, + 'countertops': Icons.countertops, + 'countertops_sharp': Icons.countertops_sharp, + 'countertops_rounded': Icons.countertops_rounded, + 'countertops_outlined': Icons.countertops_outlined, + 'create': Icons.create, + 'create_sharp': Icons.create_sharp, + 'create_rounded': Icons.create_rounded, + 'create_outlined': Icons.create_outlined, + 'create_new_folder': Icons.create_new_folder, + 'create_new_folder_sharp': Icons.create_new_folder_sharp, + 'create_new_folder_rounded': Icons.create_new_folder_rounded, + 'create_new_folder_outlined': Icons.create_new_folder_outlined, + 'credit_card': Icons.credit_card, + 'credit_card_sharp': Icons.credit_card_sharp, + 'credit_card_rounded': Icons.credit_card_rounded, + 'credit_card_outlined': Icons.credit_card_outlined, + 'credit_card_off': Icons.credit_card_off, + 'credit_card_off_sharp': Icons.credit_card_off_sharp, + 'credit_card_off_rounded': Icons.credit_card_off_rounded, + 'credit_card_off_outlined': Icons.credit_card_off_outlined, + 'credit_score': Icons.credit_score, + 'credit_score_sharp': Icons.credit_score_sharp, + 'credit_score_rounded': Icons.credit_score_rounded, + 'credit_score_outlined': Icons.credit_score_outlined, + 'crib': Icons.crib, + 'crib_sharp': Icons.crib_sharp, + 'crib_rounded': Icons.crib_rounded, + 'crib_outlined': Icons.crib_outlined, + 'crop': Icons.crop, + 'crop_sharp': Icons.crop_sharp, + 'crop_rounded': Icons.crop_rounded, + 'crop_outlined': Icons.crop_outlined, + 'crop_16_9': Icons.crop_16_9, + 'crop_16_9_sharp': Icons.crop_16_9_sharp, + 'crop_16_9_rounded': Icons.crop_16_9_rounded, + 'crop_16_9_outlined': Icons.crop_16_9_outlined, + 'crop_3_2': Icons.crop_3_2, + 'crop_3_2_sharp': Icons.crop_3_2_sharp, + 'crop_3_2_rounded': Icons.crop_3_2_rounded, + 'crop_3_2_outlined': Icons.crop_3_2_outlined, + 'crop_5_4': Icons.crop_5_4, + 'crop_5_4_sharp': Icons.crop_5_4_sharp, + 'crop_5_4_rounded': Icons.crop_5_4_rounded, + 'crop_5_4_outlined': Icons.crop_5_4_outlined, + 'crop_7_5': Icons.crop_7_5, + 'crop_7_5_sharp': Icons.crop_7_5_sharp, + 'crop_7_5_rounded': Icons.crop_7_5_rounded, + 'crop_7_5_outlined': Icons.crop_7_5_outlined, + 'crop_din': Icons.crop_din, + 'crop_din_sharp': Icons.crop_din_sharp, + 'crop_din_rounded': Icons.crop_din_rounded, + 'crop_din_outlined': Icons.crop_din_outlined, + 'crop_free': Icons.crop_free, + 'crop_free_sharp': Icons.crop_free_sharp, + 'crop_free_rounded': Icons.crop_free_rounded, + 'crop_free_outlined': Icons.crop_free_outlined, + 'crop_landscape': Icons.crop_landscape, + 'crop_landscape_sharp': Icons.crop_landscape_sharp, + 'crop_landscape_rounded': Icons.crop_landscape_rounded, + 'crop_landscape_outlined': Icons.crop_landscape_outlined, + 'crop_original': Icons.crop_original, + 'crop_original_sharp': Icons.crop_original_sharp, + 'crop_original_rounded': Icons.crop_original_rounded, + 'crop_original_outlined': Icons.crop_original_outlined, + 'crop_portrait': Icons.crop_portrait, + 'crop_portrait_sharp': Icons.crop_portrait_sharp, + 'crop_portrait_rounded': Icons.crop_portrait_rounded, + 'crop_portrait_outlined': Icons.crop_portrait_outlined, + 'crop_rotate': Icons.crop_rotate, + 'crop_rotate_sharp': Icons.crop_rotate_sharp, + 'crop_rotate_rounded': Icons.crop_rotate_rounded, + 'crop_rotate_outlined': Icons.crop_rotate_outlined, + 'crop_square': Icons.crop_square, + 'crop_square_sharp': Icons.crop_square_sharp, + 'crop_square_rounded': Icons.crop_square_rounded, + 'crop_square_outlined': Icons.crop_square_outlined, + 'cut': Icons.cut, + 'cut_sharp': Icons.cut_sharp, + 'cut_rounded': Icons.cut_rounded, + 'cut_outlined': Icons.cut_outlined, + 'dangerous': Icons.dangerous, + 'dangerous_sharp': Icons.dangerous_sharp, + 'dangerous_rounded': Icons.dangerous_rounded, + 'dangerous_outlined': Icons.dangerous_outlined, + 'dark_mode': Icons.dark_mode, + 'dark_mode_sharp': Icons.dark_mode_sharp, + 'dark_mode_rounded': Icons.dark_mode_rounded, + 'dark_mode_outlined': Icons.dark_mode_outlined, + 'dashboard': Icons.dashboard, + 'dashboard_sharp': Icons.dashboard_sharp, + 'dashboard_rounded': Icons.dashboard_rounded, + 'dashboard_outlined': Icons.dashboard_outlined, + 'dashboard_customize': Icons.dashboard_customize, + 'dashboard_customize_sharp': Icons.dashboard_customize_sharp, + 'dashboard_customize_rounded': Icons.dashboard_customize_rounded, + 'dashboard_customize_outlined': Icons.dashboard_customize_outlined, + 'data_saver_off': Icons.data_saver_off, + 'data_saver_off_sharp': Icons.data_saver_off_sharp, + 'data_saver_off_rounded': Icons.data_saver_off_rounded, + 'data_saver_off_outlined': Icons.data_saver_off_outlined, + 'data_saver_on': Icons.data_saver_on, + 'data_saver_on_sharp': Icons.data_saver_on_sharp, + 'data_saver_on_rounded': Icons.data_saver_on_rounded, + 'data_saver_on_outlined': Icons.data_saver_on_outlined, + 'data_usage': Icons.data_usage, + 'data_usage_sharp': Icons.data_usage_sharp, + 'data_usage_rounded': Icons.data_usage_rounded, + 'data_usage_outlined': Icons.data_usage_outlined, + 'date_range': Icons.date_range, + 'date_range_sharp': Icons.date_range_sharp, + 'date_range_rounded': Icons.date_range_rounded, + 'date_range_outlined': Icons.date_range_outlined, + 'deck': Icons.deck, + 'deck_sharp': Icons.deck_sharp, + 'deck_rounded': Icons.deck_rounded, + 'deck_outlined': Icons.deck_outlined, + 'dehaze': Icons.dehaze, + 'dehaze_sharp': Icons.dehaze_sharp, + 'dehaze_rounded': Icons.dehaze_rounded, + 'dehaze_outlined': Icons.dehaze_outlined, + 'delete': Icons.delete, + 'delete_sharp': Icons.delete_sharp, + 'delete_rounded': Icons.delete_rounded, + 'delete_outlined': Icons.delete_outlined, + 'delete_forever': Icons.delete_forever, + 'delete_forever_sharp': Icons.delete_forever_sharp, + 'delete_forever_rounded': Icons.delete_forever_rounded, + 'delete_forever_outlined': Icons.delete_forever_outlined, + 'delete_outline': Icons.delete_outline, + 'delete_outline_sharp': Icons.delete_outline_sharp, + 'delete_outline_rounded': Icons.delete_outline_rounded, + 'delete_outline_outlined': Icons.delete_outline_outlined, + 'delete_sweep': Icons.delete_sweep, + 'delete_sweep_sharp': Icons.delete_sweep_sharp, + 'delete_sweep_rounded': Icons.delete_sweep_rounded, + 'delete_sweep_outlined': Icons.delete_sweep_outlined, + 'delivery_dining': Icons.delivery_dining, + 'delivery_dining_sharp': Icons.delivery_dining_sharp, + 'delivery_dining_rounded': Icons.delivery_dining_rounded, + 'delivery_dining_outlined': Icons.delivery_dining_outlined, + 'departure_board': Icons.departure_board, + 'departure_board_sharp': Icons.departure_board_sharp, + 'departure_board_rounded': Icons.departure_board_rounded, + 'departure_board_outlined': Icons.departure_board_outlined, + 'description': Icons.description, + 'description_sharp': Icons.description_sharp, + 'description_rounded': Icons.description_rounded, + 'description_outlined': Icons.description_outlined, + 'design_services': Icons.design_services, + 'design_services_sharp': Icons.design_services_sharp, + 'design_services_rounded': Icons.design_services_rounded, + 'design_services_outlined': Icons.design_services_outlined, + 'desktop_access_disabled': Icons.desktop_access_disabled, + 'desktop_access_disabled_sharp': Icons.desktop_access_disabled_sharp, + 'desktop_access_disabled_rounded': + Icons.desktop_access_disabled_rounded, + 'desktop_access_disabled_outlined': + Icons.desktop_access_disabled_outlined, + 'desktop_mac': Icons.desktop_mac, + 'desktop_mac_sharp': Icons.desktop_mac_sharp, + 'desktop_mac_rounded': Icons.desktop_mac_rounded, + 'desktop_mac_outlined': Icons.desktop_mac_outlined, + 'desktop_windows': Icons.desktop_windows, + 'desktop_windows_sharp': Icons.desktop_windows_sharp, + 'desktop_windows_rounded': Icons.desktop_windows_rounded, + 'desktop_windows_outlined': Icons.desktop_windows_outlined, + 'details': Icons.details, + 'details_sharp': Icons.details_sharp, + 'details_rounded': Icons.details_rounded, + 'details_outlined': Icons.details_outlined, + 'developer_board': Icons.developer_board, + 'developer_board_sharp': Icons.developer_board_sharp, + 'developer_board_rounded': Icons.developer_board_rounded, + 'developer_board_outlined': Icons.developer_board_outlined, + 'developer_board_off': Icons.developer_board_off, + 'developer_board_off_sharp': Icons.developer_board_off_sharp, + 'developer_board_off_rounded': Icons.developer_board_off_rounded, + 'developer_board_off_outlined': Icons.developer_board_off_outlined, + 'developer_mode': Icons.developer_mode, + 'developer_mode_sharp': Icons.developer_mode_sharp, + 'developer_mode_rounded': Icons.developer_mode_rounded, + 'developer_mode_outlined': Icons.developer_mode_outlined, + 'device_hub': Icons.device_hub, + 'device_hub_sharp': Icons.device_hub_sharp, + 'device_hub_rounded': Icons.device_hub_rounded, + 'device_hub_outlined': Icons.device_hub_outlined, + 'device_thermostat': Icons.device_thermostat, + 'device_thermostat_sharp': Icons.device_thermostat_sharp, + 'device_thermostat_rounded': Icons.device_thermostat_rounded, + 'device_thermostat_outlined': Icons.device_thermostat_outlined, + 'device_unknown': Icons.device_unknown, + 'device_unknown_sharp': Icons.device_unknown_sharp, + 'device_unknown_rounded': Icons.device_unknown_rounded, + 'device_unknown_outlined': Icons.device_unknown_outlined, + 'devices': Icons.devices, + 'devices_sharp': Icons.devices_sharp, + 'devices_rounded': Icons.devices_rounded, + 'devices_outlined': Icons.devices_outlined, + 'devices_other': Icons.devices_other, + 'devices_other_sharp': Icons.devices_other_sharp, + 'devices_other_rounded': Icons.devices_other_rounded, + 'devices_other_outlined': Icons.devices_other_outlined, + 'dialer_sip': Icons.dialer_sip, + 'dialer_sip_sharp': Icons.dialer_sip_sharp, + 'dialer_sip_rounded': Icons.dialer_sip_rounded, + 'dialer_sip_outlined': Icons.dialer_sip_outlined, + 'dialpad': Icons.dialpad, + 'dialpad_sharp': Icons.dialpad_sharp, + 'dialpad_rounded': Icons.dialpad_rounded, + 'dialpad_outlined': Icons.dialpad_outlined, + 'dining': Icons.dining, + 'dining_sharp': Icons.dining_sharp, + 'dining_rounded': Icons.dining_rounded, + 'dining_outlined': Icons.dining_outlined, + 'dinner_dining': Icons.dinner_dining, + 'dinner_dining_sharp': Icons.dinner_dining_sharp, + 'dinner_dining_rounded': Icons.dinner_dining_rounded, + 'dinner_dining_outlined': Icons.dinner_dining_outlined, + 'directions': Icons.directions, + 'directions_sharp': Icons.directions_sharp, + 'directions_rounded': Icons.directions_rounded, + 'directions_outlined': Icons.directions_outlined, + 'directions_bike': Icons.directions_bike, + 'directions_bike_sharp': Icons.directions_bike_sharp, + 'directions_bike_rounded': Icons.directions_bike_rounded, + 'directions_bike_outlined': Icons.directions_bike_outlined, + 'directions_boat': Icons.directions_boat, + 'directions_boat_sharp': Icons.directions_boat_sharp, + 'directions_boat_rounded': Icons.directions_boat_rounded, + 'directions_boat_outlined': Icons.directions_boat_outlined, + 'directions_boat_filled': Icons.directions_boat_filled, + 'directions_boat_filled_sharp': Icons.directions_boat_filled_sharp, + 'directions_boat_filled_rounded': Icons.directions_boat_filled_rounded, + 'directions_boat_filled_outlined': + Icons.directions_boat_filled_outlined, + 'directions_bus': Icons.directions_bus, + 'directions_bus_sharp': Icons.directions_bus_sharp, + 'directions_bus_rounded': Icons.directions_bus_rounded, + 'directions_bus_outlined': Icons.directions_bus_outlined, + 'directions_bus_filled': Icons.directions_bus_filled, + 'directions_bus_filled_sharp': Icons.directions_bus_filled_sharp, + 'directions_bus_filled_rounded': Icons.directions_bus_filled_rounded, + 'directions_bus_filled_outlined': Icons.directions_bus_filled_outlined, + 'directions_car': Icons.directions_car, + 'directions_car_sharp': Icons.directions_car_sharp, + 'directions_car_rounded': Icons.directions_car_rounded, + 'directions_car_outlined': Icons.directions_car_outlined, + 'directions_car_filled': Icons.directions_car_filled, + 'directions_car_filled_sharp': Icons.directions_car_filled_sharp, + 'directions_car_filled_rounded': Icons.directions_car_filled_rounded, + 'directions_car_filled_outlined': Icons.directions_car_filled_outlined, + 'directions_ferry': Icons.directions_ferry, + 'directions_ferry_sharp': Icons.directions_ferry_sharp, + 'directions_ferry_rounded': Icons.directions_ferry_rounded, + 'directions_ferry_outlined': Icons.directions_ferry_outlined, + 'directions_off': Icons.directions_off, + 'directions_off_sharp': Icons.directions_off_sharp, + 'directions_off_rounded': Icons.directions_off_rounded, + 'directions_off_outlined': Icons.directions_off_outlined, + 'directions_railway': Icons.directions_railway, + 'directions_railway_sharp': Icons.directions_railway_sharp, + 'directions_railway_rounded': Icons.directions_railway_rounded, + 'directions_railway_outlined': Icons.directions_railway_outlined, + 'directions_railway_filled': Icons.directions_railway_filled, + 'directions_railway_filled_sharp': + Icons.directions_railway_filled_sharp, + 'directions_railway_filled_rounded': + Icons.directions_railway_filled_rounded, + 'directions_railway_filled_outlined': + Icons.directions_railway_filled_outlined, + 'directions_run': Icons.directions_run, + 'directions_run_sharp': Icons.directions_run_sharp, + 'directions_run_rounded': Icons.directions_run_rounded, + 'directions_run_outlined': Icons.directions_run_outlined, + 'directions_subway': Icons.directions_subway, + 'directions_subway_sharp': Icons.directions_subway_sharp, + 'directions_subway_rounded': Icons.directions_subway_rounded, + 'directions_subway_outlined': Icons.directions_subway_outlined, + 'directions_subway_filled': Icons.directions_subway_filled, + 'directions_subway_filled_sharp': Icons.directions_subway_filled_sharp, + 'directions_subway_filled_rounded': + Icons.directions_subway_filled_rounded, + 'directions_subway_filled_outlined': + Icons.directions_subway_filled_outlined, + 'directions_train': Icons.directions_train, + 'directions_train_sharp': Icons.directions_train_sharp, + 'directions_train_rounded': Icons.directions_train_rounded, + 'directions_train_outlined': Icons.directions_train_outlined, + 'directions_transit': Icons.directions_transit, + 'directions_transit_sharp': Icons.directions_transit_sharp, + 'directions_transit_rounded': Icons.directions_transit_rounded, + 'directions_transit_outlined': Icons.directions_transit_outlined, + 'directions_transit_filled': Icons.directions_transit_filled, + 'directions_transit_filled_sharp': + Icons.directions_transit_filled_sharp, + 'directions_transit_filled_rounded': + Icons.directions_transit_filled_rounded, + 'directions_transit_filled_outlined': + Icons.directions_transit_filled_outlined, + 'directions_walk': Icons.directions_walk, + 'directions_walk_sharp': Icons.directions_walk_sharp, + 'directions_walk_rounded': Icons.directions_walk_rounded, + 'directions_walk_outlined': Icons.directions_walk_outlined, + 'dirty_lens': Icons.dirty_lens, + 'dirty_lens_sharp': Icons.dirty_lens_sharp, + 'dirty_lens_rounded': Icons.dirty_lens_rounded, + 'dirty_lens_outlined': Icons.dirty_lens_outlined, + 'disabled_by_default': Icons.disabled_by_default, + 'disabled_by_default_sharp': Icons.disabled_by_default_sharp, + 'disabled_by_default_rounded': Icons.disabled_by_default_rounded, + 'disabled_by_default_outlined': Icons.disabled_by_default_outlined, + 'disc_full': Icons.disc_full, + 'disc_full_sharp': Icons.disc_full_sharp, + 'disc_full_rounded': Icons.disc_full_rounded, + 'disc_full_outlined': Icons.disc_full_outlined, + 'dnd_forwardslash': Icons.dnd_forwardslash, + 'dnd_forwardslash_sharp': Icons.dnd_forwardslash_sharp, + 'dnd_forwardslash_rounded': Icons.dnd_forwardslash_rounded, + 'dnd_forwardslash_outlined': Icons.dnd_forwardslash_outlined, + 'dns': Icons.dns, + 'dns_sharp': Icons.dns_sharp, + 'dns_rounded': Icons.dns_rounded, + 'dns_outlined': Icons.dns_outlined, + 'do_disturb': Icons.do_disturb, + 'do_disturb_sharp': Icons.do_disturb_sharp, + 'do_disturb_rounded': Icons.do_disturb_rounded, + 'do_disturb_outlined': Icons.do_disturb_outlined, + 'do_disturb_alt': Icons.do_disturb_alt, + 'do_disturb_alt_sharp': Icons.do_disturb_alt_sharp, + 'do_disturb_alt_rounded': Icons.do_disturb_alt_rounded, + 'do_disturb_alt_outlined': Icons.do_disturb_alt_outlined, + 'do_disturb_off': Icons.do_disturb_off, + 'do_disturb_off_sharp': Icons.do_disturb_off_sharp, + 'do_disturb_off_rounded': Icons.do_disturb_off_rounded, + 'do_disturb_off_outlined': Icons.do_disturb_off_outlined, + 'do_disturb_on': Icons.do_disturb_on, + 'do_disturb_on_sharp': Icons.do_disturb_on_sharp, + 'do_disturb_on_rounded': Icons.do_disturb_on_rounded, + 'do_disturb_on_outlined': Icons.do_disturb_on_outlined, + 'do_not_disturb': Icons.do_not_disturb, + 'do_not_disturb_sharp': Icons.do_not_disturb_sharp, + 'do_not_disturb_rounded': Icons.do_not_disturb_rounded, + 'do_not_disturb_outlined': Icons.do_not_disturb_outlined, + 'do_not_disturb_alt': Icons.do_not_disturb_alt, + 'do_not_disturb_alt_sharp': Icons.do_not_disturb_alt_sharp, + 'do_not_disturb_alt_rounded': Icons.do_not_disturb_alt_rounded, + 'do_not_disturb_alt_outlined': Icons.do_not_disturb_alt_outlined, + 'do_not_disturb_off': Icons.do_not_disturb_off, + 'do_not_disturb_off_sharp': Icons.do_not_disturb_off_sharp, + 'do_not_disturb_off_rounded': Icons.do_not_disturb_off_rounded, + 'do_not_disturb_off_outlined': Icons.do_not_disturb_off_outlined, + 'do_not_disturb_on': Icons.do_not_disturb_on, + 'do_not_disturb_on_sharp': Icons.do_not_disturb_on_sharp, + 'do_not_disturb_on_rounded': Icons.do_not_disturb_on_rounded, + 'do_not_disturb_on_outlined': Icons.do_not_disturb_on_outlined, + 'do_not_disturb_on_total_silence': + Icons.do_not_disturb_on_total_silence, + 'do_not_disturb_on_total_silence_sharp': + Icons.do_not_disturb_on_total_silence_sharp, + 'do_not_disturb_on_total_silence_rounded': + Icons.do_not_disturb_on_total_silence_rounded, + 'do_not_disturb_on_total_silence_outlined': + Icons.do_not_disturb_on_total_silence_outlined, + 'do_not_step': Icons.do_not_step, + 'do_not_step_sharp': Icons.do_not_step_sharp, + 'do_not_step_rounded': Icons.do_not_step_rounded, + 'do_not_step_outlined': Icons.do_not_step_outlined, + 'do_not_touch': Icons.do_not_touch, + 'do_not_touch_sharp': Icons.do_not_touch_sharp, + 'do_not_touch_rounded': Icons.do_not_touch_rounded, + 'do_not_touch_outlined': Icons.do_not_touch_outlined, + 'dock': Icons.dock, + 'dock_sharp': Icons.dock_sharp, + 'dock_rounded': Icons.dock_rounded, + 'dock_outlined': Icons.dock_outlined, + 'document_scanner': Icons.document_scanner, + 'document_scanner_sharp': Icons.document_scanner_sharp, + 'document_scanner_rounded': Icons.document_scanner_rounded, + 'document_scanner_outlined': Icons.document_scanner_outlined, + 'domain': Icons.domain, + 'domain_sharp': Icons.domain_sharp, + 'domain_rounded': Icons.domain_rounded, + 'domain_outlined': Icons.domain_outlined, + 'domain_disabled': Icons.domain_disabled, + 'domain_disabled_sharp': Icons.domain_disabled_sharp, + 'domain_disabled_rounded': Icons.domain_disabled_rounded, + 'domain_disabled_outlined': Icons.domain_disabled_outlined, + 'domain_verification': Icons.domain_verification, + 'domain_verification_sharp': Icons.domain_verification_sharp, + 'domain_verification_rounded': Icons.domain_verification_rounded, + 'domain_verification_outlined': Icons.domain_verification_outlined, + 'done': Icons.done, + 'done_sharp': Icons.done_sharp, + 'done_rounded': Icons.done_rounded, + 'done_outlined': Icons.done_outlined, + 'done_all': Icons.done_all, + 'done_all_sharp': Icons.done_all_sharp, + 'done_all_rounded': Icons.done_all_rounded, + 'done_all_outlined': Icons.done_all_outlined, + 'done_outline': Icons.done_outline, + 'done_outline_sharp': Icons.done_outline_sharp, + 'done_outline_rounded': Icons.done_outline_rounded, + 'done_outline_outlined': Icons.done_outline_outlined, + 'donut_large': Icons.donut_large, + 'donut_large_sharp': Icons.donut_large_sharp, + 'donut_large_rounded': Icons.donut_large_rounded, + 'donut_large_outlined': Icons.donut_large_outlined, + 'donut_small': Icons.donut_small, + 'donut_small_sharp': Icons.donut_small_sharp, + 'donut_small_rounded': Icons.donut_small_rounded, + 'donut_small_outlined': Icons.donut_small_outlined, + 'door_back_door': Icons.door_back_door, + 'door_back_door_sharp': Icons.door_back_door_sharp, + 'door_back_door_rounded': Icons.door_back_door_rounded, + 'door_back_door_outlined': Icons.door_back_door_outlined, + 'door_front_door': Icons.door_front_door, + 'door_front_door_sharp': Icons.door_front_door_sharp, + 'door_front_door_rounded': Icons.door_front_door_rounded, + 'door_front_door_outlined': Icons.door_front_door_outlined, + 'door_sliding': Icons.door_sliding, + 'door_sliding_sharp': Icons.door_sliding_sharp, + 'door_sliding_rounded': Icons.door_sliding_rounded, + 'door_sliding_outlined': Icons.door_sliding_outlined, + 'doorbell': Icons.doorbell, + 'doorbell_sharp': Icons.doorbell_sharp, + 'doorbell_rounded': Icons.doorbell_rounded, + 'doorbell_outlined': Icons.doorbell_outlined, + 'double_arrow': Icons.double_arrow, + 'double_arrow_sharp': Icons.double_arrow_sharp, + 'double_arrow_rounded': Icons.double_arrow_rounded, + 'double_arrow_outlined': Icons.double_arrow_outlined, + 'downhill_skiing': Icons.downhill_skiing, + 'downhill_skiing_sharp': Icons.downhill_skiing_sharp, + 'downhill_skiing_rounded': Icons.downhill_skiing_rounded, + 'downhill_skiing_outlined': Icons.downhill_skiing_outlined, + 'download': Icons.download, + 'download_sharp': Icons.download_sharp, + 'download_rounded': Icons.download_rounded, + 'download_outlined': Icons.download_outlined, + 'download_done': Icons.download_done, + 'download_done_sharp': Icons.download_done_sharp, + 'download_done_rounded': Icons.download_done_rounded, + 'download_done_outlined': Icons.download_done_outlined, + 'download_for_offline': Icons.download_for_offline, + 'download_for_offline_sharp': Icons.download_for_offline_sharp, + 'download_for_offline_rounded': Icons.download_for_offline_rounded, + 'download_for_offline_outlined': Icons.download_for_offline_outlined, + 'downloading': Icons.downloading, + 'downloading_sharp': Icons.downloading_sharp, + 'downloading_rounded': Icons.downloading_rounded, + 'downloading_outlined': Icons.downloading_outlined, + 'drafts': Icons.drafts, + 'drafts_sharp': Icons.drafts_sharp, + 'drafts_rounded': Icons.drafts_rounded, + 'drafts_outlined': Icons.drafts_outlined, + 'drag_handle': Icons.drag_handle, + 'drag_handle_sharp': Icons.drag_handle_sharp, + 'drag_handle_rounded': Icons.drag_handle_rounded, + 'drag_handle_outlined': Icons.drag_handle_outlined, + 'drag_indicator': Icons.drag_indicator, + 'drag_indicator_sharp': Icons.drag_indicator_sharp, + 'drag_indicator_rounded': Icons.drag_indicator_rounded, + 'drag_indicator_outlined': Icons.drag_indicator_outlined, + 'drive_eta': Icons.drive_eta, + 'drive_eta_sharp': Icons.drive_eta_sharp, + 'drive_eta_rounded': Icons.drive_eta_rounded, + 'drive_eta_outlined': Icons.drive_eta_outlined, + 'drive_file_move': Icons.drive_file_move, + 'drive_file_move_sharp': Icons.drive_file_move_sharp, + 'drive_file_move_rounded': Icons.drive_file_move_rounded, + 'drive_file_move_outlined': Icons.drive_file_move_outlined, + 'drive_file_move_outline': Icons.drive_file_move_outline, + 'drive_file_rename_outline': Icons.drive_file_rename_outline, + 'drive_file_rename_outline_sharp': + Icons.drive_file_rename_outline_sharp, + 'drive_file_rename_outline_rounded': + Icons.drive_file_rename_outline_rounded, + 'drive_file_rename_outline_outlined': + Icons.drive_file_rename_outline_outlined, + 'drive_folder_upload': Icons.drive_folder_upload, + 'drive_folder_upload_sharp': Icons.drive_folder_upload_sharp, + 'drive_folder_upload_rounded': Icons.drive_folder_upload_rounded, + 'drive_folder_upload_outlined': Icons.drive_folder_upload_outlined, + 'dry': Icons.dry, + 'dry_sharp': Icons.dry_sharp, + 'dry_rounded': Icons.dry_rounded, + 'dry_outlined': Icons.dry_outlined, + 'dry_cleaning': Icons.dry_cleaning, + 'dry_cleaning_sharp': Icons.dry_cleaning_sharp, + 'dry_cleaning_rounded': Icons.dry_cleaning_rounded, + 'dry_cleaning_outlined': Icons.dry_cleaning_outlined, + 'duo': Icons.duo, + 'duo_sharp': Icons.duo_sharp, + 'duo_rounded': Icons.duo_rounded, + 'duo_outlined': Icons.duo_outlined, + 'dvr': Icons.dvr, + 'dvr_sharp': Icons.dvr_sharp, + 'dvr_rounded': Icons.dvr_rounded, + 'dvr_outlined': Icons.dvr_outlined, + 'dynamic_feed': Icons.dynamic_feed, + 'dynamic_feed_sharp': Icons.dynamic_feed_sharp, + 'dynamic_feed_rounded': Icons.dynamic_feed_rounded, + 'dynamic_feed_outlined': Icons.dynamic_feed_outlined, + 'dynamic_form': Icons.dynamic_form, + 'dynamic_form_sharp': Icons.dynamic_form_sharp, + 'dynamic_form_rounded': Icons.dynamic_form_rounded, + 'dynamic_form_outlined': Icons.dynamic_form_outlined, + 'e_mobiledata': Icons.e_mobiledata, + 'e_mobiledata_sharp': Icons.e_mobiledata_sharp, + 'e_mobiledata_rounded': Icons.e_mobiledata_rounded, + 'e_mobiledata_outlined': Icons.e_mobiledata_outlined, + 'earbuds': Icons.earbuds, + 'earbuds_sharp': Icons.earbuds_sharp, + 'earbuds_rounded': Icons.earbuds_rounded, + 'earbuds_outlined': Icons.earbuds_outlined, + 'earbuds_battery': Icons.earbuds_battery, + 'earbuds_battery_sharp': Icons.earbuds_battery_sharp, + 'earbuds_battery_rounded': Icons.earbuds_battery_rounded, + 'earbuds_battery_outlined': Icons.earbuds_battery_outlined, + 'east': Icons.east, + 'east_sharp': Icons.east_sharp, + 'east_rounded': Icons.east_rounded, + 'east_outlined': Icons.east_outlined, + 'eco': Icons.eco, + 'eco_sharp': Icons.eco_sharp, + 'eco_rounded': Icons.eco_rounded, + 'eco_outlined': Icons.eco_outlined, + 'edgesensor_high': Icons.edgesensor_high, + 'edgesensor_high_sharp': Icons.edgesensor_high_sharp, + 'edgesensor_high_rounded': Icons.edgesensor_high_rounded, + 'edgesensor_high_outlined': Icons.edgesensor_high_outlined, + 'edgesensor_low': Icons.edgesensor_low, + 'edgesensor_low_sharp': Icons.edgesensor_low_sharp, + 'edgesensor_low_rounded': Icons.edgesensor_low_rounded, + 'edgesensor_low_outlined': Icons.edgesensor_low_outlined, + 'edit': Icons.edit, + 'edit_sharp': Icons.edit_sharp, + 'edit_rounded': Icons.edit_rounded, + 'edit_outlined': Icons.edit_outlined, + 'edit_attributes': Icons.edit_attributes, + 'edit_attributes_sharp': Icons.edit_attributes_sharp, + 'edit_attributes_rounded': Icons.edit_attributes_rounded, + 'edit_attributes_outlined': Icons.edit_attributes_outlined, + 'edit_location': Icons.edit_location, + 'edit_location_sharp': Icons.edit_location_sharp, + 'edit_location_rounded': Icons.edit_location_rounded, + 'edit_location_outlined': Icons.edit_location_outlined, + 'edit_location_alt': Icons.edit_location_alt, + 'edit_location_alt_sharp': Icons.edit_location_alt_sharp, + 'edit_location_alt_rounded': Icons.edit_location_alt_rounded, + 'edit_location_alt_outlined': Icons.edit_location_alt_outlined, + 'edit_notifications': Icons.edit_notifications, + 'edit_notifications_sharp': Icons.edit_notifications_sharp, + 'edit_notifications_rounded': Icons.edit_notifications_rounded, + 'edit_notifications_outlined': Icons.edit_notifications_outlined, + 'edit_off': Icons.edit_off, + 'edit_off_sharp': Icons.edit_off_sharp, + 'edit_off_rounded': Icons.edit_off_rounded, + 'edit_off_outlined': Icons.edit_off_outlined, + 'edit_road': Icons.edit_road, + 'edit_road_sharp': Icons.edit_road_sharp, + 'edit_road_rounded': Icons.edit_road_rounded, + 'edit_road_outlined': Icons.edit_road_outlined, + 'eject': Icons.eject, + 'eject_sharp': Icons.eject_sharp, + 'eject_rounded': Icons.eject_rounded, + 'eject_outlined': Icons.eject_outlined, + 'elderly': Icons.elderly, + 'elderly_sharp': Icons.elderly_sharp, + 'elderly_rounded': Icons.elderly_rounded, + 'elderly_outlined': Icons.elderly_outlined, + 'electric_bike': Icons.electric_bike, + 'electric_bike_sharp': Icons.electric_bike_sharp, + 'electric_bike_rounded': Icons.electric_bike_rounded, + 'electric_bike_outlined': Icons.electric_bike_outlined, + 'electric_car': Icons.electric_car, + 'electric_car_sharp': Icons.electric_car_sharp, + 'electric_car_rounded': Icons.electric_car_rounded, + 'electric_car_outlined': Icons.electric_car_outlined, + 'electric_moped': Icons.electric_moped, + 'electric_moped_sharp': Icons.electric_moped_sharp, + 'electric_moped_rounded': Icons.electric_moped_rounded, + 'electric_moped_outlined': Icons.electric_moped_outlined, + 'electric_rickshaw': Icons.electric_rickshaw, + 'electric_rickshaw_sharp': Icons.electric_rickshaw_sharp, + 'electric_rickshaw_rounded': Icons.electric_rickshaw_rounded, + 'electric_rickshaw_outlined': Icons.electric_rickshaw_outlined, + 'electric_scooter': Icons.electric_scooter, + 'electric_scooter_sharp': Icons.electric_scooter_sharp, + 'electric_scooter_rounded': Icons.electric_scooter_rounded, + 'electric_scooter_outlined': Icons.electric_scooter_outlined, + 'electrical_services': Icons.electrical_services, + 'electrical_services_sharp': Icons.electrical_services_sharp, + 'electrical_services_rounded': Icons.electrical_services_rounded, + 'electrical_services_outlined': Icons.electrical_services_outlined, + 'elevator': Icons.elevator, + 'elevator_sharp': Icons.elevator_sharp, + 'elevator_rounded': Icons.elevator_rounded, + 'elevator_outlined': Icons.elevator_outlined, + 'email': Icons.email, + 'email_sharp': Icons.email_sharp, + 'email_rounded': Icons.email_rounded, + 'email_outlined': Icons.email_outlined, + 'emoji_emotions': Icons.emoji_emotions, + 'emoji_emotions_sharp': Icons.emoji_emotions_sharp, + 'emoji_emotions_rounded': Icons.emoji_emotions_rounded, + 'emoji_emotions_outlined': Icons.emoji_emotions_outlined, + 'emoji_events': Icons.emoji_events, + 'emoji_events_sharp': Icons.emoji_events_sharp, + 'emoji_events_rounded': Icons.emoji_events_rounded, + 'emoji_events_outlined': Icons.emoji_events_outlined, + 'emoji_flags': Icons.emoji_flags, + 'emoji_flags_sharp': Icons.emoji_flags_sharp, + 'emoji_flags_rounded': Icons.emoji_flags_rounded, + 'emoji_flags_outlined': Icons.emoji_flags_outlined, + 'emoji_food_beverage': Icons.emoji_food_beverage, + 'emoji_food_beverage_sharp': Icons.emoji_food_beverage_sharp, + 'emoji_food_beverage_rounded': Icons.emoji_food_beverage_rounded, + 'emoji_food_beverage_outlined': Icons.emoji_food_beverage_outlined, + 'emoji_nature': Icons.emoji_nature, + 'emoji_nature_sharp': Icons.emoji_nature_sharp, + 'emoji_nature_rounded': Icons.emoji_nature_rounded, + 'emoji_nature_outlined': Icons.emoji_nature_outlined, + 'emoji_objects': Icons.emoji_objects, + 'emoji_objects_sharp': Icons.emoji_objects_sharp, + 'emoji_objects_rounded': Icons.emoji_objects_rounded, + 'emoji_objects_outlined': Icons.emoji_objects_outlined, + 'emoji_people': Icons.emoji_people, + 'emoji_people_sharp': Icons.emoji_people_sharp, + 'emoji_people_rounded': Icons.emoji_people_rounded, + 'emoji_people_outlined': Icons.emoji_people_outlined, + 'emoji_symbols': Icons.emoji_symbols, + 'emoji_symbols_sharp': Icons.emoji_symbols_sharp, + 'emoji_symbols_rounded': Icons.emoji_symbols_rounded, + 'emoji_symbols_outlined': Icons.emoji_symbols_outlined, + 'emoji_transportation': Icons.emoji_transportation, + 'emoji_transportation_sharp': Icons.emoji_transportation_sharp, + 'emoji_transportation_rounded': Icons.emoji_transportation_rounded, + 'emoji_transportation_outlined': Icons.emoji_transportation_outlined, + 'engineering': Icons.engineering, + 'engineering_sharp': Icons.engineering_sharp, + 'engineering_rounded': Icons.engineering_rounded, + 'engineering_outlined': Icons.engineering_outlined, + 'enhance_photo_translate': Icons.enhance_photo_translate, + 'enhance_photo_translate_sharp': Icons.enhance_photo_translate_sharp, + 'enhance_photo_translate_rounded': + Icons.enhance_photo_translate_rounded, + 'enhance_photo_translate_outlined': + Icons.enhance_photo_translate_outlined, + 'enhanced_encryption': Icons.enhanced_encryption, + 'enhanced_encryption_sharp': Icons.enhanced_encryption_sharp, + 'enhanced_encryption_rounded': Icons.enhanced_encryption_rounded, + 'enhanced_encryption_outlined': Icons.enhanced_encryption_outlined, + 'equalizer': Icons.equalizer, + 'equalizer_sharp': Icons.equalizer_sharp, + 'equalizer_rounded': Icons.equalizer_rounded, + 'equalizer_outlined': Icons.equalizer_outlined, + 'error': Icons.error, + 'error_sharp': Icons.error_sharp, + 'error_rounded': Icons.error_rounded, + 'error_outlined': Icons.error_outlined, + 'error_outline': Icons.error_outline, + 'error_outline_sharp': Icons.error_outline_sharp, + 'error_outline_rounded': Icons.error_outline_rounded, + 'error_outline_outlined': Icons.error_outline_outlined, + 'escalator': Icons.escalator, + 'escalator_sharp': Icons.escalator_sharp, + 'escalator_rounded': Icons.escalator_rounded, + 'escalator_outlined': Icons.escalator_outlined, + 'escalator_warning': Icons.escalator_warning, + 'escalator_warning_sharp': Icons.escalator_warning_sharp, + 'escalator_warning_rounded': Icons.escalator_warning_rounded, + 'escalator_warning_outlined': Icons.escalator_warning_outlined, + 'euro': Icons.euro, + 'euro_sharp': Icons.euro_sharp, + 'euro_rounded': Icons.euro_rounded, + 'euro_outlined': Icons.euro_outlined, + 'euro_symbol': Icons.euro_symbol, + 'euro_symbol_sharp': Icons.euro_symbol_sharp, + 'euro_symbol_rounded': Icons.euro_symbol_rounded, + 'euro_symbol_outlined': Icons.euro_symbol_outlined, + 'ev_station': Icons.ev_station, + 'ev_station_sharp': Icons.ev_station_sharp, + 'ev_station_rounded': Icons.ev_station_rounded, + 'ev_station_outlined': Icons.ev_station_outlined, + 'event': Icons.event, + 'event_sharp': Icons.event_sharp, + 'event_rounded': Icons.event_rounded, + 'event_outlined': Icons.event_outlined, + 'event_available': Icons.event_available, + 'event_available_sharp': Icons.event_available_sharp, + 'event_available_rounded': Icons.event_available_rounded, + 'event_available_outlined': Icons.event_available_outlined, + 'event_busy': Icons.event_busy, + 'event_busy_sharp': Icons.event_busy_sharp, + 'event_busy_rounded': Icons.event_busy_rounded, + 'event_busy_outlined': Icons.event_busy_outlined, + 'event_note': Icons.event_note, + 'event_note_sharp': Icons.event_note_sharp, + 'event_note_rounded': Icons.event_note_rounded, + 'event_note_outlined': Icons.event_note_outlined, + 'event_seat': Icons.event_seat, + 'event_seat_sharp': Icons.event_seat_sharp, + 'event_seat_rounded': Icons.event_seat_rounded, + 'event_seat_outlined': Icons.event_seat_outlined, + 'exit_to_app': Icons.exit_to_app, + 'exit_to_app_sharp': Icons.exit_to_app_sharp, + 'exit_to_app_rounded': Icons.exit_to_app_rounded, + 'exit_to_app_outlined': Icons.exit_to_app_outlined, + 'expand': Icons.expand, + 'expand_sharp': Icons.expand_sharp, + 'expand_rounded': Icons.expand_rounded, + 'expand_outlined': Icons.expand_outlined, + 'expand_less': Icons.expand_less, + 'expand_less_sharp': Icons.expand_less_sharp, + 'expand_less_rounded': Icons.expand_less_rounded, + 'expand_less_outlined': Icons.expand_less_outlined, + 'expand_more': Icons.expand_more, + 'expand_more_sharp': Icons.expand_more_sharp, + 'expand_more_rounded': Icons.expand_more_rounded, + 'expand_more_outlined': Icons.expand_more_outlined, + 'explicit': Icons.explicit, + 'explicit_sharp': Icons.explicit_sharp, + 'explicit_rounded': Icons.explicit_rounded, + 'explicit_outlined': Icons.explicit_outlined, + 'explore': Icons.explore, + 'explore_sharp': Icons.explore_sharp, + 'explore_rounded': Icons.explore_rounded, + 'explore_outlined': Icons.explore_outlined, + 'explore_off': Icons.explore_off, + 'explore_off_sharp': Icons.explore_off_sharp, + 'explore_off_rounded': Icons.explore_off_rounded, + 'explore_off_outlined': Icons.explore_off_outlined, + 'exposure': Icons.exposure, + 'exposure_sharp': Icons.exposure_sharp, + 'exposure_rounded': Icons.exposure_rounded, + 'exposure_outlined': Icons.exposure_outlined, + 'exposure_minus_1': Icons.exposure_minus_1, + 'exposure_minus_1_sharp': Icons.exposure_minus_1_sharp, + 'exposure_minus_1_rounded': Icons.exposure_minus_1_rounded, + 'exposure_minus_1_outlined': Icons.exposure_minus_1_outlined, + 'exposure_minus_2': Icons.exposure_minus_2, + 'exposure_minus_2_sharp': Icons.exposure_minus_2_sharp, + 'exposure_minus_2_rounded': Icons.exposure_minus_2_rounded, + 'exposure_minus_2_outlined': Icons.exposure_minus_2_outlined, + 'exposure_neg_1': Icons.exposure_neg_1, + 'exposure_neg_1_sharp': Icons.exposure_neg_1_sharp, + 'exposure_neg_1_rounded': Icons.exposure_neg_1_rounded, + 'exposure_neg_1_outlined': Icons.exposure_neg_1_outlined, + 'exposure_neg_2': Icons.exposure_neg_2, + 'exposure_neg_2_sharp': Icons.exposure_neg_2_sharp, + 'exposure_neg_2_rounded': Icons.exposure_neg_2_rounded, + 'exposure_neg_2_outlined': Icons.exposure_neg_2_outlined, + 'exposure_plus_1': Icons.exposure_plus_1, + 'exposure_plus_1_sharp': Icons.exposure_plus_1_sharp, + 'exposure_plus_1_rounded': Icons.exposure_plus_1_rounded, + 'exposure_plus_1_outlined': Icons.exposure_plus_1_outlined, + 'exposure_plus_2': Icons.exposure_plus_2, + 'exposure_plus_2_sharp': Icons.exposure_plus_2_sharp, + 'exposure_plus_2_rounded': Icons.exposure_plus_2_rounded, + 'exposure_plus_2_outlined': Icons.exposure_plus_2_outlined, + 'exposure_zero': Icons.exposure_zero, + 'exposure_zero_sharp': Icons.exposure_zero_sharp, + 'exposure_zero_rounded': Icons.exposure_zero_rounded, + 'exposure_zero_outlined': Icons.exposure_zero_outlined, + 'extension': Icons.extension, + 'extension_sharp': Icons.extension_sharp, + 'extension_rounded': Icons.extension_rounded, + 'extension_outlined': Icons.extension_outlined, + 'extension_off': Icons.extension_off, + 'extension_off_sharp': Icons.extension_off_sharp, + 'extension_off_rounded': Icons.extension_off_rounded, + 'extension_off_outlined': Icons.extension_off_outlined, + 'face': Icons.face, + 'face_sharp': Icons.face_sharp, + 'face_rounded': Icons.face_rounded, + 'face_outlined': Icons.face_outlined, + 'face_retouching_natural': Icons.face_retouching_natural, + 'face_retouching_natural_sharp': Icons.face_retouching_natural_sharp, + 'face_retouching_natural_rounded': + Icons.face_retouching_natural_rounded, + 'face_retouching_natural_outlined': + Icons.face_retouching_natural_outlined, + 'face_retouching_off': Icons.face_retouching_off, + 'face_retouching_off_sharp': Icons.face_retouching_off_sharp, + 'face_retouching_off_rounded': Icons.face_retouching_off_rounded, + 'face_retouching_off_outlined': Icons.face_retouching_off_outlined, + 'face_unlock_sharp': Icons.face_unlock_sharp, + 'face_unlock_rounded': Icons.face_unlock_rounded, + 'face_unlock_outlined': Icons.face_unlock_outlined, + 'facebook': Icons.facebook, + 'facebook_sharp': Icons.facebook_sharp, + 'facebook_rounded': Icons.facebook_rounded, + 'facebook_outlined': Icons.facebook_outlined, + 'fact_check': Icons.fact_check, + 'fact_check_sharp': Icons.fact_check_sharp, + 'fact_check_rounded': Icons.fact_check_rounded, + 'fact_check_outlined': Icons.fact_check_outlined, + 'family_restroom': Icons.family_restroom, + 'family_restroom_sharp': Icons.family_restroom_sharp, + 'family_restroom_rounded': Icons.family_restroom_rounded, + 'family_restroom_outlined': Icons.family_restroom_outlined, + 'fast_forward': Icons.fast_forward, + 'fast_forward_sharp': Icons.fast_forward_sharp, + 'fast_forward_rounded': Icons.fast_forward_rounded, + 'fast_forward_outlined': Icons.fast_forward_outlined, + 'fast_rewind': Icons.fast_rewind, + 'fast_rewind_sharp': Icons.fast_rewind_sharp, + 'fast_rewind_rounded': Icons.fast_rewind_rounded, + 'fast_rewind_outlined': Icons.fast_rewind_outlined, + 'fastfood': Icons.fastfood, + 'fastfood_sharp': Icons.fastfood_sharp, + 'fastfood_rounded': Icons.fastfood_rounded, + 'fastfood_outlined': Icons.fastfood_outlined, + 'favorite': Icons.favorite, + 'favorite_sharp': Icons.favorite_sharp, + 'favorite_rounded': Icons.favorite_rounded, + 'favorite_outlined': Icons.favorite_outlined, + 'favorite_border': Icons.favorite_border, + 'favorite_border_sharp': Icons.favorite_border_sharp, + 'favorite_border_rounded': Icons.favorite_border_rounded, + 'favorite_border_outlined': Icons.favorite_border_outlined, + 'favorite_outline': Icons.favorite_outline, + 'favorite_outline_sharp': Icons.favorite_outline_sharp, + 'favorite_outline_rounded': Icons.favorite_outline_rounded, + 'favorite_outline_outlined': Icons.favorite_outline_outlined, + 'featured_play_list': Icons.featured_play_list, + 'featured_play_list_sharp': Icons.featured_play_list_sharp, + 'featured_play_list_rounded': Icons.featured_play_list_rounded, + 'featured_play_list_outlined': Icons.featured_play_list_outlined, + 'featured_video': Icons.featured_video, + 'featured_video_sharp': Icons.featured_video_sharp, + 'featured_video_rounded': Icons.featured_video_rounded, + 'featured_video_outlined': Icons.featured_video_outlined, + 'feed': Icons.feed, + 'feed_sharp': Icons.feed_sharp, + 'feed_rounded': Icons.feed_rounded, + 'feed_outlined': Icons.feed_outlined, + 'feedback': Icons.feedback, + 'feedback_sharp': Icons.feedback_sharp, + 'feedback_rounded': Icons.feedback_rounded, + 'feedback_outlined': Icons.feedback_outlined, + 'female': Icons.female, + 'female_sharp': Icons.female_sharp, + 'female_rounded': Icons.female_rounded, + 'female_outlined': Icons.female_outlined, + 'fence': Icons.fence, + 'fence_sharp': Icons.fence_sharp, + 'fence_rounded': Icons.fence_rounded, + 'fence_outlined': Icons.fence_outlined, + 'festival': Icons.festival, + 'festival_sharp': Icons.festival_sharp, + 'festival_rounded': Icons.festival_rounded, + 'festival_outlined': Icons.festival_outlined, + 'fiber_dvr': Icons.fiber_dvr, + 'fiber_dvr_sharp': Icons.fiber_dvr_sharp, + 'fiber_dvr_rounded': Icons.fiber_dvr_rounded, + 'fiber_dvr_outlined': Icons.fiber_dvr_outlined, + 'fiber_manual_record': Icons.fiber_manual_record, + 'fiber_manual_record_sharp': Icons.fiber_manual_record_sharp, + 'fiber_manual_record_rounded': Icons.fiber_manual_record_rounded, + 'fiber_manual_record_outlined': Icons.fiber_manual_record_outlined, + 'fiber_new': Icons.fiber_new, + 'fiber_new_sharp': Icons.fiber_new_sharp, + 'fiber_new_rounded': Icons.fiber_new_rounded, + 'fiber_new_outlined': Icons.fiber_new_outlined, + 'fiber_pin': Icons.fiber_pin, + 'fiber_pin_sharp': Icons.fiber_pin_sharp, + 'fiber_pin_rounded': Icons.fiber_pin_rounded, + 'fiber_pin_outlined': Icons.fiber_pin_outlined, + 'fiber_smart_record': Icons.fiber_smart_record, + 'fiber_smart_record_sharp': Icons.fiber_smart_record_sharp, + 'fiber_smart_record_rounded': Icons.fiber_smart_record_rounded, + 'fiber_smart_record_outlined': Icons.fiber_smart_record_outlined, + 'file_copy': Icons.file_copy, + 'file_copy_sharp': Icons.file_copy_sharp, + 'file_copy_rounded': Icons.file_copy_rounded, + 'file_copy_outlined': Icons.file_copy_outlined, + 'file_download': Icons.file_download, + 'file_download_sharp': Icons.file_download_sharp, + 'file_download_rounded': Icons.file_download_rounded, + 'file_download_outlined': Icons.file_download_outlined, + 'file_download_done': Icons.file_download_done, + 'file_download_done_sharp': Icons.file_download_done_sharp, + 'file_download_done_rounded': Icons.file_download_done_rounded, + 'file_download_done_outlined': Icons.file_download_done_outlined, + 'file_download_off': Icons.file_download_off, + 'file_download_off_sharp': Icons.file_download_off_sharp, + 'file_download_off_rounded': Icons.file_download_off_rounded, + 'file_download_off_outlined': Icons.file_download_off_outlined, + 'file_present': Icons.file_present, + 'file_present_sharp': Icons.file_present_sharp, + 'file_present_rounded': Icons.file_present_rounded, + 'file_present_outlined': Icons.file_present_outlined, + 'file_upload': Icons.file_upload, + 'file_upload_sharp': Icons.file_upload_sharp, + 'file_upload_rounded': Icons.file_upload_rounded, + 'file_upload_outlined': Icons.file_upload_outlined, + 'filter': Icons.filter, + 'filter_sharp': Icons.filter_sharp, + 'filter_rounded': Icons.filter_rounded, + 'filter_outlined': Icons.filter_outlined, + 'filter_1': Icons.filter_1, + 'filter_1_sharp': Icons.filter_1_sharp, + 'filter_1_rounded': Icons.filter_1_rounded, + 'filter_1_outlined': Icons.filter_1_outlined, + 'filter_2': Icons.filter_2, + 'filter_2_sharp': Icons.filter_2_sharp, + 'filter_2_rounded': Icons.filter_2_rounded, + 'filter_2_outlined': Icons.filter_2_outlined, + 'filter_3': Icons.filter_3, + 'filter_3_sharp': Icons.filter_3_sharp, + 'filter_3_rounded': Icons.filter_3_rounded, + 'filter_3_outlined': Icons.filter_3_outlined, + 'filter_4': Icons.filter_4, + 'filter_4_sharp': Icons.filter_4_sharp, + 'filter_4_rounded': Icons.filter_4_rounded, + 'filter_4_outlined': Icons.filter_4_outlined, + 'filter_5': Icons.filter_5, + 'filter_5_sharp': Icons.filter_5_sharp, + 'filter_5_rounded': Icons.filter_5_rounded, + 'filter_5_outlined': Icons.filter_5_outlined, + 'filter_6': Icons.filter_6, + 'filter_6_sharp': Icons.filter_6_sharp, + 'filter_6_rounded': Icons.filter_6_rounded, + 'filter_6_outlined': Icons.filter_6_outlined, + 'filter_7': Icons.filter_7, + 'filter_7_sharp': Icons.filter_7_sharp, + 'filter_7_rounded': Icons.filter_7_rounded, + 'filter_7_outlined': Icons.filter_7_outlined, + 'filter_8': Icons.filter_8, + 'filter_8_sharp': Icons.filter_8_sharp, + 'filter_8_rounded': Icons.filter_8_rounded, + 'filter_8_outlined': Icons.filter_8_outlined, + 'filter_9': Icons.filter_9, + 'filter_9_sharp': Icons.filter_9_sharp, + 'filter_9_rounded': Icons.filter_9_rounded, + 'filter_9_outlined': Icons.filter_9_outlined, + 'filter_9_plus': Icons.filter_9_plus, + 'filter_9_plus_sharp': Icons.filter_9_plus_sharp, + 'filter_9_plus_rounded': Icons.filter_9_plus_rounded, + 'filter_9_plus_outlined': Icons.filter_9_plus_outlined, + 'filter_alt': Icons.filter_alt, + 'filter_alt_sharp': Icons.filter_alt_sharp, + 'filter_alt_rounded': Icons.filter_alt_rounded, + 'filter_alt_outlined': Icons.filter_alt_outlined, + 'filter_b_and_w': Icons.filter_b_and_w, + 'filter_b_and_w_sharp': Icons.filter_b_and_w_sharp, + 'filter_b_and_w_rounded': Icons.filter_b_and_w_rounded, + 'filter_b_and_w_outlined': Icons.filter_b_and_w_outlined, + 'filter_center_focus': Icons.filter_center_focus, + 'filter_center_focus_sharp': Icons.filter_center_focus_sharp, + 'filter_center_focus_rounded': Icons.filter_center_focus_rounded, + 'filter_center_focus_outlined': Icons.filter_center_focus_outlined, + 'filter_drama': Icons.filter_drama, + 'filter_drama_sharp': Icons.filter_drama_sharp, + 'filter_drama_rounded': Icons.filter_drama_rounded, + 'filter_drama_outlined': Icons.filter_drama_outlined, + 'filter_frames': Icons.filter_frames, + 'filter_frames_sharp': Icons.filter_frames_sharp, + 'filter_frames_rounded': Icons.filter_frames_rounded, + 'filter_frames_outlined': Icons.filter_frames_outlined, + 'filter_hdr': Icons.filter_hdr, + 'filter_hdr_sharp': Icons.filter_hdr_sharp, + 'filter_hdr_rounded': Icons.filter_hdr_rounded, + 'filter_hdr_outlined': Icons.filter_hdr_outlined, + 'filter_list': Icons.filter_list, + 'filter_list_sharp': Icons.filter_list_sharp, + 'filter_list_rounded': Icons.filter_list_rounded, + 'filter_list_outlined': Icons.filter_list_outlined, + 'filter_list_alt': Icons.filter_list_alt, + 'filter_none': Icons.filter_none, + 'filter_none_sharp': Icons.filter_none_sharp, + 'filter_none_rounded': Icons.filter_none_rounded, + 'filter_none_outlined': Icons.filter_none_outlined, + 'filter_tilt_shift': Icons.filter_tilt_shift, + 'filter_tilt_shift_sharp': Icons.filter_tilt_shift_sharp, + 'filter_tilt_shift_rounded': Icons.filter_tilt_shift_rounded, + 'filter_tilt_shift_outlined': Icons.filter_tilt_shift_outlined, + 'filter_vintage': Icons.filter_vintage, + 'filter_vintage_sharp': Icons.filter_vintage_sharp, + 'filter_vintage_rounded': Icons.filter_vintage_rounded, + 'filter_vintage_outlined': Icons.filter_vintage_outlined, + 'find_in_page': Icons.find_in_page, + 'find_in_page_sharp': Icons.find_in_page_sharp, + 'find_in_page_rounded': Icons.find_in_page_rounded, + 'find_in_page_outlined': Icons.find_in_page_outlined, + 'find_replace': Icons.find_replace, + 'find_replace_sharp': Icons.find_replace_sharp, + 'find_replace_rounded': Icons.find_replace_rounded, + 'find_replace_outlined': Icons.find_replace_outlined, + 'fingerprint': Icons.fingerprint, + 'fingerprint_sharp': Icons.fingerprint_sharp, + 'fingerprint_rounded': Icons.fingerprint_rounded, + 'fingerprint_outlined': Icons.fingerprint_outlined, + 'fire_extinguisher': Icons.fire_extinguisher, + 'fire_extinguisher_sharp': Icons.fire_extinguisher_sharp, + 'fire_extinguisher_rounded': Icons.fire_extinguisher_rounded, + 'fire_extinguisher_outlined': Icons.fire_extinguisher_outlined, + 'fire_hydrant': Icons.fire_hydrant, + 'fireplace': Icons.fireplace, + 'fireplace_sharp': Icons.fireplace_sharp, + 'fireplace_rounded': Icons.fireplace_rounded, + 'fireplace_outlined': Icons.fireplace_outlined, + 'first_page': Icons.first_page, + 'first_page_sharp': Icons.first_page_sharp, + 'first_page_rounded': Icons.first_page_rounded, + 'first_page_outlined': Icons.first_page_outlined, + 'fit_screen': Icons.fit_screen, + 'fit_screen_sharp': Icons.fit_screen_sharp, + 'fit_screen_rounded': Icons.fit_screen_rounded, + 'fit_screen_outlined': Icons.fit_screen_outlined, + 'fitness_center': Icons.fitness_center, + 'fitness_center_sharp': Icons.fitness_center_sharp, + 'fitness_center_rounded': Icons.fitness_center_rounded, + 'fitness_center_outlined': Icons.fitness_center_outlined, + 'flag': Icons.flag, + 'flag_sharp': Icons.flag_sharp, + 'flag_rounded': Icons.flag_rounded, + 'flag_outlined': Icons.flag_outlined, + 'flaky': Icons.flaky, + 'flaky_sharp': Icons.flaky_sharp, + 'flaky_rounded': Icons.flaky_rounded, + 'flaky_outlined': Icons.flaky_outlined, + 'flare': Icons.flare, + 'flare_sharp': Icons.flare_sharp, + 'flare_rounded': Icons.flare_rounded, + 'flare_outlined': Icons.flare_outlined, + 'flash_auto': Icons.flash_auto, + 'flash_auto_sharp': Icons.flash_auto_sharp, + 'flash_auto_rounded': Icons.flash_auto_rounded, + 'flash_auto_outlined': Icons.flash_auto_outlined, + 'flash_off': Icons.flash_off, + 'flash_off_sharp': Icons.flash_off_sharp, + 'flash_off_rounded': Icons.flash_off_rounded, + 'flash_off_outlined': Icons.flash_off_outlined, + 'flash_on': Icons.flash_on, + 'flash_on_sharp': Icons.flash_on_sharp, + 'flash_on_rounded': Icons.flash_on_rounded, + 'flash_on_outlined': Icons.flash_on_outlined, + 'flashlight_off': Icons.flashlight_off, + 'flashlight_off_sharp': Icons.flashlight_off_sharp, + 'flashlight_off_rounded': Icons.flashlight_off_rounded, + 'flashlight_off_outlined': Icons.flashlight_off_outlined, + 'flashlight_on': Icons.flashlight_on, + 'flashlight_on_sharp': Icons.flashlight_on_sharp, + 'flashlight_on_rounded': Icons.flashlight_on_rounded, + 'flashlight_on_outlined': Icons.flashlight_on_outlined, + 'flatware': Icons.flatware, + 'flatware_sharp': Icons.flatware_sharp, + 'flatware_rounded': Icons.flatware_rounded, + 'flatware_outlined': Icons.flatware_outlined, + 'flight': Icons.flight, + 'flight_sharp': Icons.flight_sharp, + 'flight_rounded': Icons.flight_rounded, + 'flight_outlined': Icons.flight_outlined, + 'flight_land': Icons.flight_land, + 'flight_land_sharp': Icons.flight_land_sharp, + 'flight_land_rounded': Icons.flight_land_rounded, + 'flight_land_outlined': Icons.flight_land_outlined, + 'flight_takeoff': Icons.flight_takeoff, + 'flight_takeoff_sharp': Icons.flight_takeoff_sharp, + 'flight_takeoff_rounded': Icons.flight_takeoff_rounded, + 'flight_takeoff_outlined': Icons.flight_takeoff_outlined, + 'flip': Icons.flip, + 'flip_sharp': Icons.flip_sharp, + 'flip_rounded': Icons.flip_rounded, + 'flip_outlined': Icons.flip_outlined, + 'flip_camera_android': Icons.flip_camera_android, + 'flip_camera_android_sharp': Icons.flip_camera_android_sharp, + 'flip_camera_android_rounded': Icons.flip_camera_android_rounded, + 'flip_camera_android_outlined': Icons.flip_camera_android_outlined, + 'flip_camera_ios': Icons.flip_camera_ios, + 'flip_camera_ios_sharp': Icons.flip_camera_ios_sharp, + 'flip_camera_ios_rounded': Icons.flip_camera_ios_rounded, + 'flip_camera_ios_outlined': Icons.flip_camera_ios_outlined, + 'flip_to_back': Icons.flip_to_back, + 'flip_to_back_sharp': Icons.flip_to_back_sharp, + 'flip_to_back_rounded': Icons.flip_to_back_rounded, + 'flip_to_back_outlined': Icons.flip_to_back_outlined, + 'flip_to_front': Icons.flip_to_front, + 'flip_to_front_sharp': Icons.flip_to_front_sharp, + 'flip_to_front_rounded': Icons.flip_to_front_rounded, + 'flip_to_front_outlined': Icons.flip_to_front_outlined, + 'flourescent': Icons.flourescent, + 'flourescent_sharp': Icons.flourescent_sharp, + 'flourescent_rounded': Icons.flourescent_rounded, + 'flourescent_outlined': Icons.flourescent_outlined, + 'flutter_dash': Icons.flutter_dash, + 'flutter_dash_sharp': Icons.flutter_dash_sharp, + 'flutter_dash_rounded': Icons.flutter_dash_rounded, + 'flutter_dash_outlined': Icons.flutter_dash_outlined, + 'fmd_bad': Icons.fmd_bad, + 'fmd_bad_sharp': Icons.fmd_bad_sharp, + 'fmd_bad_rounded': Icons.fmd_bad_rounded, + 'fmd_bad_outlined': Icons.fmd_bad_outlined, + 'fmd_good': Icons.fmd_good, + 'fmd_good_sharp': Icons.fmd_good_sharp, + 'fmd_good_rounded': Icons.fmd_good_rounded, + 'fmd_good_outlined': Icons.fmd_good_outlined, + 'folder': Icons.folder, + 'folder_sharp': Icons.folder_sharp, + 'folder_rounded': Icons.folder_rounded, + 'folder_outlined': Icons.folder_outlined, + 'folder_open': Icons.folder_open, + 'folder_open_sharp': Icons.folder_open_sharp, + 'folder_open_rounded': Icons.folder_open_rounded, + 'folder_open_outlined': Icons.folder_open_outlined, + 'folder_shared': Icons.folder_shared, + 'folder_shared_sharp': Icons.folder_shared_sharp, + 'folder_shared_rounded': Icons.folder_shared_rounded, + 'folder_shared_outlined': Icons.folder_shared_outlined, + 'folder_special': Icons.folder_special, + 'folder_special_sharp': Icons.folder_special_sharp, + 'folder_special_rounded': Icons.folder_special_rounded, + 'folder_special_outlined': Icons.folder_special_outlined, + 'follow_the_signs': Icons.follow_the_signs, + 'follow_the_signs_sharp': Icons.follow_the_signs_sharp, + 'follow_the_signs_rounded': Icons.follow_the_signs_rounded, + 'follow_the_signs_outlined': Icons.follow_the_signs_outlined, + 'font_download': Icons.font_download, + 'font_download_sharp': Icons.font_download_sharp, + 'font_download_rounded': Icons.font_download_rounded, + 'font_download_outlined': Icons.font_download_outlined, + 'font_download_off': Icons.font_download_off, + 'font_download_off_sharp': Icons.font_download_off_sharp, + 'font_download_off_rounded': Icons.font_download_off_rounded, + 'font_download_off_outlined': Icons.font_download_off_outlined, + 'food_bank': Icons.food_bank, + 'food_bank_sharp': Icons.food_bank_sharp, + 'food_bank_rounded': Icons.food_bank_rounded, + 'food_bank_outlined': Icons.food_bank_outlined, + 'format_align_center': Icons.format_align_center, + 'format_align_center_sharp': Icons.format_align_center_sharp, + 'format_align_center_rounded': Icons.format_align_center_rounded, + 'format_align_center_outlined': Icons.format_align_center_outlined, + 'format_align_justify': Icons.format_align_justify, + 'format_align_justify_sharp': Icons.format_align_justify_sharp, + 'format_align_justify_rounded': Icons.format_align_justify_rounded, + 'format_align_justify_outlined': Icons.format_align_justify_outlined, + 'format_align_left': Icons.format_align_left, + 'format_align_left_sharp': Icons.format_align_left_sharp, + 'format_align_left_rounded': Icons.format_align_left_rounded, + 'format_align_left_outlined': Icons.format_align_left_outlined, + 'format_align_right': Icons.format_align_right, + 'format_align_right_sharp': Icons.format_align_right_sharp, + 'format_align_right_rounded': Icons.format_align_right_rounded, + 'format_align_right_outlined': Icons.format_align_right_outlined, + 'format_bold': Icons.format_bold, + 'format_bold_sharp': Icons.format_bold_sharp, + 'format_bold_rounded': Icons.format_bold_rounded, + 'format_bold_outlined': Icons.format_bold_outlined, + 'format_clear': Icons.format_clear, + 'format_clear_sharp': Icons.format_clear_sharp, + 'format_clear_rounded': Icons.format_clear_rounded, + 'format_clear_outlined': Icons.format_clear_outlined, + 'format_color_fill': Icons.format_color_fill, + 'format_color_fill_sharp': Icons.format_color_fill_sharp, + 'format_color_fill_rounded': Icons.format_color_fill_rounded, + 'format_color_fill_outlined': Icons.format_color_fill_outlined, + 'format_color_reset': Icons.format_color_reset, + 'format_color_reset_sharp': Icons.format_color_reset_sharp, + 'format_color_reset_rounded': Icons.format_color_reset_rounded, + 'format_color_reset_outlined': Icons.format_color_reset_outlined, + 'format_color_text': Icons.format_color_text, + 'format_color_text_sharp': Icons.format_color_text_sharp, + 'format_color_text_rounded': Icons.format_color_text_rounded, + 'format_color_text_outlined': Icons.format_color_text_outlined, + 'format_indent_decrease': Icons.format_indent_decrease, + 'format_indent_decrease_sharp': Icons.format_indent_decrease_sharp, + 'format_indent_decrease_rounded': Icons.format_indent_decrease_rounded, + 'format_indent_decrease_outlined': + Icons.format_indent_decrease_outlined, + 'format_indent_increase': Icons.format_indent_increase, + 'format_indent_increase_sharp': Icons.format_indent_increase_sharp, + 'format_indent_increase_rounded': Icons.format_indent_increase_rounded, + 'format_indent_increase_outlined': + Icons.format_indent_increase_outlined, + 'format_italic': Icons.format_italic, + 'format_italic_sharp': Icons.format_italic_sharp, + 'format_italic_rounded': Icons.format_italic_rounded, + 'format_italic_outlined': Icons.format_italic_outlined, + 'format_line_spacing': Icons.format_line_spacing, + 'format_line_spacing_sharp': Icons.format_line_spacing_sharp, + 'format_line_spacing_rounded': Icons.format_line_spacing_rounded, + 'format_line_spacing_outlined': Icons.format_line_spacing_outlined, + 'format_list_bulleted': Icons.format_list_bulleted, + 'format_list_bulleted_sharp': Icons.format_list_bulleted_sharp, + 'format_list_bulleted_rounded': Icons.format_list_bulleted_rounded, + 'format_list_bulleted_outlined': Icons.format_list_bulleted_outlined, + 'format_list_numbered': Icons.format_list_numbered, + 'format_list_numbered_sharp': Icons.format_list_numbered_sharp, + 'format_list_numbered_rounded': Icons.format_list_numbered_rounded, + 'format_list_numbered_outlined': Icons.format_list_numbered_outlined, + 'format_list_numbered_rtl': Icons.format_list_numbered_rtl, + 'format_list_numbered_rtl_sharp': Icons.format_list_numbered_rtl_sharp, + 'format_list_numbered_rtl_rounded': + Icons.format_list_numbered_rtl_rounded, + 'format_list_numbered_rtl_outlined': + Icons.format_list_numbered_rtl_outlined, + 'format_paint': Icons.format_paint, + 'format_paint_sharp': Icons.format_paint_sharp, + 'format_paint_rounded': Icons.format_paint_rounded, + 'format_paint_outlined': Icons.format_paint_outlined, + 'format_quote': Icons.format_quote, + 'format_quote_sharp': Icons.format_quote_sharp, + 'format_quote_rounded': Icons.format_quote_rounded, + 'format_quote_outlined': Icons.format_quote_outlined, + 'format_shapes': Icons.format_shapes, + 'format_shapes_sharp': Icons.format_shapes_sharp, + 'format_shapes_rounded': Icons.format_shapes_rounded, + 'format_shapes_outlined': Icons.format_shapes_outlined, + 'format_size': Icons.format_size, + 'format_size_sharp': Icons.format_size_sharp, + 'format_size_rounded': Icons.format_size_rounded, + 'format_size_outlined': Icons.format_size_outlined, + 'format_strikethrough': Icons.format_strikethrough, + 'format_strikethrough_sharp': Icons.format_strikethrough_sharp, + 'format_strikethrough_rounded': Icons.format_strikethrough_rounded, + 'format_strikethrough_outlined': Icons.format_strikethrough_outlined, + 'format_textdirection_l_to_r': Icons.format_textdirection_l_to_r, + 'format_textdirection_l_to_r_sharp': + Icons.format_textdirection_l_to_r_sharp, + 'format_textdirection_l_to_r_rounded': + Icons.format_textdirection_l_to_r_rounded, + 'format_textdirection_l_to_r_outlined': + Icons.format_textdirection_l_to_r_outlined, + 'format_textdirection_r_to_l': Icons.format_textdirection_r_to_l, + 'format_textdirection_r_to_l_sharp': + Icons.format_textdirection_r_to_l_sharp, + 'format_textdirection_r_to_l_rounded': + Icons.format_textdirection_r_to_l_rounded, + 'format_textdirection_r_to_l_outlined': + Icons.format_textdirection_r_to_l_outlined, + 'format_underline': Icons.format_underline, + 'format_underline_sharp': Icons.format_underline_sharp, + 'format_underline_rounded': Icons.format_underline_rounded, + 'format_underline_outlined': Icons.format_underline_outlined, + 'format_underlined': Icons.format_underlined, + 'format_underlined_sharp': Icons.format_underlined_sharp, + 'format_underlined_rounded': Icons.format_underlined_rounded, + 'format_underlined_outlined': Icons.format_underlined_outlined, + 'forum': Icons.forum, + 'forum_sharp': Icons.forum_sharp, + 'forum_rounded': Icons.forum_rounded, + 'forum_outlined': Icons.forum_outlined, + 'forward': Icons.forward, + 'forward_sharp': Icons.forward_sharp, + 'forward_rounded': Icons.forward_rounded, + 'forward_outlined': Icons.forward_outlined, + 'forward_10': Icons.forward_10, + 'forward_10_sharp': Icons.forward_10_sharp, + 'forward_10_rounded': Icons.forward_10_rounded, + 'forward_10_outlined': Icons.forward_10_outlined, + 'forward_30': Icons.forward_30, + 'forward_30_sharp': Icons.forward_30_sharp, + 'forward_30_rounded': Icons.forward_30_rounded, + 'forward_30_outlined': Icons.forward_30_outlined, + 'forward_5': Icons.forward_5, + 'forward_5_sharp': Icons.forward_5_sharp, + 'forward_5_rounded': Icons.forward_5_rounded, + 'forward_5_outlined': Icons.forward_5_outlined, + 'forward_to_inbox': Icons.forward_to_inbox, + 'forward_to_inbox_sharp': Icons.forward_to_inbox_sharp, + 'forward_to_inbox_rounded': Icons.forward_to_inbox_rounded, + 'forward_to_inbox_outlined': Icons.forward_to_inbox_outlined, + 'foundation': Icons.foundation, + 'foundation_sharp': Icons.foundation_sharp, + 'foundation_rounded': Icons.foundation_rounded, + 'foundation_outlined': Icons.foundation_outlined, + 'free_breakfast': Icons.free_breakfast, + 'free_breakfast_sharp': Icons.free_breakfast_sharp, + 'free_breakfast_rounded': Icons.free_breakfast_rounded, + 'free_breakfast_outlined': Icons.free_breakfast_outlined, + 'fullscreen': Icons.fullscreen, + 'fullscreen_sharp': Icons.fullscreen_sharp, + 'fullscreen_rounded': Icons.fullscreen_rounded, + 'fullscreen_outlined': Icons.fullscreen_outlined, + 'fullscreen_exit': Icons.fullscreen_exit, + 'fullscreen_exit_sharp': Icons.fullscreen_exit_sharp, + 'fullscreen_exit_rounded': Icons.fullscreen_exit_rounded, + 'fullscreen_exit_outlined': Icons.fullscreen_exit_outlined, + 'functions': Icons.functions, + 'functions_sharp': Icons.functions_sharp, + 'functions_rounded': Icons.functions_rounded, + 'functions_outlined': Icons.functions_outlined, + 'g_mobiledata': Icons.g_mobiledata, + 'g_mobiledata_sharp': Icons.g_mobiledata_sharp, + 'g_mobiledata_rounded': Icons.g_mobiledata_rounded, + 'g_mobiledata_outlined': Icons.g_mobiledata_outlined, + 'g_translate': Icons.g_translate, + 'g_translate_sharp': Icons.g_translate_sharp, + 'g_translate_rounded': Icons.g_translate_rounded, + 'g_translate_outlined': Icons.g_translate_outlined, + 'gamepad': Icons.gamepad, + 'gamepad_sharp': Icons.gamepad_sharp, + 'gamepad_rounded': Icons.gamepad_rounded, + 'gamepad_outlined': Icons.gamepad_outlined, + 'games': Icons.games, + 'games_sharp': Icons.games_sharp, + 'games_rounded': Icons.games_rounded, + 'games_outlined': Icons.games_outlined, + 'garage': Icons.garage, + 'garage_sharp': Icons.garage_sharp, + 'garage_rounded': Icons.garage_rounded, + 'garage_outlined': Icons.garage_outlined, + 'gavel': Icons.gavel, + 'gavel_sharp': Icons.gavel_sharp, + 'gavel_rounded': Icons.gavel_rounded, + 'gavel_outlined': Icons.gavel_outlined, + 'gesture': Icons.gesture, + 'gesture_sharp': Icons.gesture_sharp, + 'gesture_rounded': Icons.gesture_rounded, + 'gesture_outlined': Icons.gesture_outlined, + 'get_app': Icons.get_app, + 'get_app_sharp': Icons.get_app_sharp, + 'get_app_rounded': Icons.get_app_rounded, + 'get_app_outlined': Icons.get_app_outlined, + 'gif': Icons.gif, + 'gif_sharp': Icons.gif_sharp, + 'gif_rounded': Icons.gif_rounded, + 'gif_outlined': Icons.gif_outlined, + 'gite': Icons.gite, + 'gite_sharp': Icons.gite_sharp, + 'gite_rounded': Icons.gite_rounded, + 'gite_outlined': Icons.gite_outlined, + 'golf_course': Icons.golf_course, + 'golf_course_sharp': Icons.golf_course_sharp, + 'golf_course_rounded': Icons.golf_course_rounded, + 'golf_course_outlined': Icons.golf_course_outlined, + 'gpp_bad': Icons.gpp_bad, + 'gpp_bad_sharp': Icons.gpp_bad_sharp, + 'gpp_bad_rounded': Icons.gpp_bad_rounded, + 'gpp_bad_outlined': Icons.gpp_bad_outlined, + 'gpp_good': Icons.gpp_good, + 'gpp_good_sharp': Icons.gpp_good_sharp, + 'gpp_good_rounded': Icons.gpp_good_rounded, + 'gpp_good_outlined': Icons.gpp_good_outlined, + 'gpp_maybe': Icons.gpp_maybe, + 'gpp_maybe_sharp': Icons.gpp_maybe_sharp, + 'gpp_maybe_rounded': Icons.gpp_maybe_rounded, + 'gpp_maybe_outlined': Icons.gpp_maybe_outlined, + 'gps_fixed': Icons.gps_fixed, + 'gps_fixed_sharp': Icons.gps_fixed_sharp, + 'gps_fixed_rounded': Icons.gps_fixed_rounded, + 'gps_fixed_outlined': Icons.gps_fixed_outlined, + 'gps_not_fixed': Icons.gps_not_fixed, + 'gps_not_fixed_sharp': Icons.gps_not_fixed_sharp, + 'gps_not_fixed_rounded': Icons.gps_not_fixed_rounded, + 'gps_not_fixed_outlined': Icons.gps_not_fixed_outlined, + 'gps_off': Icons.gps_off, + 'gps_off_sharp': Icons.gps_off_sharp, + 'gps_off_rounded': Icons.gps_off_rounded, + 'gps_off_outlined': Icons.gps_off_outlined, + 'grade': Icons.grade, + 'grade_sharp': Icons.grade_sharp, + 'grade_rounded': Icons.grade_rounded, + 'grade_outlined': Icons.grade_outlined, + 'gradient': Icons.gradient, + 'gradient_sharp': Icons.gradient_sharp, + 'gradient_rounded': Icons.gradient_rounded, + 'gradient_outlined': Icons.gradient_outlined, + 'grading': Icons.grading, + 'grading_sharp': Icons.grading_sharp, + 'grading_rounded': Icons.grading_rounded, + 'grading_outlined': Icons.grading_outlined, + 'grain': Icons.grain, + 'grain_sharp': Icons.grain_sharp, + 'grain_rounded': Icons.grain_rounded, + 'grain_outlined': Icons.grain_outlined, + 'graphic_eq': Icons.graphic_eq, + 'graphic_eq_sharp': Icons.graphic_eq_sharp, + 'graphic_eq_rounded': Icons.graphic_eq_rounded, + 'graphic_eq_outlined': Icons.graphic_eq_outlined, + 'grass': Icons.grass, + 'grass_sharp': Icons.grass_sharp, + 'grass_rounded': Icons.grass_rounded, + 'grass_outlined': Icons.grass_outlined, + 'grid_3x3': Icons.grid_3x3, + 'grid_3x3_sharp': Icons.grid_3x3_sharp, + 'grid_3x3_rounded': Icons.grid_3x3_rounded, + 'grid_3x3_outlined': Icons.grid_3x3_outlined, + 'grid_4x4': Icons.grid_4x4, + 'grid_4x4_sharp': Icons.grid_4x4_sharp, + 'grid_4x4_rounded': Icons.grid_4x4_rounded, + 'grid_4x4_outlined': Icons.grid_4x4_outlined, + 'grid_goldenratio': Icons.grid_goldenratio, + 'grid_goldenratio_sharp': Icons.grid_goldenratio_sharp, + 'grid_goldenratio_rounded': Icons.grid_goldenratio_rounded, + 'grid_goldenratio_outlined': Icons.grid_goldenratio_outlined, + 'grid_off': Icons.grid_off, + 'grid_off_sharp': Icons.grid_off_sharp, + 'grid_off_rounded': Icons.grid_off_rounded, + 'grid_off_outlined': Icons.grid_off_outlined, + 'grid_on': Icons.grid_on, + 'grid_on_sharp': Icons.grid_on_sharp, + 'grid_on_rounded': Icons.grid_on_rounded, + 'grid_on_outlined': Icons.grid_on_outlined, + 'grid_view': Icons.grid_view, + 'grid_view_sharp': Icons.grid_view_sharp, + 'grid_view_rounded': Icons.grid_view_rounded, + 'grid_view_outlined': Icons.grid_view_outlined, + 'group': Icons.group, + 'group_sharp': Icons.group_sharp, + 'group_rounded': Icons.group_rounded, + 'group_outlined': Icons.group_outlined, + 'group_add': Icons.group_add, + 'group_add_sharp': Icons.group_add_sharp, + 'group_add_rounded': Icons.group_add_rounded, + 'group_add_outlined': Icons.group_add_outlined, + 'group_work': Icons.group_work, + 'group_work_sharp': Icons.group_work_sharp, + 'group_work_rounded': Icons.group_work_rounded, + 'group_work_outlined': Icons.group_work_outlined, + 'groups': Icons.groups, + 'groups_sharp': Icons.groups_sharp, + 'groups_rounded': Icons.groups_rounded, + 'groups_outlined': Icons.groups_outlined, + 'h_mobiledata': Icons.h_mobiledata, + 'h_mobiledata_sharp': Icons.h_mobiledata_sharp, + 'h_mobiledata_rounded': Icons.h_mobiledata_rounded, + 'h_mobiledata_outlined': Icons.h_mobiledata_outlined, + 'h_plus_mobiledata': Icons.h_plus_mobiledata, + 'h_plus_mobiledata_sharp': Icons.h_plus_mobiledata_sharp, + 'h_plus_mobiledata_rounded': Icons.h_plus_mobiledata_rounded, + 'h_plus_mobiledata_outlined': Icons.h_plus_mobiledata_outlined, + 'hail': Icons.hail, + 'hail_sharp': Icons.hail_sharp, + 'hail_rounded': Icons.hail_rounded, + 'hail_outlined': Icons.hail_outlined, + 'handyman': Icons.handyman, + 'handyman_sharp': Icons.handyman_sharp, + 'handyman_rounded': Icons.handyman_rounded, + 'handyman_outlined': Icons.handyman_outlined, + 'hardware': Icons.hardware, + 'hardware_sharp': Icons.hardware_sharp, + 'hardware_rounded': Icons.hardware_rounded, + 'hardware_outlined': Icons.hardware_outlined, + 'hd': Icons.hd, + 'hd_sharp': Icons.hd_sharp, + 'hd_rounded': Icons.hd_rounded, + 'hd_outlined': Icons.hd_outlined, + 'hdr_auto': Icons.hdr_auto, + 'hdr_auto_sharp': Icons.hdr_auto_sharp, + 'hdr_auto_rounded': Icons.hdr_auto_rounded, + 'hdr_auto_outlined': Icons.hdr_auto_outlined, + 'hdr_auto_select': Icons.hdr_auto_select, + 'hdr_auto_select_sharp': Icons.hdr_auto_select_sharp, + 'hdr_auto_select_rounded': Icons.hdr_auto_select_rounded, + 'hdr_auto_select_outlined': Icons.hdr_auto_select_outlined, + 'hdr_enhanced_select': Icons.hdr_enhanced_select, + 'hdr_enhanced_select_sharp': Icons.hdr_enhanced_select_sharp, + 'hdr_enhanced_select_rounded': Icons.hdr_enhanced_select_rounded, + 'hdr_enhanced_select_outlined': Icons.hdr_enhanced_select_outlined, + 'hdr_off': Icons.hdr_off, + 'hdr_off_sharp': Icons.hdr_off_sharp, + 'hdr_off_rounded': Icons.hdr_off_rounded, + 'hdr_off_outlined': Icons.hdr_off_outlined, + 'hdr_off_select': Icons.hdr_off_select, + 'hdr_off_select_sharp': Icons.hdr_off_select_sharp, + 'hdr_off_select_rounded': Icons.hdr_off_select_rounded, + 'hdr_off_select_outlined': Icons.hdr_off_select_outlined, + 'hdr_on': Icons.hdr_on, + 'hdr_on_sharp': Icons.hdr_on_sharp, + 'hdr_on_rounded': Icons.hdr_on_rounded, + 'hdr_on_outlined': Icons.hdr_on_outlined, + 'hdr_on_select': Icons.hdr_on_select, + 'hdr_on_select_sharp': Icons.hdr_on_select_sharp, + 'hdr_on_select_rounded': Icons.hdr_on_select_rounded, + 'hdr_on_select_outlined': Icons.hdr_on_select_outlined, + 'hdr_plus': Icons.hdr_plus, + 'hdr_plus_sharp': Icons.hdr_plus_sharp, + 'hdr_plus_rounded': Icons.hdr_plus_rounded, + 'hdr_plus_outlined': Icons.hdr_plus_outlined, + 'hdr_strong': Icons.hdr_strong, + 'hdr_strong_sharp': Icons.hdr_strong_sharp, + 'hdr_strong_rounded': Icons.hdr_strong_rounded, + 'hdr_strong_outlined': Icons.hdr_strong_outlined, + 'hdr_weak': Icons.hdr_weak, + 'hdr_weak_sharp': Icons.hdr_weak_sharp, + 'hdr_weak_rounded': Icons.hdr_weak_rounded, + 'hdr_weak_outlined': Icons.hdr_weak_outlined, + 'headphones': Icons.headphones, + 'headphones_sharp': Icons.headphones_sharp, + 'headphones_rounded': Icons.headphones_rounded, + 'headphones_outlined': Icons.headphones_outlined, + 'headphones_battery': Icons.headphones_battery, + 'headphones_battery_sharp': Icons.headphones_battery_sharp, + 'headphones_battery_rounded': Icons.headphones_battery_rounded, + 'headphones_battery_outlined': Icons.headphones_battery_outlined, + 'headset': Icons.headset, + 'headset_sharp': Icons.headset_sharp, + 'headset_rounded': Icons.headset_rounded, + 'headset_outlined': Icons.headset_outlined, + 'headset_mic': Icons.headset_mic, + 'headset_mic_sharp': Icons.headset_mic_sharp, + 'headset_mic_rounded': Icons.headset_mic_rounded, + 'headset_mic_outlined': Icons.headset_mic_outlined, + 'headset_off': Icons.headset_off, + 'headset_off_sharp': Icons.headset_off_sharp, + 'headset_off_rounded': Icons.headset_off_rounded, + 'headset_off_outlined': Icons.headset_off_outlined, + 'healing': Icons.healing, + 'healing_sharp': Icons.healing_sharp, + 'healing_rounded': Icons.healing_rounded, + 'healing_outlined': Icons.healing_outlined, + 'health_and_safety': Icons.health_and_safety, + 'health_and_safety_sharp': Icons.health_and_safety_sharp, + 'health_and_safety_rounded': Icons.health_and_safety_rounded, + 'health_and_safety_outlined': Icons.health_and_safety_outlined, + 'hearing': Icons.hearing, + 'hearing_sharp': Icons.hearing_sharp, + 'hearing_rounded': Icons.hearing_rounded, + 'hearing_outlined': Icons.hearing_outlined, + 'hearing_disabled': Icons.hearing_disabled, + 'hearing_disabled_sharp': Icons.hearing_disabled_sharp, + 'hearing_disabled_rounded': Icons.hearing_disabled_rounded, + 'hearing_disabled_outlined': Icons.hearing_disabled_outlined, + 'height': Icons.height, + 'height_sharp': Icons.height_sharp, + 'height_rounded': Icons.height_rounded, + 'height_outlined': Icons.height_outlined, + 'help': Icons.help, + 'help_sharp': Icons.help_sharp, + 'help_rounded': Icons.help_rounded, + 'help_outlined': Icons.help_outlined, + 'help_center': Icons.help_center, + 'help_center_sharp': Icons.help_center_sharp, + 'help_center_rounded': Icons.help_center_rounded, + 'help_center_outlined': Icons.help_center_outlined, + 'help_outline': Icons.help_outline, + 'help_outline_sharp': Icons.help_outline_sharp, + 'help_outline_rounded': Icons.help_outline_rounded, + 'help_outline_outlined': Icons.help_outline_outlined, + 'hevc': Icons.hevc, + 'hevc_sharp': Icons.hevc_sharp, + 'hevc_rounded': Icons.hevc_rounded, + 'hevc_outlined': Icons.hevc_outlined, + 'hide_image': Icons.hide_image, + 'hide_image_sharp': Icons.hide_image_sharp, + 'hide_image_rounded': Icons.hide_image_rounded, + 'hide_image_outlined': Icons.hide_image_outlined, + 'hide_source': Icons.hide_source, + 'hide_source_sharp': Icons.hide_source_sharp, + 'hide_source_rounded': Icons.hide_source_rounded, + 'hide_source_outlined': Icons.hide_source_outlined, + 'high_quality': Icons.high_quality, + 'high_quality_sharp': Icons.high_quality_sharp, + 'high_quality_rounded': Icons.high_quality_rounded, + 'high_quality_outlined': Icons.high_quality_outlined, + 'highlight': Icons.highlight, + 'highlight_sharp': Icons.highlight_sharp, + 'highlight_rounded': Icons.highlight_rounded, + 'highlight_outlined': Icons.highlight_outlined, + 'highlight_alt': Icons.highlight_alt, + 'highlight_alt_sharp': Icons.highlight_alt_sharp, + 'highlight_alt_rounded': Icons.highlight_alt_rounded, + 'highlight_alt_outlined': Icons.highlight_alt_outlined, + 'highlight_off': Icons.highlight_off, + 'highlight_off_sharp': Icons.highlight_off_sharp, + 'highlight_off_rounded': Icons.highlight_off_rounded, + 'highlight_off_outlined': Icons.highlight_off_outlined, + 'highlight_remove': Icons.highlight_remove, + 'highlight_remove_sharp': Icons.highlight_remove_sharp, + 'highlight_remove_rounded': Icons.highlight_remove_rounded, + 'highlight_remove_outlined': Icons.highlight_remove_outlined, + 'hiking': Icons.hiking, + 'hiking_sharp': Icons.hiking_sharp, + 'hiking_rounded': Icons.hiking_rounded, + 'hiking_outlined': Icons.hiking_outlined, + 'history': Icons.history, + 'history_sharp': Icons.history_sharp, + 'history_rounded': Icons.history_rounded, + 'history_outlined': Icons.history_outlined, + 'history_edu': Icons.history_edu, + 'history_edu_sharp': Icons.history_edu_sharp, + 'history_edu_rounded': Icons.history_edu_rounded, + 'history_edu_outlined': Icons.history_edu_outlined, + 'history_toggle_off': Icons.history_toggle_off, + 'history_toggle_off_sharp': Icons.history_toggle_off_sharp, + 'history_toggle_off_rounded': Icons.history_toggle_off_rounded, + 'history_toggle_off_outlined': Icons.history_toggle_off_outlined, + 'holiday_village': Icons.holiday_village, + 'holiday_village_sharp': Icons.holiday_village_sharp, + 'holiday_village_rounded': Icons.holiday_village_rounded, + 'holiday_village_outlined': Icons.holiday_village_outlined, + 'home': Icons.home, + 'home_sharp': Icons.home_sharp, + 'home_rounded': Icons.home_rounded, + 'home_outlined': Icons.home_outlined, + 'home_filled': Icons.home_filled, + 'home_max': Icons.home_max, + 'home_max_sharp': Icons.home_max_sharp, + 'home_max_rounded': Icons.home_max_rounded, + 'home_max_outlined': Icons.home_max_outlined, + 'home_mini': Icons.home_mini, + 'home_mini_sharp': Icons.home_mini_sharp, + 'home_mini_rounded': Icons.home_mini_rounded, + 'home_mini_outlined': Icons.home_mini_outlined, + 'home_repair_service': Icons.home_repair_service, + 'home_repair_service_sharp': Icons.home_repair_service_sharp, + 'home_repair_service_rounded': Icons.home_repair_service_rounded, + 'home_repair_service_outlined': Icons.home_repair_service_outlined, + 'home_work': Icons.home_work, + 'home_work_sharp': Icons.home_work_sharp, + 'home_work_rounded': Icons.home_work_rounded, + 'home_work_outlined': Icons.home_work_outlined, + 'horizontal_distribute': Icons.horizontal_distribute, + 'horizontal_distribute_sharp': Icons.horizontal_distribute_sharp, + 'horizontal_distribute_rounded': Icons.horizontal_distribute_rounded, + 'horizontal_distribute_outlined': Icons.horizontal_distribute_outlined, + 'horizontal_rule': Icons.horizontal_rule, + 'horizontal_rule_sharp': Icons.horizontal_rule_sharp, + 'horizontal_rule_rounded': Icons.horizontal_rule_rounded, + 'horizontal_rule_outlined': Icons.horizontal_rule_outlined, + 'horizontal_split': Icons.horizontal_split, + 'horizontal_split_sharp': Icons.horizontal_split_sharp, + 'horizontal_split_rounded': Icons.horizontal_split_rounded, + 'horizontal_split_outlined': Icons.horizontal_split_outlined, + 'hot_tub': Icons.hot_tub, + 'hot_tub_sharp': Icons.hot_tub_sharp, + 'hot_tub_rounded': Icons.hot_tub_rounded, + 'hot_tub_outlined': Icons.hot_tub_outlined, + 'hotel': Icons.hotel, + 'hotel_sharp': Icons.hotel_sharp, + 'hotel_rounded': Icons.hotel_rounded, + 'hotel_outlined': Icons.hotel_outlined, + 'hourglass_bottom': Icons.hourglass_bottom, + 'hourglass_bottom_sharp': Icons.hourglass_bottom_sharp, + 'hourglass_bottom_rounded': Icons.hourglass_bottom_rounded, + 'hourglass_bottom_outlined': Icons.hourglass_bottom_outlined, + 'hourglass_disabled': Icons.hourglass_disabled, + 'hourglass_disabled_sharp': Icons.hourglass_disabled_sharp, + 'hourglass_disabled_rounded': Icons.hourglass_disabled_rounded, + 'hourglass_disabled_outlined': Icons.hourglass_disabled_outlined, + 'hourglass_empty': Icons.hourglass_empty, + 'hourglass_empty_sharp': Icons.hourglass_empty_sharp, + 'hourglass_empty_rounded': Icons.hourglass_empty_rounded, + 'hourglass_empty_outlined': Icons.hourglass_empty_outlined, + 'hourglass_full': Icons.hourglass_full, + 'hourglass_full_sharp': Icons.hourglass_full_sharp, + 'hourglass_full_rounded': Icons.hourglass_full_rounded, + 'hourglass_full_outlined': Icons.hourglass_full_outlined, + 'hourglass_top': Icons.hourglass_top, + 'hourglass_top_sharp': Icons.hourglass_top_sharp, + 'hourglass_top_rounded': Icons.hourglass_top_rounded, + 'hourglass_top_outlined': Icons.hourglass_top_outlined, + 'house': Icons.house, + 'house_sharp': Icons.house_sharp, + 'house_rounded': Icons.house_rounded, + 'house_outlined': Icons.house_outlined, + 'house_siding': Icons.house_siding, + 'house_siding_sharp': Icons.house_siding_sharp, + 'house_siding_rounded': Icons.house_siding_rounded, + 'house_siding_outlined': Icons.house_siding_outlined, + 'houseboat': Icons.houseboat, + 'houseboat_sharp': Icons.houseboat_sharp, + 'houseboat_rounded': Icons.houseboat_rounded, + 'houseboat_outlined': Icons.houseboat_outlined, + 'how_to_reg': Icons.how_to_reg, + 'how_to_reg_sharp': Icons.how_to_reg_sharp, + 'how_to_reg_rounded': Icons.how_to_reg_rounded, + 'how_to_reg_outlined': Icons.how_to_reg_outlined, + 'how_to_vote': Icons.how_to_vote, + 'how_to_vote_sharp': Icons.how_to_vote_sharp, + 'how_to_vote_rounded': Icons.how_to_vote_rounded, + 'how_to_vote_outlined': Icons.how_to_vote_outlined, + 'http': Icons.http, + 'http_sharp': Icons.http_sharp, + 'http_rounded': Icons.http_rounded, + 'http_outlined': Icons.http_outlined, + 'https': Icons.https, + 'https_sharp': Icons.https_sharp, + 'https_rounded': Icons.https_rounded, + 'https_outlined': Icons.https_outlined, + 'hvac': Icons.hvac, + 'hvac_sharp': Icons.hvac_sharp, + 'hvac_rounded': Icons.hvac_rounded, + 'hvac_outlined': Icons.hvac_outlined, + 'ice_skating': Icons.ice_skating, + 'ice_skating_sharp': Icons.ice_skating_sharp, + 'ice_skating_rounded': Icons.ice_skating_rounded, + 'ice_skating_outlined': Icons.ice_skating_outlined, + 'icecream': Icons.icecream, + 'icecream_sharp': Icons.icecream_sharp, + 'icecream_rounded': Icons.icecream_rounded, + 'icecream_outlined': Icons.icecream_outlined, + 'image': Icons.image, + 'image_sharp': Icons.image_sharp, + 'image_rounded': Icons.image_rounded, + 'image_outlined': Icons.image_outlined, + 'image_aspect_ratio': Icons.image_aspect_ratio, + 'image_aspect_ratio_sharp': Icons.image_aspect_ratio_sharp, + 'image_aspect_ratio_rounded': Icons.image_aspect_ratio_rounded, + 'image_aspect_ratio_outlined': Icons.image_aspect_ratio_outlined, + 'image_not_supported': Icons.image_not_supported, + 'image_not_supported_sharp': Icons.image_not_supported_sharp, + 'image_not_supported_rounded': Icons.image_not_supported_rounded, + 'image_not_supported_outlined': Icons.image_not_supported_outlined, + 'image_search': Icons.image_search, + 'image_search_sharp': Icons.image_search_sharp, + 'image_search_rounded': Icons.image_search_rounded, + 'image_search_outlined': Icons.image_search_outlined, + 'imagesearch_roller': Icons.imagesearch_roller, + 'imagesearch_roller_sharp': Icons.imagesearch_roller_sharp, + 'imagesearch_roller_rounded': Icons.imagesearch_roller_rounded, + 'imagesearch_roller_outlined': Icons.imagesearch_roller_outlined, + 'import_contacts': Icons.import_contacts, + 'import_contacts_sharp': Icons.import_contacts_sharp, + 'import_contacts_rounded': Icons.import_contacts_rounded, + 'import_contacts_outlined': Icons.import_contacts_outlined, + 'import_export': Icons.import_export, + 'import_export_sharp': Icons.import_export_sharp, + 'import_export_rounded': Icons.import_export_rounded, + 'import_export_outlined': Icons.import_export_outlined, + 'important_devices': Icons.important_devices, + 'important_devices_sharp': Icons.important_devices_sharp, + 'important_devices_rounded': Icons.important_devices_rounded, + 'important_devices_outlined': Icons.important_devices_outlined, + 'inbox': Icons.inbox, + 'inbox_sharp': Icons.inbox_sharp, + 'inbox_rounded': Icons.inbox_rounded, + 'inbox_outlined': Icons.inbox_outlined, + 'indeterminate_check_box': Icons.indeterminate_check_box, + 'indeterminate_check_box_sharp': Icons.indeterminate_check_box_sharp, + 'indeterminate_check_box_rounded': + Icons.indeterminate_check_box_rounded, + 'indeterminate_check_box_outlined': + Icons.indeterminate_check_box_outlined, + 'info': Icons.info, + 'info_sharp': Icons.info_sharp, + 'info_rounded': Icons.info_rounded, + 'info_outlined': Icons.info_outlined, + 'info_outline': Icons.info_outline, + 'info_outline_sharp': Icons.info_outline_sharp, + 'info_outline_rounded': Icons.info_outline_rounded, + 'input': Icons.input, + 'input_sharp': Icons.input_sharp, + 'input_rounded': Icons.input_rounded, + 'input_outlined': Icons.input_outlined, + 'insert_chart': Icons.insert_chart, + 'insert_chart_sharp': Icons.insert_chart_sharp, + 'insert_chart_rounded': Icons.insert_chart_rounded, + 'insert_chart_outlined': Icons.insert_chart_outlined, + 'insert_chart_outlined_sharp': Icons.insert_chart_outlined_sharp, + 'insert_chart_outlined_rounded': Icons.insert_chart_outlined_rounded, + 'insert_chart_outlined_outlined': Icons.insert_chart_outlined_outlined, + 'insert_comment': Icons.insert_comment, + 'insert_comment_sharp': Icons.insert_comment_sharp, + 'insert_comment_rounded': Icons.insert_comment_rounded, + 'insert_comment_outlined': Icons.insert_comment_outlined, + 'insert_drive_file': Icons.insert_drive_file, + 'insert_drive_file_sharp': Icons.insert_drive_file_sharp, + 'insert_drive_file_rounded': Icons.insert_drive_file_rounded, + 'insert_drive_file_outlined': Icons.insert_drive_file_outlined, + 'insert_emoticon': Icons.insert_emoticon, + 'insert_emoticon_sharp': Icons.insert_emoticon_sharp, + 'insert_emoticon_rounded': Icons.insert_emoticon_rounded, + 'insert_emoticon_outlined': Icons.insert_emoticon_outlined, + 'insert_invitation': Icons.insert_invitation, + 'insert_invitation_sharp': Icons.insert_invitation_sharp, + 'insert_invitation_rounded': Icons.insert_invitation_rounded, + 'insert_invitation_outlined': Icons.insert_invitation_outlined, + 'insert_link': Icons.insert_link, + 'insert_link_sharp': Icons.insert_link_sharp, + 'insert_link_rounded': Icons.insert_link_rounded, + 'insert_link_outlined': Icons.insert_link_outlined, + 'insert_photo': Icons.insert_photo, + 'insert_photo_sharp': Icons.insert_photo_sharp, + 'insert_photo_rounded': Icons.insert_photo_rounded, + 'insert_photo_outlined': Icons.insert_photo_outlined, + 'insights': Icons.insights, + 'insights_sharp': Icons.insights_sharp, + 'insights_rounded': Icons.insights_rounded, + 'insights_outlined': Icons.insights_outlined, + 'integration_instructions': Icons.integration_instructions, + 'integration_instructions_sharp': Icons.integration_instructions_sharp, + 'integration_instructions_rounded': + Icons.integration_instructions_rounded, + 'integration_instructions_outlined': + Icons.integration_instructions_outlined, + 'inventory': Icons.inventory, + 'inventory_sharp': Icons.inventory_sharp, + 'inventory_rounded': Icons.inventory_rounded, + 'inventory_outlined': Icons.inventory_outlined, + 'inventory_2': Icons.inventory_2, + 'inventory_2_sharp': Icons.inventory_2_sharp, + 'inventory_2_rounded': Icons.inventory_2_rounded, + 'inventory_2_outlined': Icons.inventory_2_outlined, + 'invert_colors': Icons.invert_colors, + 'invert_colors_sharp': Icons.invert_colors_sharp, + 'invert_colors_rounded': Icons.invert_colors_rounded, + 'invert_colors_outlined': Icons.invert_colors_outlined, + 'invert_colors_off': Icons.invert_colors_off, + 'invert_colors_off_sharp': Icons.invert_colors_off_sharp, + 'invert_colors_off_rounded': Icons.invert_colors_off_rounded, + 'invert_colors_off_outlined': Icons.invert_colors_off_outlined, + 'invert_colors_on': Icons.invert_colors_on, + 'invert_colors_on_sharp': Icons.invert_colors_on_sharp, + 'invert_colors_on_rounded': Icons.invert_colors_on_rounded, + 'invert_colors_on_outlined': Icons.invert_colors_on_outlined, + 'ios_share': Icons.ios_share, + 'ios_share_sharp': Icons.ios_share_sharp, + 'ios_share_rounded': Icons.ios_share_rounded, + 'ios_share_outlined': Icons.ios_share_outlined, + 'iron': Icons.iron, + 'iron_sharp': Icons.iron_sharp, + 'iron_rounded': Icons.iron_rounded, + 'iron_outlined': Icons.iron_outlined, + 'iso': Icons.iso, + 'iso_sharp': Icons.iso_sharp, + 'iso_rounded': Icons.iso_rounded, + 'iso_outlined': Icons.iso_outlined, + 'kayaking': Icons.kayaking, + 'kayaking_sharp': Icons.kayaking_sharp, + 'kayaking_rounded': Icons.kayaking_rounded, + 'kayaking_outlined': Icons.kayaking_outlined, + 'keyboard': Icons.keyboard, + 'keyboard_sharp': Icons.keyboard_sharp, + 'keyboard_rounded': Icons.keyboard_rounded, + 'keyboard_outlined': Icons.keyboard_outlined, + 'keyboard_alt': Icons.keyboard_alt, + 'keyboard_alt_sharp': Icons.keyboard_alt_sharp, + 'keyboard_alt_rounded': Icons.keyboard_alt_rounded, + 'keyboard_alt_outlined': Icons.keyboard_alt_outlined, + 'keyboard_arrow_down': Icons.keyboard_arrow_down, + 'keyboard_arrow_down_sharp': Icons.keyboard_arrow_down_sharp, + 'keyboard_arrow_down_rounded': Icons.keyboard_arrow_down_rounded, + 'keyboard_arrow_down_outlined': Icons.keyboard_arrow_down_outlined, + 'keyboard_arrow_left': Icons.keyboard_arrow_left, + 'keyboard_arrow_left_sharp': Icons.keyboard_arrow_left_sharp, + 'keyboard_arrow_left_rounded': Icons.keyboard_arrow_left_rounded, + 'keyboard_arrow_left_outlined': Icons.keyboard_arrow_left_outlined, + 'keyboard_arrow_right': Icons.keyboard_arrow_right, + 'keyboard_arrow_right_sharp': Icons.keyboard_arrow_right_sharp, + 'keyboard_arrow_right_rounded': Icons.keyboard_arrow_right_rounded, + 'keyboard_arrow_right_outlined': Icons.keyboard_arrow_right_outlined, + 'keyboard_arrow_up': Icons.keyboard_arrow_up, + 'keyboard_arrow_up_sharp': Icons.keyboard_arrow_up_sharp, + 'keyboard_arrow_up_rounded': Icons.keyboard_arrow_up_rounded, + 'keyboard_arrow_up_outlined': Icons.keyboard_arrow_up_outlined, + 'keyboard_backspace': Icons.keyboard_backspace, + 'keyboard_backspace_sharp': Icons.keyboard_backspace_sharp, + 'keyboard_backspace_rounded': Icons.keyboard_backspace_rounded, + 'keyboard_backspace_outlined': Icons.keyboard_backspace_outlined, + 'keyboard_capslock': Icons.keyboard_capslock, + 'keyboard_capslock_sharp': Icons.keyboard_capslock_sharp, + 'keyboard_capslock_rounded': Icons.keyboard_capslock_rounded, + 'keyboard_capslock_outlined': Icons.keyboard_capslock_outlined, + 'keyboard_control': Icons.keyboard_control, + 'keyboard_control_sharp': Icons.keyboard_control_sharp, + 'keyboard_control_rounded': Icons.keyboard_control_rounded, + 'keyboard_control_outlined': Icons.keyboard_control_outlined, + 'keyboard_hide': Icons.keyboard_hide, + 'keyboard_hide_sharp': Icons.keyboard_hide_sharp, + 'keyboard_hide_rounded': Icons.keyboard_hide_rounded, + 'keyboard_hide_outlined': Icons.keyboard_hide_outlined, + 'keyboard_return': Icons.keyboard_return, + 'keyboard_return_sharp': Icons.keyboard_return_sharp, + 'keyboard_return_rounded': Icons.keyboard_return_rounded, + 'keyboard_return_outlined': Icons.keyboard_return_outlined, + 'keyboard_tab': Icons.keyboard_tab, + 'keyboard_tab_sharp': Icons.keyboard_tab_sharp, + 'keyboard_tab_rounded': Icons.keyboard_tab_rounded, + 'keyboard_tab_outlined': Icons.keyboard_tab_outlined, + 'keyboard_voice': Icons.keyboard_voice, + 'keyboard_voice_sharp': Icons.keyboard_voice_sharp, + 'keyboard_voice_rounded': Icons.keyboard_voice_rounded, + 'keyboard_voice_outlined': Icons.keyboard_voice_outlined, + 'king_bed': Icons.king_bed, + 'king_bed_sharp': Icons.king_bed_sharp, + 'king_bed_rounded': Icons.king_bed_rounded, + 'king_bed_outlined': Icons.king_bed_outlined, + 'kitchen': Icons.kitchen, + 'kitchen_sharp': Icons.kitchen_sharp, + 'kitchen_rounded': Icons.kitchen_rounded, + 'kitchen_outlined': Icons.kitchen_outlined, + 'kitesurfing': Icons.kitesurfing, + 'kitesurfing_sharp': Icons.kitesurfing_sharp, + 'kitesurfing_rounded': Icons.kitesurfing_rounded, + 'kitesurfing_outlined': Icons.kitesurfing_outlined, + 'label': Icons.label, + 'label_sharp': Icons.label_sharp, + 'label_rounded': Icons.label_rounded, + 'label_outlined': Icons.label_outlined, + 'label_important': Icons.label_important, + 'label_important_sharp': Icons.label_important_sharp, + 'label_important_rounded': Icons.label_important_rounded, + 'label_important_outlined': Icons.label_important_outlined, + 'label_important_outline': Icons.label_important_outline, + 'label_important_outline_sharp': Icons.label_important_outline_sharp, + 'label_important_outline_rounded': + Icons.label_important_outline_rounded, + 'label_off': Icons.label_off, + 'label_off_sharp': Icons.label_off_sharp, + 'label_off_rounded': Icons.label_off_rounded, + 'label_off_outlined': Icons.label_off_outlined, + 'label_outline': Icons.label_outline, + 'label_outline_sharp': Icons.label_outline_sharp, + 'label_outline_rounded': Icons.label_outline_rounded, + 'landscape': Icons.landscape, + 'landscape_sharp': Icons.landscape_sharp, + 'landscape_rounded': Icons.landscape_rounded, + 'landscape_outlined': Icons.landscape_outlined, + 'language': Icons.language, + 'language_sharp': Icons.language_sharp, + 'language_rounded': Icons.language_rounded, + 'language_outlined': Icons.language_outlined, + 'laptop': Icons.laptop, + 'laptop_sharp': Icons.laptop_sharp, + 'laptop_rounded': Icons.laptop_rounded, + 'laptop_outlined': Icons.laptop_outlined, + 'laptop_chromebook': Icons.laptop_chromebook, + 'laptop_chromebook_sharp': Icons.laptop_chromebook_sharp, + 'laptop_chromebook_rounded': Icons.laptop_chromebook_rounded, + 'laptop_chromebook_outlined': Icons.laptop_chromebook_outlined, + 'laptop_mac': Icons.laptop_mac, + 'laptop_mac_sharp': Icons.laptop_mac_sharp, + 'laptop_mac_rounded': Icons.laptop_mac_rounded, + 'laptop_mac_outlined': Icons.laptop_mac_outlined, + 'laptop_windows': Icons.laptop_windows, + 'laptop_windows_sharp': Icons.laptop_windows_sharp, + 'laptop_windows_rounded': Icons.laptop_windows_rounded, + 'laptop_windows_outlined': Icons.laptop_windows_outlined, + 'last_page': Icons.last_page, + 'last_page_sharp': Icons.last_page_sharp, + 'last_page_rounded': Icons.last_page_rounded, + 'last_page_outlined': Icons.last_page_outlined, + 'launch': Icons.launch, + 'launch_sharp': Icons.launch_sharp, + 'launch_rounded': Icons.launch_rounded, + 'launch_outlined': Icons.launch_outlined, + 'layers': Icons.layers, + 'layers_sharp': Icons.layers_sharp, + 'layers_rounded': Icons.layers_rounded, + 'layers_outlined': Icons.layers_outlined, + 'layers_clear': Icons.layers_clear, + 'layers_clear_sharp': Icons.layers_clear_sharp, + 'layers_clear_rounded': Icons.layers_clear_rounded, + 'layers_clear_outlined': Icons.layers_clear_outlined, + 'leaderboard': Icons.leaderboard, + 'leaderboard_sharp': Icons.leaderboard_sharp, + 'leaderboard_rounded': Icons.leaderboard_rounded, + 'leaderboard_outlined': Icons.leaderboard_outlined, + 'leak_add': Icons.leak_add, + 'leak_add_sharp': Icons.leak_add_sharp, + 'leak_add_rounded': Icons.leak_add_rounded, + 'leak_add_outlined': Icons.leak_add_outlined, + 'leak_remove': Icons.leak_remove, + 'leak_remove_sharp': Icons.leak_remove_sharp, + 'leak_remove_rounded': Icons.leak_remove_rounded, + 'leak_remove_outlined': Icons.leak_remove_outlined, + 'leave_bags_at_home': Icons.leave_bags_at_home, + 'leave_bags_at_home_sharp': Icons.leave_bags_at_home_sharp, + 'leave_bags_at_home_rounded': Icons.leave_bags_at_home_rounded, + 'leave_bags_at_home_outlined': Icons.leave_bags_at_home_outlined, + 'legend_toggle': Icons.legend_toggle, + 'legend_toggle_sharp': Icons.legend_toggle_sharp, + 'legend_toggle_rounded': Icons.legend_toggle_rounded, + 'legend_toggle_outlined': Icons.legend_toggle_outlined, + 'lens': Icons.lens, + 'lens_sharp': Icons.lens_sharp, + 'lens_rounded': Icons.lens_rounded, + 'lens_outlined': Icons.lens_outlined, + 'lens_blur': Icons.lens_blur, + 'lens_blur_sharp': Icons.lens_blur_sharp, + 'lens_blur_rounded': Icons.lens_blur_rounded, + 'lens_blur_outlined': Icons.lens_blur_outlined, + 'library_add': Icons.library_add, + 'library_add_sharp': Icons.library_add_sharp, + 'library_add_rounded': Icons.library_add_rounded, + 'library_add_outlined': Icons.library_add_outlined, + 'library_add_check': Icons.library_add_check, + 'library_add_check_sharp': Icons.library_add_check_sharp, + 'library_add_check_rounded': Icons.library_add_check_rounded, + 'library_add_check_outlined': Icons.library_add_check_outlined, + 'library_books': Icons.library_books, + 'library_books_sharp': Icons.library_books_sharp, + 'library_books_rounded': Icons.library_books_rounded, + 'library_books_outlined': Icons.library_books_outlined, + 'library_music': Icons.library_music, + 'library_music_sharp': Icons.library_music_sharp, + 'library_music_rounded': Icons.library_music_rounded, + 'library_music_outlined': Icons.library_music_outlined, + 'light': Icons.light, + 'light_sharp': Icons.light_sharp, + 'light_rounded': Icons.light_rounded, + 'light_outlined': Icons.light_outlined, + 'light_mode': Icons.light_mode, + 'light_mode_sharp': Icons.light_mode_sharp, + 'light_mode_rounded': Icons.light_mode_rounded, + 'light_mode_outlined': Icons.light_mode_outlined, + 'lightbulb': Icons.lightbulb, + 'lightbulb_sharp': Icons.lightbulb_sharp, + 'lightbulb_rounded': Icons.lightbulb_rounded, + 'lightbulb_outlined': Icons.lightbulb_outlined, + 'lightbulb_outline': Icons.lightbulb_outline, + 'lightbulb_outline_sharp': Icons.lightbulb_outline_sharp, + 'lightbulb_outline_rounded': Icons.lightbulb_outline_rounded, + 'line_style': Icons.line_style, + 'line_style_sharp': Icons.line_style_sharp, + 'line_style_rounded': Icons.line_style_rounded, + 'line_style_outlined': Icons.line_style_outlined, + 'line_weight': Icons.line_weight, + 'line_weight_sharp': Icons.line_weight_sharp, + 'line_weight_rounded': Icons.line_weight_rounded, + 'line_weight_outlined': Icons.line_weight_outlined, + 'linear_scale': Icons.linear_scale, + 'linear_scale_sharp': Icons.linear_scale_sharp, + 'linear_scale_rounded': Icons.linear_scale_rounded, + 'linear_scale_outlined': Icons.linear_scale_outlined, + 'link': Icons.link, + 'link_sharp': Icons.link_sharp, + 'link_rounded': Icons.link_rounded, + 'link_outlined': Icons.link_outlined, + 'link_off': Icons.link_off, + 'link_off_sharp': Icons.link_off_sharp, + 'link_off_rounded': Icons.link_off_rounded, + 'link_off_outlined': Icons.link_off_outlined, + 'linked_camera': Icons.linked_camera, + 'linked_camera_sharp': Icons.linked_camera_sharp, + 'linked_camera_rounded': Icons.linked_camera_rounded, + 'linked_camera_outlined': Icons.linked_camera_outlined, + 'liquor': Icons.liquor, + 'liquor_sharp': Icons.liquor_sharp, + 'liquor_rounded': Icons.liquor_rounded, + 'liquor_outlined': Icons.liquor_outlined, + 'list': Icons.list, + 'list_sharp': Icons.list_sharp, + 'list_rounded': Icons.list_rounded, + 'list_outlined': Icons.list_outlined, + 'list_alt': Icons.list_alt, + 'list_alt_sharp': Icons.list_alt_sharp, + 'list_alt_rounded': Icons.list_alt_rounded, + 'list_alt_outlined': Icons.list_alt_outlined, + 'live_help': Icons.live_help, + 'live_help_sharp': Icons.live_help_sharp, + 'live_help_rounded': Icons.live_help_rounded, + 'live_help_outlined': Icons.live_help_outlined, + 'live_tv': Icons.live_tv, + 'live_tv_sharp': Icons.live_tv_sharp, + 'live_tv_rounded': Icons.live_tv_rounded, + 'live_tv_outlined': Icons.live_tv_outlined, + 'living': Icons.living, + 'living_sharp': Icons.living_sharp, + 'living_rounded': Icons.living_rounded, + 'living_outlined': Icons.living_outlined, + 'local_activity': Icons.local_activity, + 'local_activity_sharp': Icons.local_activity_sharp, + 'local_activity_rounded': Icons.local_activity_rounded, + 'local_activity_outlined': Icons.local_activity_outlined, + 'local_airport': Icons.local_airport, + 'local_airport_sharp': Icons.local_airport_sharp, + 'local_airport_rounded': Icons.local_airport_rounded, + 'local_airport_outlined': Icons.local_airport_outlined, + 'local_atm': Icons.local_atm, + 'local_atm_sharp': Icons.local_atm_sharp, + 'local_atm_rounded': Icons.local_atm_rounded, + 'local_atm_outlined': Icons.local_atm_outlined, + 'local_attraction': Icons.local_attraction, + 'local_attraction_sharp': Icons.local_attraction_sharp, + 'local_attraction_rounded': Icons.local_attraction_rounded, + 'local_attraction_outlined': Icons.local_attraction_outlined, + 'local_bar': Icons.local_bar, + 'local_bar_sharp': Icons.local_bar_sharp, + 'local_bar_rounded': Icons.local_bar_rounded, + 'local_bar_outlined': Icons.local_bar_outlined, + 'local_cafe': Icons.local_cafe, + 'local_cafe_sharp': Icons.local_cafe_sharp, + 'local_cafe_rounded': Icons.local_cafe_rounded, + 'local_cafe_outlined': Icons.local_cafe_outlined, + 'local_car_wash': Icons.local_car_wash, + 'local_car_wash_sharp': Icons.local_car_wash_sharp, + 'local_car_wash_rounded': Icons.local_car_wash_rounded, + 'local_car_wash_outlined': Icons.local_car_wash_outlined, + 'local_convenience_store': Icons.local_convenience_store, + 'local_convenience_store_sharp': Icons.local_convenience_store_sharp, + 'local_convenience_store_rounded': + Icons.local_convenience_store_rounded, + 'local_convenience_store_outlined': + Icons.local_convenience_store_outlined, + 'local_dining': Icons.local_dining, + 'local_dining_sharp': Icons.local_dining_sharp, + 'local_dining_rounded': Icons.local_dining_rounded, + 'local_dining_outlined': Icons.local_dining_outlined, + 'local_drink': Icons.local_drink, + 'local_drink_sharp': Icons.local_drink_sharp, + 'local_drink_rounded': Icons.local_drink_rounded, + 'local_drink_outlined': Icons.local_drink_outlined, + 'local_fire_department': Icons.local_fire_department, + 'local_fire_department_sharp': Icons.local_fire_department_sharp, + 'local_fire_department_rounded': Icons.local_fire_department_rounded, + 'local_fire_department_outlined': Icons.local_fire_department_outlined, + 'local_florist': Icons.local_florist, + 'local_florist_sharp': Icons.local_florist_sharp, + 'local_florist_rounded': Icons.local_florist_rounded, + 'local_florist_outlined': Icons.local_florist_outlined, + 'local_gas_station': Icons.local_gas_station, + 'local_gas_station_sharp': Icons.local_gas_station_sharp, + 'local_gas_station_rounded': Icons.local_gas_station_rounded, + 'local_gas_station_outlined': Icons.local_gas_station_outlined, + 'local_grocery_store': Icons.local_grocery_store, + 'local_grocery_store_sharp': Icons.local_grocery_store_sharp, + 'local_grocery_store_rounded': Icons.local_grocery_store_rounded, + 'local_grocery_store_outlined': Icons.local_grocery_store_outlined, + 'local_hospital': Icons.local_hospital, + 'local_hospital_sharp': Icons.local_hospital_sharp, + 'local_hospital_rounded': Icons.local_hospital_rounded, + 'local_hospital_outlined': Icons.local_hospital_outlined, + 'local_hotel': Icons.local_hotel, + 'local_hotel_sharp': Icons.local_hotel_sharp, + 'local_hotel_rounded': Icons.local_hotel_rounded, + 'local_hotel_outlined': Icons.local_hotel_outlined, + 'local_laundry_service': Icons.local_laundry_service, + 'local_laundry_service_sharp': Icons.local_laundry_service_sharp, + 'local_laundry_service_rounded': Icons.local_laundry_service_rounded, + 'local_laundry_service_outlined': Icons.local_laundry_service_outlined, + 'local_library': Icons.local_library, + 'local_library_sharp': Icons.local_library_sharp, + 'local_library_rounded': Icons.local_library_rounded, + 'local_library_outlined': Icons.local_library_outlined, + 'local_mall': Icons.local_mall, + 'local_mall_sharp': Icons.local_mall_sharp, + 'local_mall_rounded': Icons.local_mall_rounded, + 'local_mall_outlined': Icons.local_mall_outlined, + 'local_movies': Icons.local_movies, + 'local_movies_sharp': Icons.local_movies_sharp, + 'local_movies_rounded': Icons.local_movies_rounded, + 'local_movies_outlined': Icons.local_movies_outlined, + 'local_offer': Icons.local_offer, + 'local_offer_sharp': Icons.local_offer_sharp, + 'local_offer_rounded': Icons.local_offer_rounded, + 'local_offer_outlined': Icons.local_offer_outlined, + 'local_parking': Icons.local_parking, + 'local_parking_sharp': Icons.local_parking_sharp, + 'local_parking_rounded': Icons.local_parking_rounded, + 'local_parking_outlined': Icons.local_parking_outlined, + 'local_pharmacy': Icons.local_pharmacy, + 'local_pharmacy_sharp': Icons.local_pharmacy_sharp, + 'local_pharmacy_rounded': Icons.local_pharmacy_rounded, + 'local_pharmacy_outlined': Icons.local_pharmacy_outlined, + 'local_phone': Icons.local_phone, + 'local_phone_sharp': Icons.local_phone_sharp, + 'local_phone_rounded': Icons.local_phone_rounded, + 'local_phone_outlined': Icons.local_phone_outlined, + 'local_pizza': Icons.local_pizza, + 'local_pizza_sharp': Icons.local_pizza_sharp, + 'local_pizza_rounded': Icons.local_pizza_rounded, + 'local_pizza_outlined': Icons.local_pizza_outlined, + 'local_play': Icons.local_play, + 'local_play_sharp': Icons.local_play_sharp, + 'local_play_rounded': Icons.local_play_rounded, + 'local_play_outlined': Icons.local_play_outlined, + 'local_police': Icons.local_police, + 'local_police_sharp': Icons.local_police_sharp, + 'local_police_rounded': Icons.local_police_rounded, + 'local_police_outlined': Icons.local_police_outlined, + 'local_post_office': Icons.local_post_office, + 'local_post_office_sharp': Icons.local_post_office_sharp, + 'local_post_office_rounded': Icons.local_post_office_rounded, + 'local_post_office_outlined': Icons.local_post_office_outlined, + 'local_print_shop': Icons.local_print_shop, + 'local_print_shop_sharp': Icons.local_print_shop_sharp, + 'local_print_shop_rounded': Icons.local_print_shop_rounded, + 'local_print_shop_outlined': Icons.local_print_shop_outlined, + 'local_printshop': Icons.local_printshop, + 'local_printshop_sharp': Icons.local_printshop_sharp, + 'local_printshop_rounded': Icons.local_printshop_rounded, + 'local_printshop_outlined': Icons.local_printshop_outlined, + 'local_restaurant': Icons.local_restaurant, + 'local_restaurant_sharp': Icons.local_restaurant_sharp, + 'local_restaurant_rounded': Icons.local_restaurant_rounded, + 'local_restaurant_outlined': Icons.local_restaurant_outlined, + 'local_see': Icons.local_see, + 'local_see_sharp': Icons.local_see_sharp, + 'local_see_rounded': Icons.local_see_rounded, + 'local_see_outlined': Icons.local_see_outlined, + 'local_shipping': Icons.local_shipping, + 'local_shipping_sharp': Icons.local_shipping_sharp, + 'local_shipping_rounded': Icons.local_shipping_rounded, + 'local_shipping_outlined': Icons.local_shipping_outlined, + 'local_taxi': Icons.local_taxi, + 'local_taxi_sharp': Icons.local_taxi_sharp, + 'local_taxi_rounded': Icons.local_taxi_rounded, + 'local_taxi_outlined': Icons.local_taxi_outlined, + 'location_city': Icons.location_city, + 'location_city_sharp': Icons.location_city_sharp, + 'location_city_rounded': Icons.location_city_rounded, + 'location_city_outlined': Icons.location_city_outlined, + 'location_disabled': Icons.location_disabled, + 'location_disabled_sharp': Icons.location_disabled_sharp, + 'location_disabled_rounded': Icons.location_disabled_rounded, + 'location_disabled_outlined': Icons.location_disabled_outlined, + 'location_history': Icons.location_history, + 'location_history_sharp': Icons.location_history_sharp, + 'location_history_rounded': Icons.location_history_rounded, + 'location_history_outlined': Icons.location_history_outlined, + 'location_off': Icons.location_off, + 'location_off_sharp': Icons.location_off_sharp, + 'location_off_rounded': Icons.location_off_rounded, + 'location_off_outlined': Icons.location_off_outlined, + 'location_on': Icons.location_on, + 'location_on_sharp': Icons.location_on_sharp, + 'location_on_rounded': Icons.location_on_rounded, + 'location_on_outlined': Icons.location_on_outlined, + 'location_pin': Icons.location_pin, + 'location_searching': Icons.location_searching, + 'location_searching_sharp': Icons.location_searching_sharp, + 'location_searching_rounded': Icons.location_searching_rounded, + 'location_searching_outlined': Icons.location_searching_outlined, + 'lock': Icons.lock, + 'lock_sharp': Icons.lock_sharp, + 'lock_rounded': Icons.lock_rounded, + 'lock_outlined': Icons.lock_outlined, + 'lock_clock': Icons.lock_clock, + 'lock_clock_sharp': Icons.lock_clock_sharp, + 'lock_clock_rounded': Icons.lock_clock_rounded, + 'lock_clock_outlined': Icons.lock_clock_outlined, + 'lock_open': Icons.lock_open, + 'lock_open_sharp': Icons.lock_open_sharp, + 'lock_open_rounded': Icons.lock_open_rounded, + 'lock_open_outlined': Icons.lock_open_outlined, + 'lock_outline': Icons.lock_outline, + 'lock_outline_sharp': Icons.lock_outline_sharp, + 'lock_outline_rounded': Icons.lock_outline_rounded, + 'login': Icons.login, + 'login_sharp': Icons.login_sharp, + 'login_rounded': Icons.login_rounded, + 'login_outlined': Icons.login_outlined, + 'logout': Icons.logout, + 'logout_sharp': Icons.logout_sharp, + 'logout_rounded': Icons.logout_rounded, + 'logout_outlined': Icons.logout_outlined, + 'looks': Icons.looks, + 'looks_sharp': Icons.looks_sharp, + 'looks_rounded': Icons.looks_rounded, + 'looks_outlined': Icons.looks_outlined, + 'looks_3': Icons.looks_3, + 'looks_3_sharp': Icons.looks_3_sharp, + 'looks_3_rounded': Icons.looks_3_rounded, + 'looks_3_outlined': Icons.looks_3_outlined, + 'looks_4': Icons.looks_4, + 'looks_4_sharp': Icons.looks_4_sharp, + 'looks_4_rounded': Icons.looks_4_rounded, + 'looks_4_outlined': Icons.looks_4_outlined, + 'looks_5': Icons.looks_5, + 'looks_5_sharp': Icons.looks_5_sharp, + 'looks_5_rounded': Icons.looks_5_rounded, + 'looks_5_outlined': Icons.looks_5_outlined, + 'looks_6': Icons.looks_6, + 'looks_6_sharp': Icons.looks_6_sharp, + 'looks_6_rounded': Icons.looks_6_rounded, + 'looks_6_outlined': Icons.looks_6_outlined, + 'looks_one': Icons.looks_one, + 'looks_one_sharp': Icons.looks_one_sharp, + 'looks_one_rounded': Icons.looks_one_rounded, + 'looks_one_outlined': Icons.looks_one_outlined, + 'looks_two': Icons.looks_two, + 'looks_two_sharp': Icons.looks_two_sharp, + 'looks_two_rounded': Icons.looks_two_rounded, + 'looks_two_outlined': Icons.looks_two_outlined, + 'loop': Icons.loop, + 'loop_sharp': Icons.loop_sharp, + 'loop_rounded': Icons.loop_rounded, + 'loop_outlined': Icons.loop_outlined, + 'loupe': Icons.loupe, + 'loupe_sharp': Icons.loupe_sharp, + 'loupe_rounded': Icons.loupe_rounded, + 'loupe_outlined': Icons.loupe_outlined, + 'low_priority': Icons.low_priority, + 'low_priority_sharp': Icons.low_priority_sharp, + 'low_priority_rounded': Icons.low_priority_rounded, + 'low_priority_outlined': Icons.low_priority_outlined, + 'loyalty': Icons.loyalty, + 'loyalty_sharp': Icons.loyalty_sharp, + 'loyalty_rounded': Icons.loyalty_rounded, + 'loyalty_outlined': Icons.loyalty_outlined, + 'lte_mobiledata': Icons.lte_mobiledata, + 'lte_mobiledata_sharp': Icons.lte_mobiledata_sharp, + 'lte_mobiledata_rounded': Icons.lte_mobiledata_rounded, + 'lte_mobiledata_outlined': Icons.lte_mobiledata_outlined, + 'lte_plus_mobiledata': Icons.lte_plus_mobiledata, + 'lte_plus_mobiledata_sharp': Icons.lte_plus_mobiledata_sharp, + 'lte_plus_mobiledata_rounded': Icons.lte_plus_mobiledata_rounded, + 'lte_plus_mobiledata_outlined': Icons.lte_plus_mobiledata_outlined, + 'luggage': Icons.luggage, + 'luggage_sharp': Icons.luggage_sharp, + 'luggage_rounded': Icons.luggage_rounded, + 'luggage_outlined': Icons.luggage_outlined, + 'lunch_dining': Icons.lunch_dining, + 'lunch_dining_sharp': Icons.lunch_dining_sharp, + 'lunch_dining_rounded': Icons.lunch_dining_rounded, + 'lunch_dining_outlined': Icons.lunch_dining_outlined, + 'mail': Icons.mail, + 'mail_sharp': Icons.mail_sharp, + 'mail_rounded': Icons.mail_rounded, + 'mail_outlined': Icons.mail_outlined, + 'mail_outline': Icons.mail_outline, + 'mail_outline_sharp': Icons.mail_outline_sharp, + 'mail_outline_rounded': Icons.mail_outline_rounded, + 'mail_outline_outlined': Icons.mail_outline_outlined, + 'male': Icons.male, + 'male_sharp': Icons.male_sharp, + 'male_rounded': Icons.male_rounded, + 'male_outlined': Icons.male_outlined, + 'manage_accounts': Icons.manage_accounts, + 'manage_accounts_sharp': Icons.manage_accounts_sharp, + 'manage_accounts_rounded': Icons.manage_accounts_rounded, + 'manage_accounts_outlined': Icons.manage_accounts_outlined, + 'manage_search': Icons.manage_search, + 'manage_search_sharp': Icons.manage_search_sharp, + 'manage_search_rounded': Icons.manage_search_rounded, + 'manage_search_outlined': Icons.manage_search_outlined, + 'map': Icons.map, + 'map_sharp': Icons.map_sharp, + 'map_rounded': Icons.map_rounded, + 'map_outlined': Icons.map_outlined, + 'maps_home_work': Icons.maps_home_work, + 'maps_home_work_sharp': Icons.maps_home_work_sharp, + 'maps_home_work_rounded': Icons.maps_home_work_rounded, + 'maps_home_work_outlined': Icons.maps_home_work_outlined, + 'maps_ugc': Icons.maps_ugc, + 'maps_ugc_sharp': Icons.maps_ugc_sharp, + 'maps_ugc_rounded': Icons.maps_ugc_rounded, + 'maps_ugc_outlined': Icons.maps_ugc_outlined, + 'margin': Icons.margin, + 'margin_sharp': Icons.margin_sharp, + 'margin_rounded': Icons.margin_rounded, + 'margin_outlined': Icons.margin_outlined, + 'mark_as_unread': Icons.mark_as_unread, + 'mark_as_unread_sharp': Icons.mark_as_unread_sharp, + 'mark_as_unread_rounded': Icons.mark_as_unread_rounded, + 'mark_as_unread_outlined': Icons.mark_as_unread_outlined, + 'mark_chat_read': Icons.mark_chat_read, + 'mark_chat_read_sharp': Icons.mark_chat_read_sharp, + 'mark_chat_read_rounded': Icons.mark_chat_read_rounded, + 'mark_chat_read_outlined': Icons.mark_chat_read_outlined, + 'mark_chat_unread': Icons.mark_chat_unread, + 'mark_chat_unread_sharp': Icons.mark_chat_unread_sharp, + 'mark_chat_unread_rounded': Icons.mark_chat_unread_rounded, + 'mark_chat_unread_outlined': Icons.mark_chat_unread_outlined, + 'mark_email_read': Icons.mark_email_read, + 'mark_email_read_sharp': Icons.mark_email_read_sharp, + 'mark_email_read_rounded': Icons.mark_email_read_rounded, + 'mark_email_read_outlined': Icons.mark_email_read_outlined, + 'mark_email_unread': Icons.mark_email_unread, + 'mark_email_unread_sharp': Icons.mark_email_unread_sharp, + 'mark_email_unread_rounded': Icons.mark_email_unread_rounded, + 'mark_email_unread_outlined': Icons.mark_email_unread_outlined, + 'markunread': Icons.markunread, + 'markunread_sharp': Icons.markunread_sharp, + 'markunread_rounded': Icons.markunread_rounded, + 'markunread_outlined': Icons.markunread_outlined, + 'markunread_mailbox': Icons.markunread_mailbox, + 'markunread_mailbox_sharp': Icons.markunread_mailbox_sharp, + 'markunread_mailbox_rounded': Icons.markunread_mailbox_rounded, + 'markunread_mailbox_outlined': Icons.markunread_mailbox_outlined, + 'masks': Icons.masks, + 'masks_sharp': Icons.masks_sharp, + 'masks_rounded': Icons.masks_rounded, + 'masks_outlined': Icons.masks_outlined, + 'maximize': Icons.maximize, + 'maximize_sharp': Icons.maximize_sharp, + 'maximize_rounded': Icons.maximize_rounded, + 'maximize_outlined': Icons.maximize_outlined, + 'media_bluetooth_off': Icons.media_bluetooth_off, + 'media_bluetooth_off_sharp': Icons.media_bluetooth_off_sharp, + 'media_bluetooth_off_rounded': Icons.media_bluetooth_off_rounded, + 'media_bluetooth_off_outlined': Icons.media_bluetooth_off_outlined, + 'media_bluetooth_on': Icons.media_bluetooth_on, + 'media_bluetooth_on_sharp': Icons.media_bluetooth_on_sharp, + 'media_bluetooth_on_rounded': Icons.media_bluetooth_on_rounded, + 'media_bluetooth_on_outlined': Icons.media_bluetooth_on_outlined, + 'mediation': Icons.mediation, + 'mediation_sharp': Icons.mediation_sharp, + 'mediation_rounded': Icons.mediation_rounded, + 'mediation_outlined': Icons.mediation_outlined, + 'medical_services': Icons.medical_services, + 'medical_services_sharp': Icons.medical_services_sharp, + 'medical_services_rounded': Icons.medical_services_rounded, + 'medical_services_outlined': Icons.medical_services_outlined, + 'medication': Icons.medication, + 'medication_sharp': Icons.medication_sharp, + 'medication_rounded': Icons.medication_rounded, + 'medication_outlined': Icons.medication_outlined, + 'meeting_room': Icons.meeting_room, + 'meeting_room_sharp': Icons.meeting_room_sharp, + 'meeting_room_rounded': Icons.meeting_room_rounded, + 'meeting_room_outlined': Icons.meeting_room_outlined, + 'memory': Icons.memory, + 'memory_sharp': Icons.memory_sharp, + 'memory_rounded': Icons.memory_rounded, + 'memory_outlined': Icons.memory_outlined, + 'menu': Icons.menu, + 'menu_sharp': Icons.menu_sharp, + 'menu_rounded': Icons.menu_rounded, + 'menu_outlined': Icons.menu_outlined, + 'menu_book': Icons.menu_book, + 'menu_book_sharp': Icons.menu_book_sharp, + 'menu_book_rounded': Icons.menu_book_rounded, + 'menu_book_outlined': Icons.menu_book_outlined, + 'menu_open': Icons.menu_open, + 'menu_open_sharp': Icons.menu_open_sharp, + 'menu_open_rounded': Icons.menu_open_rounded, + 'menu_open_outlined': Icons.menu_open_outlined, + 'merge_type': Icons.merge_type, + 'merge_type_sharp': Icons.merge_type_sharp, + 'merge_type_rounded': Icons.merge_type_rounded, + 'merge_type_outlined': Icons.merge_type_outlined, + 'message': Icons.message, + 'message_sharp': Icons.message_sharp, + 'message_rounded': Icons.message_rounded, + 'message_outlined': Icons.message_outlined, + 'messenger': Icons.messenger, + 'messenger_sharp': Icons.messenger_sharp, + 'messenger_rounded': Icons.messenger_rounded, + 'messenger_outlined': Icons.messenger_outlined, + 'messenger_outline': Icons.messenger_outline, + 'messenger_outline_sharp': Icons.messenger_outline_sharp, + 'messenger_outline_rounded': Icons.messenger_outline_rounded, + 'messenger_outline_outlined': Icons.messenger_outline_outlined, + 'mic': Icons.mic, + 'mic_sharp': Icons.mic_sharp, + 'mic_rounded': Icons.mic_rounded, + 'mic_outlined': Icons.mic_outlined, + 'mic_external_off': Icons.mic_external_off, + 'mic_external_off_sharp': Icons.mic_external_off_sharp, + 'mic_external_off_rounded': Icons.mic_external_off_rounded, + 'mic_external_off_outlined': Icons.mic_external_off_outlined, + 'mic_external_on': Icons.mic_external_on, + 'mic_external_on_sharp': Icons.mic_external_on_sharp, + 'mic_external_on_rounded': Icons.mic_external_on_rounded, + 'mic_external_on_outlined': Icons.mic_external_on_outlined, + 'mic_none': Icons.mic_none, + 'mic_none_sharp': Icons.mic_none_sharp, + 'mic_none_rounded': Icons.mic_none_rounded, + 'mic_none_outlined': Icons.mic_none_outlined, + 'mic_off': Icons.mic_off, + 'mic_off_sharp': Icons.mic_off_sharp, + 'mic_off_rounded': Icons.mic_off_rounded, + 'mic_off_outlined': Icons.mic_off_outlined, + 'microwave': Icons.microwave, + 'microwave_sharp': Icons.microwave_sharp, + 'microwave_rounded': Icons.microwave_rounded, + 'microwave_outlined': Icons.microwave_outlined, + 'military_tech': Icons.military_tech, + 'military_tech_sharp': Icons.military_tech_sharp, + 'military_tech_rounded': Icons.military_tech_rounded, + 'military_tech_outlined': Icons.military_tech_outlined, + 'minimize': Icons.minimize, + 'minimize_sharp': Icons.minimize_sharp, + 'minimize_rounded': Icons.minimize_rounded, + 'minimize_outlined': Icons.minimize_outlined, + 'miscellaneous_services': Icons.miscellaneous_services, + 'miscellaneous_services_sharp': Icons.miscellaneous_services_sharp, + 'miscellaneous_services_rounded': Icons.miscellaneous_services_rounded, + 'miscellaneous_services_outlined': + Icons.miscellaneous_services_outlined, + 'missed_video_call': Icons.missed_video_call, + 'missed_video_call_sharp': Icons.missed_video_call_sharp, + 'missed_video_call_rounded': Icons.missed_video_call_rounded, + 'missed_video_call_outlined': Icons.missed_video_call_outlined, + 'mms': Icons.mms, + 'mms_sharp': Icons.mms_sharp, + 'mms_rounded': Icons.mms_rounded, + 'mms_outlined': Icons.mms_outlined, + 'mobile_friendly': Icons.mobile_friendly, + 'mobile_friendly_sharp': Icons.mobile_friendly_sharp, + 'mobile_friendly_rounded': Icons.mobile_friendly_rounded, + 'mobile_friendly_outlined': Icons.mobile_friendly_outlined, + 'mobile_off': Icons.mobile_off, + 'mobile_off_sharp': Icons.mobile_off_sharp, + 'mobile_off_rounded': Icons.mobile_off_rounded, + 'mobile_off_outlined': Icons.mobile_off_outlined, + 'mobile_screen_share': Icons.mobile_screen_share, + 'mobile_screen_share_sharp': Icons.mobile_screen_share_sharp, + 'mobile_screen_share_rounded': Icons.mobile_screen_share_rounded, + 'mobile_screen_share_outlined': Icons.mobile_screen_share_outlined, + 'mobiledata_off': Icons.mobiledata_off, + 'mobiledata_off_sharp': Icons.mobiledata_off_sharp, + 'mobiledata_off_rounded': Icons.mobiledata_off_rounded, + 'mobiledata_off_outlined': Icons.mobiledata_off_outlined, + 'mode': Icons.mode, + 'mode_sharp': Icons.mode_sharp, + 'mode_rounded': Icons.mode_rounded, + 'mode_outlined': Icons.mode_outlined, + 'mode_comment': Icons.mode_comment, + 'mode_comment_sharp': Icons.mode_comment_sharp, + 'mode_comment_rounded': Icons.mode_comment_rounded, + 'mode_comment_outlined': Icons.mode_comment_outlined, + 'mode_edit': Icons.mode_edit, + 'mode_edit_sharp': Icons.mode_edit_sharp, + 'mode_edit_rounded': Icons.mode_edit_rounded, + 'mode_edit_outlined': Icons.mode_edit_outlined, + 'mode_edit_outline': Icons.mode_edit_outline, + 'mode_edit_outline_sharp': Icons.mode_edit_outline_sharp, + 'mode_edit_outline_rounded': Icons.mode_edit_outline_rounded, + 'mode_edit_outline_outlined': Icons.mode_edit_outline_outlined, + 'mode_night': Icons.mode_night, + 'mode_night_sharp': Icons.mode_night_sharp, + 'mode_night_rounded': Icons.mode_night_rounded, + 'mode_night_outlined': Icons.mode_night_outlined, + 'mode_standby': Icons.mode_standby, + 'mode_standby_sharp': Icons.mode_standby_sharp, + 'mode_standby_rounded': Icons.mode_standby_rounded, + 'mode_standby_outlined': Icons.mode_standby_outlined, + 'model_training': Icons.model_training, + 'model_training_sharp': Icons.model_training_sharp, + 'model_training_rounded': Icons.model_training_rounded, + 'model_training_outlined': Icons.model_training_outlined, + 'monetization_on': Icons.monetization_on, + 'monetization_on_sharp': Icons.monetization_on_sharp, + 'monetization_on_rounded': Icons.monetization_on_rounded, + 'monetization_on_outlined': Icons.monetization_on_outlined, + 'money': Icons.money, + 'money_sharp': Icons.money_sharp, + 'money_rounded': Icons.money_rounded, + 'money_outlined': Icons.money_outlined, + 'money_off': Icons.money_off, + 'money_off_sharp': Icons.money_off_sharp, + 'money_off_rounded': Icons.money_off_rounded, + 'money_off_outlined': Icons.money_off_outlined, + 'money_off_csred': Icons.money_off_csred, + 'money_off_csred_sharp': Icons.money_off_csred_sharp, + 'money_off_csred_rounded': Icons.money_off_csred_rounded, + 'money_off_csred_outlined': Icons.money_off_csred_outlined, + 'monitor': Icons.monitor, + 'monitor_sharp': Icons.monitor_sharp, + 'monitor_rounded': Icons.monitor_rounded, + 'monitor_outlined': Icons.monitor_outlined, + 'monitor_weight': Icons.monitor_weight, + 'monitor_weight_sharp': Icons.monitor_weight_sharp, + 'monitor_weight_rounded': Icons.monitor_weight_rounded, + 'monitor_weight_outlined': Icons.monitor_weight_outlined, + 'monochrome_photos': Icons.monochrome_photos, + 'monochrome_photos_sharp': Icons.monochrome_photos_sharp, + 'monochrome_photos_rounded': Icons.monochrome_photos_rounded, + 'monochrome_photos_outlined': Icons.monochrome_photos_outlined, + 'mood': Icons.mood, + 'mood_sharp': Icons.mood_sharp, + 'mood_rounded': Icons.mood_rounded, + 'mood_outlined': Icons.mood_outlined, + 'mood_bad': Icons.mood_bad, + 'mood_bad_sharp': Icons.mood_bad_sharp, + 'mood_bad_rounded': Icons.mood_bad_rounded, + 'mood_bad_outlined': Icons.mood_bad_outlined, + 'moped': Icons.moped, + 'moped_sharp': Icons.moped_sharp, + 'moped_rounded': Icons.moped_rounded, + 'moped_outlined': Icons.moped_outlined, + 'more': Icons.more, + 'more_sharp': Icons.more_sharp, + 'more_rounded': Icons.more_rounded, + 'more_outlined': Icons.more_outlined, + 'more_horiz': Icons.more_horiz, + 'more_horiz_sharp': Icons.more_horiz_sharp, + 'more_horiz_rounded': Icons.more_horiz_rounded, + 'more_horiz_outlined': Icons.more_horiz_outlined, + 'more_time': Icons.more_time, + 'more_time_sharp': Icons.more_time_sharp, + 'more_time_rounded': Icons.more_time_rounded, + 'more_time_outlined': Icons.more_time_outlined, + 'more_vert': Icons.more_vert, + 'more_vert_sharp': Icons.more_vert_sharp, + 'more_vert_rounded': Icons.more_vert_rounded, + 'more_vert_outlined': Icons.more_vert_outlined, + 'motion_photos_auto': Icons.motion_photos_auto, + 'motion_photos_auto_sharp': Icons.motion_photos_auto_sharp, + 'motion_photos_auto_rounded': Icons.motion_photos_auto_rounded, + 'motion_photos_auto_outlined': Icons.motion_photos_auto_outlined, + 'motion_photos_off': Icons.motion_photos_off, + 'motion_photos_off_sharp': Icons.motion_photos_off_sharp, + 'motion_photos_off_rounded': Icons.motion_photos_off_rounded, + 'motion_photos_off_outlined': Icons.motion_photos_off_outlined, + 'motion_photos_on': Icons.motion_photos_on, + 'motion_photos_on_sharp': Icons.motion_photos_on_sharp, + 'motion_photos_on_rounded': Icons.motion_photos_on_rounded, + 'motion_photos_on_outlined': Icons.motion_photos_on_outlined, + 'motion_photos_pause': Icons.motion_photos_pause, + 'motion_photos_pause_sharp': Icons.motion_photos_pause_sharp, + 'motion_photos_pause_rounded': Icons.motion_photos_pause_rounded, + 'motion_photos_pause_outlined': Icons.motion_photos_pause_outlined, + 'motion_photos_paused': Icons.motion_photos_paused, + 'motion_photos_paused_sharp': Icons.motion_photos_paused_sharp, + 'motion_photos_paused_rounded': Icons.motion_photos_paused_rounded, + 'motion_photos_paused_outlined': Icons.motion_photos_paused_outlined, + 'motorcycle': Icons.motorcycle, + 'motorcycle_sharp': Icons.motorcycle_sharp, + 'motorcycle_rounded': Icons.motorcycle_rounded, + 'motorcycle_outlined': Icons.motorcycle_outlined, + 'mouse': Icons.mouse, + 'mouse_sharp': Icons.mouse_sharp, + 'mouse_rounded': Icons.mouse_rounded, + 'mouse_outlined': Icons.mouse_outlined, + 'move_to_inbox': Icons.move_to_inbox, + 'move_to_inbox_sharp': Icons.move_to_inbox_sharp, + 'move_to_inbox_rounded': Icons.move_to_inbox_rounded, + 'move_to_inbox_outlined': Icons.move_to_inbox_outlined, + 'movie': Icons.movie, + 'movie_sharp': Icons.movie_sharp, + 'movie_rounded': Icons.movie_rounded, + 'movie_outlined': Icons.movie_outlined, + 'movie_creation': Icons.movie_creation, + 'movie_creation_sharp': Icons.movie_creation_sharp, + 'movie_creation_rounded': Icons.movie_creation_rounded, + 'movie_creation_outlined': Icons.movie_creation_outlined, + 'movie_filter': Icons.movie_filter, + 'movie_filter_sharp': Icons.movie_filter_sharp, + 'movie_filter_rounded': Icons.movie_filter_rounded, + 'movie_filter_outlined': Icons.movie_filter_outlined, + 'moving': Icons.moving, + 'moving_sharp': Icons.moving_sharp, + 'moving_rounded': Icons.moving_rounded, + 'moving_outlined': Icons.moving_outlined, + 'mp': Icons.mp, + 'mp_sharp': Icons.mp_sharp, + 'mp_rounded': Icons.mp_rounded, + 'mp_outlined': Icons.mp_outlined, + 'multiline_chart': Icons.multiline_chart, + 'multiline_chart_sharp': Icons.multiline_chart_sharp, + 'multiline_chart_rounded': Icons.multiline_chart_rounded, + 'multiline_chart_outlined': Icons.multiline_chart_outlined, + 'multiple_stop': Icons.multiple_stop, + 'multiple_stop_sharp': Icons.multiple_stop_sharp, + 'multiple_stop_rounded': Icons.multiple_stop_rounded, + 'multiple_stop_outlined': Icons.multiple_stop_outlined, + 'multitrack_audio': Icons.multitrack_audio, + 'multitrack_audio_sharp': Icons.multitrack_audio_sharp, + 'multitrack_audio_rounded': Icons.multitrack_audio_rounded, + 'multitrack_audio_outlined': Icons.multitrack_audio_outlined, + 'museum': Icons.museum, + 'museum_sharp': Icons.museum_sharp, + 'museum_rounded': Icons.museum_rounded, + 'museum_outlined': Icons.museum_outlined, + 'music_note': Icons.music_note, + 'music_note_sharp': Icons.music_note_sharp, + 'music_note_rounded': Icons.music_note_rounded, + 'music_note_outlined': Icons.music_note_outlined, + 'music_off': Icons.music_off, + 'music_off_sharp': Icons.music_off_sharp, + 'music_off_rounded': Icons.music_off_rounded, + 'music_off_outlined': Icons.music_off_outlined, + 'music_video': Icons.music_video, + 'music_video_sharp': Icons.music_video_sharp, + 'music_video_rounded': Icons.music_video_rounded, + 'music_video_outlined': Icons.music_video_outlined, + 'my_library_add': Icons.my_library_add, + 'my_library_add_sharp': Icons.my_library_add_sharp, + 'my_library_add_rounded': Icons.my_library_add_rounded, + 'my_library_add_outlined': Icons.my_library_add_outlined, + 'my_library_books': Icons.my_library_books, + 'my_library_books_sharp': Icons.my_library_books_sharp, + 'my_library_books_rounded': Icons.my_library_books_rounded, + 'my_library_books_outlined': Icons.my_library_books_outlined, + 'my_library_music': Icons.my_library_music, + 'my_library_music_sharp': Icons.my_library_music_sharp, + 'my_library_music_rounded': Icons.my_library_music_rounded, + 'my_library_music_outlined': Icons.my_library_music_outlined, + 'my_location': Icons.my_location, + 'my_location_sharp': Icons.my_location_sharp, + 'my_location_rounded': Icons.my_location_rounded, + 'my_location_outlined': Icons.my_location_outlined, + 'nat': Icons.nat, + 'nat_sharp': Icons.nat_sharp, + 'nat_rounded': Icons.nat_rounded, + 'nat_outlined': Icons.nat_outlined, + 'nature': Icons.nature, + 'nature_sharp': Icons.nature_sharp, + 'nature_rounded': Icons.nature_rounded, + 'nature_outlined': Icons.nature_outlined, + 'nature_people': Icons.nature_people, + 'nature_people_sharp': Icons.nature_people_sharp, + 'nature_people_rounded': Icons.nature_people_rounded, + 'nature_people_outlined': Icons.nature_people_outlined, + 'navigate_before': Icons.navigate_before, + 'navigate_before_sharp': Icons.navigate_before_sharp, + 'navigate_before_rounded': Icons.navigate_before_rounded, + 'navigate_before_outlined': Icons.navigate_before_outlined, + 'navigate_next': Icons.navigate_next, + 'navigate_next_sharp': Icons.navigate_next_sharp, + 'navigate_next_rounded': Icons.navigate_next_rounded, + 'navigate_next_outlined': Icons.navigate_next_outlined, + 'navigation': Icons.navigation, + 'navigation_sharp': Icons.navigation_sharp, + 'navigation_rounded': Icons.navigation_rounded, + 'navigation_outlined': Icons.navigation_outlined, + 'near_me': Icons.near_me, + 'near_me_sharp': Icons.near_me_sharp, + 'near_me_rounded': Icons.near_me_rounded, + 'near_me_outlined': Icons.near_me_outlined, + 'near_me_disabled': Icons.near_me_disabled, + 'near_me_disabled_sharp': Icons.near_me_disabled_sharp, + 'near_me_disabled_rounded': Icons.near_me_disabled_rounded, + 'near_me_disabled_outlined': Icons.near_me_disabled_outlined, + 'nearby_error': Icons.nearby_error, + 'nearby_error_sharp': Icons.nearby_error_sharp, + 'nearby_error_rounded': Icons.nearby_error_rounded, + 'nearby_error_outlined': Icons.nearby_error_outlined, + 'nearby_off': Icons.nearby_off, + 'nearby_off_sharp': Icons.nearby_off_sharp, + 'nearby_off_rounded': Icons.nearby_off_rounded, + 'nearby_off_outlined': Icons.nearby_off_outlined, + 'network_cell': Icons.network_cell, + 'network_cell_sharp': Icons.network_cell_sharp, + 'network_cell_rounded': Icons.network_cell_rounded, + 'network_cell_outlined': Icons.network_cell_outlined, + 'network_check': Icons.network_check, + 'network_check_sharp': Icons.network_check_sharp, + 'network_check_rounded': Icons.network_check_rounded, + 'network_check_outlined': Icons.network_check_outlined, + 'network_locked': Icons.network_locked, + 'network_locked_sharp': Icons.network_locked_sharp, + 'network_locked_rounded': Icons.network_locked_rounded, + 'network_locked_outlined': Icons.network_locked_outlined, + 'network_wifi': Icons.network_wifi, + 'network_wifi_sharp': Icons.network_wifi_sharp, + 'network_wifi_rounded': Icons.network_wifi_rounded, + 'network_wifi_outlined': Icons.network_wifi_outlined, + 'new_label': Icons.new_label, + 'new_label_sharp': Icons.new_label_sharp, + 'new_label_rounded': Icons.new_label_rounded, + 'new_label_outlined': Icons.new_label_outlined, + 'new_releases': Icons.new_releases, + 'new_releases_sharp': Icons.new_releases_sharp, + 'new_releases_rounded': Icons.new_releases_rounded, + 'new_releases_outlined': Icons.new_releases_outlined, + 'next_plan': Icons.next_plan, + 'next_plan_sharp': Icons.next_plan_sharp, + 'next_plan_rounded': Icons.next_plan_rounded, + 'next_plan_outlined': Icons.next_plan_outlined, + 'next_week': Icons.next_week, + 'next_week_sharp': Icons.next_week_sharp, + 'next_week_rounded': Icons.next_week_rounded, + 'next_week_outlined': Icons.next_week_outlined, + 'nfc': Icons.nfc, + 'nfc_sharp': Icons.nfc_sharp, + 'nfc_rounded': Icons.nfc_rounded, + 'nfc_outlined': Icons.nfc_outlined, + 'night_shelter': Icons.night_shelter, + 'night_shelter_sharp': Icons.night_shelter_sharp, + 'night_shelter_rounded': Icons.night_shelter_rounded, + 'night_shelter_outlined': Icons.night_shelter_outlined, + 'nightlife': Icons.nightlife, + 'nightlife_sharp': Icons.nightlife_sharp, + 'nightlife_rounded': Icons.nightlife_rounded, + 'nightlife_outlined': Icons.nightlife_outlined, + 'nightlight': Icons.nightlight, + 'nightlight_sharp': Icons.nightlight_sharp, + 'nightlight_rounded': Icons.nightlight_rounded, + 'nightlight_outlined': Icons.nightlight_outlined, + 'nightlight_round': Icons.nightlight_round, + 'nightlight_round_sharp': Icons.nightlight_round_sharp, + 'nightlight_round_rounded': Icons.nightlight_round_rounded, + 'nightlight_round_outlined': Icons.nightlight_round_outlined, + 'nights_stay': Icons.nights_stay, + 'nights_stay_sharp': Icons.nights_stay_sharp, + 'nights_stay_rounded': Icons.nights_stay_rounded, + 'nights_stay_outlined': Icons.nights_stay_outlined, + 'no_accounts': Icons.no_accounts, + 'no_accounts_sharp': Icons.no_accounts_sharp, + 'no_accounts_rounded': Icons.no_accounts_rounded, + 'no_accounts_outlined': Icons.no_accounts_outlined, + 'no_backpack': Icons.no_backpack, + 'no_backpack_sharp': Icons.no_backpack_sharp, + 'no_backpack_rounded': Icons.no_backpack_rounded, + 'no_backpack_outlined': Icons.no_backpack_outlined, + 'no_cell': Icons.no_cell, + 'no_cell_sharp': Icons.no_cell_sharp, + 'no_cell_rounded': Icons.no_cell_rounded, + 'no_cell_outlined': Icons.no_cell_outlined, + 'no_drinks': Icons.no_drinks, + 'no_drinks_sharp': Icons.no_drinks_sharp, + 'no_drinks_rounded': Icons.no_drinks_rounded, + 'no_drinks_outlined': Icons.no_drinks_outlined, + 'no_encryption': Icons.no_encryption, + 'no_encryption_sharp': Icons.no_encryption_sharp, + 'no_encryption_rounded': Icons.no_encryption_rounded, + 'no_encryption_outlined': Icons.no_encryption_outlined, + 'no_encryption_gmailerrorred': Icons.no_encryption_gmailerrorred, + 'no_encryption_gmailerrorred_sharp': + Icons.no_encryption_gmailerrorred_sharp, + 'no_encryption_gmailerrorred_rounded': + Icons.no_encryption_gmailerrorred_rounded, + 'no_encryption_gmailerrorred_outlined': + Icons.no_encryption_gmailerrorred_outlined, + 'no_flash': Icons.no_flash, + 'no_flash_sharp': Icons.no_flash_sharp, + 'no_flash_rounded': Icons.no_flash_rounded, + 'no_flash_outlined': Icons.no_flash_outlined, + 'no_food': Icons.no_food, + 'no_food_sharp': Icons.no_food_sharp, + 'no_food_rounded': Icons.no_food_rounded, + 'no_food_outlined': Icons.no_food_outlined, + 'no_luggage': Icons.no_luggage, + 'no_luggage_sharp': Icons.no_luggage_sharp, + 'no_luggage_rounded': Icons.no_luggage_rounded, + 'no_luggage_outlined': Icons.no_luggage_outlined, + 'no_meals': Icons.no_meals, + 'no_meals_sharp': Icons.no_meals_sharp, + 'no_meals_rounded': Icons.no_meals_rounded, + 'no_meals_outlined': Icons.no_meals_outlined, + 'no_meals_ouline': Icons.no_meals_ouline, + 'no_meeting_room': Icons.no_meeting_room, + 'no_meeting_room_sharp': Icons.no_meeting_room_sharp, + 'no_meeting_room_rounded': Icons.no_meeting_room_rounded, + 'no_meeting_room_outlined': Icons.no_meeting_room_outlined, + 'no_photography': Icons.no_photography, + 'no_photography_sharp': Icons.no_photography_sharp, + 'no_photography_rounded': Icons.no_photography_rounded, + 'no_photography_outlined': Icons.no_photography_outlined, + 'no_sim': Icons.no_sim, + 'no_sim_sharp': Icons.no_sim_sharp, + 'no_sim_rounded': Icons.no_sim_rounded, + 'no_sim_outlined': Icons.no_sim_outlined, + 'no_stroller': Icons.no_stroller, + 'no_stroller_sharp': Icons.no_stroller_sharp, + 'no_stroller_rounded': Icons.no_stroller_rounded, + 'no_stroller_outlined': Icons.no_stroller_outlined, + 'no_transfer': Icons.no_transfer, + 'no_transfer_sharp': Icons.no_transfer_sharp, + 'no_transfer_rounded': Icons.no_transfer_rounded, + 'no_transfer_outlined': Icons.no_transfer_outlined, + 'nordic_walking': Icons.nordic_walking, + 'nordic_walking_sharp': Icons.nordic_walking_sharp, + 'nordic_walking_rounded': Icons.nordic_walking_rounded, + 'nordic_walking_outlined': Icons.nordic_walking_outlined, + 'north': Icons.north, + 'north_sharp': Icons.north_sharp, + 'north_rounded': Icons.north_rounded, + 'north_outlined': Icons.north_outlined, + 'north_east': Icons.north_east, + 'north_east_sharp': Icons.north_east_sharp, + 'north_east_rounded': Icons.north_east_rounded, + 'north_east_outlined': Icons.north_east_outlined, + 'north_west': Icons.north_west, + 'north_west_sharp': Icons.north_west_sharp, + 'north_west_rounded': Icons.north_west_rounded, + 'north_west_outlined': Icons.north_west_outlined, + 'not_accessible': Icons.not_accessible, + 'not_accessible_sharp': Icons.not_accessible_sharp, + 'not_accessible_rounded': Icons.not_accessible_rounded, + 'not_accessible_outlined': Icons.not_accessible_outlined, + 'not_interested': Icons.not_interested, + 'not_interested_sharp': Icons.not_interested_sharp, + 'not_interested_rounded': Icons.not_interested_rounded, + 'not_interested_outlined': Icons.not_interested_outlined, + 'not_listed_location': Icons.not_listed_location, + 'not_listed_location_sharp': Icons.not_listed_location_sharp, + 'not_listed_location_rounded': Icons.not_listed_location_rounded, + 'not_listed_location_outlined': Icons.not_listed_location_outlined, + 'not_started': Icons.not_started, + 'not_started_sharp': Icons.not_started_sharp, + 'not_started_rounded': Icons.not_started_rounded, + 'not_started_outlined': Icons.not_started_outlined, + 'note': Icons.note, + 'note_sharp': Icons.note_sharp, + 'note_rounded': Icons.note_rounded, + 'note_outlined': Icons.note_outlined, + 'note_add': Icons.note_add, + 'note_add_sharp': Icons.note_add_sharp, + 'note_add_rounded': Icons.note_add_rounded, + 'note_add_outlined': Icons.note_add_outlined, + 'note_alt': Icons.note_alt, + 'note_alt_sharp': Icons.note_alt_sharp, + 'note_alt_rounded': Icons.note_alt_rounded, + 'note_alt_outlined': Icons.note_alt_outlined, + 'notes': Icons.notes, + 'notes_sharp': Icons.notes_sharp, + 'notes_rounded': Icons.notes_rounded, + 'notes_outlined': Icons.notes_outlined, + 'notification_add': Icons.notification_add, + 'notification_add_sharp': Icons.notification_add_sharp, + 'notification_add_rounded': Icons.notification_add_rounded, + 'notification_add_outlined': Icons.notification_add_outlined, + 'notification_important': Icons.notification_important, + 'notification_important_sharp': Icons.notification_important_sharp, + 'notification_important_rounded': Icons.notification_important_rounded, + 'notification_important_outlined': + Icons.notification_important_outlined, + 'notifications': Icons.notifications, + 'notifications_sharp': Icons.notifications_sharp, + 'notifications_rounded': Icons.notifications_rounded, + 'notifications_outlined': Icons.notifications_outlined, + 'notifications_active': Icons.notifications_active, + 'notifications_active_sharp': Icons.notifications_active_sharp, + 'notifications_active_rounded': Icons.notifications_active_rounded, + 'notifications_active_outlined': Icons.notifications_active_outlined, + 'notifications_none': Icons.notifications_none, + 'notifications_none_sharp': Icons.notifications_none_sharp, + 'notifications_none_rounded': Icons.notifications_none_rounded, + 'notifications_none_outlined': Icons.notifications_none_outlined, + 'notifications_off': Icons.notifications_off, + 'notifications_off_sharp': Icons.notifications_off_sharp, + 'notifications_off_rounded': Icons.notifications_off_rounded, + 'notifications_off_outlined': Icons.notifications_off_outlined, + 'notifications_on': Icons.notifications_on, + 'notifications_on_sharp': Icons.notifications_on_sharp, + 'notifications_on_rounded': Icons.notifications_on_rounded, + 'notifications_on_outlined': Icons.notifications_on_outlined, + 'notifications_paused': Icons.notifications_paused, + 'notifications_paused_sharp': Icons.notifications_paused_sharp, + 'notifications_paused_rounded': Icons.notifications_paused_rounded, + 'notifications_paused_outlined': Icons.notifications_paused_outlined, + 'now_wallpaper': Icons.now_wallpaper, + 'now_wallpaper_sharp': Icons.now_wallpaper_sharp, + 'now_wallpaper_rounded': Icons.now_wallpaper_rounded, + 'now_wallpaper_outlined': Icons.now_wallpaper_outlined, + 'now_widgets': Icons.now_widgets, + 'now_widgets_sharp': Icons.now_widgets_sharp, + 'now_widgets_rounded': Icons.now_widgets_rounded, + 'now_widgets_outlined': Icons.now_widgets_outlined, + 'offline_bolt': Icons.offline_bolt, + 'offline_bolt_sharp': Icons.offline_bolt_sharp, + 'offline_bolt_rounded': Icons.offline_bolt_rounded, + 'offline_bolt_outlined': Icons.offline_bolt_outlined, + 'offline_pin': Icons.offline_pin, + 'offline_pin_sharp': Icons.offline_pin_sharp, + 'offline_pin_rounded': Icons.offline_pin_rounded, + 'offline_pin_outlined': Icons.offline_pin_outlined, + 'offline_share': Icons.offline_share, + 'offline_share_sharp': Icons.offline_share_sharp, + 'offline_share_rounded': Icons.offline_share_rounded, + 'offline_share_outlined': Icons.offline_share_outlined, + 'ondemand_video': Icons.ondemand_video, + 'ondemand_video_sharp': Icons.ondemand_video_sharp, + 'ondemand_video_rounded': Icons.ondemand_video_rounded, + 'ondemand_video_outlined': Icons.ondemand_video_outlined, + 'online_prediction': Icons.online_prediction, + 'online_prediction_sharp': Icons.online_prediction_sharp, + 'online_prediction_rounded': Icons.online_prediction_rounded, + 'online_prediction_outlined': Icons.online_prediction_outlined, + 'opacity': Icons.opacity, + 'opacity_sharp': Icons.opacity_sharp, + 'opacity_rounded': Icons.opacity_rounded, + 'opacity_outlined': Icons.opacity_outlined, + 'open_in_browser': Icons.open_in_browser, + 'open_in_browser_sharp': Icons.open_in_browser_sharp, + 'open_in_browser_rounded': Icons.open_in_browser_rounded, + 'open_in_browser_outlined': Icons.open_in_browser_outlined, + 'open_in_full': Icons.open_in_full, + 'open_in_full_sharp': Icons.open_in_full_sharp, + 'open_in_full_rounded': Icons.open_in_full_rounded, + 'open_in_full_outlined': Icons.open_in_full_outlined, + 'open_in_new': Icons.open_in_new, + 'open_in_new_sharp': Icons.open_in_new_sharp, + 'open_in_new_rounded': Icons.open_in_new_rounded, + 'open_in_new_outlined': Icons.open_in_new_outlined, + 'open_in_new_off': Icons.open_in_new_off, + 'open_in_new_off_sharp': Icons.open_in_new_off_sharp, + 'open_in_new_off_rounded': Icons.open_in_new_off_rounded, + 'open_in_new_off_outlined': Icons.open_in_new_off_outlined, + 'open_with': Icons.open_with, + 'open_with_sharp': Icons.open_with_sharp, + 'open_with_rounded': Icons.open_with_rounded, + 'open_with_outlined': Icons.open_with_outlined, + 'other_houses': Icons.other_houses, + 'other_houses_sharp': Icons.other_houses_sharp, + 'other_houses_rounded': Icons.other_houses_rounded, + 'other_houses_outlined': Icons.other_houses_outlined, + 'outbond': Icons.outbond, + 'outbond_sharp': Icons.outbond_sharp, + 'outbond_rounded': Icons.outbond_rounded, + 'outbond_outlined': Icons.outbond_outlined, + 'outbound': Icons.outbound, + 'outbound_sharp': Icons.outbound_sharp, + 'outbound_rounded': Icons.outbound_rounded, + 'outbound_outlined': Icons.outbound_outlined, + 'outbox': Icons.outbox, + 'outbox_sharp': Icons.outbox_sharp, + 'outbox_rounded': Icons.outbox_rounded, + 'outbox_outlined': Icons.outbox_outlined, + 'outdoor_grill': Icons.outdoor_grill, + 'outdoor_grill_sharp': Icons.outdoor_grill_sharp, + 'outdoor_grill_rounded': Icons.outdoor_grill_rounded, + 'outdoor_grill_outlined': Icons.outdoor_grill_outlined, + 'outgoing_mail': Icons.outgoing_mail, + 'outlet': Icons.outlet, + 'outlet_sharp': Icons.outlet_sharp, + 'outlet_rounded': Icons.outlet_rounded, + 'outlet_outlined': Icons.outlet_outlined, + 'outlined_flag': Icons.outlined_flag, + 'outlined_flag_sharp': Icons.outlined_flag_sharp, + 'outlined_flag_rounded': Icons.outlined_flag_rounded, + 'outlined_flag_outlined': Icons.outlined_flag_outlined, + 'padding': Icons.padding, + 'padding_sharp': Icons.padding_sharp, + 'padding_rounded': Icons.padding_rounded, + 'padding_outlined': Icons.padding_outlined, + 'pages': Icons.pages, + 'pages_sharp': Icons.pages_sharp, + 'pages_rounded': Icons.pages_rounded, + 'pages_outlined': Icons.pages_outlined, + 'pageview': Icons.pageview, + 'pageview_sharp': Icons.pageview_sharp, + 'pageview_rounded': Icons.pageview_rounded, + 'pageview_outlined': Icons.pageview_outlined, + 'paid': Icons.paid, + 'paid_sharp': Icons.paid_sharp, + 'paid_rounded': Icons.paid_rounded, + 'paid_outlined': Icons.paid_outlined, + 'palette': Icons.palette, + 'palette_sharp': Icons.palette_sharp, + 'palette_rounded': Icons.palette_rounded, + 'palette_outlined': Icons.palette_outlined, + 'pan_tool': Icons.pan_tool, + 'pan_tool_sharp': Icons.pan_tool_sharp, + 'pan_tool_rounded': Icons.pan_tool_rounded, + 'pan_tool_outlined': Icons.pan_tool_outlined, + 'panorama': Icons.panorama, + 'panorama_sharp': Icons.panorama_sharp, + 'panorama_rounded': Icons.panorama_rounded, + 'panorama_outlined': Icons.panorama_outlined, + 'panorama_fish_eye': Icons.panorama_fish_eye, + 'panorama_fish_eye_sharp': Icons.panorama_fish_eye_sharp, + 'panorama_fish_eye_rounded': Icons.panorama_fish_eye_rounded, + 'panorama_fish_eye_outlined': Icons.panorama_fish_eye_outlined, + 'panorama_fisheye': Icons.panorama_fisheye, + 'panorama_fisheye_sharp': Icons.panorama_fisheye_sharp, + 'panorama_fisheye_rounded': Icons.panorama_fisheye_rounded, + 'panorama_fisheye_outlined': Icons.panorama_fisheye_outlined, + 'panorama_horizontal': Icons.panorama_horizontal, + 'panorama_horizontal_sharp': Icons.panorama_horizontal_sharp, + 'panorama_horizontal_rounded': Icons.panorama_horizontal_rounded, + 'panorama_horizontal_outlined': Icons.panorama_horizontal_outlined, + 'panorama_horizontal_select': Icons.panorama_horizontal_select, + 'panorama_horizontal_select_sharp': + Icons.panorama_horizontal_select_sharp, + 'panorama_horizontal_select_rounded': + Icons.panorama_horizontal_select_rounded, + 'panorama_horizontal_select_outlined': + Icons.panorama_horizontal_select_outlined, + 'panorama_photosphere': Icons.panorama_photosphere, + 'panorama_photosphere_sharp': Icons.panorama_photosphere_sharp, + 'panorama_photosphere_rounded': Icons.panorama_photosphere_rounded, + 'panorama_photosphere_outlined': Icons.panorama_photosphere_outlined, + 'panorama_photosphere_select': Icons.panorama_photosphere_select, + 'panorama_photosphere_select_sharp': + Icons.panorama_photosphere_select_sharp, + 'panorama_photosphere_select_rounded': + Icons.panorama_photosphere_select_rounded, + 'panorama_photosphere_select_outlined': + Icons.panorama_photosphere_select_outlined, + 'panorama_vertical': Icons.panorama_vertical, + 'panorama_vertical_sharp': Icons.panorama_vertical_sharp, + 'panorama_vertical_rounded': Icons.panorama_vertical_rounded, + 'panorama_vertical_outlined': Icons.panorama_vertical_outlined, + 'panorama_vertical_select': Icons.panorama_vertical_select, + 'panorama_vertical_select_sharp': Icons.panorama_vertical_select_sharp, + 'panorama_vertical_select_rounded': + Icons.panorama_vertical_select_rounded, + 'panorama_vertical_select_outlined': + Icons.panorama_vertical_select_outlined, + 'panorama_wide_angle': Icons.panorama_wide_angle, + 'panorama_wide_angle_sharp': Icons.panorama_wide_angle_sharp, + 'panorama_wide_angle_rounded': Icons.panorama_wide_angle_rounded, + 'panorama_wide_angle_outlined': Icons.panorama_wide_angle_outlined, + 'panorama_wide_angle_select': Icons.panorama_wide_angle_select, + 'panorama_wide_angle_select_sharp': + Icons.panorama_wide_angle_select_sharp, + 'panorama_wide_angle_select_rounded': + Icons.panorama_wide_angle_select_rounded, + 'panorama_wide_angle_select_outlined': + Icons.panorama_wide_angle_select_outlined, + 'paragliding': Icons.paragliding, + 'paragliding_sharp': Icons.paragliding_sharp, + 'paragliding_rounded': Icons.paragliding_rounded, + 'paragliding_outlined': Icons.paragliding_outlined, + 'park': Icons.park, + 'park_sharp': Icons.park_sharp, + 'park_rounded': Icons.park_rounded, + 'park_outlined': Icons.park_outlined, + 'party_mode': Icons.party_mode, + 'party_mode_sharp': Icons.party_mode_sharp, + 'party_mode_rounded': Icons.party_mode_rounded, + 'party_mode_outlined': Icons.party_mode_outlined, + 'password': Icons.password, + 'password_sharp': Icons.password_sharp, + 'password_rounded': Icons.password_rounded, + 'password_outlined': Icons.password_outlined, + 'paste': Icons.paste, + 'paste_sharp': Icons.paste_sharp, + 'paste_rounded': Icons.paste_rounded, + 'paste_outlined': Icons.paste_outlined, + 'pattern': Icons.pattern, + 'pattern_sharp': Icons.pattern_sharp, + 'pattern_rounded': Icons.pattern_rounded, + 'pattern_outlined': Icons.pattern_outlined, + 'pause': Icons.pause, + 'pause_sharp': Icons.pause_sharp, + 'pause_rounded': Icons.pause_rounded, + 'pause_outlined': Icons.pause_outlined, + 'pause_circle': Icons.pause_circle, + 'pause_circle_sharp': Icons.pause_circle_sharp, + 'pause_circle_rounded': Icons.pause_circle_rounded, + 'pause_circle_outlined': Icons.pause_circle_outlined, + 'pause_circle_filled': Icons.pause_circle_filled, + 'pause_circle_filled_sharp': Icons.pause_circle_filled_sharp, + 'pause_circle_filled_rounded': Icons.pause_circle_filled_rounded, + 'pause_circle_filled_outlined': Icons.pause_circle_filled_outlined, + 'pause_circle_outline': Icons.pause_circle_outline, + 'pause_circle_outline_sharp': Icons.pause_circle_outline_sharp, + 'pause_circle_outline_rounded': Icons.pause_circle_outline_rounded, + 'pause_circle_outline_outlined': Icons.pause_circle_outline_outlined, + 'pause_presentation': Icons.pause_presentation, + 'pause_presentation_sharp': Icons.pause_presentation_sharp, + 'pause_presentation_rounded': Icons.pause_presentation_rounded, + 'pause_presentation_outlined': Icons.pause_presentation_outlined, + 'payment': Icons.payment, + 'payment_sharp': Icons.payment_sharp, + 'payment_rounded': Icons.payment_rounded, + 'payment_outlined': Icons.payment_outlined, + 'payments': Icons.payments, + 'payments_sharp': Icons.payments_sharp, + 'payments_rounded': Icons.payments_rounded, + 'payments_outlined': Icons.payments_outlined, + 'pedal_bike': Icons.pedal_bike, + 'pedal_bike_sharp': Icons.pedal_bike_sharp, + 'pedal_bike_rounded': Icons.pedal_bike_rounded, + 'pedal_bike_outlined': Icons.pedal_bike_outlined, + 'pending': Icons.pending, + 'pending_sharp': Icons.pending_sharp, + 'pending_rounded': Icons.pending_rounded, + 'pending_outlined': Icons.pending_outlined, + 'pending_actions': Icons.pending_actions, + 'pending_actions_sharp': Icons.pending_actions_sharp, + 'pending_actions_rounded': Icons.pending_actions_rounded, + 'pending_actions_outlined': Icons.pending_actions_outlined, + 'people': Icons.people, + 'people_sharp': Icons.people_sharp, + 'people_rounded': Icons.people_rounded, + 'people_outlined': Icons.people_outlined, + 'people_alt': Icons.people_alt, + 'people_alt_sharp': Icons.people_alt_sharp, + 'people_alt_rounded': Icons.people_alt_rounded, + 'people_alt_outlined': Icons.people_alt_outlined, + 'people_outline': Icons.people_outline, + 'people_outline_sharp': Icons.people_outline_sharp, + 'people_outline_rounded': Icons.people_outline_rounded, + 'people_outline_outlined': Icons.people_outline_outlined, + 'perm_camera_mic': Icons.perm_camera_mic, + 'perm_camera_mic_sharp': Icons.perm_camera_mic_sharp, + 'perm_camera_mic_rounded': Icons.perm_camera_mic_rounded, + 'perm_camera_mic_outlined': Icons.perm_camera_mic_outlined, + 'perm_contact_cal': Icons.perm_contact_cal, + 'perm_contact_cal_sharp': Icons.perm_contact_cal_sharp, + 'perm_contact_cal_rounded': Icons.perm_contact_cal_rounded, + 'perm_contact_cal_outlined': Icons.perm_contact_cal_outlined, + 'perm_contact_calendar': Icons.perm_contact_calendar, + 'perm_contact_calendar_sharp': Icons.perm_contact_calendar_sharp, + 'perm_contact_calendar_rounded': Icons.perm_contact_calendar_rounded, + 'perm_contact_calendar_outlined': Icons.perm_contact_calendar_outlined, + 'perm_data_setting': Icons.perm_data_setting, + 'perm_data_setting_sharp': Icons.perm_data_setting_sharp, + 'perm_data_setting_rounded': Icons.perm_data_setting_rounded, + 'perm_data_setting_outlined': Icons.perm_data_setting_outlined, + 'perm_device_info': Icons.perm_device_info, + 'perm_device_info_sharp': Icons.perm_device_info_sharp, + 'perm_device_info_rounded': Icons.perm_device_info_rounded, + 'perm_device_info_outlined': Icons.perm_device_info_outlined, + 'perm_device_information': Icons.perm_device_information, + 'perm_device_information_sharp': Icons.perm_device_information_sharp, + 'perm_device_information_rounded': + Icons.perm_device_information_rounded, + 'perm_device_information_outlined': + Icons.perm_device_information_outlined, + 'perm_identity': Icons.perm_identity, + 'perm_identity_sharp': Icons.perm_identity_sharp, + 'perm_identity_rounded': Icons.perm_identity_rounded, + 'perm_identity_outlined': Icons.perm_identity_outlined, + 'perm_media': Icons.perm_media, + 'perm_media_sharp': Icons.perm_media_sharp, + 'perm_media_rounded': Icons.perm_media_rounded, + 'perm_media_outlined': Icons.perm_media_outlined, + 'perm_phone_msg': Icons.perm_phone_msg, + 'perm_phone_msg_sharp': Icons.perm_phone_msg_sharp, + 'perm_phone_msg_rounded': Icons.perm_phone_msg_rounded, + 'perm_phone_msg_outlined': Icons.perm_phone_msg_outlined, + 'perm_scan_wifi': Icons.perm_scan_wifi, + 'perm_scan_wifi_sharp': Icons.perm_scan_wifi_sharp, + 'perm_scan_wifi_rounded': Icons.perm_scan_wifi_rounded, + 'perm_scan_wifi_outlined': Icons.perm_scan_wifi_outlined, + 'person': Icons.person, + 'person_sharp': Icons.person_sharp, + 'person_rounded': Icons.person_rounded, + 'person_outlined': Icons.person_outlined, + 'person_add': Icons.person_add, + 'person_add_sharp': Icons.person_add_sharp, + 'person_add_rounded': Icons.person_add_rounded, + 'person_add_outlined': Icons.person_add_outlined, + 'person_add_alt': Icons.person_add_alt, + 'person_add_alt_sharp': Icons.person_add_alt_sharp, + 'person_add_alt_rounded': Icons.person_add_alt_rounded, + 'person_add_alt_outlined': Icons.person_add_alt_outlined, + 'person_add_alt_1': Icons.person_add_alt_1, + 'person_add_alt_1_sharp': Icons.person_add_alt_1_sharp, + 'person_add_alt_1_rounded': Icons.person_add_alt_1_rounded, + 'person_add_alt_1_outlined': Icons.person_add_alt_1_outlined, + 'person_add_disabled': Icons.person_add_disabled, + 'person_add_disabled_sharp': Icons.person_add_disabled_sharp, + 'person_add_disabled_rounded': Icons.person_add_disabled_rounded, + 'person_add_disabled_outlined': Icons.person_add_disabled_outlined, + 'person_off': Icons.person_off, + 'person_off_sharp': Icons.person_off_sharp, + 'person_off_rounded': Icons.person_off_rounded, + 'person_off_outlined': Icons.person_off_outlined, + 'person_outline': Icons.person_outline, + 'person_outline_sharp': Icons.person_outline_sharp, + 'person_outline_rounded': Icons.person_outline_rounded, + 'person_outline_outlined': Icons.person_outline_outlined, + 'person_pin': Icons.person_pin, + 'person_pin_sharp': Icons.person_pin_sharp, + 'person_pin_rounded': Icons.person_pin_rounded, + 'person_pin_outlined': Icons.person_pin_outlined, + 'person_pin_circle': Icons.person_pin_circle, + 'person_pin_circle_sharp': Icons.person_pin_circle_sharp, + 'person_pin_circle_rounded': Icons.person_pin_circle_rounded, + 'person_pin_circle_outlined': Icons.person_pin_circle_outlined, + 'person_remove': Icons.person_remove, + 'person_remove_sharp': Icons.person_remove_sharp, + 'person_remove_rounded': Icons.person_remove_rounded, + 'person_remove_outlined': Icons.person_remove_outlined, + 'person_remove_alt_1': Icons.person_remove_alt_1, + 'person_remove_alt_1_sharp': Icons.person_remove_alt_1_sharp, + 'person_remove_alt_1_rounded': Icons.person_remove_alt_1_rounded, + 'person_remove_alt_1_outlined': Icons.person_remove_alt_1_outlined, + 'person_search': Icons.person_search, + 'person_search_sharp': Icons.person_search_sharp, + 'person_search_rounded': Icons.person_search_rounded, + 'person_search_outlined': Icons.person_search_outlined, + 'personal_injury': Icons.personal_injury, + 'personal_injury_sharp': Icons.personal_injury_sharp, + 'personal_injury_rounded': Icons.personal_injury_rounded, + 'personal_injury_outlined': Icons.personal_injury_outlined, + 'personal_video': Icons.personal_video, + 'personal_video_sharp': Icons.personal_video_sharp, + 'personal_video_rounded': Icons.personal_video_rounded, + 'personal_video_outlined': Icons.personal_video_outlined, + 'pest_control': Icons.pest_control, + 'pest_control_sharp': Icons.pest_control_sharp, + 'pest_control_rounded': Icons.pest_control_rounded, + 'pest_control_outlined': Icons.pest_control_outlined, + 'pest_control_rodent': Icons.pest_control_rodent, + 'pest_control_rodent_sharp': Icons.pest_control_rodent_sharp, + 'pest_control_rodent_rounded': Icons.pest_control_rodent_rounded, + 'pest_control_rodent_outlined': Icons.pest_control_rodent_outlined, + 'pets': Icons.pets, + 'pets_sharp': Icons.pets_sharp, + 'pets_rounded': Icons.pets_rounded, + 'pets_outlined': Icons.pets_outlined, + 'phone': Icons.phone, + 'phone_sharp': Icons.phone_sharp, + 'phone_rounded': Icons.phone_rounded, + 'phone_outlined': Icons.phone_outlined, + 'phone_android': Icons.phone_android, + 'phone_android_sharp': Icons.phone_android_sharp, + 'phone_android_rounded': Icons.phone_android_rounded, + 'phone_android_outlined': Icons.phone_android_outlined, + 'phone_bluetooth_speaker': Icons.phone_bluetooth_speaker, + 'phone_bluetooth_speaker_sharp': Icons.phone_bluetooth_speaker_sharp, + 'phone_bluetooth_speaker_rounded': + Icons.phone_bluetooth_speaker_rounded, + 'phone_bluetooth_speaker_outlined': + Icons.phone_bluetooth_speaker_outlined, + 'phone_callback': Icons.phone_callback, + 'phone_callback_sharp': Icons.phone_callback_sharp, + 'phone_callback_rounded': Icons.phone_callback_rounded, + 'phone_callback_outlined': Icons.phone_callback_outlined, + 'phone_disabled': Icons.phone_disabled, + 'phone_disabled_sharp': Icons.phone_disabled_sharp, + 'phone_disabled_rounded': Icons.phone_disabled_rounded, + 'phone_disabled_outlined': Icons.phone_disabled_outlined, + 'phone_enabled': Icons.phone_enabled, + 'phone_enabled_sharp': Icons.phone_enabled_sharp, + 'phone_enabled_rounded': Icons.phone_enabled_rounded, + 'phone_enabled_outlined': Icons.phone_enabled_outlined, + 'phone_forwarded': Icons.phone_forwarded, + 'phone_forwarded_sharp': Icons.phone_forwarded_sharp, + 'phone_forwarded_rounded': Icons.phone_forwarded_rounded, + 'phone_forwarded_outlined': Icons.phone_forwarded_outlined, + 'phone_in_talk': Icons.phone_in_talk, + 'phone_in_talk_sharp': Icons.phone_in_talk_sharp, + 'phone_in_talk_rounded': Icons.phone_in_talk_rounded, + 'phone_in_talk_outlined': Icons.phone_in_talk_outlined, + 'phone_iphone': Icons.phone_iphone, + 'phone_iphone_sharp': Icons.phone_iphone_sharp, + 'phone_iphone_rounded': Icons.phone_iphone_rounded, + 'phone_iphone_outlined': Icons.phone_iphone_outlined, + 'phone_locked': Icons.phone_locked, + 'phone_locked_sharp': Icons.phone_locked_sharp, + 'phone_locked_rounded': Icons.phone_locked_rounded, + 'phone_locked_outlined': Icons.phone_locked_outlined, + 'phone_missed': Icons.phone_missed, + 'phone_missed_sharp': Icons.phone_missed_sharp, + 'phone_missed_rounded': Icons.phone_missed_rounded, + 'phone_missed_outlined': Icons.phone_missed_outlined, + 'phone_paused': Icons.phone_paused, + 'phone_paused_sharp': Icons.phone_paused_sharp, + 'phone_paused_rounded': Icons.phone_paused_rounded, + 'phone_paused_outlined': Icons.phone_paused_outlined, + 'phonelink': Icons.phonelink, + 'phonelink_sharp': Icons.phonelink_sharp, + 'phonelink_rounded': Icons.phonelink_rounded, + 'phonelink_outlined': Icons.phonelink_outlined, + 'phonelink_erase': Icons.phonelink_erase, + 'phonelink_erase_sharp': Icons.phonelink_erase_sharp, + 'phonelink_erase_rounded': Icons.phonelink_erase_rounded, + 'phonelink_erase_outlined': Icons.phonelink_erase_outlined, + 'phonelink_lock': Icons.phonelink_lock, + 'phonelink_lock_sharp': Icons.phonelink_lock_sharp, + 'phonelink_lock_rounded': Icons.phonelink_lock_rounded, + 'phonelink_lock_outlined': Icons.phonelink_lock_outlined, + 'phonelink_off': Icons.phonelink_off, + 'phonelink_off_sharp': Icons.phonelink_off_sharp, + 'phonelink_off_rounded': Icons.phonelink_off_rounded, + 'phonelink_off_outlined': Icons.phonelink_off_outlined, + 'phonelink_ring': Icons.phonelink_ring, + 'phonelink_ring_sharp': Icons.phonelink_ring_sharp, + 'phonelink_ring_rounded': Icons.phonelink_ring_rounded, + 'phonelink_ring_outlined': Icons.phonelink_ring_outlined, + 'phonelink_setup': Icons.phonelink_setup, + 'phonelink_setup_sharp': Icons.phonelink_setup_sharp, + 'phonelink_setup_rounded': Icons.phonelink_setup_rounded, + 'phonelink_setup_outlined': Icons.phonelink_setup_outlined, + 'photo': Icons.photo, + 'photo_sharp': Icons.photo_sharp, + 'photo_rounded': Icons.photo_rounded, + 'photo_outlined': Icons.photo_outlined, + 'photo_album': Icons.photo_album, + 'photo_album_sharp': Icons.photo_album_sharp, + 'photo_album_rounded': Icons.photo_album_rounded, + 'photo_album_outlined': Icons.photo_album_outlined, + 'photo_camera': Icons.photo_camera, + 'photo_camera_sharp': Icons.photo_camera_sharp, + 'photo_camera_rounded': Icons.photo_camera_rounded, + 'photo_camera_outlined': Icons.photo_camera_outlined, + 'photo_camera_back': Icons.photo_camera_back, + 'photo_camera_back_sharp': Icons.photo_camera_back_sharp, + 'photo_camera_back_rounded': Icons.photo_camera_back_rounded, + 'photo_camera_back_outlined': Icons.photo_camera_back_outlined, + 'photo_camera_front': Icons.photo_camera_front, + 'photo_camera_front_sharp': Icons.photo_camera_front_sharp, + 'photo_camera_front_rounded': Icons.photo_camera_front_rounded, + 'photo_camera_front_outlined': Icons.photo_camera_front_outlined, + 'photo_filter': Icons.photo_filter, + 'photo_filter_sharp': Icons.photo_filter_sharp, + 'photo_filter_rounded': Icons.photo_filter_rounded, + 'photo_filter_outlined': Icons.photo_filter_outlined, + 'photo_library': Icons.photo_library, + 'photo_library_sharp': Icons.photo_library_sharp, + 'photo_library_rounded': Icons.photo_library_rounded, + 'photo_library_outlined': Icons.photo_library_outlined, + 'photo_size_select_actual': Icons.photo_size_select_actual, + 'photo_size_select_actual_sharp': Icons.photo_size_select_actual_sharp, + 'photo_size_select_actual_rounded': + Icons.photo_size_select_actual_rounded, + 'photo_size_select_actual_outlined': + Icons.photo_size_select_actual_outlined, + 'photo_size_select_large': Icons.photo_size_select_large, + 'photo_size_select_large_sharp': Icons.photo_size_select_large_sharp, + 'photo_size_select_large_rounded': + Icons.photo_size_select_large_rounded, + 'photo_size_select_large_outlined': + Icons.photo_size_select_large_outlined, + 'photo_size_select_small': Icons.photo_size_select_small, + 'photo_size_select_small_sharp': Icons.photo_size_select_small_sharp, + 'photo_size_select_small_rounded': + Icons.photo_size_select_small_rounded, + 'photo_size_select_small_outlined': + Icons.photo_size_select_small_outlined, + 'piano': Icons.piano, + 'piano_sharp': Icons.piano_sharp, + 'piano_rounded': Icons.piano_rounded, + 'piano_outlined': Icons.piano_outlined, + 'piano_off': Icons.piano_off, + 'piano_off_sharp': Icons.piano_off_sharp, + 'piano_off_rounded': Icons.piano_off_rounded, + 'piano_off_outlined': Icons.piano_off_outlined, + 'picture_as_pdf': Icons.picture_as_pdf, + 'picture_as_pdf_sharp': Icons.picture_as_pdf_sharp, + 'picture_as_pdf_rounded': Icons.picture_as_pdf_rounded, + 'picture_as_pdf_outlined': Icons.picture_as_pdf_outlined, + 'picture_in_picture': Icons.picture_in_picture, + 'picture_in_picture_sharp': Icons.picture_in_picture_sharp, + 'picture_in_picture_rounded': Icons.picture_in_picture_rounded, + 'picture_in_picture_outlined': Icons.picture_in_picture_outlined, + 'picture_in_picture_alt': Icons.picture_in_picture_alt, + 'picture_in_picture_alt_sharp': Icons.picture_in_picture_alt_sharp, + 'picture_in_picture_alt_rounded': Icons.picture_in_picture_alt_rounded, + 'picture_in_picture_alt_outlined': + Icons.picture_in_picture_alt_outlined, + 'pie_chart': Icons.pie_chart, + 'pie_chart_sharp': Icons.pie_chart_sharp, + 'pie_chart_rounded': Icons.pie_chart_rounded, + 'pie_chart_outlined': Icons.pie_chart_outlined, + 'pie_chart_outline': Icons.pie_chart_outline, + 'pie_chart_outline_sharp': Icons.pie_chart_outline_sharp, + 'pie_chart_outline_rounded': Icons.pie_chart_outline_rounded, + 'pie_chart_outline_outlined': Icons.pie_chart_outline_outlined, + 'pin': Icons.pin, + 'pin_sharp': Icons.pin_sharp, + 'pin_rounded': Icons.pin_rounded, + 'pin_outlined': Icons.pin_outlined, + 'pin_drop': Icons.pin_drop, + 'pin_drop_sharp': Icons.pin_drop_sharp, + 'pin_drop_rounded': Icons.pin_drop_rounded, + 'pin_drop_outlined': Icons.pin_drop_outlined, + 'pivot_table_chart': Icons.pivot_table_chart, + 'pivot_table_chart_sharp': Icons.pivot_table_chart_sharp, + 'pivot_table_chart_rounded': Icons.pivot_table_chart_rounded, + 'pivot_table_chart_outlined': Icons.pivot_table_chart_outlined, + 'place': Icons.place, + 'place_sharp': Icons.place_sharp, + 'place_rounded': Icons.place_rounded, + 'place_outlined': Icons.place_outlined, + 'plagiarism': Icons.plagiarism, + 'plagiarism_sharp': Icons.plagiarism_sharp, + 'plagiarism_rounded': Icons.plagiarism_rounded, + 'plagiarism_outlined': Icons.plagiarism_outlined, + 'play_arrow': Icons.play_arrow, + 'play_arrow_sharp': Icons.play_arrow_sharp, + 'play_arrow_rounded': Icons.play_arrow_rounded, + 'play_arrow_outlined': Icons.play_arrow_outlined, + 'play_circle': Icons.play_circle, + 'play_circle_sharp': Icons.play_circle_sharp, + 'play_circle_rounded': Icons.play_circle_rounded, + 'play_circle_outlined': Icons.play_circle_outlined, + 'play_circle_fill': Icons.play_circle_fill, + 'play_circle_fill_sharp': Icons.play_circle_fill_sharp, + 'play_circle_fill_rounded': Icons.play_circle_fill_rounded, + 'play_circle_fill_outlined': Icons.play_circle_fill_outlined, + 'play_circle_filled': Icons.play_circle_filled, + 'play_circle_filled_sharp': Icons.play_circle_filled_sharp, + 'play_circle_filled_rounded': Icons.play_circle_filled_rounded, + 'play_circle_filled_outlined': Icons.play_circle_filled_outlined, + 'play_circle_outline': Icons.play_circle_outline, + 'play_circle_outline_sharp': Icons.play_circle_outline_sharp, + 'play_circle_outline_rounded': Icons.play_circle_outline_rounded, + 'play_circle_outline_outlined': Icons.play_circle_outline_outlined, + 'play_disabled': Icons.play_disabled, + 'play_disabled_sharp': Icons.play_disabled_sharp, + 'play_disabled_rounded': Icons.play_disabled_rounded, + 'play_disabled_outlined': Icons.play_disabled_outlined, + 'play_for_work': Icons.play_for_work, + 'play_for_work_sharp': Icons.play_for_work_sharp, + 'play_for_work_rounded': Icons.play_for_work_rounded, + 'play_for_work_outlined': Icons.play_for_work_outlined, + 'play_lesson': Icons.play_lesson, + 'play_lesson_sharp': Icons.play_lesson_sharp, + 'play_lesson_rounded': Icons.play_lesson_rounded, + 'play_lesson_outlined': Icons.play_lesson_outlined, + 'playlist_add': Icons.playlist_add, + 'playlist_add_sharp': Icons.playlist_add_sharp, + 'playlist_add_rounded': Icons.playlist_add_rounded, + 'playlist_add_outlined': Icons.playlist_add_outlined, + 'playlist_add_check': Icons.playlist_add_check, + 'playlist_add_check_sharp': Icons.playlist_add_check_sharp, + 'playlist_add_check_rounded': Icons.playlist_add_check_rounded, + 'playlist_add_check_outlined': Icons.playlist_add_check_outlined, + 'playlist_play': Icons.playlist_play, + 'playlist_play_sharp': Icons.playlist_play_sharp, + 'playlist_play_rounded': Icons.playlist_play_rounded, + 'playlist_play_outlined': Icons.playlist_play_outlined, + 'plumbing': Icons.plumbing, + 'plumbing_sharp': Icons.plumbing_sharp, + 'plumbing_rounded': Icons.plumbing_rounded, + 'plumbing_outlined': Icons.plumbing_outlined, + 'plus_one': Icons.plus_one, + 'plus_one_sharp': Icons.plus_one_sharp, + 'plus_one_rounded': Icons.plus_one_rounded, + 'plus_one_outlined': Icons.plus_one_outlined, + 'podcasts': Icons.podcasts, + 'podcasts_sharp': Icons.podcasts_sharp, + 'podcasts_rounded': Icons.podcasts_rounded, + 'podcasts_outlined': Icons.podcasts_outlined, + 'point_of_sale': Icons.point_of_sale, + 'point_of_sale_sharp': Icons.point_of_sale_sharp, + 'point_of_sale_rounded': Icons.point_of_sale_rounded, + 'point_of_sale_outlined': Icons.point_of_sale_outlined, + 'policy': Icons.policy, + 'policy_sharp': Icons.policy_sharp, + 'policy_rounded': Icons.policy_rounded, + 'policy_outlined': Icons.policy_outlined, + 'poll': Icons.poll, + 'poll_sharp': Icons.poll_sharp, + 'poll_rounded': Icons.poll_rounded, + 'poll_outlined': Icons.poll_outlined, + 'polymer': Icons.polymer, + 'polymer_sharp': Icons.polymer_sharp, + 'polymer_rounded': Icons.polymer_rounded, + 'polymer_outlined': Icons.polymer_outlined, + 'pool': Icons.pool, + 'pool_sharp': Icons.pool_sharp, + 'pool_rounded': Icons.pool_rounded, + 'pool_outlined': Icons.pool_outlined, + 'portable_wifi_off': Icons.portable_wifi_off, + 'portable_wifi_off_sharp': Icons.portable_wifi_off_sharp, + 'portable_wifi_off_rounded': Icons.portable_wifi_off_rounded, + 'portable_wifi_off_outlined': Icons.portable_wifi_off_outlined, + 'portrait': Icons.portrait, + 'portrait_sharp': Icons.portrait_sharp, + 'portrait_rounded': Icons.portrait_rounded, + 'portrait_outlined': Icons.portrait_outlined, + 'post_add': Icons.post_add, + 'post_add_sharp': Icons.post_add_sharp, + 'post_add_rounded': Icons.post_add_rounded, + 'post_add_outlined': Icons.post_add_outlined, + 'power': Icons.power, + 'power_sharp': Icons.power_sharp, + 'power_rounded': Icons.power_rounded, + 'power_outlined': Icons.power_outlined, + 'power_input': Icons.power_input, + 'power_input_sharp': Icons.power_input_sharp, + 'power_input_rounded': Icons.power_input_rounded, + 'power_input_outlined': Icons.power_input_outlined, + 'power_off': Icons.power_off, + 'power_off_sharp': Icons.power_off_sharp, + 'power_off_rounded': Icons.power_off_rounded, + 'power_off_outlined': Icons.power_off_outlined, + 'power_settings_new': Icons.power_settings_new, + 'power_settings_new_sharp': Icons.power_settings_new_sharp, + 'power_settings_new_rounded': Icons.power_settings_new_rounded, + 'power_settings_new_outlined': Icons.power_settings_new_outlined, + 'precision_manufacturing': Icons.precision_manufacturing, + 'precision_manufacturing_sharp': Icons.precision_manufacturing_sharp, + 'precision_manufacturing_rounded': + Icons.precision_manufacturing_rounded, + 'precision_manufacturing_outlined': + Icons.precision_manufacturing_outlined, + 'pregnant_woman': Icons.pregnant_woman, + 'pregnant_woman_sharp': Icons.pregnant_woman_sharp, + 'pregnant_woman_rounded': Icons.pregnant_woman_rounded, + 'pregnant_woman_outlined': Icons.pregnant_woman_outlined, + 'present_to_all': Icons.present_to_all, + 'present_to_all_sharp': Icons.present_to_all_sharp, + 'present_to_all_rounded': Icons.present_to_all_rounded, + 'present_to_all_outlined': Icons.present_to_all_outlined, + 'preview': Icons.preview, + 'preview_sharp': Icons.preview_sharp, + 'preview_rounded': Icons.preview_rounded, + 'preview_outlined': Icons.preview_outlined, + 'price_change': Icons.price_change, + 'price_change_sharp': Icons.price_change_sharp, + 'price_change_rounded': Icons.price_change_rounded, + 'price_change_outlined': Icons.price_change_outlined, + 'price_check': Icons.price_check, + 'price_check_sharp': Icons.price_check_sharp, + 'price_check_rounded': Icons.price_check_rounded, + 'price_check_outlined': Icons.price_check_outlined, + 'print': Icons.print, + 'print_sharp': Icons.print_sharp, + 'print_rounded': Icons.print_rounded, + 'print_outlined': Icons.print_outlined, + 'print_disabled': Icons.print_disabled, + 'print_disabled_sharp': Icons.print_disabled_sharp, + 'print_disabled_rounded': Icons.print_disabled_rounded, + 'print_disabled_outlined': Icons.print_disabled_outlined, + 'priority_high': Icons.priority_high, + 'priority_high_sharp': Icons.priority_high_sharp, + 'priority_high_rounded': Icons.priority_high_rounded, + 'priority_high_outlined': Icons.priority_high_outlined, + 'privacy_tip': Icons.privacy_tip, + 'privacy_tip_sharp': Icons.privacy_tip_sharp, + 'privacy_tip_rounded': Icons.privacy_tip_rounded, + 'privacy_tip_outlined': Icons.privacy_tip_outlined, + 'production_quantity_limits': Icons.production_quantity_limits, + 'production_quantity_limits_sharp': + Icons.production_quantity_limits_sharp, + 'production_quantity_limits_rounded': + Icons.production_quantity_limits_rounded, + 'production_quantity_limits_outlined': + Icons.production_quantity_limits_outlined, + 'psychology': Icons.psychology, + 'psychology_sharp': Icons.psychology_sharp, + 'psychology_rounded': Icons.psychology_rounded, + 'psychology_outlined': Icons.psychology_outlined, + 'public': Icons.public, + 'public_sharp': Icons.public_sharp, + 'public_rounded': Icons.public_rounded, + 'public_outlined': Icons.public_outlined, + 'public_off': Icons.public_off, + 'public_off_sharp': Icons.public_off_sharp, + 'public_off_rounded': Icons.public_off_rounded, + 'public_off_outlined': Icons.public_off_outlined, + 'publish': Icons.publish, + 'publish_sharp': Icons.publish_sharp, + 'publish_rounded': Icons.publish_rounded, + 'publish_outlined': Icons.publish_outlined, + 'published_with_changes': Icons.published_with_changes, + 'published_with_changes_sharp': Icons.published_with_changes_sharp, + 'published_with_changes_rounded': Icons.published_with_changes_rounded, + 'published_with_changes_outlined': + Icons.published_with_changes_outlined, + 'push_pin': Icons.push_pin, + 'push_pin_sharp': Icons.push_pin_sharp, + 'push_pin_rounded': Icons.push_pin_rounded, + 'push_pin_outlined': Icons.push_pin_outlined, + 'qr_code': Icons.qr_code, + 'qr_code_sharp': Icons.qr_code_sharp, + 'qr_code_rounded': Icons.qr_code_rounded, + 'qr_code_outlined': Icons.qr_code_outlined, + 'qr_code_2': Icons.qr_code_2, + 'qr_code_2_sharp': Icons.qr_code_2_sharp, + 'qr_code_2_rounded': Icons.qr_code_2_rounded, + 'qr_code_2_outlined': Icons.qr_code_2_outlined, + 'qr_code_scanner': Icons.qr_code_scanner, + 'qr_code_scanner_sharp': Icons.qr_code_scanner_sharp, + 'qr_code_scanner_rounded': Icons.qr_code_scanner_rounded, + 'qr_code_scanner_outlined': Icons.qr_code_scanner_outlined, + 'query_builder': Icons.query_builder, + 'query_builder_sharp': Icons.query_builder_sharp, + 'query_builder_rounded': Icons.query_builder_rounded, + 'query_builder_outlined': Icons.query_builder_outlined, + 'query_stats': Icons.query_stats, + 'query_stats_sharp': Icons.query_stats_sharp, + 'query_stats_rounded': Icons.query_stats_rounded, + 'query_stats_outlined': Icons.query_stats_outlined, + 'question_answer': Icons.question_answer, + 'question_answer_sharp': Icons.question_answer_sharp, + 'question_answer_rounded': Icons.question_answer_rounded, + 'question_answer_outlined': Icons.question_answer_outlined, + 'queue': Icons.queue, + 'queue_sharp': Icons.queue_sharp, + 'queue_rounded': Icons.queue_rounded, + 'queue_outlined': Icons.queue_outlined, + 'queue_music': Icons.queue_music, + 'queue_music_sharp': Icons.queue_music_sharp, + 'queue_music_rounded': Icons.queue_music_rounded, + 'queue_music_outlined': Icons.queue_music_outlined, + 'queue_play_next': Icons.queue_play_next, + 'queue_play_next_sharp': Icons.queue_play_next_sharp, + 'queue_play_next_rounded': Icons.queue_play_next_rounded, + 'queue_play_next_outlined': Icons.queue_play_next_outlined, + 'quick_contacts_dialer': Icons.quick_contacts_dialer, + 'quick_contacts_dialer_sharp': Icons.quick_contacts_dialer_sharp, + 'quick_contacts_dialer_rounded': Icons.quick_contacts_dialer_rounded, + 'quick_contacts_dialer_outlined': Icons.quick_contacts_dialer_outlined, + 'quick_contacts_mail': Icons.quick_contacts_mail, + 'quick_contacts_mail_sharp': Icons.quick_contacts_mail_sharp, + 'quick_contacts_mail_rounded': Icons.quick_contacts_mail_rounded, + 'quick_contacts_mail_outlined': Icons.quick_contacts_mail_outlined, + 'quickreply': Icons.quickreply, + 'quickreply_sharp': Icons.quickreply_sharp, + 'quickreply_rounded': Icons.quickreply_rounded, + 'quickreply_outlined': Icons.quickreply_outlined, + 'quiz': Icons.quiz, + 'quiz_sharp': Icons.quiz_sharp, + 'quiz_rounded': Icons.quiz_rounded, + 'quiz_outlined': Icons.quiz_outlined, + 'r_mobiledata': Icons.r_mobiledata, + 'r_mobiledata_sharp': Icons.r_mobiledata_sharp, + 'r_mobiledata_rounded': Icons.r_mobiledata_rounded, + 'r_mobiledata_outlined': Icons.r_mobiledata_outlined, + 'radar': Icons.radar, + 'radar_sharp': Icons.radar_sharp, + 'radar_rounded': Icons.radar_rounded, + 'radar_outlined': Icons.radar_outlined, + 'radio': Icons.radio, + 'radio_sharp': Icons.radio_sharp, + 'radio_rounded': Icons.radio_rounded, + 'radio_outlined': Icons.radio_outlined, + 'radio_button_checked': Icons.radio_button_checked, + 'radio_button_checked_sharp': Icons.radio_button_checked_sharp, + 'radio_button_checked_rounded': Icons.radio_button_checked_rounded, + 'radio_button_checked_outlined': Icons.radio_button_checked_outlined, + 'radio_button_off': Icons.radio_button_off, + 'radio_button_off_sharp': Icons.radio_button_off_sharp, + 'radio_button_off_rounded': Icons.radio_button_off_rounded, + 'radio_button_off_outlined': Icons.radio_button_off_outlined, + 'radio_button_on': Icons.radio_button_on, + 'radio_button_on_sharp': Icons.radio_button_on_sharp, + 'radio_button_on_rounded': Icons.radio_button_on_rounded, + 'radio_button_on_outlined': Icons.radio_button_on_outlined, + 'radio_button_unchecked': Icons.radio_button_unchecked, + 'radio_button_unchecked_sharp': Icons.radio_button_unchecked_sharp, + 'radio_button_unchecked_rounded': Icons.radio_button_unchecked_rounded, + 'radio_button_unchecked_outlined': + Icons.radio_button_unchecked_outlined, + 'railway_alert': Icons.railway_alert, + 'railway_alert_sharp': Icons.railway_alert_sharp, + 'railway_alert_rounded': Icons.railway_alert_rounded, + 'railway_alert_outlined': Icons.railway_alert_outlined, + 'ramen_dining': Icons.ramen_dining, + 'ramen_dining_sharp': Icons.ramen_dining_sharp, + 'ramen_dining_rounded': Icons.ramen_dining_rounded, + 'ramen_dining_outlined': Icons.ramen_dining_outlined, + 'rate_review': Icons.rate_review, + 'rate_review_sharp': Icons.rate_review_sharp, + 'rate_review_rounded': Icons.rate_review_rounded, + 'rate_review_outlined': Icons.rate_review_outlined, + 'raw_off': Icons.raw_off, + 'raw_off_sharp': Icons.raw_off_sharp, + 'raw_off_rounded': Icons.raw_off_rounded, + 'raw_off_outlined': Icons.raw_off_outlined, + 'raw_on': Icons.raw_on, + 'raw_on_sharp': Icons.raw_on_sharp, + 'raw_on_rounded': Icons.raw_on_rounded, + 'raw_on_outlined': Icons.raw_on_outlined, + 'read_more': Icons.read_more, + 'read_more_sharp': Icons.read_more_sharp, + 'read_more_rounded': Icons.read_more_rounded, + 'read_more_outlined': Icons.read_more_outlined, + 'real_estate_agent': Icons.real_estate_agent, + 'real_estate_agent_sharp': Icons.real_estate_agent_sharp, + 'real_estate_agent_rounded': Icons.real_estate_agent_rounded, + 'real_estate_agent_outlined': Icons.real_estate_agent_outlined, + 'receipt': Icons.receipt, + 'receipt_sharp': Icons.receipt_sharp, + 'receipt_rounded': Icons.receipt_rounded, + 'receipt_outlined': Icons.receipt_outlined, + 'receipt_long': Icons.receipt_long, + 'receipt_long_sharp': Icons.receipt_long_sharp, + 'receipt_long_rounded': Icons.receipt_long_rounded, + 'receipt_long_outlined': Icons.receipt_long_outlined, + 'recent_actors': Icons.recent_actors, + 'recent_actors_sharp': Icons.recent_actors_sharp, + 'recent_actors_rounded': Icons.recent_actors_rounded, + 'recent_actors_outlined': Icons.recent_actors_outlined, + 'recommend': Icons.recommend, + 'recommend_sharp': Icons.recommend_sharp, + 'recommend_rounded': Icons.recommend_rounded, + 'recommend_outlined': Icons.recommend_outlined, + 'record_voice_over': Icons.record_voice_over, + 'record_voice_over_sharp': Icons.record_voice_over_sharp, + 'record_voice_over_rounded': Icons.record_voice_over_rounded, + 'record_voice_over_outlined': Icons.record_voice_over_outlined, + 'redeem': Icons.redeem, + 'redeem_sharp': Icons.redeem_sharp, + 'redeem_rounded': Icons.redeem_rounded, + 'redeem_outlined': Icons.redeem_outlined, + 'redo': Icons.redo, + 'redo_sharp': Icons.redo_sharp, + 'redo_rounded': Icons.redo_rounded, + 'redo_outlined': Icons.redo_outlined, + 'reduce_capacity': Icons.reduce_capacity, + 'reduce_capacity_sharp': Icons.reduce_capacity_sharp, + 'reduce_capacity_rounded': Icons.reduce_capacity_rounded, + 'reduce_capacity_outlined': Icons.reduce_capacity_outlined, + 'refresh': Icons.refresh, + 'refresh_sharp': Icons.refresh_sharp, + 'refresh_rounded': Icons.refresh_rounded, + 'refresh_outlined': Icons.refresh_outlined, + 'remember_me': Icons.remember_me, + 'remember_me_sharp': Icons.remember_me_sharp, + 'remember_me_rounded': Icons.remember_me_rounded, + 'remember_me_outlined': Icons.remember_me_outlined, + 'remove': Icons.remove, + 'remove_sharp': Icons.remove_sharp, + 'remove_rounded': Icons.remove_rounded, + 'remove_outlined': Icons.remove_outlined, + 'remove_circle': Icons.remove_circle, + 'remove_circle_sharp': Icons.remove_circle_sharp, + 'remove_circle_rounded': Icons.remove_circle_rounded, + 'remove_circle_outlined': Icons.remove_circle_outlined, + 'remove_circle_outline': Icons.remove_circle_outline, + 'remove_circle_outline_sharp': Icons.remove_circle_outline_sharp, + 'remove_circle_outline_rounded': Icons.remove_circle_outline_rounded, + 'remove_circle_outline_outlined': Icons.remove_circle_outline_outlined, + 'remove_done': Icons.remove_done, + 'remove_done_sharp': Icons.remove_done_sharp, + 'remove_done_rounded': Icons.remove_done_rounded, + 'remove_done_outlined': Icons.remove_done_outlined, + 'remove_from_queue': Icons.remove_from_queue, + 'remove_from_queue_sharp': Icons.remove_from_queue_sharp, + 'remove_from_queue_rounded': Icons.remove_from_queue_rounded, + 'remove_from_queue_outlined': Icons.remove_from_queue_outlined, + 'remove_moderator': Icons.remove_moderator, + 'remove_moderator_sharp': Icons.remove_moderator_sharp, + 'remove_moderator_rounded': Icons.remove_moderator_rounded, + 'remove_moderator_outlined': Icons.remove_moderator_outlined, + 'remove_red_eye': Icons.remove_red_eye, + 'remove_red_eye_sharp': Icons.remove_red_eye_sharp, + 'remove_red_eye_rounded': Icons.remove_red_eye_rounded, + 'remove_red_eye_outlined': Icons.remove_red_eye_outlined, + 'remove_shopping_cart': Icons.remove_shopping_cart, + 'remove_shopping_cart_sharp': Icons.remove_shopping_cart_sharp, + 'remove_shopping_cart_rounded': Icons.remove_shopping_cart_rounded, + 'remove_shopping_cart_outlined': Icons.remove_shopping_cart_outlined, + 'reorder': Icons.reorder, + 'reorder_sharp': Icons.reorder_sharp, + 'reorder_rounded': Icons.reorder_rounded, + 'reorder_outlined': Icons.reorder_outlined, + 'repeat': Icons.repeat, + 'repeat_sharp': Icons.repeat_sharp, + 'repeat_rounded': Icons.repeat_rounded, + 'repeat_outlined': Icons.repeat_outlined, + 'repeat_on': Icons.repeat_on, + 'repeat_on_sharp': Icons.repeat_on_sharp, + 'repeat_on_rounded': Icons.repeat_on_rounded, + 'repeat_on_outlined': Icons.repeat_on_outlined, + 'repeat_one': Icons.repeat_one, + 'repeat_one_sharp': Icons.repeat_one_sharp, + 'repeat_one_rounded': Icons.repeat_one_rounded, + 'repeat_one_outlined': Icons.repeat_one_outlined, + 'repeat_one_on': Icons.repeat_one_on, + 'repeat_one_on_sharp': Icons.repeat_one_on_sharp, + 'repeat_one_on_rounded': Icons.repeat_one_on_rounded, + 'repeat_one_on_outlined': Icons.repeat_one_on_outlined, + 'replay': Icons.replay, + 'replay_sharp': Icons.replay_sharp, + 'replay_rounded': Icons.replay_rounded, + 'replay_outlined': Icons.replay_outlined, + 'replay_10': Icons.replay_10, + 'replay_10_sharp': Icons.replay_10_sharp, + 'replay_10_rounded': Icons.replay_10_rounded, + 'replay_10_outlined': Icons.replay_10_outlined, + 'replay_30': Icons.replay_30, + 'replay_30_sharp': Icons.replay_30_sharp, + 'replay_30_rounded': Icons.replay_30_rounded, + 'replay_30_outlined': Icons.replay_30_outlined, + 'replay_5': Icons.replay_5, + 'replay_5_sharp': Icons.replay_5_sharp, + 'replay_5_rounded': Icons.replay_5_rounded, + 'replay_5_outlined': Icons.replay_5_outlined, + 'replay_circle_filled': Icons.replay_circle_filled, + 'replay_circle_filled_sharp': Icons.replay_circle_filled_sharp, + 'replay_circle_filled_rounded': Icons.replay_circle_filled_rounded, + 'replay_circle_filled_outlined': Icons.replay_circle_filled_outlined, + 'reply': Icons.reply, + 'reply_sharp': Icons.reply_sharp, + 'reply_rounded': Icons.reply_rounded, + 'reply_outlined': Icons.reply_outlined, + 'reply_all': Icons.reply_all, + 'reply_all_sharp': Icons.reply_all_sharp, + 'reply_all_rounded': Icons.reply_all_rounded, + 'reply_all_outlined': Icons.reply_all_outlined, + 'report': Icons.report, + 'report_sharp': Icons.report_sharp, + 'report_rounded': Icons.report_rounded, + 'report_outlined': Icons.report_outlined, + 'report_gmailerrorred': Icons.report_gmailerrorred, + 'report_gmailerrorred_sharp': Icons.report_gmailerrorred_sharp, + 'report_gmailerrorred_rounded': Icons.report_gmailerrorred_rounded, + 'report_gmailerrorred_outlined': Icons.report_gmailerrorred_outlined, + 'report_off': Icons.report_off, + 'report_off_sharp': Icons.report_off_sharp, + 'report_off_rounded': Icons.report_off_rounded, + 'report_off_outlined': Icons.report_off_outlined, + 'report_problem': Icons.report_problem, + 'report_problem_sharp': Icons.report_problem_sharp, + 'report_problem_rounded': Icons.report_problem_rounded, + 'report_problem_outlined': Icons.report_problem_outlined, + 'request_page': Icons.request_page, + 'request_page_sharp': Icons.request_page_sharp, + 'request_page_rounded': Icons.request_page_rounded, + 'request_page_outlined': Icons.request_page_outlined, + 'request_quote': Icons.request_quote, + 'request_quote_sharp': Icons.request_quote_sharp, + 'request_quote_rounded': Icons.request_quote_rounded, + 'request_quote_outlined': Icons.request_quote_outlined, + 'reset_tv': Icons.reset_tv, + 'reset_tv_sharp': Icons.reset_tv_sharp, + 'reset_tv_rounded': Icons.reset_tv_rounded, + 'reset_tv_outlined': Icons.reset_tv_outlined, + 'restart_alt': Icons.restart_alt, + 'restart_alt_sharp': Icons.restart_alt_sharp, + 'restart_alt_rounded': Icons.restart_alt_rounded, + 'restart_alt_outlined': Icons.restart_alt_outlined, + 'restaurant': Icons.restaurant, + 'restaurant_sharp': Icons.restaurant_sharp, + 'restaurant_rounded': Icons.restaurant_rounded, + 'restaurant_outlined': Icons.restaurant_outlined, + 'restaurant_menu': Icons.restaurant_menu, + 'restaurant_menu_sharp': Icons.restaurant_menu_sharp, + 'restaurant_menu_rounded': Icons.restaurant_menu_rounded, + 'restaurant_menu_outlined': Icons.restaurant_menu_outlined, + 'restore': Icons.restore, + 'restore_sharp': Icons.restore_sharp, + 'restore_rounded': Icons.restore_rounded, + 'restore_outlined': Icons.restore_outlined, + 'restore_from_trash': Icons.restore_from_trash, + 'restore_from_trash_sharp': Icons.restore_from_trash_sharp, + 'restore_from_trash_rounded': Icons.restore_from_trash_rounded, + 'restore_from_trash_outlined': Icons.restore_from_trash_outlined, + 'restore_page': Icons.restore_page, + 'restore_page_sharp': Icons.restore_page_sharp, + 'restore_page_rounded': Icons.restore_page_rounded, + 'restore_page_outlined': Icons.restore_page_outlined, + 'reviews': Icons.reviews, + 'reviews_sharp': Icons.reviews_sharp, + 'reviews_rounded': Icons.reviews_rounded, + 'reviews_outlined': Icons.reviews_outlined, + 'rice_bowl': Icons.rice_bowl, + 'rice_bowl_sharp': Icons.rice_bowl_sharp, + 'rice_bowl_rounded': Icons.rice_bowl_rounded, + 'rice_bowl_outlined': Icons.rice_bowl_outlined, + 'ring_volume': Icons.ring_volume, + 'ring_volume_sharp': Icons.ring_volume_sharp, + 'ring_volume_rounded': Icons.ring_volume_rounded, + 'ring_volume_outlined': Icons.ring_volume_outlined, + 'roofing': Icons.roofing, + 'roofing_sharp': Icons.roofing_sharp, + 'roofing_rounded': Icons.roofing_rounded, + 'roofing_outlined': Icons.roofing_outlined, + 'room': Icons.room, + 'room_sharp': Icons.room_sharp, + 'room_rounded': Icons.room_rounded, + 'room_outlined': Icons.room_outlined, + 'room_preferences': Icons.room_preferences, + 'room_preferences_sharp': Icons.room_preferences_sharp, + 'room_preferences_rounded': Icons.room_preferences_rounded, + 'room_preferences_outlined': Icons.room_preferences_outlined, + 'room_service': Icons.room_service, + 'room_service_sharp': Icons.room_service_sharp, + 'room_service_rounded': Icons.room_service_rounded, + 'room_service_outlined': Icons.room_service_outlined, + 'rotate_90_degrees_ccw': Icons.rotate_90_degrees_ccw, + 'rotate_90_degrees_ccw_sharp': Icons.rotate_90_degrees_ccw_sharp, + 'rotate_90_degrees_ccw_rounded': Icons.rotate_90_degrees_ccw_rounded, + 'rotate_90_degrees_ccw_outlined': Icons.rotate_90_degrees_ccw_outlined, + 'rotate_left': Icons.rotate_left, + 'rotate_left_sharp': Icons.rotate_left_sharp, + 'rotate_left_rounded': Icons.rotate_left_rounded, + 'rotate_left_outlined': Icons.rotate_left_outlined, + 'rotate_right': Icons.rotate_right, + 'rotate_right_sharp': Icons.rotate_right_sharp, + 'rotate_right_rounded': Icons.rotate_right_rounded, + 'rotate_right_outlined': Icons.rotate_right_outlined, + 'rounded_corner': Icons.rounded_corner, + 'rounded_corner_sharp': Icons.rounded_corner_sharp, + 'rounded_corner_rounded': Icons.rounded_corner_rounded, + 'rounded_corner_outlined': Icons.rounded_corner_outlined, + 'router': Icons.router, + 'router_sharp': Icons.router_sharp, + 'router_rounded': Icons.router_rounded, + 'router_outlined': Icons.router_outlined, + 'rowing': Icons.rowing, + 'rowing_sharp': Icons.rowing_sharp, + 'rowing_rounded': Icons.rowing_rounded, + 'rowing_outlined': Icons.rowing_outlined, + 'rss_feed': Icons.rss_feed, + 'rss_feed_sharp': Icons.rss_feed_sharp, + 'rss_feed_rounded': Icons.rss_feed_rounded, + 'rss_feed_outlined': Icons.rss_feed_outlined, + 'rsvp': Icons.rsvp, + 'rsvp_sharp': Icons.rsvp_sharp, + 'rsvp_rounded': Icons.rsvp_rounded, + 'rsvp_outlined': Icons.rsvp_outlined, + 'rtt': Icons.rtt, + 'rtt_sharp': Icons.rtt_sharp, + 'rtt_rounded': Icons.rtt_rounded, + 'rtt_outlined': Icons.rtt_outlined, + 'rule': Icons.rule, + 'rule_sharp': Icons.rule_sharp, + 'rule_rounded': Icons.rule_rounded, + 'rule_outlined': Icons.rule_outlined, + 'rule_folder': Icons.rule_folder, + 'rule_folder_sharp': Icons.rule_folder_sharp, + 'rule_folder_rounded': Icons.rule_folder_rounded, + 'rule_folder_outlined': Icons.rule_folder_outlined, + 'run_circle': Icons.run_circle, + 'run_circle_sharp': Icons.run_circle_sharp, + 'run_circle_rounded': Icons.run_circle_rounded, + 'run_circle_outlined': Icons.run_circle_outlined, + 'running_with_errors': Icons.running_with_errors, + 'running_with_errors_sharp': Icons.running_with_errors_sharp, + 'running_with_errors_rounded': Icons.running_with_errors_rounded, + 'running_with_errors_outlined': Icons.running_with_errors_outlined, + 'rv_hookup': Icons.rv_hookup, + 'rv_hookup_sharp': Icons.rv_hookup_sharp, + 'rv_hookup_rounded': Icons.rv_hookup_rounded, + 'rv_hookup_outlined': Icons.rv_hookup_outlined, + 'safety_divider': Icons.safety_divider, + 'safety_divider_sharp': Icons.safety_divider_sharp, + 'safety_divider_rounded': Icons.safety_divider_rounded, + 'safety_divider_outlined': Icons.safety_divider_outlined, + 'sailing': Icons.sailing, + 'sailing_sharp': Icons.sailing_sharp, + 'sailing_rounded': Icons.sailing_rounded, + 'sailing_outlined': Icons.sailing_outlined, + 'sanitizer': Icons.sanitizer, + 'sanitizer_sharp': Icons.sanitizer_sharp, + 'sanitizer_rounded': Icons.sanitizer_rounded, + 'sanitizer_outlined': Icons.sanitizer_outlined, + 'satellite': Icons.satellite, + 'satellite_sharp': Icons.satellite_sharp, + 'satellite_rounded': Icons.satellite_rounded, + 'satellite_outlined': Icons.satellite_outlined, + 'save': Icons.save, + 'save_sharp': Icons.save_sharp, + 'save_rounded': Icons.save_rounded, + 'save_outlined': Icons.save_outlined, + 'save_alt': Icons.save_alt, + 'save_alt_sharp': Icons.save_alt_sharp, + 'save_alt_rounded': Icons.save_alt_rounded, + 'save_alt_outlined': Icons.save_alt_outlined, + 'saved_search': Icons.saved_search, + 'saved_search_sharp': Icons.saved_search_sharp, + 'saved_search_rounded': Icons.saved_search_rounded, + 'saved_search_outlined': Icons.saved_search_outlined, + 'savings': Icons.savings, + 'savings_sharp': Icons.savings_sharp, + 'savings_rounded': Icons.savings_rounded, + 'savings_outlined': Icons.savings_outlined, + 'scanner': Icons.scanner, + 'scanner_sharp': Icons.scanner_sharp, + 'scanner_rounded': Icons.scanner_rounded, + 'scanner_outlined': Icons.scanner_outlined, + 'scatter_plot': Icons.scatter_plot, + 'scatter_plot_sharp': Icons.scatter_plot_sharp, + 'scatter_plot_rounded': Icons.scatter_plot_rounded, + 'scatter_plot_outlined': Icons.scatter_plot_outlined, + 'schedule': Icons.schedule, + 'schedule_sharp': Icons.schedule_sharp, + 'schedule_rounded': Icons.schedule_rounded, + 'schedule_outlined': Icons.schedule_outlined, + 'schedule_send': Icons.schedule_send, + 'schedule_send_sharp': Icons.schedule_send_sharp, + 'schedule_send_rounded': Icons.schedule_send_rounded, + 'schedule_send_outlined': Icons.schedule_send_outlined, + 'schema': Icons.schema, + 'schema_sharp': Icons.schema_sharp, + 'schema_rounded': Icons.schema_rounded, + 'schema_outlined': Icons.schema_outlined, + 'school': Icons.school, + 'school_sharp': Icons.school_sharp, + 'school_rounded': Icons.school_rounded, + 'school_outlined': Icons.school_outlined, + 'science': Icons.science, + 'science_sharp': Icons.science_sharp, + 'science_rounded': Icons.science_rounded, + 'science_outlined': Icons.science_outlined, + 'score': Icons.score, + 'score_sharp': Icons.score_sharp, + 'score_rounded': Icons.score_rounded, + 'score_outlined': Icons.score_outlined, + 'screen_lock_landscape': Icons.screen_lock_landscape, + 'screen_lock_landscape_sharp': Icons.screen_lock_landscape_sharp, + 'screen_lock_landscape_rounded': Icons.screen_lock_landscape_rounded, + 'screen_lock_landscape_outlined': Icons.screen_lock_landscape_outlined, + 'screen_lock_portrait': Icons.screen_lock_portrait, + 'screen_lock_portrait_sharp': Icons.screen_lock_portrait_sharp, + 'screen_lock_portrait_rounded': Icons.screen_lock_portrait_rounded, + 'screen_lock_portrait_outlined': Icons.screen_lock_portrait_outlined, + 'screen_lock_rotation': Icons.screen_lock_rotation, + 'screen_lock_rotation_sharp': Icons.screen_lock_rotation_sharp, + 'screen_lock_rotation_rounded': Icons.screen_lock_rotation_rounded, + 'screen_lock_rotation_outlined': Icons.screen_lock_rotation_outlined, + 'screen_rotation': Icons.screen_rotation, + 'screen_rotation_sharp': Icons.screen_rotation_sharp, + 'screen_rotation_rounded': Icons.screen_rotation_rounded, + 'screen_rotation_outlined': Icons.screen_rotation_outlined, + 'screen_search_desktop': Icons.screen_search_desktop, + 'screen_search_desktop_sharp': Icons.screen_search_desktop_sharp, + 'screen_search_desktop_rounded': Icons.screen_search_desktop_rounded, + 'screen_search_desktop_outlined': Icons.screen_search_desktop_outlined, + 'screen_share': Icons.screen_share, + 'screen_share_sharp': Icons.screen_share_sharp, + 'screen_share_rounded': Icons.screen_share_rounded, + 'screen_share_outlined': Icons.screen_share_outlined, + 'screenshot': Icons.screenshot, + 'screenshot_sharp': Icons.screenshot_sharp, + 'screenshot_rounded': Icons.screenshot_rounded, + 'screenshot_outlined': Icons.screenshot_outlined, + 'sd': Icons.sd, + 'sd_sharp': Icons.sd_sharp, + 'sd_rounded': Icons.sd_rounded, + 'sd_outlined': Icons.sd_outlined, + 'sd_card': Icons.sd_card, + 'sd_card_sharp': Icons.sd_card_sharp, + 'sd_card_rounded': Icons.sd_card_rounded, + 'sd_card_outlined': Icons.sd_card_outlined, + 'sd_card_alert': Icons.sd_card_alert, + 'sd_card_alert_sharp': Icons.sd_card_alert_sharp, + 'sd_card_alert_rounded': Icons.sd_card_alert_rounded, + 'sd_card_alert_outlined': Icons.sd_card_alert_outlined, + 'sd_storage': Icons.sd_storage, + 'sd_storage_sharp': Icons.sd_storage_sharp, + 'sd_storage_rounded': Icons.sd_storage_rounded, + 'sd_storage_outlined': Icons.sd_storage_outlined, + 'search': Icons.search, + 'search_sharp': Icons.search_sharp, + 'search_rounded': Icons.search_rounded, + 'search_outlined': Icons.search_outlined, + 'search_off': Icons.search_off, + 'search_off_sharp': Icons.search_off_sharp, + 'search_off_rounded': Icons.search_off_rounded, + 'search_off_outlined': Icons.search_off_outlined, + 'security': Icons.security, + 'security_sharp': Icons.security_sharp, + 'security_rounded': Icons.security_rounded, + 'security_outlined': Icons.security_outlined, + 'security_update': Icons.security_update, + 'security_update_sharp': Icons.security_update_sharp, + 'security_update_rounded': Icons.security_update_rounded, + 'security_update_outlined': Icons.security_update_outlined, + 'security_update_good': Icons.security_update_good, + 'security_update_good_sharp': Icons.security_update_good_sharp, + 'security_update_good_rounded': Icons.security_update_good_rounded, + 'security_update_good_outlined': Icons.security_update_good_outlined, + 'security_update_warning': Icons.security_update_warning, + 'security_update_warning_sharp': Icons.security_update_warning_sharp, + 'security_update_warning_rounded': + Icons.security_update_warning_rounded, + 'security_update_warning_outlined': + Icons.security_update_warning_outlined, + 'segment': Icons.segment, + 'segment_sharp': Icons.segment_sharp, + 'segment_rounded': Icons.segment_rounded, + 'segment_outlined': Icons.segment_outlined, + 'select_all': Icons.select_all, + 'select_all_sharp': Icons.select_all_sharp, + 'select_all_rounded': Icons.select_all_rounded, + 'select_all_outlined': Icons.select_all_outlined, + 'self_improvement': Icons.self_improvement, + 'self_improvement_sharp': Icons.self_improvement_sharp, + 'self_improvement_rounded': Icons.self_improvement_rounded, + 'self_improvement_outlined': Icons.self_improvement_outlined, + 'sell': Icons.sell, + 'sell_sharp': Icons.sell_sharp, + 'sell_rounded': Icons.sell_rounded, + 'sell_outlined': Icons.sell_outlined, + 'send': Icons.send, + 'send_sharp': Icons.send_sharp, + 'send_rounded': Icons.send_rounded, + 'send_outlined': Icons.send_outlined, + 'send_and_archive': Icons.send_and_archive, + 'send_and_archive_sharp': Icons.send_and_archive_sharp, + 'send_and_archive_rounded': Icons.send_and_archive_rounded, + 'send_and_archive_outlined': Icons.send_and_archive_outlined, + 'send_to_mobile': Icons.send_to_mobile, + 'send_to_mobile_sharp': Icons.send_to_mobile_sharp, + 'send_to_mobile_rounded': Icons.send_to_mobile_rounded, + 'send_to_mobile_outlined': Icons.send_to_mobile_outlined, + 'sensor_door': Icons.sensor_door, + 'sensor_door_sharp': Icons.sensor_door_sharp, + 'sensor_door_rounded': Icons.sensor_door_rounded, + 'sensor_door_outlined': Icons.sensor_door_outlined, + 'sensor_window': Icons.sensor_window, + 'sensor_window_sharp': Icons.sensor_window_sharp, + 'sensor_window_rounded': Icons.sensor_window_rounded, + 'sensor_window_outlined': Icons.sensor_window_outlined, + 'sensors': Icons.sensors, + 'sensors_sharp': Icons.sensors_sharp, + 'sensors_rounded': Icons.sensors_rounded, + 'sensors_outlined': Icons.sensors_outlined, + 'sensors_off': Icons.sensors_off, + 'sensors_off_sharp': Icons.sensors_off_sharp, + 'sensors_off_rounded': Icons.sensors_off_rounded, + 'sensors_off_outlined': Icons.sensors_off_outlined, + 'sentiment_dissatisfied': Icons.sentiment_dissatisfied, + 'sentiment_dissatisfied_sharp': Icons.sentiment_dissatisfied_sharp, + 'sentiment_dissatisfied_rounded': Icons.sentiment_dissatisfied_rounded, + 'sentiment_dissatisfied_outlined': + Icons.sentiment_dissatisfied_outlined, + 'sentiment_neutral': Icons.sentiment_neutral, + 'sentiment_neutral_sharp': Icons.sentiment_neutral_sharp, + 'sentiment_neutral_rounded': Icons.sentiment_neutral_rounded, + 'sentiment_neutral_outlined': Icons.sentiment_neutral_outlined, + 'sentiment_satisfied': Icons.sentiment_satisfied, + 'sentiment_satisfied_sharp': Icons.sentiment_satisfied_sharp, + 'sentiment_satisfied_rounded': Icons.sentiment_satisfied_rounded, + 'sentiment_satisfied_outlined': Icons.sentiment_satisfied_outlined, + 'sentiment_satisfied_alt': Icons.sentiment_satisfied_alt, + 'sentiment_satisfied_alt_sharp': Icons.sentiment_satisfied_alt_sharp, + 'sentiment_satisfied_alt_rounded': + Icons.sentiment_satisfied_alt_rounded, + 'sentiment_satisfied_alt_outlined': + Icons.sentiment_satisfied_alt_outlined, + 'sentiment_very_dissatisfied': Icons.sentiment_very_dissatisfied, + 'sentiment_very_dissatisfied_sharp': + Icons.sentiment_very_dissatisfied_sharp, + 'sentiment_very_dissatisfied_rounded': + Icons.sentiment_very_dissatisfied_rounded, + 'sentiment_very_dissatisfied_outlined': + Icons.sentiment_very_dissatisfied_outlined, + 'sentiment_very_satisfied': Icons.sentiment_very_satisfied, + 'sentiment_very_satisfied_sharp': Icons.sentiment_very_satisfied_sharp, + 'sentiment_very_satisfied_rounded': + Icons.sentiment_very_satisfied_rounded, + 'sentiment_very_satisfied_outlined': + Icons.sentiment_very_satisfied_outlined, + 'set_meal': Icons.set_meal, + 'set_meal_sharp': Icons.set_meal_sharp, + 'set_meal_rounded': Icons.set_meal_rounded, + 'set_meal_outlined': Icons.set_meal_outlined, + 'settings': Icons.settings, + 'settings_sharp': Icons.settings_sharp, + 'settings_rounded': Icons.settings_rounded, + 'settings_outlined': Icons.settings_outlined, + 'settings_accessibility': Icons.settings_accessibility, + 'settings_accessibility_sharp': Icons.settings_accessibility_sharp, + 'settings_accessibility_rounded': Icons.settings_accessibility_rounded, + 'settings_accessibility_outlined': + Icons.settings_accessibility_outlined, + 'settings_applications': Icons.settings_applications, + 'settings_applications_sharp': Icons.settings_applications_sharp, + 'settings_applications_rounded': Icons.settings_applications_rounded, + 'settings_applications_outlined': Icons.settings_applications_outlined, + 'settings_backup_restore': Icons.settings_backup_restore, + 'settings_backup_restore_sharp': Icons.settings_backup_restore_sharp, + 'settings_backup_restore_rounded': + Icons.settings_backup_restore_rounded, + 'settings_backup_restore_outlined': + Icons.settings_backup_restore_outlined, + 'settings_bluetooth': Icons.settings_bluetooth, + 'settings_bluetooth_sharp': Icons.settings_bluetooth_sharp, + 'settings_bluetooth_rounded': Icons.settings_bluetooth_rounded, + 'settings_bluetooth_outlined': Icons.settings_bluetooth_outlined, + 'settings_brightness': Icons.settings_brightness, + 'settings_brightness_sharp': Icons.settings_brightness_sharp, + 'settings_brightness_rounded': Icons.settings_brightness_rounded, + 'settings_brightness_outlined': Icons.settings_brightness_outlined, + 'settings_cell': Icons.settings_cell, + 'settings_cell_sharp': Icons.settings_cell_sharp, + 'settings_cell_rounded': Icons.settings_cell_rounded, + 'settings_cell_outlined': Icons.settings_cell_outlined, + 'settings_display': Icons.settings_display, + 'settings_display_sharp': Icons.settings_display_sharp, + 'settings_display_rounded': Icons.settings_display_rounded, + 'settings_display_outlined': Icons.settings_display_outlined, + 'settings_ethernet': Icons.settings_ethernet, + 'settings_ethernet_sharp': Icons.settings_ethernet_sharp, + 'settings_ethernet_rounded': Icons.settings_ethernet_rounded, + 'settings_ethernet_outlined': Icons.settings_ethernet_outlined, + 'settings_input_antenna': Icons.settings_input_antenna, + 'settings_input_antenna_sharp': Icons.settings_input_antenna_sharp, + 'settings_input_antenna_rounded': Icons.settings_input_antenna_rounded, + 'settings_input_antenna_outlined': + Icons.settings_input_antenna_outlined, + 'settings_input_component': Icons.settings_input_component, + 'settings_input_component_sharp': Icons.settings_input_component_sharp, + 'settings_input_component_rounded': + Icons.settings_input_component_rounded, + 'settings_input_component_outlined': + Icons.settings_input_component_outlined, + 'settings_input_composite': Icons.settings_input_composite, + 'settings_input_composite_sharp': Icons.settings_input_composite_sharp, + 'settings_input_composite_rounded': + Icons.settings_input_composite_rounded, + 'settings_input_composite_outlined': + Icons.settings_input_composite_outlined, + 'settings_input_hdmi': Icons.settings_input_hdmi, + 'settings_input_hdmi_sharp': Icons.settings_input_hdmi_sharp, + 'settings_input_hdmi_rounded': Icons.settings_input_hdmi_rounded, + 'settings_input_hdmi_outlined': Icons.settings_input_hdmi_outlined, + 'settings_input_svideo': Icons.settings_input_svideo, + 'settings_input_svideo_sharp': Icons.settings_input_svideo_sharp, + 'settings_input_svideo_rounded': Icons.settings_input_svideo_rounded, + 'settings_input_svideo_outlined': Icons.settings_input_svideo_outlined, + 'settings_overscan': Icons.settings_overscan, + 'settings_overscan_sharp': Icons.settings_overscan_sharp, + 'settings_overscan_rounded': Icons.settings_overscan_rounded, + 'settings_overscan_outlined': Icons.settings_overscan_outlined, + 'settings_phone': Icons.settings_phone, + 'settings_phone_sharp': Icons.settings_phone_sharp, + 'settings_phone_rounded': Icons.settings_phone_rounded, + 'settings_phone_outlined': Icons.settings_phone_outlined, + 'settings_power': Icons.settings_power, + 'settings_power_sharp': Icons.settings_power_sharp, + 'settings_power_rounded': Icons.settings_power_rounded, + 'settings_power_outlined': Icons.settings_power_outlined, + 'settings_remote': Icons.settings_remote, + 'settings_remote_sharp': Icons.settings_remote_sharp, + 'settings_remote_rounded': Icons.settings_remote_rounded, + 'settings_remote_outlined': Icons.settings_remote_outlined, + 'settings_suggest': Icons.settings_suggest, + 'settings_suggest_sharp': Icons.settings_suggest_sharp, + 'settings_suggest_rounded': Icons.settings_suggest_rounded, + 'settings_suggest_outlined': Icons.settings_suggest_outlined, + 'settings_system_daydream': Icons.settings_system_daydream, + 'settings_system_daydream_sharp': Icons.settings_system_daydream_sharp, + 'settings_system_daydream_rounded': + Icons.settings_system_daydream_rounded, + 'settings_system_daydream_outlined': + Icons.settings_system_daydream_outlined, + 'settings_voice': Icons.settings_voice, + 'settings_voice_sharp': Icons.settings_voice_sharp, + 'settings_voice_rounded': Icons.settings_voice_rounded, + 'settings_voice_outlined': Icons.settings_voice_outlined, + 'share': Icons.share, + 'share_sharp': Icons.share_sharp, + 'share_rounded': Icons.share_rounded, + 'share_outlined': Icons.share_outlined, + 'share_arrival_time': Icons.share_arrival_time, + 'share_arrival_time_sharp': Icons.share_arrival_time_sharp, + 'share_arrival_time_rounded': Icons.share_arrival_time_rounded, + 'share_arrival_time_outlined': Icons.share_arrival_time_outlined, + 'share_location': Icons.share_location, + 'share_location_sharp': Icons.share_location_sharp, + 'share_location_rounded': Icons.share_location_rounded, + 'share_location_outlined': Icons.share_location_outlined, + 'shield': Icons.shield, + 'shield_sharp': Icons.shield_sharp, + 'shield_rounded': Icons.shield_rounded, + 'shield_outlined': Icons.shield_outlined, + 'shop': Icons.shop, + 'shop_sharp': Icons.shop_sharp, + 'shop_rounded': Icons.shop_rounded, + 'shop_outlined': Icons.shop_outlined, + 'shop_2': Icons.shop_2, + 'shop_2_sharp': Icons.shop_2_sharp, + 'shop_2_rounded': Icons.shop_2_rounded, + 'shop_2_outlined': Icons.shop_2_outlined, + 'shop_two': Icons.shop_two, + 'shop_two_sharp': Icons.shop_two_sharp, + 'shop_two_rounded': Icons.shop_two_rounded, + 'shop_two_outlined': Icons.shop_two_outlined, + 'shopping_bag': Icons.shopping_bag, + 'shopping_bag_sharp': Icons.shopping_bag_sharp, + 'shopping_bag_rounded': Icons.shopping_bag_rounded, + 'shopping_bag_outlined': Icons.shopping_bag_outlined, + 'shopping_basket': Icons.shopping_basket, + 'shopping_basket_sharp': Icons.shopping_basket_sharp, + 'shopping_basket_rounded': Icons.shopping_basket_rounded, + 'shopping_basket_outlined': Icons.shopping_basket_outlined, + 'shopping_cart': Icons.shopping_cart, + 'shopping_cart_sharp': Icons.shopping_cart_sharp, + 'shopping_cart_rounded': Icons.shopping_cart_rounded, + 'shopping_cart_outlined': Icons.shopping_cart_outlined, + 'short_text': Icons.short_text, + 'short_text_sharp': Icons.short_text_sharp, + 'short_text_rounded': Icons.short_text_rounded, + 'short_text_outlined': Icons.short_text_outlined, + 'shortcut': Icons.shortcut, + 'shortcut_sharp': Icons.shortcut_sharp, + 'shortcut_rounded': Icons.shortcut_rounded, + 'shortcut_outlined': Icons.shortcut_outlined, + 'show_chart': Icons.show_chart, + 'show_chart_sharp': Icons.show_chart_sharp, + 'show_chart_rounded': Icons.show_chart_rounded, + 'show_chart_outlined': Icons.show_chart_outlined, + 'shower': Icons.shower, + 'shower_sharp': Icons.shower_sharp, + 'shower_rounded': Icons.shower_rounded, + 'shower_outlined': Icons.shower_outlined, + 'shuffle': Icons.shuffle, + 'shuffle_sharp': Icons.shuffle_sharp, + 'shuffle_rounded': Icons.shuffle_rounded, + 'shuffle_outlined': Icons.shuffle_outlined, + 'shuffle_on': Icons.shuffle_on, + 'shuffle_on_sharp': Icons.shuffle_on_sharp, + 'shuffle_on_rounded': Icons.shuffle_on_rounded, + 'shuffle_on_outlined': Icons.shuffle_on_outlined, + 'shutter_speed': Icons.shutter_speed, + 'shutter_speed_sharp': Icons.shutter_speed_sharp, + 'shutter_speed_rounded': Icons.shutter_speed_rounded, + 'shutter_speed_outlined': Icons.shutter_speed_outlined, + 'sick': Icons.sick, + 'sick_sharp': Icons.sick_sharp, + 'sick_rounded': Icons.sick_rounded, + 'sick_outlined': Icons.sick_outlined, + 'signal_cellular_0_bar': Icons.signal_cellular_0_bar, + 'signal_cellular_0_bar_sharp': Icons.signal_cellular_0_bar_sharp, + 'signal_cellular_0_bar_rounded': Icons.signal_cellular_0_bar_rounded, + 'signal_cellular_0_bar_outlined': Icons.signal_cellular_0_bar_outlined, + 'signal_cellular_4_bar': Icons.signal_cellular_4_bar, + 'signal_cellular_4_bar_sharp': Icons.signal_cellular_4_bar_sharp, + 'signal_cellular_4_bar_rounded': Icons.signal_cellular_4_bar_rounded, + 'signal_cellular_4_bar_outlined': Icons.signal_cellular_4_bar_outlined, + 'signal_cellular_alt': Icons.signal_cellular_alt, + 'signal_cellular_alt_sharp': Icons.signal_cellular_alt_sharp, + 'signal_cellular_alt_rounded': Icons.signal_cellular_alt_rounded, + 'signal_cellular_alt_outlined': Icons.signal_cellular_alt_outlined, + 'signal_cellular_connected_no_internet_0_bar': + Icons.signal_cellular_connected_no_internet_0_bar, + 'signal_cellular_connected_no_internet_0_bar_sharp': + Icons.signal_cellular_connected_no_internet_0_bar_sharp, + 'signal_cellular_connected_no_internet_0_bar_rounded': + Icons.signal_cellular_connected_no_internet_0_bar_rounded, + 'signal_cellular_connected_no_internet_0_bar_outlined': + Icons.signal_cellular_connected_no_internet_0_bar_outlined, + 'signal_cellular_connected_no_internet_4_bar': + Icons.signal_cellular_connected_no_internet_4_bar, + 'signal_cellular_connected_no_internet_4_bar_sharp': + Icons.signal_cellular_connected_no_internet_4_bar_sharp, + 'signal_cellular_connected_no_internet_4_bar_rounded': + Icons.signal_cellular_connected_no_internet_4_bar_rounded, + 'signal_cellular_connected_no_internet_4_bar_outlined': + Icons.signal_cellular_connected_no_internet_4_bar_outlined, + 'signal_cellular_no_sim': Icons.signal_cellular_no_sim, + 'signal_cellular_no_sim_sharp': Icons.signal_cellular_no_sim_sharp, + 'signal_cellular_no_sim_rounded': Icons.signal_cellular_no_sim_rounded, + 'signal_cellular_no_sim_outlined': + Icons.signal_cellular_no_sim_outlined, + 'signal_cellular_nodata': Icons.signal_cellular_nodata, + 'signal_cellular_nodata_sharp': Icons.signal_cellular_nodata_sharp, + 'signal_cellular_nodata_rounded': Icons.signal_cellular_nodata_rounded, + 'signal_cellular_nodata_outlined': + Icons.signal_cellular_nodata_outlined, + 'signal_cellular_null': Icons.signal_cellular_null, + 'signal_cellular_null_sharp': Icons.signal_cellular_null_sharp, + 'signal_cellular_null_rounded': Icons.signal_cellular_null_rounded, + 'signal_cellular_null_outlined': Icons.signal_cellular_null_outlined, + 'signal_cellular_off': Icons.signal_cellular_off, + 'signal_cellular_off_sharp': Icons.signal_cellular_off_sharp, + 'signal_cellular_off_rounded': Icons.signal_cellular_off_rounded, + 'signal_cellular_off_outlined': Icons.signal_cellular_off_outlined, + 'signal_wifi_0_bar': Icons.signal_wifi_0_bar, + 'signal_wifi_0_bar_sharp': Icons.signal_wifi_0_bar_sharp, + 'signal_wifi_0_bar_rounded': Icons.signal_wifi_0_bar_rounded, + 'signal_wifi_0_bar_outlined': Icons.signal_wifi_0_bar_outlined, + 'signal_wifi_4_bar': Icons.signal_wifi_4_bar, + 'signal_wifi_4_bar_sharp': Icons.signal_wifi_4_bar_sharp, + 'signal_wifi_4_bar_rounded': Icons.signal_wifi_4_bar_rounded, + 'signal_wifi_4_bar_outlined': Icons.signal_wifi_4_bar_outlined, + 'signal_wifi_4_bar_lock': Icons.signal_wifi_4_bar_lock, + 'signal_wifi_4_bar_lock_sharp': Icons.signal_wifi_4_bar_lock_sharp, + 'signal_wifi_4_bar_lock_rounded': Icons.signal_wifi_4_bar_lock_rounded, + 'signal_wifi_4_bar_lock_outlined': + Icons.signal_wifi_4_bar_lock_outlined, + 'signal_wifi_bad': Icons.signal_wifi_bad, + 'signal_wifi_bad_sharp': Icons.signal_wifi_bad_sharp, + 'signal_wifi_bad_rounded': Icons.signal_wifi_bad_rounded, + 'signal_wifi_bad_outlined': Icons.signal_wifi_bad_outlined, + 'signal_wifi_connected_no_internet_4': + Icons.signal_wifi_connected_no_internet_4, + 'signal_wifi_connected_no_internet_4_sharp': + Icons.signal_wifi_connected_no_internet_4_sharp, + 'signal_wifi_connected_no_internet_4_rounded': + Icons.signal_wifi_connected_no_internet_4_rounded, + 'signal_wifi_connected_no_internet_4_outlined': + Icons.signal_wifi_connected_no_internet_4_outlined, + 'signal_wifi_off': Icons.signal_wifi_off, + 'signal_wifi_off_sharp': Icons.signal_wifi_off_sharp, + 'signal_wifi_off_rounded': Icons.signal_wifi_off_rounded, + 'signal_wifi_off_outlined': Icons.signal_wifi_off_outlined, + 'signal_wifi_statusbar_4_bar': Icons.signal_wifi_statusbar_4_bar, + 'signal_wifi_statusbar_4_bar_sharp': + Icons.signal_wifi_statusbar_4_bar_sharp, + 'signal_wifi_statusbar_4_bar_rounded': + Icons.signal_wifi_statusbar_4_bar_rounded, + 'signal_wifi_statusbar_4_bar_outlined': + Icons.signal_wifi_statusbar_4_bar_outlined, + 'signal_wifi_statusbar_connected_no_internet_4': + Icons.signal_wifi_statusbar_connected_no_internet_4, + 'signal_wifi_statusbar_connected_no_internet_4_sharp': + Icons.signal_wifi_statusbar_connected_no_internet_4_sharp, + 'signal_wifi_statusbar_connected_no_internet_4_rounded': + Icons.signal_wifi_statusbar_connected_no_internet_4_rounded, + 'signal_wifi_statusbar_connected_no_internet_4_outlined': + Icons.signal_wifi_statusbar_connected_no_internet_4_outlined, + 'signal_wifi_statusbar_null': Icons.signal_wifi_statusbar_null, + 'signal_wifi_statusbar_null_sharp': + Icons.signal_wifi_statusbar_null_sharp, + 'signal_wifi_statusbar_null_rounded': + Icons.signal_wifi_statusbar_null_rounded, + 'signal_wifi_statusbar_null_outlined': + Icons.signal_wifi_statusbar_null_outlined, + 'sim_card': Icons.sim_card, + 'sim_card_sharp': Icons.sim_card_sharp, + 'sim_card_rounded': Icons.sim_card_rounded, + 'sim_card_outlined': Icons.sim_card_outlined, + 'sim_card_alert': Icons.sim_card_alert, + 'sim_card_alert_sharp': Icons.sim_card_alert_sharp, + 'sim_card_alert_rounded': Icons.sim_card_alert_rounded, + 'sim_card_alert_outlined': Icons.sim_card_alert_outlined, + 'sim_card_download': Icons.sim_card_download, + 'sim_card_download_sharp': Icons.sim_card_download_sharp, + 'sim_card_download_rounded': Icons.sim_card_download_rounded, + 'sim_card_download_outlined': Icons.sim_card_download_outlined, + 'single_bed': Icons.single_bed, + 'single_bed_sharp': Icons.single_bed_sharp, + 'single_bed_rounded': Icons.single_bed_rounded, + 'single_bed_outlined': Icons.single_bed_outlined, + 'sip': Icons.sip, + 'sip_sharp': Icons.sip_sharp, + 'sip_rounded': Icons.sip_rounded, + 'sip_outlined': Icons.sip_outlined, + 'skateboarding': Icons.skateboarding, + 'skateboarding_sharp': Icons.skateboarding_sharp, + 'skateboarding_rounded': Icons.skateboarding_rounded, + 'skateboarding_outlined': Icons.skateboarding_outlined, + 'skip_next': Icons.skip_next, + 'skip_next_sharp': Icons.skip_next_sharp, + 'skip_next_rounded': Icons.skip_next_rounded, + 'skip_next_outlined': Icons.skip_next_outlined, + 'skip_previous': Icons.skip_previous, + 'skip_previous_sharp': Icons.skip_previous_sharp, + 'skip_previous_rounded': Icons.skip_previous_rounded, + 'skip_previous_outlined': Icons.skip_previous_outlined, + 'sledding': Icons.sledding, + 'sledding_sharp': Icons.sledding_sharp, + 'sledding_rounded': Icons.sledding_rounded, + 'sledding_outlined': Icons.sledding_outlined, + 'slideshow': Icons.slideshow, + 'slideshow_sharp': Icons.slideshow_sharp, + 'slideshow_rounded': Icons.slideshow_rounded, + 'slideshow_outlined': Icons.slideshow_outlined, + 'slow_motion_video': Icons.slow_motion_video, + 'slow_motion_video_sharp': Icons.slow_motion_video_sharp, + 'slow_motion_video_rounded': Icons.slow_motion_video_rounded, + 'slow_motion_video_outlined': Icons.slow_motion_video_outlined, + 'smart_button': Icons.smart_button, + 'smart_button_sharp': Icons.smart_button_sharp, + 'smart_button_rounded': Icons.smart_button_rounded, + 'smart_button_outlined': Icons.smart_button_outlined, + 'smart_display': Icons.smart_display, + 'smart_display_sharp': Icons.smart_display_sharp, + 'smart_display_rounded': Icons.smart_display_rounded, + 'smart_display_outlined': Icons.smart_display_outlined, + 'smart_screen': Icons.smart_screen, + 'smart_screen_sharp': Icons.smart_screen_sharp, + 'smart_screen_rounded': Icons.smart_screen_rounded, + 'smart_screen_outlined': Icons.smart_screen_outlined, + 'smart_toy': Icons.smart_toy, + 'smart_toy_sharp': Icons.smart_toy_sharp, + 'smart_toy_rounded': Icons.smart_toy_rounded, + 'smart_toy_outlined': Icons.smart_toy_outlined, + 'smartphone': Icons.smartphone, + 'smartphone_sharp': Icons.smartphone_sharp, + 'smartphone_rounded': Icons.smartphone_rounded, + 'smartphone_outlined': Icons.smartphone_outlined, + 'smoke_free': Icons.smoke_free, + 'smoke_free_sharp': Icons.smoke_free_sharp, + 'smoke_free_rounded': Icons.smoke_free_rounded, + 'smoke_free_outlined': Icons.smoke_free_outlined, + 'smoking_rooms': Icons.smoking_rooms, + 'smoking_rooms_sharp': Icons.smoking_rooms_sharp, + 'smoking_rooms_rounded': Icons.smoking_rooms_rounded, + 'smoking_rooms_outlined': Icons.smoking_rooms_outlined, + 'sms': Icons.sms, + 'sms_sharp': Icons.sms_sharp, + 'sms_rounded': Icons.sms_rounded, + 'sms_outlined': Icons.sms_outlined, + 'sms_failed': Icons.sms_failed, + 'sms_failed_sharp': Icons.sms_failed_sharp, + 'sms_failed_rounded': Icons.sms_failed_rounded, + 'sms_failed_outlined': Icons.sms_failed_outlined, + 'snippet_folder': Icons.snippet_folder, + 'snippet_folder_sharp': Icons.snippet_folder_sharp, + 'snippet_folder_rounded': Icons.snippet_folder_rounded, + 'snippet_folder_outlined': Icons.snippet_folder_outlined, + 'snooze': Icons.snooze, + 'snooze_sharp': Icons.snooze_sharp, + 'snooze_rounded': Icons.snooze_rounded, + 'snooze_outlined': Icons.snooze_outlined, + 'snowboarding': Icons.snowboarding, + 'snowboarding_sharp': Icons.snowboarding_sharp, + 'snowboarding_rounded': Icons.snowboarding_rounded, + 'snowboarding_outlined': Icons.snowboarding_outlined, + 'snowmobile': Icons.snowmobile, + 'snowmobile_sharp': Icons.snowmobile_sharp, + 'snowmobile_rounded': Icons.snowmobile_rounded, + 'snowmobile_outlined': Icons.snowmobile_outlined, + 'snowshoeing': Icons.snowshoeing, + 'snowshoeing_sharp': Icons.snowshoeing_sharp, + 'snowshoeing_rounded': Icons.snowshoeing_rounded, + 'snowshoeing_outlined': Icons.snowshoeing_outlined, + 'soap': Icons.soap, + 'soap_sharp': Icons.soap_sharp, + 'soap_rounded': Icons.soap_rounded, + 'soap_outlined': Icons.soap_outlined, + 'social_distance': Icons.social_distance, + 'social_distance_sharp': Icons.social_distance_sharp, + 'social_distance_rounded': Icons.social_distance_rounded, + 'social_distance_outlined': Icons.social_distance_outlined, + 'sort': Icons.sort, + 'sort_sharp': Icons.sort_sharp, + 'sort_rounded': Icons.sort_rounded, + 'sort_outlined': Icons.sort_outlined, + 'sort_by_alpha': Icons.sort_by_alpha, + 'sort_by_alpha_sharp': Icons.sort_by_alpha_sharp, + 'sort_by_alpha_rounded': Icons.sort_by_alpha_rounded, + 'sort_by_alpha_outlined': Icons.sort_by_alpha_outlined, + 'source': Icons.source, + 'source_sharp': Icons.source_sharp, + 'source_rounded': Icons.source_rounded, + 'source_outlined': Icons.source_outlined, + 'south': Icons.south, + 'south_sharp': Icons.south_sharp, + 'south_rounded': Icons.south_rounded, + 'south_outlined': Icons.south_outlined, + 'south_east': Icons.south_east, + 'south_east_sharp': Icons.south_east_sharp, + 'south_east_rounded': Icons.south_east_rounded, + 'south_east_outlined': Icons.south_east_outlined, + 'south_west': Icons.south_west, + 'south_west_sharp': Icons.south_west_sharp, + 'south_west_rounded': Icons.south_west_rounded, + 'south_west_outlined': Icons.south_west_outlined, + 'spa': Icons.spa, + 'spa_sharp': Icons.spa_sharp, + 'spa_rounded': Icons.spa_rounded, + 'spa_outlined': Icons.spa_outlined, + 'space_bar': Icons.space_bar, + 'space_bar_sharp': Icons.space_bar_sharp, + 'space_bar_rounded': Icons.space_bar_rounded, + 'space_bar_outlined': Icons.space_bar_outlined, + 'space_dashboard': Icons.space_dashboard, + 'space_dashboard_sharp': Icons.space_dashboard_sharp, + 'space_dashboard_rounded': Icons.space_dashboard_rounded, + 'space_dashboard_outlined': Icons.space_dashboard_outlined, + 'speaker': Icons.speaker, + 'speaker_sharp': Icons.speaker_sharp, + 'speaker_rounded': Icons.speaker_rounded, + 'speaker_outlined': Icons.speaker_outlined, + 'speaker_group': Icons.speaker_group, + 'speaker_group_sharp': Icons.speaker_group_sharp, + 'speaker_group_rounded': Icons.speaker_group_rounded, + 'speaker_group_outlined': Icons.speaker_group_outlined, + 'speaker_notes': Icons.speaker_notes, + 'speaker_notes_sharp': Icons.speaker_notes_sharp, + 'speaker_notes_rounded': Icons.speaker_notes_rounded, + 'speaker_notes_outlined': Icons.speaker_notes_outlined, + 'speaker_notes_off': Icons.speaker_notes_off, + 'speaker_notes_off_sharp': Icons.speaker_notes_off_sharp, + 'speaker_notes_off_rounded': Icons.speaker_notes_off_rounded, + 'speaker_notes_off_outlined': Icons.speaker_notes_off_outlined, + 'speaker_phone': Icons.speaker_phone, + 'speaker_phone_sharp': Icons.speaker_phone_sharp, + 'speaker_phone_rounded': Icons.speaker_phone_rounded, + 'speaker_phone_outlined': Icons.speaker_phone_outlined, + 'speed': Icons.speed, + 'speed_sharp': Icons.speed_sharp, + 'speed_rounded': Icons.speed_rounded, + 'speed_outlined': Icons.speed_outlined, + 'spellcheck': Icons.spellcheck, + 'spellcheck_sharp': Icons.spellcheck_sharp, + 'spellcheck_rounded': Icons.spellcheck_rounded, + 'spellcheck_outlined': Icons.spellcheck_outlined, + 'splitscreen': Icons.splitscreen, + 'splitscreen_sharp': Icons.splitscreen_sharp, + 'splitscreen_rounded': Icons.splitscreen_rounded, + 'splitscreen_outlined': Icons.splitscreen_outlined, + 'sports': Icons.sports, + 'sports_sharp': Icons.sports_sharp, + 'sports_rounded': Icons.sports_rounded, + 'sports_outlined': Icons.sports_outlined, + 'sports_bar': Icons.sports_bar, + 'sports_bar_sharp': Icons.sports_bar_sharp, + 'sports_bar_rounded': Icons.sports_bar_rounded, + 'sports_bar_outlined': Icons.sports_bar_outlined, + 'sports_baseball': Icons.sports_baseball, + 'sports_baseball_sharp': Icons.sports_baseball_sharp, + 'sports_baseball_rounded': Icons.sports_baseball_rounded, + 'sports_baseball_outlined': Icons.sports_baseball_outlined, + 'sports_basketball': Icons.sports_basketball, + 'sports_basketball_sharp': Icons.sports_basketball_sharp, + 'sports_basketball_rounded': Icons.sports_basketball_rounded, + 'sports_basketball_outlined': Icons.sports_basketball_outlined, + 'sports_cricket': Icons.sports_cricket, + 'sports_cricket_sharp': Icons.sports_cricket_sharp, + 'sports_cricket_rounded': Icons.sports_cricket_rounded, + 'sports_cricket_outlined': Icons.sports_cricket_outlined, + 'sports_esports': Icons.sports_esports, + 'sports_esports_sharp': Icons.sports_esports_sharp, + 'sports_esports_rounded': Icons.sports_esports_rounded, + 'sports_esports_outlined': Icons.sports_esports_outlined, + 'sports_football': Icons.sports_football, + 'sports_football_sharp': Icons.sports_football_sharp, + 'sports_football_rounded': Icons.sports_football_rounded, + 'sports_football_outlined': Icons.sports_football_outlined, + 'sports_golf': Icons.sports_golf, + 'sports_golf_sharp': Icons.sports_golf_sharp, + 'sports_golf_rounded': Icons.sports_golf_rounded, + 'sports_golf_outlined': Icons.sports_golf_outlined, + 'sports_handball': Icons.sports_handball, + 'sports_handball_sharp': Icons.sports_handball_sharp, + 'sports_handball_rounded': Icons.sports_handball_rounded, + 'sports_handball_outlined': Icons.sports_handball_outlined, + 'sports_hockey': Icons.sports_hockey, + 'sports_hockey_sharp': Icons.sports_hockey_sharp, + 'sports_hockey_rounded': Icons.sports_hockey_rounded, + 'sports_hockey_outlined': Icons.sports_hockey_outlined, + 'sports_kabaddi': Icons.sports_kabaddi, + 'sports_kabaddi_sharp': Icons.sports_kabaddi_sharp, + 'sports_kabaddi_rounded': Icons.sports_kabaddi_rounded, + 'sports_kabaddi_outlined': Icons.sports_kabaddi_outlined, + 'sports_mma': Icons.sports_mma, + 'sports_mma_sharp': Icons.sports_mma_sharp, + 'sports_mma_rounded': Icons.sports_mma_rounded, + 'sports_mma_outlined': Icons.sports_mma_outlined, + 'sports_motorsports': Icons.sports_motorsports, + 'sports_motorsports_sharp': Icons.sports_motorsports_sharp, + 'sports_motorsports_rounded': Icons.sports_motorsports_rounded, + 'sports_motorsports_outlined': Icons.sports_motorsports_outlined, + 'sports_rugby': Icons.sports_rugby, + 'sports_rugby_sharp': Icons.sports_rugby_sharp, + 'sports_rugby_rounded': Icons.sports_rugby_rounded, + 'sports_rugby_outlined': Icons.sports_rugby_outlined, + 'sports_score': Icons.sports_score, + 'sports_score_sharp': Icons.sports_score_sharp, + 'sports_score_rounded': Icons.sports_score_rounded, + 'sports_score_outlined': Icons.sports_score_outlined, + 'sports_soccer': Icons.sports_soccer, + 'sports_soccer_sharp': Icons.sports_soccer_sharp, + 'sports_soccer_rounded': Icons.sports_soccer_rounded, + 'sports_soccer_outlined': Icons.sports_soccer_outlined, + 'sports_tennis': Icons.sports_tennis, + 'sports_tennis_sharp': Icons.sports_tennis_sharp, + 'sports_tennis_rounded': Icons.sports_tennis_rounded, + 'sports_tennis_outlined': Icons.sports_tennis_outlined, + 'sports_volleyball': Icons.sports_volleyball, + 'sports_volleyball_sharp': Icons.sports_volleyball_sharp, + 'sports_volleyball_rounded': Icons.sports_volleyball_rounded, + 'sports_volleyball_outlined': Icons.sports_volleyball_outlined, + 'square_foot': Icons.square_foot, + 'square_foot_sharp': Icons.square_foot_sharp, + 'square_foot_rounded': Icons.square_foot_rounded, + 'square_foot_outlined': Icons.square_foot_outlined, + 'stacked_bar_chart': Icons.stacked_bar_chart, + 'stacked_bar_chart_sharp': Icons.stacked_bar_chart_sharp, + 'stacked_bar_chart_rounded': Icons.stacked_bar_chart_rounded, + 'stacked_bar_chart_outlined': Icons.stacked_bar_chart_outlined, + 'stacked_line_chart': Icons.stacked_line_chart, + 'stacked_line_chart_sharp': Icons.stacked_line_chart_sharp, + 'stacked_line_chart_rounded': Icons.stacked_line_chart_rounded, + 'stacked_line_chart_outlined': Icons.stacked_line_chart_outlined, + 'stairs': Icons.stairs, + 'stairs_sharp': Icons.stairs_sharp, + 'stairs_rounded': Icons.stairs_rounded, + 'stairs_outlined': Icons.stairs_outlined, + 'star': Icons.star, + 'star_sharp': Icons.star_sharp, + 'star_rounded': Icons.star_rounded, + 'star_outlined': Icons.star_outlined, + 'star_border': Icons.star_border, + 'star_border_sharp': Icons.star_border_sharp, + 'star_border_rounded': Icons.star_border_rounded, + 'star_border_outlined': Icons.star_border_outlined, + 'star_border_purple500': Icons.star_border_purple500, + 'star_border_purple500_sharp': Icons.star_border_purple500_sharp, + 'star_border_purple500_rounded': Icons.star_border_purple500_rounded, + 'star_border_purple500_outlined': Icons.star_border_purple500_outlined, + 'star_half': Icons.star_half, + 'star_half_sharp': Icons.star_half_sharp, + 'star_half_rounded': Icons.star_half_rounded, + 'star_half_outlined': Icons.star_half_outlined, + 'star_outline': Icons.star_outline, + 'star_outline_sharp': Icons.star_outline_sharp, + 'star_outline_rounded': Icons.star_outline_rounded, + 'star_outline_outlined': Icons.star_outline_outlined, + 'star_purple500': Icons.star_purple500, + 'star_purple500_sharp': Icons.star_purple500_sharp, + 'star_purple500_rounded': Icons.star_purple500_rounded, + 'star_purple500_outlined': Icons.star_purple500_outlined, + 'star_rate': Icons.star_rate, + 'star_rate_sharp': Icons.star_rate_sharp, + 'star_rate_rounded': Icons.star_rate_rounded, + 'star_rate_outlined': Icons.star_rate_outlined, + 'stars': Icons.stars, + 'stars_sharp': Icons.stars_sharp, + 'stars_rounded': Icons.stars_rounded, + 'stars_outlined': Icons.stars_outlined, + 'stay_current_landscape': Icons.stay_current_landscape, + 'stay_current_landscape_sharp': Icons.stay_current_landscape_sharp, + 'stay_current_landscape_rounded': Icons.stay_current_landscape_rounded, + 'stay_current_landscape_outlined': + Icons.stay_current_landscape_outlined, + 'stay_current_portrait': Icons.stay_current_portrait, + 'stay_current_portrait_sharp': Icons.stay_current_portrait_sharp, + 'stay_current_portrait_rounded': Icons.stay_current_portrait_rounded, + 'stay_current_portrait_outlined': Icons.stay_current_portrait_outlined, + 'stay_primary_landscape': Icons.stay_primary_landscape, + 'stay_primary_landscape_sharp': Icons.stay_primary_landscape_sharp, + 'stay_primary_landscape_rounded': Icons.stay_primary_landscape_rounded, + 'stay_primary_landscape_outlined': + Icons.stay_primary_landscape_outlined, + 'stay_primary_portrait': Icons.stay_primary_portrait, + 'stay_primary_portrait_sharp': Icons.stay_primary_portrait_sharp, + 'stay_primary_portrait_rounded': Icons.stay_primary_portrait_rounded, + 'stay_primary_portrait_outlined': Icons.stay_primary_portrait_outlined, + 'sticky_note_2': Icons.sticky_note_2, + 'sticky_note_2_sharp': Icons.sticky_note_2_sharp, + 'sticky_note_2_rounded': Icons.sticky_note_2_rounded, + 'sticky_note_2_outlined': Icons.sticky_note_2_outlined, + 'stop': Icons.stop, + 'stop_sharp': Icons.stop_sharp, + 'stop_rounded': Icons.stop_rounded, + 'stop_outlined': Icons.stop_outlined, + 'stop_circle': Icons.stop_circle, + 'stop_circle_sharp': Icons.stop_circle_sharp, + 'stop_circle_rounded': Icons.stop_circle_rounded, + 'stop_circle_outlined': Icons.stop_circle_outlined, + 'stop_screen_share': Icons.stop_screen_share, + 'stop_screen_share_sharp': Icons.stop_screen_share_sharp, + 'stop_screen_share_rounded': Icons.stop_screen_share_rounded, + 'stop_screen_share_outlined': Icons.stop_screen_share_outlined, + 'storage': Icons.storage, + 'storage_sharp': Icons.storage_sharp, + 'storage_rounded': Icons.storage_rounded, + 'storage_outlined': Icons.storage_outlined, + 'store': Icons.store, + 'store_sharp': Icons.store_sharp, + 'store_rounded': Icons.store_rounded, + 'store_outlined': Icons.store_outlined, + 'store_mall_directory': Icons.store_mall_directory, + 'store_mall_directory_sharp': Icons.store_mall_directory_sharp, + 'store_mall_directory_rounded': Icons.store_mall_directory_rounded, + 'store_mall_directory_outlined': Icons.store_mall_directory_outlined, + 'storefront': Icons.storefront, + 'storefront_sharp': Icons.storefront_sharp, + 'storefront_rounded': Icons.storefront_rounded, + 'storefront_outlined': Icons.storefront_outlined, + 'storm': Icons.storm, + 'storm_sharp': Icons.storm_sharp, + 'storm_rounded': Icons.storm_rounded, + 'storm_outlined': Icons.storm_outlined, + 'straighten': Icons.straighten, + 'straighten_sharp': Icons.straighten_sharp, + 'straighten_rounded': Icons.straighten_rounded, + 'straighten_outlined': Icons.straighten_outlined, + 'stream': Icons.stream, + 'stream_sharp': Icons.stream_sharp, + 'stream_rounded': Icons.stream_rounded, + 'stream_outlined': Icons.stream_outlined, + 'streetview': Icons.streetview, + 'streetview_sharp': Icons.streetview_sharp, + 'streetview_rounded': Icons.streetview_rounded, + 'streetview_outlined': Icons.streetview_outlined, + 'strikethrough_s': Icons.strikethrough_s, + 'strikethrough_s_sharp': Icons.strikethrough_s_sharp, + 'strikethrough_s_rounded': Icons.strikethrough_s_rounded, + 'strikethrough_s_outlined': Icons.strikethrough_s_outlined, + 'stroller': Icons.stroller, + 'stroller_sharp': Icons.stroller_sharp, + 'stroller_rounded': Icons.stroller_rounded, + 'stroller_outlined': Icons.stroller_outlined, + 'style': Icons.style, + 'style_sharp': Icons.style_sharp, + 'style_rounded': Icons.style_rounded, + 'style_outlined': Icons.style_outlined, + 'subdirectory_arrow_left': Icons.subdirectory_arrow_left, + 'subdirectory_arrow_left_sharp': Icons.subdirectory_arrow_left_sharp, + 'subdirectory_arrow_left_rounded': + Icons.subdirectory_arrow_left_rounded, + 'subdirectory_arrow_left_outlined': + Icons.subdirectory_arrow_left_outlined, + 'subdirectory_arrow_right': Icons.subdirectory_arrow_right, + 'subdirectory_arrow_right_sharp': Icons.subdirectory_arrow_right_sharp, + 'subdirectory_arrow_right_rounded': + Icons.subdirectory_arrow_right_rounded, + 'subdirectory_arrow_right_outlined': + Icons.subdirectory_arrow_right_outlined, + 'subject': Icons.subject, + 'subject_sharp': Icons.subject_sharp, + 'subject_rounded': Icons.subject_rounded, + 'subject_outlined': Icons.subject_outlined, + 'subscript': Icons.subscript, + 'subscript_sharp': Icons.subscript_sharp, + 'subscript_rounded': Icons.subscript_rounded, + 'subscript_outlined': Icons.subscript_outlined, + 'subscriptions': Icons.subscriptions, + 'subscriptions_sharp': Icons.subscriptions_sharp, + 'subscriptions_rounded': Icons.subscriptions_rounded, + 'subscriptions_outlined': Icons.subscriptions_outlined, + 'subtitles': Icons.subtitles, + 'subtitles_sharp': Icons.subtitles_sharp, + 'subtitles_rounded': Icons.subtitles_rounded, + 'subtitles_outlined': Icons.subtitles_outlined, + 'subtitles_off': Icons.subtitles_off, + 'subtitles_off_sharp': Icons.subtitles_off_sharp, + 'subtitles_off_rounded': Icons.subtitles_off_rounded, + 'subtitles_off_outlined': Icons.subtitles_off_outlined, + 'subway': Icons.subway, + 'subway_sharp': Icons.subway_sharp, + 'subway_rounded': Icons.subway_rounded, + 'subway_outlined': Icons.subway_outlined, + 'summarize': Icons.summarize, + 'summarize_sharp': Icons.summarize_sharp, + 'summarize_rounded': Icons.summarize_rounded, + 'summarize_outlined': Icons.summarize_outlined, + 'superscript': Icons.superscript, + 'superscript_sharp': Icons.superscript_sharp, + 'superscript_rounded': Icons.superscript_rounded, + 'superscript_outlined': Icons.superscript_outlined, + 'supervised_user_circle': Icons.supervised_user_circle, + 'supervised_user_circle_sharp': Icons.supervised_user_circle_sharp, + 'supervised_user_circle_rounded': Icons.supervised_user_circle_rounded, + 'supervised_user_circle_outlined': + Icons.supervised_user_circle_outlined, + 'supervisor_account': Icons.supervisor_account, + 'supervisor_account_sharp': Icons.supervisor_account_sharp, + 'supervisor_account_rounded': Icons.supervisor_account_rounded, + 'supervisor_account_outlined': Icons.supervisor_account_outlined, + 'support': Icons.support, + 'support_sharp': Icons.support_sharp, + 'support_rounded': Icons.support_rounded, + 'support_outlined': Icons.support_outlined, + 'support_agent': Icons.support_agent, + 'support_agent_sharp': Icons.support_agent_sharp, + 'support_agent_rounded': Icons.support_agent_rounded, + 'support_agent_outlined': Icons.support_agent_outlined, + 'surfing': Icons.surfing, + 'surfing_sharp': Icons.surfing_sharp, + 'surfing_rounded': Icons.surfing_rounded, + 'surfing_outlined': Icons.surfing_outlined, + 'surround_sound': Icons.surround_sound, + 'surround_sound_sharp': Icons.surround_sound_sharp, + 'surround_sound_rounded': Icons.surround_sound_rounded, + 'surround_sound_outlined': Icons.surround_sound_outlined, + 'swap_calls': Icons.swap_calls, + 'swap_calls_sharp': Icons.swap_calls_sharp, + 'swap_calls_rounded': Icons.swap_calls_rounded, + 'swap_calls_outlined': Icons.swap_calls_outlined, + 'swap_horiz': Icons.swap_horiz, + 'swap_horiz_sharp': Icons.swap_horiz_sharp, + 'swap_horiz_rounded': Icons.swap_horiz_rounded, + 'swap_horiz_outlined': Icons.swap_horiz_outlined, + 'swap_horizontal_circle': Icons.swap_horizontal_circle, + 'swap_horizontal_circle_sharp': Icons.swap_horizontal_circle_sharp, + 'swap_horizontal_circle_rounded': Icons.swap_horizontal_circle_rounded, + 'swap_horizontal_circle_outlined': + Icons.swap_horizontal_circle_outlined, + 'swap_vert': Icons.swap_vert, + 'swap_vert_sharp': Icons.swap_vert_sharp, + 'swap_vert_rounded': Icons.swap_vert_rounded, + 'swap_vert_outlined': Icons.swap_vert_outlined, + 'swap_vert_circle': Icons.swap_vert_circle, + 'swap_vert_circle_sharp': Icons.swap_vert_circle_sharp, + 'swap_vert_circle_rounded': Icons.swap_vert_circle_rounded, + 'swap_vert_circle_outlined': Icons.swap_vert_circle_outlined, + 'swap_vertical_circle': Icons.swap_vertical_circle, + 'swap_vertical_circle_sharp': Icons.swap_vertical_circle_sharp, + 'swap_vertical_circle_rounded': Icons.swap_vertical_circle_rounded, + 'swap_vertical_circle_outlined': Icons.swap_vertical_circle_outlined, + 'swipe': Icons.swipe, + 'swipe_sharp': Icons.swipe_sharp, + 'swipe_rounded': Icons.swipe_rounded, + 'swipe_outlined': Icons.swipe_outlined, + 'switch_account': Icons.switch_account, + 'switch_account_sharp': Icons.switch_account_sharp, + 'switch_account_rounded': Icons.switch_account_rounded, + 'switch_account_outlined': Icons.switch_account_outlined, + 'switch_camera': Icons.switch_camera, + 'switch_camera_sharp': Icons.switch_camera_sharp, + 'switch_camera_rounded': Icons.switch_camera_rounded, + 'switch_camera_outlined': Icons.switch_camera_outlined, + 'switch_left': Icons.switch_left, + 'switch_left_sharp': Icons.switch_left_sharp, + 'switch_left_rounded': Icons.switch_left_rounded, + 'switch_left_outlined': Icons.switch_left_outlined, + 'switch_right': Icons.switch_right, + 'switch_right_sharp': Icons.switch_right_sharp, + 'switch_right_rounded': Icons.switch_right_rounded, + 'switch_right_outlined': Icons.switch_right_outlined, + 'switch_video': Icons.switch_video, + 'switch_video_sharp': Icons.switch_video_sharp, + 'switch_video_rounded': Icons.switch_video_rounded, + 'switch_video_outlined': Icons.switch_video_outlined, + 'sync': Icons.sync, + 'sync_sharp': Icons.sync_sharp, + 'sync_rounded': Icons.sync_rounded, + 'sync_outlined': Icons.sync_outlined, + 'sync_alt': Icons.sync_alt, + 'sync_alt_sharp': Icons.sync_alt_sharp, + 'sync_alt_rounded': Icons.sync_alt_rounded, + 'sync_alt_outlined': Icons.sync_alt_outlined, + 'sync_disabled': Icons.sync_disabled, + 'sync_disabled_sharp': Icons.sync_disabled_sharp, + 'sync_disabled_rounded': Icons.sync_disabled_rounded, + 'sync_disabled_outlined': Icons.sync_disabled_outlined, + 'sync_problem': Icons.sync_problem, + 'sync_problem_sharp': Icons.sync_problem_sharp, + 'sync_problem_rounded': Icons.sync_problem_rounded, + 'sync_problem_outlined': Icons.sync_problem_outlined, + 'system_security_update': Icons.system_security_update, + 'system_security_update_sharp': Icons.system_security_update_sharp, + 'system_security_update_rounded': Icons.system_security_update_rounded, + 'system_security_update_outlined': + Icons.system_security_update_outlined, + 'system_security_update_good': Icons.system_security_update_good, + 'system_security_update_good_sharp': + Icons.system_security_update_good_sharp, + 'system_security_update_good_rounded': + Icons.system_security_update_good_rounded, + 'system_security_update_good_outlined': + Icons.system_security_update_good_outlined, + 'system_security_update_warning': Icons.system_security_update_warning, + 'system_security_update_warning_sharp': + Icons.system_security_update_warning_sharp, + 'system_security_update_warning_rounded': + Icons.system_security_update_warning_rounded, + 'system_security_update_warning_outlined': + Icons.system_security_update_warning_outlined, + 'system_update': Icons.system_update, + 'system_update_sharp': Icons.system_update_sharp, + 'system_update_rounded': Icons.system_update_rounded, + 'system_update_outlined': Icons.system_update_outlined, + 'system_update_alt': Icons.system_update_alt, + 'system_update_alt_sharp': Icons.system_update_alt_sharp, + 'system_update_alt_rounded': Icons.system_update_alt_rounded, + 'system_update_alt_outlined': Icons.system_update_alt_outlined, + 'system_update_tv': Icons.system_update_tv, + 'system_update_tv_sharp': Icons.system_update_tv_sharp, + 'system_update_tv_rounded': Icons.system_update_tv_rounded, + 'system_update_tv_outlined': Icons.system_update_tv_outlined, + 'tab': Icons.tab, + 'tab_sharp': Icons.tab_sharp, + 'tab_rounded': Icons.tab_rounded, + 'tab_outlined': Icons.tab_outlined, + 'tab_unselected': Icons.tab_unselected, + 'tab_unselected_sharp': Icons.tab_unselected_sharp, + 'tab_unselected_rounded': Icons.tab_unselected_rounded, + 'tab_unselected_outlined': Icons.tab_unselected_outlined, + 'table_chart': Icons.table_chart, + 'table_chart_sharp': Icons.table_chart_sharp, + 'table_chart_rounded': Icons.table_chart_rounded, + 'table_chart_outlined': Icons.table_chart_outlined, + 'table_rows': Icons.table_rows, + 'table_rows_sharp': Icons.table_rows_sharp, + 'table_rows_rounded': Icons.table_rows_rounded, + 'table_rows_outlined': Icons.table_rows_outlined, + 'table_view': Icons.table_view, + 'table_view_sharp': Icons.table_view_sharp, + 'table_view_rounded': Icons.table_view_rounded, + 'table_view_outlined': Icons.table_view_outlined, + 'tablet': Icons.tablet, + 'tablet_sharp': Icons.tablet_sharp, + 'tablet_rounded': Icons.tablet_rounded, + 'tablet_outlined': Icons.tablet_outlined, + 'tablet_android': Icons.tablet_android, + 'tablet_android_sharp': Icons.tablet_android_sharp, + 'tablet_android_rounded': Icons.tablet_android_rounded, + 'tablet_android_outlined': Icons.tablet_android_outlined, + 'tablet_mac': Icons.tablet_mac, + 'tablet_mac_sharp': Icons.tablet_mac_sharp, + 'tablet_mac_rounded': Icons.tablet_mac_rounded, + 'tablet_mac_outlined': Icons.tablet_mac_outlined, + 'tag': Icons.tag, + 'tag_sharp': Icons.tag_sharp, + 'tag_rounded': Icons.tag_rounded, + 'tag_outlined': Icons.tag_outlined, + 'tag_faces': Icons.tag_faces, + 'tag_faces_sharp': Icons.tag_faces_sharp, + 'tag_faces_rounded': Icons.tag_faces_rounded, + 'tag_faces_outlined': Icons.tag_faces_outlined, + 'takeout_dining': Icons.takeout_dining, + 'takeout_dining_sharp': Icons.takeout_dining_sharp, + 'takeout_dining_rounded': Icons.takeout_dining_rounded, + 'takeout_dining_outlined': Icons.takeout_dining_outlined, + 'tap_and_play': Icons.tap_and_play, + 'tap_and_play_sharp': Icons.tap_and_play_sharp, + 'tap_and_play_rounded': Icons.tap_and_play_rounded, + 'tap_and_play_outlined': Icons.tap_and_play_outlined, + 'tapas': Icons.tapas, + 'tapas_sharp': Icons.tapas_sharp, + 'tapas_rounded': Icons.tapas_rounded, + 'tapas_outlined': Icons.tapas_outlined, + 'task': Icons.task, + 'task_sharp': Icons.task_sharp, + 'task_rounded': Icons.task_rounded, + 'task_outlined': Icons.task_outlined, + 'task_alt': Icons.task_alt, + 'task_alt_sharp': Icons.task_alt_sharp, + 'task_alt_rounded': Icons.task_alt_rounded, + 'task_alt_outlined': Icons.task_alt_outlined, + 'taxi_alert': Icons.taxi_alert, + 'taxi_alert_sharp': Icons.taxi_alert_sharp, + 'taxi_alert_rounded': Icons.taxi_alert_rounded, + 'taxi_alert_outlined': Icons.taxi_alert_outlined, + 'terrain': Icons.terrain, + 'terrain_sharp': Icons.terrain_sharp, + 'terrain_rounded': Icons.terrain_rounded, + 'terrain_outlined': Icons.terrain_outlined, + 'text_fields': Icons.text_fields, + 'text_fields_sharp': Icons.text_fields_sharp, + 'text_fields_rounded': Icons.text_fields_rounded, + 'text_fields_outlined': Icons.text_fields_outlined, + 'text_format': Icons.text_format, + 'text_format_sharp': Icons.text_format_sharp, + 'text_format_rounded': Icons.text_format_rounded, + 'text_format_outlined': Icons.text_format_outlined, + 'text_rotate_up': Icons.text_rotate_up, + 'text_rotate_up_sharp': Icons.text_rotate_up_sharp, + 'text_rotate_up_rounded': Icons.text_rotate_up_rounded, + 'text_rotate_up_outlined': Icons.text_rotate_up_outlined, + 'text_rotate_vertical': Icons.text_rotate_vertical, + 'text_rotate_vertical_sharp': Icons.text_rotate_vertical_sharp, + 'text_rotate_vertical_rounded': Icons.text_rotate_vertical_rounded, + 'text_rotate_vertical_outlined': Icons.text_rotate_vertical_outlined, + 'text_rotation_angledown': Icons.text_rotation_angledown, + 'text_rotation_angledown_sharp': Icons.text_rotation_angledown_sharp, + 'text_rotation_angledown_rounded': + Icons.text_rotation_angledown_rounded, + 'text_rotation_angledown_outlined': + Icons.text_rotation_angledown_outlined, + 'text_rotation_angleup': Icons.text_rotation_angleup, + 'text_rotation_angleup_sharp': Icons.text_rotation_angleup_sharp, + 'text_rotation_angleup_rounded': Icons.text_rotation_angleup_rounded, + 'text_rotation_angleup_outlined': Icons.text_rotation_angleup_outlined, + 'text_rotation_down': Icons.text_rotation_down, + 'text_rotation_down_sharp': Icons.text_rotation_down_sharp, + 'text_rotation_down_rounded': Icons.text_rotation_down_rounded, + 'text_rotation_down_outlined': Icons.text_rotation_down_outlined, + 'text_rotation_none': Icons.text_rotation_none, + 'text_rotation_none_sharp': Icons.text_rotation_none_sharp, + 'text_rotation_none_rounded': Icons.text_rotation_none_rounded, + 'text_rotation_none_outlined': Icons.text_rotation_none_outlined, + 'text_snippet': Icons.text_snippet, + 'text_snippet_sharp': Icons.text_snippet_sharp, + 'text_snippet_rounded': Icons.text_snippet_rounded, + 'text_snippet_outlined': Icons.text_snippet_outlined, + 'textsms': Icons.textsms, + 'textsms_sharp': Icons.textsms_sharp, + 'textsms_rounded': Icons.textsms_rounded, + 'textsms_outlined': Icons.textsms_outlined, + 'texture': Icons.texture, + 'texture_sharp': Icons.texture_sharp, + 'texture_rounded': Icons.texture_rounded, + 'texture_outlined': Icons.texture_outlined, + 'theater_comedy': Icons.theater_comedy, + 'theater_comedy_sharp': Icons.theater_comedy_sharp, + 'theater_comedy_rounded': Icons.theater_comedy_rounded, + 'theater_comedy_outlined': Icons.theater_comedy_outlined, + 'theaters': Icons.theaters, + 'theaters_sharp': Icons.theaters_sharp, + 'theaters_rounded': Icons.theaters_rounded, + 'theaters_outlined': Icons.theaters_outlined, + 'thermostat': Icons.thermostat, + 'thermostat_sharp': Icons.thermostat_sharp, + 'thermostat_rounded': Icons.thermostat_rounded, + 'thermostat_outlined': Icons.thermostat_outlined, + 'thermostat_auto': Icons.thermostat_auto, + 'thermostat_auto_sharp': Icons.thermostat_auto_sharp, + 'thermostat_auto_rounded': Icons.thermostat_auto_rounded, + 'thermostat_auto_outlined': Icons.thermostat_auto_outlined, + 'thumb_down': Icons.thumb_down, + 'thumb_down_sharp': Icons.thumb_down_sharp, + 'thumb_down_rounded': Icons.thumb_down_rounded, + 'thumb_down_outlined': Icons.thumb_down_outlined, + 'thumb_down_alt': Icons.thumb_down_alt, + 'thumb_down_alt_sharp': Icons.thumb_down_alt_sharp, + 'thumb_down_alt_rounded': Icons.thumb_down_alt_rounded, + 'thumb_down_alt_outlined': Icons.thumb_down_alt_outlined, + 'thumb_down_off_alt': Icons.thumb_down_off_alt, + 'thumb_down_off_alt_sharp': Icons.thumb_down_off_alt_sharp, + 'thumb_down_off_alt_rounded': Icons.thumb_down_off_alt_rounded, + 'thumb_down_off_alt_outlined': Icons.thumb_down_off_alt_outlined, + 'thumb_up': Icons.thumb_up, + 'thumb_up_sharp': Icons.thumb_up_sharp, + 'thumb_up_rounded': Icons.thumb_up_rounded, + 'thumb_up_outlined': Icons.thumb_up_outlined, + 'thumb_up_alt': Icons.thumb_up_alt, + 'thumb_up_alt_sharp': Icons.thumb_up_alt_sharp, + 'thumb_up_alt_rounded': Icons.thumb_up_alt_rounded, + 'thumb_up_alt_outlined': Icons.thumb_up_alt_outlined, + 'thumb_up_off_alt': Icons.thumb_up_off_alt, + 'thumb_up_off_alt_sharp': Icons.thumb_up_off_alt_sharp, + 'thumb_up_off_alt_rounded': Icons.thumb_up_off_alt_rounded, + 'thumb_up_off_alt_outlined': Icons.thumb_up_off_alt_outlined, + 'thumbs_up_down': Icons.thumbs_up_down, + 'thumbs_up_down_sharp': Icons.thumbs_up_down_sharp, + 'thumbs_up_down_rounded': Icons.thumbs_up_down_rounded, + 'thumbs_up_down_outlined': Icons.thumbs_up_down_outlined, + 'time_to_leave': Icons.time_to_leave, + 'time_to_leave_sharp': Icons.time_to_leave_sharp, + 'time_to_leave_rounded': Icons.time_to_leave_rounded, + 'time_to_leave_outlined': Icons.time_to_leave_outlined, + 'timelapse': Icons.timelapse, + 'timelapse_sharp': Icons.timelapse_sharp, + 'timelapse_rounded': Icons.timelapse_rounded, + 'timelapse_outlined': Icons.timelapse_outlined, + 'timeline': Icons.timeline, + 'timeline_sharp': Icons.timeline_sharp, + 'timeline_rounded': Icons.timeline_rounded, + 'timeline_outlined': Icons.timeline_outlined, + 'timer': Icons.timer, + 'timer_sharp': Icons.timer_sharp, + 'timer_rounded': Icons.timer_rounded, + 'timer_outlined': Icons.timer_outlined, + 'timer_10': Icons.timer_10, + 'timer_10_sharp': Icons.timer_10_sharp, + 'timer_10_rounded': Icons.timer_10_rounded, + 'timer_10_outlined': Icons.timer_10_outlined, + 'timer_10_select': Icons.timer_10_select, + 'timer_10_select_sharp': Icons.timer_10_select_sharp, + 'timer_10_select_rounded': Icons.timer_10_select_rounded, + 'timer_10_select_outlined': Icons.timer_10_select_outlined, + 'timer_3': Icons.timer_3, + 'timer_3_sharp': Icons.timer_3_sharp, + 'timer_3_rounded': Icons.timer_3_rounded, + 'timer_3_outlined': Icons.timer_3_outlined, + 'timer_3_select': Icons.timer_3_select, + 'timer_3_select_sharp': Icons.timer_3_select_sharp, + 'timer_3_select_rounded': Icons.timer_3_select_rounded, + 'timer_3_select_outlined': Icons.timer_3_select_outlined, + 'timer_off': Icons.timer_off, + 'timer_off_sharp': Icons.timer_off_sharp, + 'timer_off_rounded': Icons.timer_off_rounded, + 'timer_off_outlined': Icons.timer_off_outlined, + 'title': Icons.title, + 'title_sharp': Icons.title_sharp, + 'title_rounded': Icons.title_rounded, + 'title_outlined': Icons.title_outlined, + 'toc': Icons.toc, + 'toc_sharp': Icons.toc_sharp, + 'toc_rounded': Icons.toc_rounded, + 'toc_outlined': Icons.toc_outlined, + 'today': Icons.today, + 'today_sharp': Icons.today_sharp, + 'today_rounded': Icons.today_rounded, + 'today_outlined': Icons.today_outlined, + 'toggle_off': Icons.toggle_off, + 'toggle_off_sharp': Icons.toggle_off_sharp, + 'toggle_off_rounded': Icons.toggle_off_rounded, + 'toggle_off_outlined': Icons.toggle_off_outlined, + 'toggle_on': Icons.toggle_on, + 'toggle_on_sharp': Icons.toggle_on_sharp, + 'toggle_on_rounded': Icons.toggle_on_rounded, + 'toggle_on_outlined': Icons.toggle_on_outlined, + 'toll': Icons.toll, + 'toll_sharp': Icons.toll_sharp, + 'toll_rounded': Icons.toll_rounded, + 'toll_outlined': Icons.toll_outlined, + 'tonality': Icons.tonality, + 'tonality_sharp': Icons.tonality_sharp, + 'tonality_rounded': Icons.tonality_rounded, + 'tonality_outlined': Icons.tonality_outlined, + 'topic': Icons.topic, + 'topic_sharp': Icons.topic_sharp, + 'topic_rounded': Icons.topic_rounded, + 'topic_outlined': Icons.topic_outlined, + 'touch_app': Icons.touch_app, + 'touch_app_sharp': Icons.touch_app_sharp, + 'touch_app_rounded': Icons.touch_app_rounded, + 'touch_app_outlined': Icons.touch_app_outlined, + 'tour': Icons.tour, + 'tour_sharp': Icons.tour_sharp, + 'tour_rounded': Icons.tour_rounded, + 'tour_outlined': Icons.tour_outlined, + 'toys': Icons.toys, + 'toys_sharp': Icons.toys_sharp, + 'toys_rounded': Icons.toys_rounded, + 'toys_outlined': Icons.toys_outlined, + 'track_changes': Icons.track_changes, + 'track_changes_sharp': Icons.track_changes_sharp, + 'track_changes_rounded': Icons.track_changes_rounded, + 'track_changes_outlined': Icons.track_changes_outlined, + 'traffic': Icons.traffic, + 'traffic_sharp': Icons.traffic_sharp, + 'traffic_rounded': Icons.traffic_rounded, + 'traffic_outlined': Icons.traffic_outlined, + 'train': Icons.train, + 'train_sharp': Icons.train_sharp, + 'train_rounded': Icons.train_rounded, + 'train_outlined': Icons.train_outlined, + 'tram': Icons.tram, + 'tram_sharp': Icons.tram_sharp, + 'tram_rounded': Icons.tram_rounded, + 'tram_outlined': Icons.tram_outlined, + 'transfer_within_a_station': Icons.transfer_within_a_station, + 'transfer_within_a_station_sharp': + Icons.transfer_within_a_station_sharp, + 'transfer_within_a_station_rounded': + Icons.transfer_within_a_station_rounded, + 'transfer_within_a_station_outlined': + Icons.transfer_within_a_station_outlined, + 'transform': Icons.transform, + 'transform_sharp': Icons.transform_sharp, + 'transform_rounded': Icons.transform_rounded, + 'transform_outlined': Icons.transform_outlined, + 'transgender': Icons.transgender, + 'transgender_sharp': Icons.transgender_sharp, + 'transgender_rounded': Icons.transgender_rounded, + 'transgender_outlined': Icons.transgender_outlined, + 'transit_enterexit': Icons.transit_enterexit, + 'transit_enterexit_sharp': Icons.transit_enterexit_sharp, + 'transit_enterexit_rounded': Icons.transit_enterexit_rounded, + 'transit_enterexit_outlined': Icons.transit_enterexit_outlined, + 'translate': Icons.translate, + 'translate_sharp': Icons.translate_sharp, + 'translate_rounded': Icons.translate_rounded, + 'translate_outlined': Icons.translate_outlined, + 'travel_explore': Icons.travel_explore, + 'travel_explore_sharp': Icons.travel_explore_sharp, + 'travel_explore_rounded': Icons.travel_explore_rounded, + 'travel_explore_outlined': Icons.travel_explore_outlined, + 'trending_down': Icons.trending_down, + 'trending_down_sharp': Icons.trending_down_sharp, + 'trending_down_rounded': Icons.trending_down_rounded, + 'trending_down_outlined': Icons.trending_down_outlined, + 'trending_flat': Icons.trending_flat, + 'trending_flat_sharp': Icons.trending_flat_sharp, + 'trending_flat_rounded': Icons.trending_flat_rounded, + 'trending_flat_outlined': Icons.trending_flat_outlined, + 'trending_neutral': Icons.trending_neutral, + 'trending_neutral_sharp': Icons.trending_neutral_sharp, + 'trending_neutral_rounded': Icons.trending_neutral_rounded, + 'trending_neutral_outlined': Icons.trending_neutral_outlined, + 'trending_up': Icons.trending_up, + 'trending_up_sharp': Icons.trending_up_sharp, + 'trending_up_rounded': Icons.trending_up_rounded, + 'trending_up_outlined': Icons.trending_up_outlined, + 'trip_origin': Icons.trip_origin, + 'trip_origin_sharp': Icons.trip_origin_sharp, + 'trip_origin_rounded': Icons.trip_origin_rounded, + 'trip_origin_outlined': Icons.trip_origin_outlined, + 'try_sms_star': Icons.try_sms_star, + 'try_sms_star_sharp': Icons.try_sms_star_sharp, + 'try_sms_star_rounded': Icons.try_sms_star_rounded, + 'try_sms_star_outlined': Icons.try_sms_star_outlined, + 'tty': Icons.tty, + 'tty_sharp': Icons.tty_sharp, + 'tty_rounded': Icons.tty_rounded, + 'tty_outlined': Icons.tty_outlined, + 'tune': Icons.tune, + 'tune_sharp': Icons.tune_sharp, + 'tune_rounded': Icons.tune_rounded, + 'tune_outlined': Icons.tune_outlined, + 'tungsten': Icons.tungsten, + 'tungsten_sharp': Icons.tungsten_sharp, + 'tungsten_rounded': Icons.tungsten_rounded, + 'tungsten_outlined': Icons.tungsten_outlined, + 'turned_in': Icons.turned_in, + 'turned_in_sharp': Icons.turned_in_sharp, + 'turned_in_rounded': Icons.turned_in_rounded, + 'turned_in_outlined': Icons.turned_in_outlined, + 'turned_in_not': Icons.turned_in_not, + 'turned_in_not_sharp': Icons.turned_in_not_sharp, + 'turned_in_not_rounded': Icons.turned_in_not_rounded, + 'turned_in_not_outlined': Icons.turned_in_not_outlined, + 'tv': Icons.tv, + 'tv_sharp': Icons.tv_sharp, + 'tv_rounded': Icons.tv_rounded, + 'tv_outlined': Icons.tv_outlined, + 'tv_off': Icons.tv_off, + 'tv_off_sharp': Icons.tv_off_sharp, + 'tv_off_rounded': Icons.tv_off_rounded, + 'tv_off_outlined': Icons.tv_off_outlined, + 'two_wheeler': Icons.two_wheeler, + 'two_wheeler_sharp': Icons.two_wheeler_sharp, + 'two_wheeler_rounded': Icons.two_wheeler_rounded, + 'two_wheeler_outlined': Icons.two_wheeler_outlined, + 'umbrella': Icons.umbrella, + 'umbrella_sharp': Icons.umbrella_sharp, + 'umbrella_rounded': Icons.umbrella_rounded, + 'umbrella_outlined': Icons.umbrella_outlined, + 'unarchive': Icons.unarchive, + 'unarchive_sharp': Icons.unarchive_sharp, + 'unarchive_rounded': Icons.unarchive_rounded, + 'unarchive_outlined': Icons.unarchive_outlined, + 'undo': Icons.undo, + 'undo_sharp': Icons.undo_sharp, + 'undo_rounded': Icons.undo_rounded, + 'undo_outlined': Icons.undo_outlined, + 'unfold_less': Icons.unfold_less, + 'unfold_less_sharp': Icons.unfold_less_sharp, + 'unfold_less_rounded': Icons.unfold_less_rounded, + 'unfold_less_outlined': Icons.unfold_less_outlined, + 'unfold_more': Icons.unfold_more, + 'unfold_more_sharp': Icons.unfold_more_sharp, + 'unfold_more_rounded': Icons.unfold_more_rounded, + 'unfold_more_outlined': Icons.unfold_more_outlined, + 'unpublished': Icons.unpublished, + 'unpublished_sharp': Icons.unpublished_sharp, + 'unpublished_rounded': Icons.unpublished_rounded, + 'unpublished_outlined': Icons.unpublished_outlined, + 'unsubscribe': Icons.unsubscribe, + 'unsubscribe_sharp': Icons.unsubscribe_sharp, + 'unsubscribe_rounded': Icons.unsubscribe_rounded, + 'unsubscribe_outlined': Icons.unsubscribe_outlined, + 'upcoming': Icons.upcoming, + 'upcoming_sharp': Icons.upcoming_sharp, + 'upcoming_rounded': Icons.upcoming_rounded, + 'upcoming_outlined': Icons.upcoming_outlined, + 'update': Icons.update, + 'update_sharp': Icons.update_sharp, + 'update_rounded': Icons.update_rounded, + 'update_outlined': Icons.update_outlined, + 'update_disabled': Icons.update_disabled, + 'update_disabled_sharp': Icons.update_disabled_sharp, + 'update_disabled_rounded': Icons.update_disabled_rounded, + 'update_disabled_outlined': Icons.update_disabled_outlined, + 'upgrade': Icons.upgrade, + 'upgrade_sharp': Icons.upgrade_sharp, + 'upgrade_rounded': Icons.upgrade_rounded, + 'upgrade_outlined': Icons.upgrade_outlined, + 'upload': Icons.upload, + 'upload_sharp': Icons.upload_sharp, + 'upload_rounded': Icons.upload_rounded, + 'upload_outlined': Icons.upload_outlined, + 'upload_file': Icons.upload_file, + 'upload_file_sharp': Icons.upload_file_sharp, + 'upload_file_rounded': Icons.upload_file_rounded, + 'upload_file_outlined': Icons.upload_file_outlined, + 'usb': Icons.usb, + 'usb_sharp': Icons.usb_sharp, + 'usb_rounded': Icons.usb_rounded, + 'usb_outlined': Icons.usb_outlined, + 'usb_off': Icons.usb_off, + 'usb_off_sharp': Icons.usb_off_sharp, + 'usb_off_rounded': Icons.usb_off_rounded, + 'usb_off_outlined': Icons.usb_off_outlined, + 'verified': Icons.verified, + 'verified_sharp': Icons.verified_sharp, + 'verified_rounded': Icons.verified_rounded, + 'verified_outlined': Icons.verified_outlined, + 'verified_user': Icons.verified_user, + 'verified_user_sharp': Icons.verified_user_sharp, + 'verified_user_rounded': Icons.verified_user_rounded, + 'verified_user_outlined': Icons.verified_user_outlined, + 'vertical_align_bottom': Icons.vertical_align_bottom, + 'vertical_align_bottom_sharp': Icons.vertical_align_bottom_sharp, + 'vertical_align_bottom_rounded': Icons.vertical_align_bottom_rounded, + 'vertical_align_bottom_outlined': Icons.vertical_align_bottom_outlined, + 'vertical_align_center': Icons.vertical_align_center, + 'vertical_align_center_sharp': Icons.vertical_align_center_sharp, + 'vertical_align_center_rounded': Icons.vertical_align_center_rounded, + 'vertical_align_center_outlined': Icons.vertical_align_center_outlined, + 'vertical_align_top': Icons.vertical_align_top, + 'vertical_align_top_sharp': Icons.vertical_align_top_sharp, + 'vertical_align_top_rounded': Icons.vertical_align_top_rounded, + 'vertical_align_top_outlined': Icons.vertical_align_top_outlined, + 'vertical_distribute': Icons.vertical_distribute, + 'vertical_distribute_sharp': Icons.vertical_distribute_sharp, + 'vertical_distribute_rounded': Icons.vertical_distribute_rounded, + 'vertical_distribute_outlined': Icons.vertical_distribute_outlined, + 'vertical_split': Icons.vertical_split, + 'vertical_split_sharp': Icons.vertical_split_sharp, + 'vertical_split_rounded': Icons.vertical_split_rounded, + 'vertical_split_outlined': Icons.vertical_split_outlined, + 'vibration': Icons.vibration, + 'vibration_sharp': Icons.vibration_sharp, + 'vibration_rounded': Icons.vibration_rounded, + 'vibration_outlined': Icons.vibration_outlined, + 'video_call': Icons.video_call, + 'video_call_sharp': Icons.video_call_sharp, + 'video_call_rounded': Icons.video_call_rounded, + 'video_call_outlined': Icons.video_call_outlined, + 'video_camera_back': Icons.video_camera_back, + 'video_camera_back_sharp': Icons.video_camera_back_sharp, + 'video_camera_back_rounded': Icons.video_camera_back_rounded, + 'video_camera_back_outlined': Icons.video_camera_back_outlined, + 'video_camera_front': Icons.video_camera_front, + 'video_camera_front_sharp': Icons.video_camera_front_sharp, + 'video_camera_front_rounded': Icons.video_camera_front_rounded, + 'video_camera_front_outlined': Icons.video_camera_front_outlined, + 'video_collection': Icons.video_collection, + 'video_collection_sharp': Icons.video_collection_sharp, + 'video_collection_rounded': Icons.video_collection_rounded, + 'video_collection_outlined': Icons.video_collection_outlined, + 'video_label': Icons.video_label, + 'video_label_sharp': Icons.video_label_sharp, + 'video_label_rounded': Icons.video_label_rounded, + 'video_label_outlined': Icons.video_label_outlined, + 'video_library': Icons.video_library, + 'video_library_sharp': Icons.video_library_sharp, + 'video_library_rounded': Icons.video_library_rounded, + 'video_library_outlined': Icons.video_library_outlined, + 'video_settings': Icons.video_settings, + 'video_settings_sharp': Icons.video_settings_sharp, + 'video_settings_rounded': Icons.video_settings_rounded, + 'video_settings_outlined': Icons.video_settings_outlined, + 'video_stable': Icons.video_stable, + 'video_stable_sharp': Icons.video_stable_sharp, + 'video_stable_rounded': Icons.video_stable_rounded, + 'video_stable_outlined': Icons.video_stable_outlined, + 'videocam': Icons.videocam, + 'videocam_sharp': Icons.videocam_sharp, + 'videocam_rounded': Icons.videocam_rounded, + 'videocam_outlined': Icons.videocam_outlined, + 'videocam_off': Icons.videocam_off, + 'videocam_off_sharp': Icons.videocam_off_sharp, + 'videocam_off_rounded': Icons.videocam_off_rounded, + 'videocam_off_outlined': Icons.videocam_off_outlined, + 'videogame_asset': Icons.videogame_asset, + 'videogame_asset_sharp': Icons.videogame_asset_sharp, + 'videogame_asset_rounded': Icons.videogame_asset_rounded, + 'videogame_asset_outlined': Icons.videogame_asset_outlined, + 'videogame_asset_off': Icons.videogame_asset_off, + 'videogame_asset_off_sharp': Icons.videogame_asset_off_sharp, + 'videogame_asset_off_rounded': Icons.videogame_asset_off_rounded, + 'videogame_asset_off_outlined': Icons.videogame_asset_off_outlined, + 'view_agenda': Icons.view_agenda, + 'view_agenda_sharp': Icons.view_agenda_sharp, + 'view_agenda_rounded': Icons.view_agenda_rounded, + 'view_agenda_outlined': Icons.view_agenda_outlined, + 'view_array': Icons.view_array, + 'view_array_sharp': Icons.view_array_sharp, + 'view_array_rounded': Icons.view_array_rounded, + 'view_array_outlined': Icons.view_array_outlined, + 'view_carousel': Icons.view_carousel, + 'view_carousel_sharp': Icons.view_carousel_sharp, + 'view_carousel_rounded': Icons.view_carousel_rounded, + 'view_carousel_outlined': Icons.view_carousel_outlined, + 'view_column': Icons.view_column, + 'view_column_sharp': Icons.view_column_sharp, + 'view_column_rounded': Icons.view_column_rounded, + 'view_column_outlined': Icons.view_column_outlined, + 'view_comfortable': Icons.view_comfortable, + 'view_comfortable_sharp': Icons.view_comfortable_sharp, + 'view_comfortable_rounded': Icons.view_comfortable_rounded, + 'view_comfortable_outlined': Icons.view_comfortable_outlined, + 'view_comfy': Icons.view_comfy, + 'view_comfy_sharp': Icons.view_comfy_sharp, + 'view_comfy_rounded': Icons.view_comfy_rounded, + 'view_comfy_outlined': Icons.view_comfy_outlined, + 'view_compact': Icons.view_compact, + 'view_compact_sharp': Icons.view_compact_sharp, + 'view_compact_rounded': Icons.view_compact_rounded, + 'view_compact_outlined': Icons.view_compact_outlined, + 'view_day': Icons.view_day, + 'view_day_sharp': Icons.view_day_sharp, + 'view_day_rounded': Icons.view_day_rounded, + 'view_day_outlined': Icons.view_day_outlined, + 'view_headline': Icons.view_headline, + 'view_headline_sharp': Icons.view_headline_sharp, + 'view_headline_rounded': Icons.view_headline_rounded, + 'view_headline_outlined': Icons.view_headline_outlined, + 'view_in_ar': Icons.view_in_ar, + 'view_in_ar_sharp': Icons.view_in_ar_sharp, + 'view_in_ar_rounded': Icons.view_in_ar_rounded, + 'view_in_ar_outlined': Icons.view_in_ar_outlined, + 'view_list': Icons.view_list, + 'view_list_sharp': Icons.view_list_sharp, + 'view_list_rounded': Icons.view_list_rounded, + 'view_list_outlined': Icons.view_list_outlined, + 'view_module': Icons.view_module, + 'view_module_sharp': Icons.view_module_sharp, + 'view_module_rounded': Icons.view_module_rounded, + 'view_module_outlined': Icons.view_module_outlined, + 'view_quilt': Icons.view_quilt, + 'view_quilt_sharp': Icons.view_quilt_sharp, + 'view_quilt_rounded': Icons.view_quilt_rounded, + 'view_quilt_outlined': Icons.view_quilt_outlined, + 'view_sidebar': Icons.view_sidebar, + 'view_sidebar_sharp': Icons.view_sidebar_sharp, + 'view_sidebar_rounded': Icons.view_sidebar_rounded, + 'view_sidebar_outlined': Icons.view_sidebar_outlined, + 'view_stream': Icons.view_stream, + 'view_stream_sharp': Icons.view_stream_sharp, + 'view_stream_rounded': Icons.view_stream_rounded, + 'view_stream_outlined': Icons.view_stream_outlined, + 'view_week': Icons.view_week, + 'view_week_sharp': Icons.view_week_sharp, + 'view_week_rounded': Icons.view_week_rounded, + 'view_week_outlined': Icons.view_week_outlined, + 'vignette': Icons.vignette, + 'vignette_sharp': Icons.vignette_sharp, + 'vignette_rounded': Icons.vignette_rounded, + 'vignette_outlined': Icons.vignette_outlined, + 'villa': Icons.villa, + 'villa_sharp': Icons.villa_sharp, + 'villa_rounded': Icons.villa_rounded, + 'villa_outlined': Icons.villa_outlined, + 'visibility': Icons.visibility, + 'visibility_sharp': Icons.visibility_sharp, + 'visibility_rounded': Icons.visibility_rounded, + 'visibility_outlined': Icons.visibility_outlined, + 'visibility_off': Icons.visibility_off, + 'visibility_off_sharp': Icons.visibility_off_sharp, + 'visibility_off_rounded': Icons.visibility_off_rounded, + 'visibility_off_outlined': Icons.visibility_off_outlined, + 'voice_chat': Icons.voice_chat, + 'voice_chat_sharp': Icons.voice_chat_sharp, + 'voice_chat_rounded': Icons.voice_chat_rounded, + 'voice_chat_outlined': Icons.voice_chat_outlined, + 'voice_over_off': Icons.voice_over_off, + 'voice_over_off_sharp': Icons.voice_over_off_sharp, + 'voice_over_off_rounded': Icons.voice_over_off_rounded, + 'voice_over_off_outlined': Icons.voice_over_off_outlined, + 'voicemail': Icons.voicemail, + 'voicemail_sharp': Icons.voicemail_sharp, + 'voicemail_rounded': Icons.voicemail_rounded, + 'voicemail_outlined': Icons.voicemail_outlined, + 'volume_down': Icons.volume_down, + 'volume_down_sharp': Icons.volume_down_sharp, + 'volume_down_rounded': Icons.volume_down_rounded, + 'volume_down_outlined': Icons.volume_down_outlined, + 'volume_mute': Icons.volume_mute, + 'volume_mute_sharp': Icons.volume_mute_sharp, + 'volume_mute_rounded': Icons.volume_mute_rounded, + 'volume_mute_outlined': Icons.volume_mute_outlined, + 'volume_off': Icons.volume_off, + 'volume_off_sharp': Icons.volume_off_sharp, + 'volume_off_rounded': Icons.volume_off_rounded, + 'volume_off_outlined': Icons.volume_off_outlined, + 'volume_up': Icons.volume_up, + 'volume_up_sharp': Icons.volume_up_sharp, + 'volume_up_rounded': Icons.volume_up_rounded, + 'volume_up_outlined': Icons.volume_up_outlined, + 'volunteer_activism': Icons.volunteer_activism, + 'volunteer_activism_sharp': Icons.volunteer_activism_sharp, + 'volunteer_activism_rounded': Icons.volunteer_activism_rounded, + 'volunteer_activism_outlined': Icons.volunteer_activism_outlined, + 'vpn_key': Icons.vpn_key, + 'vpn_key_sharp': Icons.vpn_key_sharp, + 'vpn_key_rounded': Icons.vpn_key_rounded, + 'vpn_key_outlined': Icons.vpn_key_outlined, + 'vpn_lock': Icons.vpn_lock, + 'vpn_lock_sharp': Icons.vpn_lock_sharp, + 'vpn_lock_rounded': Icons.vpn_lock_rounded, + 'vpn_lock_outlined': Icons.vpn_lock_outlined, + 'vrpano': Icons.vrpano, + 'vrpano_sharp': Icons.vrpano_sharp, + 'vrpano_rounded': Icons.vrpano_rounded, + 'vrpano_outlined': Icons.vrpano_outlined, + 'wallet_giftcard': Icons.wallet_giftcard, + 'wallet_giftcard_sharp': Icons.wallet_giftcard_sharp, + 'wallet_giftcard_rounded': Icons.wallet_giftcard_rounded, + 'wallet_giftcard_outlined': Icons.wallet_giftcard_outlined, + 'wallet_membership': Icons.wallet_membership, + 'wallet_membership_sharp': Icons.wallet_membership_sharp, + 'wallet_membership_rounded': Icons.wallet_membership_rounded, + 'wallet_membership_outlined': Icons.wallet_membership_outlined, + 'wallet_travel': Icons.wallet_travel, + 'wallet_travel_sharp': Icons.wallet_travel_sharp, + 'wallet_travel_rounded': Icons.wallet_travel_rounded, + 'wallet_travel_outlined': Icons.wallet_travel_outlined, + 'wallpaper': Icons.wallpaper, + 'wallpaper_sharp': Icons.wallpaper_sharp, + 'wallpaper_rounded': Icons.wallpaper_rounded, + 'wallpaper_outlined': Icons.wallpaper_outlined, + 'warning': Icons.warning, + 'warning_sharp': Icons.warning_sharp, + 'warning_rounded': Icons.warning_rounded, + 'warning_outlined': Icons.warning_outlined, + 'warning_amber': Icons.warning_amber, + 'warning_amber_sharp': Icons.warning_amber_sharp, + 'warning_amber_rounded': Icons.warning_amber_rounded, + 'warning_amber_outlined': Icons.warning_amber_outlined, + 'wash': Icons.wash, + 'wash_sharp': Icons.wash_sharp, + 'wash_rounded': Icons.wash_rounded, + 'wash_outlined': Icons.wash_outlined, + 'watch': Icons.watch, + 'watch_sharp': Icons.watch_sharp, + 'watch_rounded': Icons.watch_rounded, + 'watch_outlined': Icons.watch_outlined, + 'watch_later': Icons.watch_later, + 'watch_later_sharp': Icons.watch_later_sharp, + 'watch_later_rounded': Icons.watch_later_rounded, + 'watch_later_outlined': Icons.watch_later_outlined, + 'water': Icons.water, + 'water_sharp': Icons.water_sharp, + 'water_rounded': Icons.water_rounded, + 'water_outlined': Icons.water_outlined, + 'water_damage': Icons.water_damage, + 'water_damage_sharp': Icons.water_damage_sharp, + 'water_damage_rounded': Icons.water_damage_rounded, + 'water_damage_outlined': Icons.water_damage_outlined, + 'waterfall_chart': Icons.waterfall_chart, + 'waterfall_chart_sharp': Icons.waterfall_chart_sharp, + 'waterfall_chart_rounded': Icons.waterfall_chart_rounded, + 'waterfall_chart_outlined': Icons.waterfall_chart_outlined, + 'waves': Icons.waves, + 'waves_sharp': Icons.waves_sharp, + 'waves_rounded': Icons.waves_rounded, + 'waves_outlined': Icons.waves_outlined, + 'wb_auto': Icons.wb_auto, + 'wb_auto_sharp': Icons.wb_auto_sharp, + 'wb_auto_rounded': Icons.wb_auto_rounded, + 'wb_auto_outlined': Icons.wb_auto_outlined, + 'wb_cloudy': Icons.wb_cloudy, + 'wb_cloudy_sharp': Icons.wb_cloudy_sharp, + 'wb_cloudy_rounded': Icons.wb_cloudy_rounded, + 'wb_cloudy_outlined': Icons.wb_cloudy_outlined, + 'wb_incandescent': Icons.wb_incandescent, + 'wb_incandescent_sharp': Icons.wb_incandescent_sharp, + 'wb_incandescent_rounded': Icons.wb_incandescent_rounded, + 'wb_incandescent_outlined': Icons.wb_incandescent_outlined, + 'wb_iridescent': Icons.wb_iridescent, + 'wb_iridescent_sharp': Icons.wb_iridescent_sharp, + 'wb_iridescent_rounded': Icons.wb_iridescent_rounded, + 'wb_iridescent_outlined': Icons.wb_iridescent_outlined, + 'wb_shade': Icons.wb_shade, + 'wb_shade_sharp': Icons.wb_shade_sharp, + 'wb_shade_rounded': Icons.wb_shade_rounded, + 'wb_shade_outlined': Icons.wb_shade_outlined, + 'wb_sunny': Icons.wb_sunny, + 'wb_sunny_sharp': Icons.wb_sunny_sharp, + 'wb_sunny_rounded': Icons.wb_sunny_rounded, + 'wb_sunny_outlined': Icons.wb_sunny_outlined, + 'wb_twighlight': Icons.wb_twighlight, + 'wb_twilight': Icons.wb_twilight, + 'wb_twilight_sharp': Icons.wb_twilight_sharp, + 'wb_twilight_rounded': Icons.wb_twilight_rounded, + 'wb_twilight_outlined': Icons.wb_twilight_outlined, + 'wc': Icons.wc, + 'wc_sharp': Icons.wc_sharp, + 'wc_rounded': Icons.wc_rounded, + 'wc_outlined': Icons.wc_outlined, + 'web': Icons.web, + 'web_sharp': Icons.web_sharp, + 'web_rounded': Icons.web_rounded, + 'web_outlined': Icons.web_outlined, + 'web_asset': Icons.web_asset, + 'web_asset_sharp': Icons.web_asset_sharp, + 'web_asset_rounded': Icons.web_asset_rounded, + 'web_asset_outlined': Icons.web_asset_outlined, + 'web_asset_off': Icons.web_asset_off, + 'web_asset_off_sharp': Icons.web_asset_off_sharp, + 'web_asset_off_rounded': Icons.web_asset_off_rounded, + 'web_asset_off_outlined': Icons.web_asset_off_outlined, + 'web_stories': Icons.web_stories, + 'weekend': Icons.weekend, + 'weekend_sharp': Icons.weekend_sharp, + 'weekend_rounded': Icons.weekend_rounded, + 'weekend_outlined': Icons.weekend_outlined, + 'west': Icons.west, + 'west_sharp': Icons.west_sharp, + 'west_rounded': Icons.west_rounded, + 'west_outlined': Icons.west_outlined, + 'whatshot': Icons.whatshot, + 'whatshot_sharp': Icons.whatshot_sharp, + 'whatshot_rounded': Icons.whatshot_rounded, + 'whatshot_outlined': Icons.whatshot_outlined, + 'wheelchair_pickup': Icons.wheelchair_pickup, + 'wheelchair_pickup_sharp': Icons.wheelchair_pickup_sharp, + 'wheelchair_pickup_rounded': Icons.wheelchair_pickup_rounded, + 'wheelchair_pickup_outlined': Icons.wheelchair_pickup_outlined, + 'where_to_vote': Icons.where_to_vote, + 'where_to_vote_sharp': Icons.where_to_vote_sharp, + 'where_to_vote_rounded': Icons.where_to_vote_rounded, + 'where_to_vote_outlined': Icons.where_to_vote_outlined, + 'widgets': Icons.widgets, + 'widgets_sharp': Icons.widgets_sharp, + 'widgets_rounded': Icons.widgets_rounded, + 'widgets_outlined': Icons.widgets_outlined, + 'wifi': Icons.wifi, + 'wifi_sharp': Icons.wifi_sharp, + 'wifi_rounded': Icons.wifi_rounded, + 'wifi_outlined': Icons.wifi_outlined, + 'wifi_calling': Icons.wifi_calling, + 'wifi_calling_sharp': Icons.wifi_calling_sharp, + 'wifi_calling_rounded': Icons.wifi_calling_rounded, + 'wifi_calling_outlined': Icons.wifi_calling_outlined, + 'wifi_calling_3': Icons.wifi_calling_3, + 'wifi_calling_3_sharp': Icons.wifi_calling_3_sharp, + 'wifi_calling_3_rounded': Icons.wifi_calling_3_rounded, + 'wifi_calling_3_outlined': Icons.wifi_calling_3_outlined, + 'wifi_lock': Icons.wifi_lock, + 'wifi_lock_sharp': Icons.wifi_lock_sharp, + 'wifi_lock_rounded': Icons.wifi_lock_rounded, + 'wifi_lock_outlined': Icons.wifi_lock_outlined, + 'wifi_off': Icons.wifi_off, + 'wifi_off_sharp': Icons.wifi_off_sharp, + 'wifi_off_rounded': Icons.wifi_off_rounded, + 'wifi_off_outlined': Icons.wifi_off_outlined, + 'wifi_protected_setup': Icons.wifi_protected_setup, + 'wifi_protected_setup_sharp': Icons.wifi_protected_setup_sharp, + 'wifi_protected_setup_rounded': Icons.wifi_protected_setup_rounded, + 'wifi_protected_setup_outlined': Icons.wifi_protected_setup_outlined, + 'wifi_tethering': Icons.wifi_tethering, + 'wifi_tethering_sharp': Icons.wifi_tethering_sharp, + 'wifi_tethering_rounded': Icons.wifi_tethering_rounded, + 'wifi_tethering_outlined': Icons.wifi_tethering_outlined, + 'wifi_tethering_error_rounded': Icons.wifi_tethering_error_rounded, + 'wifi_tethering_error_rounded_sharp': + Icons.wifi_tethering_error_rounded_sharp, + 'wifi_tethering_error_rounded_rounded': + Icons.wifi_tethering_error_rounded_rounded, + 'wifi_tethering_error_rounded_outlined': + Icons.wifi_tethering_error_rounded_outlined, + 'wifi_tethering_off': Icons.wifi_tethering_off, + 'wifi_tethering_off_sharp': Icons.wifi_tethering_off_sharp, + 'wifi_tethering_off_rounded': Icons.wifi_tethering_off_rounded, + 'wifi_tethering_off_outlined': Icons.wifi_tethering_off_outlined, + 'window': Icons.window, + 'window_sharp': Icons.window_sharp, + 'window_rounded': Icons.window_rounded, + 'window_outlined': Icons.window_outlined, + 'wine_bar': Icons.wine_bar, + 'wine_bar_sharp': Icons.wine_bar_sharp, + 'wine_bar_rounded': Icons.wine_bar_rounded, + 'wine_bar_outlined': Icons.wine_bar_outlined, + 'work': Icons.work, + 'work_sharp': Icons.work_sharp, + 'work_rounded': Icons.work_rounded, + 'work_outlined': Icons.work_outlined, + 'work_off': Icons.work_off, + 'work_off_sharp': Icons.work_off_sharp, + 'work_off_rounded': Icons.work_off_rounded, + 'work_off_outlined': Icons.work_off_outlined, + 'work_outline': Icons.work_outline, + 'work_outline_sharp': Icons.work_outline_sharp, + 'work_outline_rounded': Icons.work_outline_rounded, + 'work_outline_outlined': Icons.work_outline_outlined, + 'workspaces': Icons.workspaces, + 'workspaces_sharp': Icons.workspaces_sharp, + 'workspaces_rounded': Icons.workspaces_rounded, + 'workspaces_outlined': Icons.workspaces_outlined, + 'workspaces_filled': Icons.workspaces_filled, + 'workspaces_outline': Icons.workspaces_outline, + 'wrap_text': Icons.wrap_text, + 'wrap_text_sharp': Icons.wrap_text_sharp, + 'wrap_text_rounded': Icons.wrap_text_rounded, + 'wrap_text_outlined': Icons.wrap_text_outlined, + 'wrong_location': Icons.wrong_location, + 'wrong_location_sharp': Icons.wrong_location_sharp, + 'wrong_location_rounded': Icons.wrong_location_rounded, + 'wrong_location_outlined': Icons.wrong_location_outlined, + 'wysiwyg': Icons.wysiwyg, + 'wysiwyg_sharp': Icons.wysiwyg_sharp, + 'wysiwyg_rounded': Icons.wysiwyg_rounded, + 'wysiwyg_outlined': Icons.wysiwyg_outlined, + 'yard': Icons.yard, + 'yard_sharp': Icons.yard_sharp, + 'yard_rounded': Icons.yard_rounded, + 'yard_outlined': Icons.yard_outlined, + 'youtube_searched_for': Icons.youtube_searched_for, + 'youtube_searched_for_sharp': Icons.youtube_searched_for_sharp, + 'youtube_searched_for_rounded': Icons.youtube_searched_for_rounded, + 'youtube_searched_for_outlined': Icons.youtube_searched_for_outlined, + 'zoom_in': Icons.zoom_in, + 'zoom_in_sharp': Icons.zoom_in_sharp, + 'zoom_in_rounded': Icons.zoom_in_rounded, + 'zoom_in_outlined': Icons.zoom_in_outlined, + 'zoom_out': Icons.zoom_out, + 'zoom_out_sharp': Icons.zoom_out_sharp, + 'zoom_out_rounded': Icons.zoom_out_rounded, + 'zoom_out_outlined': Icons.zoom_out_outlined, + 'zoom_out_map': Icons.zoom_out_map, + 'zoom_out_map_sharp': Icons.zoom_out_map_sharp, + 'zoom_out_map_rounded': Icons.zoom_out_map_rounded, + 'zoom_out_map_outlined': Icons.zoom_out_map_outlined, + }, + 'MaterialApp': (props) => MaterialApp( + key: props['key'], + navigatorKey: props['navigatorKey'], + scaffoldMessengerKey: props['scaffoldMessengerKey'], + home: props['home'], + routes: props['routes'] ?? const {}, + initialRoute: props['initialRoute'], + onGenerateRoute: props['onGenerateRoute'], + onGenerateInitialRoutes: props['onGenerateInitialRoutes'], + onUnknownRoute: props['onUnknownRoute'], + navigatorObservers: + as(props['navigatorObservers']) ?? const [], + builder: props['builder'], + title: props['title'] ?? '', + onGenerateTitle: props['onGenerateTitle'], + color: props['color'], + theme: props['theme'], + darkTheme: props['darkTheme'], + highContrastTheme: props['highContrastTheme'], + highContrastDarkTheme: props['highContrastDarkTheme'], + themeMode: props['themeMode'] ?? ThemeMode.system, + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: + props['supportedLocales'] ?? const [Locale('en', 'US')], + debugShowMaterialGrid: props['debugShowMaterialGrid'] ?? false, + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, + checkerboardRasterCacheImages: + props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: + props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowCheckedModeBanner: + props['debugShowCheckedModeBanner'] ?? true, + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + scrollBehavior: props['scrollBehavior'], + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), + 'MaterialApp.router': (props) => MaterialApp.router( + key: props['key'], + scaffoldMessengerKey: props['scaffoldMessengerKey'], + routeInformationProvider: props['routeInformationProvider'], + routeInformationParser: props['routeInformationParser'], + routerDelegate: props['routerDelegate'], + backButtonDispatcher: props['backButtonDispatcher'], + builder: props['builder'], + title: props['title'] ?? '', + onGenerateTitle: props['onGenerateTitle'], + color: props['color'], + theme: props['theme'], + darkTheme: props['darkTheme'], + highContrastTheme: props['highContrastTheme'], + highContrastDarkTheme: props['highContrastDarkTheme'], + themeMode: props['themeMode'] ?? ThemeMode.system, + locale: props['locale'], + localizationsDelegates: props['localizationsDelegates'], + localeListResolutionCallback: props['localeListResolutionCallback'], + localeResolutionCallback: props['localeResolutionCallback'], + supportedLocales: + props['supportedLocales'] ?? const [Locale('en', 'US')], + debugShowMaterialGrid: props['debugShowMaterialGrid'] ?? false, + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, + checkerboardRasterCacheImages: + props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: + props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowCheckedModeBanner: + props['debugShowCheckedModeBanner'] ?? true, + shortcuts: props['shortcuts'], + actions: props['actions'], + restorationScopeId: props['restorationScopeId'], + scrollBehavior: props['scrollBehavior'], + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), + 'MaterialApp.createMaterialHeroController': (props) => + MaterialApp.createMaterialHeroController(), + 'ThemeMode': { + 'values': ThemeMode.values, + 'system': ThemeMode.system, + 'light': ThemeMode.light, + 'dark': ThemeMode.dark, + }, + 'BottomNavigationBar': (props) => BottomNavigationBar( + key: props['key'], + items: as(props['items'])!, + onTap: props['onTap'], + currentIndex: props['currentIndex'] ?? 0, + elevation: props['elevation']?.toDouble(), + type: props['type'], + fixedColor: props['fixedColor'], + backgroundColor: props['backgroundColor'], + iconSize: props['iconSize']?.toDouble() ?? 24.0, + selectedItemColor: props['selectedItemColor'], + unselectedItemColor: props['unselectedItemColor'], + selectedIconTheme: props['selectedIconTheme'], + unselectedIconTheme: props['unselectedIconTheme'], + selectedFontSize: props['selectedFontSize']?.toDouble() ?? 14.0, + unselectedFontSize: props['unselectedFontSize']?.toDouble() ?? 12.0, + selectedLabelStyle: props['selectedLabelStyle'], + unselectedLabelStyle: props['unselectedLabelStyle'], + showSelectedLabels: props['showSelectedLabels'], + showUnselectedLabels: props['showUnselectedLabels'], + mouseCursor: props['mouseCursor'], + enableFeedback: props['enableFeedback'], + landscapeLayout: props['landscapeLayout'], + ), + 'BottomNavigationBarType': { + 'values': BottomNavigationBarType.values, + 'fixed': BottomNavigationBarType.fixed, + 'shifting': BottomNavigationBarType.shifting, + }, + 'BottomNavigationBarLandscapeLayout': { + 'values': BottomNavigationBarLandscapeLayout.values, + 'spread': BottomNavigationBarLandscapeLayout.spread, + 'centered': BottomNavigationBarLandscapeLayout.centered, + 'linear': BottomNavigationBarLandscapeLayout.linear, + }, + 'ButtonStyle.lerp': (props) => ButtonStyle.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Scrollbar': (props) => Scrollbar( + key: props['key'], + child: props['child'], + controller: props['controller'], + isAlwaysShown: props['isAlwaysShown'], + showTrackOnHover: props['showTrackOnHover'], + hoverThickness: props['hoverThickness']?.toDouble(), + thickness: props['thickness']?.toDouble(), + radius: props['radius'], + notificationPredicate: props['notificationPredicate'], + interactive: props['interactive'], + scrollbarOrientation: props['scrollbarOrientation'], + ), + 'Switch': (props) => Switch( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + activeColor: props['activeColor'], + activeTrackColor: props['activeTrackColor'], + inactiveThumbColor: props['inactiveThumbColor'], + inactiveTrackColor: props['inactiveTrackColor'], + activeThumbImage: props['activeThumbImage'], + onActiveThumbImageError: props['onActiveThumbImageError'], + inactiveThumbImage: props['inactiveThumbImage'], + onInactiveThumbImageError: props['onInactiveThumbImageError'], + thumbColor: props['thumbColor'], + trackColor: props['trackColor'], + materialTapTargetSize: props['materialTapTargetSize'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + mouseCursor: props['mouseCursor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + overlayColor: props['overlayColor'], + splashRadius: props['splashRadius']?.toDouble(), + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + ), + 'Switch.adaptive': (props) => Switch.adaptive( + key: props['key'], + value: props['value'], + onChanged: props['onChanged'], + activeColor: props['activeColor'], + activeTrackColor: props['activeTrackColor'], + inactiveThumbColor: props['inactiveThumbColor'], + inactiveTrackColor: props['inactiveTrackColor'], + activeThumbImage: props['activeThumbImage'], + onActiveThumbImageError: props['onActiveThumbImageError'], + inactiveThumbImage: props['inactiveThumbImage'], + onInactiveThumbImageError: props['onInactiveThumbImageError'], + materialTapTargetSize: props['materialTapTargetSize'], + thumbColor: props['thumbColor'], + trackColor: props['trackColor'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + mouseCursor: props['mouseCursor'], + focusColor: props['focusColor'], + hoverColor: props['hoverColor'], + overlayColor: props['overlayColor'], + splashRadius: props['splashRadius']?.toDouble(), + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + ), + 'FlexibleSpaceBar': (props) => FlexibleSpaceBar( + key: props['key'], + title: props['title'], + background: props['background'], + centerTitle: props['centerTitle'], + titlePadding: props['titlePadding'], + collapseMode: props['collapseMode'] ?? CollapseMode.parallax, + stretchModes: as(props['stretchModes']) ?? + const [StretchMode.zoomBackground], + ), + 'FlexibleSpaceBar.createSettings': (props) => + FlexibleSpaceBar.createSettings( + toolbarOpacity: props['toolbarOpacity']?.toDouble(), + minExtent: props['minExtent']?.toDouble(), + maxExtent: props['maxExtent']?.toDouble(), + isScrolledUnder: props['isScrolledUnder'], + currentExtent: props['currentExtent']?.toDouble(), + child: props['child'], + ), + 'CollapseMode': { + 'values': CollapseMode.values, + 'parallax': CollapseMode.parallax, + 'pin': CollapseMode.pin, + 'none': CollapseMode.none, + }, + 'StretchMode': { + 'values': StretchMode.values, + 'zoomBackground': StretchMode.zoomBackground, + 'blurBackground': StretchMode.blurBackground, + 'fadeTitle': StretchMode.fadeTitle, + }, + 'DividerThemeData.lerp': (props) => DividerThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'DividerTheme.of': (props) => DividerTheme.of( + props['pa'][0], + ), + 'AnimatedIcon': (props) => AnimatedIcon( + key: props['key'], + icon: props['icon'], + progress: props['progress'], + color: props['color'], + size: props['size']?.toDouble(), + semanticLabel: props['semanticLabel'], + textDirection: props['textDirection'], + ), + 'SnackBarThemeData.lerp': (props) => SnackBarThemeData.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SnackBarBehavior': { + 'values': SnackBarBehavior.values, + 'fixed': SnackBarBehavior.fixed, + 'floating': SnackBarBehavior.floating, + }, + 'DateUtils.dateOnly': (props) => DateUtils.dateOnly( + props['pa'][0], + ), + 'DateUtils.datesOnly': (props) => DateUtils.datesOnly( + props['pa'][0], + ), + 'DateUtils.isSameDay': (props) => DateUtils.isSameDay( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.isSameMonth': (props) => DateUtils.isSameMonth( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.monthDelta': (props) => DateUtils.monthDelta( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.addMonthsToMonthDate': (props) => + DateUtils.addMonthsToMonthDate( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.addDaysToDate': (props) => DateUtils.addDaysToDate( + props['pa'][0], + props['pa'][1], + ), + 'DateUtils.firstDayOffset': (props) => DateUtils.firstDayOffset( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'DateUtils.getDaysInMonth': (props) => DateUtils.getDaysInMonth( + props['pa'][0], + props['pa'][1], + ), + 'DatePickerEntryMode': { + 'values': DatePickerEntryMode.values, + 'calendar': DatePickerEntryMode.calendar, + 'input': DatePickerEntryMode.input, + 'calendarOnly': DatePickerEntryMode.calendarOnly, + 'inputOnly': DatePickerEntryMode.inputOnly, + }, + 'DatePickerMode': { + 'values': DatePickerMode.values, + 'day': DatePickerMode.day, + 'year': DatePickerMode.year, + }, + 'Drawer': (props) => Drawer( + key: props['key'], + elevation: props['elevation']?.toDouble() ?? 16.0, + child: props['child'], + semanticLabel: props['semanticLabel'], + ), + 'DrawerController': (props) => DrawerController( + key: props['key'], + child: props['child'], + alignment: props['alignment'], + isDrawerOpen: props['isDrawerOpen'] ?? false, + drawerCallback: props['drawerCallback'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + scrimColor: props['scrimColor'], + edgeDragWidth: props['edgeDragWidth']?.toDouble(), + enableOpenDragGesture: props['enableOpenDragGesture'] ?? true, + ), + 'DrawerController#drawerCallback': (props) => ( + bool isOpened, + ) { + return (props['block']); + }, + 'DrawerAlignment': { + 'values': DrawerAlignment.values, + 'start': DrawerAlignment.start, + 'end': DrawerAlignment.end, + }, + 'MergeableMaterial': (props) => MergeableMaterial( + key: props['key'], + mainAxis: props['mainAxis'] ?? Axis.vertical, + elevation: props['elevation']?.toDouble() ?? 2, + hasDividers: props['hasDividers'] ?? false, + children: as(props['children']) ?? + const [], + dividerColor: props['dividerColor'], + ), + 'MaterialState': { + 'values': MaterialState.values, + 'hovered': MaterialState.hovered, + 'focused': MaterialState.focused, + 'pressed': MaterialState.pressed, + 'dragged': MaterialState.dragged, + 'selected': MaterialState.selected, + 'scrolledUnder': MaterialState.scrolledUnder, + 'disabled': MaterialState.disabled, + 'error': MaterialState.error, + }, +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart index 9cbb5747..caf05d8a 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$p.dart @@ -1,435 +1,437 @@ // This file is generated by Fair, do not edit manually! import 'package:flutter/material.dart'; - -import '../../fair_version.dart'; +import 'utils.dart'; var p = () => { - 'FlutterLogoDecoration.lerp': (props) => FlutterLogoDecoration.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'FlutterLogoStyle': { - 'values': FlutterLogoStyle.values, - 'markOnly': FlutterLogoStyle.markOnly, - 'horizontal': FlutterLogoStyle.horizontal, - 'stacked': FlutterLogoStyle.stacked, - }, - 'StrutStyle': { - 'disabled': StrutStyle.disabled, - }, - 'BorderSide': { - 'none': BorderSide.none, - }, - 'BorderSide.merge': (props) => BorderSide.merge( - props['pa'][0], - props['pa'][1], - ), - 'BorderSide.canMerge': (props) => BorderSide.canMerge( - props['pa'][0], - props['pa'][1], - ), - 'BorderSide.lerp': (props) => BorderSide.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BorderStyle': { - 'values': BorderStyle.values, - 'none': BorderStyle.none, - 'solid': BorderStyle.solid, - }, - 'Border.merge': (props) => Border.merge( - props['pa'][0], - props['pa'][1], - ), - 'Border.lerp': (props) => Border.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BorderDirectional.merge': (props) => BorderDirectional.merge( - props['pa'][0], - props['pa'][1], - ), - 'BorderDirectional.lerp': (props) => BorderDirectional.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BoxShape': { - 'values': BoxShape.values, - 'rectangle': BoxShape.rectangle, - 'circle': BoxShape.circle, - }, - 'ImageConfiguration': { - 'empty': ImageConfiguration.empty, - }, - 'ResizeImage.resizeIfNeeded': (props) => ResizeImage.resizeIfNeeded( - props['pa'][0], - props['pa'][1], - props['pa'][2], - ), - 'BoxShadow.lerp': (props) => BoxShadow.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BoxShadow.lerpList': (props) => BoxShadow.lerpList( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'NetworkImage': (props) => NetworkImage( - props['pa'][0], - scale: props['scale']?.toDouble(), - headers: props['headers'], - ), - 'BorderRadius.all': (props) => BorderRadius.all( - props['pa'][0], - ), - 'BorderRadius.circular': (props) => BorderRadius.circular( - props['pa'][0]?.toDouble(), - ), - 'BorderRadius.vertical': (props) => BorderRadius.vertical( - top: props['top'] ?? Radius.zero, - bottom: props['bottom'] ?? Radius.zero, - ), - 'BorderRadius.horizontal': (props) => BorderRadius.horizontal( - left: props['left'] ?? Radius.zero, - right: props['right'] ?? Radius.zero, - ), - 'BorderRadius.only': (props) => BorderRadius.only( - topLeft: props['topLeft'], - topRight: props['topRight'], - bottomLeft: props['bottomLeft'], - bottomRight: props['bottomRight'], - ), - 'BorderRadius.zero': BorderRadius.zero, - 'BorderRadius.lerp': (props) => BorderRadius.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BorderRadiusDirectional.all': (props) => BorderRadiusDirectional.all( - props['pa'][0], - ), - 'BorderRadiusDirectional.circular': (props) => - BorderRadiusDirectional.circular( - props['pa'][0]?.toDouble(), - ), - 'BorderRadiusDirectional.vertical': (props) => - BorderRadiusDirectional.vertical( - top: props['top'] ?? Radius.zero, - bottom: props['bottom'] ?? Radius.zero, - ), - 'BorderRadiusDirectional.horizontal': (props) => - BorderRadiusDirectional.horizontal( - start: props['start'] ?? Radius.zero, - end: props['end'] ?? Radius.zero, - ), - 'BorderRadiusDirectional.only': (props) => BorderRadiusDirectional.only( - topStart: props['topStart'], - topEnd: props['topEnd'], - bottomStart: props['bottomStart'], - bottomEnd: props['bottomEnd'], - ), - 'BorderRadiusDirectional.zero': BorderRadiusDirectional.zero, - 'BorderRadiusDirectional.lerp': (props) => BorderRadiusDirectional.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'HSVColor.lerp': (props) => HSVColor.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'HSLColor.lerp': (props) => HSLColor.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TextStyle': (props) => TextStyle( - inherit: props['inherit'], - color: props['color'], - backgroundColor: props['backgroundColor'], - fontSize: props['fontSize']?.toDouble(), - fontWeight: props['fontWeight'], - fontStyle: props['fontStyle'], - letterSpacing: props['letterSpacing']?.toDouble(), - wordSpacing: props['wordSpacing']?.toDouble(), - textBaseline: props['textBaseline'], - height: props['height']?.toDouble(), - leadingDistribution: props['leadingDistribution'], - locale: props['locale'], - foreground: props['foreground'], - background: props['background'], - shadows: as(props['shadows']), - fontFeatures: as(props['fontFeatures']), - decoration: props['decoration'], - decorationColor: props['decorationColor'], - decorationStyle: props['decorationStyle'], - decorationThickness: props['decorationThickness']?.toDouble(), - debugLabel: props['debugLabel'], - fontFamily: props['fontFamily'], - fontFamilyFallback: as(props['fontFamilyFallback']), - package: props['package'], - overflow: props['overflow'], - ), - 'TextStyle.lerp': (props) => TextStyle.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'LinearGradient.lerp': (props) => LinearGradient.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'RadialGradient.lerp': (props) => RadialGradient.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'SweepGradient.lerp': (props) => SweepGradient.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'Alignment': (props) => Alignment( - props['pa'][0]?.toDouble(), - props['pa'][1]?.toDouble(), - ), - 'Alignment.topLeft': Alignment.topLeft, - 'Alignment.topCenter': Alignment.topCenter, - 'Alignment.topRight': Alignment.topRight, - 'Alignment.centerLeft': Alignment.centerLeft, - 'Alignment.center': Alignment.center, - 'Alignment.centerRight': Alignment.centerRight, - 'Alignment.bottomLeft': Alignment.bottomLeft, - 'Alignment.bottomCenter': Alignment.bottomCenter, - 'Alignment.bottomRight': Alignment.bottomRight, - 'Alignment.lerp': (props) => Alignment.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'AlignmentDirectional': { - 'topStart': AlignmentDirectional.topStart, - 'topCenter': AlignmentDirectional.topCenter, - 'topEnd': AlignmentDirectional.topEnd, - 'centerStart': AlignmentDirectional.centerStart, - 'center': AlignmentDirectional.center, - 'centerEnd': AlignmentDirectional.centerEnd, - 'bottomStart': AlignmentDirectional.bottomStart, - 'bottomCenter': AlignmentDirectional.bottomCenter, - 'bottomEnd': AlignmentDirectional.bottomEnd, - }, - 'AlignmentDirectional.lerp': (props) => AlignmentDirectional.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'TextAlignVertical': { - 'top': TextAlignVertical.top, - 'center': TextAlignVertical.center, - 'bottom': TextAlignVertical.bottom, - }, - 'EdgeInsets.fromLTRB': (props) => EdgeInsets.fromLTRB( - props['pa'][0]?.toDouble(), - props['pa'][1]?.toDouble(), - props['pa'][2]?.toDouble(), - props['pa'][3]?.toDouble(), - ), - 'EdgeInsets.all': (props) => EdgeInsets.all( - props['pa'][0]?.toDouble(), - ), - 'EdgeInsets.only': (props) => EdgeInsets.only( - left: props['left']?.toDouble(), - top: props['top']?.toDouble(), - right: props['right']?.toDouble(), - bottom: props['bottom']?.toDouble(), - ), - 'EdgeInsets.symmetric': (props) => EdgeInsets.symmetric( - vertical: props['vertical']?.toDouble() ?? 0.0, - horizontal: props['horizontal']?.toDouble() ?? 0.0, - ), - 'EdgeInsets.fromWindowPadding': (props) => EdgeInsets.fromWindowPadding( - props['pa'][0], - props['pa'][1]?.toDouble(), - ), - 'EdgeInsets.zero': EdgeInsets.zero, - 'EdgeInsets.lerp': (props) => EdgeInsets.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'EdgeInsetsDirectional': { - 'zero': EdgeInsetsDirectional.zero, - }, - 'EdgeInsetsDirectional.lerp': (props) => EdgeInsetsDirectional.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'RenderComparison': { - 'values': RenderComparison.values, - 'identical': RenderComparison.identical, - 'metadata': RenderComparison.metadata, - 'paint': RenderComparison.paint, - 'layout': RenderComparison.layout, - }, - 'Axis': { - 'values': Axis.values, - 'horizontal': Axis.horizontal, - 'vertical': Axis.vertical, - }, - 'VerticalDirection': { - 'values': VerticalDirection.values, - 'up': VerticalDirection.up, - 'down': VerticalDirection.down, - }, - 'AxisDirection': { - 'values': AxisDirection.values, - 'up': AxisDirection.up, - 'right': AxisDirection.right, - 'down': AxisDirection.down, - 'left': AxisDirection.left, - }, - 'BoxDecoration': (props) => BoxDecoration( - color: props['color'], - image: props['image'], - border: props['border'], - borderRadius: props['borderRadius'], - boxShadow: as(props['boxShadow']), - gradient: props['gradient'], - backgroundBlendMode: props['backgroundBlendMode'], - shape: props['shape'], - ), - 'BoxDecoration.lerp': (props) => BoxDecoration.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'InlineSpanSemanticsInformation': { - 'placeholder': InlineSpanSemanticsInformation.placeholder, - }, - 'FractionalOffset': (props) => FractionalOffset( - props['pa'][0]?.toDouble(), - props['pa'][1]?.toDouble(), - ), - 'FractionalOffset.fromOffsetAndSize': (props) => - FractionalOffset.fromOffsetAndSize( - props['pa'][0], - props['pa'][1], - ), - 'FractionalOffset.fromOffsetAndRect': (props) => - FractionalOffset.fromOffsetAndRect( - props['pa'][0], - props['pa'][1], - ), - 'FractionalOffset.topLeft': FractionalOffset.topLeft, - 'FractionalOffset.topCenter': FractionalOffset.topCenter, - 'FractionalOffset.topRight': FractionalOffset.topRight, - 'FractionalOffset.centerLeft': FractionalOffset.centerLeft, - 'FractionalOffset.center': FractionalOffset.center, - 'FractionalOffset.centerRight': FractionalOffset.centerRight, - 'FractionalOffset.bottomLeft': FractionalOffset.bottomLeft, - 'FractionalOffset.bottomCenter': FractionalOffset.bottomCenter, - 'FractionalOffset.bottomRight': FractionalOffset.bottomRight, - 'FractionalOffset.lerp': (props) => FractionalOffset.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'BoxFit': { - 'values': BoxFit.values, - 'fill': BoxFit.fill, - 'contain': BoxFit.contain, - 'cover': BoxFit.cover, - 'fitWidth': BoxFit.fitWidth, - 'fitHeight': BoxFit.fitHeight, - 'none': BoxFit.none, - 'scaleDown': BoxFit.scaleDown, - }, - 'MatrixUtils.getAsTranslation': (props) => MatrixUtils.getAsTranslation( - props['pa'][0], - ), - 'MatrixUtils.getAsScale': (props) => MatrixUtils.getAsScale( - props['pa'][0], - ), - 'MatrixUtils.matrixEquals': (props) => MatrixUtils.matrixEquals( - props['pa'][0], - props['pa'][1], - ), - 'MatrixUtils.isIdentity': (props) => MatrixUtils.isIdentity( - props['pa'][0], - ), - 'MatrixUtils.transformPoint': (props) => MatrixUtils.transformPoint( - props['pa'][0], - props['pa'][1], - ), - 'MatrixUtils.transformRect': (props) => MatrixUtils.transformRect( - props['pa'][0], - props['pa'][1], - ), - 'MatrixUtils.inverseTransformRect': (props) => - MatrixUtils.inverseTransformRect( - props['pa'][0], - props['pa'][1], - ), - 'MatrixUtils.createCylindricalProjectionTransform': (props) => - MatrixUtils.createCylindricalProjectionTransform( - radius: props['radius']?.toDouble(), - angle: props['angle']?.toDouble(), - perspective: props['perspective']?.toDouble() ?? 0.001, - orientation: props['orientation'] ?? Axis.vertical, - ), - 'MatrixUtils.forceToPoint': (props) => MatrixUtils.forceToPoint( - props['pa'][0], - ), - 'PlaceholderDimensions': { - 'empty': PlaceholderDimensions.empty, - }, - 'TextOverflow': { - 'values': TextOverflow.values, - 'clip': TextOverflow.clip, - 'fade': TextOverflow.fade, - 'ellipsis': TextOverflow.ellipsis, - 'visible': TextOverflow.visible, - }, - 'TextWidthBasis': { - 'values': TextWidthBasis.values, - 'parent': TextWidthBasis.parent, - 'longestLine': TextWidthBasis.longestLine, - }, - 'ShapeDecoration.lerp': (props) => ShapeDecoration.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'DecorationImage': (props) => DecorationImage( - image: props['image'], - onError: props['onError'], - colorFilter: props['colorFilter'], - fit: props['fit'], - alignment: props['alignment'], - centerSlice: props['centerSlice'], - repeat: props['repeat'], - matchTextDirection: props['matchTextDirection'], - scale: props['scale']?.toDouble(), - opacity: props['opacity']?.toDouble(), - filterQuality: props['filterQuality'], - invertColors: props['invertColors'], - isAntiAlias: props['isAntiAlias'], - ), - 'ImageRepeat': { - 'values': ImageRepeat.values, - 'repeat': ImageRepeat.repeat, - 'repeatX': ImageRepeat.repeatX, - 'repeatY': ImageRepeat.repeatY, - 'noRepeat': ImageRepeat.noRepeat, - }, - }; + 'BoxShadow.lerp': (props) => BoxShadow.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BoxShadow.lerpList': (props) => BoxShadow.lerpList( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'PlaceholderDimensions': { + 'empty': PlaceholderDimensions.empty, + }, + 'TextOverflow': { + 'values': TextOverflow.values, + 'clip': TextOverflow.clip, + 'fade': TextOverflow.fade, + 'ellipsis': TextOverflow.ellipsis, + 'visible': TextOverflow.visible, + }, + 'TextWidthBasis': { + 'values': TextWidthBasis.values, + 'parent': TextWidthBasis.parent, + 'longestLine': TextWidthBasis.longestLine, + }, + 'LinearGradient': (props) => LinearGradient( + colors: as(props["colors"])!, + begin: props['begin'] ?? Alignment.centerLeft, + end: props['end'] ?? Alignment.centerRight, + stops: as(props['stops']), + tileMode: props['tileMode'] ?? TileMode.clamp, + transform: props['transform'], + ), + 'LinearGradient.lerp': (props) => LinearGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RadialGradient.lerp': (props) => RadialGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'SweepGradient.lerp': (props) => SweepGradient.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'StrutStyle': { + 'disabled': StrutStyle.disabled, + }, + 'DecorationImage': (props) => DecorationImage( + image: props['image'], + onError: props['onError'], + colorFilter: props['colorFilter'], + fit: props['fit'], + alignment: props['alignment'] ?? Alignment.center, + centerSlice: props['centerSlice'], + repeat: props['repeat'] ?? ImageRepeat.noRepeat, + matchTextDirection: props['matchTextDirection'] ?? false, + scale: props['scale']?.toDouble() ?? 1.0, + ), + 'DecorationImage#onError': (props) => ( + Object exception, + StackTrace stackTrace, + ) { + return (props['block']); + }, + 'ImageRepeat': { + 'values': ImageRepeat.values, + 'repeat': ImageRepeat.repeat, + 'repeatX': ImageRepeat.repeatX, + 'repeatY': ImageRepeat.repeatY, + 'noRepeat': ImageRepeat.noRepeat, + }, + 'EdgeInsets.fromLTRB': (props) => EdgeInsets.fromLTRB( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + props['pa'][2]?.toDouble(), + props['pa'][3]?.toDouble(), + ), + 'EdgeInsets.all': (props) => EdgeInsets.all( + props['pa'][0]?.toDouble(), + ), + 'EdgeInsets.only': (props) => EdgeInsets.only( + left: props['left']?.toDouble() ?? 0.0, + top: props['top']?.toDouble() ?? 0.0, + right: props['right']?.toDouble() ?? 0.0, + bottom: props['bottom']?.toDouble() ?? 0.0, + ), + 'EdgeInsets.symmetric': (props) => EdgeInsets.symmetric( + vertical: props['vertical']?.toDouble() ?? 0.0, + horizontal: props['horizontal']?.toDouble() ?? 0.0, + ), + 'EdgeInsets.fromWindowPadding': (props) => EdgeInsets.fromWindowPadding( + props['pa'][0], + props['pa'][1]?.toDouble(), + ), + 'EdgeInsets.zero': EdgeInsets.zero, + 'EdgeInsets.lerp': (props) => EdgeInsets.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'EdgeInsetsDirectional': { + 'zero': EdgeInsetsDirectional.zero, + }, + 'EdgeInsetsDirectional.lerp': (props) => EdgeInsetsDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ShapeDecoration.lerp': (props) => ShapeDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'InlineSpanSemanticsInformation': { + 'placeholder': InlineSpanSemanticsInformation.placeholder, + }, + 'MatrixUtils.getAsTranslation': (props) => MatrixUtils.getAsTranslation( + props['pa'][0], + ), + 'MatrixUtils.getAsScale': (props) => MatrixUtils.getAsScale( + props['pa'][0], + ), + 'MatrixUtils.matrixEquals': (props) => MatrixUtils.matrixEquals( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.isIdentity': (props) => MatrixUtils.isIdentity( + props['pa'][0], + ), + 'MatrixUtils.transformPoint': (props) => MatrixUtils.transformPoint( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.transformRect': (props) => MatrixUtils.transformRect( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.inverseTransformRect': (props) => MatrixUtils.inverseTransformRect( + props['pa'][0], + props['pa'][1], + ), + 'MatrixUtils.createCylindricalProjectionTransform': (props) => MatrixUtils.createCylindricalProjectionTransform( + radius: props['radius']?.toDouble(), + angle: props['angle']?.toDouble(), + perspective: props['perspective']?.toDouble() ?? 0.001, + orientation: props['orientation'] ?? Axis.vertical, + ), + 'MatrixUtils.forceToPoint': (props) => MatrixUtils.forceToPoint( + props['pa'][0], + ), + 'BoxFit': { + 'values': BoxFit.values, + 'fill': BoxFit.fill, + 'contain': BoxFit.contain, + 'cover': BoxFit.cover, + 'fitWidth': BoxFit.fitWidth, + 'fitHeight': BoxFit.fitHeight, + 'none': BoxFit.none, + 'scaleDown': BoxFit.scaleDown, + }, + 'FractionalOffset': (props) => FractionalOffset( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + ), + 'FractionalOffset.fromOffsetAndSize': (props) => FractionalOffset.fromOffsetAndSize( + props['pa'][0], + props['pa'][1], + ), + 'FractionalOffset.fromOffsetAndRect': (props) => FractionalOffset.fromOffsetAndRect( + props['pa'][0], + props['pa'][1], + ), + 'FractionalOffset.topLeft': FractionalOffset.topLeft, + 'FractionalOffset.topCenter': FractionalOffset.topCenter, + 'FractionalOffset.topRight': FractionalOffset.topRight, + 'FractionalOffset.centerLeft': FractionalOffset.centerLeft, + 'FractionalOffset.center': FractionalOffset.center, + 'FractionalOffset.centerRight': FractionalOffset.centerRight, + 'FractionalOffset.bottomLeft': FractionalOffset.bottomLeft, + 'FractionalOffset.bottomCenter': FractionalOffset.bottomCenter, + 'FractionalOffset.bottomRight': FractionalOffset.bottomRight, + 'FractionalOffset.lerp': (props) => FractionalOffset.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RenderComparison': { + 'values': RenderComparison.values, + 'identical': RenderComparison.identical, + 'metadata': RenderComparison.metadata, + 'paint': RenderComparison.paint, + 'layout': RenderComparison.layout, + }, + 'Axis': { + 'values': Axis.values, + 'horizontal': Axis.horizontal, + 'vertical': Axis.vertical, + }, + 'VerticalDirection': { + 'values': VerticalDirection.values, + 'up': VerticalDirection.up, + 'down': VerticalDirection.down, + }, + 'AxisDirection': { + 'values': AxisDirection.values, + 'up': AxisDirection.up, + 'right': AxisDirection.right, + 'down': AxisDirection.down, + 'left': AxisDirection.left, + }, + 'BoxDecoration': (props) => BoxDecoration( + color: props['color'], + image: props['image'], + border: props['border'], + borderRadius: props['borderRadius'], + boxShadow: as(props['boxShadow']), + gradient: props['gradient'], + backgroundBlendMode: props['backgroundBlendMode'], + shape: props['shape'] ?? BoxShape.rectangle, + ), + 'BoxDecoration.lerp': (props) => BoxDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderRadius.all': (props) => BorderRadius.all( + props['pa'][0], + ), + 'BorderRadius.circular': (props) => BorderRadius.circular( + props['pa'][0]?.toDouble(), + ), + 'BorderRadius.vertical': (props) => BorderRadius.vertical( + top: props['top'] ?? Radius.zero, + bottom: props['bottom'] ?? Radius.zero, + ), + 'BorderRadius.horizontal': (props) => BorderRadius.horizontal( + left: props['left'] ?? Radius.zero, + right: props['right'] ?? Radius.zero, + ), + 'BorderRadius.only': (props) => BorderRadius.only( + topLeft: props['topLeft'] ?? Radius.zero, + topRight: props['topRight'] ?? Radius.zero, + bottomLeft: props['bottomLeft'] ?? Radius.zero, + bottomRight: props['bottomRight'] ?? Radius.zero, + ), + 'BorderRadius.zero': BorderRadius.zero, + 'BorderRadius.lerp': (props) => BorderRadius.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderRadiusDirectional.all': (props) => BorderRadiusDirectional.all( + props['pa'][0], + ), + 'BorderRadiusDirectional.circular': (props) => BorderRadiusDirectional.circular( + props['pa'][0]?.toDouble(), + ), + 'BorderRadiusDirectional.vertical': (props) => BorderRadiusDirectional.vertical( + top: props['top'] ?? Radius.zero, + bottom: props['bottom'] ?? Radius.zero, + ), + 'BorderRadiusDirectional.horizontal': (props) => BorderRadiusDirectional.horizontal( + start: props['start'] ?? Radius.zero, + end: props['end'] ?? Radius.zero, + ), + 'BorderRadiusDirectional.only': (props) => BorderRadiusDirectional.only( + topStart: props['topStart'] ?? Radius.zero, + topEnd: props['topEnd'] ?? Radius.zero, + bottomStart: props['bottomStart'] ?? Radius.zero, + bottomEnd: props['bottomEnd'] ?? Radius.zero, + ), + 'BorderRadiusDirectional.zero': BorderRadiusDirectional.zero, + 'BorderRadiusDirectional.lerp': (props) => BorderRadiusDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'NetworkImage': (props) => NetworkImage( + props['pa'][0], + scale: props['scale']?.toDouble() ?? 1.0, + headers: props['headers'], + ), + 'TextStyle': (props) => TextStyle( + inherit: props['inherit'] ?? true, + color: props['color'], + backgroundColor: props['backgroundColor'], + fontSize: props['fontSize']?.toDouble(), + fontWeight: props['fontWeight'], + fontStyle: props['fontStyle'], + letterSpacing: props['letterSpacing']?.toDouble(), + wordSpacing: props['wordSpacing']?.toDouble(), + textBaseline: props['textBaseline'], + height: props['height']?.toDouble(), + leadingDistribution: props['leadingDistribution'], + locale: props['locale'], + foreground: props['foreground'], + background: props['background'], + shadows: as(props['shadows']), + fontFeatures: as(props['fontFeatures']), + decoration: props['decoration'], + decorationColor: props['decorationColor'], + decorationStyle: props['decorationStyle'], + decorationThickness: props['decorationThickness']?.toDouble(), + debugLabel: props['debugLabel'], + fontFamily: props['fontFamily'], + fontFamilyFallback: as(props['fontFamilyFallback']), + package: props['package'], + overflow: props['overflow'], + ), + 'TextStyle.lerp': (props) => TextStyle.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'HSVColor.lerp': (props) => HSVColor.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'HSLColor.lerp': (props) => HSLColor.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'ImageConfiguration': { + 'empty': ImageConfiguration.empty, + }, + 'ResizeImage.resizeIfNeeded': (props) => ResizeImage.resizeIfNeeded( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'Border.merge': (props) => Border.merge( + props['pa'][0], + props['pa'][1], + ), + 'Border.lerp': (props) => Border.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderDirectional.merge': (props) => BorderDirectional.merge( + props['pa'][0], + props['pa'][1], + ), + 'BorderDirectional.lerp': (props) => BorderDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BoxShape': { + 'values': BoxShape.values, + 'rectangle': BoxShape.rectangle, + 'circle': BoxShape.circle, + }, + 'BorderSide': { + 'none': BorderSide.none, + }, + 'BorderSide.merge': (props) => BorderSide.merge( + props['pa'][0], + props['pa'][1], + ), + 'BorderSide.canMerge': (props) => BorderSide.canMerge( + props['pa'][0], + props['pa'][1], + ), + 'BorderSide.lerp': (props) => BorderSide.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'BorderStyle': { + 'values': BorderStyle.values, + 'none': BorderStyle.none, + 'solid': BorderStyle.solid, + }, + 'FlutterLogoDecoration.lerp': (props) => FlutterLogoDecoration.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'FlutterLogoStyle': { + 'values': FlutterLogoStyle.values, + 'markOnly': FlutterLogoStyle.markOnly, + 'horizontal': FlutterLogoStyle.horizontal, + 'stacked': FlutterLogoStyle.stacked, + }, + 'Alignment': (props) => Alignment( + props['pa'][0]?.toDouble(), + props['pa'][1]?.toDouble(), + ), + 'Alignment.topLeft': Alignment.topLeft, + 'Alignment.topCenter': Alignment.topCenter, + 'Alignment.topRight': Alignment.topRight, + 'Alignment.centerLeft': Alignment.centerLeft, + 'Alignment.center': Alignment.center, + 'Alignment.centerRight': Alignment.centerRight, + 'Alignment.bottomLeft': Alignment.bottomLeft, + 'Alignment.bottomCenter': Alignment.bottomCenter, + 'Alignment.bottomRight': Alignment.bottomRight, + 'Alignment.lerp': (props) => Alignment.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'AlignmentDirectional': { + 'topStart': AlignmentDirectional.topStart, + 'topCenter': AlignmentDirectional.topCenter, + 'topEnd': AlignmentDirectional.topEnd, + 'centerStart': AlignmentDirectional.centerStart, + 'center': AlignmentDirectional.center, + 'centerEnd': AlignmentDirectional.centerEnd, + 'bottomStart': AlignmentDirectional.bottomStart, + 'bottomCenter': AlignmentDirectional.bottomCenter, + 'bottomEnd': AlignmentDirectional.bottomEnd, + }, + 'AlignmentDirectional.lerp': (props) => AlignmentDirectional.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'TextAlignVertical': { + 'top': TextAlignVertical.top, + 'center': TextAlignVertical.center, + 'bottom': TextAlignVertical.bottom, + }, +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart index 3f9f4622..6a3c8b07 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$r.dart @@ -2,154 +2,152 @@ import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; -import 'package:flutter/rendering.dart'; -import 'package:flutter/rendering.dart'; var p = () => { - 'WrapAlignment': { - 'values': WrapAlignment.values, - 'start': WrapAlignment.start, - 'end': WrapAlignment.end, - 'center': WrapAlignment.center, - 'spaceBetween': WrapAlignment.spaceBetween, - 'spaceAround': WrapAlignment.spaceAround, - 'spaceEvenly': WrapAlignment.spaceEvenly, - }, - 'WrapCrossAlignment': { - 'values': WrapCrossAlignment.values, - 'start': WrapCrossAlignment.start, - 'end': WrapCrossAlignment.end, - 'center': WrapCrossAlignment.center, - }, - 'BoxConstraints.lerp': (props) => BoxConstraints.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'PlatformViewHitTestBehavior': { - 'values': PlatformViewHitTestBehavior.values, - 'opaque': PlatformViewHitTestBehavior.opaque, - 'translucent': PlatformViewHitTestBehavior.translucent, - 'transparent': PlatformViewHitTestBehavior.transparent, - }, - 'RelativeRect': { - 'fill': RelativeRect.fill, - }, - 'RelativeRect.lerp': (props) => RelativeRect.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - 'RenderStack.getIntrinsicDimension': (props) => - RenderStack.getIntrinsicDimension( - props['pa'][0], - props['pa'][1], - ), - 'RenderStack.layoutPositionedChild': (props) => - RenderStack.layoutPositionedChild( - props['pa'][0], - props['pa'][1], - props['pa'][2], - props['pa'][3], - ), - 'StackFit': { - 'values': StackFit.values, - 'loose': StackFit.loose, - 'expand': StackFit.expand, - 'passthrough': StackFit.passthrough, - }, - 'SliverGeometry': { - 'zero': SliverGeometry.zero, - }, - 'GrowthDirection': { - 'values': GrowthDirection.values, - 'forward': GrowthDirection.forward, - 'reverse': GrowthDirection.reverse, - }, - 'RenderViewport': { - 'useTwoPaneSemantics': RenderViewport.useTwoPaneSemantics, - 'excludeFromScrolling': RenderViewport.excludeFromScrolling, - }, - 'CacheExtentStyle': { - 'values': CacheExtentStyle.values, - 'pixel': CacheExtentStyle.pixel, - 'viewport': CacheExtentStyle.viewport, - }, - 'ChildLayoutHelper.dryLayoutChild': (props) => - ChildLayoutHelper.dryLayoutChild( - props['pa'][0], - props['pa'][1], - ), - 'ChildLayoutHelper.layoutChild': (props) => ChildLayoutHelper.layoutChild( - props['pa'][0], - props['pa'][1], - ), - 'TableCellVerticalAlignment': { - 'values': TableCellVerticalAlignment.values, - 'top': TableCellVerticalAlignment.top, - 'middle': TableCellVerticalAlignment.middle, - 'bottom': TableCellVerticalAlignment.bottom, - 'baseline': TableCellVerticalAlignment.baseline, - 'fill': TableCellVerticalAlignment.fill, - }, - 'FlexFit': { - 'values': FlexFit.values, - 'tight': FlexFit.tight, - 'loose': FlexFit.loose, - }, - 'MainAxisSize': { - 'values': MainAxisSize.values, - 'min': MainAxisSize.min, - 'max': MainAxisSize.max, - }, - 'MainAxisAlignment': { - 'values': MainAxisAlignment.values, - 'start': MainAxisAlignment.start, - 'end': MainAxisAlignment.end, - 'center': MainAxisAlignment.center, - 'spaceBetween': MainAxisAlignment.spaceBetween, - 'spaceAround': MainAxisAlignment.spaceAround, - 'spaceEvenly': MainAxisAlignment.spaceEvenly, - }, - 'CrossAxisAlignment': { - 'values': CrossAxisAlignment.values, - 'start': CrossAxisAlignment.start, - 'end': CrossAxisAlignment.end, - 'center': CrossAxisAlignment.center, - 'stretch': CrossAxisAlignment.stretch, - 'baseline': CrossAxisAlignment.baseline, - }, - 'PaintingContext.repaintCompositedChild': (props) => - PaintingContext.repaintCompositedChild( - props['pa'][0], - debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, - ), - 'PaintingContext.debugInstrumentRepaintCompositedChild': (props) => - PaintingContext.debugInstrumentRepaintCompositedChild( - props['pa'][0], - debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, - customContext: props['customContext'], - ), - 'ScrollDirection': { - 'values': ScrollDirection.values, - 'idle': ScrollDirection.idle, - 'forward': ScrollDirection.forward, - 'reverse': ScrollDirection.reverse, - }, - 'HitTestBehavior': { - 'values': HitTestBehavior.values, - 'deferToChild': HitTestBehavior.deferToChild, - 'opaque': HitTestBehavior.opaque, - 'translucent': HitTestBehavior.translucent, - }, - 'DecorationPosition': { - 'values': DecorationPosition.values, - 'background': DecorationPosition.background, - 'foreground': DecorationPosition.foreground, - }, - 'TableBorder.lerp': (props) => TableBorder.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), - }; + 'BoxConstraints.lerp': (props) => BoxConstraints.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'WrapAlignment': { + 'values': WrapAlignment.values, + 'start': WrapAlignment.start, + 'end': WrapAlignment.end, + 'center': WrapAlignment.center, + 'spaceBetween': WrapAlignment.spaceBetween, + 'spaceAround': WrapAlignment.spaceAround, + 'spaceEvenly': WrapAlignment.spaceEvenly, + }, + 'WrapCrossAlignment': { + 'values': WrapCrossAlignment.values, + 'start': WrapCrossAlignment.start, + 'end': WrapCrossAlignment.end, + 'center': WrapCrossAlignment.center, + }, + 'RelativeRect': { + 'fill': RelativeRect.fill, + }, + 'RelativeRect.lerp': (props) => RelativeRect.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'RenderStack.getIntrinsicDimension': (props) => + RenderStack.getIntrinsicDimension( + props['pa'][0], + props['pa'][1], + ), + 'RenderStack.layoutPositionedChild': (props) => + RenderStack.layoutPositionedChild( + props['pa'][0], + props['pa'][1], + props['pa'][2], + props['pa'][3], + ), + 'StackFit': { + 'values': StackFit.values, + 'loose': StackFit.loose, + 'expand': StackFit.expand, + 'passthrough': StackFit.passthrough, + }, + 'SliverGeometry': { + 'zero': SliverGeometry.zero, + }, + 'GrowthDirection': { + 'values': GrowthDirection.values, + 'forward': GrowthDirection.forward, + 'reverse': GrowthDirection.reverse, + }, + 'RenderViewport': { + 'useTwoPaneSemantics': RenderViewport.useTwoPaneSemantics, + 'excludeFromScrolling': RenderViewport.excludeFromScrolling, + }, + 'CacheExtentStyle': { + 'values': CacheExtentStyle.values, + 'pixel': CacheExtentStyle.pixel, + 'viewport': CacheExtentStyle.viewport, + }, + 'ChildLayoutHelper.dryLayoutChild': (props) => + ChildLayoutHelper.dryLayoutChild( + props['pa'][0], + props['pa'][1], + ), + 'ChildLayoutHelper.layoutChild': (props) => ChildLayoutHelper.layoutChild( + props['pa'][0], + props['pa'][1], + ), + 'TableCellVerticalAlignment': { + 'values': TableCellVerticalAlignment.values, + 'top': TableCellVerticalAlignment.top, + 'middle': TableCellVerticalAlignment.middle, + 'bottom': TableCellVerticalAlignment.bottom, + 'baseline': TableCellVerticalAlignment.baseline, + 'fill': TableCellVerticalAlignment.fill, + }, + 'PlatformViewHitTestBehavior': { + 'values': PlatformViewHitTestBehavior.values, + 'opaque': PlatformViewHitTestBehavior.opaque, + 'translucent': PlatformViewHitTestBehavior.translucent, + 'transparent': PlatformViewHitTestBehavior.transparent, + }, + 'PaintingContext.repaintCompositedChild': (props) => + PaintingContext.repaintCompositedChild( + props['pa'][0], + debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, + ), + 'PaintingContext.debugInstrumentRepaintCompositedChild': (props) => + PaintingContext.debugInstrumentRepaintCompositedChild( + props['pa'][0], + debugAlsoPaintedParent: props['debugAlsoPaintedParent'] ?? false, + customContext: props['customContext'], + ), + 'ScrollDirection': { + 'values': ScrollDirection.values, + 'idle': ScrollDirection.idle, + 'forward': ScrollDirection.forward, + 'reverse': ScrollDirection.reverse, + }, + 'HitTestBehavior': { + 'values': HitTestBehavior.values, + 'deferToChild': HitTestBehavior.deferToChild, + 'opaque': HitTestBehavior.opaque, + 'translucent': HitTestBehavior.translucent, + }, + 'DecorationPosition': { + 'values': DecorationPosition.values, + 'background': DecorationPosition.background, + 'foreground': DecorationPosition.foreground, + }, + 'TableBorder.lerp': (props) => TableBorder.lerp( + props['pa'][0], + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'FlexFit': { + 'values': FlexFit.values, + 'tight': FlexFit.tight, + 'loose': FlexFit.loose, + }, + 'MainAxisSize': { + 'values': MainAxisSize.values, + 'min': MainAxisSize.min, + 'max': MainAxisSize.max, + }, + 'MainAxisAlignment': { + 'values': MainAxisAlignment.values, + 'start': MainAxisAlignment.start, + 'end': MainAxisAlignment.end, + 'center': MainAxisAlignment.center, + 'spaceBetween': MainAxisAlignment.spaceBetween, + 'spaceAround': MainAxisAlignment.spaceAround, + 'spaceEvenly': MainAxisAlignment.spaceEvenly, + }, + 'CrossAxisAlignment': { + 'values': CrossAxisAlignment.values, + 'start': CrossAxisAlignment.start, + 'end': CrossAxisAlignment.end, + 'center': CrossAxisAlignment.center, + 'stretch': CrossAxisAlignment.stretch, + 'baseline': CrossAxisAlignment.baseline, + }, +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart index c7329049..1603a98d 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/$$w.dart @@ -1,18 +1,18 @@ // This file is generated by Fair, do not edit manually! import 'package:flutter/material.dart'; -import 'package:flutter/rendering.dart'; import 'package:flutter/gestures.dart'; +import 'package:flutter/rendering.dart'; import 'dart:ui' as ui show BoxHeightStyle, BoxWidthStyle; import 'utils.dart'; const Color _kColor = Color(0xA0B71C1C); const double _kHeight = 12.0; // height of banner const TextStyle _kTextStyle = TextStyle( - color: Color(0xFFFFFFFF), - fontSize: _kHeight * 0.85, - fontWeight: FontWeight.w900, - height: 1.0, + color: Color(0xFFFFFFFF), + fontSize: _kHeight * 0.85, + fontWeight: FontWeight.w900, + height: 1.0, ); const double kMiddleSpacing = 16.0; @@ -21,61 +21,99 @@ var p = () => { child: props['child'], container: props['container'], debugShortDescription: props['debugShortDescription'], - ), + ), 'WidgetsFlutterBinding.ensureInitialized': (props) => WidgetsFlutterBinding.ensureInitialized(), - 'AnimatedSize': (props) => AnimatedSize( + 'AnimatedCrossFade': (props) => AnimatedCrossFade( key: props['key'], - child: props['child'], - alignment: props['alignment'], - curve: props['curve'], + firstChild: props['firstChild'], + secondChild: props['secondChild'], + firstCurve: props['firstCurve'] ?? Curves.linear, + secondCurve: props['secondCurve'] ?? Curves.linear, + sizeCurve: props['sizeCurve'] ?? Curves.linear, + alignment: props['alignment'] ?? Alignment.topCenter, + crossFadeState: props['crossFadeState'], duration: props['duration'], reverseDuration: props['reverseDuration'], - vsync: props['vsync'], - clipBehavior: props['clipBehavior'], + ), + 'AnimatedCrossFade#layoutBuilder': (props) => ( + Widget topChild, + dynamic topChildKey, + Widget bottomChild, + dynamic bottomChildKey, + ) { + return (props['block']) as Widget; + }, + 'AnimatedCrossFade.defaultLayoutBuilder': (props) => + AnimatedCrossFade.defaultLayoutBuilder( + props['pa'][0], + props['pa'][1], + props['pa'][2], + props['pa'][3], ), + 'CrossFadeState': { + 'values': CrossFadeState.values, + 'showFirst': CrossFadeState.showFirst, + 'showSecond': CrossFadeState.showSecond, + }, + 'SingleChildScrollView': (props) => SingleChildScrollView( + key: props['key'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + padding: props['padding'], + primary: props['primary'], + physics: props['physics'], + controller: props['controller'], + child: props['child'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + restorationId: props['restorationId'], + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + ), 'SliverFillViewport': (props) => SliverFillViewport( key: props['key'], delegate: props['delegate'], - viewportFraction: props['viewportFraction']?.toDouble(), - padEnds: props['padEnds'], - ), + viewportFraction: props['viewportFraction']?.toDouble() ?? 1.0, + padEnds: props['padEnds'] ?? true, + ), 'SliverFillRemaining': (props) => SliverFillRemaining( key: props['key'], child: props['child'], - hasScrollBody: props['hasScrollBody'], - fillOverscroll: props['fillOverscroll'], - ), + hasScrollBody: props['hasScrollBody'] ?? true, + fillOverscroll: props['fillOverscroll'] ?? false, + ), 'DefaultWidgetsLocalizations': { - 'delegate': DefaultWidgetsLocalizations.delegate, + 'delegate': DefaultWidgetsLocalizations.delegate, }, 'DefaultWidgetsLocalizations.load': (props) => DefaultWidgetsLocalizations.load( - props['pa'][0], + props['pa'][0], ), 'Localizations': (props) => Localizations( key: props['key'], locale: props['locale'], delegates: as(props['delegates'])!, child: props['child'], - ), + ), 'Localizations.override': (props) => Localizations.override( key: props['key'], context: props['context'], locale: props['locale'], delegates: as(props['delegates']), child: props['child'], - ), + ), 'Localizations.localeOf': (props) => Localizations.localeOf( props['pa'][0], - ), + ), 'Localizations.maybeLocaleOf': (props) => Localizations.maybeLocaleOf( props['pa'][0], - ), + ), 'Localizations.of': (props) => Localizations.of( props['pa'][0], props['pa'][1], - ), + ), 'CustomScrollView': (props) => CustomScrollView( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -91,12 +129,12 @@ var p = () => { slivers: as(props['slivers']) ?? const [], semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'ListView': (props) => ListView( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -115,12 +153,12 @@ var p = () => { children: as(props['children']) ?? const [], semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'ListView.builder': (props) => ListView.builder( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -140,12 +178,12 @@ var p = () => { cacheExtent: props['cacheExtent']?.toDouble(), semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'ListView.separated': (props) => ListView.separated( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -163,12 +201,12 @@ var p = () => { addSemanticIndexes: props['addSemanticIndexes'] ?? true, cacheExtent: props['cacheExtent']?.toDouble(), dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'ListView.custom': (props) => ListView.custom( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -184,12 +222,30 @@ var p = () => { cacheExtent: props['cacheExtent']?.toDouble(), semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), + 'ListView.builder#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, + 'ListView.separated#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, + 'ListView.separated#separatorBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, 'GridView': (props) => GridView( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -207,12 +263,12 @@ var p = () => { children: as(props['children']) ?? const [], semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], - ), + ), 'GridView.builder': (props) => GridView.builder( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -231,12 +287,12 @@ var p = () => { cacheExtent: props['cacheExtent']?.toDouble(), semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'GridView.custom': (props) => GridView.custom( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -251,12 +307,12 @@ var p = () => { cacheExtent: props['cacheExtent']?.toDouble(), semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'GridView.count': (props) => GridView.count( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -277,12 +333,12 @@ var p = () => { children: as(props['children']) ?? const [], semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), 'GridView.extent': (props) => GridView.extent( key: props['key'], scrollDirection: props['scrollDirection'] ?? Axis.vertical, @@ -303,71 +359,108 @@ var p = () => { children: as(props['children']) ?? const [], semanticChildCount: props['semanticChildCount'], dragStartBehavior: - props['dragStartBehavior'] ?? DragStartBehavior.start, + props['dragStartBehavior'] ?? DragStartBehavior.start, keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? ScrollViewKeyboardDismissBehavior.manual, restorationId: props['restorationId'], clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), + ), + 'GridView.builder#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, 'ScrollViewKeyboardDismissBehavior': { - 'values': ScrollViewKeyboardDismissBehavior.values, - 'manual': ScrollViewKeyboardDismissBehavior.manual, - 'onDrag': ScrollViewKeyboardDismissBehavior.onDrag, + 'values': ScrollViewKeyboardDismissBehavior.values, + 'manual': ScrollViewKeyboardDismissBehavior.manual, + 'onDrag': ScrollViewKeyboardDismissBehavior.onDrag, }, 'Spacer': (props) => Spacer( key: props['key'], - flex: props['flex'], - ), + flex: props['flex'] ?? 1, + ), 'RawKeyboardListener': (props) => RawKeyboardListener( key: props['key'], focusNode: props['focusNode'], - autofocus: props['autofocus'], - includeSemantics: props['includeSemantics'], + autofocus: props['autofocus'] ?? false, + includeSemantics: props['includeSemantics'] ?? true, onKey: props['onKey'], child: props['child'], - ), + ), 'BouncingScrollSimulation': { - 'maxSpringTransferVelocity': + 'maxSpringTransferVelocity': BouncingScrollSimulation.maxSpringTransferVelocity, }, 'Overlay': (props) => Overlay( key: props['key'], initialEntries: as(props['initialEntries']) ?? const [], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), 'Overlay.of': (props) => Overlay.of( props['pa'][0], rootOverlay: props['rootOverlay'] ?? false, debugRequiredFor: props['debugRequiredFor'], - ), + ), 'RawAutocomplete': (props) => RawAutocomplete( key: props['key'], optionsViewBuilder: props['optionsViewBuilder'], optionsBuilder: props['optionsBuilder'], - displayStringForOption: props['displayStringForOption'], + displayStringForOption: + props['displayStringForOption'], // ?? defaultStringForOption, fieldViewBuilder: props['fieldViewBuilder'], focusNode: props['focusNode'], onSelected: props['onSelected'], textEditingController: props['textEditingController'], initialValue: props['initialValue'], - ), + ), + 'RawAutocomplete#optionsViewBuilder': (props) => ( + BuildContext context, + AutocompleteOnSelected onSelected, + Iterable options, + ) { + return (props['block']) as Widget; + }, + 'RawAutocomplete#optionsBuilder': (props) => ( + dynamic textEditingValue, + ) { + return (props['block']) as Iterable; + }, + 'RawAutocomplete#displayStringForOption': (props) => ( + T option, + ) { + return (props['block']) as String; + }, + 'RawAutocomplete#fieldViewBuilder': (props) => ( + BuildContext context, + TextEditingController textEditingController, + FocusNode focusNode, + dynamic onFieldSubmitted, + ) { + return (props['block']) as Widget; + }, + 'RawAutocomplete#onSelected': (props) => ( + T option, + ) { + return (props['block']); + }, 'RawAutocomplete.onFieldSubmitted': (props) => RawAutocomplete.onFieldSubmitted( - props['pa'][0], + props['pa'][0], ), 'RawAutocomplete.defaultStringForOption': (props) => RawAutocomplete.defaultStringForOption( - props['pa'][0], + props['pa'][0], ), 'AutocompleteHighlightedOption': (props) => AutocompleteHighlightedOption( key: props['key'], highlightIndexNotifier: props['highlightIndexNotifier'], child: props['child'], - ), + ), 'AutocompleteHighlightedOption.of': (props) => AutocompleteHighlightedOption.of( - props['pa'][0], + props['pa'][0], ), 'WidgetsApp': (props) => WidgetsApp( key: props['key'], @@ -376,14 +469,14 @@ var p = () => { onGenerateInitialRoutes: props['onGenerateInitialRoutes'], onUnknownRoute: props['onUnknownRoute'], navigatorObservers: - as(props['navigatorObservers']) ?? - const [], + as(props['navigatorObservers']) ?? + const [], initialRoute: props['initialRoute'], pageRouteBuilder: props['pageRouteBuilder'], home: props['home'], - routes: props['routes'], + routes: props['routes'] ?? const {}, builder: props['builder'], - title: props['title'], + title: props['title'] ?? '', onGenerateTitle: props['onGenerateTitle'], textStyle: props['textStyle'], color: props['color'], @@ -391,20 +484,24 @@ var p = () => { localizationsDelegates: props['localizationsDelegates'], localeListResolutionCallback: props['localeListResolutionCallback'], localeResolutionCallback: props['localeResolutionCallback'], - supportedLocales: props['supportedLocales'], - showPerformanceOverlay: props['showPerformanceOverlay'], + supportedLocales: + props['supportedLocales'] ?? const [Locale('en', 'US')], + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, checkerboardRasterCacheImages: - props['checkerboardRasterCacheImages'], - checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'], - showSemanticsDebugger: props['showSemanticsDebugger'], - debugShowWidgetInspector: props['debugShowWidgetInspector'], - debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'], + props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: + props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowWidgetInspector: + props['debugShowWidgetInspector'] ?? false, + debugShowCheckedModeBanner: + props['debugShowCheckedModeBanner'] ?? true, inspectorSelectButtonBuilder: props['inspectorSelectButtonBuilder'], shortcuts: props['shortcuts'], actions: props['actions'], restorationScopeId: props['restorationScopeId'], - useInheritedMediaQuery: props['useInheritedMediaQuery'], - ), + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), 'WidgetsApp.router': (props) => WidgetsApp.router( key: props['key'], routeInformationProvider: props['routeInformationProvider'], @@ -412,7 +509,7 @@ var p = () => { routerDelegate: props['routerDelegate'], backButtonDispatcher: props['backButtonDispatcher'], builder: props['builder'], - title: props['title'], + title: props['title'] ?? '', onGenerateTitle: props['onGenerateTitle'], textStyle: props['textStyle'], color: props['color'], @@ -420,115 +517,221 @@ var p = () => { localizationsDelegates: props['localizationsDelegates'], localeListResolutionCallback: props['localeListResolutionCallback'], localeResolutionCallback: props['localeResolutionCallback'], - supportedLocales: props['supportedLocales'], - showPerformanceOverlay: props['showPerformanceOverlay'], + supportedLocales: + props['supportedLocales'] ?? const [Locale('en', 'US')], + showPerformanceOverlay: props['showPerformanceOverlay'] ?? false, checkerboardRasterCacheImages: - props['checkerboardRasterCacheImages'], - checkerboardOffscreenLayers: props['checkerboardOffscreenLayers'], - showSemanticsDebugger: props['showSemanticsDebugger'], - debugShowWidgetInspector: props['debugShowWidgetInspector'], - debugShowCheckedModeBanner: props['debugShowCheckedModeBanner'], + props['checkerboardRasterCacheImages'] ?? false, + checkerboardOffscreenLayers: + props['checkerboardOffscreenLayers'] ?? false, + showSemanticsDebugger: props['showSemanticsDebugger'] ?? false, + debugShowWidgetInspector: + props['debugShowWidgetInspector'] ?? false, + debugShowCheckedModeBanner: + props['debugShowCheckedModeBanner'] ?? true, inspectorSelectButtonBuilder: props['inspectorSelectButtonBuilder'], shortcuts: props['shortcuts'], actions: props['actions'], restorationScopeId: props['restorationScopeId'], - useInheritedMediaQuery: props['useInheritedMediaQuery'], - ), + useInheritedMediaQuery: props['useInheritedMediaQuery'] ?? false, + ), + 'WidgetsApp#onGenerateRoute': (props) => ( + RouteSettings settings, + ) { + return (props['block']) as Route; + }, + 'WidgetsApp#onGenerateInitialRoutes': (props) => ( + String initialRoute, + ) { + return (props['block']) as List; + }, + 'WidgetsApp#onUnknownRoute': (props) => ( + RouteSettings settings, + ) { + return (props['block']) as Route; + }, + 'WidgetsApp#pageRouteBuilder': (props) => ( + RouteSettings settings, + WidgetBuilder builder, + ) { + return (props['block']) as PageRoute; + }, + 'WidgetsApp#builder': (props) => ( + BuildContext context, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'WidgetsApp#onGenerateTitle': (props) => ( + BuildContext context, + ) { + return (props['block']) as String; + }, + 'WidgetsApp#localeListResolutionCallback': (props) => ( + List locales, + Iterable supportedLocales, + ) { + return (props['block']) as dynamic; + }, + 'WidgetsApp#localeResolutionCallback': (props) => ( + dynamic locale, + Iterable supportedLocales, + ) { + return (props['block']) as dynamic; + }, + 'WidgetsApp#inspectorSelectButtonBuilder': (props) => ( + BuildContext context, + dynamic onPressed, + ) { + return (props['block']) as Widget; + }, + 'WidgetsApp.router#builder': (props) => ( + BuildContext context, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'WidgetsApp.router#onGenerateTitle': (props) => ( + BuildContext context, + ) { + return (props['block']) as String; + }, + 'WidgetsApp.router#localeListResolutionCallback': (props) => ( + List locales, + Iterable supportedLocales, + ) { + return (props['block']) as dynamic; + }, + 'WidgetsApp.router#localeResolutionCallback': (props) => ( + dynamic locale, + Iterable supportedLocales, + ) { + return (props['block']) as dynamic; + }, + 'WidgetsApp.router#inspectorSelectButtonBuilder': (props) => ( + BuildContext context, + dynamic onPressed, + ) { + return (props['block']) as Widget; + }, 'AndroidView': (props) => AndroidView( key: props['key'], viewType: props['viewType'], onPlatformViewCreated: props['onPlatformViewCreated'], - hitTestBehavior: props['hitTestBehavior'], + hitTestBehavior: + props['hitTestBehavior'] ?? PlatformViewHitTestBehavior.opaque, layoutDirection: props['layoutDirection'], gestureRecognizers: props['gestureRecognizers'], creationParams: props['creationParams'], creationParamsCodec: props['creationParamsCodec'], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), 'UiKitView': (props) => UiKitView( key: props['key'], viewType: props['viewType'], onPlatformViewCreated: props['onPlatformViewCreated'], - hitTestBehavior: props['hitTestBehavior'], + hitTestBehavior: + props['hitTestBehavior'] ?? PlatformViewHitTestBehavior.opaque, layoutDirection: props['layoutDirection'], creationParams: props['creationParams'], creationParamsCodec: props['creationParamsCodec'], gestureRecognizers: props['gestureRecognizers'], - ), + ), 'HtmlElementView': (props) => HtmlElementView( key: props['key'], viewType: props['viewType'], onPlatformViewCreated: props['onPlatformViewCreated'], - ), + ), 'PlatformViewLink': (props) => PlatformViewLink( key: props['key'], surfaceFactory: props['surfaceFactory'], onCreatePlatformView: props['onCreatePlatformView'], viewType: props['viewType'], - ), + ), + 'PlatformViewLink#surfaceFactory': (props) => ( + BuildContext context, + dynamic controller, + ) { + return (props['block']) as Widget; + }, + 'PlatformViewLink#onCreatePlatformView': (props) => ( + PlatformViewCreationParams params, + ) { + return (props['block']) as dynamic; + }, 'PlatformViewSurface': (props) => PlatformViewSurface( key: props['key'], controller: props['controller'], hitTestBehavior: props['hitTestBehavior'], gestureRecognizers: props['gestureRecognizers'], - ), + ), 'AndroidViewSurface': (props) => AndroidViewSurface( key: props['key'], controller: props['controller'], hitTestBehavior: props['hitTestBehavior'], gestureRecognizers: props['gestureRecognizers'], - ), + ), 'RawScrollbar': (props) => RawScrollbar( key: props['key'], child: props['child'], controller: props['controller'], isAlwaysShown: props['isAlwaysShown'], - shape: props['shape'], radius: props['radius'], thickness: props['thickness']?.toDouble(), thumbColor: props['thumbColor'], - minThumbLength: props['minThumbLength']?.toDouble(), + minThumbLength: + props['minThumbLength']?.toDouble(), // ?? _kMinThumbExtent, minOverscrollLength: props['minOverscrollLength']?.toDouble(), - fadeDuration: props['fadeDuration'], - timeToFade: props['timeToFade'], - pressDuration: props['pressDuration'], - notificationPredicate: props['notificationPredicate'], + fadeDuration: props['fadeDuration'], // ?? _kScrollbarFadeDuration, + timeToFade: props['timeToFade'], // ?? _kScrollbarTimeToFade, + pressDuration: props['pressDuration'] ?? Duration.zero, + notificationPredicate: props['notificationPredicate'] ?? + defaultScrollNotificationPredicate, interactive: props['interactive'], scrollbarOrientation: props['scrollbarOrientation'], - mainAxisMargin: props['mainAxisMargin']?.toDouble(), - crossAxisMargin: props['crossAxisMargin']?.toDouble(), - ), + mainAxisMargin: props['mainAxisMargin']?.toDouble() ?? 0.0, + crossAxisMargin: props['crossAxisMargin']?.toDouble() ?? 0.0, + ), + 'RawScrollbar#notificationPredicate': (props) => ( + ScrollNotification notification, + ) { + return (props['block']) as bool; + }, 'ScrollbarOrientation': { - 'values': ScrollbarOrientation.values, - 'left': ScrollbarOrientation.left, - 'right': ScrollbarOrientation.right, - 'top': ScrollbarOrientation.top, - 'bottom': ScrollbarOrientation.bottom, + 'values': ScrollbarOrientation.values, + 'left': ScrollbarOrientation.left, + 'right': ScrollbarOrientation.right, + 'top': ScrollbarOrientation.top, + 'bottom': ScrollbarOrientation.bottom, }, 'SafeArea': (props) => SafeArea( key: props['key'], - left: props['left'], - top: props['top'], - right: props['right'], - bottom: props['bottom'], - minimum: props['minimum'], - maintainBottomViewPadding: props['maintainBottomViewPadding'], + left: props['left'] ?? true, + top: props['top'] ?? true, + right: props['right'] ?? true, + bottom: props['bottom'] ?? true, + minimum: props['minimum'] ?? EdgeInsets.zero, + maintainBottomViewPadding: + props['maintainBottomViewPadding'] ?? false, child: props['child'], - ), + ), 'SliverSafeArea': (props) => SliverSafeArea( key: props['key'], - left: props['left'], - top: props['top'], - right: props['right'], - bottom: props['bottom'], - minimum: props['minimum'], + left: props['left'] ?? true, + top: props['top'] ?? true, + right: props['right'] ?? true, + bottom: props['bottom'] ?? true, + minimum: props['minimum'] ?? EdgeInsets.zero, sliver: props['sliver'], - ), + ), 'WillPopScope': (props) => WillPopScope( key: props['key'], child: props['child'], onWillPop: props['onWillPop'], - ), + ), + 'WillPopScope#onWillPop': (props) => () { + return (props['block']) as Future; + }, 'Dismissible': (props) => Dismissible( key: props['key'], child: props['child'], @@ -536,40 +739,53 @@ var p = () => { secondaryBackground: props['secondaryBackground'], confirmDismiss: props['confirmDismiss'], onResize: props['onResize'], - onUpdate: props['onUpdate'], onDismissed: props['onDismissed'], - direction: props['direction'], - resizeDuration: props['resizeDuration'], - dismissThresholds: props['dismissThresholds'], - movementDuration: props['movementDuration'], - crossAxisEndOffset: props['crossAxisEndOffset']?.toDouble(), - dragStartBehavior: props['dragStartBehavior'], - behavior: props['behavior'], - ), + direction: props['direction'] ?? DismissDirection.horizontal, + resizeDuration: + props['resizeDuration'] ?? const Duration(milliseconds: 300), + dismissThresholds: props['dismissThresholds'] ?? + const {}, + movementDuration: + props['movementDuration'] ?? const Duration(milliseconds: 200), + crossAxisEndOffset: props['crossAxisEndOffset']?.toDouble() ?? 0.0, + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + behavior: props['behavior'] ?? HitTestBehavior.opaque, + ), + 'Dismissible#confirmDismiss': (props) => ( + DismissDirection direction, + ) { + return (props['block']) as Future; + }, + 'Dismissible#onDismissed': (props) => ( + DismissDirection direction, + ) { + return (props['block']); + }, 'DismissDirection': { - 'values': DismissDirection.values, - 'vertical': DismissDirection.vertical, - 'horizontal': DismissDirection.horizontal, - 'endToStart': DismissDirection.endToStart, - 'startToEnd': DismissDirection.startToEnd, - 'up': DismissDirection.up, - 'down': DismissDirection.down, - 'none': DismissDirection.none, + 'values': DismissDirection.values, + 'vertical': DismissDirection.vertical, + 'horizontal': DismissDirection.horizontal, + 'endToStart': DismissDirection.endToStart, + 'startToEnd': DismissDirection.startToEnd, + 'up': DismissDirection.up, + 'down': DismissDirection.down, + 'none': DismissDirection.none, }, 'SliverList': (props) => SliverList( key: props['key'], delegate: props['delegate'], - ), + ), 'SliverFixedExtentList': (props) => SliverFixedExtentList( key: props['key'], delegate: props['delegate'], itemExtent: props['itemExtent']?.toDouble(), - ), + ), 'SliverGrid': (props) => SliverGrid( key: props['key'], delegate: props['delegate'], gridDelegate: props['gridDelegate'], - ), + ), 'SliverGrid.count': (props) => SliverGrid.count( key: props['key'], crossAxisCount: props['crossAxisCount'], @@ -577,7 +793,7 @@ var p = () => { crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, children: as(props['children']) ?? const [], - ), + ), 'SliverGrid.extent': (props) => SliverGrid.extent( key: props['key'], maxCrossAxisExtent: props['maxCrossAxisExtent']?.toDouble(), @@ -585,365 +801,259 @@ var p = () => { crossAxisSpacing: props['crossAxisSpacing']?.toDouble() ?? 0.0, childAspectRatio: props['childAspectRatio']?.toDouble() ?? 1.0, children: as(props['children']) ?? const [], - ), + ), 'SliverOpacity': (props) => SliverOpacity( key: props['key'], opacity: props['opacity']?.toDouble(), - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, sliver: props['sliver'], - ), + ), 'SliverIgnorePointer': (props) => SliverIgnorePointer( key: props['key'], - ignoring: props['ignoring'], + ignoring: props['ignoring'] ?? true, ignoringSemantics: props['ignoringSemantics'], sliver: props['sliver'], - ), + ), 'SliverOffstage': (props) => SliverOffstage( key: props['key'], - offstage: props['offstage'], + offstage: props['offstage'] ?? true, sliver: props['sliver'], - ), + ), 'KeepAlive': (props) => KeepAlive( key: props['key'], keepAlive: props['keepAlive'], child: props['child'], - ), + ), 'ListWheelScrollView': (props) => ListWheelScrollView( key: props['key'], controller: props['controller'], physics: props['physics'], - diameterRatio: props['diameterRatio']?.toDouble(), - perspective: props['perspective']?.toDouble(), - offAxisFraction: props['offAxisFraction']?.toDouble(), - useMagnifier: props['useMagnifier'], - magnification: props['magnification']?.toDouble(), + diameterRatio: props['diameterRatio']?.toDouble() ?? + RenderListWheelViewport.defaultDiameterRatio, + perspective: props['perspective']?.toDouble() ?? + RenderListWheelViewport.defaultPerspective, + offAxisFraction: props['offAxisFraction']?.toDouble() ?? 0.0, + useMagnifier: props['useMagnifier'] ?? false, + magnification: props['magnification']?.toDouble() ?? 1.0, overAndUnderCenterOpacity: - props['overAndUnderCenterOpacity']?.toDouble(), + props['overAndUnderCenterOpacity']?.toDouble() ?? 1.0, itemExtent: props['itemExtent']?.toDouble(), - squeeze: props['squeeze']?.toDouble(), + squeeze: props['squeeze']?.toDouble() ?? 1.0, onSelectedItemChanged: props['onSelectedItemChanged'], renderChildrenOutsideViewport: - props['renderChildrenOutsideViewport'], - clipBehavior: props['clipBehavior'], + props['renderChildrenOutsideViewport'] ?? false, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, restorationId: props['restorationId'], scrollBehavior: props['scrollBehavior'], - children: as(props['children']) ?? const [], - ), + children: as(props['children'])!, + ), 'ListWheelScrollView.useDelegate': (props) => ListWheelScrollView.useDelegate( - key: props['key'], - controller: props['controller'], - physics: props['physics'], - diameterRatio: props['diameterRatio']?.toDouble(), - perspective: props['perspective']?.toDouble(), - offAxisFraction: props['offAxisFraction']?.toDouble(), - useMagnifier: props['useMagnifier'], - magnification: props['magnification']?.toDouble(), - overAndUnderCenterOpacity: - props['overAndUnderCenterOpacity']?.toDouble(), - itemExtent: props['itemExtent']?.toDouble(), - squeeze: props['squeeze']?.toDouble(), - onSelectedItemChanged: props['onSelectedItemChanged'], - renderChildrenOutsideViewport: - props['renderChildrenOutsideViewport'], - clipBehavior: props['clipBehavior'], - restorationId: props['restorationId'], - scrollBehavior: props['scrollBehavior'], - childDelegate: props['childDelegate'], + key: props['key'], + controller: props['controller'], + physics: props['physics'], + diameterRatio: props['diameterRatio']?.toDouble() ?? + RenderListWheelViewport.defaultDiameterRatio, + perspective: props['perspective']?.toDouble() ?? + RenderListWheelViewport.defaultPerspective, + offAxisFraction: props['offAxisFraction']?.toDouble() ?? 0.0, + useMagnifier: props['useMagnifier'] ?? false, + magnification: props['magnification']?.toDouble() ?? 1.0, + overAndUnderCenterOpacity: + props['overAndUnderCenterOpacity']?.toDouble() ?? 1.0, + itemExtent: props['itemExtent']?.toDouble(), + squeeze: props['squeeze']?.toDouble() ?? 1.0, + onSelectedItemChanged: props['onSelectedItemChanged'], + renderChildrenOutsideViewport: + props['renderChildrenOutsideViewport'] ?? false, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + childDelegate: props['childDelegate'], ), 'ListWheelViewport': (props) => ListWheelViewport( key: props['key'], - diameterRatio: props['diameterRatio']?.toDouble(), - perspective: props['perspective']?.toDouble(), - offAxisFraction: props['offAxisFraction']?.toDouble(), - useMagnifier: props['useMagnifier'], - magnification: props['magnification']?.toDouble(), + diameterRatio: props['diameterRatio']?.toDouble() ?? + RenderListWheelViewport.defaultDiameterRatio, + perspective: props['perspective']?.toDouble() ?? + RenderListWheelViewport.defaultPerspective, + offAxisFraction: props['offAxisFraction']?.toDouble() ?? 0.0, + useMagnifier: props['useMagnifier'] ?? false, + magnification: props['magnification']?.toDouble() ?? 1.0, overAndUnderCenterOpacity: - props['overAndUnderCenterOpacity']?.toDouble(), + props['overAndUnderCenterOpacity']?.toDouble() ?? 1.0, itemExtent: props['itemExtent']?.toDouble(), - squeeze: props['squeeze']?.toDouble(), + squeeze: props['squeeze']?.toDouble() ?? 1.0, renderChildrenOutsideViewport: - props['renderChildrenOutsideViewport'], + props['renderChildrenOutsideViewport'] ?? false, offset: props['offset'], childDelegate: props['childDelegate'], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), 'ScrollDragController': { - 'momentumRetainStationaryDurationThreshold': + 'momentumRetainStationaryDurationThreshold': ScrollDragController.momentumRetainStationaryDurationThreshold, - 'momentumRetainVelocityThresholdFactor': + 'momentumRetainVelocityThresholdFactor': ScrollDragController.momentumRetainVelocityThresholdFactor, - 'motionStoppedDurationThreshold': + 'motionStoppedDurationThreshold': ScrollDragController.motionStoppedDurationThreshold, }, 'AutofillGroup': (props) => AutofillGroup( key: props['key'], child: props['child'], - onDisposeAction: props['onDisposeAction'], - ), + onDisposeAction: + props['onDisposeAction'] ?? AutofillContextAction.commit, + ), 'AutofillGroup.of': (props) => AutofillGroup.of( props['pa'][0], - ), + ), 'AutofillContextAction': { - 'values': AutofillContextAction.values, - 'commit': AutofillContextAction.commit, - 'cancel': AutofillContextAction.cancel, + 'values': AutofillContextAction.values, + 'commit': AutofillContextAction.commit, + 'cancel': AutofillContextAction.cancel, }, - 'AnimatedContainer': (props) => AnimatedContainer( + 'InteractiveViewer': (props) => InteractiveViewer( key: props['key'], - alignment: props['alignment'], - padding: props['padding'], - color: props['color'], - decoration: props['decoration'], - foregroundDecoration: props['foregroundDecoration'], - width: props['width']?.toDouble(), - height: props['height']?.toDouble(), - constraints: props['constraints'], - margin: props['margin'], - transform: props['transform'], - transformAlignment: props['transformAlignment'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + alignPanAxis: props['alignPanAxis'] ?? false, + boundaryMargin: props['boundaryMargin'] ?? EdgeInsets.zero, + constrained: props['constrained'] ?? true, + maxScale: props['maxScale']?.toDouble() ?? 2.5, + minScale: props['minScale']?.toDouble() ?? 0.8, + onInteractionEnd: props['onInteractionEnd'], + onInteractionStart: props['onInteractionStart'], + onInteractionUpdate: props['onInteractionUpdate'], + panEnabled: props['panEnabled'] ?? true, + scaleEnabled: props['scaleEnabled'] ?? true, + transformationController: props['transformationController'], child: props['child'], - clipBehavior: props['clipBehavior'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedPadding': (props) => AnimatedPadding( + ), + 'InteractiveViewer.builder': (props) => InteractiveViewer.builder( key: props['key'], - padding: props['padding'], - child: props['child'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedAlign': (props) => AnimatedAlign( + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + alignPanAxis: props['alignPanAxis'] ?? false, + boundaryMargin: props['boundaryMargin'] ?? EdgeInsets.zero, + maxScale: props['maxScale']?.toDouble() ?? 2.5, + minScale: props['minScale']?.toDouble() ?? 0.8, + onInteractionEnd: props['onInteractionEnd'], + onInteractionStart: props['onInteractionStart'], + onInteractionUpdate: props['onInteractionUpdate'], + panEnabled: props['panEnabled'] ?? true, + scaleEnabled: props['scaleEnabled'] ?? true, + transformationController: props['transformationController'], + builder: props['builder'], + ), + 'InteractiveViewer.builder#builder': (props) => ( + BuildContext context, + dynamic viewport, + ) { + return (props['block']) as Widget; + }, + 'ModalBarrier': (props) => ModalBarrier( key: props['key'], - alignment: props['alignment'], - child: props['child'], - heightFactor: props['heightFactor']?.toDouble(), - widthFactor: props['widthFactor']?.toDouble(), - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedPositioned': (props) => AnimatedPositioned( + color: props['color'], + dismissible: props['dismissible'] ?? true, + semanticsLabel: props['semanticsLabel'], + barrierSemanticsDismissible: + props['barrierSemanticsDismissible'] ?? true, + ), + 'AnimatedModalBarrier': (props) => AnimatedModalBarrier( + key: props['key'], + color: props['color'], + dismissible: props['dismissible'] ?? true, + semanticsLabel: props['semanticsLabel'], + barrierSemanticsDismissible: props['barrierSemanticsDismissible'], + ), + 'Focus': (props) => Focus( key: props['key'], child: props['child'], - left: props['left']?.toDouble(), - top: props['top']?.toDouble(), - right: props['right']?.toDouble(), - bottom: props['bottom']?.toDouble(), - width: props['width']?.toDouble(), - height: props['height']?.toDouble(), - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedPositioned.fromRect': (props) => AnimatedPositioned.fromRect( + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + onFocusChange: props['onFocusChange'], + onKey: props['onKey'], + onKeyEvent: props['onKeyEvent'], + debugLabel: props['debugLabel'], + canRequestFocus: props['canRequestFocus'], + descendantsAreFocusable: props['descendantsAreFocusable'] ?? true, + skipTraversal: props['skipTraversal'], + includeSemantics: props['includeSemantics'] ?? true, + ), + 'Focus#onKey': (props) => ( + FocusNode node, + dynamic event, + ) { + return (props['block']) as KeyEventResult; + }, + 'Focus#onKeyEvent': (props) => ( + FocusNode node, + dynamic event, + ) { + return (props['block']) as KeyEventResult; + }, + 'Focus.of': (props) => Focus.of( + props['pa'][0], + scopeOk: props['scopeOk'] ?? false, + ), + 'Focus.maybeOf': (props) => Focus.maybeOf( + props['pa'][0], + scopeOk: props['scopeOk'] ?? false, + ), + 'Focus.isAt': (props) => Focus.isAt( + props['pa'][0], + ), + 'FocusScope': (props) => FocusScope( key: props['key'], + node: props['node'], child: props['child'], - rect: props['rect'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedPositionedDirectional': (props) => AnimatedPositionedDirectional( + autofocus: props['autofocus'] ?? false, + onFocusChange: props['onFocusChange'], + canRequestFocus: props['canRequestFocus'], + skipTraversal: props['skipTraversal'], + onKeyEvent: props['onKeyEvent'], + onKey: props['onKey'], + debugLabel: props['debugLabel'], + ), + 'FocusScope#onKeyEvent': (props) => ( + FocusNode node, + dynamic event, + ) { + return (props['block']) as KeyEventResult; + }, + 'FocusScope#onKey': (props) => ( + FocusNode node, + dynamic event, + ) { + return (props['block']) as KeyEventResult; + }, + 'FocusScope.of': (props) => FocusScope.of( + props['pa'][0], + ), + 'ExcludeFocus': (props) => ExcludeFocus( key: props['key'], + excluding: props['excluding'] ?? true, child: props['child'], - start: props['start']?.toDouble(), - top: props['top']?.toDouble(), - end: props['end']?.toDouble(), - bottom: props['bottom']?.toDouble(), - width: props['width']?.toDouble(), - height: props['height']?.toDouble(), - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedScale': (props) => AnimatedScale( - key: props['key'], - child: props['child'], - scale: props['scale']?.toDouble(), - alignment: props['alignment'], - filterQuality: props['filterQuality'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedRotation': (props) => AnimatedRotation( - key: props['key'], - child: props['child'], - turns: props['turns']?.toDouble(), - alignment: props['alignment'], - filterQuality: props['filterQuality'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedSlide': (props) => AnimatedSlide( - key: props['key'], - child: props['child'], - offset: props['offset'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedOpacity': (props) => AnimatedOpacity( - key: props['key'], - child: props['child'], - opacity: props['opacity']?.toDouble(), - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], - ), - 'SliverAnimatedOpacity': (props) => SliverAnimatedOpacity( - key: props['key'], - sliver: props['sliver'], - opacity: props['opacity']?.toDouble(), - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], - ), - 'AnimatedDefaultTextStyle': (props) => AnimatedDefaultTextStyle( - key: props['key'], - child: props['child'], - style: props['style'], - textAlign: props['textAlign'], - softWrap: props['softWrap'], - overflow: props['overflow'], - maxLines: props['maxLines'], - textWidthBasis: props['textWidthBasis'], - textHeightBehavior: props['textHeightBehavior'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'AnimatedPhysicalModel': (props) => AnimatedPhysicalModel( - key: props['key'], - child: props['child'], - shape: props['shape'], - clipBehavior: props['clipBehavior'], - borderRadius: props['borderRadius'], - elevation: props['elevation']?.toDouble(), - color: props['color'], - animateColor: props['animateColor'], - shadowColor: props['shadowColor'], - animateShadowColor: props['animateShadowColor'], - curve: props['curve'] ?? Curves.linear, - duration: props['duration'], - onEnd: props['onEnd'], - ), - 'SingleChildScrollView': (props) => SingleChildScrollView( - key: props['key'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], - padding: props['padding'], - primary: props['primary'], - physics: props['physics'], - controller: props['controller'], - child: props['child'], - dragStartBehavior: props['dragStartBehavior'], - clipBehavior: props['clipBehavior'], - restorationId: props['restorationId'], - keyboardDismissBehavior: props['keyboardDismissBehavior'], - ), - 'ModalBarrier': (props) => ModalBarrier( - key: props['key'], - color: props['color'], - dismissible: props['dismissible'], - semanticsLabel: props['semanticsLabel'], - barrierSemanticsDismissible: props['barrierSemanticsDismissible'], - ), - 'AnimatedModalBarrier': (props) => AnimatedModalBarrier( - key: props['key'], - color: props['color'], - dismissible: props['dismissible'], - semanticsLabel: props['semanticsLabel'], - barrierSemanticsDismissible: props['barrierSemanticsDismissible'], - ), - 'Focus': (props) => Focus( - key: props['key'], - child: props['child'], - focusNode: props['focusNode'], - autofocus: props['autofocus'], - onFocusChange: props['onFocusChange'], - onKeyEvent: props['onKeyEvent'], - onKey: props['onKey'], - canRequestFocus: props['canRequestFocus'], - skipTraversal: props['skipTraversal'], - descendantsAreFocusable: props['descendantsAreFocusable'], - includeSemantics: props['includeSemantics'], - debugLabel: props['debugLabel'], - ), - 'Focus.withExternalFocusNode': (props) => Focus.withExternalFocusNode( - key: props['key'], - child: props['child'], - focusNode: props['focusNode'], - autofocus: props['autofocus'], - onFocusChange: props['onFocusChange'], - includeSemantics: props['includeSemantics'], - ), - 'Focus.of': (props) => Focus.of( - props['pa'][0], - scopeOk: props['scopeOk'] ?? false, - ), - 'Focus.maybeOf': (props) => Focus.maybeOf( - props['pa'][0], - scopeOk: props['scopeOk'] ?? false, - ), - 'Focus.isAt': (props) => Focus.isAt( - props['pa'][0], - ), - 'FocusScope': (props) => FocusScope( - key: props['key'], - node: props['node'], - child: props['child'], - autofocus: props['autofocus'] ?? false, - onFocusChange: props['onFocusChange'], - canRequestFocus: props['canRequestFocus'], - skipTraversal: props['skipTraversal'], - onKeyEvent: props['onKeyEvent'], - onKey: props['onKey'], - debugLabel: props['debugLabel'], - ), - 'FocusScope.withExternalFocusNode': (props) => - FocusScope.withExternalFocusNode( - key: props['key'], - child: props['child'], - focusScopeNode: props['focusScopeNode'], - autofocus: props['autofocus'] ?? false, - onFocusChange: props['onFocusChange'], - ), - 'FocusScope.of': (props) => FocusScope.of( - props['pa'][0], - ), - 'ExcludeFocus': (props) => ExcludeFocus( - key: props['key'], - excluding: props['excluding'], - child: props['child'], - ), - 'FadeInImage': (props) => FadeInImage( - key: props['key'], - placeholder: props['placeholder'], - placeholderErrorBuilder: props['placeholderErrorBuilder'], - image: props['image'], - imageErrorBuilder: props['imageErrorBuilder'], - excludeFromSemantics: props['excludeFromSemantics'], - imageSemanticLabel: props['imageSemanticLabel'], - fadeOutDuration: props['fadeOutDuration'], - fadeOutCurve: props['fadeOutCurve'], - fadeInDuration: props['fadeInDuration'], - fadeInCurve: props['fadeInCurve'], + ), + 'FadeInImage': (props) => FadeInImage( + key: props['key'], + placeholder: props['placeholder'], + placeholderErrorBuilder: props['placeholderErrorBuilder'], + image: props['image'], + imageErrorBuilder: props['imageErrorBuilder'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, + imageSemanticLabel: props['imageSemanticLabel'], + fadeOutDuration: + props['fadeOutDuration'] ?? const Duration(milliseconds: 300), + fadeOutCurve: props['fadeOutCurve'] ?? Curves.easeOut, + fadeInDuration: + props['fadeInDuration'] ?? const Duration(milliseconds: 700), + fadeInCurve: props['fadeInCurve'] ?? Curves.easeIn, width: props['width']?.toDouble(), height: props['height']?.toDouble(), fit: props['fit'], - placeholderFit: props['placeholderFit'], - alignment: props['alignment'], - repeat: props['repeat'], - matchTextDirection: props['matchTextDirection'], - ), + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, + matchTextDirection: props['matchTextDirection'] ?? false, + ), 'FadeInImage.memoryNetwork': (props) => FadeInImage.memoryNetwork( key: props['key'], placeholder: props['placeholder'], @@ -952,24 +1062,25 @@ var p = () => { imageErrorBuilder: props['imageErrorBuilder'], placeholderScale: props['placeholderScale']?.toDouble() ?? 1.0, imageScale: props['imageScale']?.toDouble() ?? 1.0, - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, imageSemanticLabel: props['imageSemanticLabel'], - fadeOutDuration: props['fadeOutDuration'], - fadeOutCurve: props['fadeOutCurve'], - fadeInDuration: props['fadeInDuration'], - fadeInCurve: props['fadeInCurve'], + fadeOutDuration: + props['fadeOutDuration'] ?? const Duration(milliseconds: 300), + fadeOutCurve: props['fadeOutCurve'] ?? Curves.easeOut, + fadeInDuration: + props['fadeInDuration'] ?? const Duration(milliseconds: 700), + fadeInCurve: props['fadeInCurve'] ?? Curves.easeIn, width: props['width']?.toDouble(), height: props['height']?.toDouble(), fit: props['fit'], - placeholderFit: props['placeholderFit'], - alignment: props['alignment'], - repeat: props['repeat'], - matchTextDirection: props['matchTextDirection'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, + matchTextDirection: props['matchTextDirection'] ?? false, placeholderCacheWidth: props['placeholderCacheWidth'], placeholderCacheHeight: props['placeholderCacheHeight'], imageCacheWidth: props['imageCacheWidth'], imageCacheHeight: props['imageCacheHeight'], - ), + ), 'FadeInImage.assetNetwork': (props) => FadeInImage.assetNetwork( key: props['key'], placeholder: props['placeholder'], @@ -979,99 +1090,158 @@ var p = () => { bundle: props['bundle'], placeholderScale: props['placeholderScale']?.toDouble() ?? 1.0, imageScale: props['imageScale']?.toDouble() ?? 1.0, - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, imageSemanticLabel: props['imageSemanticLabel'], - fadeOutDuration: props['fadeOutDuration'], - fadeOutCurve: props['fadeOutCurve'], - fadeInDuration: props['fadeInDuration'], - fadeInCurve: props['fadeInCurve'], + fadeOutDuration: + props['fadeOutDuration'] ?? const Duration(milliseconds: 300), + fadeOutCurve: props['fadeOutCurve'] ?? Curves.easeOut, + fadeInDuration: + props['fadeInDuration'] ?? const Duration(milliseconds: 700), + fadeInCurve: props['fadeInCurve'] ?? Curves.easeIn, width: props['width']?.toDouble(), height: props['height']?.toDouble(), fit: props['fit'], - placeholderFit: props['placeholderFit'], - alignment: props['alignment'], - repeat: props['repeat'], - matchTextDirection: props['matchTextDirection'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, + matchTextDirection: props['matchTextDirection'] ?? false, placeholderCacheWidth: props['placeholderCacheWidth'], placeholderCacheHeight: props['placeholderCacheHeight'], imageCacheWidth: props['imageCacheWidth'], imageCacheHeight: props['imageCacheHeight'], - ), + ), + 'FadeInImage#placeholderErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'FadeInImage#imageErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'FadeInImage.memoryNetwork#placeholderErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'FadeInImage.memoryNetwork#imageErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'FadeInImage.assetNetwork#placeholderErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'FadeInImage.assetNetwork#imageErrorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, 'OverflowBar': (props) => OverflowBar( key: props['key'], - spacing: props['spacing']?.toDouble(), + spacing: props['spacing']?.toDouble() ?? 0.0, alignment: props['alignment'], - overflowSpacing: props['overflowSpacing']?.toDouble(), - overflowAlignment: props['overflowAlignment'], - overflowDirection: props['overflowDirection'], + overflowSpacing: props['overflowSpacing']?.toDouble() ?? 0.0, + overflowAlignment: + props['overflowAlignment'] ?? OverflowBarAlignment.start, + overflowDirection: + props['overflowDirection'] ?? VerticalDirection.down, textDirection: props['textDirection'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.none, children: as(props['children']) ?? const [], - ), + ), 'OverflowBarAlignment': { - 'values': OverflowBarAlignment.values, - 'start': OverflowBarAlignment.start, - 'end': OverflowBarAlignment.end, - 'center': OverflowBarAlignment.center, + 'values': OverflowBarAlignment.values, + 'start': OverflowBarAlignment.start, + 'end': OverflowBarAlignment.end, + 'center': OverflowBarAlignment.center, }, 'AnimatedList': (props) => AnimatedList( key: props['key'], itemBuilder: props['itemBuilder'], - initialItemCount: props['initialItemCount'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], + initialItemCount: props['initialItemCount'] ?? 0, + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, controller: props['controller'], primary: props['primary'], physics: props['physics'], - shrinkWrap: props['shrinkWrap'], + shrinkWrap: props['shrinkWrap'] ?? false, padding: props['padding'], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'AnimatedList#itemBuilder': (props) => ( + BuildContext context, + int index, + dynamic animation, + ) { + return (props['block']) as Widget; + }, 'AnimatedList.of': (props) => AnimatedList.of( props['pa'][0], - ), + ), 'AnimatedList.maybeOf': (props) => AnimatedList.maybeOf( props['pa'][0], - ), + ), 'SliverAnimatedList': (props) => SliverAnimatedList( key: props['key'], itemBuilder: props['itemBuilder'], - initialItemCount: props['initialItemCount'], - ), + initialItemCount: props['initialItemCount'] ?? 0, + ), + 'SliverAnimatedList#itemBuilder': (props) => ( + BuildContext context, + int index, + dynamic animation, + ) { + return (props['block']) as Widget; + }, 'SliverAnimatedList.of': (props) => SliverAnimatedList.of( props['pa'][0], - ), + ), 'SliverAnimatedList.maybeOf': (props) => SliverAnimatedList.maybeOf( props['pa'][0], - ), + ), 'RestorationScope': (props) => RestorationScope( key: props['key'], restorationId: props['restorationId'], child: props['child'], - ), + ), 'RestorationScope.of': (props) => RestorationScope.of( props['pa'][0], - ), + ), 'UnmanagedRestorationScope': (props) => UnmanagedRestorationScope( key: props['key'], bucket: props['bucket'], child: props['child'], - ), + ), 'RootRestorationScope': (props) => RootRestorationScope( key: props['key'], restorationId: props['restorationId'], child: props['child'], - ), + ), 'TickerMode': (props) => TickerMode( key: props['key'], enabled: props['enabled'], child: props['child'], - ), + ), 'TickerMode.of': (props) => TickerMode.of( props['pa'][0], - ), + ), 'TextSelectionOverlay': { - 'fadeDuration': TextSelectionOverlay.fadeDuration, + 'fadeDuration': TextSelectionOverlay.fadeDuration, }, 'TextSelectionGestureDetector': (props) => TextSelectionGestureDetector( key: props['key'], @@ -1091,124 +1261,151 @@ var p = () => { onDragSelectionEnd: props['onDragSelectionEnd'], behavior: props['behavior'], child: props['child'], - ), + ), + 'TextSelectionGestureDetector#onDragSelectionUpdate': (props) => ( + dynamic startDetails, + dynamic updateDetails, + ) { + return (props['block']); + }, 'TextSelectionHandleType': { - 'values': TextSelectionHandleType.values, - 'left': TextSelectionHandleType.left, - 'right': TextSelectionHandleType.right, - 'collapsed': TextSelectionHandleType.collapsed, + 'values': TextSelectionHandleType.values, + 'left': TextSelectionHandleType.left, + 'right': TextSelectionHandleType.right, + 'collapsed': TextSelectionHandleType.collapsed, }, 'ClipboardStatus': { - 'values': ClipboardStatus.values, - 'pasteable': ClipboardStatus.pasteable, - 'unknown': ClipboardStatus.unknown, - 'notPasteable': ClipboardStatus.notPasteable, + 'values': ClipboardStatus.values, + 'pasteable': ClipboardStatus.pasteable, + 'unknown': ClipboardStatus.unknown, + 'notPasteable': ClipboardStatus.notPasteable, }, 'SemanticsDebugger': (props) => SemanticsDebugger( key: props['key'], child: props['child'], - labelStyle: props['labelStyle'], - ), + labelStyle: props['labelStyle'] ?? + const TextStyle( + color: Color(0xFF000000), fontSize: 10.0, height: 0.8), + ), 'IconTheme': (props) => IconTheme( key: props['key'], data: props['data'], child: props['child'], - ), + ), 'IconTheme.merge': (props) => IconTheme.merge( key: props['key'], data: props['data'], child: props['child'], - ), + ), 'IconTheme.of': (props) => IconTheme.of( props['pa'][0], - ), + ), 'ScrollConfiguration': (props) => ScrollConfiguration( key: props['key'], behavior: props['behavior'], child: props['child'], - ), + ), 'ScrollConfiguration.of': (props) => ScrollConfiguration.of( props['pa'][0], - ), - 'AndroidOverscrollIndicator': { - 'values': AndroidOverscrollIndicator.values, - 'stretch': AndroidOverscrollIndicator.stretch, - 'glow': AndroidOverscrollIndicator.glow, - }, + ), 'ErrorWidget': (props) => ErrorWidget( props['pa'][0], - ), + ), 'ErrorWidget.withDetails': (props) => ErrorWidget.withDetails( - message: props['message'], + message: props['message'] ?? '', error: props['error'], - ), + ), 'AutomaticKeepAlive': (props) => AutomaticKeepAlive( key: props['key'], child: props['child'], - ), + ), 'Viewport': (props) => Viewport( key: props['key'], - axisDirection: props['axisDirection'], + axisDirection: props['axisDirection'] ?? AxisDirection.down, crossAxisDirection: props['crossAxisDirection'], - anchor: props['anchor']?.toDouble(), + anchor: props['anchor']?.toDouble() ?? 0.0, offset: props['offset'], center: props['center'], cacheExtent: props['cacheExtent']?.toDouble(), - cacheExtentStyle: props['cacheExtentStyle'], - clipBehavior: props['clipBehavior'], + cacheExtentStyle: + props['cacheExtentStyle'] ?? CacheExtentStyle.pixel, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, slivers: as(props['slivers']) ?? const [], - ), + ), 'Viewport.getDefaultCrossAxisDirection': (props) => Viewport.getDefaultCrossAxisDirection( - props['pa'][0], - props['pa'][1], + props['pa'][0], + props['pa'][1], ), 'ShrinkWrappingViewport': (props) => ShrinkWrappingViewport( key: props['key'], - axisDirection: props['axisDirection'], + axisDirection: props['axisDirection'] ?? AxisDirection.down, crossAxisDirection: props['crossAxisDirection'], offset: props['offset'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, slivers: as(props['slivers']) ?? const [], - ), + ), 'SizeChangedLayoutNotifier': (props) => SizeChangedLayoutNotifier( key: props['key'], child: props['child'], - ), + ), 'Hero': (props) => Hero( key: props['key'], tag: props['tag'], createRectTween: props['createRectTween'], flightShuttleBuilder: props['flightShuttleBuilder'], placeholderBuilder: props['placeholderBuilder'], - transitionOnUserGestures: props['transitionOnUserGestures'], - child: props['child'], - ), + transitionOnUserGestures: + props['transitionOnUserGestures'] ?? false, + child: props['child'], + ), + 'Hero#createRectTween': (props) => ( + dynamic begin, + dynamic end, + ) { + return (props['block']) as dynamic; + }, + 'Hero#flightShuttleBuilder': (props) => ( + BuildContext flightContext, + dynamic animation, + HeroFlightDirection flightDirection, + BuildContext fromHeroContext, + BuildContext toHeroContext, + ) { + return (props['block']) as Widget; + }, + 'Hero#placeholderBuilder': (props) => ( + BuildContext context, + dynamic heroSize, + Widget child, + ) { + return (props['block']) as Widget; + }, 'HeroMode': (props) => HeroMode( key: props['key'], child: props['child'], - enabled: props['enabled'], - ), + enabled: props['enabled'] ?? true, + ), 'HeroFlightDirection': { - 'values': HeroFlightDirection.values, - 'push': HeroFlightDirection.push, - 'pop': HeroFlightDirection.pop, + 'values': HeroFlightDirection.values, + 'push': HeroFlightDirection.push, + 'pop': HeroFlightDirection.pop, }, 'GlowingOverscrollIndicator': (props) => GlowingOverscrollIndicator( key: props['key'], - showLeading: props['showLeading'], - showTrailing: props['showTrailing'], + showLeading: props['showLeading'] ?? true, + showTrailing: props['showTrailing'] ?? true, axisDirection: props['axisDirection'], color: props['color'], - notificationPredicate: props['notificationPredicate'], - child: props['child'], - ), - 'StretchingOverscrollIndicator': (props) => StretchingOverscrollIndicator( - key: props['key'], - axisDirection: props['axisDirection'], - notificationPredicate: props['notificationPredicate'], - child: props['child'], - ), + notificationPredicate: props['notificationPredicate'] ?? + defaultScrollNotificationPredicate, + child: props['child'], + ), + 'GlowingOverscrollIndicator#notificationPredicate': (props) => ( + ScrollNotification notification, + ) { + return (props['block']) as bool; + }, 'Draggable': (props) => Draggable( key: props['key'], child: props['child'], @@ -1216,8 +1413,8 @@ var p = () => { data: props['data'], axis: props['axis'], childWhenDragging: props['childWhenDragging'], - feedbackOffset: props['feedbackOffset'], - dragAnchor: props['dragAnchor'], + feedbackOffset: props['feedbackOffset'] ?? Offset.zero, + dragAnchor: props['dragAnchor'] ?? DragAnchor.child, dragAnchorStrategy: props['dragAnchorStrategy'], affinity: props['affinity'], maxSimultaneousDrags: props['maxSimultaneousDrags'], @@ -1226,10 +1423,35 @@ var p = () => { onDraggableCanceled: props['onDraggableCanceled'], onDragEnd: props['onDragEnd'], onDragCompleted: props['onDragCompleted'], - ignoringFeedbackSemantics: props['ignoringFeedbackSemantics'], - rootOverlay: props['rootOverlay'], - hitTestBehavior: props['hitTestBehavior'], - ), + ignoringFeedbackSemantics: + props['ignoringFeedbackSemantics'] ?? true, + rootOverlay: props['rootOverlay'] ?? false, + hitTestBehavior: + props['hitTestBehavior'] ?? HitTestBehavior.deferToChild, + ), + 'Draggable#dragAnchorStrategy': (props) => ( + Draggable draggable, + BuildContext context, + dynamic position, + ) { + return (props['block']) as dynamic; + }, + 'Draggable#onDragUpdate': (props) => ( + dynamic details, + ) { + return (props['block']); + }, + 'Draggable#onDraggableCanceled': (props) => ( + dynamic velocity, + dynamic offset, + ) { + return (props['block']); + }, + 'Draggable#onDragEnd': (props) => ( + DraggableDetails details, + ) { + return (props['block']); + }, 'LongPressDraggable': (props) => LongPressDraggable( key: props['key'], child: props['child'], @@ -1246,11 +1468,34 @@ var p = () => { onDraggableCanceled: props['onDraggableCanceled'], onDragEnd: props['onDragEnd'], onDragCompleted: props['onDragCompleted'], - hapticFeedbackOnStart: props['hapticFeedbackOnStart'], + hapticFeedbackOnStart: props['hapticFeedbackOnStart'] ?? true, ignoringFeedbackSemantics: - props['ignoringFeedbackSemantics'] ?? true, - delay: props['delay'], - ), + props['ignoringFeedbackSemantics'] ?? true, + delay: props['delay'] ?? kLongPressTimeout, + ), + 'LongPressDraggable#dragAnchorStrategy': (props) => ( + Draggable draggable, + BuildContext context, + dynamic position, + ) { + return (props['block']) as dynamic; + }, + 'LongPressDraggable#onDragUpdate': (props) => ( + dynamic details, + ) { + return (props['block']); + }, + 'LongPressDraggable#onDraggableCanceled': (props) => ( + dynamic velocity, + dynamic offset, + ) { + return (props['block']); + }, + 'LongPressDraggable#onDragEnd': (props) => ( + DraggableDetails details, + ) { + return (props['block']); + }, 'DragTarget': (props) => DragTarget( key: props['key'], builder: props['builder'], @@ -1259,114 +1504,147 @@ var p = () => { onAcceptWithDetails: props['onAcceptWithDetails'], onLeave: props['onLeave'], onMove: props['onMove'], - hitTestBehavior: props['hitTestBehavior'], - ), - 'SharedAppData': (props) => SharedAppData( + hitTestBehavior: + props['hitTestBehavior'] ?? HitTestBehavior.translucent, + ), + 'DragTarget#builder': (props) => ( + BuildContext context, + List candidateData, + List rejectedData, + ) { + return (props['block']) as Widget; + }, + 'DragTarget#onWillAccept': (props) => ( + T data, + ) { + return (props['block']) as bool; + }, + 'DragTarget#onAccept': (props) => ( + T data, + ) { + return (props['block']); + }, + 'DragTarget#onAcceptWithDetails': (props) => ( + DragTargetDetails details, + ) { + return (props['block']); + }, + 'DragTarget#onLeave': (props) => ( + T data, + ) { + return (props['block']); + }, + 'DragTarget#onMove': (props) => ( + DragTargetDetails details, + ) { + return (props['block']); + }, + 'ScrollNotificationObserver': (props) => ScrollNotificationObserver( key: props['key'], child: props['child'], - ), - 'SharedAppData.getValue': (props) => SharedAppData.getValue( - props['pa'][0], - props['pa'][1], - props['pa'][2], - ), - 'SharedAppData.setValue': (props) => SharedAppData.setValue( + ), + 'ScrollNotificationObserver.of': (props) => ScrollNotificationObserver.of( props['pa'][0], - props['pa'][1], - props['pa'][2], - ), - 'ScrollNotificationObserver': (props) => ScrollNotificationObserver( - key: props['key'], - child: props['child'], - ), - 'ScrollNotificationObserver.of': (props) => ScrollNotificationObserver.of( - props['pa'][0], - ), + ), 'ImageFiltered': (props) => ImageFiltered( key: props['key'], imageFilter: props['imageFilter'], child: props['child'], - ), + ), 'KeyboardListener': (props) => KeyboardListener( key: props['key'], focusNode: props['focusNode'], - autofocus: props['autofocus'], - includeSemantics: props['includeSemantics'], + autofocus: props['autofocus'] ?? false, + includeSemantics: props['includeSemantics'] ?? true, onKeyEvent: props['onKeyEvent'], child: props['child'], - ), + ), 'Shortcuts': (props) => Shortcuts( key: props['key'], manager: props['manager'], shortcuts: props['shortcuts'], child: props['child'], debugLabel: props['debugLabel'], - ), + ), 'Shortcuts.of': (props) => Shortcuts.of( props['pa'][0], - ), + ), 'Shortcuts.maybeOf': (props) => Shortcuts.maybeOf( props['pa'][0], - ), + ), 'CallbackShortcuts': (props) => CallbackShortcuts( key: props['key'], bindings: props['bindings'], child: props['child'], - ), + ), 'PageView': (props) => PageView( key: props['key'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], + scrollDirection: props['scrollDirection'] ?? Axis.horizontal, + reverse: props['reverse'] ?? false, controller: props['controller'], physics: props['physics'], - pageSnapping: props['pageSnapping'], + pageSnapping: props['pageSnapping'] ?? true, onPageChanged: props['onPageChanged'], children: as(props['children']) ?? const [], - dragStartBehavior: props['dragStartBehavior'], - allowImplicitScrolling: props['allowImplicitScrolling'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + allowImplicitScrolling: props['allowImplicitScrolling'] ?? false, restorationId: props['restorationId'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, scrollBehavior: props['scrollBehavior'], - padEnds: props['padEnds'], - ), + padEnds: props['padEnds'] ?? true, + ), 'PageView.builder': (props) => PageView.builder( key: props['key'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], + scrollDirection: props['scrollDirection'] ?? Axis.horizontal, + reverse: props['reverse'] ?? false, controller: props['controller'], physics: props['physics'], - pageSnapping: props['pageSnapping'], + pageSnapping: props['pageSnapping'] ?? true, onPageChanged: props['onPageChanged'], itemBuilder: props['itemBuilder'], itemCount: props['itemCount'], - dragStartBehavior: props['dragStartBehavior'], - allowImplicitScrolling: props['allowImplicitScrolling'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + allowImplicitScrolling: props['allowImplicitScrolling'] ?? false, restorationId: props['restorationId'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, scrollBehavior: props['scrollBehavior'], - padEnds: props['padEnds'], - ), + padEnds: props['padEnds'] ?? true, + ), 'PageView.custom': (props) => PageView.custom( key: props['key'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], + scrollDirection: props['scrollDirection'] ?? Axis.horizontal, + reverse: props['reverse'] ?? false, controller: props['controller'], physics: props['physics'], - pageSnapping: props['pageSnapping'], + pageSnapping: props['pageSnapping'] ?? true, onPageChanged: props['onPageChanged'], childrenDelegate: props['childrenDelegate'], - dragStartBehavior: props['dragStartBehavior'], - allowImplicitScrolling: props['allowImplicitScrolling'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + allowImplicitScrolling: props['allowImplicitScrolling'] ?? false, restorationId: props['restorationId'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, scrollBehavior: props['scrollBehavior'], - padEnds: props['padEnds'], - ), + padEnds: props['padEnds'] ?? true, + ), + 'PageView.builder#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, 'NotificationListener': (props) => NotificationListener( key: props['key'], child: props['child'], onNotification: props['onNotification'], - ), + ), + 'NotificationListener#onNotification': (props) => ( + T notification, + ) { + return (props['block']) as bool; + }, 'Banner': (props) => Banner( key: props['key'], child: props['child'], @@ -1374,961 +1652,547 @@ var p = () => { textDirection: props['textDirection'], location: props['location'], layoutDirection: props['layoutDirection'], - color: props['color'], - textStyle: props['textStyle'], - ), + color: props['color'] ?? _kColor, + textStyle: props['textStyle'] ?? _kTextStyle, + ), 'CheckedModeBanner': (props) => CheckedModeBanner( key: props['key'], child: props['child'], - ), + ), 'BannerLocation': { - 'values': BannerLocation.values, - 'topStart': BannerLocation.topStart, - 'topEnd': BannerLocation.topEnd, - 'bottomStart': BannerLocation.bottomStart, - 'bottomEnd': BannerLocation.bottomEnd, + 'values': BannerLocation.values, + 'topStart': BannerLocation.topStart, + 'topEnd': BannerLocation.topEnd, + 'bottomStart': BannerLocation.bottomStart, + 'bottomEnd': BannerLocation.bottomEnd, }, 'AnnotatedRegion': (props) => AnnotatedRegion( key: props['key'], child: props['child'], value: props['value'], - sized: props['sized'], - ), - 'Visibility': (props) => Visibility( + sized: props['sized'] ?? true, + ), + 'AnimatedSize': (props) => AnimatedSize( key: props['key'], child: props['child'], - replacement: props['replacement'], - visible: props['visible'], - maintainState: props['maintainState'], - maintainAnimation: props['maintainAnimation'], - maintainSize: props['maintainSize'], - maintainSemantics: props['maintainSemantics'], - maintainInteractivity: props['maintainInteractivity'], - ), - 'SliverVisibility': (props) => SliverVisibility( + alignment: props['alignment'] ?? Alignment.center, + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + reverseDuration: props['reverseDuration'], + vsync: props['vsync'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'GridPaper': (props) => GridPaper( key: props['key'], - sliver: props['sliver'], - replacementSliver: props['replacementSliver'], - visible: props['visible'], - maintainState: props['maintainState'], - maintainAnimation: props['maintainAnimation'], - maintainSize: props['maintainSize'], - maintainSemantics: props['maintainSemantics'], - maintainInteractivity: props['maintainInteractivity'], - ), - 'DualTransitionBuilder': (props) => DualTransitionBuilder( + color: props['color'] ?? const Color(0x7FC3E8F3), + interval: props['interval']?.toDouble() ?? 100.0, + divisions: props['divisions'] ?? 2, + subdivisions: props['subdivisions'] ?? 5, + child: props['child'], + ), + 'TweenAnimationBuilder': (props) => TweenAnimationBuilder( key: props['key'], - animation: props['animation'], - forwardBuilder: props['forwardBuilder'], - reverseBuilder: props['reverseBuilder'], + tween: props['tween'], + duration: props['duration'], + curve: props['curve'] ?? Curves.linear, + builder: props['builder'], + onEnd: props['onEnd'], child: props['child'], - ), - 'Table': (props) => Table( + ), + 'TweenAnimationBuilder#builder': (props) => ( + BuildContext context, + T value, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'DefaultTextEditingShortcuts': (props) => DefaultTextEditingShortcuts( key: props['key'], - children: as(props['children']) ?? const [], - columnWidths: props['columnWidths'], - defaultColumnWidth: props['defaultColumnWidth'], - textDirection: props['textDirection'], - border: props['border'], - defaultVerticalAlignment: props['defaultVerticalAlignment'], - textBaseline: props['textBaseline'], - ), - 'TableCell': (props) => TableCell( + child: props['child'], + ), + 'SlideTransition': (props) => SlideTransition( key: props['key'], - verticalAlignment: props['verticalAlignment'], + position: props['position'], + transformHitTests: props['transformHitTests'] ?? true, + textDirection: props['textDirection'], child: props['child'], - ), - 'SliverPrototypeExtentList': (props) => SliverPrototypeExtentList( + ), + 'ScaleTransition': (props) => ScaleTransition( key: props['key'], - delegate: props['delegate'], - prototypeItem: props['prototypeItem'], - ), - 'AnimatedSwitcher': (props) => AnimatedSwitcher( + scale: props['scale'], + alignment: props['alignment'] ?? Alignment.center, + filterQuality: props['filterQuality'], + child: props['child'], + ), + 'RotationTransition': (props) => RotationTransition( key: props['key'], + turns: props['turns'], + alignment: props['alignment'] ?? Alignment.center, + filterQuality: props['filterQuality'], child: props['child'], - duration: props['duration'], - reverseDuration: props['reverseDuration'], - switchInCurve: props['switchInCurve'], - switchOutCurve: props['switchOutCurve'], - transitionBuilder: props['transitionBuilder'], - ), - 'AnimatedSwitcher.defaultTransitionBuilder': (props) => - AnimatedSwitcher.defaultTransitionBuilder( - props['pa'][0], - props['pa'][1], - ), - 'AnimatedSwitcher.defaultLayoutBuilder': (props) => - AnimatedSwitcher.defaultLayoutBuilder( - props['pa'][0], - props['pa'][1], - ), - 'Title': (props) => Title( + ), + 'SizeTransition': (props) => SizeTransition( key: props['key'], - title: props['title'], - color: props['color'], + axis: props['axis'] ?? Axis.vertical, + sizeFactor: props['sizeFactor'], + axisAlignment: props['axisAlignment']?.toDouble() ?? 0.0, child: props['child'], - ), - 'ColorFiltered': (props) => ColorFiltered( - colorFilter: props['colorFilter'], + ), + 'FadeTransition': (props) => FadeTransition( + key: props['key'], + opacity: props['opacity'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, child: props['child'], + ), + 'SliverFadeTransition': (props) => SliverFadeTransition( key: props['key'], - ), - 'FocusTraversalOrder': (props) => FocusTraversalOrder( + opacity: props['opacity'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, + sliver: props['sliver'], + ), + 'PositionedTransition': (props) => PositionedTransition( key: props['key'], - order: props['order'], + rect: props['rect'], child: props['child'], - ), - 'FocusTraversalOrder.of': (props) => FocusTraversalOrder.of( - props['pa'][0], - ), - 'FocusTraversalOrder.maybeOf': (props) => FocusTraversalOrder.maybeOf( - props['pa'][0], - ), - 'FocusTraversalGroup': (props) => FocusTraversalGroup( + ), + 'RelativePositionedTransition': (props) => RelativePositionedTransition( key: props['key'], - policy: props['policy'], - descendantsAreFocusable: props['descendantsAreFocusable'], + rect: props['rect'], + size: props['size'], child: props['child'], - ), - 'FocusTraversalGroup.of': (props) => FocusTraversalGroup.of( - props['pa'][0], - ), - 'FocusTraversalGroup.maybeOf': (props) => FocusTraversalGroup.maybeOf( - props['pa'][0], - ), - 'TraversalDirection': { - 'values': TraversalDirection.values, - 'up': TraversalDirection.up, - 'right': TraversalDirection.right, - 'down': TraversalDirection.down, - 'left': TraversalDirection.left, - }, - 'KeyEventResult': { - 'values': KeyEventResult.values, - 'handled': KeyEventResult.handled, - 'ignored': KeyEventResult.ignored, - 'skipRemainingHandlers': KeyEventResult.skipRemainingHandlers, - }, - 'UnfocusDisposition': { - 'values': UnfocusDisposition.values, - 'scope': UnfocusDisposition.scope, - 'previouslyFocusedChild': UnfocusDisposition.previouslyFocusedChild, - }, - 'FocusHighlightMode': { - 'values': FocusHighlightMode.values, - 'touch': FocusHighlightMode.touch, - 'traditional': FocusHighlightMode.traditional, - }, - 'FocusHighlightStrategy': { - 'values': FocusHighlightStrategy.values, - 'automatic': FocusHighlightStrategy.automatic, - 'alwaysTouch': FocusHighlightStrategy.alwaysTouch, - 'alwaysTraditional': FocusHighlightStrategy.alwaysTraditional, - }, - 'OrientationBuilder': (props) => OrientationBuilder( + ), + 'DecoratedBoxTransition': (props) => DecoratedBoxTransition( key: props['key'], - builder: props['builder'], - ), - 'InteractiveViewer': (props) => InteractiveViewer( + decoration: props['decoration'], + position: props['position'] ?? DecorationPosition.background, + child: props['child'], + ), + 'AlignTransition': (props) => AlignTransition( key: props['key'], - clipBehavior: props['clipBehavior'], - alignPanAxis: props['alignPanAxis'], - boundaryMargin: props['boundaryMargin'], - constrained: props['constrained'], - maxScale: props['maxScale']?.toDouble(), - minScale: props['minScale']?.toDouble(), - onInteractionEnd: props['onInteractionEnd'], - onInteractionStart: props['onInteractionStart'], - onInteractionUpdate: props['onInteractionUpdate'], - panEnabled: props['panEnabled'], - scaleEnabled: props['scaleEnabled'], - transformationController: props['transformationController'], + alignment: props['alignment'], child: props['child'], - ), - 'InteractiveViewer.builder': (props) => InteractiveViewer.builder( + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), + ), + 'DefaultTextStyleTransition': (props) => DefaultTextStyleTransition( key: props['key'], - clipBehavior: props['clipBehavior'], - alignPanAxis: props['alignPanAxis'], - boundaryMargin: props['boundaryMargin'], - maxScale: props['maxScale']?.toDouble(), - minScale: props['minScale']?.toDouble(), - onInteractionEnd: props['onInteractionEnd'], - onInteractionStart: props['onInteractionStart'], - onInteractionUpdate: props['onInteractionUpdate'], - panEnabled: props['panEnabled'], - scaleEnabled: props['scaleEnabled'], - transformationController: props['transformationController'], + style: props['style'], + child: props['child'], + textAlign: props['textAlign'], + softWrap: props['softWrap'] ?? true, + overflow: props['overflow'] ?? TextOverflow.clip, + maxLines: props['maxLines'], + ), + 'AnimatedBuilder': (props) => AnimatedBuilder( + key: props['key'], + animation: props['animation'], builder: props['builder'], - ), - 'Scrollable': (props) => Scrollable( + child: props['child'], + ), + 'AnimatedBuilder#builder': (props) => ( + BuildContext context, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'SliverPersistentHeader': (props) => SliverPersistentHeader( key: props['key'], - axisDirection: props['axisDirection'], - controller: props['controller'], - physics: props['physics'], - viewportBuilder: props['viewportBuilder'], - incrementCalculator: props['incrementCalculator'], - excludeFromSemantics: props['excludeFromSemantics'], - semanticChildCount: props['semanticChildCount'], - dragStartBehavior: props['dragStartBehavior'], - restorationId: props['restorationId'], - scrollBehavior: props['scrollBehavior'], - ), - 'Scrollable.of': (props) => Scrollable.of( + delegate: props['delegate'], + pinned: props['pinned'] ?? false, + floating: props['floating'] ?? false, + ), + 'PageStorage': (props) => PageStorage( + key: props['key'], + bucket: props['bucket'], + child: props['child'], + ), + 'PageStorage.of': (props) => PageStorage.of( props['pa'][0], - ), - 'Scrollable.recommendDeferredLoadingForContext': (props) => - Scrollable.recommendDeferredLoadingForContext( + ), + 'Router': (props) => Router( + key: props['key'], + routeInformationProvider: props['routeInformationProvider'], + routeInformationParser: props['routeInformationParser'], + routerDelegate: props['routerDelegate'], + backButtonDispatcher: props['backButtonDispatcher'], + restorationScopeId: props['restorationScopeId'], + ), + 'Router.of': (props) => Router.of( props['pa'][0], - ), - 'Scrollable.ensureVisible': (props) => Scrollable.ensureVisible( + ), + 'Router.maybeOf': (props) => Router.maybeOf( props['pa'][0], - alignment: props['alignment']?.toDouble() ?? 0.0, - duration: props['duration'] ?? Duration.zero, - curve: props['curve'] ?? Curves.ease, - alignmentPolicy: props['alignmentPolicy'] ?? - ScrollPositionAlignmentPolicy.explicit, - ), - 'ScrollIncrementType': { - 'values': ScrollIncrementType.values, - 'line': ScrollIncrementType.line, - 'page': ScrollIncrementType.page, - }, - 'ScrollPositionAlignmentPolicy': { - 'values': ScrollPositionAlignmentPolicy.values, - 'explicit': ScrollPositionAlignmentPolicy.explicit, - 'keepVisibleAtEnd': ScrollPositionAlignmentPolicy.keepVisibleAtEnd, - 'keepVisibleAtStart': ScrollPositionAlignmentPolicy.keepVisibleAtStart, - }, - 'PrimaryScrollController': (props) => PrimaryScrollController( + ), + 'Router.navigate': (props) => Router.navigate( + props['pa'][0], + props['pa'][1], + ), + 'Router.neglect': (props) => Router.neglect( + props['pa'][0], + props['pa'][1], + ), + 'BackButtonListener': (props) => BackButtonListener( key: props['key'], - controller: props['controller'], child: props['child'], - ), - 'PrimaryScrollController.none': (props) => PrimaryScrollController.none( + onBackButtonPressed: props['onBackButtonPressed'], + ), + 'FocusTrap': (props) => FocusTrap( + focusScopeNode: props['focusScopeNode'], + child: props['child'], + key: props['key'], + ), + 'FocusTrapArea': (props) => FocusTrapArea( + focusNode: props['focusNode'], key: props['key'], child: props['child'], - ), - 'PrimaryScrollController.of': (props) => PrimaryScrollController.of( - props['pa'][0], - ), - 'LayoutBuilder': (props) => LayoutBuilder( + ), + 'Directionality': (props) => Directionality( key: props['key'], - builder: props['builder'], - ), - 'Icon': (props) => Icon( + textDirection: props['textDirection'], + child: props['child'], + ), + 'Directionality.of': (props) => Directionality.of( + props['pa'][0], + ), + 'Directionality.maybeOf': (props) => Directionality.maybeOf( props['pa'][0], + ), + 'Opacity': (props) => Opacity( key: props['key'], - size: props['size']?.toDouble(), - color: props['color'], - semanticLabel: props['semanticLabel'], - textDirection: props['textDirection'], - ), - 'Placeholder': (props) => Placeholder( - key: props['key'], - color: props['color'], - strokeWidth: props['strokeWidth']?.toDouble(), - fallbackWidth: props['fallbackWidth']?.toDouble(), - fallbackHeight: props['fallbackHeight']?.toDouble(), - ), - 'EditableText': (props) => EditableText( - key: props['key'], - controller: props['controller'], - focusNode: props['focusNode'], - readOnly: props['readOnly'], - obscuringCharacter: props['obscuringCharacter'], - obscureText: props['obscureText'], - autocorrect: props['autocorrect'], - smartDashesType: props['smartDashesType'], - smartQuotesType: props['smartQuotesType'], - enableSuggestions: props['enableSuggestions'], - style: props['style'], - strutStyle: props['strutStyle'], - cursorColor: props['cursorColor'], - backgroundCursorColor: props['backgroundCursorColor'], - textAlign: props['textAlign'], - textDirection: props['textDirection'], - locale: props['locale'], - textScaleFactor: props['textScaleFactor']?.toDouble(), - maxLines: props['maxLines'], - minLines: props['minLines'], - expands: props['expands'], - forceLine: props['forceLine'], - textHeightBehavior: props['textHeightBehavior'], - textWidthBasis: props['textWidthBasis'], - autofocus: props['autofocus'], - showCursor: props['showCursor'], - showSelectionHandles: props['showSelectionHandles'], - selectionColor: props['selectionColor'], - selectionControls: props['selectionControls'], - keyboardType: props['keyboardType'], - textInputAction: props['textInputAction'], - textCapitalization: props['textCapitalization'], - onChanged: props['onChanged'], - onEditingComplete: props['onEditingComplete'], - onSubmitted: props['onSubmitted'], - onAppPrivateCommand: props['onAppPrivateCommand'], - onSelectionChanged: props['onSelectionChanged'], - onSelectionHandleTapped: props['onSelectionHandleTapped'], - inputFormatters: as(props['inputFormatters']), - mouseCursor: props['mouseCursor'], - rendererIgnoresPointer: props['rendererIgnoresPointer'], - cursorWidth: props['cursorWidth']?.toDouble(), - cursorHeight: props['cursorHeight']?.toDouble(), - cursorRadius: props['cursorRadius'], - cursorOpacityAnimates: props['cursorOpacityAnimates'], - cursorOffset: props['cursorOffset'], - paintCursorAboveText: props['paintCursorAboveText'], - selectionHeightStyle: props['selectionHeightStyle'], - selectionWidthStyle: props['selectionWidthStyle'], - scrollPadding: props['scrollPadding'], - keyboardAppearance: props['keyboardAppearance'], - dragStartBehavior: props['dragStartBehavior'], - enableInteractiveSelection: props['enableInteractiveSelection'], - scrollController: props['scrollController'], - scrollPhysics: props['scrollPhysics'], - autocorrectionTextRectColor: props['autocorrectionTextRectColor'], - toolbarOptions: props['toolbarOptions'], - autofillHints: props['autofillHints'], - autofillClient: props['autofillClient'], - clipBehavior: props['clipBehavior'], - restorationId: props['restorationId'], - scrollBehavior: props['scrollBehavior'], - enableIMEPersonalizedLearning: - props['enableIMEPersonalizedLearning'], - ), - 'DecoratedBox': (props) => DecoratedBox( - key: props['key'], - decoration: props['decoration'], - position: props['position'], + opacity: props['opacity']?.toDouble(), + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, child: props['child'], - ), - 'Container': (props) => Container( + ), + 'ShaderMask': (props) => ShaderMask( key: props['key'], - alignment: props['alignment'], - padding: props['padding'], - color: props['color'], - decoration: props['decoration'], - foregroundDecoration: props['foregroundDecoration'], - width: props['width']?.toDouble(), - height: props['height']?.toDouble(), - constraints: props['constraints'], - margin: props['margin'], - transform: props['transform'], - transformAlignment: props['transformAlignment'], + shaderCallback: props['shaderCallback'], + blendMode: props['blendMode'] ?? BlendMode.modulate, child: props['child'], - clipBehavior: props['clipBehavior'], - ), - 'DraggableScrollableSheet': (props) => DraggableScrollableSheet( - key: props['key'], - initialChildSize: props['initialChildSize']?.toDouble(), - minChildSize: props['minChildSize']?.toDouble(), - maxChildSize: props['maxChildSize']?.toDouble(), - expand: props['expand'], - snap: props['snap'], - snapSizes: as(props['snapSizes']), - builder: props['builder'], - ), - 'DraggableScrollableActuator': (props) => DraggableScrollableActuator( + ), + 'BackdropFilter': (props) => BackdropFilter( key: props['key'], + filter: props['filter'], child: props['child'], - ), - 'DraggableScrollableActuator.reset': (props) => - DraggableScrollableActuator.reset( - props['pa'][0], - ), - 'MediaQuery': (props) => MediaQuery( + blendMode: props['blendMode'] ?? BlendMode.srcOver, + ), + 'CustomPaint': (props) => CustomPaint( key: props['key'], - data: props['data'], + painter: props['painter'], + foregroundPainter: props['foregroundPainter'], + size: props['size'] ?? Size.zero, + isComplex: props['isComplex'] ?? false, + willChange: props['willChange'] ?? false, child: props['child'], - ), - 'MediaQuery.removePadding': (props) => MediaQuery.removePadding( + ), + 'ClipRect': (props) => ClipRect( key: props['key'], - context: props['context'], - removeLeft: props['removeLeft'] ?? false, - removeTop: props['removeTop'] ?? false, - removeRight: props['removeRight'] ?? false, - removeBottom: props['removeBottom'] ?? false, + clipper: props['clipper'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, child: props['child'], - ), - 'MediaQuery.removeViewInsets': (props) => MediaQuery.removeViewInsets( + ), + 'ClipRRect': (props) => ClipRRect( key: props['key'], - context: props['context'], - removeLeft: props['removeLeft'] ?? false, - removeTop: props['removeTop'] ?? false, - removeRight: props['removeRight'] ?? false, - removeBottom: props['removeBottom'] ?? false, + borderRadius: props['borderRadius'] ?? BorderRadius.zero, + clipper: props['clipper'], + clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, child: props['child'], - ), - 'MediaQuery.removeViewPadding': (props) => MediaQuery.removeViewPadding( + ), + 'ClipOval': (props) => ClipOval( key: props['key'], - context: props['context'], - removeLeft: props['removeLeft'] ?? false, - removeTop: props['removeTop'] ?? false, - removeRight: props['removeRight'] ?? false, - removeBottom: props['removeBottom'] ?? false, + clipper: props['clipper'], + clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, child: props['child'], - ), - 'MediaQuery.fromWindow': (props) => MediaQuery.fromWindow( + ), + 'ClipPath': (props) => ClipPath( key: props['key'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, child: props['child'], - ), - 'MediaQuery.of': (props) => MediaQuery.of( - props['pa'][0], - ), - 'MediaQuery.maybeOf': (props) => MediaQuery.maybeOf( - props['pa'][0], - ), - 'MediaQuery.textScaleFactorOf': (props) => MediaQuery.textScaleFactorOf( - props['pa'][0], - ), - 'MediaQuery.platformBrightnessOf': (props) => - MediaQuery.platformBrightnessOf( - props['pa'][0], - ), - 'MediaQuery.highContrastOf': (props) => MediaQuery.highContrastOf( - props['pa'][0], - ), - 'MediaQuery.boldTextOverride': (props) => MediaQuery.boldTextOverride( - props['pa'][0], - ), - 'Orientation': { - 'values': Orientation.values, - 'portrait': Orientation.portrait, - 'landscape': Orientation.landscape, - }, - 'NavigationMode': { - 'values': NavigationMode.values, - 'traditional': NavigationMode.traditional, - 'directional': NavigationMode.directional, - }, - 'AnimatedCrossFade': (props) => AnimatedCrossFade( + ), + 'ClipPath.shape': (props) => ClipPath.shape( key: props['key'], - firstChild: props['firstChild'], - secondChild: props['secondChild'], - firstCurve: props['firstCurve'], - secondCurve: props['secondCurve'], - sizeCurve: props['sizeCurve'], - alignment: props['alignment'], - crossFadeState: props['crossFadeState'], - duration: props['duration'], - reverseDuration: props['reverseDuration'], - ), - 'AnimatedCrossFade.defaultLayoutBuilder': (props) => - AnimatedCrossFade.defaultLayoutBuilder( - props['pa'][0], - props['pa'][1], - props['pa'][2], - props['pa'][3], - ), - 'CrossFadeState': { - 'values': CrossFadeState.values, - 'showFirst': CrossFadeState.showFirst, - 'showSecond': CrossFadeState.showSecond, - }, - 'GridPaper': (props) => GridPaper( + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, + child: props['child'], + ), + 'PhysicalModel': (props) => PhysicalModel( key: props['key'], + shape: props['shape'] ?? BoxShape.rectangle, + clipBehavior: props['clipBehavior'] ?? Clip.none, + borderRadius: props['borderRadius'], + elevation: props['elevation']?.toDouble() ?? 0.0, color: props['color'], - interval: props['interval']?.toDouble(), - divisions: props['divisions'], - subdivisions: props['subdivisions'], + shadowColor: props['shadowColor'] ?? const Color(0xFF000000), child: props['child'], - ), - 'TweenAnimationBuilder': (props) => TweenAnimationBuilder( + ), + 'PhysicalShape': (props) => PhysicalShape( key: props['key'], - tween: props['tween'], - duration: props['duration'], - curve: props['curve'] ?? Curves.linear, - builder: props['builder'], - onEnd: props['onEnd'], + clipper: props['clipper'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + elevation: props['elevation']?.toDouble() ?? 0.0, + color: props['color'], + shadowColor: props['shadowColor'] ?? const Color(0xFF000000), child: props['child'], - ), - 'DefaultTextEditingShortcuts': (props) => DefaultTextEditingShortcuts( + ), + 'Transform': (props) => Transform( key: props['key'], + transform: props['transform'], + origin: props['origin'], + alignment: props['alignment'], + transformHitTests: props['transformHitTests'] ?? true, + filterQuality: props['filterQuality'], child: props['child'], - ), - 'SlideTransition': (props) => SlideTransition( + ), + 'Transform.rotate': (props) => Transform.rotate( key: props['key'], - position: props['position'], - transformHitTests: props['transformHitTests'], - textDirection: props['textDirection'], + angle: props['angle']?.toDouble(), + origin: props['origin'], + alignment: props['alignment'] ?? Alignment.center, + transformHitTests: props['transformHitTests'] ?? true, + filterQuality: props['filterQuality'], child: props['child'], - ), - 'ScaleTransition': (props) => ScaleTransition( + ), + 'Transform.translate': (props) => Transform.translate( key: props['key'], - scale: props['scale'], - alignment: props['alignment'], + offset: props['offset'], + transformHitTests: props['transformHitTests'] ?? true, filterQuality: props['filterQuality'], child: props['child'], - ), - 'RotationTransition': (props) => RotationTransition( + ), + 'Transform.scale': (props) => Transform.scale( key: props['key'], - turns: props['turns'], - alignment: props['alignment'], + scale: props['scale']?.toDouble(), + origin: props['origin'], + alignment: props['alignment'] ?? Alignment.center, + transformHitTests: props['transformHitTests'] ?? true, filterQuality: props['filterQuality'], child: props['child'], - ), - 'SizeTransition': (props) => SizeTransition( + ), + 'CompositedTransformTarget': (props) => CompositedTransformTarget( key: props['key'], - axis: props['axis'], - sizeFactor: props['sizeFactor'], - axisAlignment: props['axisAlignment']?.toDouble(), + link: props['link'], child: props['child'], - ), - 'FadeTransition': (props) => FadeTransition( + ), + 'CompositedTransformFollower': (props) => CompositedTransformFollower( key: props['key'], - opacity: props['opacity'], - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], + link: props['link'], + showWhenUnlinked: props['showWhenUnlinked'] ?? true, + offset: props['offset'] ?? Offset.zero, + targetAnchor: props['targetAnchor'] ?? Alignment.topLeft, + followerAnchor: props['followerAnchor'] ?? Alignment.topLeft, child: props['child'], - ), - 'SliverFadeTransition': (props) => SliverFadeTransition( + ), + 'FittedBox': (props) => FittedBox( key: props['key'], - opacity: props['opacity'], - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], - sliver: props['sliver'], - ), - 'PositionedTransition': (props) => PositionedTransition( + fit: props['fit'] ?? BoxFit.contain, + alignment: props['alignment'] ?? Alignment.center, + clipBehavior: props['clipBehavior'] ?? Clip.none, + child: props['child'], + ), + 'FractionalTranslation': (props) => FractionalTranslation( key: props['key'], - rect: props['rect'], + translation: props['translation'], + transformHitTests: props['transformHitTests'] ?? true, child: props['child'], - ), - 'RelativePositionedTransition': (props) => RelativePositionedTransition( + ), + 'RotatedBox': (props) => RotatedBox( key: props['key'], - rect: props['rect'], - size: props['size'], + quarterTurns: props['quarterTurns'], child: props['child'], - ), - 'DecoratedBoxTransition': (props) => DecoratedBoxTransition( + ), + 'Padding': (props) => Padding( key: props['key'], - decoration: props['decoration'], - position: props['position'], + padding: props['padding'], child: props['child'], - ), - 'AlignTransition': (props) => AlignTransition( + ), + 'Align': (props) => Align( key: props['key'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, + widthFactor: props['widthFactor']?.toDouble(), + heightFactor: props['heightFactor']?.toDouble(), child: props['child'], + ), + 'Center': (props) => Center( + key: props['key'], widthFactor: props['widthFactor']?.toDouble(), heightFactor: props['heightFactor']?.toDouble(), - ), - 'DefaultTextStyleTransition': (props) => DefaultTextStyleTransition( + child: props['child'], + ), + 'CustomSingleChildLayout': (props) => CustomSingleChildLayout( key: props['key'], - style: props['style'], + delegate: props['delegate'], child: props['child'], - textAlign: props['textAlign'], - softWrap: props['softWrap'], - overflow: props['overflow'], - maxLines: props['maxLines'], - ), - 'AnimatedBuilder': (props) => AnimatedBuilder( - key: props['key'], - animation: props['animation'], - builder: props['builder'], - child: props['child'], - ), - 'SliverPersistentHeader': (props) => SliverPersistentHeader( - key: props['key'], - delegate: props['delegate'], - pinned: props['pinned'], - floating: props['floating'], - ), - 'PageStorage': (props) => PageStorage( - key: props['key'], - bucket: props['bucket'], - child: props['child'], - ), - 'PageStorage.of': (props) => PageStorage.of( - props['pa'][0], - ), - 'Router': (props) => Router( - key: props['key'], - routeInformationProvider: props['routeInformationProvider'], - routeInformationParser: props['routeInformationParser'], - routerDelegate: props['routerDelegate'], - backButtonDispatcher: props['backButtonDispatcher'], - restorationScopeId: props['restorationScopeId'], - ), - 'Router.of': (props) => Router.of( - props['pa'][0], - ), - 'Router.maybeOf': (props) => Router.maybeOf( - props['pa'][0], - ), - 'Router.navigate': (props) => Router.navigate( - props['pa'][0], - props['pa'][1], - ), - 'Router.neglect': (props) => Router.neglect( - props['pa'][0], - props['pa'][1], - ), - 'BackButtonListener': (props) => BackButtonListener( - key: props['key'], - child: props['child'], - onBackButtonPressed: props['onBackButtonPressed'], - ), - 'RouteInformationReportingType': { - 'values': RouteInformationReportingType.values, - 'none': RouteInformationReportingType.none, - 'neglect': RouteInformationReportingType.neglect, - 'navigate': RouteInformationReportingType.navigate, - }, - 'FocusTrap': (props) => FocusTrap( - focusScopeNode: props['focusScopeNode'], - child: props['child'], - key: props['key'], - ), - 'FocusTrapArea': (props) => FocusTrapArea( - focusNode: props['focusNode'], - key: props['key'], - child: props['child'], - ), - 'Directionality': (props) => Directionality( - key: props['key'], - textDirection: props['textDirection'], - child: props['child'], - ), - 'Directionality.of': (props) => Directionality.of( - props['pa'][0], - ), - 'Directionality.maybeOf': (props) => Directionality.maybeOf( - props['pa'][0], - ), - 'Opacity': (props) => Opacity( - key: props['key'], - opacity: props['opacity']?.toDouble(), - alwaysIncludeSemantics: props['alwaysIncludeSemantics'], - child: props['child'], - ), - 'ShaderMask': (props) => ShaderMask( - key: props['key'], - shaderCallback: props['shaderCallback'], - blendMode: props['blendMode'], - child: props['child'], - ), - 'BackdropFilter': (props) => BackdropFilter( - key: props['key'], - filter: props['filter'], - child: props['child'], - blendMode: props['blendMode'], - ), - 'CustomPaint': (props) => CustomPaint( - key: props['key'], - painter: props['painter'], - foregroundPainter: props['foregroundPainter'], - size: props['size'], - isComplex: props['isComplex'], - willChange: props['willChange'], - child: props['child'], - ), - 'ClipRect': (props) => ClipRect( - key: props['key'], - clipper: props['clipper'], - clipBehavior: props['clipBehavior'], - child: props['child'], - ), - 'ClipRRect': (props) => ClipRRect( - key: props['key'], - borderRadius: props['borderRadius'], - clipper: props['clipper'], - clipBehavior: props['clipBehavior'], - child: props['child'], - ), - 'ClipOval': (props) => ClipOval( - key: props['key'], - clipper: props['clipper'], - clipBehavior: props['clipBehavior'], - child: props['child'], - ), - 'ClipPath': (props) => ClipPath( - key: props['key'], - clipper: props['clipper'], - clipBehavior: props['clipBehavior'], - child: props['child'], - ), - 'ClipPath.shape': (props) => ClipPath.shape( - key: props['key'], - shape: props['shape'], - clipBehavior: props['clipBehavior'] ?? Clip.antiAlias, - child: props['child'], - ), - 'PhysicalModel': (props) => PhysicalModel( - key: props['key'], - shape: props['shape'], - clipBehavior: props['clipBehavior'], - borderRadius: props['borderRadius'], - elevation: props['elevation']?.toDouble(), - color: props['color'], - shadowColor: props['shadowColor'], - child: props['child'], - ), - 'PhysicalShape': (props) => PhysicalShape( - key: props['key'], - clipper: props['clipper'], - clipBehavior: props['clipBehavior'], - elevation: props['elevation']?.toDouble(), - color: props['color'], - shadowColor: props['shadowColor'], - child: props['child'], - ), - 'Transform': (props) => Transform( - key: props['key'], - transform: props['transform'], - origin: props['origin'], - alignment: props['alignment'], - transformHitTests: props['transformHitTests'], - filterQuality: props['filterQuality'], - child: props['child'], - ), - 'Transform.rotate': (props) => Transform.rotate( - key: props['key'], - angle: props['angle']?.toDouble(), - origin: props['origin'], - alignment: props['alignment'], - transformHitTests: props['transformHitTests'], - filterQuality: props['filterQuality'], - child: props['child'], - ), - 'Transform.translate': (props) => Transform.translate( - key: props['key'], - offset: props['offset'], - transformHitTests: props['transformHitTests'], - filterQuality: props['filterQuality'], - child: props['child'], - ), - 'Transform.scale': (props) => Transform.scale( - key: props['key'], - scale: props['scale']?.toDouble(), - origin: props['origin'], - alignment: props['alignment'], - transformHitTests: props['transformHitTests'], - filterQuality: props['filterQuality'], - child: props['child'], - ), - 'CompositedTransformTarget': (props) => CompositedTransformTarget( - key: props['key'], - link: props['link'], - child: props['child'], - ), - 'CompositedTransformFollower': (props) => CompositedTransformFollower( - key: props['key'], - link: props['link'], - showWhenUnlinked: props['showWhenUnlinked'], - offset: props['offset'], - targetAnchor: props['targetAnchor'], - followerAnchor: props['followerAnchor'], - child: props['child'], - ), - 'FittedBox': (props) => FittedBox( - key: props['key'], - fit: props['fit'], - alignment: props['alignment'], - clipBehavior: props['clipBehavior'], - child: props['child'], - ), - 'FractionalTranslation': (props) => FractionalTranslation( - key: props['key'], - translation: props['translation'], - transformHitTests: props['transformHitTests'], - child: props['child'], - ), - 'RotatedBox': (props) => RotatedBox( - key: props['key'], - quarterTurns: props['quarterTurns'], - child: props['child'], - ), - 'Padding': (props) => Padding( - key: props['key'], - padding: props['padding'], - child: props['child'], - ), - 'Align': (props) => Align( - key: props['key'], - alignment: props['alignment'], - widthFactor: props['widthFactor']?.toDouble(), - heightFactor: props['heightFactor']?.toDouble(), - child: props['child'], - ), - 'Center': (props) => Center( - key: props['key'], - widthFactor: props['widthFactor']?.toDouble(), - heightFactor: props['heightFactor']?.toDouble(), - child: props['child'], - ), - 'CustomSingleChildLayout': (props) => CustomSingleChildLayout( - key: props['key'], - delegate: props['delegate'], - child: props['child'], - ), + ), 'LayoutId': (props) => LayoutId( key: props['key'], id: props['id'], child: props['child'], - ), + ), 'CustomMultiChildLayout': (props) => CustomMultiChildLayout( key: props['key'], delegate: props['delegate'], children: as(props['children']) ?? const [], - ), + ), 'SizedBox': (props) => SizedBox( key: props['key'], width: props['width']?.toDouble(), height: props['height']?.toDouble(), child: props['child'], - ), + ), 'SizedBox.expand': (props) => SizedBox.expand( key: props['key'], child: props['child'], - ), + ), 'SizedBox.shrink': (props) => SizedBox.shrink( key: props['key'], child: props['child'], - ), + ), 'SizedBox.fromSize': (props) => SizedBox.fromSize( key: props['key'], child: props['child'], size: props['size'], - ), + ), 'SizedBox.square': (props) => SizedBox.square( key: props['key'], child: props['child'], dimension: props['dimension']?.toDouble(), - ), + ), 'ConstrainedBox': (props) => ConstrainedBox( key: props['key'], constraints: props['constraints'], child: props['child'], - ), + ), 'ConstraintsTransformBox': (props) => ConstraintsTransformBox( key: props['key'], child: props['child'], textDirection: props['textDirection'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, constraintsTransform: props['constraintsTransform'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.none, debugTransformType: props['debugTransformType'] ?? '', - ), + ), 'ConstraintsTransformBox.unmodified': (props) => ConstraintsTransformBox.unmodified( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.unconstrained': (props) => ConstraintsTransformBox.unconstrained( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.widthUnconstrained': (props) => ConstraintsTransformBox.widthUnconstrained( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.heightUnconstrained': (props) => ConstraintsTransformBox.heightUnconstrained( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.maxHeightUnconstrained': (props) => ConstraintsTransformBox.maxHeightUnconstrained( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.maxWidthUnconstrained': (props) => ConstraintsTransformBox.maxWidthUnconstrained( - props['pa'][0], + props['pa'][0], ), 'ConstraintsTransformBox.maxUnconstrained': (props) => ConstraintsTransformBox.maxUnconstrained( - props['pa'][0], + props['pa'][0], ), 'UnconstrainedBox': (props) => UnconstrainedBox( key: props['key'], child: props['child'], textDirection: props['textDirection'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, constrainedAxis: props['constrainedAxis'], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.none, + ), 'FractionallySizedBox': (props) => FractionallySizedBox( key: props['key'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, widthFactor: props['widthFactor']?.toDouble(), heightFactor: props['heightFactor']?.toDouble(), child: props['child'], - ), + ), 'LimitedBox': (props) => LimitedBox( key: props['key'], - maxWidth: props['maxWidth']?.toDouble(), - maxHeight: props['maxHeight']?.toDouble(), + maxWidth: props['maxWidth']?.toDouble() ?? double.infinity, + maxHeight: props['maxHeight']?.toDouble() ?? double.infinity, child: props['child'], - ), + ), 'OverflowBox': (props) => OverflowBox( key: props['key'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, minWidth: props['minWidth']?.toDouble(), maxWidth: props['maxWidth']?.toDouble(), minHeight: props['minHeight']?.toDouble(), maxHeight: props['maxHeight']?.toDouble(), child: props['child'], - ), + ), 'SizedOverflowBox': (props) => SizedOverflowBox( key: props['key'], size: props['size'], - alignment: props['alignment'], + alignment: props['alignment'] ?? Alignment.center, child: props['child'], - ), + ), 'Offstage': (props) => Offstage( key: props['key'], - offstage: props['offstage'], + offstage: props['offstage'] ?? true, child: props['child'], - ), + ), 'AspectRatio': (props) => AspectRatio( key: props['key'], aspectRatio: props['aspectRatio']?.toDouble(), child: props['child'], - ), + ), 'IntrinsicWidth': (props) => IntrinsicWidth( key: props['key'], stepWidth: props['stepWidth']?.toDouble(), stepHeight: props['stepHeight']?.toDouble(), child: props['child'], - ), + ), 'IntrinsicHeight': (props) => IntrinsicHeight( key: props['key'], child: props['child'], - ), + ), 'Baseline': (props) => Baseline( key: props['key'], baseline: props['baseline']?.toDouble(), baselineType: props['baselineType'], child: props['child'], - ), + ), 'SliverToBoxAdapter': (props) => SliverToBoxAdapter( key: props['key'], child: props['child'], - ), + ), 'SliverPadding': (props) => SliverPadding( key: props['key'], padding: props['padding'], sliver: props['sliver'], - ), + ), 'ListBody': (props) => ListBody( key: props['key'], - mainAxis: props['mainAxis'], - reverse: props['reverse'], + mainAxis: props['mainAxis'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, children: as(props['children']) ?? const [], - ), + ), 'Stack': (props) => Stack( key: props['key'], - alignment: props['alignment'], + alignment: props['alignment'] ?? AlignmentDirectional.topStart, textDirection: props['textDirection'], - fit: props['fit'], - overflow: props['overflow'], - clipBehavior: props['clipBehavior'], + fit: props['fit'] ?? StackFit.loose, + overflow: props['overflow'] ?? Overflow.clip, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, children: as(props['children']) ?? const [], - ), + ), 'IndexedStack': (props) => IndexedStack( key: props['key'], alignment: props['alignment'] ?? AlignmentDirectional.topStart, textDirection: props['textDirection'], sizing: props['sizing'] ?? StackFit.loose, - index: props['index'], + index: props['index'] ?? 0, children: as(props['children']) ?? const [], - ), + ), 'Positioned': (props) => Positioned( key: props['key'], left: props['left']?.toDouble(), @@ -2338,36 +2202,36 @@ var p = () => { width: props['width']?.toDouble(), height: props['height']?.toDouble(), child: props['child'], - ), + ), 'Positioned.fromRect': (props) => Positioned.fromRect( key: props['key'], rect: props['rect'], child: props['child'], - ), + ), 'Positioned.fromRelativeRect': (props) => Positioned.fromRelativeRect( key: props['key'], rect: props['rect'], child: props['child'], - ), + ), 'Positioned.fill': (props) => Positioned.fill( key: props['key'], - left: props['left']?.toDouble(), - top: props['top']?.toDouble(), - right: props['right']?.toDouble(), - bottom: props['bottom']?.toDouble(), + left: props['left']?.toDouble() ?? 0.0, + top: props['top']?.toDouble() ?? 0.0, + right: props['right']?.toDouble() ?? 0.0, + bottom: props['bottom']?.toDouble() ?? 0.0, child: props['child'], - ), + ), 'Positioned.directional': (props) => Positioned.directional( key: props['key'], textDirection: props['textDirection'], start: props['start']?.toDouble(), - top: props['top']?.toDouble(), + top: props['top']?.toDouble() ?? 0.0, end: props['end']?.toDouble(), - bottom: props['bottom']?.toDouble(), + bottom: props['bottom']?.toDouble() ?? 0.0, width: props['width']?.toDouble(), height: props['height']?.toDouble(), child: props['child'], - ), + ), 'PositionedDirectional': (props) => PositionedDirectional( key: props['key'], start: props['start']?.toDouble(), @@ -2377,127 +2241,132 @@ var p = () => { width: props['width']?.toDouble(), height: props['height']?.toDouble(), child: props['child'], - ), + ), 'Flex': (props) => Flex( key: props['key'], direction: props['direction'], - mainAxisAlignment: props['mainAxisAlignment'], - mainAxisSize: props['mainAxisSize'], - crossAxisAlignment: props['crossAxisAlignment'], + mainAxisAlignment: + props['mainAxisAlignment'] ?? MainAxisAlignment.start, + mainAxisSize: props['mainAxisSize'] ?? MainAxisSize.max, + crossAxisAlignment: + props['crossAxisAlignment'] ?? CrossAxisAlignment.center, textDirection: props['textDirection'], - verticalDirection: props['verticalDirection'], + verticalDirection: + props['verticalDirection'] ?? VerticalDirection.down, textBaseline: props['textBaseline'], - clipBehavior: props['clipBehavior'], + clipBehavior: props['clipBehavior'] ?? Clip.none, children: as(props['children']) ?? const [], - ), + ), 'Row': (props) => Row( key: props['key'], mainAxisAlignment: - props['mainAxisAlignment'] ?? MainAxisAlignment.start, + props['mainAxisAlignment'] ?? MainAxisAlignment.start, mainAxisSize: props['mainAxisSize'] ?? MainAxisSize.max, crossAxisAlignment: - props['crossAxisAlignment'] ?? CrossAxisAlignment.center, + props['crossAxisAlignment'] ?? CrossAxisAlignment.center, textDirection: props['textDirection'], verticalDirection: - props['verticalDirection'] ?? VerticalDirection.down, + props['verticalDirection'] ?? VerticalDirection.down, textBaseline: props['textBaseline'], children: as(props['children']) ?? const [], - ), + ), 'Column': (props) => Column( key: props['key'], mainAxisAlignment: - props['mainAxisAlignment'] ?? MainAxisAlignment.start, + props['mainAxisAlignment'] ?? MainAxisAlignment.start, mainAxisSize: props['mainAxisSize'] ?? MainAxisSize.max, crossAxisAlignment: - props['crossAxisAlignment'] ?? CrossAxisAlignment.center, + props['crossAxisAlignment'] ?? CrossAxisAlignment.center, textDirection: props['textDirection'], verticalDirection: - props['verticalDirection'] ?? VerticalDirection.down, + props['verticalDirection'] ?? VerticalDirection.down, textBaseline: props['textBaseline'], children: as(props['children']) ?? const [], - ), + ), 'Flexible': (props) => Flexible( key: props['key'], - flex: props['flex'], - fit: props['fit'], + flex: props['flex'] ?? 1, + fit: props['fit'] ?? FlexFit.loose, child: props['child'], - ), + ), 'Expanded': (props) => Expanded( key: props['key'], flex: props['flex'] ?? 1, child: props['child'], - ), + ), 'Wrap': (props) => Wrap( key: props['key'], - direction: props['direction'], - alignment: props['alignment'], - spacing: props['spacing']?.toDouble(), - runAlignment: props['runAlignment'], - runSpacing: props['runSpacing']?.toDouble(), - crossAxisAlignment: props['crossAxisAlignment'], + direction: props['direction'] ?? Axis.horizontal, + alignment: props['alignment'] ?? WrapAlignment.start, + spacing: props['spacing']?.toDouble() ?? 0.0, + runAlignment: props['runAlignment'] ?? WrapAlignment.start, + runSpacing: props['runSpacing']?.toDouble() ?? 0.0, + crossAxisAlignment: + props['crossAxisAlignment'] ?? WrapCrossAlignment.start, textDirection: props['textDirection'], - verticalDirection: props['verticalDirection'], - clipBehavior: props['clipBehavior'], + verticalDirection: + props['verticalDirection'] ?? VerticalDirection.down, + clipBehavior: props['clipBehavior'] ?? Clip.none, children: as(props['children']) ?? const [], - ), + ), 'Flow': (props) => Flow( key: props['key'], delegate: props['delegate'], children: as(props['children']) ?? const [], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), 'Flow.unwrapped': (props) => Flow.unwrapped( key: props['key'], delegate: props['delegate'], children: as(props['children']) ?? const [], - clipBehavior: props['clipBehavior'], - ), + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), 'RichText': (props) => RichText( key: props['key'], text: props['text'], - textAlign: props['textAlign'], + textAlign: props['textAlign'] ?? TextAlign.start, textDirection: props['textDirection'], - softWrap: props['softWrap'], - overflow: props['overflow'], - textScaleFactor: props['textScaleFactor']?.toDouble(), + softWrap: props['softWrap'] ?? true, + overflow: props['overflow'] ?? TextOverflow.clip, + textScaleFactor: props['textScaleFactor']?.toDouble() ?? 1.0, maxLines: props['maxLines'], locale: props['locale'], strutStyle: props['strutStyle'], - textWidthBasis: props['textWidthBasis'], + textWidthBasis: props['textWidthBasis'] ?? TextWidthBasis.parent, textHeightBehavior: props['textHeightBehavior'], - ), + ), 'RawImage': (props) => RawImage( key: props['key'], image: props['image'], debugImageLabel: props['debugImageLabel'], width: props['width']?.toDouble(), height: props['height']?.toDouble(), - scale: props['scale']?.toDouble(), + scale: props['scale']?.toDouble() ?? 1.0, color: props['color'], opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - invertColors: props['invertColors'], - filterQuality: props['filterQuality'], - isAntiAlias: props['isAntiAlias'], - ), + matchTextDirection: props['matchTextDirection'] ?? false, + invertColors: props['invertColors'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, + isAntiAlias: props['isAntiAlias'] ?? false, + ), 'DefaultAssetBundle': (props) => DefaultAssetBundle( key: props['key'], bundle: props['bundle'], child: props['child'], - ), + ), 'DefaultAssetBundle.of': (props) => DefaultAssetBundle.of( props['pa'][0], - ), + ), 'WidgetToRenderBoxAdapter': (props) => WidgetToRenderBoxAdapter( renderBox: props['renderBox'], onBuild: props['onBuild'], onUnmount: props['onUnmount'], - ), + ), 'Listener': (props) => Listener( key: props['key'], onPointerDown: props['onPointerDown'], @@ -2506,47 +2375,47 @@ var p = () => { onPointerHover: props['onPointerHover'], onPointerCancel: props['onPointerCancel'], onPointerSignal: props['onPointerSignal'], - behavior: props['behavior'], + behavior: props['behavior'] ?? HitTestBehavior.deferToChild, child: props['child'], - ), + ), 'MouseRegion': (props) => MouseRegion( key: props['key'], onEnter: props['onEnter'], onExit: props['onExit'], onHover: props['onHover'], - cursor: props['cursor'], - opaque: props['opaque'], + cursor: props['cursor'] ?? MouseCursor.defer, + opaque: props['opaque'] ?? true, child: props['child'], - ), + ), 'RepaintBoundary': (props) => RepaintBoundary( key: props['key'], child: props['child'], - ), + ), 'RepaintBoundary.wrap': (props) => RepaintBoundary.wrap( props['pa'][0], props['pa'][1], - ), + ), 'RepaintBoundary.wrapAll': (props) => RepaintBoundary.wrapAll( props['pa'][0], - ), + ), 'IgnorePointer': (props) => IgnorePointer( key: props['key'], - ignoring: props['ignoring'], + ignoring: props['ignoring'] ?? true, ignoringSemantics: props['ignoringSemantics'], child: props['child'], - ), + ), 'AbsorbPointer': (props) => AbsorbPointer( key: props['key'], - absorbing: props['absorbing'], + absorbing: props['absorbing'] ?? true, child: props['child'], ignoringSemantics: props['ignoringSemantics'], - ), + ), 'MetaData': (props) => MetaData( key: props['key'], metaData: props['metaData'], - behavior: props['behavior'], + behavior: props['behavior'] ?? HitTestBehavior.deferToChild, child: props['child'], - ), + ), 'Semantics': (props) => Semantics( key: props['key'], child: props['child'], @@ -2604,15 +2473,15 @@ var p = () => { onPaste: props['onPaste'], onDismiss: props['onDismiss'], onMoveCursorForwardByCharacter: - props['onMoveCursorForwardByCharacter'], + props['onMoveCursorForwardByCharacter'], onMoveCursorBackwardByCharacter: - props['onMoveCursorBackwardByCharacter'], + props['onMoveCursorBackwardByCharacter'], onSetSelection: props['onSetSelection'], onSetText: props['onSetText'], onDidGainAccessibilityFocus: props['onDidGainAccessibilityFocus'], onDidLoseAccessibilityFocus: props['onDidLoseAccessibilityFocus'], customSemanticsActions: props['customSemanticsActions'], - ), + ), 'Semantics.fromProperties': (props) => Semantics.fromProperties( key: props['key'], child: props['child'], @@ -2620,52 +2489,63 @@ var p = () => { explicitChildNodes: props['explicitChildNodes'] ?? false, excludeSemantics: props['excludeSemantics'] ?? false, properties: props['properties'], - ), + ), 'MergeSemantics': (props) => MergeSemantics( key: props['key'], child: props['child'], - ), + ), 'BlockSemantics': (props) => BlockSemantics( key: props['key'], - blocking: props['blocking'], + blocking: props['blocking'] ?? true, child: props['child'], - ), + ), 'ExcludeSemantics': (props) => ExcludeSemantics( key: props['key'], - excluding: props['excluding'], + excluding: props['excluding'] ?? true, child: props['child'], - ), + ), 'IndexedSemantics': (props) => IndexedSemantics( key: props['key'], index: props['index'], child: props['child'], - ), + ), 'KeyedSubtree': (props) => KeyedSubtree( key: props['key'], child: props['child'], - ), + ), 'KeyedSubtree.wrap': (props) => KeyedSubtree.wrap( props['pa'][0], props['pa'][1], - ), + ), 'KeyedSubtree.ensureUniqueKeysForList': (props) => KeyedSubtree.ensureUniqueKeysForList( - props['pa'][0], - baseIndex: props['baseIndex'] ?? 0, + props['pa'][0], + baseIndex: props['baseIndex'] ?? 0, ), 'Builder': (props) => Builder( key: props['key'], builder: props['builder'], - ), + ), + 'Builder#builder': (props) => ( + BuildContext context, + ) { + return (props['block']) as Widget; + }, 'StatefulBuilder': (props) => StatefulBuilder( key: props['key'], builder: props['builder'], - ), + ), + 'StatefulBuilder#builder': (props) => ( + BuildContext context, + StateSetter setState, + ) { + return (props['block']) as Widget; + }, 'ColoredBox': (props) => ColoredBox( color: props['color'], child: props['child'], key: props['key'], - ), + ), 'GestureDetector': (props) => GestureDetector( key: props['key'], child: props['child'], @@ -2695,7 +2575,7 @@ var p = () => { onSecondaryLongPress: props['onSecondaryLongPress'], onSecondaryLongPressStart: props['onSecondaryLongPressStart'], onSecondaryLongPressMoveUpdate: - props['onSecondaryLongPressMoveUpdate'], + props['onSecondaryLongPressMoveUpdate'], onSecondaryLongPressUp: props['onSecondaryLongPressUp'], onSecondaryLongPressEnd: props['onSecondaryLongPressEnd'], onTertiaryLongPressDown: props['onTertiaryLongPressDown'], @@ -2703,7 +2583,7 @@ var p = () => { onTertiaryLongPress: props['onTertiaryLongPress'], onTertiaryLongPressStart: props['onTertiaryLongPressStart'], onTertiaryLongPressMoveUpdate: - props['onTertiaryLongPressMoveUpdate'], + props['onTertiaryLongPressMoveUpdate'], onTertiaryLongPressUp: props['onTertiaryLongPressUp'], onTertiaryLongPressEnd: props['onTertiaryLongPressEnd'], onVerticalDragDown: props['onVerticalDragDown'], @@ -2729,328 +2609,217 @@ var p = () => { onScaleUpdate: props['onScaleUpdate'], onScaleEnd: props['onScaleEnd'], behavior: props['behavior'], - excludeFromSemantics: props['excludeFromSemantics'], - dragStartBehavior: props['dragStartBehavior'], - ), + excludeFromSemantics: props['excludeFromSemantics'] ?? false, + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + ), 'RawGestureDetector': (props) => RawGestureDetector( key: props['key'], child: props['child'], - gestures: props['gestures'], + gestures: + props['gestures'] ?? const {}, behavior: props['behavior'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, semantics: props['semantics'], - ), - 'ValueListenableBuilder': (props) => ValueListenableBuilder( + ), + 'StreamBuilder': (props) => StreamBuilder( key: props['key'], - valueListenable: props['valueListenable'], + initialData: props['initialData'], + stream: props['stream'], builder: props['builder'], - child: props['child'], - ), - 'PreferredSize': (props) => PreferredSize( + ), + 'StreamBuilder#builder': (props) => ( + BuildContext context, + AsyncSnapshot snapshot, + ) { + return (props['block']) as Widget; + }, + 'FutureBuilder': (props) => FutureBuilder( key: props['key'], - child: props['child'], - preferredSize: props['preferredSize'], - ), - 'HeroControllerScope': (props) => HeroControllerScope( + future: props['future'], + initialData: props['initialData'], + builder: props['builder'], + ), + 'FutureBuilder#builder': (props) => ( + BuildContext context, + AsyncSnapshot snapshot, + ) { + return (props['block']) as Widget; + }, + 'ConnectionState': { + 'values': ConnectionState.values, + 'none': ConnectionState.none, + 'waiting': ConnectionState.waiting, + 'active': ConnectionState.active, + 'done': ConnectionState.done, + }, + 'DefaultTextStyle': (props) => DefaultTextStyle( key: props['key'], - controller: props['controller'], + style: props['style'], + textAlign: props['textAlign'], + softWrap: props['softWrap'] ?? true, + overflow: props['overflow'] ?? TextOverflow.clip, + maxLines: props['maxLines'], + textWidthBasis: props['textWidthBasis'] ?? TextWidthBasis.parent, + textHeightBehavior: props['textHeightBehavior'], child: props['child'], - ), - 'HeroControllerScope.none': (props) => HeroControllerScope.none( + ), + 'DefaultTextStyle.fallback': (props) => DefaultTextStyle.fallback( key: props['key'], + ), + 'DefaultTextStyle.merge': (props) => DefaultTextStyle.merge( + key: props['key'], + style: props['style'], + textAlign: props['textAlign'], + softWrap: props['softWrap'] ?? true, + overflow: props['overflow'] ?? TextOverflow.clip, + maxLines: props['maxLines'], + textWidthBasis: props['textWidthBasis'] ?? TextWidthBasis.parent, child: props['child'], - ), - 'HeroControllerScope.of': (props) => HeroControllerScope.of( + ), + 'DefaultTextStyle.of': (props) => DefaultTextStyle.of( props['pa'][0], - ), - 'Navigator': (props) => Navigator( + ), + 'DefaultTextHeightBehavior': (props) => DefaultTextHeightBehavior( key: props['key'], - pages: as(props['pages']) ?? const >[], - onPopPage: props['onPopPage'], - initialRoute: props['initialRoute'], - onGenerateInitialRoutes: props['onGenerateInitialRoutes'], - onGenerateRoute: props['onGenerateRoute'], - onUnknownRoute: props['onUnknownRoute'], - transitionDelegate: props['transitionDelegate'], - reportsRouteUpdateToEngine: props['reportsRouteUpdateToEngine'], - observers: as(props['observers']) ?? - const [], - requestFocus: props['requestFocus'], - restorationScopeId: props['restorationScopeId'], - ), - 'Navigator.defaultRouteName': Navigator.defaultRouteName, - 'Navigator.pushNamed': (props) => Navigator.pushNamed( - props['pa'][0], - props['pa'][1], - arguments: props['arguments'], - ), - 'Navigator.restorablePushNamed': (props) => Navigator.restorablePushNamed( + textHeightBehavior: props['textHeightBehavior'], + child: props['child'], + ), + 'DefaultTextHeightBehavior.of': (props) => DefaultTextHeightBehavior.of( props['pa'][0], - props['pa'][1], - arguments: props['arguments'], - ), - 'Navigator.pushReplacementNamed': (props) => - Navigator.pushReplacementNamed( + ), + 'Text': (props) => Text( props['pa'][0], - props['pa'][1], - result: props['result'], - arguments: props['arguments'], - ), - 'Navigator.restorablePushReplacementNamed': (props) => - Navigator.restorablePushReplacementNamed( + key: props['key'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + locale: props['locale'], + softWrap: props['softWrap'], + overflow: props['overflow'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + semanticsLabel: props['semanticsLabel'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + ), + 'Text.rich': (props) => Text.rich( props['pa'][0], - props['pa'][1], - result: props['result'], - arguments: props['arguments'], - ), - 'Navigator.popAndPushNamed': (props) => Navigator.popAndPushNamed( + key: props['key'], + style: props['style'], + strutStyle: props['strutStyle'], + textAlign: props['textAlign'], + textDirection: props['textDirection'], + locale: props['locale'], + softWrap: props['softWrap'], + overflow: props['overflow'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'], + semanticsLabel: props['semanticsLabel'], + textWidthBasis: props['textWidthBasis'], + textHeightBehavior: props['textHeightBehavior'], + ), + 'ActionListener': (props) => ActionListener( + key: props['key'], + listener: props['listener'], + action: props['action'], + child: props['child'], + ), + 'ActionListener#listener': (props) => ( + Action action, + ) { + return (props['block']); + }, + 'Actions': (props) => Actions( + key: props['key'], + dispatcher: props['dispatcher'], + actions: props['actions'], + child: props['child'], + ), + 'Actions.handler': (props) => Actions.handler( props['pa'][0], - props['pa'][1], - result: props['result'], - arguments: props['arguments'], - ), - 'Navigator.restorablePopAndPushNamed': (props) => - Navigator.restorablePopAndPushNamed( + props['pa'][1] as T, + ), + 'Actions.find': (props) => Actions.find( props['pa'][0], - props['pa'][1], - result: props['result'], - arguments: props['arguments'], - ), - 'Navigator.pushNamedAndRemoveUntil': (props) => - Navigator.pushNamedAndRemoveUntil( + intent: props['intent'] as T, + ), + 'Actions.maybeFind': (props) => Actions.maybeFind( props['pa'][0], - props['pa'][1], - props['pa'][2], - arguments: props['arguments'], - ), - 'Navigator.restorablePushNamedAndRemoveUntil': (props) => - Navigator.restorablePushNamedAndRemoveUntil( + intent: props['intent'] as T, + ), + 'Actions.of': (props) => Actions.of( props['pa'][0], - props['pa'][1], - props['pa'][2], - arguments: props['arguments'], - ), - 'Navigator.push': (props) => Navigator.push( + ), + 'Actions.invoke': (props) => Actions.invoke( props['pa'][0], - props['pa'][1], - ), - 'Navigator.restorablePush': (props) => Navigator.restorablePush( + props['pa'][1] as T, + ), + 'Actions.maybeInvoke': (props) => Actions.maybeInvoke( props['pa'][0], - props['pa'][1], - arguments: props['arguments'], - ), - 'Navigator.pushReplacement': (props) => Navigator.pushReplacement( + props['pa'][1] as T, + ), + 'FocusableActionDetector': (props) => FocusableActionDetector( + key: props['key'], + enabled: props['enabled'] ?? true, + focusNode: props['focusNode'], + autofocus: props['autofocus'] ?? false, + descendantsAreFocusable: props['descendantsAreFocusable'] ?? true, + shortcuts: props['shortcuts'], + actions: props['actions'], + onShowFocusHighlight: props['onShowFocusHighlight'], + onShowHoverHighlight: props['onShowHoverHighlight'], + onFocusChange: props['onFocusChange'], + mouseCursor: props['mouseCursor'] ?? MouseCursor.defer, + child: props['child'], + ), + 'Form': (props) => Form( + key: props['key'], + child: props['child'], + // autovalidate: props['autovalidate'] ?? false, + onWillPop: props['onWillPop'], + onChanged: props['onChanged'], + autovalidateMode: props['autovalidateMode'], + ), + 'Form#onWillPop': (props) => () { + return (props['block']) as Future; + }, + 'Form.of': (props) => Form.of( props['pa'][0], - props['pa'][1], - result: props['result'], - ), - 'Navigator.restorablePushReplacement': (props) => - Navigator.restorablePushReplacement( - props['pa'][0], - props['pa'][1], - result: props['result'], - arguments: props['arguments'], - ), - 'Navigator.pushAndRemoveUntil': (props) => Navigator.pushAndRemoveUntil( - props['pa'][0], - props['pa'][1], - props['pa'][2], - ), - 'Navigator.restorablePushAndRemoveUntil': (props) => - Navigator.restorablePushAndRemoveUntil( - props['pa'][0], - props['pa'][1], - props['pa'][2], - arguments: props['arguments'], - ), - 'Navigator.replace': (props) => Navigator.replace( - props['pa'][0], - oldRoute: props['oldRoute'], - newRoute: props['newRoute'], - ), - 'Navigator.restorableReplace': (props) => Navigator.restorableReplace( - props['pa'][0], - oldRoute: props['oldRoute'], - newRouteBuilder: props['newRouteBuilder'], - arguments: props['arguments'], - ), - 'Navigator.replaceRouteBelow': (props) => Navigator.replaceRouteBelow( - props['pa'][0], - anchorRoute: props['anchorRoute'], - newRoute: props['newRoute'], - ), - 'Navigator.restorableReplaceRouteBelow': (props) => - Navigator.restorableReplaceRouteBelow( - props['pa'][0], - anchorRoute: props['anchorRoute'], - newRouteBuilder: props['newRouteBuilder'], - arguments: props['arguments'], - ), - 'Navigator.canPop': (props) => Navigator.canPop( - props['pa'][0], - ), - 'Navigator.maybePop': (props) => Navigator.maybePop( - props['pa'][0], - props['pa'][1], - ), - 'Navigator.pop': (props) => Navigator.pop( - props['pa'][0], - props['pa'][1], - ), - 'Navigator.popUntil': (props) => Navigator.popUntil( - props['pa'][0], - props['pa'][1], - ), - 'Navigator.removeRoute': (props) => Navigator.removeRoute( - props['pa'][0], - props['pa'][1], - ), - 'Navigator.removeRouteBelow': (props) => Navigator.removeRouteBelow( - props['pa'][0], - props['pa'][1], - ), - 'Navigator.of': (props) => Navigator.of( - props['pa'][0], - rootNavigator: props['rootNavigator'] ?? false, - ), - 'Navigator.maybeOf': (props) => Navigator.maybeOf( - props['pa'][0], - rootNavigator: props['rootNavigator'] ?? false, - ), - 'Navigator.defaultGenerateInitialRoutes': (props) => - Navigator.defaultGenerateInitialRoutes( - props['pa'][0], - props['pa'][1], - ), - 'RoutePopDisposition': { - 'values': RoutePopDisposition.values, - 'pop': RoutePopDisposition.pop, - 'doNotPop': RoutePopDisposition.doNotPop, - 'bubble': RoutePopDisposition.bubble, - }, - 'SliverLayoutBuilder': (props) => SliverLayoutBuilder( + ), + 'FormField': (props) => FormField( key: props['key'], builder: props['builder'], - ), - 'ReorderableList': (props) => ReorderableList( - key: props['key'], - itemBuilder: props['itemBuilder'], - itemCount: props['itemCount'], - onReorder: props['onReorder'], - itemExtent: props['itemExtent']?.toDouble(), - prototypeItem: props['prototypeItem'], - proxyDecorator: props['proxyDecorator'], - padding: props['padding'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], - controller: props['controller'], - primary: props['primary'], - physics: props['physics'], - shrinkWrap: props['shrinkWrap'], - anchor: props['anchor']?.toDouble(), - cacheExtent: props['cacheExtent']?.toDouble(), - dragStartBehavior: props['dragStartBehavior'], - keyboardDismissBehavior: props['keyboardDismissBehavior'], - restorationId: props['restorationId'], - clipBehavior: props['clipBehavior'], - ), - 'ReorderableList.of': (props) => ReorderableList.of( - props['pa'][0], - ), - 'ReorderableList.maybeOf': (props) => ReorderableList.maybeOf( - props['pa'][0], - ), - 'SliverReorderableList': (props) => SliverReorderableList( - key: props['key'], - itemBuilder: props['itemBuilder'], - itemCount: props['itemCount'], - onReorder: props['onReorder'], - itemExtent: props['itemExtent']?.toDouble(), - prototypeItem: props['prototypeItem'], - proxyDecorator: props['proxyDecorator'], - ), - 'SliverReorderableList.of': (props) => SliverReorderableList.of( - props['pa'][0], - ), - 'SliverReorderableList.maybeOf': (props) => SliverReorderableList.maybeOf( - props['pa'][0], - ), - 'ReorderableDragStartListener': (props) => ReorderableDragStartListener( - key: props['key'], - child: props['child'], - index: props['index'], - enabled: props['enabled'], - ), - 'ReorderableDelayedDragStartListener': (props) => - ReorderableDelayedDragStartListener( - key: props['key'], - child: props['child'], - index: props['index'], + onSaved: props['onSaved'], + validator: props['validator'], + initialValue: props['initialValue'], + // autovalidate: props['autovalidate'] ?? false, enabled: props['enabled'] ?? true, - ), - 'DefaultTextEditingActions': (props) => DefaultTextEditingActions( - key: props['key'], - child: props['child'], - ), - 'NavigationToolbar': (props) => NavigationToolbar( - key: props['key'], - leading: props['leading'], - middle: props['middle'], - trailing: props['trailing'], - centerMiddle: props['centerMiddle'], - middleSpacing: props['middleSpacing']?.toDouble(), - ), - 'NavigationToolbar.kMiddleSpacing': NavigationToolbar.kMiddleSpacing, - 'NestedScrollView': (props) => NestedScrollView( - key: props['key'], - controller: props['controller'], - scrollDirection: props['scrollDirection'], - reverse: props['reverse'], - physics: props['physics'], - headerSliverBuilder: props['headerSliverBuilder'], - body: props['body'], - dragStartBehavior: props['dragStartBehavior'], - floatHeaderSlivers: props['floatHeaderSlivers'], - clipBehavior: props['clipBehavior'], + autovalidateMode: props['autovalidateMode'], restorationId: props['restorationId'], - scrollBehavior: props['scrollBehavior'], - ), - 'NestedScrollView.sliverOverlapAbsorberHandleFor': (props) => - NestedScrollView.sliverOverlapAbsorberHandleFor( - props['pa'][0], - ), - 'SliverOverlapAbsorber': (props) => SliverOverlapAbsorber( - key: props['key'], - handle: props['handle'], - sliver: props['sliver'], - ), - 'SliverOverlapInjector': (props) => SliverOverlapInjector( - key: props['key'], - handle: props['handle'], - sliver: props['sliver'], - ), - 'NestedScrollViewViewport': (props) => NestedScrollViewViewport( - key: props['key'], - axisDirection: props['axisDirection'] ?? AxisDirection.down, - crossAxisDirection: props['crossAxisDirection'], - anchor: props['anchor']?.toDouble() ?? 0.0, - offset: props['offset'], - center: props['center'], - slivers: as(props['slivers']) ?? const [], - handle: props['handle'], - clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, - ), - 'Texture': (props) => Texture( - key: props['key'], - textureId: props['textureId'], - freeze: props['freeze'], - filterQuality: props['filterQuality'], - ), - 'IconThemeData.lerp': (props) => IconThemeData.lerp( - props['pa'][0], - props['pa'][1], - props['pa'][2]?.toDouble(), - ), + ), + 'FormField#builder': (props) => ( + FormFieldState field, + ) { + return (props['block']) as Widget; + }, + 'FormField#onSaved': (props) => ( + T newValue, + ) { + return (props['block']); + }, + 'FormField#validator': (props) => ( + T value, + ) { + return (props['block']) as String; + }, + 'AutovalidateMode': { + 'values': AutovalidateMode.values, + 'disabled': AutovalidateMode.disabled, + 'always': AutovalidateMode.always, + 'onUserInteraction': AutovalidateMode.onUserInteraction, + }, 'Image': (props) => Image( key: props['key'], image: props['image'], @@ -3058,21 +2827,21 @@ var p = () => { loadingBuilder: props['loadingBuilder'], errorBuilder: props['errorBuilder'], semanticLabel: props['semanticLabel'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, width: props['width']?.toDouble(), height: props['height']?.toDouble(), color: props['color'], opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - gaplessPlayback: props['gaplessPlayback'], - isAntiAlias: props['isAntiAlias'], - filterQuality: props['filterQuality'], - ), + matchTextDirection: props['matchTextDirection'] ?? false, + gaplessPlayback: props['gaplessPlayback'] ?? false, + isAntiAlias: props['isAntiAlias'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, + ), 'Image.network': (props) => Image.network( props['pa'][0], key: props['key'], @@ -3081,24 +2850,24 @@ var p = () => { loadingBuilder: props['loadingBuilder'], errorBuilder: props['errorBuilder'], semanticLabel: props['semanticLabel'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, width: props['width']?.toDouble(), height: props['height']?.toDouble(), color: props['color'], opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - gaplessPlayback: props['gaplessPlayback'], - filterQuality: props['filterQuality'], - isAntiAlias: props['isAntiAlias'], + matchTextDirection: props['matchTextDirection'] ?? false, + gaplessPlayback: props['gaplessPlayback'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, + isAntiAlias: props['isAntiAlias'] ?? false, headers: props['headers'], cacheWidth: props['cacheWidth'], cacheHeight: props['cacheHeight'], - ), + ), 'Image.file': (props) => Image.file( props['pa'][0], key: props['key'], @@ -3106,23 +2875,23 @@ var p = () => { frameBuilder: props['frameBuilder'], errorBuilder: props['errorBuilder'], semanticLabel: props['semanticLabel'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, width: props['width']?.toDouble(), height: props['height']?.toDouble(), color: props['color'], opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - gaplessPlayback: props['gaplessPlayback'], - isAntiAlias: props['isAntiAlias'], - filterQuality: props['filterQuality'], + matchTextDirection: props['matchTextDirection'] ?? false, + gaplessPlayback: props['gaplessPlayback'] ?? false, + isAntiAlias: props['isAntiAlias'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, cacheWidth: props['cacheWidth'], cacheHeight: props['cacheHeight'], - ), + ), 'Image.asset': (props) => Image.asset( props['pa'][0], key: props['key'], @@ -3130,7 +2899,7 @@ var p = () => { frameBuilder: props['frameBuilder'], errorBuilder: props['errorBuilder'], semanticLabel: props['semanticLabel'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, scale: props['scale']?.toDouble() ?? 1.0, width: props['width']?.toDouble(), height: props['height']?.toDouble(), @@ -3138,17 +2907,17 @@ var p = () => { opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - gaplessPlayback: props['gaplessPlayback'], - isAntiAlias: props['isAntiAlias'], + matchTextDirection: props['matchTextDirection'] ?? false, + gaplessPlayback: props['gaplessPlayback'] ?? false, + isAntiAlias: props['isAntiAlias'] ?? false, package: props['package'], - filterQuality: props['filterQuality'], + filterQuality: props['filterQuality'] ?? FilterQuality.low, cacheWidth: props['cacheWidth'], cacheHeight: props['cacheHeight'], - ), + ), 'Image.memory': (props) => Image.memory( props['pa'][0], key: props['key'], @@ -3156,189 +2925,1110 @@ var p = () => { frameBuilder: props['frameBuilder'], errorBuilder: props['errorBuilder'], semanticLabel: props['semanticLabel'], - excludeFromSemantics: props['excludeFromSemantics'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, width: props['width']?.toDouble(), height: props['height']?.toDouble(), color: props['color'], opacity: props['opacity'], colorBlendMode: props['colorBlendMode'], fit: props['fit'], - alignment: props['alignment'], - repeat: props['repeat'], + alignment: props['alignment'] ?? Alignment.center, + repeat: props['repeat'] ?? ImageRepeat.noRepeat, centerSlice: props['centerSlice'], - matchTextDirection: props['matchTextDirection'], - gaplessPlayback: props['gaplessPlayback'], - isAntiAlias: props['isAntiAlias'], - filterQuality: props['filterQuality'], + matchTextDirection: props['matchTextDirection'] ?? false, + gaplessPlayback: props['gaplessPlayback'] ?? false, + isAntiAlias: props['isAntiAlias'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, cacheWidth: props['cacheWidth'], cacheHeight: props['cacheHeight'], - ), - 'Form': (props) => Form( - key: props['key'], - child: props['child'], - onWillPop: props['onWillPop'], - onChanged: props['onChanged'], - autovalidateMode: props['autovalidateMode'], - ), - 'Form.of': (props) => Form.of( + ), + 'Image#frameBuilder': (props) => ( + BuildContext context, + Widget child, + int frame, + bool wasSynchronouslyLoaded, + ) { + return (props['block']) as Widget; + }, + 'Image#loadingBuilder': (props) => ( + BuildContext context, + Widget child, + dynamic loadingProgress, + ) { + return (props['block']) as Widget; + }, + 'Image#errorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'Image.network#frameBuilder': (props) => ( + BuildContext context, + Widget child, + int frame, + bool wasSynchronouslyLoaded, + ) { + return (props['block']) as Widget; + }, + 'Image.network#loadingBuilder': (props) => ( + BuildContext context, + Widget child, + dynamic loadingProgress, + ) { + return (props['block']) as Widget; + }, + 'Image.network#errorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'Image.file#frameBuilder': (props) => ( + BuildContext context, + Widget child, + int frame, + bool wasSynchronouslyLoaded, + ) { + return (props['block']) as Widget; + }, + 'Image.file#errorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'Image.asset#frameBuilder': (props) => ( + BuildContext context, + Widget child, + int frame, + bool wasSynchronouslyLoaded, + ) { + return (props['block']) as Widget; + }, + 'Image.asset#errorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'Image.memory#frameBuilder': (props) => ( + BuildContext context, + Widget child, + int frame, + bool wasSynchronouslyLoaded, + ) { + return (props['block']) as Widget; + }, + 'Image.memory#errorBuilder': (props) => ( + BuildContext context, + Object error, + StackTrace stackTrace, + ) { + return (props['block']) as Widget; + }, + 'IconThemeData.lerp': (props) => IconThemeData.lerp( props['pa'][0], - ), - 'FormField': (props) => FormField( + props['pa'][1], + props['pa'][2]?.toDouble(), + ), + 'Texture': (props) => Texture( key: props['key'], - builder: props['builder'], - onSaved: props['onSaved'], - validator: props['validator'], - initialValue: props['initialValue'], - enabled: props['enabled'], - autovalidateMode: props['autovalidateMode'], + textureId: props['textureId'], + freeze: props['freeze'] ?? false, + filterQuality: props['filterQuality'] ?? FilterQuality.low, + ), + 'NestedScrollView': (props) => NestedScrollView( + key: props['key'], + controller: props['controller'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + physics: props['physics'], + headerSliverBuilder: props['headerSliverBuilder'], + body: props['body'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + floatHeaderSlivers: props['floatHeaderSlivers'] ?? false, + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, restorationId: props['restorationId'], - ), - 'AutovalidateMode': { - 'values': AutovalidateMode.values, - 'disabled': AutovalidateMode.disabled, - 'always': AutovalidateMode.always, - 'onUserInteraction': AutovalidateMode.onUserInteraction, + scrollBehavior: props['scrollBehavior'], + ), + 'NestedScrollView#headerSliverBuilder': (props) => ( + BuildContext context, + bool innerBoxIsScrolled, + ) { + return (props['block']) as List; }, - 'ActionListener': (props) => ActionListener( + 'NestedScrollView.sliverOverlapAbsorberHandleFor': (props) => + NestedScrollView.sliverOverlapAbsorberHandleFor( + props['pa'][0], + ), + 'SliverOverlapAbsorber': (props) => SliverOverlapAbsorber( + key: props['key'], + handle: props['handle'], + sliver: props['sliver'], + ), + 'SliverOverlapInjector': (props) => SliverOverlapInjector( + key: props['key'], + handle: props['handle'], + sliver: props['sliver'], + ), + 'NestedScrollViewViewport': (props) => NestedScrollViewViewport( + key: props['key'], + axisDirection: props['axisDirection'] ?? AxisDirection.down, + crossAxisDirection: props['crossAxisDirection'], + anchor: props['anchor']?.toDouble() ?? 0.0, + offset: props['offset'], + center: props['center'], + slivers: as(props['slivers']) ?? const [], + handle: props['handle'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'NavigationToolbar': (props) => NavigationToolbar( + key: props['key'], + leading: props['leading'], + middle: props['middle'], + trailing: props['trailing'], + centerMiddle: props['centerMiddle'] ?? true, + middleSpacing: props['middleSpacing']?.toDouble() ?? kMiddleSpacing, + ), + 'NavigationToolbar.kMiddleSpacing': NavigationToolbar.kMiddleSpacing, + 'DefaultTextEditingActions': (props) => DefaultTextEditingActions( + key: props['key'], + child: props['child'], + ), + 'ReorderableList': (props) => ReorderableList( + key: props['key'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + padding: props['padding'], + scrollDirection: props['scrollDirection'] ?? Axis.vertical, + reverse: props['reverse'] ?? false, + controller: props['controller'], + primary: props['primary'], + physics: props['physics'], + shrinkWrap: props['shrinkWrap'] ?? false, + anchor: props['anchor']?.toDouble() ?? 0.0, + cacheExtent: props['cacheExtent']?.toDouble(), + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + keyboardDismissBehavior: props['keyboardDismissBehavior'] ?? + ScrollViewKeyboardDismissBehavior.manual, + restorationId: props['restorationId'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + ), + 'ReorderableList#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, + 'ReorderableList#onReorder': (props) => ( + int oldIndex, + int newIndex, + ) { + return (props['block']); + }, + 'ReorderableList#proxyDecorator': (props) => ( + Widget child, + int index, + dynamic animation, + ) { + return (props['block']) as Widget; + }, + 'ReorderableList.of': (props) => ReorderableList.of( + props['pa'][0], + ), + 'ReorderableList.maybeOf': (props) => ReorderableList.maybeOf( + props['pa'][0], + ), + 'SliverReorderableList': (props) => SliverReorderableList( + key: props['key'], + itemBuilder: props['itemBuilder'], + itemCount: props['itemCount'], + onReorder: props['onReorder'], + itemExtent: props['itemExtent']?.toDouble(), + prototypeItem: props['prototypeItem'], + proxyDecorator: props['proxyDecorator'], + ), + 'SliverReorderableList#itemBuilder': (props) => ( + BuildContext context, + int index, + ) { + return (props['block']) as Widget; + }, + 'SliverReorderableList#onReorder': (props) => ( + int oldIndex, + int newIndex, + ) { + return (props['block']); + }, + 'SliverReorderableList#proxyDecorator': (props) => ( + Widget child, + int index, + dynamic animation, + ) { + return (props['block']) as Widget; + }, + 'SliverReorderableList.of': (props) => SliverReorderableList.of( + props['pa'][0], + ), + 'SliverReorderableList.maybeOf': (props) => SliverReorderableList.maybeOf( + props['pa'][0], + ), + 'ReorderableDragStartListener': (props) => ReorderableDragStartListener( + key: props['key'], + child: props['child'], + index: props['index'], + enabled: props['enabled'] ?? true, + ), + 'ReorderableDelayedDragStartListener': (props) => + ReorderableDelayedDragStartListener( + key: props['key'], + child: props['child'], + index: props['index'], + enabled: props['enabled'] ?? true, + ), + 'SliverLayoutBuilder': (props) => SliverLayoutBuilder( + key: props['key'], + builder: props['builder'], + ), + 'SliverLayoutBuilder#builder': (props) => ( + BuildContext context, + dynamic constraints, + ) { + return (props['block']) as Widget; + }, + 'HeroControllerScope': (props) => HeroControllerScope( + key: props['key'], + controller: props['controller'], + child: props['child'], + ), + 'HeroControllerScope.none': (props) => HeroControllerScope.none( + key: props['key'], + child: props['child'], + ), + 'HeroControllerScope.of': (props) => HeroControllerScope.of( + props['pa'][0], + ), + 'Navigator': (props) => Navigator( + key: props['key'], + pages: as(props['pages']) ?? const >[], + onPopPage: props['onPopPage'], + initialRoute: props['initialRoute'], + onGenerateInitialRoutes: props['onGenerateInitialRoutes'] ?? + Navigator.defaultGenerateInitialRoutes, + onGenerateRoute: props['onGenerateRoute'], + onUnknownRoute: props['onUnknownRoute'], + transitionDelegate: props['transitionDelegate'] ?? + const DefaultTransitionDelegate(), + reportsRouteUpdateToEngine: + props['reportsRouteUpdateToEngine'] ?? false, + observers: as(props['observers']) ?? + const [], + restorationScopeId: props['restorationScopeId'], + ), + 'Navigator#onPopPage': (props) => ( + Route route, + dynamic result, + ) { + return (props['block']) as bool; + }, + 'Navigator#onGenerateInitialRoutes': (props) => ( + NavigatorState navigator, + String initialRoute, + ) { + return (props['block']) as List; + }, + 'Navigator#onGenerateRoute': (props) => ( + RouteSettings settings, + ) { + return (props['block']) as Route; + }, + 'Navigator#onUnknownRoute': (props) => ( + RouteSettings settings, + ) { + return (props['block']) as Route; + }, + 'Navigator.defaultRouteName': Navigator.defaultRouteName, + // 'Navigator.pushNamed': (props) => Navigator.pushNamed( + // props['pa'][0], + // props['pa'][1], + // arguments: props['arguments'], + // ), + 'Navigator.restorablePushNamed': (props) => Navigator.restorablePushNamed( + props['pa'][0], + props['pa'][1], + arguments: props['arguments'], + ), + 'Navigator.pushReplacementNamed': (props) => + Navigator.pushReplacementNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.restorablePushReplacementNamed': (props) => + Navigator.restorablePushReplacementNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.popAndPushNamed': (props) => Navigator.popAndPushNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.restorablePopAndPushNamed': (props) => + Navigator.restorablePopAndPushNamed( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.pushNamedAndRemoveUntil': (props) => + Navigator.pushNamedAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.restorablePushNamedAndRemoveUntil': (props) => + Navigator.restorablePushNamedAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.push': (props) => Navigator.push( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.restorablePush': (props) => Navigator.restorablePush( + props['pa'][0], + props['pa'][1], + arguments: props['arguments'], + ), + 'Navigator.pushReplacement': (props) => Navigator.pushReplacement( + props['pa'][0], + props['pa'][1], + result: props['result'], + ), + 'Navigator.restorablePushReplacement': (props) => + Navigator.restorablePushReplacement( + props['pa'][0], + props['pa'][1], + result: props['result'], + arguments: props['arguments'], + ), + 'Navigator.pushAndRemoveUntil': (props) => Navigator.pushAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + ), + 'Navigator.restorablePushAndRemoveUntil': (props) => + Navigator.restorablePushAndRemoveUntil( + props['pa'][0], + props['pa'][1], + props['pa'][2], + arguments: props['arguments'], + ), + 'Navigator.replace': (props) => Navigator.replace( + props['pa'][0], + oldRoute: props['oldRoute'], + newRoute: props['newRoute'], + ), + 'Navigator.restorableReplace': (props) => Navigator.restorableReplace( + props['pa'][0], + oldRoute: props['oldRoute'], + newRouteBuilder: props['newRouteBuilder'], + arguments: props['arguments'], + ), + 'Navigator.replaceRouteBelow': (props) => Navigator.replaceRouteBelow( + props['pa'][0], + anchorRoute: props['anchorRoute'], + newRoute: props['newRoute'], + ), + 'Navigator.restorableReplaceRouteBelow': (props) => + Navigator.restorableReplaceRouteBelow( + props['pa'][0], + anchorRoute: props['anchorRoute'], + newRouteBuilder: props['newRouteBuilder'], + arguments: props['arguments'], + ), + 'Navigator.canPop': (props) => Navigator.canPop( + props['pa'][0], + ), + 'Navigator.maybePop': (props) => Navigator.maybePop( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.pop': (props) => Navigator.pop( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.popUntil': (props) => Navigator.popUntil( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.removeRoute': (props) => Navigator.removeRoute( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.removeRouteBelow': (props) => Navigator.removeRouteBelow( + props['pa'][0], + props['pa'][1], + ), + 'Navigator.of': (props) => Navigator.of( + props['pa'][0], + rootNavigator: props['rootNavigator'] ?? false, + ), + 'Navigator.maybeOf': (props) => Navigator.maybeOf( + props['pa'][0], + rootNavigator: props['rootNavigator'] ?? false, + ), + 'Navigator.defaultGenerateInitialRoutes': (props) => + Navigator.defaultGenerateInitialRoutes( + props['pa'][0], + props['pa'][1], + ), + 'RoutePopDisposition': { + 'values': RoutePopDisposition.values, + 'pop': RoutePopDisposition.pop, + 'doNotPop': RoutePopDisposition.doNotPop, + 'bubble': RoutePopDisposition.bubble, + }, + 'PreferredSize': (props) => PreferredSize( + key: props['key'], + child: props['child'], + preferredSize: props['preferredSize'], + ), + 'ValueListenableBuilder': (props) => ValueListenableBuilder( + key: props['key'], + valueListenable: props['valueListenable'], + builder: props['builder'], + child: props['child'], + ), + 'ValueListenableBuilder#builder': (props) => ( + BuildContext context, + T value, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'MediaQuery': (props) => MediaQuery( + key: props['key'], + data: props['data'], + child: props['child'], + ), + 'MediaQuery.removePadding': (props) => MediaQuery.removePadding( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.removeViewInsets': (props) => MediaQuery.removeViewInsets( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.removeViewPadding': (props) => MediaQuery.removeViewPadding( + key: props['key'], + context: props['context'], + removeLeft: props['removeLeft'] ?? false, + removeTop: props['removeTop'] ?? false, + removeRight: props['removeRight'] ?? false, + removeBottom: props['removeBottom'] ?? false, + child: props['child'], + ), + 'MediaQuery.fromWindow': (props) => MediaQuery.fromWindow( + key: props['key'], + child: props['child'], + ), + 'MediaQuery.of': (props) => MediaQuery.of( + props['pa'][0], + ), + 'MediaQuery.maybeOf': (props) => MediaQuery.maybeOf( + props['pa'][0], + ), + 'MediaQuery.textScaleFactorOf': (props) => MediaQuery.textScaleFactorOf( + props['pa'][0], + ), + 'MediaQuery.platformBrightnessOf': (props) => + MediaQuery.platformBrightnessOf( + props['pa'][0], + ), + 'MediaQuery.highContrastOf': (props) => MediaQuery.highContrastOf( + props['pa'][0], + ), + 'MediaQuery.boldTextOverride': (props) => MediaQuery.boldTextOverride( + props['pa'][0], + ), + 'Orientation': { + 'values': Orientation.values, + 'portrait': Orientation.portrait, + 'landscape': Orientation.landscape, + }, + 'NavigationMode': { + 'values': NavigationMode.values, + 'traditional': NavigationMode.traditional, + 'directional': NavigationMode.directional, + }, + 'DraggableScrollableSheet': (props) => DraggableScrollableSheet( + key: props['key'], + initialChildSize: props['initialChildSize']?.toDouble() ?? 0.5, + minChildSize: props['minChildSize']?.toDouble() ?? 0.25, + maxChildSize: props['maxChildSize']?.toDouble() ?? 1.0, + expand: props['expand'] ?? true, + builder: props['builder'], + ), + 'DraggableScrollableSheet#builder': (props) => ( + BuildContext context, + ScrollController scrollController, + ) { + return (props['block']) as Widget; + }, + 'DraggableScrollableActuator': (props) => DraggableScrollableActuator( + key: props['key'], + child: props['child'], + ), + 'DraggableScrollableActuator.reset': (props) => + DraggableScrollableActuator.reset( + props['pa'][0], + ), + 'DecoratedBox': (props) => DecoratedBox( + key: props['key'], + decoration: props['decoration'], + position: props['position'] ?? DecorationPosition.background, + child: props['child'], + ), + 'Container': (props) => Container( + key: props['key'], + alignment: props['alignment'], + padding: props['padding'], + color: props['color'], + decoration: props['decoration'], + foregroundDecoration: props['foregroundDecoration'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + constraints: props['constraints'], + margin: props['margin'], + transform: props['transform'], + transformAlignment: props['transformAlignment'], + child: props['child'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + ), + 'EditableText': (props) => EditableText( + key: props['key'], + controller: props['controller'], + focusNode: props['focusNode'], + readOnly: props['readOnly'] ?? false, + obscuringCharacter: props['obscuringCharacter'] ?? '•', + obscureText: props['obscureText'] ?? false, + autocorrect: props['autocorrect'] ?? true, + smartDashesType: props['smartDashesType'], + smartQuotesType: props['smartQuotesType'], + enableSuggestions: props['enableSuggestions'] ?? true, + style: props['style'], + strutStyle: props['strutStyle'], + cursorColor: props['cursorColor'], + backgroundCursorColor: props['backgroundCursorColor'], + textAlign: props['textAlign'] ?? TextAlign.start, + textDirection: props['textDirection'], + locale: props['locale'], + textScaleFactor: props['textScaleFactor']?.toDouble(), + maxLines: props['maxLines'] ?? 1, + minLines: props['minLines'], + expands: props['expands'] ?? false, + forceLine: props['forceLine'] ?? true, + textHeightBehavior: props['textHeightBehavior'], + textWidthBasis: props['textWidthBasis'] ?? TextWidthBasis.parent, + autofocus: props['autofocus'] ?? false, + showCursor: props['showCursor'], + showSelectionHandles: props['showSelectionHandles'] ?? false, + selectionColor: props['selectionColor'], + selectionControls: props['selectionControls'], + keyboardType: props['keyboardType'], + textInputAction: props['textInputAction'], + textCapitalization: + props['textCapitalization'] ?? TextCapitalization.none, + onChanged: props['onChanged'], + onEditingComplete: props['onEditingComplete'], + onSubmitted: props['onSubmitted'], + onAppPrivateCommand: props['onAppPrivateCommand'], + onSelectionChanged: props['onSelectionChanged'], + onSelectionHandleTapped: props['onSelectionHandleTapped'], + inputFormatters: as(props['inputFormatters']), + mouseCursor: props['mouseCursor'], + rendererIgnoresPointer: props['rendererIgnoresPointer'] ?? false, + cursorWidth: props['cursorWidth']?.toDouble() ?? 2.0, + cursorHeight: props['cursorHeight']?.toDouble(), + cursorRadius: props['cursorRadius'], + cursorOpacityAnimates: props['cursorOpacityAnimates'] ?? false, + cursorOffset: props['cursorOffset'], + paintCursorAboveText: props['paintCursorAboveText'] ?? false, + selectionHeightStyle: + props['selectionHeightStyle'] ?? ui.BoxHeightStyle.tight, + selectionWidthStyle: + props['selectionWidthStyle'] ?? ui.BoxWidthStyle.tight, + scrollPadding: props['scrollPadding'] ?? const EdgeInsets.all(20.0), + keyboardAppearance: props['keyboardAppearance'] ?? Brightness.light, + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + enableInteractiveSelection: + props['enableInteractiveSelection'] ?? true, + scrollController: props['scrollController'], + scrollPhysics: props['scrollPhysics'], + autocorrectionTextRectColor: props['autocorrectionTextRectColor'], + toolbarOptions: props['toolbarOptions'] ?? + const ToolbarOptions( + copy: true, cut: true, paste: true, selectAll: true), + autofillHints: props['autofillHints'], + clipBehavior: props['clipBehavior'] ?? Clip.hardEdge, + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + enableIMEPersonalizedLearning: + props['enableIMEPersonalizedLearning'] ?? true, + ), + 'EditableText#onAppPrivateCommand': (props) => ( + String, + Map, + ) { + return (props['block']); + }, + 'EditableText#onSelectionChanged': (props) => ( + dynamic selection, + dynamic cause, + ) { + return (props['block']); + }, + 'Placeholder': (props) => Placeholder( + key: props['key'], + color: props['color'] ?? const Color(0xFF455A64), + strokeWidth: props['strokeWidth']?.toDouble() ?? 2.0, + fallbackWidth: props['fallbackWidth']?.toDouble() ?? 400.0, + fallbackHeight: props['fallbackHeight']?.toDouble() ?? 400.0, + ), + 'Icon': (props) => Icon( + props['pa'][0], + key: props['key'], + size: props['size']?.toDouble(), + color: props['color'], + semanticLabel: props['semanticLabel'], + textDirection: props['textDirection'], + ), + 'Visibility': (props) => Visibility( + key: props['key'], + child: props['child'], + replacement: props['replacement'] ?? const SizedBox.shrink(), + visible: props['visible'] ?? true, + maintainState: props['maintainState'] ?? false, + maintainAnimation: props['maintainAnimation'] ?? false, + maintainSize: props['maintainSize'] ?? false, + maintainSemantics: props['maintainSemantics'] ?? false, + maintainInteractivity: props['maintainInteractivity'] ?? false, + ), + 'SliverVisibility': (props) => SliverVisibility( + key: props['key'], + sliver: props['sliver'], + replacementSliver: + props['replacementSliver'] ?? const SliverToBoxAdapter(), + visible: props['visible'] ?? true, + maintainState: props['maintainState'] ?? false, + maintainAnimation: props['maintainAnimation'] ?? false, + maintainSize: props['maintainSize'] ?? false, + maintainSemantics: props['maintainSemantics'] ?? false, + maintainInteractivity: props['maintainInteractivity'] ?? false, + ), + 'AnimatedContainer': (props) => AnimatedContainer( + key: props['key'], + alignment: props['alignment'], + padding: props['padding'], + color: props['color'], + decoration: props['decoration'], + foregroundDecoration: props['foregroundDecoration'], + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + constraints: props['constraints'], + margin: props['margin'], + transform: props['transform'], + transformAlignment: props['transformAlignment'], + child: props['child'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPadding': (props) => AnimatedPadding( + key: props['key'], + padding: props['padding'], + child: props['child'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedAlign': (props) => AnimatedAlign( + key: props['key'], + alignment: props['alignment'], + child: props['child'], + heightFactor: props['heightFactor']?.toDouble(), + widthFactor: props['widthFactor']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositioned': (props) => AnimatedPositioned( + key: props['key'], + child: props['child'], + left: props['left']?.toDouble(), + top: props['top']?.toDouble(), + right: props['right']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositioned.fromRect': (props) => AnimatedPositioned.fromRect( + key: props['key'], + child: props['child'], + rect: props['rect'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPositionedDirectional': (props) => AnimatedPositionedDirectional( + key: props['key'], + child: props['child'], + start: props['start']?.toDouble(), + top: props['top']?.toDouble(), + end: props['end']?.toDouble(), + bottom: props['bottom']?.toDouble(), + width: props['width']?.toDouble(), + height: props['height']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedScale': (props) => AnimatedScale( key: props['key'], - listener: props['listener'], - action: props['action'], child: props['child'], - ), - 'Actions': (props) => Actions( + scale: props['scale']?.toDouble(), + alignment: props['alignment'] ?? Alignment.center, + filterQuality: props['filterQuality'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedRotation': (props) => AnimatedRotation( key: props['key'], - dispatcher: props['dispatcher'], - actions: props['actions'], child: props['child'], - ), - 'Actions.handler': (props) => Actions.handler( - props['pa'][0], - props['pa'][1] as T, - ), - 'Actions.find': (props) => Actions.find( - props['pa'][0], - intent: props['intent'] as T, - ), - 'Actions.maybeFind': (props) => Actions.maybeFind( - props['pa'][0], - intent: props['intent'] as T, - ), - 'Actions.of': (props) => Actions.of( - props['pa'][0], - ), - 'Actions.invoke': (props) => Actions.invoke( - props['pa'][0], - props['pa'][1] as T, - ), - 'Actions.maybeInvoke': (props) => Actions.maybeInvoke( - props['pa'][0], - props['pa'][1] as T, - ), - 'FocusableActionDetector': (props) => FocusableActionDetector( + turns: props['turns']?.toDouble(), + alignment: props['alignment'] ?? Alignment.center, + filterQuality: props['filterQuality'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedSlide': (props) => AnimatedSlide( key: props['key'], - enabled: props['enabled'], - focusNode: props['focusNode'], - autofocus: props['autofocus'], - descendantsAreFocusable: props['descendantsAreFocusable'], - shortcuts: props['shortcuts'], - actions: props['actions'], - onShowFocusHighlight: props['onShowFocusHighlight'], - onShowHoverHighlight: props['onShowHoverHighlight'], - onFocusChange: props['onFocusChange'], - mouseCursor: props['mouseCursor'], child: props['child'], - ), - 'StreamBuilder': (props) => StreamBuilder( + offset: props['offset'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedOpacity': (props) => AnimatedOpacity( key: props['key'], - initialData: props['initialData'], - stream: props['stream'], - builder: props['builder'], - ), - 'FutureBuilder': (props) => FutureBuilder( + child: props['child'], + opacity: props['opacity']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, + ), + 'SliverAnimatedOpacity': (props) => SliverAnimatedOpacity( key: props['key'], - future: props['future'], - initialData: props['initialData'], - builder: props['builder'], - ), - 'ConnectionState': { - 'values': ConnectionState.values, - 'none': ConnectionState.none, - 'waiting': ConnectionState.waiting, - 'active': ConnectionState.active, - 'done': ConnectionState.done, - }, - 'DefaultTextStyle': (props) => DefaultTextStyle( + sliver: props['sliver'], + opacity: props['opacity']?.toDouble(), + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + alwaysIncludeSemantics: props['alwaysIncludeSemantics'] ?? false, + ), + 'AnimatedDefaultTextStyle': (props) => AnimatedDefaultTextStyle( key: props['key'], + child: props['child'], style: props['style'], textAlign: props['textAlign'], - softWrap: props['softWrap'], - overflow: props['overflow'], + softWrap: props['softWrap'] ?? true, + overflow: props['overflow'] ?? TextOverflow.clip, maxLines: props['maxLines'], - textWidthBasis: props['textWidthBasis'], + textWidthBasis: props['textWidthBasis'] ?? TextWidthBasis.parent, textHeightBehavior: props['textHeightBehavior'], + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'AnimatedPhysicalModel': (props) => AnimatedPhysicalModel( + key: props['key'], child: props['child'], - ), - 'DefaultTextStyle.fallback': (props) => DefaultTextStyle.fallback( + shape: props['shape'], + clipBehavior: props['clipBehavior'] ?? Clip.none, + borderRadius: props['borderRadius'] ?? BorderRadius.zero, + elevation: props['elevation']?.toDouble(), + color: props['color'], + animateColor: props['animateColor'] ?? true, + shadowColor: props['shadowColor'], + animateShadowColor: props['animateShadowColor'] ?? true, + curve: props['curve'] ?? Curves.linear, + duration: props['duration'], + onEnd: props['onEnd'], + ), + 'Table': (props) => Table( key: props['key'], - ), - 'DefaultTextStyle.merge': (props) => DefaultTextStyle.merge( + children: as(props['children']) ?? const [], + columnWidths: props['columnWidths'], + defaultColumnWidth: + props['defaultColumnWidth'] ?? const FlexColumnWidth(1.0), + textDirection: props['textDirection'], + border: props['border'], + defaultVerticalAlignment: props['defaultVerticalAlignment'] ?? + TableCellVerticalAlignment.top, + textBaseline: props['textBaseline'], + ), + 'TableCell': (props) => TableCell( + key: props['key'], + verticalAlignment: props['verticalAlignment'], + child: props['child'], + ), + 'SliverPrototypeExtentList': (props) => SliverPrototypeExtentList( + key: props['key'], + delegate: props['delegate'], + prototypeItem: props['prototypeItem'], + ), + 'AnimatedSwitcher': (props) => AnimatedSwitcher( key: props['key'], - style: props['style'], - textAlign: props['textAlign'], - softWrap: props['softWrap'], - overflow: props['overflow'], - maxLines: props['maxLines'], - textWidthBasis: props['textWidthBasis'], child: props['child'], + duration: props['duration'], + reverseDuration: props['reverseDuration'], + switchInCurve: props['switchInCurve'] ?? Curves.linear, + switchOutCurve: props['switchOutCurve'] ?? Curves.linear, + transitionBuilder: props['transitionBuilder'] ?? + AnimatedSwitcher.defaultTransitionBuilder, + ), + 'AnimatedSwitcher#transitionBuilder': (props) => ( + Widget child, + dynamic animation, + ) { + return (props['block']) as Widget; + }, + 'AnimatedSwitcher#layoutBuilder': (props) => ( + Widget currentChild, + List previousChildren, + ) { + return (props['block']) as Widget; + }, + 'AnimatedSwitcher.defaultTransitionBuilder': (props) => + AnimatedSwitcher.defaultTransitionBuilder( + props['pa'][0], + props['pa'][1], ), - 'DefaultTextStyle.of': (props) => DefaultTextStyle.of( - props['pa'][0], + 'AnimatedSwitcher.defaultLayoutBuilder': (props) => + AnimatedSwitcher.defaultLayoutBuilder( + props['pa'][0], + props['pa'][1], ), - 'DefaultTextHeightBehavior': (props) => DefaultTextHeightBehavior( + 'Title': (props) => Title( key: props['key'], - textHeightBehavior: props['textHeightBehavior'], + title: props['title'] ?? '', + color: props['color'], child: props['child'], - ), - 'DefaultTextHeightBehavior.of': (props) => DefaultTextHeightBehavior.of( + ), + 'ColorFiltered': (props) => ColorFiltered( + colorFilter: props['colorFilter'], + child: props['child'], + key: props['key'], + ), + 'FocusTraversalOrder': (props) => FocusTraversalOrder( + key: props['key'], + order: props['order'], + child: props['child'], + ), + 'FocusTraversalOrder.of': (props) => FocusTraversalOrder.of( props['pa'][0], - ), - 'Text': (props) => Text( + ), + 'FocusTraversalOrder.maybeOf': (props) => FocusTraversalOrder.maybeOf( props['pa'][0], + ), + 'FocusTraversalGroup': (props) => FocusTraversalGroup( key: props['key'], - style: props['style'], - strutStyle: props['strutStyle'], - textAlign: props['textAlign'], - textDirection: props['textDirection'], - locale: props['locale'], - softWrap: props['softWrap'], - overflow: props['overflow'], - textScaleFactor: props['textScaleFactor']?.toDouble(), - maxLines: props['maxLines'], - semanticsLabel: props['semanticsLabel'], - textWidthBasis: props['textWidthBasis'], - textHeightBehavior: props['textHeightBehavior'], - ), - 'Text.rich': (props) => Text.rich( + policy: props['policy'], + descendantsAreFocusable: props['descendantsAreFocusable'] ?? true, + child: props['child'], + ), + 'FocusTraversalGroup.of': (props) => FocusTraversalGroup.of( + props['pa'][0], + ), + 'FocusTraversalGroup.maybeOf': (props) => FocusTraversalGroup.maybeOf( props['pa'][0], + ), + 'TraversalDirection': { + 'values': TraversalDirection.values, + 'up': TraversalDirection.up, + 'right': TraversalDirection.right, + 'down': TraversalDirection.down, + 'left': TraversalDirection.left, + }, + 'KeyEventResult': { + 'values': KeyEventResult.values, + 'handled': KeyEventResult.handled, + 'ignored': KeyEventResult.ignored, + 'skipRemainingHandlers': KeyEventResult.skipRemainingHandlers, + }, + 'UnfocusDisposition': { + 'values': UnfocusDisposition.values, + 'scope': UnfocusDisposition.scope, + 'previouslyFocusedChild': UnfocusDisposition.previouslyFocusedChild, + }, + 'FocusHighlightMode': { + 'values': FocusHighlightMode.values, + 'touch': FocusHighlightMode.touch, + 'traditional': FocusHighlightMode.traditional, + }, + 'FocusHighlightStrategy': { + 'values': FocusHighlightStrategy.values, + 'automatic': FocusHighlightStrategy.automatic, + 'alwaysTouch': FocusHighlightStrategy.alwaysTouch, + 'alwaysTraditional': FocusHighlightStrategy.alwaysTraditional, + }, + 'OrientationBuilder': (props) => OrientationBuilder( key: props['key'], - style: props['style'], - strutStyle: props['strutStyle'], - textAlign: props['textAlign'], - textDirection: props['textDirection'], - locale: props['locale'], - softWrap: props['softWrap'], - overflow: props['overflow'], - textScaleFactor: props['textScaleFactor']?.toDouble(), - maxLines: props['maxLines'], - semanticsLabel: props['semanticsLabel'], - textWidthBasis: props['textWidthBasis'], - textHeightBehavior: props['textHeightBehavior'], + builder: props['builder'], + ), + 'OrientationBuilder#builder': (props) => ( + BuildContext context, + Orientation orientation, + ) { + return (props['block']) as Widget; + }, + 'Scrollable': (props) => Scrollable( + key: props['key'], + axisDirection: props['axisDirection'] ?? AxisDirection.down, + controller: props['controller'], + physics: props['physics'], + viewportBuilder: props['viewportBuilder'], + incrementCalculator: props['incrementCalculator'], + excludeFromSemantics: props['excludeFromSemantics'] ?? false, + semanticChildCount: props['semanticChildCount'], + dragStartBehavior: + props['dragStartBehavior'] ?? DragStartBehavior.start, + restorationId: props['restorationId'], + scrollBehavior: props['scrollBehavior'], + ), + 'Scrollable#viewportBuilder': (props) => ( + BuildContext context, + dynamic position, + ) { + return (props['block']) as Widget; + }, + 'Scrollable#incrementCalculator': (props) => ( + ScrollIncrementDetails details, + ) { + return (props['block']) as double; + }, + 'Scrollable.of': (props) => Scrollable.of( + props['pa'][0], + ), + 'Scrollable.recommendDeferredLoadingForContext': (props) => + Scrollable.recommendDeferredLoadingForContext( + props['pa'][0], ), + 'Scrollable.ensureVisible': (props) => Scrollable.ensureVisible( + props['pa'][0], + alignment: props['alignment']?.toDouble() ?? 0.0, + duration: props['duration'] ?? Duration.zero, + curve: props['curve'] ?? Curves.ease, + alignmentPolicy: props['alignmentPolicy'] ?? + ScrollPositionAlignmentPolicy.explicit, + ), + 'ScrollIncrementType': { + 'values': ScrollIncrementType.values, + 'line': ScrollIncrementType.line, + 'page': ScrollIncrementType.page, + }, 'ImageIcon': (props) => ImageIcon( props['pa'][0], key: props['key'], size: props['size']?.toDouble(), color: props['color'], semanticLabel: props['semanticLabel'], - ), - }; + ), + 'ScrollPositionAlignmentPolicy': { + 'values': ScrollPositionAlignmentPolicy.values, + 'explicit': ScrollPositionAlignmentPolicy.explicit, + 'keepVisibleAtEnd': ScrollPositionAlignmentPolicy.keepVisibleAtEnd, + 'keepVisibleAtStart': ScrollPositionAlignmentPolicy.keepVisibleAtStart, + }, + 'LayoutBuilder': (props) => LayoutBuilder( + key: props['key'], + builder: props['builder'], + ), + 'LayoutBuilder#builder': (props) => ( + BuildContext context, + dynamic constraints, + ) { + return (props['block']) as Widget; + }, + 'PrimaryScrollController': (props) => PrimaryScrollController( + key: props['key'], + controller: props['controller'], + child: props['child'], + ), + 'PrimaryScrollController.none': (props) => PrimaryScrollController.none( + key: props['key'], + child: props['child'], + ), + 'PrimaryScrollController.of': (props) => PrimaryScrollController.of( + props['pa'][0], + ), + 'DualTransitionBuilder': (props) => DualTransitionBuilder( + key: props['key'], + animation: props['animation'], + forwardBuilder: props['forwardBuilder'], + reverseBuilder: props['reverseBuilder'], + child: props['child'], + ), + 'DualTransitionBuilder#forwardBuilder': (props) => ( + BuildContext context, + dynamic animation, + Widget child, + ) { + return (props['block']) as Widget; + }, + 'DualTransitionBuilder#reverseBuilder': (props) => ( + BuildContext context, + dynamic animation, + Widget child, + ) { + return (props['block']) as Widget; + }, +}; diff --git a/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart b/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart index 3d711ba6..f3792095 100644 --- a/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart +++ b/flutter_version/flutter_2_8_0/lib/src/widgets/version.dart @@ -1,490 +1,580 @@ - // This file is generated by Fair, do not edit manually! - // Updated on 2022-04-20 20:07:28.056617 - - const fairVersion = '0.0.1'; - const flutterVersion = '2.8.0'; - const dartVersion = '2.15.0'; - const widgetCount = 234; - const apiCount = 245; - const widgetNames = { - -'SingleChildScrollView': true, -'AnimatedContainer': true, -'AnimatedPadding': true, -'AnimatedAlign': true, -'AnimatedPositioned': true, -'AnimatedPositionedDirectional': true, -'AnimatedScale': true, -'AnimatedRotation': true, -'AnimatedSlide': true, -'AnimatedOpacity': true, -'SliverAnimatedOpacity': true, -'AnimatedDefaultTextStyle': true, -'AnimatedPhysicalModel': true, -'AnimatedCrossFade': true, -'CrossFadeState': false, -'GridPaper': true, -'TweenAnimationBuilder': true, -'DefaultTextEditingShortcuts': true, -'SlideTransition': true, -'ScaleTransition': true, -'RotationTransition': true, -'SizeTransition': true, -'FadeTransition': true, -'SliverFadeTransition': true, -'PositionedTransition': true, -'RelativePositionedTransition': true, -'DecoratedBoxTransition': true, -'AlignTransition': true, -'DefaultTextStyleTransition': true, -'AnimatedBuilder': true, -'SliverPersistentHeader': true, -'PageStorage': true, -'Router': true, -'BackButtonListener': true, -'RouteInformationReportingType': false, -'FocusTrap': true, -'FocusTrapArea': true, -'Directionality': true, -'Opacity': true, -'ShaderMask': true, -'BackdropFilter': true, -'CustomPaint': true, -'ClipRect': true, -'ClipRRect': true, -'ClipOval': true, -'ClipPath': true, -'PhysicalModel': true, -'PhysicalShape': true, -'Transform': true, -'CompositedTransformTarget': true, -'CompositedTransformFollower': true, -'FittedBox': true, -'FractionalTranslation': true, -'RotatedBox': true, -'Padding': true, -'Align': true, -'Center': true, -'CustomSingleChildLayout': true, -'LayoutId': true, -'CustomMultiChildLayout': true, -'SizedBox': true, -'ConstrainedBox': true, -'ConstraintsTransformBox': true, -'UnconstrainedBox': true, -'FractionallySizedBox': true, -'LimitedBox': true, -'OverflowBox': true, -'SizedOverflowBox': true, -'Offstage': true, -'AspectRatio': true, -'IntrinsicWidth': true, -'IntrinsicHeight': true, -'Baseline': true, -'SliverToBoxAdapter': true, -'SliverPadding': true, -'ListBody': true, -'Stack': true, -'IndexedStack': true, -'Positioned': true, -'PositionedDirectional': true, -'Flex': true, -'Row': true, -'Column': true, -'Flexible': true, -'Expanded': true, -'Wrap': true, -'Flow': true, -'RichText': true, -'RawImage': true, -'DefaultAssetBundle': true, -'WidgetToRenderBoxAdapter': true, -'Listener': true, -'MouseRegion': true, -'RepaintBoundary': true, -'IgnorePointer': true, -'AbsorbPointer': true, -'MetaData': true, -'Semantics': true, -'MergeSemantics': true, -'BlockSemantics': true, -'ExcludeSemantics': true, -'IndexedSemantics': true, -'KeyedSubtree': true, -'Builder': true, -'StatefulBuilder': true, -'ColoredBox': true, -'GestureDetector': true, -'RawGestureDetector': true, -'StreamBuilder': true, -'FutureBuilder': true, -'ConnectionState': false, -'DefaultTextStyle': true, -'DefaultTextHeightBehavior': true, -'Text': true, -'ActionListener': true, -'Actions': true, -'FocusableActionDetector': true, -'Form': true, -'FormField': true, -'AutovalidateMode': false, -'Image': true, -'IconThemeData': false, -'Texture': true, -'NestedScrollView': true, -'SliverOverlapAbsorber': true, -'SliverOverlapInjector': true, -'NestedScrollViewViewport': true, -'NavigationToolbar': true, -'DefaultTextEditingActions': true, -'ReorderableList': true, -'SliverReorderableList': true, -'ReorderableDragStartListener': true, -'ReorderableDelayedDragStartListener': true, -'SliverLayoutBuilder': true, -'HeroControllerScope': true, -'Navigator': true, -'RoutePopDisposition': false, -'PreferredSize': true, -'ValueListenableBuilder': true, -'MediaQuery': true, -'Orientation': false, -'NavigationMode': false, -'DraggableScrollableSheet': true, -'DraggableScrollableActuator': true, -'DecoratedBox': true, -'Container': true, -'EditableText': true, -'Placeholder': true, -'Icon': true, -'LayoutBuilder': true, -'PrimaryScrollController': true, -'ScrollPositionAlignmentPolicy': false, -'ImageIcon': true, -'Scrollable': true, -'ScrollIncrementType': false, -'OrientationBuilder': true, -'KeyEventResult': false, -'UnfocusDisposition': false, -'FocusHighlightMode': false, -'FocusHighlightStrategy': false, -'FocusTraversalOrder': true, -'FocusTraversalGroup': true, -'TraversalDirection': false, -'ColorFiltered': true, -'Title': true, -'AnimatedSwitcher': true, -'SliverPrototypeExtentList': true, -'Table': true, -'TableCell': true, -'DualTransitionBuilder': true, -'Visibility': true, -'SliverVisibility': true, -'AnnotatedRegion': true, -'Banner': true, -'CheckedModeBanner': true, -'BannerLocation': false, -'NotificationListener': true, -'PageView': true, -'Shortcuts': true, -'CallbackShortcuts': true, -'KeyboardListener': true, -'ImageFiltered': true, -'ScrollNotificationObserver': true, -'SharedAppData': true, -'Draggable': true, -'LongPressDraggable': true, -'DragTarget': true, -'GlowingOverscrollIndicator': true, -'StretchingOverscrollIndicator': true, -'Hero': true, -'HeroMode': true, -'HeroFlightDirection': false, -'SizeChangedLayoutNotifier': true, -'Viewport': true, -'ShrinkWrappingViewport': true, -'AutomaticKeepAlive': true, -'ErrorWidget': true, -'ScrollConfiguration': true, -'AndroidOverscrollIndicator': false, -'IconTheme': true, -'SemanticsDebugger': true, -'TextSelectionOverlay': false, -'TextSelectionGestureDetector': true, -'TextSelectionHandleType': false, -'ClipboardStatus': false, -'TickerMode': true, -'RestorationScope': true, -'UnmanagedRestorationScope': true, -'RootRestorationScope': true, -'AnimatedList': true, -'SliverAnimatedList': true, -'OverflowBar': true, -'OverflowBarAlignment': false, -'FadeInImage': true, -'Focus': true, -'FocusScope': true, -'ExcludeFocus': true, -'ModalBarrier': true, -'AnimatedModalBarrier': true, -'InteractiveViewer': true, -'AutofillGroup': true, -'AutofillContextAction': false, -'ScrollDragController': false, -'ListWheelScrollView': true, -'ListWheelViewport': true, -'SliverList': true, -'SliverFixedExtentList': true, -'SliverGrid': true, -'SliverOpacity': true, -'SliverIgnorePointer': true, -'SliverOffstage': true, -'KeepAlive': true, -'Dismissible': true, -'DismissDirection': false, -'WillPopScope': true, -'SafeArea': true, -'SliverSafeArea': true, -'RawScrollbar': true, -'ScrollbarOrientation': false, -'AndroidView': true, -'UiKitView': true, -'HtmlElementView': true, -'PlatformViewLink': true, -'PlatformViewSurface': true, -'AndroidViewSurface': true, -'WidgetsApp': true, -'RawAutocomplete': true, -'AutocompleteHighlightedOption': true, -'Overlay': true, -'BouncingScrollSimulation': false, -'RawKeyboardListener': true, -'Spacer': true, -'CustomScrollView': true, -'ListView': true, -'GridView': true, -'ScrollViewKeyboardDismissBehavior': false, -'DefaultWidgetsLocalizations': false, -'Localizations': true, -'SliverFillViewport': true, -'SliverFillRemaining': true, -'AnimatedSize': true, -'RenderObjectToWidgetAdapter': true, -'WidgetsFlutterBinding': false, -'BorderSide': false, -'BorderStyle': false, -'Border': false, -'BorderDirectional': false, -'BoxShape': false, -'ImageConfiguration': false, -'ResizeImage': false, -'BoxShadow': false, -'NetworkImage': false, -'BorderRadius': false, -'BorderRadiusDirectional': false, -'HSVColor': false, -'HSLColor': false, -'TextStyle': false, -'LinearGradient': false, -'RadialGradient': false, -'SweepGradient': false, -'Alignment': false, -'AlignmentDirectional': false, -'TextAlignVertical': false, -'FlutterLogoDecoration': false, -'FlutterLogoStyle': false, -'RenderComparison': false, -'Axis': false, -'VerticalDirection': false, -'AxisDirection': false, -'BoxDecoration': false, -'InlineSpanSemanticsInformation': false, -'FractionalOffset': false, -'BoxFit': false, -'MatrixUtils': false, -'PlaceholderDimensions': false, -'TextOverflow': false, -'TextWidthBasis': false, -'ShapeDecoration': false, -'EdgeInsets': false, -'EdgeInsetsDirectional': false, -'DecorationImage': false, -'ImageRepeat': false, -'StrutStyle': false, -'TextButtonThemeData': false, -'TextButtonTheme': false, -'ProgressIndicatorThemeData': false, -'ProgressIndicatorTheme': false, -'Material': false, -'MaterialType': false, -'TextTheme': false, -'InkRipple': false, -'ElevatedButtonThemeData': false, -'ElevatedButtonTheme': false, -'MaterialBannerThemeData': false, -'MaterialBannerTheme': false, -'ScaffoldMessenger': false, -'Scaffold': false, -'Feedback': false, -'SwitchThemeData': false, -'SwitchTheme': false, -'ToggleButtonsThemeData': false, -'ToggleButtonsTheme': false, -'TextSelectionToolbarTextButton': false, -'TextField': false, -'DrawerThemeData': false, -'DrawerTheme': false, -'NavigationDestinationLabelBehavior': false, -'NavigationRailThemeData': false, -'NavigationRailTheme': false, -'TimePickerThemeData': false, -'TimePickerTheme': false, -'TextSelectionThemeData': false, -'TextSelectionTheme': false, -'RefreshIndicatorTriggerMode': false, -'BottomAppBarTheme': false, -'TabBarTheme': false, -'OutlinedButtonThemeData': false, -'OutlinedButtonTheme': false, -'ElevationOverlay': false, -'AppBarTheme': false, -'Colors': false, -'SnackBar': false, -'SnackBarClosedReason': false, -'InputDecorator': false, -'FloatingLabelBehavior': false, -'ColorScheme': false, -'TimeOfDay': false, -'DayPeriod': false, -'TimeOfDayFormat': false, -'HourFormat': false, -'PopupMenuThemeData': false, -'PopupMenuTheme': false, -'DataCell': false, -'DefaultTabController': false, -'NavigationRail': false, -'NavigationRailLabelType': false, -'TooltipThemeData': false, -'TooltipTheme': false, -'TooltipTriggerMode': false, -'TextButton': false, -'Checkbox': false, -'TimePickerEntryMode': false, -'StepState': false, -'StepperType': false, -'RadioThemeData': false, -'RadioTheme': false, -'TabBarIndicatorSize': false, -'BottomNavigationBarThemeData': false, -'BottomNavigationBarTheme': false, -'TooltipVisibility': false, -'CheckboxThemeData': false, -'CheckboxTheme': false, -'ScrollbarThemeData': false, -'ScrollbarTheme': false, -'AppBar': false, -'MaterialBanner': false, -'MaterialBannerClosedReason': false, -'DialogTheme': false, -'PaginatedDataTable': false, -'MaterialState': false, -'FloatingActionButtonThemeData': false, -'CardTheme': false, -'BottomSheetThemeData': false, -'Tooltip': false, -'ElevatedButton': false, -'DropdownButtonHideUnderline': false, -'NoSplash': false, -'ButtonTheme': false, -'ButtonTextTheme': false, -'ButtonBarLayoutBehavior': false, -'RefreshProgressIndicator': false, -'ListTileThemeData': false, -'ListTileTheme': false, -'ListTile': false, -'ListTileStyle': false, -'ListTileControlAffinity': false, -'BottomSheet': false, -'DividerThemeData': false, -'DividerTheme': false, -'DataTableThemeData': false, -'DataTableTheme': false, -'DefaultMaterialLocalizations': false, -'Typography': false, -'ScriptCategory': false, -'OutlinedButton': false, -'Divider': false, -'SliderTheme': false, -'SliderThemeData': false, -'ShowValueIndicator': false, -'Thumb': false, -'ChipTheme': false, -'ChipThemeData': false, -'DrawerAlignment': false, -'DateUtils': false, -'DatePickerEntryMode': false, -'DatePickerMode': false, -'SnackBarThemeData': false, -'SnackBarBehavior': false, -'ThemeData': false, -'VisualDensity': false, -'MaterialTapTargetSize': false, -'FlexibleSpaceBar': false, -'CollapseMode': false, -'StretchMode': false, -'NavigationBarThemeData': false, -'NavigationBarTheme': false, -'ButtonStyle': false, -'BottomNavigationBarType': false, -'BottomNavigationBarLandscapeLayout': false, -'MaterialApp': false, -'ThemeMode': false, -'Icons': false, -'InkSplash': false, -'ButtonBarThemeData': false, -'ButtonBarTheme': false, -'Theme': false, -'OverlayVisibilityMode': false, -'CupertinoColors': false, -'CupertinoDynamicColor': false, -'CupertinoDatePickerMode': false, -'CupertinoTimerPickerMode': false, -'CupertinoSliverRefreshControl': false, -'RefreshIndicatorMode': false, -'CupertinoThumbPainter': false, -'CupertinoUserInterfaceLevel': true, -'CupertinoUserInterfaceLevelData': false, -'CupertinoScrollbar': false, -'CupertinoApp': false, -'CupertinoIcons': false, -'CupertinoTheme': false, -'DefaultCupertinoLocalizations': false, -'DatePickerDateTimeOrder': false, -'DatePickerDateOrder': false, -'WrapAlignment': false, -'WrapCrossAlignment': false, -'TableBorder': false, -'HitTestBehavior': false, -'DecorationPosition': false, -'ScrollDirection': false, -'PaintingContext': false, -'FlexFit': false, -'MainAxisSize': false, -'MainAxisAlignment': false, -'CrossAxisAlignment': false, -'TableCellVerticalAlignment': false, -'ChildLayoutHelper': false, -'RenderViewport': false, -'CacheExtentStyle': false, -'SliverGeometry': false, -'GrowthDirection': false, -'RelativeRect': false, -'RenderStack': false, -'StackFit': false, -'PlatformViewHitTestBehavior': false, -'BoxConstraints': false, -'AnimationBehavior': false, -'AnimationStatus': false, -'CatmullRomCurve': false, -'Curves': false, +// This file is generated by Fair, do not edit manually! +// Updated on 2021-10-27 19:21:56.207621 + +const fairVersion = '0.0.1'; +const flutterVersion = '2.5.0'; +const dartVersion = '2.14.0'; +const widgetCount = 358; +const apiCount = 212; +const widgetNames = { + 'SingleChildScrollView': true, + 'AnimatedContainer': true, + 'AnimatedPadding': true, + 'AnimatedAlign': true, + 'AnimatedPositioned': true, + 'AnimatedPositionedDirectional': true, + 'AnimatedScale': true, + 'AnimatedRotation': true, + 'AnimatedSlide': true, + 'AnimatedOpacity': true, + 'SliverAnimatedOpacity': true, + 'AnimatedDefaultTextStyle': true, + 'AnimatedPhysicalModel': true, + 'AnimatedCrossFade': true, + 'CrossFadeState': false, + 'GridPaper': true, + 'TweenAnimationBuilder': true, + 'DefaultTextEditingShortcuts': true, + 'SlideTransition': true, + 'ScaleTransition': true, + 'RotationTransition': true, + 'SizeTransition': true, + 'FadeTransition': true, + 'SliverFadeTransition': true, + 'PositionedTransition': true, + 'RelativePositionedTransition': true, + 'DecoratedBoxTransition': true, + 'AlignTransition': true, + 'DefaultTextStyleTransition': true, + 'AnimatedBuilder': true, + 'SliverPersistentHeader': true, + 'PageStorage': true, + 'Router': true, + 'BackButtonListener': true, + 'FocusTrap': true, + 'FocusTrapArea': true, + 'Directionality': true, + 'Opacity': true, + 'ShaderMask': true, + 'BackdropFilter': true, + 'CustomPaint': true, + 'ClipRect': true, + 'ClipRRect': true, + 'ClipOval': true, + 'ClipPath': true, + 'PhysicalModel': true, + 'PhysicalShape': true, + 'Transform': true, + 'CompositedTransformTarget': true, + 'CompositedTransformFollower': true, + 'FittedBox': true, + 'FractionalTranslation': true, + 'RotatedBox': true, + 'Padding': true, + 'Align': true, + 'Center': true, + 'CustomSingleChildLayout': true, + 'LayoutId': true, + 'CustomMultiChildLayout': true, + 'SizedBox': true, + 'ConstrainedBox': true, + 'ConstraintsTransformBox': true, + 'UnconstrainedBox': true, + 'FractionallySizedBox': true, + 'LimitedBox': true, + 'OverflowBox': true, + 'SizedOverflowBox': true, + 'Offstage': true, + 'AspectRatio': true, + 'IntrinsicWidth': true, + 'IntrinsicHeight': true, + 'Baseline': true, + 'SliverToBoxAdapter': true, + 'SliverPadding': true, + 'ListBody': true, + 'Stack': true, + 'IndexedStack': true, + 'Positioned': true, + 'PositionedDirectional': true, + 'Flex': true, + 'Row': true, + 'Column': true, + 'Flexible': true, + 'Expanded': true, + 'Wrap': true, + 'Flow': true, + 'RichText': true, + 'RawImage': true, + 'DefaultAssetBundle': true, + 'WidgetToRenderBoxAdapter': true, + 'Listener': true, + 'MouseRegion': true, + 'RepaintBoundary': true, + 'IgnorePointer': true, + 'AbsorbPointer': true, + 'MetaData': true, + 'Semantics': true, + 'MergeSemantics': true, + 'BlockSemantics': true, + 'ExcludeSemantics': true, + 'IndexedSemantics': true, + 'KeyedSubtree': true, + 'Builder': true, + 'StatefulBuilder': true, + 'ColoredBox': true, + 'GestureDetector': true, + 'RawGestureDetector': true, + 'StreamBuilder': true, + 'FutureBuilder': true, + 'ConnectionState': false, + 'DefaultTextStyle': true, + 'DefaultTextHeightBehavior': true, + 'Text': true, + 'ActionListener': true, + 'Actions': true, + 'FocusableActionDetector': true, + 'Form': true, + 'FormField': true, + 'AutovalidateMode': false, + 'Image': true, + 'IconThemeData': false, + 'Texture': true, + 'NestedScrollView': true, + 'SliverOverlapAbsorber': true, + 'SliverOverlapInjector': true, + 'NestedScrollViewViewport': true, + 'NavigationToolbar': true, + 'DefaultTextEditingActions': true, + 'ReorderableList': true, + 'SliverReorderableList': true, + 'ReorderableDragStartListener': true, + 'ReorderableDelayedDragStartListener': true, + 'SliverLayoutBuilder': true, + 'HeroControllerScope': true, + 'Navigator': true, + 'RoutePopDisposition': false, + 'PreferredSize': true, + 'ValueListenableBuilder': true, + 'MediaQuery': true, + 'Orientation': false, + 'NavigationMode': false, + 'DraggableScrollableSheet': true, + 'DraggableScrollableActuator': true, + 'DecoratedBox': true, + 'Container': true, + 'EditableText': true, + 'Placeholder': true, + 'Icon': true, + 'LayoutBuilder': true, + 'PrimaryScrollController': true, + 'ScrollPositionAlignmentPolicy': false, + 'ImageIcon': true, + 'Scrollable': true, + 'ScrollIncrementType': false, + 'OrientationBuilder': true, + 'KeyEventResult': false, + 'UnfocusDisposition': false, + 'FocusHighlightMode': false, + 'FocusHighlightStrategy': false, + 'FocusTraversalOrder': true, + 'FocusTraversalGroup': true, + 'TraversalDirection': false, + 'ColorFiltered': true, + 'Title': true, + 'AnimatedSwitcher': true, + 'SliverPrototypeExtentList': true, + 'Table': true, + 'TableCell': true, + 'DualTransitionBuilder': true, + 'Visibility': true, + 'SliverVisibility': true, + 'AnnotatedRegion': true, + 'Banner': true, + 'CheckedModeBanner': true, + 'BannerLocation': false, + 'NotificationListener': true, + 'PageView': true, + 'Shortcuts': true, + 'CallbackShortcuts': true, + 'KeyboardListener': true, + 'ImageFiltered': true, + 'ScrollNotificationObserver': true, + 'Draggable': true, + 'LongPressDraggable': true, + 'DragTarget': true, + 'GlowingOverscrollIndicator': true, + 'Hero': true, + 'HeroMode': true, + 'HeroFlightDirection': false, + 'SizeChangedLayoutNotifier': true, + 'Viewport': true, + 'ShrinkWrappingViewport': true, + 'AutomaticKeepAlive': true, + 'ErrorWidget': true, + 'ScrollConfiguration': true, + 'IconTheme': true, + 'SemanticsDebugger': true, + 'TextSelectionOverlay': false, + 'TextSelectionGestureDetector': true, + 'TextSelectionHandleType': false, + 'ClipboardStatus': false, + 'TickerMode': true, + 'RestorationScope': true, + 'UnmanagedRestorationScope': true, + 'RootRestorationScope': true, + 'AnimatedList': true, + 'SliverAnimatedList': true, + 'OverflowBar': true, + 'OverflowBarAlignment': false, + 'FadeInImage': true, + 'Focus': true, + 'FocusScope': true, + 'ExcludeFocus': true, + 'ModalBarrier': true, + 'AnimatedModalBarrier': true, + 'InteractiveViewer': true, + 'AutofillGroup': true, + 'AutofillContextAction': false, + 'ScrollDragController': false, + 'ListWheelScrollView': true, + 'ListWheelViewport': true, + 'SliverList': true, + 'SliverFixedExtentList': true, + 'SliverGrid': true, + 'SliverOpacity': true, + 'SliverIgnorePointer': true, + 'SliverOffstage': true, + 'KeepAlive': true, + 'Dismissible': true, + 'DismissDirection': false, + 'WillPopScope': true, + 'SafeArea': true, + 'SliverSafeArea': true, + 'RawScrollbar': true, + 'ScrollbarOrientation': false, + 'AndroidView': true, + 'UiKitView': true, + 'HtmlElementView': true, + 'PlatformViewLink': true, + 'PlatformViewSurface': true, + 'AndroidViewSurface': true, + 'WidgetsApp': true, + 'RawAutocomplete': true, + 'AutocompleteHighlightedOption': true, + 'Overlay': true, + 'BouncingScrollSimulation': false, + 'RawKeyboardListener': true, + 'Spacer': true, + 'CustomScrollView': true, + 'ListView': true, + 'GridView': true, + 'ScrollViewKeyboardDismissBehavior': false, + 'DefaultWidgetsLocalizations': false, + 'Localizations': true, + 'SliverFillViewport': true, + 'SliverFillRemaining': true, + 'AnimatedSize': true, + 'RenderObjectToWidgetAdapter': true, + 'WidgetsFlutterBinding': false, + 'BorderSide': false, + 'BorderStyle': false, + 'Border': false, + 'BorderDirectional': false, + 'BoxShape': false, + 'ImageConfiguration': false, + 'ResizeImage': false, + 'BoxShadow': false, + 'NetworkImage': false, + 'BorderRadius': false, + 'BorderRadiusDirectional': false, + 'HSVColor': false, + 'HSLColor': false, + 'TextStyle': false, + 'LinearGradient': false, + 'RadialGradient': false, + 'SweepGradient': false, + 'Alignment': false, + 'AlignmentDirectional': false, + 'TextAlignVertical': false, + 'FlutterLogoDecoration': false, + 'FlutterLogoStyle': false, + 'RenderComparison': false, + 'Axis': false, + 'VerticalDirection': false, + 'AxisDirection': false, + 'BoxDecoration': false, + 'InlineSpanSemanticsInformation': false, + 'FractionalOffset': false, + 'BoxFit': false, + 'MatrixUtils': false, + 'PlaceholderDimensions': false, + 'TextOverflow': false, + 'TextWidthBasis': false, + 'ShapeDecoration': false, + 'EdgeInsets': false, + 'EdgeInsetsDirectional': false, + 'DecorationImage': false, + 'ImageRepeat': false, + 'StrutStyle': false, + 'TextButtonThemeData': false, + 'TextButtonTheme': false, + 'DrawerHeader': true, + 'ProgressIndicatorThemeData': false, + 'ProgressIndicatorTheme': false, + 'MaterialButton': true, + 'GridTile': true, + 'Material': true, + 'MaterialType': false, + 'TextTheme': false, + 'InkRipple': false, + 'ElevatedButtonThemeData': false, + 'ElevatedButtonTheme': false, + 'MaterialBannerThemeData': false, + 'MaterialBannerTheme': false, + 'ScaffoldMessenger': true, + 'Scaffold': true, + 'Feedback': false, + 'SwitchThemeData': false, + 'SwitchTheme': false, + 'ToggleButtonsThemeData': false, + 'ToggleButtonsTheme': false, + 'BackButtonIcon': true, + 'BackButton': true, + 'CloseButton': true, + 'TextSelectionToolbarTextButton': true, + 'TextField': true, + 'NavigationRailThemeData': false, + 'NavigationRailTheme': false, + 'AboutListTile': true, + 'AboutDialog': true, + 'LicensePage': true, + 'TimePickerThemeData': false, + 'TimePickerTheme': false, + 'TextSelectionToolbar': true, + 'TextSelectionThemeData': false, + 'TextSelectionTheme': false, + 'RadioListTile': true, + 'RefreshIndicator': true, + 'RefreshIndicatorTriggerMode': false, + 'InputDatePickerFormField': true, + 'BottomAppBarTheme': false, + 'TabBarTheme': false, + 'OutlinedButtonThemeData': false, + 'OutlinedButtonTheme': false, + 'GridTileBar': true, + 'ElevationOverlay': false, + 'SelectableText': true, + 'CircleAvatar': true, + 'Ink': true, + 'ButtonBar': true, + 'AppBarTheme': false, + 'Colors': false, + 'SnackBarAction': true, + 'SnackBar': true, + 'SnackBarClosedReason': false, + 'InputDecorator': true, + 'FloatingLabelBehavior': false, + 'ReorderableListView': true, + 'ColorScheme': false, + 'TimeOfDay': false, + 'DayPeriod': false, + 'TimeOfDayFormat': false, + 'HourFormat': false, + 'Card': true, + 'RawMaterialButton': true, + 'PopupMenuThemeData': false, + 'PopupMenuTheme': false, + 'DataCell': false, + 'DataTable': true, + 'DefaultTabController': true, + 'NavigationRail': true, + 'NavigationRailLabelType': false, + 'TooltipThemeData': false, + 'TooltipTheme': false, + 'TooltipTriggerMode': false, + 'TextButton': false, + 'Dialog': true, + 'AlertDialog': true, + 'SimpleDialogOption': true, + 'SimpleDialog': true, + 'InkResponse': true, + 'Checkbox': true, + 'TimePickerDialog': true, + 'TimePickerEntryMode': false, + 'Radio': true, + 'Stepper': true, + 'StepState': false, + 'StepperType': false, + 'CheckboxListTile': true, + 'RadioThemeData': false, + 'RadioTheme': false, + 'Tab': true, + 'TabBar': true, + 'TabBarView': true, + 'TabPageSelectorIndicator': true, + 'TabPageSelector': true, + 'TabBarIndicatorSize': false, + 'DatePickerDialog': true, + 'DateRangePickerDialog': true, + 'BottomNavigationBarThemeData': false, + 'BottomNavigationBarTheme': false, + 'FloatingActionButton': true, + 'CheckboxThemeData': false, + 'CheckboxTheme': false, + 'RangeSlider': true, + 'ScrollbarThemeData': false, + 'ScrollbarTheme': false, + 'PopupMenuButton': true, + 'ExpandIcon': true, + 'AppBar': true, + 'SliverAppBar': true, + 'BottomAppBar': true, + 'UserAccountsDrawerHeader': true, + 'MaterialBanner': true, + 'MaterialBannerClosedReason': false, + 'CalendarDatePicker': true, + 'YearPicker': true, + 'Chip': true, + 'InputChip': true, + 'ChoiceChip': true, + 'FilterChip': true, + 'ActionChip': true, + 'RawChip': true, + 'DialogTheme': false, + 'PaginatedDataTable': true, + 'MaterialState': false, + 'FloatingActionButtonThemeData': false, + 'FlutterLogo': true, + 'CardTheme': false, + 'BottomSheetThemeData': false, + 'Tooltip': true, + 'ElevatedButton': false, + 'SwitchListTile': true, + 'DropdownButtonHideUnderline': false, + 'DropdownButton': true, + 'Slider': true, + 'NoSplash': false, + 'ButtonTheme': false, + 'ButtonTextTheme': false, + 'ButtonBarLayoutBehavior': false, + 'ListTileTheme': false, + 'ListTile': true, + 'ListTileStyle': false, + 'ListTileControlAffinity': false, + 'ExpansionTile': true, + 'BottomSheet': true, + 'DividerThemeData': false, + 'DividerTheme': false, + 'DataTableThemeData': false, + 'DataTableTheme': false, + 'DefaultMaterialLocalizations': false, + 'Typography': false, + 'ScriptCategory': false, + 'OutlinedButton': false, + 'Divider': true, + 'VerticalDivider': true, + 'SliderTheme': false, + 'SliderThemeData': false, + 'ShowValueIndicator': false, + 'Thumb': false, + 'ChipTheme': false, + 'ChipThemeData': false, + 'MergeableMaterial': true, + 'Drawer': true, + 'DrawerController': true, + 'DrawerAlignment': false, + 'DateUtils': false, + 'DatePickerEntryMode': false, + 'DatePickerMode': false, + 'SnackBarThemeData': false, + 'SnackBarBehavior': false, + 'AnimatedIcon': true, + 'ThemeData': false, + 'VisualDensity': false, + 'MaterialTapTargetSize': false, + 'FlexibleSpaceBar': true, + 'CollapseMode': false, + 'StretchMode': false, + 'Switch': true, + 'Scrollbar': true, + 'ButtonStyle': false, + 'BottomNavigationBar': true, + 'BottomNavigationBarType': false, + 'BottomNavigationBarLandscapeLayout': false, + 'MaterialApp': true, + 'ThemeMode': false, + 'Icons': false, + 'Autocomplete': true, + 'InkSplash': false, + 'ExpansionPanelList': true, + 'ButtonBarThemeData': false, + 'ButtonBarTheme': false, + 'Theme': true, + 'IconButton': true, + 'ToggleButtons': true, + 'CupertinoTabView': true, + 'CupertinoTextField': true, + 'OverlayVisibilityMode': false, + 'CupertinoFormRow': true, + 'CupertinoTextSelectionToolbar': true, + 'CupertinoTextSelectionToolbarButton': true, + 'CupertinoSegmentedControl': true, + 'CupertinoColors': false, + 'CupertinoDynamicColor': false, + 'CupertinoSlidingSegmentedControl': true, + 'CupertinoSearchTextField': true, + 'CupertinoButton': true, + 'CupertinoTabScaffold': true, + 'CupertinoAlertDialog': true, + 'CupertinoPopupSurface': true, + 'CupertinoActionSheet': true, + 'CupertinoActionSheetAction': true, + 'CupertinoDialogAction': true, + 'CupertinoTabBar': true, + 'CupertinoDatePicker': true, + 'CupertinoTimerPicker': true, + 'CupertinoDatePickerMode': false, + 'CupertinoTimerPickerMode': false, + 'CupertinoSliverRefreshControl': true, + 'RefreshIndicatorMode': false, + 'CupertinoPicker': true, + 'CupertinoPickerDefaultSelectionOverlay': true, + 'CupertinoContextMenu': true, + 'CupertinoPageTransition': true, + 'CupertinoFullscreenDialogTransition': true, + 'CupertinoThumbPainter': false, + 'CupertinoActivityIndicator': true, + 'CupertinoSlider': true, + 'CupertinoPageScaffold': true, + 'CupertinoUserInterfaceLevel': true, + 'CupertinoUserInterfaceLevelData': false, + 'CupertinoFormSection': true, + 'CupertinoContextMenuAction': true, + 'CupertinoSwitch': true, + 'CupertinoScrollbar': false, + 'CupertinoApp': true, + 'CupertinoIcons': false, + 'CupertinoNavigationBar': true, + 'CupertinoSliverNavigationBar': true, + 'CupertinoNavigationBarBackButton': true, + 'CupertinoTheme': true, + 'DefaultCupertinoLocalizations': false, + 'DatePickerDateTimeOrder': false, + 'DatePickerDateOrder': false, + 'WrapAlignment': false, + 'WrapCrossAlignment': false, + 'TableBorder': false, + 'HitTestBehavior': false, + 'DecorationPosition': false, + 'ScrollDirection': false, + 'PaintingContext': false, + 'FlexFit': false, + 'MainAxisSize': false, + 'MainAxisAlignment': false, + 'CrossAxisAlignment': false, + 'TableCellVerticalAlignment': false, + 'ChildLayoutHelper': false, + 'RenderViewport': false, + 'CacheExtentStyle': false, + 'SliverGeometry': false, + 'GrowthDirection': false, + 'RelativeRect': false, + 'RenderStack': false, + 'StackFit': false, + 'PlatformViewHitTestBehavior': false, + 'BoxConstraints': false, + 'AnimationBehavior': false, + 'AnimationStatus': false, + 'CatmullRomCurve': false, + 'Curves': false, }; diff --git a/flutter_version/flutter_2_8_0/pubspec.yaml b/flutter_version/flutter_2_8_0/pubspec.yaml index da64c167..66234cb1 100644 --- a/flutter_version/flutter_2_8_0/pubspec.yaml +++ b/flutter_version/flutter_2_8_0/pubspec.yaml @@ -1,5 +1,5 @@ name: fair_version -description: Fair binding for Flutter v2.5.0 +description: Fair binding for Flutter v2.8.0 version: 0.2.0 homepage: https://fair.58.com/ From cb797f087c0a348e4bb8ca5507a46a993b394623 Mon Sep 17 00:00:00 2001 From: qixu01 Date: Thu, 19 May 2022 10:48:34 +0800 Subject: [PATCH 3/8] =?UTF-8?q?test=5Fcase=E5=86=85demo=E9=80=82=E9=85=8Df?= =?UTF-8?q?lutter2.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/jniLibs/arm64-v8a/libfairflutter.so | Bin 99968 -> 98008 bytes .../jniLibs/armeabi-v7a/libfairflutter.so | Bin 214280 -> 210320 bytes .../src/main/jniLibs/x86/libfairflutter.so | Bin 126224 -> 124204 bytes .../src/main/jniLibs/x86_64/libfairflutter.so | Bin 98432 -> 96568 bytes fair/example/pubspec.yaml | 2 +- test_case/adobe_xd/pubspec.lock | 230 +++++++++--------- test_case/adobe_xd/pubspec.yaml | 2 +- test_case/animated_text_kit/pubspec.yaml | 2 +- .../best_flutter_ui_templates/pubspec.yaml | 8 +- test_case/bottom_navy_bar/pubspec.yaml | 2 +- .../fair_bloc/ios/Flutter/Debug.xcconfig | 1 + .../fair_bloc/ios/Flutter/Release.xcconfig | 1 + test_case/fair_bloc/ios/Podfile | 41 ++++ test_case/fair_bloc/pubspec.lock | 40 +-- test_case/fair_bloc/pubspec.yaml | 2 +- 15 files changed, 187 insertions(+), 144 deletions(-) create mode 100644 test_case/fair_bloc/ios/Podfile diff --git a/fair/android/src/main/jniLibs/arm64-v8a/libfairflutter.so b/fair/android/src/main/jniLibs/arm64-v8a/libfairflutter.so index bd5c9a35806e4b72e7ff118271bc46c5b6dc2758..efd486861e629f94387ac8c2afd3fb503db8ff82 100755 GIT binary patch literal 98008 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 G{r?38oH)Gz literal 99968 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 O9KEIJ8$pK++yB3N`xhwy diff --git a/fair/android/src/main/jniLibs/armeabi-v7a/libfairflutter.so b/fair/android/src/main/jniLibs/armeabi-v7a/libfairflutter.so index 440439038386fe4da3f1ef795f58dddeb463e5c8..e2fcc0a96e91fe317c89519d6f7c3b1e5be3e0f2 100755 GIT binary patch literal 210320 zcmeFa34B~t**|{n%p{pClcX!9v~)@cWS~nXTT?91HknD%rb$TB1*}ddnMr5TY|JEW z*`#2VMUa$5Qb4GJ3W}O4__ErkI=XuV4?m73Kd$p(Bt0)T7{;VvEX;dBpcP+FsW?^x8%*pKFoy9U)Ji>{m zT|5FJ*$_sT79U>zH!qtpy5fjR7yKC)FgBw?Tz!ae3>V2Iz6DMQ{1EtbrGrNo@iiTJ zptb8Mgwv(*E_$my0CLD5#fNyZukC@e8Pl!-1kk0$uSR^?z60RVrRldr#&#ixEo%ux zTEhW01#~0_i9CtF{QSjv`HMci46=VJE|eH6saVZs&Hlc-q3f(wH@y? zFWwYu9+IX1O@?p2PBBLG-z5Oi?@RO~(05T`seeS@C((reUJU(k4E;z9y)TA-DTY2A zLw^)Q-vXU}hbZUC%)zX%_e&`By$C0|AMQmkbcRabg7_&_qUFns> zDWE4w^mh>c_Y}s?fqMqzErxtg8tS)7p9Xmkf!+q1^x0zM1rY9leOW4hE#hC4YRI!8 z{-xmes{FG+&xXC!)<_?WWGz>IU9rRLRdpXcr!vO7Wr0GlzCb-bTHj{=$q!RurVi@Y&CBgPp!S+yVpsd(awaC|4 z-{g-*t5(+6$;0V{)kWz<>pj{P-f9~fBhzu%qGg!CR4!14u2%T!Y!LyHw9PJ6ty-t zx3+jYTIy>qYpG|*bYEpld8;~5tQ`VFMIDhyu%*2=6bbqRo+@OID5NT_ z$W(N3a46aYDL?{HxDc^9%r^4U^)+s8COf^%U)LIGXAP)>(GY8BLl(C;fa4GP>%zX~ zU~_#_q|ijST?TSvONVcD%a(9Uz~`kO)a}4l7HIMZ0uid#fhMZW(H2c!FyL?ZBVJuJ zO1TA%s0{%^Hnnb4n?f_W)P@*C^Wp6&0q(q0%9ei3^0ll}XHA;4Jtf;hJo-Zul9qnPicR%G!I;->Yod@{C)RJr}!41e#5a_zh0O5_usyH>AG1@{`1x=KX^Sa z{j0lQ-~Z2yYrk3K`Qtm^{pDA(R{SNfcv!I`{hTYiAGqJsIeFf{R<@)T ze>m;W{m$Q{J@dpjj{fSDFD73~wx6l$AzPAhosMfJt~t19JkP*|?u7r*_(**|x;#D} z(m078gPn>?{?pPyeT?>pZiY?6bp|fdOX;HgLieTrp_}9RlB9-E-cep9sx Zz5% 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 =G{94IT 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�?eW*4qYXN*fX;s- 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 L;A@ZiW+O*JS^KWBWkXfAu}S6s?ON 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⪚*t6ZBMiZFIeR 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 RB6sScwso-=31QFs{{aVVFW>+G diff --git a/fair/android/src/main/jniLibs/x86/libfairflutter.so b/fair/android/src/main/jniLibs/x86/libfairflutter.so index fbf4a8d974ae40a9db5336b034e957f26db20104..53b6a6cd86554192d4f2101858084bbece58dbed 100755 GIT binary patch literal 124204 zcmeFad0$eIu~MMWX35s^i$OEF}DKu9nNix%s?AfmX` zy^7VgTCGKEtyNo5ajX6+*4 z&40hWZbOk$>AxFjPw0<^9%6@ov=8@c0rWC|P4LCPwEtXS&cz?1)Zxu_tu2jpsu1DU zim~|o=KsczpIkY9;y1U!@+a{Z#ox?%i`6>^o&V2AO8bvp+wa4R?%49~2l_mfgn^U$Dm4sO%DFU%%0RPe`E)d9E{epw^;Jdc zQphn|!~*r{p6em^7VX#$^_B`L--yoMD|JUKF^N;jfP|y|D{t(0$f2{B+oAuMfrPJi;szOsqpT z>zmio!$i77cs>=ryYiX!?MK$PFK?-vJ-urF#3d_gn`+wH=FhENIBrP>koj8J-rCr_ zZ1JKQRRCmYD`Dm+ozH1ZpDo`Lrqwhx8Juw{fb+}8E?Ke4X63XD>l0z!^F3{OO{;Ox zrn57DxoT`)+p@BL&cbOet5&r%&sfu3yYSTJT7?>2a#VA5OHG}%hPFKB$nwdDx1)`h zPg~R4THoBhXnAXWOwma~sOrC!zp&4e$%8lk4gH#O(=y2(?&8rWm=&F5cz(YXh1 z*mmnJRa^Rv{9tZ#{`4>Uzw%|t(|sO!VAH3M?{h-0Q<(Q+<3{I&`Qu!Qp{@Gc_yaQ|u>x6ZHDZ=~5dkO1^^LY9n^T&Vbx-fMW z!M!p9-`)T3rok^qSw8+7XfE0ceY4E`SDVM&M!a_6{hDRI#$FZXG0NMfJlF zOasdqxqG{o*;32-v3r}AUCJetw`!TeW4HhZ7#&+?1>9oMb=o%7z;>6*Nqmd@09QX4-y>9K|_tPfM&C#ON@ zYInKyoBDI8py(&+YMz2>p0w+uuhEOXQhm-X!N7lVdKo*e+Kel@*rpT9rtJCy0BDr? z=qU3UfpF!n`w$7Ca-&-YIi`V+nz$*OH*I?t6>-Ir_=K`rCu}dPhCy9n)n&QJL+@Qb zFotId!((@yL?hK@vo7yNlRAy{I}$lg?K;gs#%}Cg1|;KRxTbK;g}dH5FAczy zKMirZw!WxrI=wF{i=l+METOhoT~@ZM+T>#DIUCB3bNZae+nTm8-Nct5{Z!alw3`z+ zgejXZ{Fnu+E?Wd?QT?VoRw}Z4;^gOnbNigfI|Eei=K8O`jee@F9rG{Li0)-!{q@}; zNFn>fhHmwT^!S>ZZtyF#z2v6F1)J9N*5ivcGig(F)0yWYa|l;%s_Ko)*iBUhxQyIX zmE7pExyN!4;yM!7bZt&TVJcbks6Vzw$;J(3?w+0Lp8jE;m|eE${%6Pg{B(YzIzM*2 z*KayRcf$>66`Z3bp6F9Yg0_tCYh{N!ufRObmQB|!bmjq*p0J#<5IbC zRxU1+HqMG|WDcjmOlsp}x+mCt?qP#Wg>I_fO0&|f#JdVqXeBe9=w|xaKlbd&ULJ4$ z8ds9pUJu`Zn`h@u7B(M@P1n!6`_Z154^bPp!X&bvGPP00+L%(dX#-kd1125xVq`vr zGMAvt8}M0O=AwNDpnc@TwpPw(p1(HjkMmFcrt!Kl+RIWH8JOnu9N_XkgweN|?l5h_ zBgahw3y#bQde>-Fn4UfKxIuLyXC=G2=0f%cY`PGGXb;?M?2GgzOpoXizco_2HG20s z&$dQy(HaAG4Z*x7`;(XdpW|URP+unu_`g?{H$Kh$>A9P(-Q{lD!qWIPHu9W<*g`I< zet?-c(p9+oXQl#NuL7RbOG@Zdtl~{QHZMZs_4Z~YQ?t9?{!-7FC76p!{?q4NP9zAX zRG;&XL9l!~I=8#&GF_+rFf(c+Vouxm46>8l^%G%5_1VmpNju)nmG7pi+$YfzTyIcf zH=15nhHIJMFe7!t6nK+afj^nKyEgtE*$lbAc@SKf6i$Ol(Qk%8Q41(yAZX{vBs6@+sG^T z9@OFax#vZW$cxWDKYl^%oM@yPKtz||Z#w=4pjCMd;?@CHg6QS=n-0uOT!Wa?EQT}e z>Q3x1Kilwk12Eh#^6VUM^1?jtw0iExc=}oABgfJ69Ka6m9nUR+>MQ&uF*{_-Gi|xB zF%_7z5cX`P%inH%a==Un?l#~a3B%oCokCZFKkiLd|1*0%(C?MNtOsTl!X5mc?E8HP zxb48{g<-ILZukAt<}P3t;V!=-%;rhPCUFIr32p$6`){6aQ-A%^^+((!;BLiG@5~tx`#hQlMCZ*S%~(OS4HLDZShe+_+w)N6kYI#cw;d(DM^+p~vzwkkh&Mt<)(eR{RW z)~myc4?eJ>tdvRl&lwm!cq|sVe1@(A{zc4(m7nj~Q;oPQac#%-JzTHBwepKSdmh5| zTwLGA^;TRJmh$YQDO|6_wHntlO!Doxeva!_>e0?SaJ?7Tk8o{A{SSbj_i*L&RT5=c zj_bL&Zo&0lT({w>Gx*<+|JJ~NYv8{%@ZTEvZw>sn2L6Amfw9;l{sfN}*fLi4Vow*# z33Vp^_#C(>*Q|lLAI`s#khy-~x{iC-5EX9iElkTj^iQw`;e$^B{^I!C0tL*g2VwM! z|Lke01}FwO7yH*-u53j-uRpQZd+e3Axn;w>a=s_vUO3lF^vAU=uULk)FzqL}J_LJM zO0;}}E0!xd9?OrG-T-2Gp=Ch7(LcTuPyhQn>?KfFMfe+vzX|x8fxlz$*MPsZ_&Xne zSK;qR_`45(PvGxm{C$8w?%}6jVwa@GS5%B0TUk-E6tDW~N?MvrTE|sR7&mEh?eG%3 zT5DcbvbMgptr78)Mvommu_U#;y?u4tL1V_$n781gm$kGkYpQQ+S<_luKN>F{$F#S! zG~tzFWAhl3e(Ct}4Hb2j^-CM-#*JUvFrji>UB$$@rL{HXOP5wuOqz_>-(x3DD4#gI zTeh2;)~+fUS37RQ| z#jCD9=15bPwzbW}|632EC+d0_v$zfIJm!?f^=r~iJBDv&&4+F5F>S52V^-;=UA=lt zTir^nT~f1p_2}Bwt5w%*jILe3eoXDEnw9lq>gt!SSvF?JZ+>6hePV> zYn$3(G1a`LscCh4>u_ZQOYjrDle;A*48V$)uo6o-^y?^ z1;*918xdEgShX6jeRULr8fdPyElo|7*Eh7{9qjQF2wvX0xMp&FbIsDG`X!AGvyZD@ zT3%IEh4-~9w5{c>1kyB7&=zwyq4dT+0{a7GSY^F-|p87~{+g z{_oT_^i0s+vXX^ptJjrL-`d)uqnqlR)hTOQ+Er`)Dpl9G78Tvpg6W5q)+A&<(#9@1 zzPhrey`_OA;8oSNtUtqj`4gQP5p2MjhIZUF+R&VsSk~6pjrBt1UZ}zgjZ-+3aE!UrV7Q^t$5p^_`nrO> zz#Ml_)9Z2irCuM~Q1(vU5VKt+%xy~4v(b}>K zvp^FLtkl<;BOWlCKGmW8PzG>DV?FxFk`)cS&YrHkz@nC*F|PyIOszpln4R=>#ZufZ z>uZ`>{)KB+*SF%P+193Jw;kTb(r^Z#Yb7ij?>Gn2vJQD@=an!ef?A0KFsf>OZT)IC z#8I`iJU>$B$4swpt8HyuTJOh9Lq=M$`Pg35RHcXI{55UM_3S#MwPsbln%}ZoNb=kd z8YSa=kCoFiGm5hi2FyVkg@m4>s<~}VYrPhy)vT_mZEQbP9nK!_V}qe%ctT}OV^e!$ z^AenOYHDn2SLrKE8~EYsG__RKDzEz6mg~W=g!NuN!8U*ntS~dTN+Z&M^mT<%G~&FM z?o$&gO{db=6&&TN0X;xZA9ZSloiv)%3f!mG)U#bpmQ076-8Q=!XKR{k>yK)n&h$C- zp=lWC257rsFyfdFki&J%5vBu)R2eZQSw@sihw&g2d7@3>$p$_RQ-Of{qJjIefiGlz z3%rm`0ufPnV$!8qH94u3+tO-rfoKOYrc^xib&5IA(@)SW!erF7r@)bc_z9wi) zbku+~p$VE3s-QjDi30|uDriyaf+qcL9x&)Dg64e9;hYoo4GvSHH+7mj9z@$YeHoq0 z6WBRCK{u@@p>e!0E7ucr)p(LAmJt`G=WS2Sa1Qkmo^uGka|psYB+og*zHJtTZ6Tv9KUwr3n!&ZFu8XSn%RxdM{F@_D8Hp?nlb>eylVg#;C9$Vxy0UI2>2t*ixT6@ zi}OaA7vqmLFG`F!FHVj-48x9D_9BB5fGvoZWe@0Q*^3fc_Ts!Odog~Ny(p1oFHU9| zOWuY0TsfWv@BoVQ?s&*CS6xKLRM$5zYhTX!)IgcPHnqT<@0U@YF`SwA;Shor5EWv? zi-o7dTU%>RwaJ#OsG+3n#b2fC*z`9BbP8p+W{dzkc0EsIRa5;coPbxThmcrUwGCv_ zE=fOHS-VTkI@w4Bquo5D7uJu79)@L1V`{yyeq!)2x@FU#HZFUOV4fR17#cebYD@?D zSnC1U_Gv_u7uF9L9!7VDG^l~AS|gap4-aPgM;ceB*RmEU1=OyrF|TKD79Ird|`y!ugoF8w%>KO2b=ChJ+mrfb-b3g(Wp zlvk@hERZ{(g1JLfhuk5qWA11aJ6)~wutHi}-=>jjh-aR`B>N^gMXIjmHJGlOnH|Tr#A={BS=F7!OVibiW~S<9Hg#ey)Vq^U-4K4Fu4Xil zteZL2srBUW4hnnOU9OJlJ$6w|b(J$-0`|4hg%NU)>G-&Ax22Wajj$ zTf|S))w~9hbuXtCx@P@XUFPQAv5vhJqP#6-WWPe!S-7Q)qJ)~tykB%?E2Dhjw!&_D zL6aG`G1)$$CNoQ_?`D2UGfZ{6sGS-6re)RLPh>FkzS)I>>aG=Lr`x5>YU%%_BKkMM zZnkA0W4@jLYY}}*-?WHUvHN|@yIps)jDarindx>3 zvl;rPExsN03iZt9zsGGI|IE4o?C zz@1WB>UKFhvGq+08tAe9ilm#x40H?MPPYr0)zUXCVmUVu_1@QBNU{8Vh2YNKe1EGf zW7A+fEZYS^SCdpQ32xEd!Sn9YRlMFngCeW_JnSV}4UBxp$dT4hw0b9Wg zk}jvfdl0jf?IcBT7i~Ne?Y-$THb%=Un5Of#14EeLV`GB7G+rhZ+&CoAckE6|(w5<( z94R_)zRdkkW@#_&w?4xGv$VGcY{*Dai4=Qn!8D7T*;qH6aPmx#*b(eNUsqAV{Q-Fv zA^i-~g=MZ@f^wH`K(^%F zE5TU50XQJKQT^p%DZ7~W(6rw;%P0G7?k&~3lylL|yo6oMcUaPH<+?&x@Ymm6%C=}LKV=v59h$a#85btRqPj~t z7p*Olb}{SWiMy9~VMDHzyOen`t;)1r%zc*B-OIk{GyV#=OPLpq=BMmp)Z0^i; z_9Q=Hr|q4&*!EL(-r$)l?#Z67y|j4dvU{SJtkWjXTzmUD?7Yo07vO#l_tNMYtMH1k zUJm!x>KRLMzVtVzg>bN1b0Ak1%B=lx7fwXe+owkx@!hwdjfE zm6^w+K~65a2JeD?`TbNlH?=ffEg?z#YRO1ao35=u5`EM3Ys*hlfg|l+d}g9@-YC3U z^pk*-z0uZfW&(YW@axu3fwDBEt2~f|8533Rr$NRVywlf#MBF}-P2s0PKd$r7Vh55< zw4<=A?UXqTD$}Xct&%>@Y!12kjg@(5up*squPv52Pgaai&lz6x2#1-?)|Q#maW>^% z+O9D(RXU%0ZNT-J>C*Y^LM!TDAn<-@pkji}XP26?F4HUfjciAA=C$K!Yi!Ky1bRj1 zjW;iq9BoJvSQEgP*LpIEH`A(i2}<3_(`{!mqd&@)T^6so zycBY@AxU5z03Uu!d1*368xjRp0Z1eo$xD?v+K?<`5uk4zU2LPd8Ixi;*EoA^q`84s zLYlp{QeZKlS4Deorn!N3f~UQ-)7(HqA;n%BYHpyVkfsYQH8;>yNY$mLnw!y9x=z9x_b!@*^a!J8xU z=8FX4rdsZ=G1Gk&>mjqoL@&)8su@eZFnGp!(+ZjnKRB;TUBg9M=9E)0+0Ju&O@bZ2Vgf77FnplvPrz~}4Ag zdPQn>VKkp2=1;&88O+|cQnk=7{v>i_hSCa&p?UN z(XKROp@aIPYC!up8dcpdF?E2k#M12-R}m``QNj|~It2OP5U&hzmZ8)$9Z%QJ{;Zu! z7%KC1Cc_7y)znaHFK+5&m}jroB$!WmVw~dei0>TU4s>C9Qm+aGM--y)tdx=cL033x zpA6jSbgAkJXQBvWOo>dc#(Kp=j=>;5TA2#)Yo3*$!g^q4Z;GaSQ_Sy8aoHymrcdT% zmLbt+)?cae(RZ`(`#~v1eU(@PR@^W4fNG+jbC#&tTIH_e-~C z30reWW^0zxNqP+JpRNnjv}Lks56EoVpIez`5 zt1vfRg*{9a_B55%iv{j&3Y_QnnS9@Xso*}W;DXGW?dv(!HS0H{9yNuYR@ZDYv&Z%K zdt6awkJ~3*?E_ft`({>qv8?uinSI|)_x(X;`W$Tf?0$ZqElIaidOl>I9pW_*=2A=^ zUIS^dJ58Imo;hlVWf{zik2VCU_$0R}$Wn9lRjF!wWo+aE2oo9T9gp(&4WmauxE7Jl zp)vl3Ks>&Mf-@$;UugV0!ZGKxoV##UIoqkp*@@3c&O7*ws@$7#$%*yAJxN86$Hzbh zCigr5mtKjg27Q@vioVReLSJUxr7yEz*Oxh8=*!$*pnL6=s2-{>N6ylhdEeHTqfXVA z`IqX;(Ld3b1yAeC!guv$(LeNMaUmFDdnJw;r7y=$)0c0Zq%SA5>C1_i=*vkr@zSGC zXRt^8HZ3*0rZ3CUqoG?dSzlHz)|aLReQ92&FRL%qms4)hm)0Hn()PZ-tRbCkuO90L z>dUEz=*xGO=*xy?eL4LMefjS9^yQ2n=*yWu*O#-N)|az)>dQHQ)|YcX*O&9-AgS%u zJ zN9xP9{DHMzJ+9xZFE`wX3x+d)%d=Ok@+^d->=h#+#}CaLhfB`*i}9JSKQ=SO8dZH_ zm*Y~9cMv{v4hci#@%K4%ns(qbUw`aGNX4GUXYOo#B%Ihwxb$U2-aLHdT$+hBj`EJ7 zYE`C6<(JEf_kbd4@ZB=*ZK7`o!bOeJeIebhz5;drt)>p^42kSV`i*1c?MP2 zXR1`*1&qCc)!`S=B3&JXPN3#QUt=sCirAd1gO;igyPWtHKHe0cJk2@lg0X8EduUi8@=mAf zG@ZbBJf9IuJdY~+AV%9&i0pZ9VLZ3z-O0@e6Wa40mApJ1#;*cK-vjW6R6I!F{Tdj- zSnK&K1JvOMFyGw(P&^jJ-CaFE{G)~Of}Rg+d`5}(`uQCxn9zg{!u z0cF}d_XR}6a`RrtrRN%E%l3n}7_pWvZNz(wSVx;S;(r;@4_i;2iBYQkkL{(8-#yM4Zc;Q18i0X~Zd-plAwrp)fI zAUw>7a$5kK&-CX0rl0zYz8>8T)l z--rn36Q>C__P>2Tz@=9p_8!K5<~)*)H5EZ)`F}!OezKCt-vIdqkzWRos`OQ;_E7at zXEw0fbiU3^X$&;;DRfKc-%eXVH3q7ARH+EDCKWT0Pb2w1)?OO`+DK3|;^&VcRk{hP ztEoyvh!yFL{yyk$qrOMbK67I2|1UtlBB*!7tCjqU@wDFytoSce)kmmw{`9~p9R>Yc z)c1=pfvM24d5Ha#vHc@9rUfxk3>RlWI%YFs`Y~ppi81qH>FtOf#OT4oA#x_(J9IfLiDkWK2S!N)*!lp(W69tGKFo*jnKDI zKQ`#7^rujrLDjepIo}D@6;w?SsZ0ZX2GvbeO%AAZ2RJ~L4#Dpc+)ls|VSxNYC$MT3 z0L0~+Qxyto)1Zq0s==^xW{GZO>hEr-R#P=MSZtHax1c|r`gsw*b9>#uHeD`$IB+9D zD?}!A-7yV{au@*DWd+!xtOw}M>>yK=`vLk5K`Vp#wXQw^U}siNW9KXE~4zR9X0jPg=ka5+22&##oRgwRo#X7p013+a~fOT~i zK-05>jH`zMT0~HDWGD*L(bX3K)MW)&SEEXmT9X}QTr~l7K0z&FTx3)r09R%OSXVCt zbW3)SaaFiKCUSySN9Ki=Y8C*GWCd7PX8`nkc93!PYk=M%=#)rHs4M=A@26P-*42nI z+_LZkCgE1{jjI&^6%y1MIW5%H%>a~T1z1}jf=AL0a!-B=^X&3Bs&0DN5Boi8A8t`cI@U4RqFE2QMOFS19{h8kjC>*f&49z z-w#e0((_k9eb70|dafFV`&q9}?b+757RVAJZw$^K((^k&P3|0JJ&#B!wQw&;Q|1jo zt|IcL;B+EA?*Quj&QaEL{&4)D&R&ql^AaE*AaZMPc9EWM1M0=jQP%TkK>l?vNaMNc zKrB1)d$G>V!O2E?z8I*|&QaF$OF$mH7o_ogzzEE!ME)Q+_ejsHfLhf#%6k4KkQeL) zX*}nSRO)6TZwXFC((}wtq)~W&!w=1Ng0h~^ z1rqN)Iz?*FWv>7^oyZ@_sYZA$+YdjhbP^GFg(8f{vPPiR5p{Ps%9Qf~pe`fo7ZHB} zubpufY?nWO0_X;U?hj6GOruJZW0bms`UiqjkkQYC{z2*=3QiP8zYhARsQ*oHI2-+s zp?`_`?ZH83^shqyF7=NFhlbJTV4wG|)b9v(V56T1{nyk#5$tA0za09W`OrTV>JQbv`35q>1rkb^Rfc0t8)OV%MLQGo&e}Hf>hLB zY)e-P&$E|i1z1;80QzBeka2YeKo1h+ME%9KboBrL&u0Z#S6>3OD?7-zIvCx24?&SA z`>R>kOIPgx6c%IySXVy-D3u*#Tzv}AAp}LE{$g9Y8iC%tAS=MSS_aVa>>%UnCjfny zpjgyjY)e<~18`+lfOSTS8oIKX?BoyRd&E+ z9J=TWS2@uR?Nqh|%E46T2bIP}+4TTa5>U_qU`p~P0CNZ^jB=6{F2qf%_d!aXKu}Q> zRVYDbQlAF>YU&3>1N%!x{~hShr@lDqKOO7pGWu=MUrW6k9A!rTKJ<4|KR7rvjDFz3 z_>pbuOM?B`=#PT__tcjLJE75^3;p}lmj!!{(LVtFKd2uXY;LVD`xN^8e$Wq>wM?D8 zX;n-?tr0My1Hjz0Rst}YfKeR)=B9Ns0M!JH=>RY{tych8LO^*3fVpYqAA(IO0>*U! zn48u#0L~*|d0ZXG#W_VGh{iZ7Q zB~^9Ne+N{fp&FQksv$aVmdu+fodeZjR4tD-22{(SYM^RG^rnF7Y^W}vsww(XKy@Qj zcTm+F?KL~o*Mm^~o~qT+!vm_MH^^TYxS;Yr_KS0q9o*z!nS8)nW$SVO4o>wV%?~+T|nJS)Q>DmSBsBg1*x(@Re1g)>UN9L zb>pL0OR8)hP_Gkpr$y-s@=>fRRdyCoe@PqS5p|zM1?ua_YNCc=NR1@wR~8khFTUhbWhVf27*P*dRG_}}q+50=Pz#89*rEdU z^-JyXaiAKAdeou<_4STMeF@Zhq8_)XKz;Q(lKC2eVZMo|rz|Q^U*k2Z2B@2edd8vx z^|gek(rbabm#F80ONtAjH=VHbMSyk_^g;lnN?CFLqUvR#nh49Pv=p;J?f|G>>!6we zRg$VVgeozQgWTVOIErssRq3NZttaaJC|_QiNtAad zJIQLA98wSnS5k+^N{WVR$87f{&r`20(6&I#(rY;!4q}bG1sYOoy+DCD)|G z*XAbANQbZMo#cDv6ETXM8w!$qoBVx-Z%iinzIeY%gtrbz@&$1v!#{A7d?WmAhHoiJ z@)huf4F9k!$v3^vG5q6HlCO5(WB9g_NxsJY55sqiP4aE+pz#R*v@*%pvkMu%Yf_T0 zVplQzvnffwfIXezZBvtc^{T^nPfzlt>qf@kGb_nAt=BPpZ*`KdR)5CuFXkutE>(wr zxhTn(r#l#b|8YsaG1cK;otWfn(w7+jz{yFz64m&J>XK(5tZn{!d6F+Z|4PimP05=O zj!i&#`|2cLXzs`GBkf7Pw_L>VqwAA=J$W9Q%h|CZ$@h`hG5q+M$*lO-)~Fu{n~)Z2)}S|auLE4 z8GiBpB;S}VVECnnl6*0C3d1jNPxAfO7KUHhk-QS&I~acTspKsP|CZs`o=x(_)ozAg z-7IQV))IslYED?f#J8_OBN!0J;QJB zO7gAHeGI?zQIaozUSjx9pCtK?=W~YN{XEH6Iyh;qocF#;^6kw~hTs2s7+=&J&hVe{ z?ws#qYAEcEIm7tM<~qapR^@gIf9dTEcWl=qz_q+{@lgX^_+8q_}S#$1>m9 z&spuHxIcXWr6Eqclj1&f6{Rv~y_4dGa~-9j&ITvN?d9)M8s?mdoI$#VQp!2kNpb7= z9!kTV3!M}P8Pl%_hbIw|f@euvT#&KpjOTanjM zn&!Oiq`2?+3rf?S_nZ_r7+<7RCrDP2UV#;J~^ zxPx>nrKQgNNQ(PKzoAs?EQ+MKJM=20I_J1ZihDtSqg3yl7)f#Gr*{>k2Iu5Riu*i6 zDJ^sAA}Q|bOr_N5ERUqPg>wR>6*$I`;(pCqN-J@aAjQp@%P2MBwRnm_Fp}a{$v8@F&c%@wH%8V| zYIn9oQrrvKOlggCWhBL&k2@)?b*@3K3$gs7v<~mkQ{3Lr>DJ>-Yl=G>uTXay-n6B- zfAJ}$?>M(bQrxk~nF(owb7v&QO^QP(o$hRlq_`V#I;HPA_eN6Od$^j?8F-PE;zq+g zl+MCysTB7Xc2PPTFPT!@P8d83(m8l#l;RG;B1-4t1yG8c1{YB}&v`bI;y%H4O6NN} z(a#|Lozex)i)b-OBWFXp(0MhI;s(G{N*6hAL{fa*-#}@T^L8Y~hx_X(UF^IUN%2ws z0ZN;lU6B+Y++U+~iSrTqJfyEEUFv)iN%5h4pE;1WIG;ySd<36B=`!c5NQw{Kiz!{< zd>u*g>3TJ#@8PXLijUHpC|!+x=M*CaP*Z%c9YyI@?1-lL0DB~*A7Otp#Rt_@ly1XrWr`1^n<@Ro zNkvn9@cb#IJDriy6dy4Ehtgfn*l3Cml7FGJ&8dv0_`sM~4e1_dQZ&T}!%>v(!^T{S z4}ix~y5E@^P4Pi*9i<1H>CqG)=&q*p5cbkid~kb&(r=t<YkgqrwMpJwiDWmkNb8$4qN09N9UdP5qijN*ul-_WzjHdXY zv4qkeook{gK3lX?degZ9`GmBQ(mU9OP_deESe5fJDxU{bRdgLbe-wv$|LEBW@`!hz zsZkzxy^_IH>~h3L|D22UAW;{`egJup-YcYm&?BhPXQ6q5@WW!yBRD+%8w$?Y12HZU zP_aKFw(m#yh<=HW-PD#u@tsliCj|Q(6y-a%*BC6z{U2Nsj(#BhD{;ePWl#okpkk95 z$-_CiTxJ_Gx(M>%1QM-?eG9=6g$T!LiPXE}x&RZIrRaANSw-Zs7~jl|IGD)IL{e{T z>OyN5de=O957cKe&3@5eBe)*HJ_kpiLa>>^19DHsCD)0)NHczoF{EO<8A&_Bw$Vh# zcl4^WtG&ibsrDMs9D$7mASDa5F8$Vn1VCKtMKD8Q|a93z2aCaH9QwsTMu>L)A13#5Ff{*yF2Sg#d*zj znv<`=2D9$8sN^3IX3uq2tK=UM=KBxl6qU>cmajUTR+Su%Fzd!?Q^^qs^D*CPSIH`b z`L4oQqmuIw=4%OOtx6t;FoL*aA_F}TiXg%n5=|ob5BTVFXmmdWKW1=P?pwIzM55)0 zDJ8BnIt9UE1p6Ekorz!pgF|zB;u4QUzlE5?h%1ZMAvlrBX;B`~AI0G4D8IomlYj%F z{I17*28YHj0#@`|NNDPt7#V0p(_X)##vgxP2eTdLRjO&jbax%H&G}gtm1)jcze(XK z&C#`3In{w2S;N&?RMzmyY--aZE~1(Z-7&{M%%ZY}cVtr=!|zhfUenR=f3m2o;X#wb zQ`)MSLN&W!N5jWvQCY)lv#CvvzehFub4SD5vZ$=#=d!7d;g6~2;OJ<$$3fvLYdDon zZ4A$(nj@{F;iXwr*6>-`)W+~usyS>s8h$W~${Kz>o7x!u2h?WT)%PxYo;6m0y@_D7 zH8>(nWsJ>$DmdEY4BF6{-kQItQ;hL*7cqgsC;j}cGrjfmw@xv}PZ73Jf@4wonb4Wu z`Z>N+jPdhbVgf@``nj<)z4h~Grx@es17ZRrRr*O_A1ABc`Z=&ujPWy%n83i5ewsVe zTR)d~iZOofBPKA8rJt8O(_26P>=a}C494zLa9B$}hjym7ewKEMF@DY`CNRpSpC5Im zw|;)xDaQEu7#KOarH`K2>k8Fb`v+##8{2cB7t362nkzngLvExR^O&5-xXM(qbEpXn zYNPo+HGx~A(fpE{z`!w@=cx&Fb))%^nn33?n)p;`0^P}I_M;{+uN%!|Y64AWGz+1T z70FmV$EsL!n2JSLv5jFWmR-ee4O6l3D)w-giltYv*TYmSzKVSjregV3tN{CU9Wt+v zyTnF>saOLlHUlcrgtA-JWKr2(b!IlT=~OpS?e_p__<<}cYxuQnYGe2-s{IZm4Hsh5 zFid3)S7cKg!$(u?_djX4DT~S)-jq#k4F7~`zxztVk7rR?!|!EN8^cj-T8iE;4G+$u zvW5@IrZ$F8q}m@m((t-0Dr@+vY-(fp7gYOWPa58tMP&{DHJjQP&c`mP?fuf|0U^=W z;M6dcF?Iq}V#d=3%?z=I8h^$UnoFq(^mmiyc4`70)@UB1CeY)I=8x0_x{T3$NsT|_ zi5&E;f+o;tCd~+H0<~^5RnW+4W2~L=P7YI<8Sgt`DwbWvt_o9`8Sm~em6`FL4O6lB z*#8MrnHeuKBP8=?#v2r-GBe&Js0QgX33^k9@A}PIwdipOzKH#4XKL&u1c%3;q2QEz zTO)0V?aRW%PDf~vKGUF$(42~0&PZ*~i!|pHVyw2<-B8=Q*6#HwgV>WyoDNsfp$>GbF5^y3bsHEzwF&Gf{YCmd~wMpWzuXlzlvSlg|B$wc~0kLOfHe~-xB zv_38N3WCGquWMJ8o~yqw)xYs!Txl=S+*#PbNFvqrSRR7I<1q@(crVrdh#jQQ{0Lu% zBC?Xes@OE0Dy36R@KSw?sq`5jk*Xb$#}hascB)Qwq)s)_OLZwz=`%qh)lU$4I)O7| zKhvpNb*f2Ts>hj1pAizN-bUnB0%yhE*Qu`5sU~}={>4=K%#cV`gf|3F5I8$F5W(T` zU+Gi_d8x_~J4l})5~->Y`Bwtx#E#af-qEQJ_EIflDjrfZHLqKaqKchG%~kj?8r?cZ z!>J&)m1=!jPrK92VAOg9JxsMetEbhvzKxnwLhMbdc?QiG*A;8joEBm{Q!_}P)6=PS z4H`A4hM0@@6@&CCJ+0PNWz?J=Vh2;L&**8jt`no?6cIZfYTJ9g;+lh0u{FL*msc0x zOjKKZl`gA)P%(CguhQl8k0{2T@Kw5uy2!@hJHASn&p(zJ``TCOvgx9lRQur7iOsw& zmoBDJRro4hEsd?{YxVWIguY&%>55(M>vb`Gy*_dnyT{k-vif?K zTE%|v>ve&By*_3b`Byq{=~)RXR^jUd<=2M_V+)|~tEcJ{ePo~} z^ufZ|245ej2{WnR;Ohf5p$`+r9-=4R&!6y-fjZF#3S%D-$>xiF;v)mKqYo9v3h=(E zukQWD2-$iF)RR6~7(0kaJrJh*NZncd8qF_zRMv^JwShs@Ss~t*h8OnUNFGgevy;%t(FY zFxG1xGzIvG4#da2ec^3$Nqh#bF~^N*&Xk9ta0bOx=|uzZq6dFYNsQIH|3!G+rb>T| zn30Sv^<(oJpfW5zr7uA@mHIMYuS&l{%p%4P^<(qTV=6u1N(+#K6R1xKy>C^;b|6=M zpTwElPF`$?cTg`sriOSY_4>qOL%gGU1+m;AEW;GOD(n~QJ%m}Wrcf9w7{YvN zO){1o!tAZ2rhja}5avb0iej#c9gb+zq^v&`J32!arH^rzjIGX8`^Aj08Dp&Z*ppZVginHoj}FrP-Ze?K$|uz%sOiP{Fp9yDkG^E{$iIfk_RzGWE7%i z6Lijq@wMpaf?i5t`Hn*=B>l0hFKY0~fTIQge;xBz zWM7XlXkRvn#~4(svo(5~XM8Y>eHvo?AQ~U0zhJ4#Rd0*~Z9I->-ZdhFX-MZ(ErP?C zI-3paAQIu}K*VC`KUzj^5gS2Vnl3S_=@O&cp?0F0E-`B85@UugF@6%TW_6udieOH9 zb)DM=Nja)VnuM`u9B$*A5lLdj$YgNy;o3W@x%l!*knij0WbuW}QGVG-)H!PLCN2GP zG~QF41V{-W1=03b)vb&#cxr?ecd9aqeV;Spv+53t{i3h|@KfpmiiLL?aff<=Vi7YA z?RND##eL}zqt>Hj>PJeZ`THS9pkyi(luSP!fiu!^-q{KTB@=z=*#0!se>^{`_^}Qj zs!&ieWg=Cfpk!hWjS;3-g@Tgl<$y|1G7)Q1(R6ECk{(+f%_-z!6^P*5@vE7BXi zpkxZzXHKkrLCNIRO8@U^*MgGCSLyueiY^qCOiZBtt0Fys&TS5Sq5k}2S*P*5@jb1o>E z{8Xla1SM0ZN_T*LRH2|`3IX)L8AD1H3QDFh&>u8NP%_cCEViIz3KZMqQcyDao!jdM zdaS5ILCNH2f}wO#1SL}lz!pVNGKGOmQ3NGZAivBWYE4iwg#fIp14}$grZA9kwGtpp z$#hgkt))w~6#yRT##z1)fOYi>K$emz3}jphN~VS}vVqdB1SL}lz`8nX2ySD{&#Fim z$hZ=eOqYbZ5|m6K0PAX0sY+8ag@KGKLCNHg3)wBU!pfD*a7!cvU|k7HrZA9kB`BHh z3oVtPWC{UTSAvo$3}jphN~SkMT?tC25P)?hD4D`Q#+9IC`XtoV&1E=Wh7|=kn?eBA zm7rt_18G-9f|ALf9&GO`I_dx%=%btOL;_0VqDW9O1p%fcf|4mPw)I?M$8P>mm8N9M zhO%W6luTKX#`8~M(^4`8hPw1DD4DXMtY<;Vloe?_3reQI$d{hq8HR)Xy->F|1}6~@ zWjzZ@rfl~58_ye3*kPp2n}QR8XA?7}pkxY67aq!b7L-g`k;b#2WD3j+o=teZZ8(;k z%-_~XHk9=&D4DV%jpwQZJxZp)G$B0;N~UZm>se4TWknj#f|4mPYe>(6k|`U?dKQ#S zS&_!GpkxY6BGR*Z*Kk|{8!NY8?jDI3aq7L-g`k=k>SpkxwL zjqq9|D4D_##$!<bB~xHBVj5K_D47CNhS3X3 zrog~9dO^t)7=A`CD47C-#OMVjQ=lswy`W?YbU33IluUtcVf2EMDbRRYUvwRwN%0$69NNKi5b0jxAtBq*7J z0M?o+`l{TcWC{XUZK_C6G6eywH&rMonX)go1tpW;+eH5_6qHOM06X9WB~uv4^nO9f zDO|0IVxP$rJ`Mt^_5MKL(_$nb;SyluRK2>q<~Eg@KGKLCNF~C+SL1GKB!F zD?!N=1~RS$C6hlgr7J}pv`rZA9kB`BHvsYkjJluRK2>q<~Eg@KGKLCNILV$zkMWC{UTSAvo$ z45VEZ2}&k25ePR$f|4nqG%kt+B~uV!N+KwkILQi-xM>MWroaSXCUrr{6d1KeFDRJ; zL(S*~B~xI07`>om3Uq3t7nDqao@n%fk}1%Aj9ySO1=`%`1tn9Up|rk8P%?=Mq|V;7 z1SL}tzzS1Ef|4l+V2!CFLCF*Zu*y`CpkxXHSZAt8P%;GptTa_5D4Bu))|x63luSVY zt4$RNN~R!y^`;61CDQ`P2E?P2cIQ-3GI1-_=!sN?f|7{|d{zG_P8O;nLCGX^gsMV8 z$>h5=>oGye6!a)4nTQoujYmPrBy`5Cpk(sRu4hII1trt{h%iYB>aRyO2bd}pluZ7J zBivL}k)UKU20WeJf)tcY`%jf#RAE2JmXhgP0o7>8mXhhxfNBn8exVXyje9(xS_Zj+ zsuj_H1ypB4wvIEg!W>3%ZTm1|~ zT1uunJv}SI=!*m;Q=shq%_tU>Oa`C}&$_SxLCGXa&wN>cpky)tU3}Jt1qeze1JLDX zby$F)WHJC<0jv)T5R^;?plg5?VgZ7Z$pCZ}utqFEP%;_7{%iw1jLcZ#SSvakZ|W>1 zlR@dq@KLN5RU{~x3`+M0AH}*+MS_yapmeqPC{~av5|m5^rR&B=v6k@a0|(+PC6htv z3i45`Dpe#XnG8zTl8<72siON}%Th8Kl&&ft#Y$5}f|ALg0`LG zFTUhbMS_yapaS)!C*2}J$z)K0`YJ@eRgs`%GN?d(9imZ!lF6U~^|ef+1SOL}1?r36 zm{&!DlF6U~_4Oc8g@TePu%vhodeaFD1tn7^NEPzP$-nkN%e)-*Rc3A%luSXDpk(q@ zOLj$LMv<6#aZQ4zlfwO8XqYg@tf`0#u=(Wb&4ms9^vsC6j-P z)Opmal|n(u7SXoQ;Eg_@|Y{q-45} z;kzakzlHElhJQAtn3PO!GrVnTF)5jJ`0nY&q-6St@%PLsCMDCq8NRo=n3PQY(1}3F zR7^@H9scE_Vp1~U7amE;R7^@H9sbpc#iV4K#P|nJE+!?D#y?b7dcV1DGOc9z>5Gd=$#fCJzui(yN~YTxe&)(zQZnse_}OcUNy+ps!~b(b zF<j*DwbCU+5}(UeHZ7zD3OxMB_-2+lt{_sz6|MgN~C0Rxi`+^w3?F1B_$IN@n}jW zmy}FLP$DIhOG>5&N~C0RNy&6JB~miE+@JmdB~miEq-1)O5-FKnQZl_miIhz49gzM- ziIhw(DVh3Df<#Itmy}FnD3OxMB_-2rN~C0RNy$`8iIhw(DVa{EL`o)?luTDsA|;bc zN~XIhk&?;fcJ4EjNXg`qlIa6Vq-1h6cm8BZq-1hQ$>dTZC6h}^Ce30-N+y?-Oq$1x zluRxunN|@=N+$PINEcEfC6h}^rdueHlF20{lb#ev$>frfNl!1NWO7N#q$e0sGP$H= z(o+m6nOssb{f1UZ$>iqr!HGypq-1hQ$@CQ^QZl)uWZDPc=hc)AwjQZl)uWO|Vj zDVbbSGX0g(LZ>9+-T^5eUue~oOfD&zMo}UqlS@jbS(Hf05}s3RqlOG>7{P&yfuOfD&zat?t+N+y?- zOhYJfrfX)z^IGP$H=YN13*CYO{<8!3^J$t5MzEtE*fMmlt{_sa?{`gN~C0RxliEYflN~} zx!f99K#7!0E_VYiq(n+4mm2`Tp+rh1my}GeQX(ajOG>6MDUp)NB_&f49)L6@lS@jb z@svo(7@DUp)NB_-3dlt{_sl9K7qlt{_s zl9DNcZ@FnoCbwS^77Ua~$>frfNzfrfshJWfnOssbZKQ-5GV1aH z_I64?a!R5uDVd(8L`o)?luWxRk&?+JB~uSP$Z1L@mk*f3DUp)NB_$Idnl&Yp%Lm3r zN~C0RNy)U45-FKnJ^=ol5-FKnQZl_jiIhw(DVaW_L`o)?luUf!)s##wDVb(c+73!4 zmy}GWP$DIhOG>8eDUp)NB_-42lt{_sl9Flv8IVZHbCOfD&zv_wiKmy}FA zldLJ3Tv9T9I1>^nnOr{g^qK{UluRxunMP0|C6mi%nJP-8WO7N#q(=@ZnOssb>5)T9 zCYO{pQR&6G&V+tSWvFJ`E>R{MQJQlPNwm&eN{sWQyb5c?6eO;zh*7hd60! zro?-Y2kSjU+6g_18qXhzl?|*ohb0OT%t=!-r4Q^Th9h>sXne$G!%M=6Pes`Lta_pi zxl7C;fP2vKP<%Cl||VWoy0`Mi2TxwN>nqF51zud(KJvK@T#+` zH}wR}$p%VKr($BE2(8NeY8Z)LX5{D4w7g*yB^w`YwrWTqyM%u$*i3_r*%-gB> zolujzDKR+CjR|r$#rh`L8xxOYOQ~O5CEkX5!29@!e}WG~;4~yn;8aWkC*~gnPQ@f} zV)q4sQ!xpg__hQDPQ@f};)@XwI2Dt?i4_C_r{WO^b5j5WPQ@f};+qW+I2Dt?i7zog z;8aWkCsqgvoZ_b-GJ*(aNPGi=Byfr!8ovO+j~N^mdkdGGNc>vFloD4OzZF3eIK>Z% z{|rGAIK_v?41rVp5yTh*r}(o7PNZ^L{1pUA;1nMnGr#^F-;J1=h;a^xnIGYf{|hme z&dK}=c!H-jM1MAo=rS_Uyrv~5P~(qGuj|<^wU}z%8@%C|Zs^rnRHmU5mu6F&*1U`A zK#rJ=eN^J6Mv(kv=#`0#9MWB6pM*_ApP{!SK^HGEw* zwK4oFs@X3)8h$a0${PMGo7x!eR{_KRWF)I%R2G#rT%ApA46me`Bc@}H&(ET=hJTn% zZ4B?An!~T7;kUA=tl|G;QyasB#=$Vha!13HvZ$=#W3#D^;k8hgbTrCu`UIn`!P~-A z#@J)@6&P)LMA{DgZfAOHKBux18|DCLVgxaP!6*I9?M!d|v~-Fw<+*~Gz*v-ie%_hh z`gx^OjPdg?Vgf@``WZOB6TS6wSf?1{rsG ztJM#~RGiOLA~88670a#?L&8)nyh@N*v4by`UL{DZ*g?hOt3+#&m7+yoQ-+`pzEm>67 z@XxZTjp5%>?e{-vcy|_+HJpom%dnJo><**a@4nLT5m{8$Fn@U>ETuJkCe?oLmxiy; zqOyj0)+{WgHT)XY{@{^@KhL7Fh6}N68kW);<`Fe9_N3t>v#6}$rfh1{c$=WMV@4YN zK}fVU$lufmrm(qumA?ELPa8Bd#NVj#moY-q8+)|D{%+C?r6$l}jbXBP)S;JLCN^Ol4-gufkMj#w*0uaR-BD#v2`` zGBe)nFqN6{>cUiJ#ycZSWoEqV!c=C)`vp{k7hvu)OK2V!Fvr~z&mlN~c}=`Vj6U3= zpFxRM2@)#~)^IP$nVsg7kT zeX2;LYDMG|G(S7BPN%Y@O=NM*sL?g2ak8l`fxua4~V5 zuhM1nk1QtIe3dSjE~d%GCB90ROAmN6>UD$Ovb`G zy*`wfAhDt?kS?pQ*T)ePqkVngV4XgQn3(7514rug5yV8Zuh&KQ?Xwb8;u2pUDF5xy zsKj0P9H6J_`+a1fCiKz61bWvk*9U4sA2&=4sDdZm&r1;suM>UbFmVKt zy31Gl$UyDrV~2?*B6aUy>mvj8q>mmZt|C$ogsna@P-FV|VPZRxdQAKlq2PMMKZ2Op zP2k7)i2nm0hP0`aq)o*nZQ@M|q)o*nZPMX$V#OqF(kIhE+LTDm=wMwX4#|wvH>Jda z%*dq>Rbm-F6HWMtufvBSZR+chHfdIsfisZ>kTw+x(k51G@&hPTp&)JYV*5V|Re$DD z6$;WOPp=9EX_FV*{~e~Hh+mW67bmg?z;P<(>wT*#Q3C9M1Mtz;BW>#E9pwXQQ$O!4 zA4r?}d58Hx+SHGvP1hhLNt^nSwCOeqAZ_YL(k86|X;VLvHj$x>q)q*p7Y!q6Q{wxG zHciU6 z+-%nKwqqvdIetnVt3kS!6ZK5QBbp|WS-kN5p&@NboaZOi2RRd0F@d*6SBW1{_SZ4m zv{^uIr^e5Z>4GmYl6v7U@xP4ZQB4sUABr;l-9hD_k>Cr{{kP}gNCM)V#e-(!)lCee z!ICyDn1f%kOOrOuifBjs7v$q$oraTIadim%&vRjHUWAJ_q%PoCgUBHUF{yw0$cSqH ztuXe8Hg+wHeJ{kACX8C4ebd;dw7nw2ZQh}zEFyyuWM&QW4n>wE$mDd{NA1754_*Ul z^Za?K9vtX_qWzQjSy8=U-G4jat2BHVO3s)2LAa_0d|s5@h`GrzqUj8*O!W@@#MELG zB+V<856m$+KCjerpdyP9IT3+qZakWc*ECT)ps5(MYUYW!H%}zUzVsm!oF{U`JaH=A z<(`7JRXJjw@M3#B2z`&`%u|k-Cp^8%5%Yu>+oK5vdr(w4VxI8zzEu_d1gM^0;3MwM z6A8`}bn0N9NN}Fe0_KSX=Ls!fo=9+>Xe12tM1u3g%@iqh*ujs# z<3r^L8mvsD$`LeJdn(rBWSREmChgQN970_EGE$YRlcCXvN3`N%f<*AER$*^JNEDcr|$hZQj2Sg!nWA-jd3!3qIb zSAqsB3}jph8m#f5r4lq)Apq-2&|rmuj4MHdbyBD+L4y?nu&x9RRv5^*T2Y4OKfYf8 zmaCRfS2qJ-X|O^7)|H^a3Il0Z`GN+kLzl=GG*|(pagi@*uz~2tVrWo&|n3Iy7Vk)u(F}7XF-FN6=^&R8mz#`m!97l=FwnfLs`#)1}iJl zcosBRfr&tR7BpDdP}Z}c!ODs>o&^n7U|x`(1r1gUkD^h#T7c^L6su5oE1r1gh!g$OVG+3c1Q%*sH-^_%bK_U3od1ag0jw~UFKDoW0M?kw7c^Kw0IN*p z3mU8-fOV$w1r1gZz)Dm3f(9!HV6CZqL4y?pu-a6YzrDJzqg70 zpCf3nLI8Ha2^y?0km>z`2Fvfb(v_gW3ISMGf(9!LWLyavEPo70S2J-E&eC9o0IVxP zgB1ocuAYD;et8XFc=3mmbR}r8LIBp4puq|Q8CQY^%O9E2m7u{20a#ap1}h9?Tpf&4 zWP4buNYo$X(v_gW3ISMGf(9!LWLyavEPuX`t^^HM2*A2phHW5zQ_qP;!$8KBpuzH| z9_dQZV1)pzD?x)51~RS$4VFKPNmqgfD+FL&2^y?0kam?XXt2ygAl&2&8mxfQxX2eY zSV4d(iJ-yaBr8DTrX^^w0uz9l)CCPzVALADpuq|ZHKP|aSb_0j^nwN}(5a1H&|n36 zqR|T)tU&iMdO?E~Xmg_%G+2R#()xTsgC#1EI(yR+G+03ZD@^4J8mu6IHKy_f4OS4q zDpUD_1}g|)ovD05gB1j@(p0{n!3qLcYbsyRUAo5~S1ShMk_#eh~I zWOq&l4Hmajjh;xABWSRgz*qISh5CF!gC%r?svJRs<-0ZOF+qbB^eAYsh!s|iM?r%n zb!@Jj6#Vi_rT7Y5j0r-h$GxoRKB3WG6p=I-GUS} zSdV3RQ91uld*=ctMRg|n>aMPtVH`$k4&nm;r; zSgkTR!L6TNPvZP4$sM=3^TR3CIQyT(l?H23HBKkEc&pN2dHe2u*=bc8EVc9WMN&a& zuv`VZ_jE>5L20mD1-tw7Mp8j(uv`VZ|8z%EL20mD1=|7iM^Zs)uv`V(19V7IL20mD z1=|JmNK#?padJ1~IO)f~4qb(Zc#iF9WdC!g=tWX1(O|h+_DHDJqFaJirNMHwY>(7x z(KkV>(qOq-wp(ho=%ApLyMnnJIrlfocGqtamUtF5cat5b53`L+DCnP{+7jH=0wD-G7LFUCrPr8dL8 z7%L6d=VZ@Z-1bbX(qOsSR0tZC2CMq^QhHc^jZZXKwUVY_uY$PxllWDIxcZCu)lKpFQS$5fH7zk3 zEJk#R1}jE`bt>g8V`DT}Ie9B68m#yoDUYN4LMJw}5yLw>txD*J3B^$Riu3DoEQz3 zE#G!rj0Wp0=HGroj0WrDl!HUsf+4}eO#OF)dw)xH87!B4F)VaSLUn}LGQ+{A=j0P(w2drqYVl-GsQGW33 z7!B5i@_te@Sn*mZUrG5p7sP0=Zl(P2Ct@^M->1ColQF+0zD)VMpN`RBjglKiMS~Ti z!J16@kt^cIr96-FqgTafuvSq1-sYGe^)96R*mW_#-)*M+{p(|Xrn{H&<2S}=u%4s* z#MT%M)~_l5;MSPm*Tznh@{@PQXs`~W{M6ks8mz^Xe|TSv25SxFryq#<{flpGM1vKh z!McI+GuvV`SPxTv_R$y(*3T$E_jrs3E0CKZMS~Ti!P!sG`5(n-u$EE& z@e45;tg|Wq4pWcqqU~yBWXs}{5 zSQ9D#?BCkZU>!|aG+1qDus#Ba2CEGX)`fs*u-edIeFYE=RvQ|u?*O8~YD0tdD?l_@ zZD_DY%WZvVu-edIO#wuM)rJP^gMetT+R$LF14M(>wn^X%fM~GV&|rN75Diuv8m#95 z(O?-gSic9*U>P)6`^vWe+}&}${sUW z=-Ut)EQ1D%FEOkJ%b>x^9U&7MEQ1DXUkDABL4!3HLW5<{U@eExV40hR&VkTi88lc| zKxnYcHleRUXs`?#tZfh)EQ1E?rw|$}g9hv0AT(G84c53Lh0tIbG+2j1Xs`?#tWF3G zmf^eG5`+fJpuxHTLW5<{VDXKG)nFMkSa(5aunZckCm=Lf1`XCL5E?9l2CH$F5E?9l z25TaO2FqM2WG@P6unZb3dwD^FWzb;R3k(`8g9gi9V$fh2G+0N|3K}faxN{Jk0inS% z6NENEXs`?#tSg~;xfgPV?;UT0&|sM!p~oRKScY#BUx(0OnZFcjK1v7;mO+E{0SFD2 zxmV}}2o08bLZ}-;gJsZQT?C=QGJKEsB?t|cL4$Q4ga*r?!TLuC4VFQJ^*aa+mO+EH zi;PUO8Z5(?Yttb#SOyK&DG(YgbA?a^IwdzDZ_r?U23ne%ls9OwwnAvI3>vKe1);$* zXs~_`p}{g}up+rh$7-+)8m#dU8Z3hbYbJyS%b>xs$1WNyg9htE#L!?FG+1S5xoEHq z8mvta8Z3hb>pBPxmO+Dc4}=EGpuu_yLW5<{V7&&R!7^yDn&d_rtHCm8uqHxiunZck z*$^5mg9ht#2o07&gEau5!7_`4J_D6=LwSP+>qZC-mO+E{5QGNHpuzevga*r?!TK$P z2Fq*}8Y^$?tOm=V!Rmm}U>P)6Ll7D)^NP@=5E?9l2J1#>eeNpRY9pE`2o07&gJqXP zgJsZQJxL4=mO+E{Duf2h@Qp<{M+gm;L4$Q9ga*r?!P*F+!7^yDE{D#~-JLgRu)YSN z!7_Ze@DhXu%kXu=9&?4zU>UwaSOTHJGJI*U2||Nq_@3ZCXjATSInIQ*3BYQw4BrM! zmXA(WgJt*v;G+;4EW^irZojY^EQ1D%yDh8+%b>yH<_fF9GE0Si2%*6;Xt3Uf&|n!p zlpFb|WHnd@4c0UW4VFQJ^+5;?mO+D6hR|RcG+38FXs`?#tS>`X=bA!;2J4#;8Z3hb z>lp|QmO+E{zacbO1`SrLd|0&_EW-!e4?t+J3?E?mxN9|71`Sppga*r?!MYSegJt;O z`8Uwk+##Xi1Lk)jG*|`=)~}#jbJIh^2gXtJh0tIbG*};i&|n!fSf@Z}unZ$*2O%_A z1`XEb5E?AAQs|q|w{nX@g9hst5E?9l1}k15ga*r?!8!^;gJsZQl^`@&1`XCj5E?AQ zho)zszt8oA1`U=aG*|`=)~m!GmG6@b8mz|Sh0tIbG*|~hXs`?#tm7dxSccCseC)Ft zEQ1Eio;gp62FswqvS$t&EQ1E?P)6uRv(93>vK52{OHyyDkhuyi#tA>I1nz&Nu8*E%uWoJnV?l!Y8DTvss0gN^xvz zv)bhvA^CA?T$+A1yisN}-y;8wc3P{#{ZhVK8qOUPQaSuC75GlM@T~mjv{r?eq=?ok zKdbP%6wzAcCyjPms{)@yoz^OBn6llrO4@2>@*CtRy94%fRN-)8r?m=?lH#stt-|@# zv|o#>n#*P8e2L~(g(YgDwF>*GNlUIx+dXy__UrP(6%xLHW%emtD@C+c`J)OqNfE78 ze*e+S0_A7Li#sJ2}Muav)5ySa9)VWFMYc#`bq+p(_&Mi4lyRX9nC zV^ghF`qYH8vP;>mvEMz1ONr2mZ7&FWq_|sBURy1@ag*VNRIaU@QV?Fr%vv|ut`Bdn zE$U|A_EbA;>$}L)+2vg?{PXrRlc9xSLq}$Pc3gS}Qt8v{o@%D?a3l)+$D8#V-}2wTjVN@uP%jtzxuRbO>6j0yiHytySS)rHIxl ze@vl4s-m^ZA2|9a@~1Ih*iGg*tyN(^DWbK?A6;md;uwktjCNY9!W^07v{r=^r8tw| zyuxWxL~E6AAH6k{cScPGMn*WT)o7=+Dx4#8mPno40i&JPD%>P<)bZ?|#4j?lc0Ajs z*FBSeN2GRURu8@8ka~)+tzJDH(|FvsQg z4WBYXC~0_Lq_ErK&k?R&4|G>-9U+u7{K!aQ*YL}PIb*ip;^?s9LrKGvMhd%z=Mm=g z+rHtCju1*3K5wM3Yj`tZ&gJbJ{`v@^q~WJW3cH4XEn#;-w!f;SCr8Wl?Pn(q9ynac zHFm6o{Ijik0hKdj#g5`h^P6^9$F1ik>UbxgUeDj}D4wk6wH?-R>uH-I>+#M-y`E`1 ziYMziZHIN-dd{JacWUbOT(hHivYv14u#Q{LPpRXbsd_#6!*>u*)^orP>$vrFQpY=S z^?FwCD4wk6vpcNg)^j^`yz^ME=Lb8AC+qo_9oBK{*<+@x$2+a{dS>k?o~-AiJFMf@ zgYn%z%k_G2z>gSD*7NWV>$vs2EOqoruh-EaUw920OWHqR#JFpFfyC7tVB0kB1(O%# z5@GKJ*^V#?&nM!Y)Gl&05$`l~kvoWZCytAJkBE1uyT~tycn7D85xqTnJYW7h>0g@V^ZgV&8-Cy5U0Xd=TC{T!_67!l#D|vHL;z z=5QhQKL{BPwcW+5CP%++lmrC+?4-fj!-ZU9r%Om(@oaAmUU=U_W2-^S>LuR#+;lz+HEV$l9|qX75*2yRN}p=E_EtP*+EcHeCPw&@Pg`M{*yxA_5c(1BUeVe81upzasAIVJTy$WBnOC{c` z>QeuQrR*>wwN#t@Xz(z-u`t|Kiesb1dsSU(ip*`X!-~{WC&*0ay$VmVOC{c`>Qdb- z#ke)MUk~vd*kNqpc|`0GKHHvsc3gx@LAaT)9l&S9_Gxfodj>Hgu*DAFvtircF3cq% ze2%akyl2CnuL?1x4OG-h*9{lTFCBiZ3JWZ=~~F{Yi;aectb5@_p>%?F?_HVvin#YuNXdG z3)%gvjZ_SOQw!OBtBp|%jr^LDY`onsyPNb`5VqGscE9WiZ~t>Uzql5+J6DU_5s6`? z7Wc;1*vttg!R{5Dn z?|Q9$Izjfo7Wekwjx!7y|JZCV)o0XddOcys8ir@r;$Bam;ZLc_(-*!{tLgQQ9cLJ}ERdS^=pQGgq#wL~vSSUy!>MUcggLdE_F$>? zm>q8zE~lnFCss?ze?w9ma~NJq#m~xrg{$R1=e^nk?^TS8hZm{bML~@B%9bxK#CWe5 z0hbf+Rk&^Y)`Rf*>`eQj6uy<6X-6TVmX^;y$5;2-zMR(f#T}i8j2O4W55q+gZ?Plw z>_uU>+J$aqZAm-VR&uA*g)GE)KzDU?FP!|i<(y05muidJQG?;_EKq#|8H5kQwGY>} zY4`5tM?`Ad<97c|W)fHH3mZ<5nT!imGYk6)JLl4#jNhbK$elC(Yw|Z3&mQK+Bb z=<+kAmnqkA>R@SLu;XKW zXRqs6)VE@wYhYu?+)B?te_v0>V9!|{6`7_T+J0#Jj2TBxpE2{$j-meka(8c6UuCeP zTwcGXW9>j`#k#)oP)ASKz=pocl(UaGymFM`uFZDXh{oP&V>Rtw`D}C*~9C$qC#jdq$+vQmfgMvani1J(l!Z;VT zHaEQ;O=y@Mnb}cGesWusYv_<)hUHv~@?0Lm>kGEhThZLg!sh%W6YVA~HML74P0P|&xTu6TNGpxaO>aeQ(#m9MVs372iOSLfZEwnI~(NGsGbc{wx`X? zm3{WKac9Q}2WCMII$mqS(Ht%L{Y^Bk;U$ihQ4Omib8$4f;jL(|h7+Ty4fjM7FN<25 zUWyJ9JgT8H>gbGiZkip9Z#XHMCehs+mYo((naYid4UbLNdiAPU6V6$r9Km7mAv+bkJ&2uNp6)>w?s!K>pR%3 zkJr;e@XPnr8TGzCyx*%ARsC|4ywylw$7^SloJ7?VMP7u8y`}Qn(m?v^BT;uvm*=#0 z?#TtddhXeaeJIBU@591TxoD^6{0B_bbaB*pv0R8}M>};!hjCiS8P+0a7>EAAWpY-8 zW41)C5|^=1QSRb~up*~GTW46Q9*?}C3%}aL@t7WL2Mk3AXAialtL81A48@Gvn)3%6 zIm@<2d#?=7+9nwy%h99n;w7lgEznt0P z!-k?+!)!5cO2Y%}OVKTI{b`TFE%^p_=JP%^yxum_bdT)J)A>dMoKy0KI{AD2;!}fF z{pFqsQ`@IblX?Dw`st$(yvf-1;0;-LKlz&vMhD~N@1gSQEHCqx+vV@4s|)1<`SL7S zr1(VP>B3jZ-<SY$M~-G`pX`#_xN0oH+lSNk1zN5Dvz)A_y&(}@%T=Uzv1!y9)HK< zM?HSh&qcwAPv}W#*){Nm>GxBfEc)>N_>@jy)>-e`k=DrFY=dK6M+zg?a z`y@1T3x#HGmC($c-I}?(TQhe?Xy&d7&D;U5nfoI&bMJ&^?h@C$++*&L&~a{_(0qZ% z+-a`k+-?eG;;%m=EpqdW(XbUh6v5v6rq{h6*Rx* zF*i8qxP17|FgI4Xhr1qeTZ3lqcF@d?5Sk}?%*`1(&J7xxr+CZ_6FSbl6q>oILo@eK zXy!%_&D>F;nVUZ}bMuL2Yy+CtdW>~I$1x9RzQ$t=1Uim|K=b1sV=RG=AKfo6;anz0sW#$2Eodx2&Q2AZwKz|L^T7bXK8$7Y}zqk(3u z2AVM&XvS`!8N-2QEC-q~9cadOpc&(VW~2w2@g8VKeV`fpfo2266*Qw)(2QU~Gl~VxNES4sSH zjC4WA(Jp94yrB7BkC89vIQj+6_Dd=|!(G2nFz7fE2F+*~G$UfrjEX@sG6v08c#M!i z$5Aq9M#`WWErVvn44P3hXhzPU89jq$1Pz)|G-yWBpczerW<(8|AMhAigN~zX(2TG_ zGs*_dNErn>ZD>Zep&8wVW`rA>QEq5Px}h2EhGxVYno)0PM!umL{f1@)9GX#Z zXhy=J84ZVKL>!t?acD-yp_yTXni)!{nc;+*8G@)8orh+G9-2{lXh!Oxne=g*$snhB zj>qJY({WPCY2M&5Y4&vd29HUor{kp3(@g3-%?msx$)Ap+Dbb9mL^G-q&B#hLqbt#j zutYP;63vW<)QrSLGa3`kh)gu2GSQ68L^C=Q%_}`7d!CMyH%~L!@idbXPcwP&G?V;J zGkNYbliW@-$?PNHRBn6z{{PEtC}pYfPnbUID~I?b~tDEMgeX>lxHXT3P6)&8(1a|X zPR|Cee~+QYvXC zagyfOJSGv6j+5?4Gf9m!BOub;=P_xCbes%Cn#nk%nG8dk$ta|m3__a87^ImDL7K@3 zq#4hRW-|V0{=UcL^U-nA_h=?tk7kndXeJkr=HGZsrX3w8v5sbpteQ!gqnYeDnn{GC znY=feNpYi@Y&M#Y_n162I{vW7WT4S;lFeu)uZ(8W$Y>^GjAoLs;L^H`pG?Q#ZGs#6XlS@Q1sY5iADMT}gK{S&GL^EkWG?V2+Gf6!( zlfy$ZIXg6ys6#V}IW&`uLo*pTG?R8iGif$7lUhSF`7|_>Iz#iF9+MeE$J^#)x!vPV zk5_qok;hv+zSrYtJ#L#DB#+(f-}xSsk-|M(oD3A2$vB}oJ~qo_l+f|>Jm&UL9Vb78 zX3{}uCi{bCl09gC(qmFN==eg9FY=gd47xsf7c}oRKg--psN-Z!&`f>=&98cV;DT)2 z-j8Qzx&9`PfqOV6V}WLJ6KEz2fo8;$n#nAnnIr<5fA2Br0(6{v%rvj^m=pjyj_hAE za(~UZ{59k5*Nm@U^Bo>@PnVA4<=2ddUo-N3%^3GJ-{kS_ia(iFmA~nDO#l7E%_pXn z-1Bvh$K3Dc9xncz$NqRre>~X%JxTn{86?) z>f?{H{qg5E{>b-*)W;)bpU?N(c%=IHqwMojAAgkXkNWtdY=6|pA7%TaKK>}%ANBD^ z+5V`HKg#yU`+fY;C%y4E*LsZE+CAL(1?_kHLK>34>3Ai7{I9N0b$@)4KOPC?wtKks z`Rm86t>f6WHRI3Lj6hp+O6mBcRxj?4KU(U=|Jd<7{{3Hn?D!r3{;_xS4f(zxfBe(C z`Ge}?ebOVy9iMf-P_{qnexYoC{73tR>f?Q~{a^PHW&5MwchYf7Jaz+5V{efwKMaUi*RS<8!k8UH1iL`{O^`7gYBHWuK3_A1K=&bw5zH zKk9y6k@#pRb^7B3Yx%q+ry}q2HH{NEo#~VC8-{Vhte7VP0D!yJ0 z75vx*`I`%N4sMsfbDD!-ANiZlj}9J@zk&D~Z9KnA@QmODiRY5|8}j!u;XM*=l)!Rf zl#wjoD!f^Ilw;&?F5edHDu3^kAe)fOj}4{>r;j!%%<_1l$7c$Yy?dF|ZIgVV7YUPu z8>JR}3-w!qVDE(Q7bcT8im{0je~IN4x8!BtlKqQ=altOa3>g?i(uh%DT#>f#QY%$x<)dQY`ii_9t@%N^8~)l?RLKDg&~6gF{mBtkOoAKRDFY zeO9r%_pG9CT?1uOd`%YEO_ z|4Y4rQn}Q{6LRL%X{$;@t})3mzFy`mo>}Z%yl{SH{nTlTOB;?a_pj(Gf2g!_{*oh# ztNT~1E_DxOD$O`f+8QbiTQ7YMWPzDIvYDmIde$(LRZ4kDU#6w0$CrjqDh>7a_bfba z{*sx+)!pT;!NDabcAs*X^pv++U~>Wb(PDm zo?EG^xMb>~#no$)O*tpi`b=rPy6$7BQ3U_g%UrM&~CuAcczWZ&I0uq1sx zlG?|Wwy&M3a=2`rJaf{-`o3V5ed>y<*RKhRC40^kiz@~PIjjccIpo|4+U0QTD|QVG zbZrdUdrB+Tttxh{STRsqAGFIkF%-0~>X-lIpj*S)*UlN)o}7{G?u?{H``WSu<)Cr} zSxMU1Kv!i|3EEhZE=uRxVyU;dazIYoVsDQGR#n!uC+B^!T5nBPcVA^?f4Z0}vl?kG zvq-XKG(zs^Dd`o&u6N@aSGTuous3b0+*c_D?dc|{#qGstN?%W=`J$k#vTIFWchElA zE1N&mwL(hi-;HZ55A@q!ZnyutE9SfZ&+A;HOmZ2wd8pG|)ajDU=RwZqv>y4WnI^fA z{lAcuUy#4@@?_h4L+UVHClhh`WBUXyGn)16ZG>#^)RNqhH69VT?eX+4%_+EX^*_es4sqz=<~ znXmUlFt}8vKP2^9n&h=erU^37uXl&c8zmEMA0l;_CQCV8FZE@XeP2PnV`W+@Gng)r zGWFzT*0xK%B{I=R(j~zQGJ}ctDCvVfrp-NNO6!rQoN0&^BoFHGI7uo|kJsfMd3|PD zNFaF-WBNn#m;Ja^>M%VDBoEff<6N1jPw3;p!tUP{@}}hqdE>+W zrH{1UK~j-@r5|`dwpr@2ziFJmEVr*rv`M|Ka&T{zH-f{pH&4~${oI{WZ;{MPA8EU% zN@HnzypIef)YeJeYCS2l9@cB$k4+eUy$48~_GpSnVS*eN%t#&-nbszM(|V)#4TA5e z4NU9FTQyr>{@BM4PbOsRLXy#GxfY3#c)Lr$^kqp6g$=UX}>?dSQjfI8fQ xNmB3DbwMyeDjq8hP;ZP(M@v1uJx@KC3vN*}()AwZ)w}S=x!}WTP})h0{}-2+(Nq8c literal 126224 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%0Dn{QID}ati!5~E!81LTPv zh*307uKM}y#OH|7Y)X=9JA*wn2x*L8iLZuCV8KqV^_Qt|6$8vYW6CzaF@cbyXGQ1q> z((Xnt4T;tUe;lS##vY_E*-ZY}RXc>b1OK@vy*8h$?!ktx<^zba2A>@H+Rsrv>9wD> z9x9ADd(vw^v`vf~N@CBTPS%&@oD{{p64D!G^B4Dq^g0Z2FOej!}B;XGKpow4d)1V-0K5 z&wV}VwV&5|#Hf1XSLEzbZu%MClV1Co-Xli&SqzLh=uICNMd`HtnMlxi z9W_=5P@21`u_k7vc@`S8k{PR?R{s{JV$nr1fi=2rsaSTAEDck!@FICgn2MzrN&fCa zH-jv`Nb+YGx~W)xk-Ria#R?F~ABU;rS()U6P#H~VcB?-{sC2LTB1)|~)zE`sIOqYU z;qehFZFpXkS{d%5I_N;A;madb+VJgBYGwFos)PP#8r~71(uQ*m2~Vl#qW!22y02+? zN`y)qJ}pYEa(o`uLGL#We>Xy<4fE$M!cyuSzeIH~cud0|MX0plLM)qxrPPKisSd`T zX?S*oN*i7hrB+pO3DkOEm_~mP60Hqx2~#O!FVa^q<4J>RhTt!B*uzC>`eKdN?(a%d zPL0)JmF942tRAN{{D}{{%P37JHCCG|%?4_$MpK#}Q)AV-((o5T%xYt-p7CA{Q>hv6 z(=e5q@d~k6+|8hx@eT@8sTprZm`crf4Ph!Z5M;&Kl&nH9 zC&Ss~yPAR6VJBLt8X*6DAhJ@MTqILz&L%(AxlDDLmFhc?6=zfOdoq>gZ1Pjx#Z(Vl zsh)+bIGd8s%T$`P$xrn+ruy7UmB0>w;%rLpgynlb>onQ^`|BMyk^hsW_XGD`YCo+2p6Xl&Rz?BO}$15ve$vlDEoKnzPAI^&nHl z(4MNjhO>keMeyO|?AFC)KhUlv<9UVr*6nlc)KlTGqExbHpbn zQZ3K&Nwut4rRJzlo=CMk$tTsa29=s4KY0e#@*JO3%c@dpj{fA;RLfI*QZ4I5sW}5A z?}l3UUcb2N#8Glvppxa4#aHvtyMaoURTf>TlGqy224y*eLyXCN1C=aeaC|X2DNxDs z1qTr#rGZ`+J+RM8 z5XlXJ-YWks(1_%1_#7gq>R$#(t0v^p!{m#B-l_>Tsec;it(uU>4U>bh>oi36a}qj+ z*NHrGn4ChS?DDe$q*Xie*kN)Bk+SzM50F+p$)ktKtB8~X;rjv7sxf)|FnK?ba!fpq zko~+796?O(An@<_NPLD5#o08RoK3~#Y~oGI`KBl)XOj%Cc8kf`Bu}G(vnjd%^lsKg za#D7ryeTD*%Z`+X5|hn{OfJDkVg)`FXVUG4tyI5QDks7 z`LTl@fNBu)D2fcuCSNa#49+G$cF-G4MNt$PoK1l~uqu+|N*hv!j{!bsQ=xy951dVf z{#ib7HWm7Z`M}v!NY18fkdmBDh2(7dF$Hio6_T?_YQWi4NY185sR3tGAvv2QjGRr$ zO^8-a%K8(@TeD=N^hwT=$tSbbK{1o8q9kiR`93hZH_JzyU<9feqW_F2y*v?`91Z<2 zno~EMGkDuk6Z6aJ5L%cNoc|nnq+|KUC`m2bF(bvJ{sQTl-}=o4lFWx^YPv zrZ}7U15M=_&ZZeL>1aejKF$Tf1n7wXZx4Z!h0Zx9#)mefF5p;$$RP%C;AW+jkBB2~ zfUyUpv1?)M$`E7ugfEu9Y3wc~a`|crxK~$ZAl_}nYA6G0yL0pOm{~nkR z@~{m?5&st9FZLxOu?i*Pxrw-oZJIb<&;$>d>vRKe$$3J; zI8XGAw;@FyGuDR{Dcm&(s*?il?%QKK!cTI&|t~RIa)S^L4$SXNHh;)``n07pS$?+FhBl@50PWg zU}YmkjzNQUAf^Llgy}_&L4!5VQW-Q@#Hv&@-G@f{tiy-MF=(&?uMCMCg9eLOBfZia zG+35>=0w{!Xt4ZR=`#>xQREmjSb<9BkM$#R_Sy%B$#PJ;g)t_O{zbk)gQa5(8Y~^N z7%Am%Di#cib8461`SpuQh7FL zu&imq^lZ>zMWM83g9a-SsXX(&Nz-6ivxe!}puvhlY0p=}o~FTyL@Lh)4VE>Dn4S$9 ztSFTBY|vmuB9-SSakJ%DeQ@mFno~^A1`SpeN_(!yBP72b)Pub~(sRB+gJn!LhSz+9 z1}hAqJmwoTSfMCYPJ;$3cz~DAoN zENl2F{Tig#G+5RkQTn@~-^$8;FlKdSrQZ&{ropm0oYEUKSXQ@CdV>bbYG$d=H)ybo zs-{joTjv`zST=waCh`p$EE~WY6Zr-WmJMK)iF|_w%LcH{M7}|TWdm4gBHy6FvH`3$ zk#Epo*#K6X$Tw)PYyj&`GM`00h z1(A!Wi>}Ll?>W`oUma$G`$)3-|J~4;^VWCjRMqLK>h9`O??;yftxALCSD?>=)>jUa zJ93S5;@+WOfldorl?KbNK(7U@N`vKBpxc60rNQzm&~HJb(qJ7XzqGhYE2I=(IaL}g zE~UCSHG@W_!D5D5Xv~+1w<-;micvLaR2r<>V%_JlQ>8+z!Sa`=G+5MCt-2*D4VI4a zay4dWRyA0)X19@vLE~ikH`ZYBORt-iN@MJi%>foP9xIVpgH=1?sO~zd^#Uoz8Z6g9 zH5Oljd_pS38m#qFtSu#Id`&pkV7={ylm@GFR&p+-!76wmrNO$)3n>lOlV0d#VeWNJ zmBL2(v0SgA(qJ9rg_H)1SHaD-UN*z+28~LC^||V-Y-Su+8mwEYake#%D-9MSFI@X< za2!_}tkwmOb04OXiRPH^+H>2dtmG81>)ral?&S&g&(aa?Jz=2zo%f{V8*4VJg< z?w6fbrNMF)?8eg(;0Dvrh|jP-p+e&e4?0_SU_b)#|iU!No zvK>^bMOOu_N`vKU*nFCB(qOq-UVk;p z)&;FfgXL;@{WZnbQW`8*%j>U?QL9mDu-2w3$FV&@pDA&-6E-RhR{IUG+1sj6@o^k!K!||lpdC!@na2E?Jd%-qy4nf zs5Dr$jdZVo(qPp-54w=jU~MHo@T#>7!c052qRKy8R5e&p^*8ZLf~fkF_@$Ys`iuA% znj$nPu>vZ`%DH^N@4c5h!zkOQ7Z;v-qe(=l)4c2!lKlGUh4c5z)AO38_ zkA`F9hEdUAMf^56iSl5p~3n(<$wECga+$L$}hYgp}~5c^3UFi zrb)R`ZZH%LR)hv?0_C6oXWJ4fA4FL+SZ#v>9|uH()rJP^bU-v%ZPyB14TuJ-4Gq?} z0nuQ!p~3nkAR4STegYXQxBa2PYD0syCmxEQ1EC0HMJ$Xt2(K#)#O+ zaP9s^2o09$5_$|mgJrl5{|1Bx%b>y9Qbw;>4VFQJwGV^_%b>wJ8bX6*xHf(&ga*r? z!TJ)kttfj8*SW0{2o07&gT<|HR)b~GV5O$Zb0<;g7&KTrLujxJ8mw6m8Z3hb>v#wa zmO+Dc5`+fJa54Ep2o07&gLM;x2Fq}v_#p@lmf^DS3lJJC!$si#gwS9aG+0~hFN6lm z{6c6i2o07&gVhD0!7^yD3J@ABg9hs~2o07&gLN5%2Fswqx*bA;Wzb+f38BFZROldD z`Ecr~lzCBTDTD^gpusv3LW5<{U|kH&5e=3>gLMmp2FswqdICa&Wzb-~2BE<+MWN;c zh0tIbG+4VsXs`?#tV1C*Smq|79taJV`L@ufpugcpuxHuLW5<{VEtbR z4VFQJ^#=$ImO+EHrHo9o8Z3hbYZ`wp457g?Xs}Aq;#7Oupusv9S|Y<}3>vH( zprcZg(gqFIzd~rR3>vJLAT(G84OUhzL0AozL4!3OLW5<{VC@H?!7^yD?7oWz%b>wJ zl2|TvaN3~3DniGL2FswqItxOBWzb+<0inS%Trau{>Pan08#Gu?L1?fH8mwPKXs`?# ztR}gU#%iz(8mtM>@>Flypuw5}p}{g}us#Z*!7^yD$`BeXg9eN1A6A29&|qB$p}{g- zc3BUh!7^yDehQ(%GH9^ghR|RcG+5*0gPql288ld(5E?9l25T5XgJsZQodco4GH9^4 zUSTy@1`XD|5E?AQ-)seU>P)6uR>_B3>vI(rVtt|!$peyAv9Qqs}XA< zG+2gf51)t7U>Pnn+ytS)GF)4D5kiAy&|qyhO9%~?L4&mjLW5<{V4Ve_!7^yD?uO1v zJt6y<(3=n%EQ1DXl6-Zt8Z3hb>o^DvmO+EH210{n&|qBxp}{g}ux^LWP5pb?puze9 zga*r?!FmfqgJt+qZsevH=ga*r?!8#j4gJt;Md=>PC zR8wg9l6((@2Fo;VEg~@p4VFQJ^&1EcmO+EnDqpLu2Fswq+8siJWzb+923?bC4-Fcu zeh3YgL4$P;ga*r?!TKlYhSVOR;S1)&5E?9l2J4p)8Z3hbYm9ugvKlPI7sK5lG+2f& zfQunCSOyK&5QGNHpuze)ga*s-#qA#GUeRC~G+4iY?oTZW4H~Ryo)8)=g9htB2o07& zgH?dgU>P)6>!F85gJsZQ{Rl#XWzb+*LW5<{V7*EV4VFQJ)p&>y8Z3hbYc~iDmO+Dc z2!sa9pux&RXs`?#EPLdj!7^yD?2&^8%b>wJg_>xv3>qxPtXmD1L4$Q8ga*s-)#Dxr z4VFQJ^+N~^mO+E{D+mpiL4%b#RGwCY74qZ08>7mY)F3>@vivg!9&toz=1d7Yn^ky@ z6vtI;R$G2iC`bicRkF{9*U5zD8|9y|PHUC9Ps&bf6;e5Tm54hCNw#sZm?kAl#mb{08YJ+V4>rgi=mx6&@(Xt(VYw!W+SbaH;z3$MI;Vm!1kZ0JlZ&u)u-S?mDQ%w!3FS-z-cS~FZ| zKx-8?h3t*t%+cnwKSPB%2{-r3Kbb-K$7!v$t!S;H+od7aU$j;cS}S&6(ON}lt@!mr zv{n&XD}Lw@tyP59iVhO3RfN`xFZrUiiqKl|OND5yBD7ZgC?Q&_2(1+zg4QbYx-{st zR+&Fa@o8x{{hu*NbEJO~dRB@{Qj ze6+CJP0k|BtM86LyY6wrSB?^j8@_+Euxt1^!t6@#Zuk$QgyM#`ojUTIaaT+y%zpXq zh8K?#iW@GE7ItfV0pZ&DKzGFrqlDsyzcX6cHT*JRj+l3^adz*KLvh0sM+>`#=Md)b zdw0XfjS`9*K6SLPYj_=Dj^%eZe8(uExZ$Tq3%iDYD`9metsERJ)80KfZg97eLawpd z67r9>>IqbijP4D^&!d>#5@%e0n*LY$zTt=hqvo}58cN?tZmb2Y{vK;TQ*2_6yL-BYy$8E5VTh6Db z;~nLCIah5c9xn&2)TnL5XY7}yjy~x1G8(3j5{uj4b=0`qhItZKAAoJswQ)9Kfw1?6 zY)6=cpCsZP)GqP`BHm%>BHtk59XKxX7!hw*cadKZ@peuZNy*hVe|K^b#P$9T;3E4F z@m?|)IYJ`3lbITST3sI5Pox{5L+LFPmdI0^Mmk>kwP3! zLD+J@2rJJK5QMvp6ru-$aJGchOQ?6NkB<_H_o`Dy3%i}_GQzbzKsS8*D51FFAB+}u z4ZlUWwgc&gH$QOXP~33GXkpjz0>ZWZPdD5*N+@pl?9sxm;cE!jc3<7_w?+xY4L?6x z*fsnP;o8YmH@ux(;v6XyH@yF7Vb}0d!nL!fZg^;vP~7n6Mhm-!Zy{Ve_H@IKjuMI+ zer2?2G}8P7K8&JdpzH}E;3fG*ZMD-i|j_k>vb2IB@x|iOpVWY$Bq}VF-2+alIc}%qJRVTWk z3nASW-YDUCo$TW6z=Lo-Gu2kdU4tRBLyLV2_FE#$gKostZeP6*`UW$tmw##t4Kj}lJMUHaeJPHsc(1C9`XzI{?ah^$C08}Z$*LS2 zj*;THZ0xl$I_y$Zi-=Q?6b_NeLAxxU3*cG!?w*0VCvd9T8MvvbAXtLj|8 zXD&O8NX^wIKN>jiRk*bj$7N&hRdudCWonBZR;1=SR3-nc!`Q-8iP#~0wmtjmxCp0$a2;VgfX{~Q%izNH2x3TLiygja!?wR&m{UUd3}HKX z&xUQsx-h4O@NL3&=$;MR9&}+&4dFKO6Gn?2xM#z*t6Z4VLrB_>7CUUuhHam?FsF#{ zBNC4H-s;kC7p-Ok#m#qfbz$Zlh8ykhv1TF7o+ zZKPuOAGMI(w%QoQ(8#YT@ygrnvYSbt1z|@mWVg#6@b(|K@e6BlyK%L+9g!H8YH@FD zogL;Co>z<8&8*FDM84QwK0d`IaEAP{>gkn{&C)`?eJbjxOjMzN_{Gb@Lt*S8JP(0l^uR2 z-mCDTcefsdKS@rsZ%W~t$%*Mhcwyzcv3&oLV!YM%?XElu zn|7aWo+VOSAGi5$Fp;=gUf6J`Ok`Z3nwZ&H_*~gl4a41UsygQs!)__;o2{rw2P;A%Ayj z*!yIe)V|ji^2?pnN*&d-KxVKz@Xn%mnqi5TOQ_|;mS}Q9dU#@LzSP`|z84yQF=W>v z*oEOED{O0TN#oZ`siKQ|<}hnTYGK~gt{GH9NRkefh6U|QwCnMa7^kGw)KNwzx3kP~ zEQR%1&QiubC#}dbCoLkjO}qx}OQG$s`2@S1-&R?J)lzqOgf+-X?bL(}vLe=?;E-(# zc4L5s{CXv8Fi9p)qut$Dw_Wyz+=+vgsX62b_mHFg(fjqB}XMS@@1trfrW{5s`NQVRGu3(2P@z23 zncru6(9zLZ{eP(3(>ajuFLm~;T-iC)dxE5s>hCV+%WFGlm3qsA{k=@=EXi}~l#VGK z`|iEZ)M@)p?HnE)EcW!td_$eZ;_89UmE}VBs{Z0|XK%iIVt;ARHPiRa?K`b=XzfsW zaB#SD)lj*!ztmG))m!LXQR?sLW0jWW`^&lf%9S0m=peoE7u+*>a_8zPow;0TRk65o zxXe0i?2V0=IW*kcTUh2c`~6&GvA;8 zTD~c|wYz_KsB_t1dANVs+D^CF_rG&T+SEL;kD9AV{_A+**0lqk~A?RJ59I32d{94 zRJOUfX;n6C=tyT|6J#7p_Q8^o z1A(sr;aK+I^sXkmRl|$yzhfGfXU!Seu?=r#cW5{~JEh^S?1b~PEln?GKPY%$Lsz!5 zE4z8q((L$#1=*<*-L~QA!?TlR`i?WQJ2y04pKWePPiT{aZ$WlHnfigQY}9l^b_?wxKKRIbV*8aHq?&slyw>~B|W*#9?p|5&rTiAP9L@hb$Uu$<&fp;O(?hdWV6lbscjA6#V4mv zN`)_Hx};QHB;S3)ha|VEoI>KW!!mt#kVW#fD16*jNl$c(oN{?~|9E+m-SU2JkMdLM zN4foGrFVDvmX+%(6jv6?8{=U6^WH7~KRK%fnNapuzP5*BQrXR#)4Q8&(;3;uGvp0x zMs~BV?A{!za@4oTQP1I6K3|U1aEr^ctrC}^v)R-c4Pi+R%eJntR6R!c{vTe`#4%Di z0CpYDPEH;GcF|lR2u&*6)|{Sf8`%>}Cx!WVu_MncYR+KF4>- zJMdCj@cisf4NJ2hloQ3$uvd<~hH!_wvfD|GmZpa)=aKB@tneAxrlY0An)YRzkCs1O z@*XWGl8?z6f1oS;*l^`U!WD|}s>B-aJ)AvYgf-?GM!2he%f3<0i5=PS@^phc8*y19 z{EBU)=`Purr_+rDGIAM1u5Q@Bhb%lQSUy$&Q`O~^~r_(qR!^Z0I$ z@Avp$J^rr8KlJ!Hk5lr_thcAhp%j4-DAM0_i$7gwbp2rt?e5c3vdHkTqzx4QZ zkKguqdrnyP;r8bV9`E5XWBqmg#U2+uUgPnZ9-rg!xgLMs<8>Z?+2gNze22%}hoIMg zy~huE{Fukz_xKr)U-6hbA@uV8!()3gw-sFfH*#`Uyt&6)d%U~HQ$0S+1&@E> z@v9#H#^XPDEFU)#`@=ph-T7RXeQHz zW|ClN{*1>cMRfc!kGY9Z$GOE%Gk5-J=B7Z++%Kq^`vNtiG0}|5L^HPmYW}0g*~Vm? zn*nuwZWPpv5=Arj{b}ZQK+W7KsF|AxHKSG0j9NwWr#(ioqT}m4=FUJJN5i5S6^rJ_ zJ$~L}v@E(lY8K7tSu~?)(Tt`=GpZKN=vp+RY|)IiMKkIa&FEV+qj1s8ErFW3TTnBa z7tP%Hr9RGkGbnl$GIU;Gj}3t=59pI z+ybbXy8|_IYUWNy&D?3J8MTgP^g5bR>}W=_qZ!qXW^_B6 zQSN9)yQ3NPj%M^bnqTl34Udka;?azbM>9$u&1iWvqvp|!o<}o^9?fWaG^6U#jIKws zRrc5k?)?L8kB+16(Tu)FGYTKgXnZuI^3jaWM>9$v&1iizqxR9v2nfv>el#Qb(acB* z&8U7fWBbvJ@JBPwAI)fgG-LkJjQmG4{vXYkc#H)|$MFDZ#ss7p7m#LbK$`IZY3}kE zCytCu>CaY!@H zAQx@*GMyFBh9#tG-Ef?jNeEzh9k|hJ?1VB9mj#BnHw`SbJvDu zEJ>R2Bx%N!r1=hyxiv$_aVcr$z6;IVl%W~hl4kC>(9G=^n(;Ad=3WcU+=!tWW0Pj? zve3*e7@Bc9Y3BY4&D?yU8S9f~?yS(vZ5NvHLTTon3eDVbp&4_O<~KaX9;M^>qcmfX z(u_k&GZrb$c%(FAlG2PzN;5Vo&G@7=W0ca2Q%W;dDb0ALG-H<1j9W@Gb}7yHr8Hxh z(u`wDGnOgMc&0RCn$nDGN;9@8&G@D?W1P~Ab4oMTDb0ANG-IC9%$Rx2jGNcY*m=#2 zx7UojN;CE<&G@S{W3bXpu2jvWOVv!qRLvw!)lA-0%}YEcr>u^XO;$76V>OdERx^2G zHSe-rlF59n<2boAW98C}mrFBdF3q^PG-Kz|jGs$0ga0*S?9z<0OEcCk&3L;sWA4(7 zyG!#Nk4Y7)<0OgIOe$E-nZ&4?$%Cqyl&6}>ZmOA- zrkY7%s+nx1n#Z>%`6!Ps^7t{2NhazZ?!YH+sAkfHY9=G7<~Kbi*Qbsj=P?;Pb^LoC zlbch=NyDj`tecuiu&J3`nwm+SshKR9nn{SMnf#ZUn?8_avRdjmNh~#!uTnFqDK(Rg zQge^TS9(lVNnM}Zk(&SBV{$?2_=HJGUhVO{9+Rh0&rdc+%~yI%&O{w2JEG<%JSNkj zj+4_+GnorDr}s!QvO*od&||U+>NxoWHLvyfJ06quPuI_TOa?z4CtsgtGV^IB2cKrr z?P(^xp5}>rC7JYjI)0|dw|V@c$E3g0^ONpQGwJO#lg&;u$?G&nQnbc02$>*f`WRJ<*q~oM(()^mo6J{sl zq+inYNw=gKmw{%|DQPBsl4jB+X(l_8W|ARkCiju%*&dVGNXJQJq?x=$nn_cnnS?}| zNj;>QBtx1>C#0FgL7I>Am}EdY{)opU_|b7v`DiYBe3i!};?eav4^8%Hw5OJF&1fdQ zjOMdF{zt`^RjSJ0%J@PO7_S5J>JM4fBct@Kk~=tzSnppfBbNLd{XlDu8&Vj_D6kuQnEkl z}#ANBD^$^NL1KT7t;U)%U2-(ON6kCc49{?^7L)yE$tU%&eJ zqhx>7#~&s8qdxv9*&p@sN6G%Ek3UNGM}7QJvOoUX#~&T;jlb#km^2RV;l?j$AKi78 zko>KTSMtaI>iSgo$0zyYk;pIM9&UO5@<}A2N%l{Dd`_}I>f>{g z{qfg6KF81Z^ta{*{-64Cn!NEk#^ZL6CwV;0;~5@*Sn(aQE1a@bC4cDV!MBBHHV45@ z@;99x8~jxMR`ZLdqu>?cc8RCrcqoPQg|~}&JK^JnQBE@d&cf@&U%7?+O{GonLHT>D z1Q}A4N^hxhhXz5LOj{uF$^$;u;{joEv>z?8Hpy>#kua&&QFOugQ@}*wdH+Hn6%N~isLU4m-+)Sw}sN5vc6x8+b4G<>2~jvxLv+5xo20z^}C77`b~}b z)56^EU5S55IHR`bI$^et#}<;0^=lq~Q@BaRgP!tmcVT&dDK|9O(G%oyy+eb!zI>^- zSjhDZmWGC9(qJjqTkI(g4iyrRE9Qp_L8#JFzT{$hzpw5hx6-8ZHjyR+Y-K#Y4k|a_)q}TA4mHobNdy z*VA`GPL^5B6$g9r#lSTgQ z`FQa$EbA}ji~T3jS;>ZjuKen}^y)zF#8usSmQ|L8=1ZkQF*i?O-m?B&f2n`?}~ z6bpG?kYlDyU0xV=jY&HC)iPz_ez~rNhs`amo-%b|;lx9VgWdV!k%eV*7fsKt80=nA z=#dvyRodrZX=}JJV!g_1AT#XOE2~*3t!4@Pu}CQ|>QA&Z<&eVgg2Hg$VDDiE&t0@% zZbeTqKQy%H@SeqcOHZjqvR;da%l)P0M=hB*S1Kf;)1;Xr?0U{&{?XQZ-#PhW(baPc zRTURa*(&fvhnU}@f}QqSVG zrJg`~GACT$yT%g}&UfvK+R#zFr9|FRki`kNX_;HvdH{Ee^1ac z)F<0AobQ%Wyt4k5}a>Z(X*%*QE~6E96OB{@B0rRuJ^blhZuypDzWT->fW5rcsy2Z{_*BcitH! zG{3<;@0K$2@}OOwZ_6_)PwF+vit@Zw%6`3vW!gJ&d*pcJiTb!wkNJ5{k`?$+M z!*je$*V`c&oFmWwitDvB$=kX-+hv+x?|zv!MxM02ht%OYNy?SwQeP(7&m7d7Ezcz~ zf#+#brk=b7+jgn9NS^eObV=~MOyJ4qm&$`arp@i;S*b_Pb)Lg4AbwDf$1zfgdc0@% z%6m7@!wAF=VmvpC>#-d-OC6q10P%xm@;F(Z)F*VBe0JlxPRf->rQW47fqHBopW)7z z4@H$2bt`4+$VU=e??S0}q12-vDvwIN{iGs&LVJ9sTPOACmr9(!%(t^VX_I<4$U$&} ze3%@my*a8Lp9yc3dVDUdJSy!TB@>vR_Uvbw_L1A$Rl+QHFL~NWdl1|n7x_bs=gRnR zrQYrBK~SoGCa%?!k8!rX{IQRTr69=D0r7*jcyKIK%J8R$gJA4Sl-#2dJ4UclCh|Gi zF|MExKPs`Sg)3!3Q$Ln++wRqS$E&xG)O)6~)2Z0gQkFxk`q-kFvd3FxLZzRNl!dC@ zE!acqty~=h?NV`}G(bI??~;1{G8?9P?&vVY1nR6#|!{X=r`>RpzocFxX zdEc|o%sJ;i_kybFQzDin+`p(eO8Alx6SZPvyB|AIREl(HhKXX~KyTxpiwj;i>16IT z9a#P`IwnKmA6o~jc=sx@mCSVXS-QWHOAk%HZi^^+hrYV$C^B88PFJbZxz{3%cdu?f zSvLL?uD!tZG3xN=UL_WC&0o427|zw@2wtCIBK)~mH{D4{$9(STpRN{hvQC$(UbgCd zyH~e-yk3HTtk+4c4IORG4Pqd|9TjEx-1on+V<(ImJAU77us(9}FN%N1&6p)7oWA-` z|8WlQ{NM*qir>Aq`S$r0zdpIQ+_5|ZLI7;`u=sb8AT0h$iO&#anaY@3-%*Lr5EFA$ z{6E!2e4+7cnR)!NF8Q|{_1|CQiELdZZv9`0_-ygdUFm_U`hkug9EiUSwuXreu_8m7 z#Yj|t6ObRqZ|R>L-v@REAbzec+_f6NGKJp;=!xH??T^s-Q?>o}tYrKDa_d3Y&moZc zmkayM&qQ4h)hb$KYdagXotZlRAswHs^Epk&AEWJT(01ZFzEQ^uUH^yc_#<#-{wM1E zm+ScFaAkgW1nTW0#Is%8`ghyqd^bP3!5`P<61BDUOY3Uux*C@@cZum!kC`l5n&;Jz z>}=z;sjj)Bsbz6jS7Qfb6t=0kwXUW4+(vPH-IBW6`nE;2=PaIAS4(Vd{ersI*2b3F zDG;VKHP<$`!s;I2IvQIV>pB}n?djze^BcRAv8JZxC5V|ZzV`STQ>$8+lvm7XJmS_$d$vna=5{z#^HXB=)(8GATM7V|u-(C4} zja?@+b}eXYn0jng&G_1d^(}Rsoi)?yXO6B-0y1ASyE>X%=g&H2N)-S}+A%P5qRi)H zrcagcag*y>S`HGnncWwi?z>8zZaWPLoWd%hy!l@jdcxGHK+{LBsFdWY4ov;J<&;!amX&35+;^3i}|uGYZoqABx)NQ>bmNX z+j*Ux%y9=AwXwB5FQmmdFS!-R=D3;L|N?Yq}se#t@SZMgG} zs3=EuN8lHes3d?OWCv>!C0HxqqB`g7<3XkAH4`sQQYaz9aCx z_y65G^!2Eo`b2>;Ev?YEo|;5`26G!pY8&^t$eqt*WdT)os50WlZ(||(r|&avyerQg zrPOYJP?8XHjCi+>s9T}q*)Hs3?%zry-faWw)*A7wU-xgF5pTBTdL!QLt4wpZ5pOdZ0qNZc=j*%Z;KJHZ$(nI)rdFy$TlOMebW8wHsalWOx+G6 z-tAkA-)Y3V{e$tl#@=`UJ`*?Lb1nXMB`7bTYWucb_)A<(nN6^Li?%%ss<*F~atCEr@%FV+UPzfm+`dA}^C+|Vx3^3Abjs{j+viI8WXc?h+iRqJ zJY_ch_K8wHhBB*udzq9Eqs(5qy-3OxlsWXbXG{4Y${c3fg_MU;&Z4~Izq@u-uQ_rE zBDQ~ua8}_&@pRM3tins66(XzfSSUU~B0p|z^`*PIBD?&xg z`&VDn`%aN{$#aO_T=gkFMfIBHpLRb)&8n)csH&}iZs@+25v!MPKry@TR?00>xq9&y z)O;~ISoNBWa$LG^Q0nJ(+Pk~w$h5Om#OlS{V0b;+VO{qH%IMu_jP=#4XRWJV_2dT8 zy$rEc<(rOO^%Q`cw3AKU9m?#+i3%0 z9w>A_Rp`~Tc2-aL9pYDJUCQnW?aJy4pIL$6nNN3*fhqRC)b+nprP;IgE=%fft4`Qf zz4`?7oBq|SuTICRYHIH*HLeviQ?rdDUH&?ySJL=}DZM-|G5j_}{ zIvo{{uK0ZQ8noG}$LGi_eKCF2bMQl95?V#}%BoF0yVj*OKxAFY`#y?80UeA@g%0-0 zf1oPtrGHhj*Y4?jQid|@^yf2l?bQ|4s~@hGHc(3Rd>~MQKcFzUpbl2OUX2m8x@xQ2 zuP{e?{k^QmO@ft6swy@3}`EJmqv}p-gi6;J{m5_3Ems54ZE? zSiL%SCtd{6rQte#bJd4LudezqSYxZIwq#w(TMaAy;%Cs;yMOj?%-&7@gdZG_t7d(O z7FAR51!b(S)rgTr)l={`e+tI^L#GEa)*o5&bAWCllU-aX^n9?nsvB7m+t;WPyobj* zmS8j54ggI{B!a09k4hNY05XT!ZU7=h9*?6S-hkB zA3I&R$XX+3A#Ha%@31J&w#}$2WCH&vqOMcUW2ifw$gR9KSP#E{h4+^wMQGAJ>nut4 zv(>R@@r;kE=spx4IYTASPZxifE&Hdu$))Y8DOI<)6mM#!(--1xYg9{J>-1$DQjOQA}-Cyk5G-z}@qB1<{}|7yZ!O|^uW|nve;)p=M7;YBK^=Wwi+{wIGh$L^_ID$bGn^J= z3?lUp;@<}7D{=Mooxc86L~nt9gsE@v^`9bsTQBKzSuivR=O54hG?l&tQDdOrf%I|> z$jx7Lm<7b7evV8f^LYkvJ7FhPKF@=GF#7#W(@$iEbVNTlK|cq2xhCWJd7y`%XP6&M zA*uYl4}JERyLL@W@-xNrW8&|l8L^(I`; z!}Tj%Z^HF4wC^*NaeW`x>1anA`S=jmLvTF=^*Nna)JGSt=iz!St~cTOAg;0?|NHn~ z4g9YL{#OJ47d60#Dg3$XWl<%H1$rF@Q>*-2!MPQG?wVDNUewA}(Si#j{By5c`FM&y z_ZeWR66IPYgM+nFX4I zovp7;`np74zpJm;>FZtk`mnw}r?0Q;tGmwYZvGaPj;*LDD;rZ$G!Oer4MlCOMIEEZ zj2m4!p?*XW_H$b27cFV*=xj!O<;b#;k7(I4g)3`CC8!E;(%&V^}pEs|fqH+SZ zjms*>m5(2>SGHSPmMkh7T|aul=%&W;b>kb$N6#y3npZcbu73R3y0Y@Rx^b1G8^+g- zomXC7-vHBI@up9oeS#`W=aSYD|Eq_Q<7GXJn$?MR9(8u}(#3Amj^cKp`p}I%sS=G|pQ*f7H^-akb;d2!Hd@ z-L`bEi(5OJ=eMGFHn(E8bjH-FtxK@O+JH^YQ239L)6W-E$v+$BZLmrVz;ffwc)IC(b9$yk(8fKZ1qCFsBuw! z`!Ze@wJm8B*k7cGanQkVD+R{Ybtw^7rdZUD{YDwZpaiOGeOpTl<)uv>*!(+v9Kj1Z zX4Oq-Y^|Hu(pcNvGo_aa zay_?dH9%u`W1MQHP{x@V{NJl>=$W9a?JO3evr$$?V@F4ujBaUc6=yGQ>k=J}i$p{7 z5>&Ko0ajXzA^VX!wyvwKNi?)AMqLSnoB7cqKV-FbwKXWOO`@r#O*IMt*iU8q>U1(& z8m?NSt8KBC(LofpXNTy(U=f}26P>c9tzI;BG&YJwDvS+c8CN&24STryT!B1XP+P?# z2J^8u-?~I}F6-<_!4n=n6P?uM63BYIj^5+la#wjdI&x=;H%Iogxr= z#LEFBjZ`WdyeyoztgBHh%w`s^EKABvivg_w>Ng+{@2+lrgl#1WNA2V z=~@_;m3JH)Xgdda=;D*jeAvJg?D@nT(8d zV2!J*uBA#2rkcf_3*;<0rK4_9qo`?XHzf1i2pT2ne2A9a85YHv2?OdNhCo73QPtYH zxT8^ulk3{+>YKZkiAn71J~kMdE#|k^wly_z*f)70%%3<_({@g6UB`U=?wY4}`)6(48RohiJpIK05Cy8^#JW(&aX6jrZ2Td*8r+l1lC>dC&=4Ig`T!4FB zs1(g&q3Xcn#;DFGuM0WkMH708oH-iALOox!h=sT>EpBA{t1PLGIkj_YD~@cm);FHm zM4jrJ=xdWP6)2$YuEB`eJs^{0%rUB?8L5(DRI;Qfoety1Oyr3=g(oZcWK0_>)XH^vPxh?s1#FMO}r;5v?nU;bkw?G+!qzvmlb>p8^^#KvPxh?s1(P_yM>X& zj8JLJ7?o%?4p16Nd{HIvWd)zn*1Dv*qibUD~sNl($ko~H>K^SeyIn6C&L^EE+ZMt2HWGc-YShAL>!>u>>UUVPA&rwCf|J7d6< zuL#=mH9=!WM-5mrG(mHQDrnE_!~uh*DrnKv1x@e!0E7ucb)p(LBmJ(;W^R_1@Ifwcf&p8C&IRwKwB+og* zzHraoKh`v0jAO%s5o?+-qD>p#_%$qeab|ii(oF4-SR=U~X{PsM zO#{XlH7pphrU@h3v|)})!-yGeS~25IGyZ5ajQEkJ2|rd2T-Af*fKkKO?1J7XOX_FA zSZ_>uL%<(dUX(Guyf|-^c`^Q2^P-Fq=f#=h4#Ti#mc7W}1fUDzW!VGzS@xogEPHWY zmc1B1%U+a`WiQUmG9Gzn%Ja*3XTVD;&Q;@ONL^(S88f}Hb$-_Z&Zi2>{B??x)j4uA z$}@(u**+XX&;p`DjCir|G^wMbZkbM2yReRu&=>zHUBwmtvFvJNkK^$f}mc zML1Y3P!A!ou&NtKrLA>e!L;3Z>N#0S1f$(Nq!*U2lOBd;bTRc_SiUiM7}>HesFRPq zN>J|&9t@4`f|}hRUw=IS+ulXAcwza1;bCNFa6wIcs#St|{qSI_f4H~?`7En}rhwWt zYfM*fCmY_Y95d3Z4Kva&z8UM5){OHCXh!-aGGmPbc+tAMhUVDSxy=|%)HCO9=l9wx zn50Jubc&v((29_fXiZpY0(F0K<9xi#C)KlUw@@w6Xb93y+czN}s{9O8RM*egp zMwnU8Myy-IepE1boTa>4^GaXoWKqgWB^n1LsxC5@e;m5Ug1Riz7y z4x*{G2J47eRZ@EWMmDRpBarNbHhkfxt)r?Hri3eS*$r*Oui?x-0m~hjO52ucDdg)N zK=k+$2h-zg8zKZgsq@&nMtqY*FI?lhC8!oGaMacF>pc86jrwlL=p@HgN#6?jfBQ8P zBNr9pdnrNSdo8+#^aT~5?kc+ZJsCF$KdPpqc~LW4P)<#gI}pYise4;Wq4i7!@%lFA zTEPULw9GFSo`Y3?y?&Lf@z&BNFKDbki)%>7Hg{m*kaOTMi<_FzJK$BvNqJI31C~GK zL}^BQD_wxA8a@hnrU@O-@uySEq?a+ zQq_c{MNTyyj4w>-o~ImECSm2%St{swW9`y4>V5Ic{1O(vSY>=uY&4tDTM_lYE0zQr z7hEXyaWl)4zfd;L$cE0Zmx~GBT5eJv#>#cns+#h0bDh=5WTm^%>bnhoQ*FH0ZQLc; zK-2jEcSSY;7~@%x3$y`knZI7!qd~_cFW^=sb%gTKN$a_(TJIZwKhUVI@-b?i*j@fj z>C;>RnbcNO-hF*4^P-@{(IWl%L0s%8Nsb+Z*o62Inlml zJz!*C^37+%z0S9v=o{qQH?o)cmZg>tuzQnnIY^9D`}uX3 zlL}KIYcSkWQo%w^^>(-F&2my{!!3v1fP*HJZmDM5g_=w*x4f773uD^ z?5IX|L+{~xP;A-l!t8v*GN-ire^g-q7QC139LSh&=l{0AzTJH-a3G_`{eLe@9GDvn zL*KB-sSWRIndL)<-y6M0hrKLuU~qV5zF~P&ncdgY2JHEd9D7;ZKu_`Qe8cjlw7ahb z4j42ZRra#Pfu3g=`i4bLZFpbH9I$9U;_PLi19xWA(l;!1FP8VU*nz(7KOOC5p#xpU zxAP5)oYL+-7Py?tta62LHxyO=dP{Kqv&LUgOj=AC3(NX(WKWY+FbN(B_6E;8)}G?! zGAs9C_A~((gfI>7DV+J|G`6RB=0{Efdzyf)pa#$$r@(HJdaUjxMR2WgEE4U$>5`U@ z%PW|s_qGE)m$Bx}1iNXxWMa0_NFbjAdMQa~l8bVr=)L)pSBaUW-Lzjzk^^RGcMaH- zlwu50?6w763N^L;pcvZBlTXG+3QgSWds7Nq zn5e>Sg}x~nMv`7_QW!~oHsVR}3RF#_Po%mBSciM$&yMNVuuJDoObSzjt`A4SQ4$qeFTL z_o)U0{z2VYH*4a-T{OYH9C^VVE!;@b{=3Mo%!3?o&a+P3>Jt3>)TC z`yLg=n7GZf`&5<`w)UWtAw>0?_)caF=1)uKC z+qr&n@@~N4kM0$G>`l6F?peC>NBaCeC&c%IBB!ri6vpQQY!!ri6u z%Vazm?kr%)N_s-vZ8AJk?pY)Io3-XMX$2pX_prH>pZP2OguS+R@`Jyh zs`my@e)^x_`Pxm3C%*!W_mcJ6KSKZm<%^rSa}iZU;UyKD8N*8(2X zQ0KdF6s9XV|9tgUI(67sE?#u%6Vb*i7+)v#88N&?2Z^5zV5NIBRN7#(C4r|UH&yR+ z)@nd$vg_XSw_9#%KZ_ORNm+DHT^l729#&%EhQI1wtS3tyhUQGn*FyI z@8m=BV1ilo!mSdh^Vv98H9F}`cT$7N5x6Ib!Uu5qSY%Sa9_d_~S(3EpeA`H+V|#|_ zMzf1~$5w*}iJ-)g3QNcK=fDZm(WV?8VM|UeD1aZ zTawec`P_q6l)p{j{RBb9IGxWuYRZOWuk1HwJE~L4Jx5z}b8;t;PjudR^HQ0k4M_se z1n}jxo|(iOZAg-Qmyyp{Uc-55l9~;P0*?dmk>EM9YYDa_G^B!TAu z`0!iGOOrI(kSOpJfJ83Wc#}l>{nxLHJ@v3JeFA`r?B6QiJ;HhjCLa z_n$G{zKZ7|^^A#LnmkmK9{IxHNk4c}LDS)1b&#d5<3n2Vlv6Q5&vUy?hF=XaOW{9Z zy5F5JpBR%yOyCJK3?JzF^tFl zPW*&UO-EaMC)aW3;rDjP7PPp9yiUBRmo$}@-|EuI@P*>q+DRv$Jn6LBnNv@%sy*ej znyOlS6Qp+D;^vmF=2n*nMrb}5!6&Fr5z#hs#E3ZMWY?M;8gVrot_lOlfQCkq08$R;Aj z^^Ios?WFkl{JWD?4Q2PGvt#4Th)&T%Nwp{jr?lOw&-q5wjS8YxtL_>ICk z3GH0T9VO~^6x;78F|)fls=K8n7b)E@5`Kx!t7#NMb}#fT)uHqwj^AQ#Yv#JGIZ$;#Q4n>4e$R!;@S3K(AtC z!LHc`6WrO&wFUMYvro2otpaAqZLN6n2-@ErK||I2TBv${k>B$%qx9_g!@PFIWQ+O5 zYgZ}mO^+<9D$?)7CC%=W4tC+_JbVmg zV8VW-xb$_ZTIFTR3VAv1c6q6OTwbPbmzU#h5GD6@rsd1a^s(}C!m08yW0Aa^xKdtf zZjqOh9+8)mx5~@Rf62=!>7YgK>&zM^FSC!3ms3xcm(yD0*|*`6opB;Q(~b;7WSmM>%PaWIlplXWNZ9=G+w^ba!?Eo5ap}*9jCy>eU73tk zjxx@oYEiOEWOOk0vgBBu;9RQ4)S&ld%KZA7PQMVUn4NJc5ls@oOl8WPWn977Rmrj1 zFk(s&Aiy zIVGq{KOCyG^nsi~_xqYY@=j&&znQ!#h>SBK^c^D`T(%@XL>_-fyYEan35bkl3I}@- zkQ1}#PGeure7&x;z4uOUCeeiNUAhg{0&LscP%Tuxz>F7a9lN6LPsdgk?v zIM-;UTNrVk%s}!8m!mK92uy;)o`lbQnaIP4yt|n4d^MSQ#Zw6e{0zDW@vq<6vbOml zGBz^7r?O@EAu=9k#AiNYz|)9$k;#_u=91}aGPV%@M+uYFMxDs`g0XMQQU(%d2;_9XZBiu@bkex8 zyA;9xG?0OZLa|?^v??2J$RI{cP_0xjQU4eNe+bE%ed=^PIAq5oS1tXu4Ba*wPv4QN z+Fzp7pAROG7Q9Yr041@1>_iCZ*59q6c)Ak%9SAEQTB5K8KT>cCBCH+O3fL(6YYo7K z-$m?l#(rYG=EkbZps~!)5tmsyhRFMX+(hIT0i-DW4OA~s^&jg@V5R9ynVG^bp!$TW zudT}hs$ux`gdym$mWU9mQZW;mG?MvC>Gd>#IM}Rc#Lpi?qVRmE=27KDh&9qH{g0vN zGlSJ9XrDRJ_TK^M5`y|gyjsbeGM4uL3)O8@Wf>}&KRI{`i|{KCKcRj=gb7rI7EeO# zV~iab(J}K7^IOIYc4Jl`<{icqs2Ew{qVOg}^O?mOYB*%BMB$@QeL+>RQ5IFh+n|bJ zL|P?5RdH;8yd_d~p!OqE6d#J{VT?Y=j4nI{(dCRj)TmFU&`o(B^hZ%&7Iaj&9;)N1 z8r>u3Peb)>s>T_qR0I7Ls)bZd2&iNS7$ypH@w*va1RN6v$UJ!*t7axZPZCrW3fdq+ zs{uL%L(i%N4n#P8f*H_%Pjrw~7EM$ked6SD4@21S_& zz?zf*U6jiJx-~UO6=gF(_YrhfFu&T>E&!fR3DB;ND-z=M)F9<*B|zH=YKaJMgdNQu zpV;&cL*_W-DpoCLr^0&WV<5OOZj1L_Ar@pmbELFqDm2IOtKK`PJH2MX~xkv9h? z4Ab*9K)umBN_+kY$j^6!RGyD1#j+$8$gEp}^M~pAa-a_B9i=_L2jrC9AeHCQBZQbs z>Pp_mB`zJbC2nH22gW*M`_P@0eS9jkjnEH zKweAa9l@!{^gQuUA@1!Rr9IyO5Nao z`tj#WfUYEHV{md~8c}#?nGm;7|7dUuQu?{j-%I^t!HGiY*FyhG>YoS>XQkf+{qxjs z3JyA@|0ndXQ~y+OXefOV-nHJN{+VD0R{9#~Kc@btbet8W8TMo={BKWv+>)&WqJ5};kZ2hg`tgOsbp1R>5Q z$d39C+or3z09=+5pk4hGpj%Rdl&g;cdWfJ{)PLAET^)QF7UWU_w5xLfdOtNtx+;DQ zpsxr@iyG@T>LIxJb13`whcYv$R4$4q9*%cG0 z1pNcl7X|yX(tis5v(yg@c0#2eaU_12oBEPq&r$kX=s%=>c(A#pzW6%mtpWHq!mMTL z^iAsz0OS#Ha1VgGX=NXUDUED|!3O#RVOE~ToDMx-d*0@a_WIwr~lzAE#5>Wlvk{YTVSY2QqiNvJ41a3bP!@UPl% ztCl9Kpvt6bS`UxyP!&@(BT8%!k2gU-n);JWkIL*z&~cmII>j)1+HnGz`2?!@RGk{V z0TIe9OPeVt5EKKTl1V~bMbH_>h$CE8RPkxh|A_ip?c3AoCCGIEJWjy8s9kM(5rw~i z>hDxFL=Ow7UV$nz7pkUcdqDLuR25V$h~5=Y^*ct0)2Lb)eLJ8!5UO*jYKab*nw*Wv zP~AdRYqUC`nhVvlRJBLX52((E>SL-pqilCodn}>q28F+XK5ZcMi=(f2Nm)#-|2yd%S(%hR*0TEG8fEbUUiEZYBg*FFoZ^(RAr9QEIcmU()XTI(-{{#(>9kDlo1S#+&` z82WbVFNn5!dX``7KY;$b)L$4~m1YmyxuF(Kl z0jv)VSPH;60RO`i&?s3WK8kfCiq`=3BckroC|NB&iWMY^p91QaMEzK!WZn2E z){-dx1gMvY`k6+_3i45`Dp5Qf<9!=ZKi4Q(OFoMAC5pcV)Tczq_b zg+~GPBcfgoK2kgjz3PO8%K&Wv<%51>jL4At9) zYVr(LK|eHO^$@83q_ZvWZ+j4gx+1zZw4*`iH3h$jpYi8IPJK#BZqkXLNRr>s;1M@f@h$ zqv}(gi~v!138Ft|^cVi)C2AP4v3$h-$GAnxJj$n)!p+bRq5f;5kg5efhpLP!Vf!y7 zN;Mq4vYIN}ek(b5I7odUp0;!GaX{=eK&sQM>v9i?;SC#gXk9OI$GPEk>A4f#@D16y z$GhPh2j_BMxgDd(x~V9ayUF)4d`oFA_lrl5L3n*xE;op)8NR(Tmpj6IwYKh$|IF}@YI3=?yOZI&=j3u5cfeSLe>yjpyS3#E-?Jc>+q3f-zPCM>Td@~1 z{PU%`+ zo2OeDzi~q@cT8pYk&U_BCf&~XM>pkiOH|??dp?(Ypwi~!TXMPS865}AueRoLmvb<~ zo3`b0Lvu94Pj=^W-|{MkpW2bj?a8OcBmB(H67EO-f#GNI^v=!4e^PiZ-74WGV>aF! zt>?3?5^g9SOySpqtrBh=9#7$gBCCWOgv}IwQ)-oPGw>1$FP2#)-1NJH!b_D_2{-qi zqVU^^R>@8X?@)NT+A86O-B%R0)L13lm@Ak7;dgVa5^lncqwxE=RtY!TW>I)$fmOmy zwJr*;wp%6KK)aH{YfG&XZj{|i;q?_(2{*)EqVR{6RtY!1x+!d3Yn5=5EA21{Z>+OQ zxS2Ja!kg=@5^h{gqVU$;RtYz#=2CcjgH^(fs0%2(v(YNyrqhiS{(`icP=-_X@sCDP}E=B)BJV7o{|7 zMI^y>{}(9ru~tSBT-*PMQeSIrB*8WOOuSWD8P>W;g6s4Zl(Mknk>FbVY)bvDyCVs% zxi6uVV{M2exUPO9rGZ!`PH^q~2}*;oXq(^~`5!3_!4hhM>)>44vkI&&kp$Pehf~_$ z+8Rl4UHceHh1Rx6g6r4wC>2}Xkp$PNFQQap?T93}AblI9;nvPbg3Hgpq;w!wy%Jn( zevMM8l^#uSY58MHBe0^7;6ieriI5J$n}34K#s^S381LZ;E)pL}=@6?ln&6V~sgw@2 z%AyG_0G~~1q*WPBaJhFir7~+`G{LpqyC{|8Z7sot+$SkjST)fES8d;>G}@XIO>l|! z3rb_GxzPmIV+Y_J#Ttt@lmr)F52Z8??+^*Dv{q9ZZ!L``xU5=FsnS{zO>hlW&KZYU zE29Z6mdfep2t3>-xH2jypd+ny(FB)3pY)Uj<)WOCb+P91Eq=9hG>E- zm>Ve_V{MEkxK#NEN|UWk(FE5e|3&FoJf*4Ai(%Zk$| z9cOKeCb)jMkWw}7$_XwMuA(&6+7V4~Rq#$q$6Gt22`>LVO=%kLZwapRy+>)fm2M}v zsP{Fc6Rd1I!PUDsUO227)?hoqWxB&DooE%=39iY_rc`5<+6gYcEv9smRc0r+%62WK zldVcS!6mhyQ<`Z_v=dxA`z@tYtZF;KMY4ZTnq}4439g8x3hY(y7*5 zJHa)sDU{||3+x0Jwa%n;n$>P6xPrBm(&^SxJHh2D*>}&dR@e!yOI<@><>+A$qnBJu{&suLMxSsSSrF!dbJHgeXfmM(itPOU8Yel0dHCh|( z1XqTpQfjg`*$J)#)l-^pJ#Qzt>a(0uv$e%eaEWIfrG?g3JHhpw2PmCoZL{x;Nh1XmcYqI8M1HkRO`!e&aB zTI*s7t|NR+>ATkYSb|Fjqo+c;%(^?4;A%lLrIpr(Sb_@#w^F*?+89f4Ip7gWtF2A3 z1YiEQQo6!=K9=CC{uh+iSX*KVzS!p-59xc>)>wkC@nb1nX>E%o_|kp~rL|UfEWuaw zPD)owD1F}&PJ*x6&r`bIN_P@`ul_To8?0<6!Ix-0DqBCW z20ID9F%Ovr>1M0QN$~Y}45eGGQYXQ8;S(v{W|cV!zW6Srbf;D6B=~}RIi=ErJqC`ubrO8hJc!Z;Yk`yC3+3^Y z?zh^V1YaB%QhL~0>LmDrcrB%k)(R)V7r_T9J!-9V5`5u%mC|F@S|`C5yZ=&p!di!1 zLn=K1(k5%Yli-Wm$&{Y5?sgJ3tylDZeItxke(OD~=X>9^K4C&9O(4=KHDbt5m3`qe=CowdVB z@Lgv(rQcgSodjQOkQLnw6fG;ET&7BL84zrzQBVQb%d4H8?H7SCkG) zZ(2oZ3BHP`0jBZr9WDgX$ih=JV)tWYhs$P7mvo7VZLT% z@&K!duEyutF{lrSUWZ^af*BK|JQ7>WV5xlEk^K8220Y{;o?~G zh4oS5M%a~5267v=v=<>*`bUKAbBL6y=du8J+(0(2Mr5`F zGTnvq)rVFbAQ8HB66o8 z%u2J)K?bHE@-rB-ilZkX_#uKBM@7#-@LdKEO#eMDX_06vVg@21_NSI1n1Nu%kb9TWHN)p?aja%-CMQk z+l&mfwrbeVsqqJ@*AsOQ8;Ez^KxcB>y)1=FxBH2y)T-fHsSe~w?Q`0zQmC}yyHlx^ z;muUDq18y19a|gb#&VcS8@48-P%FblRI}IgG<R4%zc9~^CR zMCuNFM{jyv!p0)x-=(-(^-DfQaVs9rJ3&rD(hW6|`}*_&SbxxQD7^7Bh# z0z=dE^Hy(q?Ppi780F^xEcOIPs_AEPZ+h)#eyWS%=jC28%Fidn z1je!HCkIPUDfQaV_+Bx}&$oyP3~STRcY4!nKezUZQGT8#CNRoPKY#8`ul=N9noMcK zo&SI_2fgXzxKuiAe|}26D#K;;?>`Sq(|k14H{`ph#y@i+BU;#-s0j>erFoN@z%W#r zPpJtE9Hq&e2u)C4+!(k!7S&}2%p78US79oaUf6@MeAgozEWWTS!c;6j-haYWtN>vz2ve~Jgncno zMiZLd>XsBL-K!o?rBg1+g-RRF!}?)ZN<9+BQtfvj({N1+l{Va#O09DI zJ*xfwXBz%-3Y9ked@8jv{5Puo?rR#3VC^zYr41LSQY*s~srGxnY4}?yRNC;lsnp8w z4OIJs$29z43Y9keN-DK7{4c8gv1c02z+!2bN*g{Tm0B5|2DKhDrqOvJ(c0khFqJaK zBP_;@Ck?6@;(luU8PCwXNKK%>t2BS5CeUG(MpQu)=y6JuPfei9D9spZ0&T7|GpGqP zn$j$wCQ$22a}hLVwJ}!DcsGZs)Qq<=Or>VLSHe_k#^aHi9=_C!*JnzIO3ipBVJbD_ z9UZ1pGairJ^zfx-yv0!E%fk(F^@oQB)Sb#kqi~Zor3nLy_rakLJx@MDK*=5+*su z{;^EIM5Z5oAgyr??^n1Q!$ex55n;apjn1VPtGm^wOe7Bn$)ZVoG^-jLZ?rzy&P8x| z>?P@HjOXeg#OBMxLPn}8L`HLw>R9`Dnd%FfYOI%PE>p?FLq@9aAo4(_s_NC{tB>sUp}L z$d`wWj8yw0@)`oG?O_NGk6k8HP4H4xGL<}hWTcvj$VUjAYR{3WekM~L=A~+7DtQ>m zNVN))?-6*s{XLoLRhjB=FV&q)#nW!8lX%Agh5ZCI^5CDeCtHU=VRI_5-=UhPhEzh? z3`#9W&{tH;Lw_>0tZ${}lwcQN+ag~c`IBl{u}aNp!9I*?dEif~WeqAdrw02ps^xJ% zsg_lx)SMpdrButqeo`&#M5#GN*w;g?d#_hqbt22Y-&e`<%Hpeu>Lp(#%PNbmRNcNx zmeW7$Xh*SKqJ7CS`llT2p}tC%&p+R2Pw-W;Z2rkc`xIX#%O#7cveD+N0;ls-;ji@d zvT$-jkRL3juz&9BWeI&f%ZmBW*UMu1dU?YSGTZR*tR%lWjw%mqqu}vl4{e=IaCHzZ@E2Uy0BDa;m<;M+Ry_o=~(O@%4e4P?P!_ zzCKVB@>HVzZ+epbJc?~7v;F-%%ae)r0nqoCUH(uX8K@n3I?+CXNZI>O^^t*kk|z}H zbBL4!;X)r7s4;m;(Y}pHIVOIJQ1F4oKdETHK;X;xh`x!B7YAWNxilv>*t#(H7YOqv zWnCn4A9KSOr{_M0usqmy36|XZU{ft%UD!jDBjruW9-SO1&o0{4h_p|@M|2K8CJlkN zHT%aV;F@m5ZArfJ6%^L~wkTXa7&*m1tH@@x7H#H^RN;+?DP-(0KQ{9Ys1zMg;q%aq zroP12i^2~Oa~xxb`>~l%F_j!}g;C^S2KA+e-nS}j3)ub+KK73-1a6|0VGs3A{AJo= zsCVQq%T6Eao%zeQvxl+_%aGCm+H6LfHE;h87~PxYBaYvj)eP~^lzMq^)b5XM z%6ytr_l(oC>|gOH^tWJJLxon(YeasgD4Asz+M5H^fQK_rVH4%w09 zWIl}kCB(^}=;XkNEYYa4Oy&yvpZI6Z{s~l%(GkCoBV^9SHq@sr&P2<&EREZN*a_KW zX`Bmu1WoMnE=DEqVpQ@jMkViJRPip_igz(q2dsMHcA5}ObDy}=&w+$T%swug<9_LI z6}t+NWN3^`5PkdM+AlihQbc7;)cHSzbv>ICrJXtL5VS?)s=3EXX$hXbvd+@5=a42l za#hzSXu-TuC)G)D1WYMu4oYrIhoEk|r*tl*hbhN3Ys=!37kD&>se~ zNBJ~>luxG?B152j$}uRPehUw|vv|YIF({wtNyZMOp@C=cqlF*0;6vmXluyY>kz-Ik zF@wqo(~BH~^6Be;SgYqe$$}=dRlpmQQ&!BuVqH_$&C%-5VIbwopnUSjh1o3(%BK*3c4bgLg@KeS zgYwBL3#&kb@+kzMT^W>5VIbwopnMt;>dK&e3IS+W2IW&2NVzg7pAHXoWl%na0JN*q z5_odM69|Z-!a&kh-VFe0%BLQ^FVCQS3MiF}JcIHn2v8+4D4zmjTh1kV>>89$sZhF1 z2IW&qr1ES~J_Uxl>Di!sN`=y%4a%pKNagvMQcS&lQSY||rw7xsLHQJzA3T)y{2uIS z%BPe_<=LQo3QPo^P0W-A*v2IW&=UNAi`ItWjlteN$ZR4DD)pnOV+ zRGtmWr@%B}dNwGZQlYeGgYqdQQh9c8bKuuPK=~AyHB8S2kK27-)m{Uy82IW&Kl=f^;KBYuT&v^#rlQGp8 zUh@pfr!a)_m}gKvg`!kB4az6~0bV+jZwczj)u4O|Oh!y2atz9+z?7l%2IW&=U@N^r z`4kv_N^ej;1qO-I8Wft@P5Bf8(5?*1r!bImWl%o(gWPoW3S4Q*rx1X4Wl%na zfs`wQ^2whsOjicwQwTu2GAN(IK+2Ut`Q%SMrYnQ;DFmQh8I(_9Amz%SeDY^8)0IK_ z6avt$49cf4kaU%2P(G=Nz;KgiP(B5e%0-?*`4j}GlJH2WrhMWgYk-WKmO=Rxm;ltI zZcsi2My=8tluv=7rt}8oQ($~3y+QdD=+sJYP(B5EqS70bPl4{E^akZqpv{%upnM86 zl+@=Llut$lQm1cP2IW%_zzP$22IW%_z#0>I2IW%_z$z1Y2IW%_z&aCo2IW%_z)BN& z2IW%_z*-Y|2IW%_z-kkD2IW%_z?vEOf@4)tYKAoya{?u`DEyn z*_WWxluy3dr)6e7fr{Uj1m#l{L6wxCfpTPXfQcM~^2r}@gsY0mGbo>w0Z*rwAPvf= z)+8??=NFUk#Xn}CA$n&(Wl%o78BiINPuVcwXItbLluuIvDueRrynxD}e7ZlNGAN(A z11f{^iLIcr!4j%&kYi9j9eIqaXEC+@?}*ftPiJ^~mR0Kw%BSymdKOsg4a%n*Jv~dU z^#zT0|btpYfZrpnOs&StCA*btCc&$|r@A z)#9UAK_btfd{QV`H$IBBB=QW(Cxwy~X49X{k3e*=jxkR2p`J_;R`jV4woNlxI*rsciF3ChrF7Lv>Pv@+lO>tyPg@ zP(D45Tfai`?xZIfgYwDH5vmJrP(Fp;j19^sBOB^wJZhRp`SdJuqx7<7@(ju+6-|K1 zF({wB$4k^O>}bj-{}w6pD4$kx49X|Jkg5d?$|wJMP^k>cr{mEDjNA$5j6&?Z)Zt@@ zNBNY`10XaH%BOsu|B&Hz>G?eVA;ULh=aceDhHo64Ps*n!h`*^QpOjBr5Cr8@{w9Qf z%<%fMd{RC=!SL;s`J{a6X84YY`P>2?fX78pKIN10=`@CaRFhB2r&fmVo|8|?rBOCKc`BcmJM>pk@@=4+! zdp@6(PtxY&Tk=Wyw2YWvZOtd;)AtzOv@M^MPd{e($?kkoKBeI~7L-rYlurfRApDd9D4z3D4zOaWK>1Wa%BPPg zfbyweA%s3SVQPW$seqJEBPf9KseqJEqyZr1QvoTT&ZYp$rvg$wT}1(uPX(lWdWZrj zp9;7|@&*M^J{6Gi>E9GU`BcEoj{UKsL&~QDQa(+h0LrHVQa;sD0OeBwDW5K-0LrI= zdm#Ln0w|y2+++AP1yVl6N%`~-N~C;>lk%zmI7p;?ij(rGoDwOY;-q|eE+tYv#Yy>eEhSPu#Yy>eFQtR6qG+6yPtQ{# zSxiIh)qQa(+mM9QalC8YV3Ncj{e z<yqu^DxpNmr#LB}CQ~BiQ=F7f^C*$> zDNf3#<&;SI6z2luO_WIa6es1=FDa4oDNf3#*C~Q6lA2oRm-9lt}p$C*@NV-$j*_PjN0+$-Yau^ zsw9$>PjON{olJ?8PjON{wNN7EQ=F7flE#gcPjON{t*4HZPjON{JxYm`PjON{y-KMG zluvO|K1otHQa;5=`ILSXbfkQWlk({RN~C;>lk({(N@s!cDNf3#(1Cij(rG5D#&Z@+nTr zr!kaB`4lJR(@aXFe2Q}|q?r;apW2De2R1J;Yv!Re2SCu=~+soe2SCu z=}Stae2SCusT}XVlJY5jE~NRCNcj{e<rwvALrH+(OaZ)~wtA<3%r#LB}W>X^NQ=F7f z{BDt?e2SCu>HCyO`4lJRlN>pue2SCuNsb&+KE+A-w1G%cKE+A-#FtJ<`4lJR)4P=3 zw2IQ=d^PzeB~m`cN%_=wDkM@q#Yy>8M2VD7aZ)~wr6ehz_II8>7&Xe*zkxj8Dq?To zQ*l1U-bav}PqB$Ho`famQ>@g!FoKKie2JJ?sUSV(Rt=O0AMWp-IY z`34tDKNOwEL3Pe|G7v0u5OxM3G?aQ})7wK)XIo=OK&`l;V#gs!Zm8Jdv6B%bH&iTP zD{d&~+ce`>DMP~PWF%iq4ckhyhMIs^nO(W)@BEBvuc6gh+Sq19DsCv}MFi7aZYZxs z-b+p;b0Zg>ov*0j0bA8^oPHzG&2)IM7gpymoe_vIoHHB3If{{fhGm61GySA0qJb#C zz!I-C=O?FEwQx<(NPSe%xi^JM?Or)AL0zo4q3r(od~!pnu$@nCD863X z{nPWw4W+`_!s$0EsWh^tWWSPIU(Uf$4=%$;>~MUL6UtgT%;kp4CpQ$!2yUo+azn9; zgBvQJ+)&(c0XJ0smk4un1>8{i7{n-wC|mt1cx(z{CNt%5Tm2-t zb24I#KCc>jJ|hENK(+RT)cB*<>z=yXt*2V{7;nhBo#B@$RJt>~nM$o%^WRhla>Q&5 z5>9S;xJnxyol30?pG-AdUkz`WcWro43Y9i|MJly2{8Osgm3kU}E`>@P{!1#gGHh4C zF#Bas!-XkS+VD}S)XMOgRQnT_SrtoDsI=khQ>m5VhpFa>>6zo-rBG?ZJ5s5Y;jGax z%;DG5@Ifh5+VIp=YGrr<)f~$`4PTr>r48SnO05h(33X9Vqgz9wwZTuqRLWT9800cA z+PrBHBV%N5dTsvXUNOqg5@G^_&-8O$Z+h+L(Oxmi&mV~ij78JWe|ytwKf}iMVq>84 zLxRQN&@}xt^`_T;F7Fki{E+lMI8seNzwJ%0{rsy}jPjE=4t@dy*Yq>4H@)_AdaoGe z=X_!Uz5w%t3GZ_f4VdcuS=oQhJTSttqk)gJM{Q8js7DfS{qEqf^9H` zzPXd7(U|e1K{Z1hNljq5D9x$V1p2$uoJ~!j!zv9~8iPGfX?{pepvx%Duc!&MxzfBr zO`y?~hAfT2T34D3tPPu$z*s%wm4>O*j5j$d2hKZ`==NUY!zR5KN0{KB#nB6ZkEH5r{QLfwV*;!kG+> zE~*!+d(F3*s1+Zob|pTx46@>ba?VFE&EIJ5H zGmz>pkQE=4^LLp_^Fev3#3ZDWCyiv~s~i>}Qt?4KMF^(FG#`|gY8+F^lSf9XlMt!+ zpq$wN8wa^$(ExioKkA!sX%E@wvN(pq&vq^%_BuB zp=<`FmLsT%YI!11rk3@s)Ex27rBuuFfKn|hR;fAa9sWAaP-DJ}57CUdd9eczVJeCuCprYj zC%Y5WnaW(fW;Q@CE9Ds{L^=#ZsxC~c}6hkvNlxzSH9VgHAG2 zCLu%PIUz}|H~|J{MEC>;3kx{#AacAxoO`v>%IC$B>}=)$0}vUqW`72QHz|X2NKB>k zQ1d#%)i)&*jXi^eB&u_UmTp1t0R-)Z zkrCVnJm_siSmNMY5tp7Oj)!E6`6#%{arG_~CpkDS21D-O76c*(&QQO?5>4+D%|@g1 zFM2FK>=W^!CY+cz;W(s%`UDD2IBCX&b0O@eKZTAa(u@hmi|s?=tUm2@o@Puqo?fIG z6OI?#=W!V9Ls6s|6OOO4 z2=Z7$WTJgLf;^TGDa}yF5~BAa#!qKdQ}lUgqA%gY-inVUNM&6S^EkO=L!=cU5}aIV z1}B%SoLgi=7@Shm@~KIF&HLy_AwgOe*6Dbfs1u9?6pBTO&S3{I}) z0hPhYMXX9i(|u^9&wbLX!O7)&Wk{qMoLs~j>6PB#K1X1*h%|$f z%U8+#v3^9F!O6u0(!a=@6vwF?3?ge_M8_DMTsp?!n!$uN%m*BGL>_EX~Fin`A4Nk69DDC-Syo2()Io55Flt|^7 zU%}(|cEHIMm^Dn#1}9f4l=gfV>}gJ}lt|^-;N%KSBBp19lPeWUdp0<^QX-XSgOe*T zr#^WOq4aB^=NG4}CxTB0O1}wuew7Me?+OeOr8hXa z0$o|@4Nk5=hf{iklPl0Il-}Uv3N)V7XBwPbMpaX%o~<(tPOcz;6(%wbPOcz;Q=!N- zIJtrV&R8Pze4O*+7rv}l)QgFF!IODlorz3?lPhR}l_oL`POcz;wI(tRPOcz;)h03x zPOcz;^(N8`POj7s+Xg3>-`kA-pJs4!g#h$`GdQ`zK&tl}oLqj#HC-8;Tp+TpN%Wc)0|vkAmz&7B`{b3IS+W1}9e-NVzgNx%@$Hx-vMqLIB#8!O0Z{Qmzb6E`Po-T^XEQApq^l;N%Je zDOUz3mp}EGt_)7D5P)`NaB_u#lq-Xi%b&$eR|Y3n2td0sIJy46=FSC5uAY&=84r3B$Eny*6TQdeij5D^drYoarxyJ|_~%!Zi4GO(iK6$IT(RyWdXLE! zJLaPIm|U>~W%MbJ$>lX5b@rs?F}dOfY_K5ZF}dOfY_TBaF}dOfY_cHbF}dOfY_lNc zF}dOfY_uTdF}dOfY_%ZeF}dOfY_=eE37*#StI@<+DsI4b3z|G8*B!7Gqc0$2pPYJ3 zEXJuQPKkIBUZk!s3ss84xJE>B0(plMbw%ESdOD^!%NT#xlZWtm*@9JfJbnOwB> zyh@IDKyR5`o=)682AyScMQ*nuGHCi0el3&hZUiMMji#89%>foPc}%Wo#L-+DD&;Y` z#6eYOA3=Idu4zmBT!JQ#$+aq`;%BY=NH#H~cE?m6lj}fC9f;eOir5iMT4)#sQ!0WjBQ8g*6Y4skHD~VMMlAd+7 zdXLF;wHSm~RVqmJz*02U1lS>Rt{n;GWz+-ZW zfoTA?hc)n+Tw-8afDK{|JSLYIm?mJ0SObsAB?hJsm|=bC)CbD8H1u2ioCB94pMOJL8AmuT+ z#LBc%WX1LhQXZ2_tV~lyR&2B&yv5K{qnRHVg zlS`~(?PV5@q&y~j?qJ{DP-!i$PQ=}=Qxms!Rm|RgMpZ-fp_9* z{7kJfxzg2l;_m^qC$w+D_co`iZ^Yj_HBBZLi;#HV^fZ}VBN#jhpnOx0y z#|kD_noO=)4BtDPCX?$*hCjJ2O(xg14FAiHG+)5p%cKO&mTyW$@MJbA2^sMlgrpY zbSOV^O&SB6ZkQz(GRl_8Vs9137^Wys{Zf&!Ra88W%9qW~sX=F1Rn zrvN5bhD@%{PymxF!-?fXS8N3!tSGz~su1$#ofp=ME<_WO9vD0Fx_2Cf6Pc zU~*;1T!$!t$(13K>n9Yz`5)sQ+Uk;$d`oc;nz zWOC_uLmH+;CYL6Y>lR8nabJTblZ*cir(tqwGPxe7L?)L$0_iX%GPyLFTrdL1c1iGP(B9 z%Xx|YN|VWTH>F-Mxipzv|3QgNE`2(r=P8lNrOD(<;*%=F(qwXdhZ31wnoO>jD3Qsf$>cg3 zPfHAwOOwgfNr_A@O(xfBN^27xNlhl#FeNg%G?`pCQ+j=3UQ%BJ=}t;ya%nQTzC?*k zE=?xa_bHLdrOD(vLWxW+O(xfI_=3nVxipzvXHg=POOwg9ffAWqnoO=yN@Q|rGP!Q0 zbXj6YQj^JL`YxGVnoKT!7N@Q|rGPw**i%c#}CYPaUk;$dW*QK}?5Lj5eHrzw%irOD*_JtZ=^G@pf}dm)j@rTO^7q$86{^NGhy>d55M ze7@03iA*ldCmNShB9lw=A;w!Mk;$dWr$i=~CXx-0b!>3Q0Os?-yB9lv#$@ObWWO8XTxu)WV-Y~f| znOt)yeIU`%sLAA7Mu|)=O(s{45}90@Os?xGk;$dWonUflGPxe2v_G+;QIpB_ zG$k^*G;d7*K#5E)O(xd~eUQlH(qwWirbH%}CX?$5N@Q|rGP$m&L?)Lelj}}O2f*ag zWO99#5}90@OfJLLB9lv#$z|AD4=47b)R4|z2FrtBa%nQT1}TxrrOD)a8znNiG?`on zD3Qsf$>f^091@vanoO=al*r`LWO5maOfF3(S1)yBa%nQTE~7*ymnM^I7bP;eG?`o< zqV&zg;YLj+*XJpb$)(BUG9%{+tOeC%a+#4sCYL6Y>j_$t$)(BUdWq7LiRn$6Os;SR zr0*pD3Qsf$>iEd=?974ra+ZXcWYR=W;IZ|DVs-w zlxwayP2K|=L2Ie|5o~v8tz#a66eNOa?!U`bk0YYxJNRk4ssU@C6UqNVSQuN1#_B~H z@R@TmG1oD+lC21mvDI*Pl5{IFwi-@r+lw7M@J>}2TdEVvSXl$Ll#zT#ImJ}K+-D`P zf-HH5lsVT55%2J(mRPr`Tt%mwoVQi`9G#OhrBStj` z={Hxy$ut>Tyj@n!&1o{WBs?`}+lR=eq2)^QHCl_qM7 zRRwA*P1F{9I#63_qPF-V1*okwQCoax0@PNTs4cc7P+MuDw)ngNsI4?nTYTvO)K;3P zExz9XYAa3D7Tb=ft>jWf3Ti9420@~>8qQ5_M3AVhhFNWb+DdLkjG(rX+YuyctKppF zjR>M`f`*xGg4#;H3o(M)N`4SQqP7~AChtO!sI7)MZGzfLK8P4WZM6w%EBP2=mck}6 zvrSN2>M6u{U0;s(3yh5Q1Ucx<-OxmXxY|o?@0&%n={VJqYnP*{^XsT=pUBly%h9}n z>R5?vXM2Agm390;J+(M~ifSHx8LX!4*6~YqRMxScUpwU#aXg=DcBRRVx$>lz$~rFA zQ;Xw&qMH43vg14JsI23EtEU#n&ru!CTYgg#3#0w^PmGH`($1byU{zTNz`v)8wgd=}CsHd6h3F8Nb>n-9tEb$!@Q z^#R(%2CknE3Gj9GHXm}~>)S|u!bPx&jblF_^5g63Z9b&R*SC>;Mraco)_y*3{Zo3I z51I6Jeb{#U4sBwi+|TFNe@bujITp{v>iTf=A8hc zylk{5RZ&r2DNB@PEBkWil*@_Xkr6LG#%8$y1Ho2rY6=oMYEooSa%Xl ziJDjk5X~*r#15Hg$hh(wnX$46LXmMbNyVxMij1pCD%Ks>|Fu-Ce4xmZk|!j;G)m zVl9<*JiDG+951Ij>Oj8ZO?6b(@s0J=;`qZB zj>+h20x75Ts ztY|WL_#5wWqB)(KSeFqESMSA-xoEDYCU($7vx}N&#`8)|#+Bb}w6`-J8CR23GUJhP zHAy8i9vN4YR5Ig{aWzRLGv4vFR5Ih8SxY4|-s@|rWX3DjQpt>WGgPf+#e=!OT#iajEMNYGGL<);bU13sL7FRV@nW=W;C#qnO zd@E#OajAEjRF=h6O|_q?%nBnfuP-A~SX}CmNo84F)l|RL) zn-P?Prq!$jG^tH{i<(n{noITh)zqe8Ma^kJt)kkj0yL>j3yPXkgW5{9Sp#U)rl~~D z=|SB}wOIjZ)TT{D%_&0N1-0$H)#}P>CH0j^W$J6HFB8?Xk;>H7R9#fRi&Unb(E>rid3dvrkdjL#zQDtdqdVe9ZjJ1Id-7$NaG=!7QBt!CQMIfhi4OTLedM`h96(hOM(2Gp&ge)AW6Zm?B!DM3BjQg<vyb%WXcho7HIkdDgb|pOINSN|GZ^+#}N^P|0=8naE$SA5mZ;v z|16gCwEL{`1fx6?#knKqUJigVrRi;h65BO)e}mm0u=|5{|GeEFw)@#BNjJ~#d+lCg zqhA+aJX+!$Mr^;89V1Ll6}>}zJ(d>P5xJUehj6&9%dH&cBq7&vUUGVO*zMjO#BSS4 z?qJ+vW!JPHx3X)^N39&s5AsXwzd;Xvv0CrF_Eev*z4Q}l!;cx!D&Uu{+7oN3X;i7q6mC@1Sz;Lcm8tW<+w~usfE9WskqaWP}% zfvyqw?;6;)jYXJ{?5|wJu7Npoy0&-!)v_!WHlb|>in-F}t{yb%qH5a&TS|q_VIC4T zMmD!?TPNxt;Fx8zrSW2MTcwQ2D;TQ`4(5ko=!cW|Utz~844l)n9jv)#|`*VEsQ1 zHT0@K+wY@(j!s|g=LnktF*H;#148h0HSP&#G+r2XH|`Ek*%P+z4qprDb?AFt{o&Ego#6?MtHb$F9^1I_!f+1a zPkbOex$%{-rSX^O@TFHhi4oLn-+(y=#F9IVpZOa9;&9IgPD$bPM8>PRHf#7RAw={Mrp`(On2R>?rb(a zW5^uynf>7$9COUIcA{nW?%G7@M3`x5{t>!9#>bG_dIT(PxjJZHvUM;n|EK(npQcF)gqdz=*LQgfV<}R7kOgTSHL*8nGIYn^D*$XGN z&v^PJDrH9)=aea&SMaxd%_YI+(c)l7cW3u}$n`di3E01QB(CSxWJAyve7{vRb{Fs> znDP9_EtFl*Y4(X=1BRNv@veebZqsA&7n)e)ZsYeFJ6w00eIjU&*$>`tu{Ki|Z+1-&+3tcfz)Wj6kxjem`ef0K=O*Dm(%A|S8z6m*6gtbLEQf5^tWYa$oV zo7!|REohFl&wpG0uJ7|sj2mx{Gw|<*GVc|+HKIM3uR8%oeq_8-9LtWE%BbF01%_MmI|E4@WG~pbX36T6OM~q4 zRcp^*vMRfF*|LlK)@Ro*Ie%3j^BCBXv-wzIs8Grk3%l|`e{Op&J1{zuy>@(4E^Eq- z`_ED-U(7DUtV$vi?aP|R`!*)ch6sw zzjk?XbW^T)QGTdzT~Bt)=%y|CfyxAiU15T! z?&bN)>U?E*ba3Sbed`uwx8U}0Y;4_y0~eoxhKZHyVso2!$@*n|FqoiS05@w*IhQhh zy>g$q6!&{#Cz*PN>$>M~xk2k52lvv|-DfSSAo=jp@p2j6 zc>QoWpBwC3hsKaYvd$eKYkfg}vh@U$Gf`X|O1Riw2sWEznccE|B*^B?;K*h-jg7Iy zWgJuvlAsgat&q)?%ekFF=OCVFY|iF3Z7S!t2c78rm7sI;D1OijM>xznIrKX1(Cd_; zM~lvFMJUnBauPx=&RZF`{CP?{OK3C~Yl8XV>`)m4G&?*9#pcp@ryb$hs@+I#pimkb zb;%@b@`1kzX>8f(g_kRH-DF`h-Z>(+!@03x=c`yK<%3RF1~0jpcjgubC%Df-M3%Xc z!a&eDHjMIDa+?rx`<)|3E{~da?liyEsqg<1;OV&uf0+Jda{;^G>*8Z-7u|yMho9bE z_qhFO&d~1Nb%~4qAp%F?&t-ei2Hbv|m6?vGDtDbS9bs+-{Na>PO+U|G=(+ua&M}R# z+0&f}`28vVesko=s53jv%3yQ*heR}aFzE8P(ZLG{FiV&IK5O9ipSFf9BR7}cwZp@R zJL2U($O~g^ZofdpYW^-Cx1WIu{n1Om*QR%ScV2ew=km2~gIf`J#Y@lcwz;`|hmquZ zl5H1H&-yXWmFG#D-tBkT^zr(;0I1eBxd^gHo`qFcKemi(C%Gv+@6UU zcI`LaUQoLIADqIbclCE}uSdX7-)8M8DWXZBBH1-dEO2 zpFUX3KWk!i;y@U854(<_4Bk#BKK@J|0KYW4B9!Cx0w^_Zzpp9Ex}x zZC|`XVtZrCm>9gbPWtYv#L^uX`s5Z*|5A-O+AXl@$;!iOFUww1C KGL|4F2LB5>R%J*4 literal 98432 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.14.0 <3.0.0" - flutter: ">=2.5.0" + flutter: ">=2.8.0" diff --git a/test_case/adobe_xd/pubspec.yaml b/test_case/adobe_xd/pubspec.yaml index 4b2dd18d..37d1eec6 100644 --- a/test_case/adobe_xd/pubspec.yaml +++ b/test_case/adobe_xd/pubspec.yaml @@ -46,7 +46,7 @@ dev_dependencies: dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_5_0 + path: ../../flutter_version/flutter_2_8_0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/test_case/animated_text_kit/pubspec.yaml b/test_case/animated_text_kit/pubspec.yaml index 8e03fe49..35993359 100644 --- a/test_case/animated_text_kit/pubspec.yaml +++ b/test_case/animated_text_kit/pubspec.yaml @@ -42,7 +42,7 @@ dev_dependencies: # Switch to another stable flutter version dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_0_6 + path: ../../flutter_version/flutter_2_8_0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/test_case/best_flutter_ui_templates/pubspec.yaml b/test_case/best_flutter_ui_templates/pubspec.yaml index f2cae0cf..33f8aa57 100644 --- a/test_case/best_flutter_ui_templates/pubspec.yaml +++ b/test_case/best_flutter_ui_templates/pubspec.yaml @@ -15,7 +15,7 @@ dependencies: cupertino_icons: ^0.1.3 font_awesome_flutter: ^8.8.1 smooth_star_rating: ^1.1.1 - intl: ^0.16.0 + intl: ^0.17.0 fair: path: ../../fair @@ -26,9 +26,9 @@ dev_dependencies: fair_compiler: path: ../../compiler -#dependency_overrides: -# fair_version: -# path: ../../flutter_version/flutter_2_0_6 +dependency_overrides: + fair_version: + path: ../../flutter_version/flutter_2_8_0 # The following section is specific to Flutter. flutter: diff --git a/test_case/bottom_navy_bar/pubspec.yaml b/test_case/bottom_navy_bar/pubspec.yaml index d67f8dcd..e30cfa9c 100644 --- a/test_case/bottom_navy_bar/pubspec.yaml +++ b/test_case/bottom_navy_bar/pubspec.yaml @@ -45,7 +45,7 @@ dev_dependencies: # Switch to another stable flutter version dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_0_6 + path: ../../flutter_version/flutter_2_8_0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/test_case/fair_bloc/ios/Flutter/Debug.xcconfig b/test_case/fair_bloc/ios/Flutter/Debug.xcconfig index 592ceee8..ec97fc6f 100644 --- a/test_case/fair_bloc/ios/Flutter/Debug.xcconfig +++ b/test_case/fair_bloc/ios/Flutter/Debug.xcconfig @@ -1 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" #include "Generated.xcconfig" diff --git a/test_case/fair_bloc/ios/Flutter/Release.xcconfig b/test_case/fair_bloc/ios/Flutter/Release.xcconfig index 592ceee8..c4855bfe 100644 --- a/test_case/fair_bloc/ios/Flutter/Release.xcconfig +++ b/test_case/fair_bloc/ios/Flutter/Release.xcconfig @@ -1 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" #include "Generated.xcconfig" diff --git a/test_case/fair_bloc/ios/Podfile b/test_case/fair_bloc/ios/Podfile new file mode 100644 index 00000000..1e8c3c90 --- /dev/null +++ b/test_case/fair_bloc/ios/Podfile @@ -0,0 +1,41 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '9.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/test_case/fair_bloc/pubspec.lock b/test_case/fair_bloc/pubspec.lock index b1ed8a49..210b276e 100644 --- a/test_case/fair_bloc/pubspec.lock +++ b/test_case/fair_bloc/pubspec.lock @@ -7,14 +7,14 @@ packages: name: _fe_analyzer_shared url: "https://pub.dartlang.org" source: hosted - version: "22.0.0" + version: "31.0.0" analyzer: dependency: transitive description: name: analyzer url: "https://pub.dartlang.org" source: hosted - version: "1.7.1" + version: "2.8.0" archive: dependency: transitive description: @@ -35,7 +35,7 @@ packages: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.5.0" + version: "2.8.2" bloc: dependency: "direct main" description: @@ -112,14 +112,14 @@ packages: name: characters url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.2.0" charcode: dependency: transitive description: name: charcode url: "https://pub.dartlang.org" source: hosted - version: "1.2.0" + version: "1.3.1" checked_yaml: dependency: transitive description: @@ -196,25 +196,25 @@ packages: path: "../../fair" relative: true source: path - version: "2.0.0" + version: "2.4.1" fair_annotation: dependency: transitive description: - path: "../../annotation" - relative: true - source: path - version: "0.2.0" + name: fair_annotation + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.0" fair_compiler: dependency: "direct dev" description: path: "../../compiler" - relative: false + relative: true source: path - version: "0.3.0+1" + version: "2.3.0" fair_version: dependency: "direct overridden" description: - path: "../../flutter_version/flutter_2_0_6" + path: "../../flutter_version/flutter_2_8_0" relative: true source: path version: "0.2.0" @@ -372,14 +372,14 @@ packages: name: matcher url: "https://pub.dartlang.org" source: hosted - version: "0.12.10" + version: "0.12.11" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.3.0" + version: "1.7.0" mime: dependency: transitive description: @@ -496,14 +496,14 @@ packages: name: source_gen url: "https://pub.dartlang.org" source: hosted - version: "1.0.3" + version: "1.2.2" source_span: dependency: transitive description: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.8.0" + version: "1.8.1" stack_trace: dependency: transitive description: @@ -545,7 +545,7 @@ packages: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.2.19" + version: "0.4.3" timing: dependency: transitive description: @@ -608,7 +608,7 @@ packages: name: vector_math url: "https://pub.dartlang.org" source: hosted - version: "2.1.0" + version: "2.1.1" watcher: dependency: transitive description: @@ -631,5 +631,5 @@ packages: source: hosted version: "3.1.0" sdks: - dart: ">=2.12.0 <3.0.0" + dart: ">=2.14.0 <3.0.0" flutter: ">=2.0.0" diff --git a/test_case/fair_bloc/pubspec.yaml b/test_case/fair_bloc/pubspec.yaml index 0a498b06..8e30c4f9 100644 --- a/test_case/fair_bloc/pubspec.yaml +++ b/test_case/fair_bloc/pubspec.yaml @@ -32,7 +32,7 @@ dev_dependencies: dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_0_6 + path: ../../flutter_version/flutter_2_8_0 flutter: From 1104e066839a97473a105398e0cc3c7b76f950c7 Mon Sep 17 00:00:00 2001 From: gongpengyang Date: Mon, 23 May 2022 17:36:59 +0800 Subject: [PATCH 4/8] =?UTF-8?q?flutter=202.8.0=20samples=20-=20=E3=80=90my?= =?UTF-8?q?=5Fapp=E3=80=91=20demo=20=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_case/my_app/ios/Podfile.lock | 4 ++-- test_case/my_app/ios/Runner.xcodeproj/project.pbxproj | 2 +- .../Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/my_app/pubspec.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test_case/my_app/ios/Podfile.lock b/test_case/my_app/ios/Podfile.lock index 30c7f536..188e197e 100644 --- a/test_case/my_app/ios/Podfile.lock +++ b/test_case/my_app/ios/Podfile.lock @@ -21,8 +21,8 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: fair: a2ad8650ee4df9e6bcc51426213b3a3561dbacb8 Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a - url_launcher_ios: 02f1989d4e14e998335b02b67a7590fa34f971af + url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/test_case/my_app/ios/Runner.xcodeproj/project.pbxproj b/test_case/my_app/ios/Runner.xcodeproj/project.pbxproj index fd4f3ad8..ab261fbc 100644 --- a/test_case/my_app/ios/Runner.xcodeproj/project.pbxproj +++ b/test_case/my_app/ios/Runner.xcodeproj/project.pbxproj @@ -155,7 +155,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { diff --git a/test_case/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/test_case/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..3db53b6e 100644 --- a/test_case/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/test_case/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ Date: Mon, 23 May 2022 18:08:25 +0800 Subject: [PATCH 5/8] =?UTF-8?q?flutter=202.8.0=20test=5Fcase=20-=20?= =?UTF-8?q?=E3=80=90flutter=5Fslidable=E3=80=91=20=E3=80=90flutter=5Flibs?= =?UTF-8?q?=5Fapp=E3=80=91=20demo=20=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_case/flutter_libs_app/ios/Podfile.lock | 2 +- .../ios/Runner.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/flutter_libs_app/pubspec.lock | 30 +++++++++---------- test_case/flutter_libs_app/pubspec.yaml | 2 +- test_case/flutter_slidable/ios/Podfile.lock | 4 +-- .../ios/Runner.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/flutter_slidable/pubspec.yaml | 2 +- 9 files changed, 24 insertions(+), 24 deletions(-) diff --git a/test_case/flutter_libs_app/ios/Podfile.lock b/test_case/flutter_libs_app/ios/Podfile.lock index 2bea783c..120d1a20 100644 --- a/test_case/flutter_libs_app/ios/Podfile.lock +++ b/test_case/flutter_libs_app/ios/Podfile.lock @@ -49,4 +49,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/test_case/flutter_libs_app/ios/Runner.xcodeproj/project.pbxproj b/test_case/flutter_libs_app/ios/Runner.xcodeproj/project.pbxproj index 06e8e560..8b827b60 100644 --- a/test_case/flutter_libs_app/ios/Runner.xcodeproj/project.pbxproj +++ b/test_case/flutter_libs_app/ios/Runner.xcodeproj/project.pbxproj @@ -155,7 +155,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { diff --git a/test_case/flutter_libs_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/test_case/flutter_libs_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..3db53b6e 100644 --- a/test_case/flutter_libs_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/test_case/flutter_libs_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ Date: Mon, 23 May 2022 18:25:01 +0800 Subject: [PATCH 6/8] =?UTF-8?q?flutter=202.8.0=20test=5Fcase=20-=20?= =?UTF-8?q?=E3=80=90flutter=5Fcomponent=E3=80=91=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_case/flutter_component/ios/Podfile.lock | 6 +++--- .../ios/Runner.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/flutter_component/lib/src/generated.fair.dart | 8 ++++---- test_case/flutter_component/pubspec.yaml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/test_case/flutter_component/ios/Podfile.lock b/test_case/flutter_component/ios/Podfile.lock index d5eefad6..fca31d7c 100644 --- a/test_case/flutter_component/ios/Podfile.lock +++ b/test_case/flutter_component/ios/Podfile.lock @@ -26,9 +26,9 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: fair: a2ad8650ee4df9e6bcc51426213b3a3561dbacb8 Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a - shared_preferences_ios: aef470a42dc4675a1cdd50e3158b42e3d1232b32 - url_launcher_ios: 02f1989d4e14e998335b02b67a7590fa34f971af + shared_preferences_ios: 548a61f8053b9b8a49ac19c1ffbc8b92c50d68ad + url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/test_case/flutter_component/ios/Runner.xcodeproj/project.pbxproj b/test_case/flutter_component/ios/Runner.xcodeproj/project.pbxproj index f2ec8153..e93d68d3 100644 --- a/test_case/flutter_component/ios/Runner.xcodeproj/project.pbxproj +++ b/test_case/flutter_component/ios/Runner.xcodeproj/project.pbxproj @@ -155,7 +155,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { diff --git a/test_case/flutter_component/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/test_case/flutter_component/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..3db53b6e 100644 --- a/test_case/flutter_component/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/test_case/flutter_component/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ RotateAnimatedTextKit( key: props['key'], - text: (props['text']),//as(props['text']) + text: (props['text']).cast(),//as(props['text']) textStyle: props['textStyle'], transitionHeight: props['transitionHeight']?.toDouble(), - pause: props['pause'], + pause: props['pause'] ?? const Duration(milliseconds: 500), onNext: props['onNext'], onNextBeforePause: props['onNextBeforePause'], onFinished: props['onFinished'], totalRepeatCount: props['totalRepeatCount'] ?? 3, - duration: props['duration'], + duration: props['duration'] ?? const Duration(milliseconds: 2000), onTap: props['onTap'], alignment: props['alignment'] ?? const Alignment(0.0, 0.0), textAlign: props['textAlign'] ?? TextAlign.start, @@ -1670,7 +1670,7 @@ class AppGeneratedModule extends GeneratedModule { props['animationDuration'] ?? const Duration(milliseconds: 270), mainAxisAlignment: props['mainAxisAlignment'] ?? MainAxisAlignment.spaceBetween, - items: (props['items']),//as(props['items'] + items: (props['items']).cast(),//as(props['items'] onItemSelected: props['onItemSelected'], curve: props['curve'] ?? Curves.linear, ), diff --git a/test_case/flutter_component/pubspec.yaml b/test_case/flutter_component/pubspec.yaml index 542c01b8..207e050b 100644 --- a/test_case/flutter_component/pubspec.yaml +++ b/test_case/flutter_component/pubspec.yaml @@ -46,7 +46,7 @@ dev_dependencies: # Switch to another stable flutter version dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_5_0 + path: ../../flutter_version/flutter_2_8_0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec From 1f4c1dadf266edaa7e9760291f0df717b83b9e76 Mon Sep 17 00:00:00 2001 From: gongpengyang Date: Mon, 23 May 2022 19:06:14 +0800 Subject: [PATCH 7/8] =?UTF-8?q?flutter=202.8.0=EF=BC=8CiOS=E4=BE=A7=20iOS1?= =?UTF-8?q?4+=20=E9=80=82=E9=85=8D=20test=5Fcase=20-=20=E3=80=90fair=5Fpro?= =?UTF-8?q?vider=E3=80=91=20demo=20=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_case/fair_provider/analysis_options.yaml | 29 +++++ .../fair_provider/MainActivity.kt | 6 + .../res/drawable-v21/launch_background.xml | 12 ++ .../app/src/main/res/values-night/styles.xml | 18 +++ test_case/fair_provider/ios/.gitignore | 2 + .../ios/Flutter/AppFrameworkInfo.plist | 2 +- test_case/fair_provider/ios/Podfile.lock | 2 +- .../ios/Runner.xcodeproj/project.pbxproj | 120 ++++++++---------- .../xcshareddata/xcschemes/Runner.xcscheme | 10 +- .../fair_provider/ios/Runner/Info-Debug.plist | 58 +++++++++ .../Runner/{Info.plist => Info-Release.plist} | 11 +- test_case/fair_provider/lib/main.dart | 1 + test_case/fair_provider/pubspec.lock | 34 ++--- test_case/fair_provider/pubspec.yaml | 4 +- test_case/fair_provider/web/favicon.png | Bin 0 -> 917 bytes .../fair_provider/web/icons/Icon-192.png | Bin 0 -> 5292 bytes .../fair_provider/web/icons/Icon-512.png | Bin 0 -> 8252 bytes .../web/icons/Icon-maskable-192.png | Bin 0 -> 5594 bytes .../web/icons/Icon-maskable-512.png | Bin 0 -> 20998 bytes test_case/fair_provider/web/index.html | 104 +++++++++++++++ test_case/fair_provider/web/manifest.json | 35 +++++ 21 files changed, 348 insertions(+), 100 deletions(-) create mode 100644 test_case/fair_provider/analysis_options.yaml create mode 100644 test_case/fair_provider/android/app/src/main/kotlin/com/providerwithfair/fair_provider/MainActivity.kt create mode 100644 test_case/fair_provider/android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 test_case/fair_provider/android/app/src/main/res/values-night/styles.xml create mode 100644 test_case/fair_provider/ios/Runner/Info-Debug.plist rename test_case/fair_provider/ios/Runner/{Info.plist => Info-Release.plist} (88%) create mode 100644 test_case/fair_provider/web/favicon.png create mode 100644 test_case/fair_provider/web/icons/Icon-192.png create mode 100644 test_case/fair_provider/web/icons/Icon-512.png create mode 100644 test_case/fair_provider/web/icons/Icon-maskable-192.png create mode 100644 test_case/fair_provider/web/icons/Icon-maskable-512.png create mode 100644 test_case/fair_provider/web/index.html create mode 100644 test_case/fair_provider/web/manifest.json diff --git a/test_case/fair_provider/analysis_options.yaml b/test_case/fair_provider/analysis_options.yaml new file mode 100644 index 00000000..61b6c4de --- /dev/null +++ b/test_case/fair_provider/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/test_case/fair_provider/android/app/src/main/kotlin/com/providerwithfair/fair_provider/MainActivity.kt b/test_case/fair_provider/android/app/src/main/kotlin/com/providerwithfair/fair_provider/MainActivity.kt new file mode 100644 index 00000000..02767528 --- /dev/null +++ b/test_case/fair_provider/android/app/src/main/kotlin/com/providerwithfair/fair_provider/MainActivity.kt @@ -0,0 +1,6 @@ +package com.providerwithfair.fair_provider + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/test_case/fair_provider/android/app/src/main/res/drawable-v21/launch_background.xml b/test_case/fair_provider/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 00000000..f74085f3 --- /dev/null +++ b/test_case/fair_provider/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/test_case/fair_provider/android/app/src/main/res/values-night/styles.xml b/test_case/fair_provider/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 00000000..3db14bb5 --- /dev/null +++ b/test_case/fair_provider/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/test_case/fair_provider/ios/.gitignore b/test_case/fair_provider/ios/.gitignore index e96ef602..7a7f9873 100644 --- a/test_case/fair_provider/ios/.gitignore +++ b/test_case/fair_provider/ios/.gitignore @@ -1,3 +1,4 @@ +**/dgph *.mode1v3 *.mode2v3 *.moved-aside @@ -18,6 +19,7 @@ Flutter/App.framework Flutter/Flutter.framework Flutter/Flutter.podspec Flutter/Generated.xcconfig +Flutter/ephemeral/ Flutter/app.flx Flutter/app.zip Flutter/flutter_assets/ diff --git a/test_case/fair_provider/ios/Flutter/AppFrameworkInfo.plist b/test_case/fair_provider/ios/Flutter/AppFrameworkInfo.plist index f2872cf4..8d4492f9 100644 --- a/test_case/fair_provider/ios/Flutter/AppFrameworkInfo.plist +++ b/test_case/fair_provider/ios/Flutter/AppFrameworkInfo.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) + en CFBundleExecutable App CFBundleIdentifier diff --git a/test_case/fair_provider/ios/Podfile.lock b/test_case/fair_provider/ios/Podfile.lock index 30c7f536..c5d57644 100644 --- a/test_case/fair_provider/ios/Podfile.lock +++ b/test_case/fair_provider/ios/Podfile.lock @@ -25,4 +25,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/test_case/fair_provider/ios/Runner.xcodeproj/project.pbxproj b/test_case/fair_provider/ios/Runner.xcodeproj/project.pbxproj index 2c52284d..8314d822 100644 --- a/test_case/fair_provider/ios/Runner.xcodeproj/project.pbxproj +++ b/test_case/fair_provider/ios/Runner.xcodeproj/project.pbxproj @@ -8,8 +8,9 @@ /* Begin PBXBuildFile section */ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 391913A5DB952925A05BE215 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45898B47208567A99F04FCE7 /* Pods_Runner.framework */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 54FDE20E283B9C4E0029F72C /* Info-Debug.plist in Resources */ = {isa = PBXBuildFile; fileRef = 54FDE20C283B9C4E0029F72C /* Info-Debug.plist */; }; + 602CA75EB10BB7FB9944328E /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AC43FCEC1BD0607CA41C9B3 /* Pods_Runner.framework */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; @@ -30,12 +31,13 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 0AD40FA824858FAD6E7EF786 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 36F57BEC36811BA96779185D /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + 1AC43FCEC1BD0607CA41C9B3 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 20C67EC9C87E83919D07C35D /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 45898B47208567A99F04FCE7 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 54FDE20C283B9C4E0029F72C /* Info-Debug.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-Debug.plist"; sourceTree = ""; }; + 54FDE20D283B9C4E0029F72C /* Info-Release.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-Release.plist"; sourceTree = ""; }; 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; @@ -45,8 +47,8 @@ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - BA423C6FC7E6F6F751093E0D /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + BF8FFC5B7A4B8D206B6EC72B /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + C4967FD71D8ABAF8A6F6BBA5 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -54,21 +56,13 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 391913A5DB952925A05BE215 /* Pods_Runner.framework in Frameworks */, + 602CA75EB10BB7FB9944328E /* Pods_Runner.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 41B1951518A593D42E6F2D06 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 45898B47208567A99F04FCE7 /* Pods_Runner.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; 9740EEB11CF90186004384FC /* Flutter */ = { isa = PBXGroup; children = ( @@ -86,8 +80,8 @@ 9740EEB11CF90186004384FC /* Flutter */, 97C146F01CF9000F007C117D /* Runner */, 97C146EF1CF9000F007C117D /* Products */, - FC8D4DDA1DDC9B764529AF14 /* Pods */, - 41B1951518A593D42E6F2D06 /* Frameworks */, + F43F5B1E0501BE12C432C86A /* Pods */, + D83DCBD321BF2A2F99FF1F7D /* Frameworks */, ); sourceTree = ""; }; @@ -105,21 +99,30 @@ 97C146FA1CF9000F007C117D /* Main.storyboard */, 97C146FD1CF9000F007C117D /* Assets.xcassets */, 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 54FDE20C283B9C4E0029F72C /* Info-Debug.plist */, + 54FDE20D283B9C4E0029F72C /* Info-Release.plist */, 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, ); path = Runner; sourceTree = ""; }; - FC8D4DDA1DDC9B764529AF14 /* Pods */ = { + D83DCBD321BF2A2F99FF1F7D /* Frameworks */ = { isa = PBXGroup; children = ( - 36F57BEC36811BA96779185D /* Pods-Runner.debug.xcconfig */, - BA423C6FC7E6F6F751093E0D /* Pods-Runner.release.xcconfig */, - 0AD40FA824858FAD6E7EF786 /* Pods-Runner.profile.xcconfig */, + 1AC43FCEC1BD0607CA41C9B3 /* Pods_Runner.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + F43F5B1E0501BE12C432C86A /* Pods */ = { + isa = PBXGroup; + children = ( + 20C67EC9C87E83919D07C35D /* Pods-Runner.debug.xcconfig */, + C4967FD71D8ABAF8A6F6BBA5 /* Pods-Runner.release.xcconfig */, + BF8FFC5B7A4B8D206B6EC72B /* Pods-Runner.profile.xcconfig */, ); path = Pods; sourceTree = ""; @@ -131,14 +134,14 @@ isa = PBXNativeTarget; buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; buildPhases = ( - E7DE024FF40F9395251538F5 /* [CP] Check Pods Manifest.lock */, + 7076B12D63D75A81E8FB2CBE /* [CP] Check Pods Manifest.lock */, 9740EEB61CF901F6004384FC /* Run Script */, 97C146EA1CF9000F007C117D /* Sources */, 97C146EB1CF9000F007C117D /* Frameworks */, 97C146EC1CF9000F007C117D /* Resources */, 9705A1C41CF9048500538489 /* Embed Frameworks */, 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - 4CD90BB88570B327046A627C /* [CP] Embed Pods Frameworks */, + AD05A93559A35622C190F225 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -155,7 +158,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { @@ -190,6 +193,7 @@ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 54FDE20E283B9C4E0029F72C /* Info-Debug.plist in Resources */, 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -211,21 +215,26 @@ shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; }; - 4CD90BB88570B327046A627C /* [CP] Embed Pods Frameworks */ = { + 7076B12D63D75A81E8FB2CBE /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - name = "[CP] Embed Pods Frameworks"; + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; 9740EEB61CF901F6004384FC /* Run Script */ = { @@ -242,26 +251,21 @@ shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; }; - E7DE024FF40F9395251538F5 /* [CP] Check Pods Manifest.lock */ = { + AD05A93559A35622C190F225 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; + name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -357,20 +361,12 @@ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = 33SWE96Z9N; ENABLE_BITCODE = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - INFOPLIST_FILE = Runner/Info.plist; + INFOPLIST_FILE = "path/to/Info-$(CONFIGURATION).plist"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.demo; + PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.fairProvider; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; @@ -494,20 +490,12 @@ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = 33SWE96Z9N; ENABLE_BITCODE = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - INFOPLIST_FILE = Runner/Info.plist; + INFOPLIST_FILE = "Runner/Info-$(CONFIGURATION).plist"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.demo; + PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.fairProvider; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -525,20 +513,12 @@ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = 33SWE96Z9N; ENABLE_BITCODE = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - INFOPLIST_FILE = Runner/Info.plist; + INFOPLIST_FILE = "path/to/Info-$(CONFIGURATION).plist"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.demo; + PRODUCT_BUNDLE_IDENTIFIER = com.providerwithfair.fairProvider; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; diff --git a/test_case/fair_provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/test_case/fair_provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..c87d15a3 100644 --- a/test_case/fair_provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/test_case/fair_provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ - - - - + + - - + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + NSBonjourServices + + _dartobservatory._tcp + + NSLocalNetworkUsageDescription + Allow Flutter tools on your computer to connect and debug your application.This prompt will not appear on release builds + CFBundleDisplayName + Fair Provider + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + fair_provider + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/test_case/fair_provider/ios/Runner/Info.plist b/test_case/fair_provider/ios/Runner/Info-Release.plist similarity index 88% rename from test_case/fair_provider/ios/Runner/Info.plist rename to test_case/fair_provider/ios/Runner/Info-Release.plist index 07d96bc6..fd906fab 100644 --- a/test_case/fair_provider/ios/Runner/Info.plist +++ b/test_case/fair_provider/ios/Runner/Info-Release.plist @@ -4,6 +4,8 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Fair Provider CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -11,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - demo + fair_provider CFBundlePackageType APPL CFBundleShortVersionString @@ -22,6 +24,11 @@ $(FLUTTER_BUILD_NUMBER) LSRequiresIPhoneOS + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + UILaunchStoryboardName LaunchScreen UIMainStoryboardFile @@ -40,6 +47,6 @@ UIInterfaceOrientationLandscapeRight UIViewControllerBasedStatusBarAppearance - + diff --git a/test_case/fair_provider/lib/main.dart b/test_case/fair_provider/lib/main.dart index 8bc29e51..5bb04aa4 100644 --- a/test_case/fair_provider/lib/main.dart +++ b/test_case/fair_provider/lib/main.dart @@ -8,6 +8,7 @@ import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; void main() { + WidgetsFlutterBinding.ensureInitialized(); runApp( /// Providers are above [MyApp] instead of inside it, so that tests /// can use [MyApp] while mocking the providers diff --git a/test_case/fair_provider/pubspec.lock b/test_case/fair_provider/pubspec.lock index e25dae6b..54b4bde2 100644 --- a/test_case/fair_provider/pubspec.lock +++ b/test_case/fair_provider/pubspec.lock @@ -7,14 +7,14 @@ packages: name: _fe_analyzer_shared url: "https://pub.flutter-io.cn" source: hosted - version: "22.0.0" + version: "31.0.0" analyzer: dependency: transitive description: name: analyzer url: "https://pub.flutter-io.cn" source: hosted - version: "1.7.2" + version: "2.8.0" archive: dependency: transitive description: @@ -35,7 +35,7 @@ packages: name: async url: "https://pub.flutter-io.cn" source: hosted - version: "2.8.1" + version: "2.8.2" boolean_selector: dependency: transitive description: @@ -105,7 +105,7 @@ packages: name: characters url: "https://pub.flutter-io.cn" source: hosted - version: "1.1.0" + version: "1.2.0" charcode: dependency: transitive description: @@ -189,25 +189,25 @@ packages: path: "../../fair" relative: true source: path - version: "2.0.0" + version: "2.4.1" fair_annotation: dependency: transitive description: - path: "../../annotation" - relative: true - source: path - version: "0.2.0" + name: fair_annotation + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.3.0" fair_compiler: dependency: "direct dev" description: path: "../../compiler" - relative: false + relative: true source: path - version: "0.3.0+1" + version: "2.3.0" fair_version: dependency: "direct overridden" description: - path: "../../flutter_version/flutter_2_5_0" + path: "../../flutter_version/flutter_2_8_0" relative: true source: path version: "0.2.0" @@ -358,7 +358,7 @@ packages: name: matcher url: "https://pub.flutter-io.cn" source: hosted - version: "0.12.10" + version: "0.12.11" meta: dependency: transitive description: @@ -435,7 +435,7 @@ packages: name: provider url: "https://pub.flutter-io.cn" source: hosted - version: "5.0.0" + version: "6.0.3" pub_semver: dependency: transitive description: @@ -482,7 +482,7 @@ packages: name: source_gen url: "https://pub.flutter-io.cn" source: hosted - version: "1.0.3" + version: "1.2.2" source_span: dependency: transitive description: @@ -531,7 +531,7 @@ packages: name: test_api url: "https://pub.flutter-io.cn" source: hosted - version: "0.4.2" + version: "0.4.3" timing: dependency: transitive description: @@ -608,7 +608,7 @@ packages: name: vector_math url: "https://pub.flutter-io.cn" source: hosted - version: "2.1.0" + version: "2.1.1" watcher: dependency: transitive description: diff --git a/test_case/fair_provider/pubspec.yaml b/test_case/fair_provider/pubspec.yaml index 1fb8e882..b5bbd614 100644 --- a/test_case/fair_provider/pubspec.yaml +++ b/test_case/fair_provider/pubspec.yaml @@ -25,7 +25,7 @@ dependencies: sdk: flutter cupertino_icons: ^1.0.4 - provider: ^5.0.0 + provider: ^6.0.0 fair: path: ../../fair @@ -43,7 +43,7 @@ dev_dependencies: dependency_overrides: fair_version: - path: ../../flutter_version/flutter_2_5_0 + path: ../../flutter_version/flutter_2_8_0 flutter: diff --git a/test_case/fair_provider/web/favicon.png b/test_case/fair_provider/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/test_case/fair_provider/web/icons/Icon-192.png b/test_case/fair_provider/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 diff --git a/test_case/fair_provider/web/icons/Icon-512.png b/test_case/fair_provider/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/test_case/fair_provider/web/icons/Icon-maskable-192.png b/test_case/fair_provider/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d GIT binary patch literal 5594 zcmdT|`#%%j|KDb2V@0DPm$^(Lx5}lO%Yv(=e*7hl@QqKS50#~#^IQPxBmuh|i9sXnt4ch@VT0F7% zMtrs@KWIOo+QV@lSs66A>2pz6-`9Jk=0vv&u?)^F@HZ)-6HT=B7LF;rdj zskUyBfbojcX#CS>WrIWo9D=DIwcXM8=I5D{SGf$~=gh-$LwY?*)cD%38%sCc?5OsX z-XfkyL-1`VavZ?>(pI-xp-kYq=1hsnyP^TLb%0vKRSo^~r{x?ISLY1i7KjSp z*0h&jG(Rkkq2+G_6eS>n&6>&Xk+ngOMcYrk<8KrukQHzfx675^^s$~<@d$9X{VBbg z2Fd4Z%g`!-P}d#`?B4#S-9x*eNlOVRnDrn#jY@~$jfQ-~3Od;A;x-BI1BEDdvr`pI z#D)d)!2_`GiZOUu1crb!hqH=ezs0qk<_xDm_Kkw?r*?0C3|Io6>$!kyDl;eH=aqg$B zsH_|ZD?jP2dc=)|L>DZmGyYKa06~5?C2Lc0#D%62p(YS;%_DRCB1k(+eLGXVMe+=4 zkKiJ%!N6^mxqM=wq`0+yoE#VHF%R<{mMamR9o_1JH8jfnJ?NPLs$9U!9!dq8 z0B{dI2!M|sYGH&9TAY34OlpIsQ4i5bnbG>?cWwat1I13|r|_inLE?FS@Hxdxn_YZN z3jfUO*X9Q@?HZ>Q{W0z60!bbGh557XIKu1?)u|cf%go`pwo}CD=0tau-}t@R2OrSH zQzZr%JfYa`>2!g??76=GJ$%ECbQh7Q2wLRp9QoyiRHP7VE^>JHm>9EqR3<$Y=Z1K^SHuwxCy-5@z3 zVM{XNNm}yM*pRdLKp??+_2&!bp#`=(Lh1vR{~j%n;cJv~9lXeMv)@}Odta)RnK|6* zC+IVSWumLo%{6bLDpn)Gz>6r&;Qs0^+Sz_yx_KNz9Dlt^ax`4>;EWrIT#(lJ_40<= z750fHZ7hI{}%%5`;lwkI4<_FJw@!U^vW;igL0k+mK)-j zYuCK#mCDK3F|SC}tC2>m$ZCqNB7ac-0UFBJ|8RxmG@4a4qdjvMzzS&h9pQmu^x&*= zGvapd1#K%Da&)8f?<9WN`2H^qpd@{7In6DNM&916TRqtF4;3`R|Nhwbw=(4|^Io@T zIjoR?tB8d*sO>PX4vaIHF|W;WVl6L1JvSmStgnRQq zTX4(>1f^5QOAH{=18Q2Vc1JI{V=yOr7yZJf4Vpfo zeHXdhBe{PyY;)yF;=ycMW@Kb>t;yE>;f79~AlJ8k`xWucCxJfsXf2P72bAavWL1G#W z;o%kdH(mYCM{$~yw4({KatNGim49O2HY6O07$B`*K7}MvgI=4x=SKdKVb8C$eJseA$tmSFOztFd*3W`J`yIB_~}k%Sd_bPBK8LxH)?8#jM{^%J_0|L z!gFI|68)G}ex5`Xh{5pB%GtlJ{Z5em*e0sH+sU1UVl7<5%Bq+YrHWL7?X?3LBi1R@_)F-_OqI1Zv`L zb6^Lq#H^2@d_(Z4E6xA9Z4o3kvf78ZDz!5W1#Mp|E;rvJz&4qj2pXVxKB8Vg0}ek%4erou@QM&2t7Cn5GwYqy%{>jI z)4;3SAgqVi#b{kqX#$Mt6L8NhZYgonb7>+r#BHje)bvaZ2c0nAvrN3gez+dNXaV;A zmyR0z@9h4@6~rJik-=2M-T+d`t&@YWhsoP_XP-NsVO}wmo!nR~QVWU?nVlQjNfgcTzE-PkfIX5G z1?&MwaeuzhF=u)X%Vpg_e@>d2yZwxl6-r3OMqDn8_6m^4z3zG##cK0Fsgq8fcvmhu z{73jseR%X%$85H^jRAcrhd&k!i^xL9FrS7qw2$&gwAS8AfAk#g_E_tP;x66fS`Mn@SNVrcn_N;EQm z`Mt3Z%rw%hDqTH-s~6SrIL$hIPKL5^7ejkLTBr46;pHTQDdoErS(B>``t;+1+M zvU&Se9@T_BeK;A^p|n^krIR+6rH~BjvRIugf`&EuX9u69`9C?9ANVL8l(rY6#mu^i z=*5Q)-%o*tWl`#b8p*ZH0I}hn#gV%|jt6V_JanDGuekR*-wF`u;amTCpGG|1;4A5$ zYbHF{?G1vv5;8Ph5%kEW)t|am2_4ik!`7q{ymfHoe^Z99c|$;FAL+NbxE-_zheYbV z3hb0`uZGTsgA5TG(X|GVDSJyJxsyR7V5PS_WSnYgwc_D60m7u*x4b2D79r5UgtL18 zcCHWk+K6N1Pg2c;0#r-)XpwGX?|Iv)^CLWqwF=a}fXUSM?n6E;cCeW5ER^om#{)Jr zJR81pkK?VoFm@N-s%hd7@hBS0xuCD0-UDVLDDkl7Ck=BAj*^ps`393}AJ+Ruq@fl9 z%R(&?5Nc3lnEKGaYMLmRzKXow1+Gh|O-LG7XiNxkG^uyv zpAtLINwMK}IWK65hOw&O>~EJ}x@lDBtB`yKeV1%GtY4PzT%@~wa1VgZn7QRwc7C)_ zpEF~upeDRg_<#w=dLQ)E?AzXUQpbKXYxkp>;c@aOr6A|dHA?KaZkL0svwB^U#zmx0 zzW4^&G!w7YeRxt<9;d@8H=u(j{6+Uj5AuTluvZZD4b+#+6Rp?(yJ`BC9EW9!b&KdPvzJYe5l7 zMJ9aC@S;sA0{F0XyVY{}FzW0Vh)0mPf_BX82E+CD&)wf2!x@{RO~XBYu80TONl3e+ zA7W$ra6LcDW_j4s-`3tI^VhG*sa5lLc+V6ONf=hO@q4|p`CinYqk1Ko*MbZ6_M05k zSwSwkvu;`|I*_Vl=zPd|dVD0lh&Ha)CSJJvV{AEdF{^Kn_Yfsd!{Pc1GNgw}(^~%)jk5~0L~ms|Rez1fiK~s5t(p1ci5Gq$JC#^JrXf?8 z-Y-Zi_Hvi>oBzV8DSRG!7dm|%IlZg3^0{5~;>)8-+Nk&EhAd(}s^7%MuU}lphNW9Q zT)DPo(ob{tB7_?u;4-qGDo!sh&7gHaJfkh43QwL|bbFVi@+oy;i;M zM&CP^v~lx1U`pi9PmSr&Mc<%HAq0DGH?Ft95)WY`P?~7O z`O^Nr{Py9M#Ls4Y7OM?e%Y*Mvrme%=DwQaye^Qut_1pOMrg^!5u(f9p(D%MR%1K>% zRGw%=dYvw@)o}Fw@tOtPjz`45mfpn;OT&V(;z75J*<$52{sB65$gDjwX3Xa!x_wE- z!#RpwHM#WrO*|~f7z}(}o7US(+0FYLM}6de>gQdtPazXz?OcNv4R^oYLJ_BQOd_l172oSK$6!1r@g+B@0ofJ4*{>_AIxfe-#xp>(1 z@Y3Nfd>fmqvjL;?+DmZk*KsfXJf<%~(gcLwEez%>1c6XSboURUh&k=B)MS>6kw9bY z{7vdev7;A}5fy*ZE23DS{J?8at~xwVk`pEwP5^k?XMQ7u64;KmFJ#POzdG#np~F&H ze-BUh@g54)dsS%nkBb}+GuUEKU~pHcYIg4vSo$J(J|U36bs0Use+3A&IMcR%6@jv$ z=+QI+@wW@?iu}Hpyzlvj-EYeop{f65GX0O%>w#0t|V z1-svWk`hU~m`|O$kw5?Yn5UhI%9P-<45A(v0ld1n+%Ziq&TVpBcV9n}L9Tus-TI)f zd_(g+nYCDR@+wYNQm1GwxhUN4tGMLCzDzPqY$~`l<47{+l<{FZ$L6(>J)|}!bi<)| zE35dl{a2)&leQ@LlDxLQOfUDS`;+ZQ4ozrleQwaR-K|@9T{#hB5Z^t#8 zC-d_G;B4;F#8A2EBL58s$zF-=SCr`P#z zNCTnHF&|X@q>SkAoYu>&s9v@zCpv9lLSH-UZzfhJh`EZA{X#%nqw@@aW^vPcfQrlPs(qQxmC|4tp^&sHy!H!2FH5eC{M@g;ElWNzlb-+ zxpfc0m4<}L){4|RZ>KReag2j%Ot_UKkgpJN!7Y_y3;Ssz{9 z!K3isRtaFtQII5^6}cm9RZd5nTp9psk&u1C(BY`(_tolBwzV_@0F*m%3G%Y?2utyS zY`xM0iDRT)yTyYukFeGQ&W@ReM+ADG1xu@ruq&^GK35`+2r}b^V!m1(VgH|QhIPDE X>c!)3PgKfL&lX^$Z>Cpu&6)6jvi^Z! literal 0 HcmV?d00001 diff --git a/test_case/fair_provider/web/icons/Icon-maskable-512.png b/test_case/fair_provider/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e GIT binary patch literal 20998 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 MPgg&ebxsLQ025IeI{*Lx literal 0 HcmV?d00001 diff --git a/test_case/fair_provider/web/index.html b/test_case/fair_provider/web/index.html new file mode 100644 index 00000000..93731a6f --- /dev/null +++ b/test_case/fair_provider/web/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + fair_provider + + + + + + + diff --git a/test_case/fair_provider/web/manifest.json b/test_case/fair_provider/web/manifest.json new file mode 100644 index 00000000..93c2f50b --- /dev/null +++ b/test_case/fair_provider/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "fair_provider", + "short_name": "fair_provider", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} From 881745c092c61131015c68982e467594af1ab6d9 Mon Sep 17 00:00:00 2001 From: gongpengyang Date: Tue, 24 May 2022 10:06:21 +0800 Subject: [PATCH 8/8] =?UTF-8?q?flutter=202.8.0=20=20test=5Fcase=20-=20?= =?UTF-8?q?=E3=80=90fair=5Fmobx=E3=80=91=E3=80=90fair=5Flist=5Fdemo?= =?UTF-8?q?=E3=80=91=20demo=20=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test_case/fair_list_demo/ios/Podfile.lock | 4 +-- .../ios/Runner.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/fair_list_demo/pubspec.yaml | 2 +- test_case/fair_mobx/ios/Podfile.lock | 2 +- .../ios/Runner.xcodeproj/project.pbxproj | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- test_case/fair_mobx/pubspec.lock | 34 +++++++++---------- test_case/fair_mobx/pubspec.yaml | 2 +- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/test_case/fair_list_demo/ios/Podfile.lock b/test_case/fair_list_demo/ios/Podfile.lock index 30c7f536..188e197e 100644 --- a/test_case/fair_list_demo/ios/Podfile.lock +++ b/test_case/fair_list_demo/ios/Podfile.lock @@ -21,8 +21,8 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: fair: a2ad8650ee4df9e6bcc51426213b3a3561dbacb8 Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a - url_launcher_ios: 02f1989d4e14e998335b02b67a7590fa34f971af + url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/test_case/fair_list_demo/ios/Runner.xcodeproj/project.pbxproj b/test_case/fair_list_demo/ios/Runner.xcodeproj/project.pbxproj index 2fb6b57c..5c549e61 100644 --- a/test_case/fair_list_demo/ios/Runner.xcodeproj/project.pbxproj +++ b/test_case/fair_list_demo/ios/Runner.xcodeproj/project.pbxproj @@ -155,7 +155,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { diff --git a/test_case/fair_list_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/test_case/fair_list_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..3db53b6e 100644 --- a/test_case/fair_list_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/test_case/fair_list_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@